fix: ccda zip import and php warnings and deprecations (#7416)
[openemr.git] / sql / 4_2_0-to-4_2_1_upgrade.sql
blobd5e738880670cdb8ec83a037491371194a5e027b
1 --
2 --  Comment Meta Language Constructs:
3 --
4 --  #IfNotTable
5 --    argument: table_name
6 --    behavior: if the table_name does not exist,  the block will be executed
8 --  #IfTable
9 --    argument: table_name
10 --    behavior: if the table_name does exist, the block will be executed
12 --  #IfColumn
13 --    arguments: table_name colname
14 --    behavior:  if the table and column exist,  the block will be executed
16 --  #IfMissingColumn
17 --    arguments: table_name colname
18 --    behavior:  if the table exists but the column does not,  the block will be executed
20 --  #IfNotColumnType
21 --    arguments: table_name colname value
22 --    behavior:  If the table table_name does not have a column colname with a data type equal to value, then the block will be executed
24 --  #IfNotRow
25 --    arguments: table_name colname value
26 --    behavior:  If the table table_name does not have a row where colname = value, the block will be executed.
28 --  #IfNotRow2D
29 --    arguments: table_name colname value colname2 value2
30 --    behavior:  If the table table_name does not have a row where colname = value AND colname2 = value2, the block will be executed.
32 --  #IfNotRow3D
33 --    arguments: table_name colname value colname2 value2 colname3 value3
34 --    behavior:  If the table table_name does not have a row where colname = value AND colname2 = value2 AND colname3 = value3, the block will be executed.
36 --  #IfNotRow4D
37 --    arguments: table_name colname value colname2 value2 colname3 value3 colname4 value4
38 --    behavior:  If the table table_name does not have a row where colname = value AND colname2 = value2 AND colname3 = value3 AND colname4 = value4, the block will be executed.
40 --  #IfNotRow2Dx2
41 --    desc:      This is a very specialized function to allow adding items to the list_options table to avoid both redundant option_id and title in each element.
42 --    arguments: table_name colname value colname2 value2 colname3 value3
43 --    behavior:  The block will be executed if both statements below are true:
44 --               1) The table table_name does not have a row where colname = value AND colname2 = value2.
45 --               2) The table table_name does not have a row where colname = value AND colname3 = value3.
47 --  #IfRow2D
48 --    arguments: table_name colname value colname2 value2
49 --    behavior:  If the table table_name does have a row where colname = value AND colname2 = value2, the block will be executed.
51 --  #IfRow3D
52 --        arguments: table_name colname value colname2 value2 colname3 value3
53 --        behavior:  If the table table_name does have a row where colname = value AND colname2 = value2 AND colname3 = value3, the block will be executed.
55 --  #IfIndex
56 --    desc:      This function is most often used for dropping of indexes/keys.
57 --    arguments: table_name colname
58 --    behavior:  If the table and index exist the relevant statements are executed, otherwise not.
60 --  #IfNotIndex
61 --    desc:      This function will allow adding of indexes/keys.
62 --    arguments: table_name colname
63 --    behavior:  If the index does not exist, it will be created
65 --  #EndIf
66 --    all blocks are terminated with a #EndIf statement.
68 --  #IfNotListReaction
69 --    Custom function for creating Reaction List
71 --  #IfNotListOccupation
72 --    Custom function for creating Occupation List
74 #IfNotIndex form_encounter encounter_date
75     CREATE INDEX encounter_date on form_encounter (`date`);
76 #EndIf
78 #IfNotColumnType prescriptions size varchar(16)
79 ALTER TABLE `prescriptions` CHANGE `size` `size` varchar(16) DEFAULT NULL;
80 #EndIf
82 #IfNotRow globals gl_name erx_newcrop_path
83 UPDATE `globals` SET `gl_name` = 'erx_newcrop_path' WHERE `gl_name` = 'erx_path_production';
84 #EndIf
86 #IfNotRow globals gl_name erx_newcrop_path_soap
87 UPDATE `globals` SET `gl_name` = 'erx_newcrop_path_soap' WHERE `gl_name` = 'erx_path_soap_production';
88 #EndIf
90 #IfNotRow globals gl_name erx_account_partner_name
91 UPDATE `globals` SET `gl_name` = 'erx_account_partner_name' WHERE `gl_name` = 'partner_name_production';
92 #EndIf
94 #IfNotRow globals gl_name erx_account_name
95 UPDATE `globals` SET `gl_name` = 'erx_account_name' WHERE `gl_name` = 'erx_name_production';
96 #EndIf
98 #IfNotRow globals gl_name erx_account_password
99 UPDATE `globals` SET `gl_name` = 'erx_account_password' WHERE `gl_name` = 'erx_password_production';
100 #EndIf
102 #IfNotColumnType lang_custom constant_name mediumtext
103 ALTER TABLE `lang_custom` CHANGE `constant_name` `constant_name` mediumtext NOT NULL default '';
104 #EndIf
106 #IfNotTable patient_tracker
107 CREATE TABLE `patient_tracker` (
108   `id`                     bigint(20)   NOT NULL auto_increment,
109   `date`                   datetime     DEFAULT NULL,
110   `apptdate`               date         DEFAULT NULL,
111   `appttime`               time         DEFAULT NULL,
112   `eid`                    bigint(20)   NOT NULL default '0',
113   `pid`                    bigint(20)   NOT NULL default '0',
114   `original_user`          varchar(255) NOT NULL default '' COMMENT 'This is the user that created the original record',
115   `encounter`              bigint(20)   NOT NULL default '0',
116   `lastseq`                varchar(4)   NOT NULL default '' COMMENT 'The element file should contain this number of elements',
117   `random_drug_test`       TINYINT(1)   DEFAULT NULL COMMENT 'NULL if not randomized. If randomized, 0 is no, 1 is yes', 
118   `drug_screen_completed`  TINYINT(1)   NOT NULL DEFAULT '0',
119   PRIMARY KEY (`id`),
120   KEY (`eid`),
121   KEY (`pid`)
122 ) ENGINE=MyISAM AUTO_INCREMENT=1;
123 #EndIf
125 #IfNotTable patient_tracker_element
126 CREATE TABLE `patient_tracker_element` (
127   `pt_tracker_id`      bigint(20)   NOT NULL default '0' COMMENT 'maps to id column in patient_tracker table',
128   `start_datetime`     datetime     DEFAULT NULL,
129   `room`               varchar(20)  NOT NULL default '',
130   `status`             varchar(31)  NOT NULL default '',
131   `seq`                varchar(4)   NOT NULL default '' COMMENT 'This is a numerical sequence for this pt_tracker_id events',
132   `user`               varchar(255) NOT NULL default '' COMMENT 'This is the user that created this element',
133   KEY  (`pt_tracker_id`,`seq`)
134 ) ENGINE=MyISAM;
135 #EndIf
137 #IfMissingColumn openemr_postcalendar_events pc_room
138 ALTER TABLE `openemr_postcalendar_events` ADD `pc_room` varchar(20) NOT NULL DEFAULT '' ;
139 #EndIf
141 #IfMissingColumn list_options toggle_setting_1
142 ALTER TABLE `list_options` ADD COLUMN `toggle_setting_1` tinyint(1) NOT NULL default '0';
143 UPDATE `list_options` SET `notes`='FF2414|10' , `toggle_setting_1`='1' WHERE `option_id`='@' AND `list_id` = 'apptstat';
144 UPDATE `list_options` SET `notes`='FF6619|10' , `toggle_setting_1`='1' WHERE `option_id`='~' AND `list_id` = 'apptstat';
145 #EndIf
147 #IfMissingColumn list_options toggle_setting_2
148 ALTER TABLE `list_options` ADD COLUMN `toggle_setting_2` tinyint(1) NOT NULL DEFAULT '0';
149 UPDATE `list_options` SET `notes`='0BBA34|0' , `toggle_setting_2`='1' WHERE `option_id`='!' AND `list_id` = 'apptstat';
150 UPDATE `list_options` SET `notes`='FEFDCF|0' , `toggle_setting_2`='1' WHERE `option_id`='>' AND `list_id` = 'apptstat';
151 UPDATE `list_options` SET `notes`='FEFDCF|0' WHERE `option_id`='-' AND `list_id` = 'apptstat';
152 UPDATE `list_options` SET `notes`='FFC9F8|0' WHERE `option_id`='*' AND `list_id` = 'apptstat';
153 UPDATE `list_options` SET `notes`='87FF1F|0' WHERE `option_id`='+' AND `list_id` = 'apptstat';
154 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='x' AND `list_id` = 'apptstat';
155 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='?' AND `list_id` = 'apptstat';
156 UPDATE `list_options` SET `notes`='FFFF2B|0' WHERE `option_id`='#' AND `list_id` = 'apptstat';
157 UPDATE `list_options` SET `notes`='52D9DE|10' WHERE `option_id`='<' AND `list_id` = 'apptstat';
158 UPDATE `list_options` SET `notes`='C0FF96|0' WHERE `option_id`='$' AND `list_id` = 'apptstat';
159 UPDATE `list_options` SET `notes`='BFBFBF|0' WHERE `option_id`='%' AND `list_id` = 'apptstat';
160 #EndIf
162 #IfNotRow2D list_options list_id lists option_id patient_flow_board_rooms
163 INSERT INTO list_options (list_id,option_id,title) VALUES ('lists','patient_flow_board_rooms','Patient Flow Board Rooms');
164 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '1', 'Room 1', 10);
165 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '2', 'Room 2', 20);
166 INSERT INTO list_options (list_id,option_id,title,seq) VALUES ('patient_flow_board_rooms', '3', 'Room 3', 30);
167 #EndIf
169 #IfMissingColumn clinical_rules developer
170 ALTER TABLE  `clinical_rules` ADD  `developer` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Developer';
171 #EndIf
173 #IfMissingColumn clinical_rules funding_source
174 ALTER TABLE  `clinical_rules` ADD  `funding_source` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Funding Source';
175 #EndIf
177 #IfMissingColumn clinical_rules release_version
178 ALTER TABLE  `clinical_rules` ADD  `release_version` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Release Version';
179 #EndIf
181 #IfNotRow2D list_options list_id proc_res_abnormal option_id vhigh
182 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`) VALUES ('proc_res_abnormal', 'vhigh', 'Above upper panic limits', 50);
183 #EndIf
185 #IfNotRow2D list_options list_id proc_res_abnormal option_id vlow
186 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`) VALUES ('proc_res_abnormal', 'vlow', 'Below lower panic limits', 60);
187 #EndIf
189 #IfNotRow code_types ct_key LOINC
190 DROP TABLE IF EXISTS `temp_table_one`;
191 CREATE TABLE `temp_table_one` (`id` int(11) NOT NULL DEFAULT '0',`seq` int(11) NOT NULL DEFAULT '0') ENGINE=MyISAM;
192 INSERT INTO `temp_table_one` (`id`, `seq`) VALUES (
193   IF(((SELECT MAX(`ct_id` ) FROM `code_types`) >= 100), ((SELECT MAX(`ct_id` ) FROM `code_types`) + 1), 100),
194   IF(((SELECT MAX(`ct_seq`) FROM `code_types`) >= 100), ((SELECT MAX(`ct_seq`) FROM `code_types`) + 1), 100));
195 INSERT INTO code_types (ct_key, ct_id, ct_seq, ct_mod, ct_just, ct_fee, ct_rel, ct_nofs, ct_diag, ct_active, ct_label, ct_external, ct_claim, ct_proc, ct_term, ct_problem ) VALUES ('LOINC', (SELECT MAX(`id`) FROM `temp_table_one`), (SELECT MAX(`seq`) FROM `temp_table_one`), 0, '', 0, 0, 1, 0, 1, 'LOINC', 0, 0, 0, 0, 0);
196 DROP TABLE `temp_table_one`;
197 #EndIf
199 #IfNotRow code_types ct_key PHIN Questions
200 DROP TABLE IF EXISTS `temp_table_one`;
201 CREATE TABLE `temp_table_one` (`id` int(11) NOT NULL DEFAULT '0',`seq` int(11) NOT NULL DEFAULT '0') ENGINE=MyISAM;
202 INSERT INTO `temp_table_one` (`id`, `seq`) VALUES (
203   IF(((SELECT MAX(`ct_id` ) FROM `code_types`) >= 100), ((SELECT MAX(`ct_id` ) FROM `code_types`) + 1), 100),
204   IF(((SELECT MAX(`ct_seq`) FROM `code_types`) >= 100), ((SELECT MAX(`ct_seq`) FROM `code_types`) + 1), 100));
205 INSERT INTO code_types (ct_key, ct_id, ct_seq, ct_mod, ct_just, ct_fee, ct_rel, ct_nofs, ct_diag, ct_active, ct_label, ct_external, ct_claim, ct_proc, ct_term, ct_problem ) VALUES ('PHIN Questions', (SELECT MAX(`id`) FROM `temp_table_one`), (SELECT MAX(`seq`) FROM `temp_table_one`), 0, '', 0, 0, 1, 0, 1, 'PHIN Questions', 0, 0, 0, 0, 0);
206 DROP TABLE `temp_table_one`;
207 #EndIf
209 #IfMissingColumn list_options activity
210 ALTER TABLE `list_options` ADD COLUMN `activity` TINYINT DEFAULT 1 NOT NULL;
211 #EndIf
213 #IfNotTable ccda_components
214 CREATE TABLE ccda_components (
215   ccda_components_id int(11) NOT NULL AUTO_INCREMENT,
216   ccda_components_field varchar(100) DEFAULT NULL,
217   ccda_components_name varchar(100) DEFAULT NULL,
218   PRIMARY KEY (ccda_components_id)
219 ) ENGINE=InnoDB AUTO_INCREMENT=10 ;
220 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('1','progress_note','Progress Notes');
221 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('2','consultation_note','Consultation Note');
222 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('3','continuity_care_document','Continuity Care Document');
223 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('4','diagnostic_image_reporting','Diagnostic Image Reporting');
224 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('5','discharge_summary','Discharge Summary');
225 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('6','history_physical_note','History and Physical Note');
226 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('7','operative_note','Operative Note');
227 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('8','procedure_note','Procedure Note');
228 insert into ccda_components (ccda_components_id, ccda_components_field, ccda_components_name) values('9','unstructured_document','Unstructured Document');
229 #EndIf
231 #IfNotTable ccda_sections
232 CREATE TABLE ccda_sections (
233   ccda_sections_id int(11) NOT NULL AUTO_INCREMENT,
234   ccda_components_id int(11) DEFAULT NULL,
235   ccda_sections_field varchar(100) DEFAULT NULL,
236   ccda_sections_name varchar(100) DEFAULT NULL,
237   ccda_sections_req_mapping tinyint(4) NOT NULL DEFAULT '1',
238   PRIMARY KEY (ccda_sections_id)
239 ) ENGINE=InnoDB AUTO_INCREMENT=46;
240 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('1','1','assessment_plan','Assessment and Plan','1');
241 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('2','2','assessment_plan','Assessment and Plan','1');
242 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('3','2','history_of_present_illness','History of Present Illness','1');
243 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('4','2','physical_exam','Physical Exam','1');
244 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('5','2','reason_of_visit','Reason for Referral/Reason for Visit','1');
245 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('6','3','allergies','Allergies','0');
246 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('7','3','medications','Medications','0');
247 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('8','3','problem_list','Problem List','0');
248 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('9','3','procedures','Procedures','0');
249 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('10','3','results','Results','0');
250 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('11','4','report','Report','0');
251 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('12','5','allergies','Allergies','0');
252 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('13','5','hospital_course','Hospital Course','0');
253 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('14','5','hospital_discharge_diagnosis','Hospital Discharge Diagnosis','0');
254 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('15','5','hospital_discharge_medications','Hospital Discharge Medications','0');
255 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('16','5','plan_of_care','Plan of Care','1');
256 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('17','6','allergies','Allergies','0');
257 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('19','6','chief_complaint','Chief Complaint / Reason for Visit','1');
258 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('21','6','family_history','Family History','1');
259 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('22','6','general_status','General Status','1');
260 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('23','6','hpi_past_med','History of Past Illness (Past Medical History)','1');
261 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('24','6','hpi','History of Present Illness','1');
262 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('25','6','medications','Medications','0');
263 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('26','6','physical_exam','Physical Exam','1');
264 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('28','6','results','Results','0');
265 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('29','6','review_of_systems','Review of Systems','1');
266 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('30','6','social_history','Social History','1');
267 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('31','6','vital_signs','Vital Signs','0');
268 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('32','7','anesthesia','Anesthesia','1');
269 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('33','7','complications','Complications','1');
270 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('34','7','post_operative_diagnosis','Post Operative Diagnosis','0');
271 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('35','7','pre_operative_diagnosis','Pre Operative Diagnosis','0');
272 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('36','7','procedure_estimated_blood_loss','Procedure Estimated Blood Loss','0');
273 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('37','7','procedure_findings','Procedure Findings','0');
274 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('38','7','procedure_specimens_taken','Procedure Specimens Taken','0');
275 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('39','7','procedure_description','Procedure Description','1');
276 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('40','8','assessment_plan','Assessment and Plan','1');
277 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('41','8','complications','Complications','1');
278 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('42','8','postprocedure_diagnosis','Postprocedure Diagnosis','0');
279 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('43','8','procedure_description','Procedure Description','0');
280 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('44','8','procedure_indications','Procedure Indications','0');
281 insert into ccda_sections (ccda_sections_id, ccda_components_id, ccda_sections_field, ccda_sections_name, ccda_sections_req_mapping) values('45','9','unstructured_doc','Document','0');
282 #EndIf
284 #IfNotTable ccda_table_mapping
285 CREATE TABLE ccda_table_mapping (
286   id int(11) NOT NULL AUTO_INCREMENT,
287   ccda_component varchar(100) DEFAULT NULL,
288   ccda_component_section varchar(100) DEFAULT NULL,
289   form_dir varchar(100) DEFAULT NULL,
290   form_type smallint(6) DEFAULT NULL,
291   form_table varchar(100) DEFAULT NULL,
292   user_id int(11) DEFAULT NULL,
293   deleted tinyint(4) NOT NULL DEFAULT '0',
294   timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
295   PRIMARY KEY (id)
296 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
297 #EndIf
299 #IfNotTable ccda_field_mapping
300 CREATE TABLE ccda_field_mapping (
301   id int(11) NOT NULL AUTO_INCREMENT,
302   table_id int(11) DEFAULT NULL,
303   ccda_field varchar(100) DEFAULT NULL,
304   PRIMARY KEY (id)
305 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
306 #EndIf
308 #IfNotTable ccda
309 CREATE TABLE ccda (
310   id INT(11) NOT NULL AUTO_INCREMENT,
311   pid BIGINT(20) DEFAULT NULL,
312   encounter BIGINT(20) DEFAULT NULL,
313   ccda_data MEDIUMTEXT,
314   time VARCHAR(50) DEFAULT NULL,
315   status SMALLINT(6) DEFAULT NULL,
316   updated_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
317   user_id VARCHAR(50) null,
318   couch_docid VARCHAR(100) NULL,
319   couch_revid VARCHAR(100) NULL,
320   `view` tinyint(4) NOT NULL DEFAULT '0',
321   `transfer` tinyint(4) NOT NULL DEFAULT '0',
322   `type` VARCHAR(15),
323   `emr_transfer` tinyint(4) NOT NULL DEFAULT '0',
324   PRIMARY KEY (id),
325   UNIQUE KEY unique_key (pid,encounter,time)
326 ) ENGINE=InnoDB AUTO_INCREMENT=1 ;
327 #EndIf
329 #IfNotRow2D list_options list_id lists option_id religious_affiliation
330 INSERT INTO list_options(list_id,option_id,title) VALUES ('lists','religious_affiliation','Religious Affiliation');
331 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','adventist','1001','Adventist','5');
332 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','african_religions','1002','African Religions','15');
333 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','afro-caribbean_religions','1003','Afro-Caribbean Religions','25');
334 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','agnosticism','1004','Agnosticism','35');
335 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','anglican','1005','Anglican','45');
336 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','animism','1006','Animism','55');
337 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','assembly_of_god','1061','Assembly of God','65');
338 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','atheism','1007','Atheism','75');
339 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','babi_bahai_faiths','1008','Babi & Baha\'I faiths','85');
340 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','baptist','1009','Baptist','95');
341 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','bon','1010','Bon','105');
342 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','brethren','1062','Brethren','115');
343 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','cao_dai','1011','Cao Dai','125');
344 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','celticism','1012','Celticism','135');
345 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','christiannoncatholicnonspecifc','1013','Christian (non-Catholic, non-specific)','145');
346 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','christian_scientist','1063','Christian Scientist','155');
347 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','church_of_christ','1064','Church of Christ','165');
348 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','church_of_god','1065','Church of God','175');
349 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','confucianism','1014','Confucianism','185');
350 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','congregational','1066','Congregational','195');
351 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','cyberculture_religions','1015','Cyberculture Religions','205');
352 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','disciples_of_christ','1067','Disciples of Christ','215');
353 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','divination','1016','Divination','225');
354 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','eastern_orthodox','1068','Eastern Orthodox','235');
355 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','episcopalian','1069','Episcopalian','245');
356 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','evangelical_covenant','1070','Evangelical Covenant','255');
357 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','fourth_way','1017','Fourth Way','265');
358 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','free_daism','1018','Free Daism','275');
359 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','friends','1071','Friends','285');
360 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','full_gospel','1072','Full Gospel','295');
361 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','gnosis','1019','Gnosis','305');
362 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','hinduism','1020','Hinduism','315');
363 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','humanism','1021','Humanism','325');
364 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','independent','1022','Independent','335');
365 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','islam','1023','Islam','345');
366 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','jainism','1024','Jainism','355');
367 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','jehovahs_witnesses','1025','Jehovah\'s Witnesses','365');
368 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','judaism','1026','Judaism','375');
369 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','latter_day_saints','1027','Latter Day Saints','385');
370 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','lutheran','1028','Lutheran','395');
371 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','mahayana','1029','Mahayana','405');
372 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','meditation','1030','Meditation','415');
373 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','messianic_judaism','1031','Messianic Judaism','425');
374 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','methodist','1073','Methodist','435');
375 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','mitraism','1032','Mitraism','445');
376 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','native_american','1074','Native American','455');
377 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','nazarene','1075','Nazarene','465');
378 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','new_age','1033','New Age','475');
379 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','non-roman_catholic','1034','non-Roman Catholic','485');
380 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','occult','1035','Occult','495');
381 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','orthodox','1036','Orthodox','505');
382 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','paganism','1037','Paganism','515');
383 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','pentecostal','1038','Pentecostal','525');
384 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','presbyterian','1076','Presbyterian','535');
385 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','process_the','1039','Process, The','545');
386 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','protestant','1077','Protestant','555');
387 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','protestant_no_denomination','1078','Protestant, No Denomination','565');
388 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','reformed','1079','Reformed','575');
389 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','reformed_presbyterian','1040','Reformed/Presbyterian','585');
390 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','roman_catholic_church','1041','Roman Catholic Church','595');
391 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','salvation_army','1080','Salvation Army','605');
392 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','satanism','1042','Satanism','615');
393 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','scientology','1043','Scientology','625');
394 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shamanism','1044','Shamanism','635');
395 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shiite_islam','1045','Shiite (Islam)','645');
396 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','shinto','1046','Shinto','655');
397 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','sikism','1047','Sikism','665');
398 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','spiritualism','1048','Spiritualism','675');
399 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','sunni_islam','1049','Sunni (Islam)','685');
400 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','taoism','1050','Taoism','695');
401 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','theravada','1051','Theravada','705');
402 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','unitarian_universalist','1081','Unitarian Universalist','715');
403 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','unitarian-universalism','1052','Unitarian-Universalism','725');
404 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','united_church_of_christ','1082','United Church of Christ','735');
405 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','universal_life_church','1053','Universal Life Church','745');
406 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','vajrayana_tibetan','1054','Vajrayana (Tibetan)','755');
407 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','veda','1055','Veda','765');
408 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','voodoo','1056','Voodoo','775');
409 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','wicca','1057','Wicca','785');
410 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','yaohushua','1058','Yaohushua','795');
411 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','zen_buddhism','1059','Zen Buddhism','805');
412 INSERT INTO list_options (list_id, option_id, notes,title, seq) VALUES ('religious_affiliation','zoroastrianism','1060','Zoroastrianism','815');
414 #EndIf
416 #IfNotRow2D list_options list_id lists option_id personal_relationship
417 INSERT INTO list_options(list_id,option_id,title) VALUES ('lists','personal_relationship','Relationship');
418 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','ADOPT','Adopted Child','ADOPT','10');
419 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','AUNT','Aunt','AUNT','20');
420 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHILD','Child','CHILD','30');
421 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHLDINLAW','Child in-law','CHLDINLAW','40');
422 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','COUSN','Cousin','COUSN','50');
423 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','DOMPART','Domestic Partner','DOMPART','60');
424 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','FAMMEMB','Family Member','FAMMEMB','70');
425 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','CHLDFOST','Foster Child','CHLDFOST','80');
426 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GRNDCHILD','Grandchild','GRNDCHILD','90');
427 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GPARNT','Grandparent','GPARNT','100');
428 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GRPRN','Grandparent','GRPRN','110');
429 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','GGRPRN','Great Grandparent','GGRPRN','120');
430 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','HSIB','Half-Sibling','HSIB','130');
431 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MAUNT','MaternalAunt','MAUNT','140');
432 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MCOUSN','MaternalCousin','MCOUSN','150');
433 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MGRPRN','MaternalGrandparent','MGRPRN','160');
434 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MGGRPRN','MaternalGreatgrandparent','MGGRPRN','170');
435 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','MUNCLE','MaternalUncle','MUNCLE','180');
436 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NCHILD','Natural Child','NCHILD','190');
437 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NPRN','Natural Parent','NPRN','200');
438 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NSIB','Natural Sibling','NSIB','210');
439 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NBOR','Neighbor','NBOR','220');
440 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','NIENEPH','Niece/Nephew','NIENEPH','230');
441 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PRN','Parent','PRN','240');
442 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PRNINLAW','parent in-law','PRNINLAW','250');
443 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PAUNT','PaternalAunt','PAUNT','260');
444 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PCOUSN','PaternalCousin','PCOUSN','270');
445 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PGRPRN','PaternalGrandparent','PGRPRN','280');
446 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PGGRPRN','PaternalGreatgrandparent','PGGRPRN','290');
447 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','PUNCLE','PaternalUncle','PUNCLE','300');
448 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','ROOM','Roommate','ROOM','310');
449 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIB','Sibling','SIB','320');
450 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIBINLAW','Sibling in-law','SIBINLAW','330');
451 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SIGOTHR','Significant Other','SIGOTHR','340');
452 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','SPS','Spouse','SPS','350');
453 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STEP','Step Child','STEP','360');
454 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STPPRN','Step Parent','STPPRN','370');
455 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','STPSIB','Step Sibling','STPSIB','380');
456 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','UNCLE','Uncle','UNCLE','390');
457 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('personal_relationship','FRND','Unrelated Friend','FRND','400');
458 #EndIf
460 #IfNotRow3D list_options list_id ethnicity option_id hisp_or_latin notes 2135-2
461 UPDATE `list_options` SET `notes` = '2135-2' WHERE `option_id` = 'hisp_or_latin' AND `list_id` = 'ethnicity';
462 #EndIf
465 #IfNotRow3D list_options list_id ethnicity option_id not_hisp_or_latin notes 2186-5
466 UPDATE `list_options` SET `notes` = '2186-5' WHERE `option_id` = 'not_hisp_or_latin' AND `list_id` = 'ethnicity';
467 #EndIf
469 #IfNotRow3D list_options list_id race option_id amer_ind_or_alaska_native notes 1002-5
470 UPDATE `list_options` SET `notes` = '1002-5' WHERE `option_id` = 'amer_ind_or_alaska_native' AND `list_id` = 'race';
471 #EndIf
473 #IfNotRow3D list_options list_id race option_id Asian notes 2028-9
474 UPDATE `list_options` SET `notes` = '2028-9' WHERE `option_id` = 'Asian' AND `list_id` = 'race';
475 #EndIf
477 #IfNotRow3D list_options list_id race option_id black_or_afri_amer notes 2054-5
478 UPDATE `list_options` SET `notes` = '2054-5' WHERE `option_id` = 'black_or_afri_amer' AND `list_id` = 'race';
479 #EndIf
481 #IfNotRow3D list_options list_id race option_id native_hawai_or_pac_island notes 2076-8
482 UPDATE `list_options` SET `notes` = '2076-8' WHERE `option_id` = 'native_hawai_or_pac_island' AND `list_id` = 'race';
483 #EndIf
485 #IfNotRow3D list_options list_id race option_id white notes 2106-3
486 UPDATE `list_options` SET `notes` = '2106-3' WHERE `option_id` = 'white' AND `list_id` = 'race';
487 #EndIf
489 #IfNotRow2Dx2 list_options list_id race option_id abenaki title Abenaki
490 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','abenaki','Abenaki','60', '0',' 1006-6', 0);
491 #EndIf
493 #IfRow2D list_options list_id race option_id abenaki
494 UPDATE `list_options` SET `notes` = '1006-6' WHERE `option_id` = 'abenaki' AND `list_id` = 'race';
495 #EndIf
497 #IfRow2D list_options list_id race title Abenaki
498 UPDATE `list_options` SET `notes` = '1006-6' WHERE `title` = 'Abenaki' AND `list_id` = 'race';
499 #EndIf
501 #IfNotRow2Dx2 list_options list_id race option_id absentee_shawnee title Absentee Shawnee
502 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','absentee_shawnee','Absentee Shawnee','70', '0',' 1579-2', 0);
503 #EndIf
505 #IfRow2D list_options list_id race option_id absentee_shawnee
506 UPDATE `list_options` SET `notes` = '1579-2' WHERE `option_id` = 'absentee_shawnee' AND `list_id` = 'race';
507 #EndIf
509 #IfRow2D list_options list_id race title Absentee Shawnee
510 UPDATE `list_options` SET `notes` = '1579-2' WHERE `title` = 'Absentee Shawnee' AND `list_id` = 'race';
511 #EndIf
513 #IfNotRow2Dx2 list_options list_id race option_id acoma title Acoma
514 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','acoma','Acoma','80', '0',' 1490-2', 0);
515 #EndIf
517 #IfRow2D list_options list_id race option_id acoma
518 UPDATE `list_options` SET `notes` = '1490-2' WHERE `option_id` = 'acoma' AND `list_id` = 'race';
519 #EndIf
521 #IfRow2D list_options list_id race title Acoma
522 UPDATE `list_options` SET `notes` = '1490-2' WHERE `title` = 'Acoma' AND `list_id` = 'race';
523 #EndIf
525 #IfNotRow2Dx2 list_options list_id race option_id afghanistani title Afghanistani
526 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','afghanistani','Afghanistani','90', '0',' 2126-1', 0);
527 #EndIf
529 #IfRow2D list_options list_id race option_id afghanistani
530 UPDATE `list_options` SET `notes` = '2126-1' WHERE `option_id` = 'afghanistani' AND `list_id` = 'race';
531 #EndIf
533 #IfRow2D list_options list_id race title Afghanistani
534 UPDATE `list_options` SET `notes` = '2126-1' WHERE `title` = 'Afghanistani' AND `list_id` = 'race';
535 #EndIf
537 #IfNotRow2Dx2 list_options list_id race option_id african title African
538 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','african','African','100', '0',' 2060-2', 0);
539 #EndIf
541 #IfRow2D list_options list_id race option_id african
542 UPDATE `list_options` SET `notes` = '2060-2' WHERE `option_id` = 'african' AND `list_id` = 'race';
543 #EndIf
545 #IfRow2D list_options list_id race title African
546 UPDATE `list_options` SET `notes` = '2060-2' WHERE `title` = 'African' AND `list_id` = 'race';
547 #EndIf
549 #IfNotRow2Dx2 list_options list_id race option_id african_american title African American
550 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','african_american','African American','110', '0',' 2058-6', 0);
551 #EndIf
553 #IfRow2D list_options list_id race option_id african_american
554 UPDATE `list_options` SET `notes` = '2058-6' WHERE `option_id` = 'african_american' AND `list_id` = 'race';
555 #EndIf
557 #IfRow2D list_options list_id race title African American
558 UPDATE `list_options` SET `notes` = '2058-6' WHERE `title` = 'African American' AND `list_id` = 'race';
559 #EndIf
561 #IfNotRow2Dx2 list_options list_id race option_id agdaagux title Agdaagux
562 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','agdaagux','Agdaagux','120', '0',' 1994-3', 0);
563 #EndIf
565 #IfRow2D list_options list_id race option_id agdaagux
566 UPDATE `list_options` SET `notes` = '1994-3' WHERE `option_id` = 'agdaagux' AND `list_id` = 'race';
567 #EndIf
569 #IfRow2D list_options list_id race title Agdaagux
570 UPDATE `list_options` SET `notes` = '1994-3' WHERE `title` = 'Agdaagux' AND `list_id` = 'race';
571 #EndIf
573 #IfNotRow2Dx2 list_options list_id race option_id agua_caliente title Agua Caliente
574 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','agua_caliente','Agua Caliente','130', '0',' 1212-0', 0);
575 #EndIf
577 #IfRow2D list_options list_id race option_id agua_caliente
578 UPDATE `list_options` SET `notes` = '1212-0' WHERE `option_id` = 'agua_caliente' AND `list_id` = 'race';
579 #EndIf
581 #IfRow2D list_options list_id race title Agua Caliente
582 UPDATE `list_options` SET `notes` = '1212-0' WHERE `title` = 'Agua Caliente' AND `list_id` = 'race';
583 #EndIf
585 #IfNotRow2Dx2 list_options list_id race option_id agua_caliente_cahuilla title Agua Caliente Cahuilla
586 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','agua_caliente_cahuilla','Agua Caliente Cahuilla','140', '0',' 1045-4', 0);
587 #EndIf
589 #IfRow2D list_options list_id race option_id agua_caliente_cahuilla
590 UPDATE `list_options` SET `notes` = '1045-4' WHERE `option_id` = 'agua_caliente_cahuilla' AND `list_id` = 'race';
591 #EndIf
593 #IfRow2D list_options list_id race title Agua Caliente Cahuilla
594 UPDATE `list_options` SET `notes` = '1045-4' WHERE `title` = 'Agua Caliente Cahuilla' AND `list_id` = 'race';
595 #EndIf
597 #IfNotRow2Dx2 list_options list_id race option_id ahtna title Ahtna
598 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ahtna','Ahtna','150', '0',' 1740-0', 0);
599 #EndIf
601 #IfRow2D list_options list_id race option_id ahtna
602 UPDATE `list_options` SET `notes` = '1740-0' WHERE `option_id` = 'ahtna' AND `list_id` = 'race';
603 #EndIf
605 #IfRow2D list_options list_id race title Ahtna
606 UPDATE `list_options` SET `notes` = '1740-0' WHERE `title` = 'Ahtna' AND `list_id` = 'race';
607 #EndIf
609 #IfNotRow2Dx2 list_options list_id race option_id ak-chin title Ak-Chin
610 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ak-chin','Ak-Chin','160', '0',' 1654-3', 0);
611 #EndIf
613 #IfRow2D list_options list_id race option_id ak-chin
614 UPDATE `list_options` SET `notes` = '1654-3' WHERE `option_id` = 'ak-chin' AND `list_id` = 'race';
615 #EndIf
617 #IfRow2D list_options list_id race title Ak-Chin
618 UPDATE `list_options` SET `notes` = '1654-3' WHERE `title` = 'Ak-Chin' AND `list_id` = 'race';
619 #EndIf
621 #IfNotRow2Dx2 list_options list_id race option_id akhiok title Akhiok
622 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','akhiok','Akhiok','170', '0',' 1993-5', 0);
623 #EndIf
625 #IfRow2D list_options list_id race option_id akhiok
626 UPDATE `list_options` SET `notes` = '1993-5' WHERE `option_id` = 'akhiok' AND `list_id` = 'race';
627 #EndIf
629 #IfRow2D list_options list_id race title Akhiok
630 UPDATE `list_options` SET `notes` = '1993-5' WHERE `title` = 'Akhiok' AND `list_id` = 'race';
631 #EndIf
633 #IfNotRow2Dx2 list_options list_id race option_id akiachak title Akiachak
634 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','akiachak','Akiachak','180', '0',' 1897-8', 0);
635 #EndIf
637 #IfRow2D list_options list_id race option_id akiachak
638 UPDATE `list_options` SET `notes` = '1897-8' WHERE `option_id` = 'akiachak' AND `list_id` = 'race';
639 #EndIf
641 #IfRow2D list_options list_id race title Akiachak
642 UPDATE `list_options` SET `notes` = '1897-8' WHERE `title` = 'Akiachak' AND `list_id` = 'race';
643 #EndIf
645 #IfNotRow2Dx2 list_options list_id race option_id akiak title Akiak
646 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','akiak','Akiak','190', '0',' 1898-6', 0);
647 #EndIf
649 #IfRow2D list_options list_id race option_id akiak
650 UPDATE `list_options` SET `notes` = '1898-6' WHERE `option_id` = 'akiak' AND `list_id` = 'race';
651 #EndIf
653 #IfRow2D list_options list_id race title Akiak
654 UPDATE `list_options` SET `notes` = '1898-6' WHERE `title` = 'Akiak' AND `list_id` = 'race';
655 #EndIf
657 #IfNotRow2Dx2 list_options list_id race option_id akutan title Akutan
658 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','akutan','Akutan','200', '0',' 2007-3', 0);
659 #EndIf
661 #IfRow2D list_options list_id race option_id akutan
662 UPDATE `list_options` SET `notes` = '2007-3' WHERE `option_id` = 'akutan' AND `list_id` = 'race';
663 #EndIf
665 #IfRow2D list_options list_id race title Akutan
666 UPDATE `list_options` SET `notes` = '2007-3' WHERE `title` = 'Akutan' AND `list_id` = 'race';
667 #EndIf
669 #IfNotRow2Dx2 list_options list_id race option_id alabama_coushatta title Alabama Coushatta
670 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alabama_coushatta','Alabama Coushatta','210', '0',' 1187-4', 0);
671 #EndIf
673 #IfRow2D list_options list_id race option_id alabama_coushatta
674 UPDATE `list_options` SET `notes` = '1187-4' WHERE `option_id` = 'alabama_coushatta' AND `list_id` = 'race';
675 #EndIf
677 #IfRow2D list_options list_id race title Alabama Coushatta
678 UPDATE `list_options` SET `notes` = '1187-4' WHERE `title` = 'Alabama Coushatta' AND `list_id` = 'race';
679 #EndIf
681 #IfNotRow2Dx2 list_options list_id race option_id alabama_creek title Alabama Creek
682 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alabama_creek','Alabama Creek','220', '0',' 1194-0', 0);
683 #EndIf
685 #IfRow2D list_options list_id race option_id alabama_creek
686 UPDATE `list_options` SET `notes` = '1194-0' WHERE `option_id` = 'alabama_creek' AND `list_id` = 'race';
687 #EndIf
689 #IfRow2D list_options list_id race title Alabama Creek
690 UPDATE `list_options` SET `notes` = '1194-0' WHERE `title` = 'Alabama Creek' AND `list_id` = 'race';
691 #EndIf
693 #IfNotRow2Dx2 list_options list_id race option_id alabama_quassarte title Alabama Quassarte
694 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alabama_quassarte','Alabama Quassarte','230', '0',' 1195-7', 0);
695 #EndIf
697 #IfRow2D list_options list_id race option_id alabama_quassarte
698 UPDATE `list_options` SET `notes` = '1195-7' WHERE `option_id` = 'alabama_quassarte' AND `list_id` = 'race';
699 #EndIf
701 #IfRow2D list_options list_id race title Alabama Quassarte
702 UPDATE `list_options` SET `notes` = '1195-7' WHERE `title` = 'Alabama Quassarte' AND `list_id` = 'race';
703 #EndIf
705 #IfNotRow2Dx2 list_options list_id race option_id alakanuk title Alakanuk
706 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alakanuk','Alakanuk','240', '0',' 1899-4', 0);
707 #EndIf
709 #IfRow2D list_options list_id race option_id alakanuk
710 UPDATE `list_options` SET `notes` = '1899-4' WHERE `option_id` = 'alakanuk' AND `list_id` = 'race';
711 #EndIf
713 #IfRow2D list_options list_id race title Alakanuk
714 UPDATE `list_options` SET `notes` = '1899-4' WHERE `title` = 'Alakanuk' AND `list_id` = 'race';
715 #EndIf
717 #IfNotRow2Dx2 list_options list_id race option_id alamo_navajo title Alamo Navajo
718 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alamo_navajo','Alamo Navajo','250', '0',' 1383-9', 0);
719 #EndIf
721 #IfRow2D list_options list_id race option_id alamo_navajo
722 UPDATE `list_options` SET `notes` = '1383-9' WHERE `option_id` = 'alamo_navajo' AND `list_id` = 'race';
723 #EndIf
725 #IfRow2D list_options list_id race title Alamo Navajo
726 UPDATE `list_options` SET `notes` = '1383-9' WHERE `title` = 'Alamo Navajo' AND `list_id` = 'race';
727 #EndIf
729 #IfNotRow2Dx2 list_options list_id race option_id alanvik title Alanvik
730 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alanvik','Alanvik','260', '0',' 1744-2', 0);
731 #EndIf
733 #IfRow2D list_options list_id race option_id alanvik
734 UPDATE `list_options` SET `notes` = '1744-2' WHERE `option_id` = 'alanvik' AND `list_id` = 'race';
735 #EndIf
737 #IfRow2D list_options list_id race title Alanvik
738 UPDATE `list_options` SET `notes` = '1744-2' WHERE `title` = 'Alanvik' AND `list_id` = 'race';
739 #EndIf
741 #IfNotRow2Dx2 list_options list_id race option_id alaska_indian title Alaska Indian
742 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alaska_indian','Alaska Indian','270', '0',' 1737-6', 0);
743 #EndIf
745 #IfRow2D list_options list_id race option_id alaska_indian
746 UPDATE `list_options` SET `notes` = '1737-6' WHERE `option_id` = 'alaska_indian' AND `list_id` = 'race';
747 #EndIf
749 #IfRow2D list_options list_id race title Alaska Indian
750 UPDATE `list_options` SET `notes` = '1737-6' WHERE `title` = 'Alaska Indian' AND `list_id` = 'race';
751 #EndIf
753 #IfNotRow2Dx2 list_options list_id race option_id alaska_native title Alaska Native
754 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alaska_native','Alaska Native','280', '0',' 1735-0', 0);
755 #EndIf
757 #IfRow2D list_options list_id race option_id alaska_native
758 UPDATE `list_options` SET `notes` = '1735-0' WHERE `option_id` = 'alaska_native' AND `list_id` = 'race';
759 #EndIf
761 #IfRow2D list_options list_id race title Alaska Native
762 UPDATE `list_options` SET `notes` = '1735-0' WHERE `title` = 'Alaska Native' AND `list_id` = 'race';
763 #EndIf
765 #IfNotRow2Dx2 list_options list_id race option_id alaskan_athabascan title Alaskan Athabascan
766 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alaskan_athabascan','Alaskan Athabascan','290', '0',' 1739-2', 0);
767 #EndIf
769 #IfRow2D list_options list_id race option_id alaskan_athabascan
770 UPDATE `list_options` SET `notes` = '1739-2' WHERE `option_id` = 'alaskan_athabascan' AND `list_id` = 'race';
771 #EndIf
773 #IfRow2D list_options list_id race title Alaskan Athabascan
774 UPDATE `list_options` SET `notes` = '1739-2' WHERE `title` = 'Alaskan Athabascan' AND `list_id` = 'race';
775 #EndIf
777 #IfNotRow2Dx2 list_options list_id race option_id alatna title Alatna
778 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alatna','Alatna','300', '0',' 1741-8', 0);
779 #EndIf
781 #IfRow2D list_options list_id race option_id alatna
782 UPDATE `list_options` SET `notes` = '1741-8' WHERE `option_id` = 'alatna' AND `list_id` = 'race';
783 #EndIf
785 #IfRow2D list_options list_id race title Alatna
786 UPDATE `list_options` SET `notes` = '1741-8' WHERE `title` = 'Alatna' AND `list_id` = 'race';
787 #EndIf
789 #IfNotRow2Dx2 list_options list_id race option_id aleknagik title Aleknagik
790 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleknagik','Aleknagik','310', '0',' 1900-0', 0);
791 #EndIf
793 #IfRow2D list_options list_id race option_id aleknagik
794 UPDATE `list_options` SET `notes` = '1900-0' WHERE `option_id` = 'aleknagik' AND `list_id` = 'race';
795 #EndIf
797 #IfRow2D list_options list_id race title Aleknagik
798 UPDATE `list_options` SET `notes` = '1900-0' WHERE `title` = 'Aleknagik' AND `list_id` = 'race';
799 #EndIf
801 #IfNotRow2Dx2 list_options list_id race option_id aleut title Aleut
802 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleut','Aleut','320', '0',' 1966-1', 0);
803 #EndIf
805 #IfRow2D list_options list_id race option_id aleut
806 UPDATE `list_options` SET `notes` = '1966-1' WHERE `option_id` = 'aleut' AND `list_id` = 'race';
807 #EndIf
809 #IfRow2D list_options list_id race title Aleut
810 UPDATE `list_options` SET `notes` = '1966-1' WHERE `title` = 'Aleut' AND `list_id` = 'race';
811 #EndIf
813 #IfNotRow2Dx2 list_options list_id race option_id aleut_corporation title Aleut Corporation
814 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleut_corporation','Aleut Corporation','330', '0',' 2008-1', 0);
815 #EndIf
817 #IfRow2D list_options list_id race option_id aleut_corporation
818 UPDATE `list_options` SET `notes` = '2008-1' WHERE `option_id` = 'aleut_corporation' AND `list_id` = 'race';
819 #EndIf
821 #IfRow2D list_options list_id race title Aleut Corporation
822 UPDATE `list_options` SET `notes` = '2008-1' WHERE `title` = 'Aleut Corporation' AND `list_id` = 'race';
823 #EndIf
825 #IfNotRow2Dx2 list_options list_id race option_id aleutian title Aleutian
826 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleutian','Aleutian','340', '0',' 2009-9', 0);
827 #EndIf
829 #IfRow2D list_options list_id race option_id aleutian
830 UPDATE `list_options` SET `notes` = '2009-9' WHERE `option_id` = 'aleutian' AND `list_id` = 'race';
831 #EndIf
833 #IfRow2D list_options list_id race title Aleutian
834 UPDATE `list_options` SET `notes` = '2009-9' WHERE `title` = 'Aleutian' AND `list_id` = 'race';
835 #EndIf
837 #IfNotRow2Dx2 list_options list_id race option_id aleutian_islander title Aleutian Islander
838 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aleutian_islander','Aleutian Islander','350', '0',' 2010-7', 0);
839 #EndIf
841 #IfRow2D list_options list_id race option_id aleutian_islander
842 UPDATE `list_options` SET `notes` = '2010-7' WHERE `option_id` = 'aleutian_islander' AND `list_id` = 'race';
843 #EndIf
845 #IfRow2D list_options list_id race title Aleutian Islander
846 UPDATE `list_options` SET `notes` = '2010-7' WHERE `title` = 'Aleutian Islander' AND `list_id` = 'race';
847 #EndIf
849 #IfNotRow2Dx2 list_options list_id race option_id alexander title Alexander
850 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alexander','Alexander','360', '0',' 1742-6', 0);
851 #EndIf
853 #IfRow2D list_options list_id race option_id alexander
854 UPDATE `list_options` SET `notes` = '1742-6' WHERE `option_id` = 'alexander' AND `list_id` = 'race';
855 #EndIf
857 #IfRow2D list_options list_id race title Alexander
858 UPDATE `list_options` SET `notes` = '1742-6' WHERE `title` = 'Alexander' AND `list_id` = 'race';
859 #EndIf
861 #IfNotRow2Dx2 list_options list_id race option_id algonquian title Algonquian
862 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','algonquian','Algonquian','370', '0',' 1008-2', 0);
863 #EndIf
865 #IfRow2D list_options list_id race option_id algonquian
866 UPDATE `list_options` SET `notes` = '1008-2' WHERE `option_id` = 'algonquian' AND `list_id` = 'race';
867 #EndIf
869 #IfRow2D list_options list_id race title Algonquian
870 UPDATE `list_options` SET `notes` = '1008-2' WHERE `title` = 'Algonquian' AND `list_id` = 'race';
871 #EndIf
873 #IfNotRow2Dx2 list_options list_id race option_id allakaket title Allakaket
874 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','allakaket','Allakaket','380', '0',' 1743-4', 0);
875 #EndIf
877 #IfRow2D list_options list_id race option_id allakaket
878 UPDATE `list_options` SET `notes` = '1743-4' WHERE `option_id` = 'allakaket' AND `list_id` = 'race';
879 #EndIf
881 #IfRow2D list_options list_id race title Allakaket
882 UPDATE `list_options` SET `notes` = '1743-4' WHERE `title` = 'Allakaket' AND `list_id` = 'race';
883 #EndIf
885 #IfNotRow2Dx2 list_options list_id race option_id allen_canyon title Allen Canyon
886 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','allen_canyon','Allen Canyon','390', '0',' 1671-7', 0);
887 #EndIf
889 #IfRow2D list_options list_id race option_id allen_canyon
890 UPDATE `list_options` SET `notes` = '1671-7' WHERE `option_id` = 'allen_canyon' AND `list_id` = 'race';
891 #EndIf
893 #IfRow2D list_options list_id race title Allen Canyon
894 UPDATE `list_options` SET `notes` = '1671-7' WHERE `title` = 'Allen Canyon' AND `list_id` = 'race';
895 #EndIf
897 #IfNotRow2Dx2 list_options list_id race option_id alpine title Alpine
898 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alpine','Alpine','400', '0',' 1688-1', 0);
899 #EndIf
901 #IfRow2D list_options list_id race option_id alpine
902 UPDATE `list_options` SET `notes` = '1688-1' WHERE `option_id` = 'alpine' AND `list_id` = 'race';
903 #EndIf
905 #IfRow2D list_options list_id race title Alpine
906 UPDATE `list_options` SET `notes` = '1688-1' WHERE `title` = 'Alpine' AND `list_id` = 'race';
907 #EndIf
909 #IfNotRow2Dx2 list_options list_id race option_id alsea title Alsea
910 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alsea','Alsea','410', '0',' 1392-0', 0);
911 #EndIf
913 #IfRow2D list_options list_id race option_id alsea
914 UPDATE `list_options` SET `notes` = '1392-0' WHERE `option_id` = 'alsea' AND `list_id` = 'race';
915 #EndIf
917 #IfRow2D list_options list_id race title Alsea
918 UPDATE `list_options` SET `notes` = '1392-0' WHERE `title` = 'Alsea' AND `list_id` = 'race';
919 #EndIf
921 #IfNotRow2Dx2 list_options list_id race option_id alutiiq_aleut title Alutiiq Aleut
922 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','alutiiq_aleut','Alutiiq Aleut','420', '0',' 1968-7', 0);
923 #EndIf
925 #IfRow2D list_options list_id race option_id alutiiq_aleut
926 UPDATE `list_options` SET `notes` = '1968-7' WHERE `option_id` = 'alutiiq_aleut' AND `list_id` = 'race';
927 #EndIf
929 #IfRow2D list_options list_id race title Alutiiq Aleut
930 UPDATE `list_options` SET `notes` = '1968-7' WHERE `title` = 'Alutiiq Aleut' AND `list_id` = 'race';
931 #EndIf
933 #IfNotRow2Dx2 list_options list_id race option_id ambler title Ambler
934 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ambler','Ambler','430', '0',' 1845-7', 0);
935 #EndIf
937 #IfRow2D list_options list_id race option_id ambler
938 UPDATE `list_options` SET `notes` = '1845-7' WHERE `option_id` = 'ambler' AND `list_id` = 'race';
939 #EndIf
941 #IfRow2D list_options list_id race title Ambler
942 UPDATE `list_options` SET `notes` = '1845-7' WHERE `title` = 'Ambler' AND `list_id` = 'race';
943 #EndIf
945 #IfNotRow2Dx2 list_options list_id race option_id american_indian title American Indian
946 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','american_indian','American Indian','440', '0',' 1004-1', 0);
947 #EndIf
949 #IfRow2D list_options list_id race option_id american_indian
950 UPDATE `list_options` SET `notes` = '1004-1' WHERE `option_id` = 'american_indian' AND `list_id` = 'race';
951 #EndIf
953 #IfRow2D list_options list_id race title American Indian
954 UPDATE `list_options` SET `notes` = '1004-1' WHERE `title` = 'American Indian' AND `list_id` = 'race';
955 #EndIf
957 #IfNotRow2Dx2 list_options list_id race option_id anaktuvuk title Anaktuvuk
958 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','anaktuvuk','Anaktuvuk','460', '0',' 1846-5', 0);
959 #EndIf
961 #IfRow2D list_options list_id race option_id anaktuvuk
962 UPDATE `list_options` SET `notes` = '1846-5' WHERE `option_id` = 'anaktuvuk' AND `list_id` = 'race';
963 #EndIf
965 #IfRow2D list_options list_id race title Anaktuvuk
966 UPDATE `list_options` SET `notes` = '1846-5' WHERE `title` = 'Anaktuvuk' AND `list_id` = 'race';
967 #EndIf
969 #IfNotRow2Dx2 list_options list_id race option_id anaktuvuk_pass title Anaktuvuk Pass
970 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','anaktuvuk_pass','Anaktuvuk Pass','470', '0',' 1847-3', 0);
971 #EndIf
973 #IfRow2D list_options list_id race option_id anaktuvuk_pass
974 UPDATE `list_options` SET `notes` = '1847-3' WHERE `option_id` = 'anaktuvuk_pass' AND `list_id` = 'race';
975 #EndIf
977 #IfRow2D list_options list_id race title Anaktuvuk Pass
978 UPDATE `list_options` SET `notes` = '1847-3' WHERE `title` = 'Anaktuvuk Pass' AND `list_id` = 'race';
979 #EndIf
981 #IfNotRow2Dx2 list_options list_id race option_id andreafsky title Andreafsky
982 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','andreafsky','Andreafsky','480', '0',' 1901-8', 0);
983 #EndIf
985 #IfRow2D list_options list_id race option_id andreafsky
986 UPDATE `list_options` SET `notes` = '1901-8' WHERE `option_id` = 'andreafsky' AND `list_id` = 'race';
987 #EndIf
989 #IfRow2D list_options list_id race title Andreafsky
990 UPDATE `list_options` SET `notes` = '1901-8' WHERE `title` = 'Andreafsky' AND `list_id` = 'race';
991 #EndIf
993 #IfNotRow2Dx2 list_options list_id race option_id angoon title Angoon
994 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','angoon','Angoon','490', '0',' 1814-3', 0);
995 #EndIf
997 #IfRow2D list_options list_id race option_id angoon
998 UPDATE `list_options` SET `notes` = '1814-3' WHERE `option_id` = 'angoon' AND `list_id` = 'race';
999 #EndIf
1001 #IfRow2D list_options list_id race title Angoon
1002 UPDATE `list_options` SET `notes` = '1814-3' WHERE `title` = 'Angoon' AND `list_id` = 'race';
1003 #EndIf
1005 #IfNotRow2Dx2 list_options list_id race option_id aniak title Aniak
1006 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aniak','Aniak','500', '0',' 1902-6', 0);
1007 #EndIf
1009 #IfRow2D list_options list_id race option_id aniak
1010 UPDATE `list_options` SET `notes` = '1902-6' WHERE `option_id` = 'aniak' AND `list_id` = 'race';
1011 #EndIf
1013 #IfRow2D list_options list_id race title Aniak
1014 UPDATE `list_options` SET `notes` = '1902-6' WHERE `title` = 'Aniak' AND `list_id` = 'race';
1015 #EndIf
1017 #IfNotRow2Dx2 list_options list_id race option_id anvik title Anvik
1018 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','anvik','Anvik','510', '0',' 1745-9', 0);
1019 #EndIf
1021 #IfRow2D list_options list_id race option_id anvik
1022 UPDATE `list_options` SET `notes` = '1745-9' WHERE `option_id` = 'anvik' AND `list_id` = 'race';
1023 #EndIf
1025 #IfRow2D list_options list_id race title Anvik
1026 UPDATE `list_options` SET `notes` = '1745-9' WHERE `title` = 'Anvik' AND `list_id` = 'race';
1027 #EndIf
1029 #IfNotRow2Dx2 list_options list_id race option_id apache title Apache
1030 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','apache','Apache','520', '0',' 1010-8', 0);
1031 #EndIf
1033 #IfRow2D list_options list_id race option_id apache
1034 UPDATE `list_options` SET `notes` = '1010-8' WHERE `option_id` = 'apache' AND `list_id` = 'race';
1035 #EndIf
1037 #IfRow2D list_options list_id race title Apache
1038 UPDATE `list_options` SET `notes` = '1010-8' WHERE `title` = 'Apache' AND `list_id` = 'race';
1039 #EndIf
1041 #IfNotRow2Dx2 list_options list_id race option_id arab title Arab
1042 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arab','Arab','530', '0',' 2129-5', 0);
1043 #EndIf
1045 #IfRow2D list_options list_id race option_id arab
1046 UPDATE `list_options` SET `notes` = '2129-5' WHERE `option_id` = 'arab' AND `list_id` = 'race';
1047 #EndIf
1049 #IfRow2D list_options list_id race title Arab
1050 UPDATE `list_options` SET `notes` = '2129-5' WHERE `title` = 'Arab' AND `list_id` = 'race';
1051 #EndIf
1053 #IfNotRow2Dx2 list_options list_id race option_id arapaho title Arapaho
1054 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arapaho','Arapaho','540', '0',' 1021-5', 0);
1055 #EndIf
1057 #IfRow2D list_options list_id race option_id arapaho
1058 UPDATE `list_options` SET `notes` = '1021-5' WHERE `option_id` = 'arapaho' AND `list_id` = 'race';
1059 #EndIf
1061 #IfRow2D list_options list_id race title Arapaho
1062 UPDATE `list_options` SET `notes` = '1021-5' WHERE `title` = 'Arapaho' AND `list_id` = 'race';
1063 #EndIf
1065 #IfNotRow2Dx2 list_options list_id race option_id arctic title Arctic
1066 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arctic','Arctic','550', '0',' 1746-7', 0);
1067 #EndIf
1069 #IfRow2D list_options list_id race option_id arctic
1070 UPDATE `list_options` SET `notes` = '1746-7' WHERE `option_id` = 'arctic' AND `list_id` = 'race';
1071 #EndIf
1073 #IfRow2D list_options list_id race title Arctic
1074 UPDATE `list_options` SET `notes` = '1746-7' WHERE `title` = 'Arctic' AND `list_id` = 'race';
1075 #EndIf
1077 #IfNotRow2Dx2 list_options list_id race option_id arctic_slope_corporation title Arctic Slope Corporation
1078 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arctic_slope_corporation','Arctic Slope Corporation','560', '0',' 1849-9', 0);
1079 #EndIf
1081 #IfRow2D list_options list_id race option_id arctic_slope_corporation
1082 UPDATE `list_options` SET `notes` = '1849-9' WHERE `option_id` = 'arctic_slope_corporation' AND `list_id` = 'race';
1083 #EndIf
1085 #IfRow2D list_options list_id race title Arctic Slope Corporation
1086 UPDATE `list_options` SET `notes` = '1849-9' WHERE `title` = 'Arctic Slope Corporation' AND `list_id` = 'race';
1087 #EndIf
1089 #IfNotRow2Dx2 list_options list_id race option_id arctic_slope_inupiat title Arctic Slope Inupiat
1090 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arctic_slope_inupiat','Arctic Slope Inupiat','570', '0',' 1848-1', 0);
1091 #EndIf
1093 #IfRow2D list_options list_id race option_id arctic_slope_inupiat
1094 UPDATE `list_options` SET `notes` = '1848-1' WHERE `option_id` = 'arctic_slope_inupiat' AND `list_id` = 'race';
1095 #EndIf
1097 #IfRow2D list_options list_id race title Arctic Slope Inupiat
1098 UPDATE `list_options` SET `notes` = '1848-1' WHERE `title` = 'Arctic Slope Inupiat' AND `list_id` = 'race';
1099 #EndIf
1101 #IfNotRow2Dx2 list_options list_id race option_id arikara title Arikara
1102 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arikara','Arikara','580', '0',' 1026-4', 0);
1103 #EndIf
1105 #IfRow2D list_options list_id race option_id arikara
1106 UPDATE `list_options` SET `notes` = '1026-4' WHERE `option_id` = 'arikara' AND `list_id` = 'race';
1107 #EndIf
1109 #IfRow2D list_options list_id race title Arikara
1110 UPDATE `list_options` SET `notes` = '1026-4' WHERE `title` = 'Arikara' AND `list_id` = 'race';
1111 #EndIf
1113 #IfNotRow2Dx2 list_options list_id race option_id arizona_tewa title Arizona Tewa
1114 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','arizona_tewa','Arizona Tewa','590', '0',' 1491-0', 0);
1115 #EndIf
1117 #IfRow2D list_options list_id race option_id arizona_tewa
1118 UPDATE `list_options` SET `notes` = '1491-0' WHERE `option_id` = 'arizona_tewa' AND `list_id` = 'race';
1119 #EndIf
1121 #IfRow2D list_options list_id race title Arizona Tewa
1122 UPDATE `list_options` SET `notes` = '1491-0' WHERE `title` = 'Arizona Tewa' AND `list_id` = 'race';
1123 #EndIf
1125 #IfNotRow2Dx2 list_options list_id race option_id armenian title Armenian
1126 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','armenian','Armenian','600', '0',' 2109-7', 0);
1127 #EndIf
1129 #IfRow2D list_options list_id race option_id armenian
1130 UPDATE `list_options` SET `notes` = '2109-7' WHERE `option_id` = 'armenian' AND `list_id` = 'race';
1131 #EndIf
1133 #IfRow2D list_options list_id race title Armenian
1134 UPDATE `list_options` SET `notes` = '2109-7' WHERE `title` = 'Armenian' AND `list_id` = 'race';
1135 #EndIf
1137 #IfNotRow2Dx2 list_options list_id race option_id aroostook title Aroostook
1138 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','aroostook','Aroostook','610', '0',' 1366-4', 0);
1139 #EndIf
1141 #IfRow2D list_options list_id race option_id aroostook
1142 UPDATE `list_options` SET `notes` = '1366-4' WHERE `option_id` = 'aroostook' AND `list_id` = 'race';
1143 #EndIf
1145 #IfRow2D list_options list_id race title Aroostook
1146 UPDATE `list_options` SET `notes` = '1366-4' WHERE `title` = 'Aroostook' AND `list_id` = 'race';
1147 #EndIf
1149 #IfNotRow2Dx2 list_options list_id race option_id asian_indian title Asian Indian
1150 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','asian_indian','Asian Indian','630', '0',' 2029-7', 0);
1151 #EndIf
1153 #IfRow2D list_options list_id race option_id asian_indian
1154 UPDATE `list_options` SET `notes` = '2029-7' WHERE `option_id` = 'asian_indian' AND `list_id` = 'race';
1155 #EndIf
1157 #IfRow2D list_options list_id race title Asian Indian
1158 UPDATE `list_options` SET `notes` = '2029-7' WHERE `title` = 'Asian Indian' AND `list_id` = 'race';
1159 #EndIf
1161 #IfNotRow2Dx2 list_options list_id race option_id assiniboine title Assiniboine
1162 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','assiniboine','Assiniboine','640', '0',' 1028-0', 0);
1163 #EndIf
1165 #IfRow2D list_options list_id race option_id assiniboine
1166 UPDATE `list_options` SET `notes` = '1028-0' WHERE `option_id` = 'assiniboine' AND `list_id` = 'race';
1167 #EndIf
1169 #IfRow2D list_options list_id race title Assiniboine
1170 UPDATE `list_options` SET `notes` = '1028-0' WHERE `title` = 'Assiniboine' AND `list_id` = 'race';
1171 #EndIf
1173 #IfNotRow2Dx2 list_options list_id race option_id assiniboine_sioux title Assiniboine Sioux
1174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','assiniboine_sioux','Assiniboine Sioux','650', '0',' 1030-6', 0);
1175 #EndIf
1177 #IfRow2D list_options list_id race option_id assiniboine_sioux
1178 UPDATE `list_options` SET `notes` = '1030-6' WHERE `option_id` = 'assiniboine_sioux' AND `list_id` = 'race';
1179 #EndIf
1181 #IfRow2D list_options list_id race title Assiniboine Sioux
1182 UPDATE `list_options` SET `notes` = '1030-6' WHERE `title` = 'Assiniboine Sioux' AND `list_id` = 'race';
1183 #EndIf
1185 #IfNotRow2Dx2 list_options list_id race option_id assyrian title Assyrian
1186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','assyrian','Assyrian','660', '0',' 2119-6', 0);
1187 #EndIf
1189 #IfRow2D list_options list_id race option_id assyrian
1190 UPDATE `list_options` SET `notes` = '2119-6' WHERE `option_id` = 'assyrian' AND `list_id` = 'race';
1191 #EndIf
1193 #IfRow2D list_options list_id race title Assyrian
1194 UPDATE `list_options` SET `notes` = '2119-6' WHERE `title` = 'Assyrian' AND `list_id` = 'race';
1195 #EndIf
1197 #IfNotRow2Dx2 list_options list_id race option_id atka title Atka
1198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','atka','Atka','670', '0',' 2011-5', 0);
1199 #EndIf
1201 #IfRow2D list_options list_id race option_id atka
1202 UPDATE `list_options` SET `notes` = '2011-5' WHERE `option_id` = 'atka' AND `list_id` = 'race';
1203 #EndIf
1205 #IfRow2D list_options list_id race title Atka
1206 UPDATE `list_options` SET `notes` = '2011-5' WHERE `title` = 'Atka' AND `list_id` = 'race';
1207 #EndIf
1209 #IfNotRow2Dx2 list_options list_id race option_id atmautluak title Atmautluak
1210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','atmautluak','Atmautluak','680', '0',' 1903-4', 0);
1211 #EndIf
1213 #IfRow2D list_options list_id race option_id atmautluak
1214 UPDATE `list_options` SET `notes` = '1903-4' WHERE `option_id` = 'atmautluak' AND `list_id` = 'race';
1215 #EndIf
1217 #IfRow2D list_options list_id race title Atmautluak
1218 UPDATE `list_options` SET `notes` = '1903-4' WHERE `title` = 'Atmautluak' AND `list_id` = 'race';
1219 #EndIf
1221 #IfNotRow2Dx2 list_options list_id race option_id atqasuk title Atqasuk
1222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','atqasuk','Atqasuk','690', '0',' 1850-7', 0);
1223 #EndIf
1225 #IfRow2D list_options list_id race option_id atqasuk
1226 UPDATE `list_options` SET `notes` = '1850-7' WHERE `option_id` = 'atqasuk' AND `list_id` = 'race';
1227 #EndIf
1229 #IfRow2D list_options list_id race title Atqasuk
1230 UPDATE `list_options` SET `notes` = '1850-7' WHERE `title` = 'Atqasuk' AND `list_id` = 'race';
1231 #EndIf
1233 #IfNotRow2Dx2 list_options list_id race option_id atsina title Atsina
1234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','atsina','Atsina','700', '0',' 1265-8', 0);
1235 #EndIf
1237 #IfRow2D list_options list_id race option_id atsina
1238 UPDATE `list_options` SET `notes` = '1265-8' WHERE `option_id` = 'atsina' AND `list_id` = 'race';
1239 #EndIf
1241 #IfRow2D list_options list_id race title Atsina
1242 UPDATE `list_options` SET `notes` = '1265-8' WHERE `title` = 'Atsina' AND `list_id` = 'race';
1243 #EndIf
1245 #IfNotRow2Dx2 list_options list_id race option_id attacapa title Attacapa
1246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','attacapa','Attacapa','710', '0',' 1234-4', 0);
1247 #EndIf
1249 #IfRow2D list_options list_id race option_id attacapa
1250 UPDATE `list_options` SET `notes` = '1234-4' WHERE `option_id` = 'attacapa' AND `list_id` = 'race';
1251 #EndIf
1253 #IfRow2D list_options list_id race title Attacapa
1254 UPDATE `list_options` SET `notes` = '1234-4' WHERE `title` = 'Attacapa' AND `list_id` = 'race';
1255 #EndIf
1257 #IfNotRow2Dx2 list_options list_id race option_id augustine title Augustine
1258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','augustine','Augustine','720', '0',' 1046-2', 0);
1259 #EndIf
1261 #IfRow2D list_options list_id race option_id augustine
1262 UPDATE `list_options` SET `notes` = '1046-2' WHERE `option_id` = 'augustine' AND `list_id` = 'race';
1263 #EndIf
1265 #IfRow2D list_options list_id race title Augustine
1266 UPDATE `list_options` SET `notes` = '1046-2' WHERE `title` = 'Augustine' AND `list_id` = 'race';
1267 #EndIf
1269 #IfNotRow2Dx2 list_options list_id race option_id bad_river title Bad River
1270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bad_river','Bad River','730', '0',' 1124-7', 0);
1271 #EndIf
1273 #IfRow2D list_options list_id race option_id bad_river
1274 UPDATE `list_options` SET `notes` = '1124-7' WHERE `option_id` = 'bad_river' AND `list_id` = 'race';
1275 #EndIf
1277 #IfRow2D list_options list_id race title Bad River
1278 UPDATE `list_options` SET `notes` = '1124-7' WHERE `title` = 'Bad River' AND `list_id` = 'race';
1279 #EndIf
1281 #IfNotRow2Dx2 list_options list_id race option_id bahamian title Bahamian
1282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bahamian','Bahamian','740', '0',' 2067-7', 0);
1283 #EndIf
1285 #IfRow2D list_options list_id race option_id bahamian
1286 UPDATE `list_options` SET `notes` = '2067-7' WHERE `option_id` = 'bahamian' AND `list_id` = 'race';
1287 #EndIf
1289 #IfRow2D list_options list_id race title Bahamian
1290 UPDATE `list_options` SET `notes` = '2067-7' WHERE `title` = 'Bahamian' AND `list_id` = 'race';
1291 #EndIf
1293 #IfNotRow2Dx2 list_options list_id race option_id bangladeshi title Bangladeshi
1294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bangladeshi','Bangladeshi','750', '0',' 2030-5', 0);
1295 #EndIf
1297 #IfRow2D list_options list_id race option_id bangladeshi
1298 UPDATE `list_options` SET `notes` = '2030-5' WHERE `option_id` = 'bangladeshi' AND `list_id` = 'race';
1299 #EndIf
1301 #IfRow2D list_options list_id race title Bangladeshi
1302 UPDATE `list_options` SET `notes` = '2030-5' WHERE `title` = 'Bangladeshi' AND `list_id` = 'race';
1303 #EndIf
1305 #IfNotRow2Dx2 list_options list_id race option_id bannock title Bannock
1306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bannock','Bannock','760', '0',' 1033-0', 0);
1307 #EndIf
1309 #IfRow2D list_options list_id race option_id bannock
1310 UPDATE `list_options` SET `notes` = '1033-0' WHERE `option_id` = 'bannock' AND `list_id` = 'race';
1311 #EndIf
1313 #IfRow2D list_options list_id race title Bannock
1314 UPDATE `list_options` SET `notes` = '1033-0' WHERE `title` = 'Bannock' AND `list_id` = 'race';
1315 #EndIf
1317 #IfNotRow2Dx2 list_options list_id race option_id barbadian title Barbadian
1318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','barbadian','Barbadian','770', '0',' 2068-5', 0);
1319 #EndIf
1321 #IfRow2D list_options list_id race option_id barbadian
1322 UPDATE `list_options` SET `notes` = '2068-5' WHERE `option_id` = 'barbadian' AND `list_id` = 'race';
1323 #EndIf
1325 #IfRow2D list_options list_id race title Barbadian
1326 UPDATE `list_options` SET `notes` = '2068-5' WHERE `title` = 'Barbadian' AND `list_id` = 'race';
1327 #EndIf
1329 #IfNotRow2Dx2 list_options list_id race option_id barrio_libre title Barrio Libre
1330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','barrio_libre','Barrio Libre','780', '0',' 1712-9', 0);
1331 #EndIf
1333 #IfRow2D list_options list_id race option_id barrio_libre
1334 UPDATE `list_options` SET `notes` = '1712-9' WHERE `option_id` = 'barrio_libre' AND `list_id` = 'race';
1335 #EndIf
1337 #IfRow2D list_options list_id race title Barrio Libre
1338 UPDATE `list_options` SET `notes` = '1712-9' WHERE `title` = 'Barrio Libre' AND `list_id` = 'race';
1339 #EndIf
1341 #IfNotRow2Dx2 list_options list_id race option_id barrow title Barrow
1342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','barrow','Barrow','790', '0',' 1851-5', 0);
1343 #EndIf
1345 #IfRow2D list_options list_id race option_id barrow
1346 UPDATE `list_options` SET `notes` = '1851-5' WHERE `option_id` = 'barrow' AND `list_id` = 'race';
1347 #EndIf
1349 #IfRow2D list_options list_id race title Barrow
1350 UPDATE `list_options` SET `notes` = '1851-5' WHERE `title` = 'Barrow' AND `list_id` = 'race';
1351 #EndIf
1353 #IfNotRow2Dx2 list_options list_id race option_id battle_mountain title Battle Mountain
1354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','battle_mountain','Battle Mountain','800', '0',' 1587-5', 0);
1355 #EndIf
1357 #IfRow2D list_options list_id race option_id battle_mountain
1358 UPDATE `list_options` SET `notes` = '1587-5' WHERE `option_id` = 'battle_mountain' AND `list_id` = 'race';
1359 #EndIf
1361 #IfRow2D list_options list_id race title Battle Mountain
1362 UPDATE `list_options` SET `notes` = '1587-5' WHERE `title` = 'Battle Mountain' AND `list_id` = 'race';
1363 #EndIf
1365 #IfNotRow2Dx2 list_options list_id race option_id bay_mills_chippewa title Bay Mills Chippewa
1366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bay_mills_chippewa','Bay Mills Chippewa','810', '0',' 1125-4', 0);
1367 #EndIf
1369 #IfRow2D list_options list_id race option_id bay_mills_chippewa
1370 UPDATE `list_options` SET `notes` = '1125-4' WHERE `option_id` = 'bay_mills_chippewa' AND `list_id` = 'race';
1371 #EndIf
1373 #IfRow2D list_options list_id race title Bay Mills Chippewa
1374 UPDATE `list_options` SET `notes` = '1125-4' WHERE `title` = 'Bay Mills Chippewa' AND `list_id` = 'race';
1375 #EndIf
1377 #IfNotRow2Dx2 list_options list_id race option_id beaver title Beaver
1378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','beaver','Beaver','820', '0',' 1747-5', 0);
1379 #EndIf
1381 #IfRow2D list_options list_id race option_id beaver
1382 UPDATE `list_options` SET `notes` = '1747-5' WHERE `option_id` = 'beaver' AND `list_id` = 'race';
1383 #EndIf
1385 #IfRow2D list_options list_id race title Beaver
1386 UPDATE `list_options` SET `notes` = '1747-5' WHERE `title` = 'Beaver' AND `list_id` = 'race';
1387 #EndIf
1389 #IfNotRow2Dx2 list_options list_id race option_id belkofski title Belkofski
1390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','belkofski','Belkofski','830', '0',' 2012-3', 0);
1391 #EndIf
1393 #IfRow2D list_options list_id race option_id belkofski
1394 UPDATE `list_options` SET `notes` = '2012-3' WHERE `option_id` = 'belkofski' AND `list_id` = 'race';
1395 #EndIf
1397 #IfRow2D list_options list_id race title Belkofski
1398 UPDATE `list_options` SET `notes` = '2012-3' WHERE `title` = 'Belkofski' AND `list_id` = 'race';
1399 #EndIf
1401 #IfNotRow2Dx2 list_options list_id race option_id bering_straits_inupiat title Bering Straits Inupiat
1402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bering_straits_inupiat','Bering Straits Inupiat','840', '0',' 1852-3', 0);
1403 #EndIf
1405 #IfRow2D list_options list_id race option_id bering_straits_inupiat
1406 UPDATE `list_options` SET `notes` = '1852-3' WHERE `option_id` = 'bering_straits_inupiat' AND `list_id` = 'race';
1407 #EndIf
1409 #IfRow2D list_options list_id race title Bering Straits Inupiat
1410 UPDATE `list_options` SET `notes` = '1852-3' WHERE `title` = 'Bering Straits Inupiat' AND `list_id` = 'race';
1411 #EndIf
1413 #IfNotRow2Dx2 list_options list_id race option_id bethel title Bethel
1414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bethel','Bethel','850', '0',' 1904-2', 0);
1415 #EndIf
1417 #IfRow2D list_options list_id race option_id bethel
1418 UPDATE `list_options` SET `notes` = '1904-2' WHERE `option_id` = 'bethel' AND `list_id` = 'race';
1419 #EndIf
1421 #IfRow2D list_options list_id race title Bethel
1422 UPDATE `list_options` SET `notes` = '1904-2' WHERE `title` = 'Bethel' AND `list_id` = 'race';
1423 #EndIf
1425 #IfNotRow2Dx2 list_options list_id race option_id bhutanese title Bhutanese
1426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bhutanese','Bhutanese','860', '0',' 2031-3', 0);
1427 #EndIf
1429 #IfRow2D list_options list_id race option_id bhutanese
1430 UPDATE `list_options` SET `notes` = '2031-3' WHERE `option_id` = 'bhutanese' AND `list_id` = 'race';
1431 #EndIf
1433 #IfRow2D list_options list_id race title Bhutanese
1434 UPDATE `list_options` SET `notes` = '2031-3' WHERE `title` = 'Bhutanese' AND `list_id` = 'race';
1435 #EndIf
1437 #IfNotRow2Dx2 list_options list_id race option_id big_cypress title Big Cypress
1438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','big_cypress','Big Cypress','870', '0',' 1567-7', 0);
1439 #EndIf
1441 #IfRow2D list_options list_id race option_id big_cypress
1442 UPDATE `list_options` SET `notes` = '1567-7' WHERE `option_id` = 'big_cypress' AND `list_id` = 'race';
1443 #EndIf
1445 #IfRow2D list_options list_id race title Big Cypress
1446 UPDATE `list_options` SET `notes` = '1567-7' WHERE `title` = 'Big Cypress' AND `list_id` = 'race';
1447 #EndIf
1449 #IfNotRow2D list_options list_id race option_id bill_moores_slough
1450 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bill_moores_slough',"Bill Moore's Slough",'880', '0',' 1905-9', 0);
1451 #EndIf
1453 #IfRow2D list_options list_id race option_id bill_moores_slough
1454 UPDATE `list_options` SET `notes` = '1905-9' WHERE `option_id` = 'bill_moores_slough' AND `list_id` = 'race';
1455 #EndIf
1457 #IfNotRow2Dx2 list_options list_id race option_id biloxi title Biloxi
1458 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','biloxi','Biloxi','890', '0',' 1235-1', 0);
1459 #EndIf
1461 #IfRow2D list_options list_id race option_id biloxi
1462 UPDATE `list_options` SET `notes` = '1235-1' WHERE `option_id` = 'biloxi' AND `list_id` = 'race';
1463 #EndIf
1465 #IfRow2D list_options list_id race title Biloxi
1466 UPDATE `list_options` SET `notes` = '1235-1' WHERE `title` = 'Biloxi' AND `list_id` = 'race';
1467 #EndIf
1469 #IfNotRow2Dx2 list_options list_id race option_id birch_creek title Birch Creek
1470 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','birch_creek','Birch Creek','900', '0',' 1748-3', 0);
1471 #EndIf
1473 #IfRow2D list_options list_id race option_id birch_creek
1474 UPDATE `list_options` SET `notes` = '1748-3' WHERE `option_id` = 'birch_creek' AND `list_id` = 'race';
1475 #EndIf
1477 #IfRow2D list_options list_id race title Birch Creek
1478 UPDATE `list_options` SET `notes` = '1748-3' WHERE `title` = 'Birch Creek' AND `list_id` = 'race';
1479 #EndIf
1481 #IfNotRow2Dx2 list_options list_id race option_id bishop title Bishop
1482 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bishop','Bishop','910', '0',' 1417-5', 0);
1483 #EndIf
1485 #IfRow2D list_options list_id race option_id bishop
1486 UPDATE `list_options` SET `notes` = '1417-5' WHERE `option_id` = 'bishop' AND `list_id` = 'race';
1487 #EndIf
1489 #IfRow2D list_options list_id race title Bishop
1490 UPDATE `list_options` SET `notes` = '1417-5' WHERE `title` = 'Bishop' AND `list_id` = 'race';
1491 #EndIf
1493 #IfNotRow2Dx2 list_options list_id race option_id black title Black
1494 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','black','Black','920', '0',' 2056-0', 0);
1495 #EndIf
1497 #IfRow2D list_options list_id race option_id black
1498 UPDATE `list_options` SET `notes` = '2056-0' WHERE `option_id` = 'black' AND `list_id` = 'race';
1499 #EndIf
1501 #IfRow2D list_options list_id race title Black
1502 UPDATE `list_options` SET `notes` = '2056-0' WHERE `title` = 'Black' AND `list_id` = 'race';
1503 #EndIf
1505 #IfNotRow2Dx2 list_options list_id race option_id blackfeet title Blackfeet
1506 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','blackfeet','Blackfeet','940', '0',' 1035-5', 0);
1507 #EndIf
1509 #IfRow2D list_options list_id race option_id blackfeet
1510 UPDATE `list_options` SET `notes` = '1035-5' WHERE `option_id` = 'blackfeet' AND `list_id` = 'race';
1511 #EndIf
1513 #IfRow2D list_options list_id race title Blackfeet
1514 UPDATE `list_options` SET `notes` = '1035-5' WHERE `title` = 'Blackfeet' AND `list_id` = 'race';
1515 #EndIf
1517 #IfNotRow2Dx2 list_options list_id race option_id blackfoot_sioux title Blackfoot Sioux
1518 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','blackfoot_sioux','Blackfoot Sioux','950', '0',' 1610-5', 0);
1519 #EndIf
1521 #IfRow2D list_options list_id race option_id blackfoot_sioux
1522 UPDATE `list_options` SET `notes` = '1610-5' WHERE `option_id` = 'blackfoot_sioux' AND `list_id` = 'race';
1523 #EndIf
1525 #IfRow2D list_options list_id race title Blackfoot Sioux
1526 UPDATE `list_options` SET `notes` = '1610-5' WHERE `title` = 'Blackfoot Sioux' AND `list_id` = 'race';
1527 #EndIf
1529 #IfNotRow2Dx2 list_options list_id race option_id bois_forte title Bois Forte
1530 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bois_forte','Bois Forte','960', '0',' 1126-2', 0);
1531 #EndIf
1533 #IfRow2D list_options list_id race option_id bois_forte
1534 UPDATE `list_options` SET `notes` = '1126-2' WHERE `option_id` = 'bois_forte' AND `list_id` = 'race';
1535 #EndIf
1537 #IfRow2D list_options list_id race title Bois Forte
1538 UPDATE `list_options` SET `notes` = '1126-2' WHERE `title` = 'Bois Forte' AND `list_id` = 'race';
1539 #EndIf
1541 #IfNotRow2Dx2 list_options list_id race option_id botswanan title Botswanan
1542 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','botswanan','Botswanan','970', '0',' 2061-0', 0);
1543 #EndIf
1545 #IfRow2D list_options list_id race option_id botswanan
1546 UPDATE `list_options` SET `notes` = '2061-0' WHERE `option_id` = 'botswanan' AND `list_id` = 'race';
1547 #EndIf
1549 #IfRow2D list_options list_id race title Botswanan
1550 UPDATE `list_options` SET `notes` = '2061-0' WHERE `title` = 'Botswanan' AND `list_id` = 'race';
1551 #EndIf
1553 #IfNotRow2Dx2 list_options list_id race option_id brevig_mission title Brevig Mission
1554 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','brevig_mission','Brevig Mission','980', '0',' 1853-1', 0);
1555 #EndIf
1557 #IfRow2D list_options list_id race option_id brevig_mission
1558 UPDATE `list_options` SET `notes` = '1853-1' WHERE `option_id` = 'brevig_mission' AND `list_id` = 'race';
1559 #EndIf
1561 #IfRow2D list_options list_id race title Brevig Mission
1562 UPDATE `list_options` SET `notes` = '1853-1' WHERE `title` = 'Brevig Mission' AND `list_id` = 'race';
1563 #EndIf
1565 #IfNotRow2Dx2 list_options list_id race option_id bridgeport title Bridgeport
1566 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bridgeport','Bridgeport','990', '0',' 1418-3', 0);
1567 #EndIf
1569 #IfRow2D list_options list_id race option_id bridgeport
1570 UPDATE `list_options` SET `notes` = '1418-3' WHERE `option_id` = 'bridgeport' AND `list_id` = 'race';
1571 #EndIf
1573 #IfRow2D list_options list_id race title Bridgeport
1574 UPDATE `list_options` SET `notes` = '1418-3' WHERE `title` = 'Bridgeport' AND `list_id` = 'race';
1575 #EndIf
1577 #IfNotRow2Dx2 list_options list_id race option_id brighton title Brighton
1578 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','brighton','Brighton','1000', '0',' 1568-5', 0);
1579 #EndIf
1581 #IfRow2D list_options list_id race option_id brighton
1582 UPDATE `list_options` SET `notes` = '1568-5' WHERE `option_id` = 'brighton' AND `list_id` = 'race';
1583 #EndIf
1585 #IfRow2D list_options list_id race title Brighton
1586 UPDATE `list_options` SET `notes` = '1568-5' WHERE `title` = 'Brighton' AND `list_id` = 'race';
1587 #EndIf
1589 #IfNotRow2Dx2 list_options list_id race option_id bristol_bay_aleut title Bristol Bay Aleut
1590 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bristol_bay_aleut','Bristol Bay Aleut','1010', '0',' 1972-9', 0);
1591 #EndIf
1593 #IfRow2D list_options list_id race option_id bristol_bay_aleut
1594 UPDATE `list_options` SET `notes` = '1972-9' WHERE `option_id` = 'bristol_bay_aleut' AND `list_id` = 'race';
1595 #EndIf
1597 #IfRow2D list_options list_id race title Bristol Bay Aleut
1598 UPDATE `list_options` SET `notes` = '1972-9' WHERE `title` = 'Bristol Bay Aleut' AND `list_id` = 'race';
1599 #EndIf
1601 #IfNotRow2Dx2 list_options list_id race option_id bristol_bay_yupik title Bristol Bay Yupik
1602 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','bristol_bay_yupik','Bristol Bay Yupik','1020', '0',' 1906-7', 0);
1603 #EndIf
1605 #IfRow2D list_options list_id race option_id bristol_bay_yupik
1606 UPDATE `list_options` SET `notes` = '1906-7' WHERE `option_id` = 'bristol_bay_yupik' AND `list_id` = 'race';
1607 #EndIf
1609 #IfRow2D list_options list_id race title Bristol Bay Yupik
1610 UPDATE `list_options` SET `notes` = '1906-7' WHERE `title` = 'Bristol Bay Yupik' AND `list_id` = 'race';
1611 #EndIf
1613 #IfNotRow2Dx2 list_options list_id race option_id brotherton title Brotherton
1614 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','brotherton','Brotherton','1030', '0',' 1037-1', 0);
1615 #EndIf
1617 #IfRow2D list_options list_id race option_id brotherton
1618 UPDATE `list_options` SET `notes` = '1037-1' WHERE `option_id` = 'brotherton' AND `list_id` = 'race';
1619 #EndIf
1621 #IfRow2D list_options list_id race title Brotherton
1622 UPDATE `list_options` SET `notes` = '1037-1' WHERE `title` = 'Brotherton' AND `list_id` = 'race';
1623 #EndIf
1625 #IfNotRow2Dx2 list_options list_id race option_id brule_sioux title Brule Sioux
1626 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','brule_sioux','Brule Sioux','1040', '0',' 1611-3', 0);
1627 #EndIf
1629 #IfRow2D list_options list_id race option_id brule_sioux
1630 UPDATE `list_options` SET `notes` = '1611-3' WHERE `option_id` = 'brule_sioux' AND `list_id` = 'race';
1631 #EndIf
1633 #IfRow2D list_options list_id race title Brule Sioux
1634 UPDATE `list_options` SET `notes` = '1611-3' WHERE `title` = 'Brule Sioux' AND `list_id` = 'race';
1635 #EndIf
1637 #IfNotRow2Dx2 list_options list_id race option_id buckland title Buckland
1638 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','buckland','Buckland','1050', '0',' 1854-9', 0);
1639 #EndIf
1641 #IfRow2D list_options list_id race option_id buckland
1642 UPDATE `list_options` SET `notes` = '1854-9' WHERE `option_id` = 'buckland' AND `list_id` = 'race';
1643 #EndIf
1645 #IfRow2D list_options list_id race title Buckland
1646 UPDATE `list_options` SET `notes` = '1854-9' WHERE `title` = 'Buckland' AND `list_id` = 'race';
1647 #EndIf
1649 #IfNotRow2Dx2 list_options list_id race option_id burmese title Burmese
1650 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burmese','Burmese','1060', '0',' 2032-1', 0);
1651 #EndIf
1653 #IfRow2D list_options list_id race option_id burmese
1654 UPDATE `list_options` SET `notes` = '2032-1' WHERE `option_id` = 'burmese' AND `list_id` = 'race';
1655 #EndIf
1657 #IfRow2D list_options list_id race title Burmese
1658 UPDATE `list_options` SET `notes` = '2032-1' WHERE `title` = 'Burmese' AND `list_id` = 'race';
1659 #EndIf
1661 #IfNotRow2Dx2 list_options list_id race option_id burns_paiute title Burns Paiute
1662 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burns_paiute','Burns Paiute','1070', '0',' 1419-1', 0);
1663 #EndIf
1665 #IfRow2D list_options list_id race option_id burns_paiute
1666 UPDATE `list_options` SET `notes` = '1419-1' WHERE `option_id` = 'burns_paiute' AND `list_id` = 'race';
1667 #EndIf
1669 #IfRow2D list_options list_id race title Burns Paiute
1670 UPDATE `list_options` SET `notes` = '1419-1' WHERE `title` = 'Burns Paiute' AND `list_id` = 'race';
1671 #EndIf
1673 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_band title Burt Lake Band
1674 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burt_lake_band','Burt Lake Band','1080', '0',' 1039-7', 0);
1675 #EndIf
1677 #IfRow2D list_options list_id race option_id burt_lake_band
1678 UPDATE `list_options` SET `notes` = '1039-7' WHERE `option_id` = 'burt_lake_band' AND `list_id` = 'race';
1679 #EndIf
1681 #IfRow2D list_options list_id race title Burt Lake Band
1682 UPDATE `list_options` SET `notes` = '1039-7' WHERE `title` = 'Burt Lake Band' AND `list_id` = 'race';
1683 #EndIf
1685 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_chippewa title Burt Lake Chippewa
1686 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burt_lake_chippewa','Burt Lake Chippewa','1090', '0',' 1127-0', 0);
1687 #EndIf
1689 #IfRow2D list_options list_id race option_id burt_lake_chippewa
1690 UPDATE `list_options` SET `notes` = '1127-0' WHERE `option_id` = 'burt_lake_chippewa' AND `list_id` = 'race';
1691 #EndIf
1693 #IfRow2D list_options list_id race title Burt Lake Chippewa
1694 UPDATE `list_options` SET `notes` = '1127-0' WHERE `title` = 'Burt Lake Chippewa' AND `list_id` = 'race';
1695 #EndIf
1697 #IfNotRow2Dx2 list_options list_id race option_id burt_lake_ottawa title Burt Lake Ottawa
1698 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','burt_lake_ottawa','Burt Lake Ottawa','1100', '0',' 1412-6', 0);
1699 #EndIf
1701 #IfRow2D list_options list_id race option_id burt_lake_ottawa
1702 UPDATE `list_options` SET `notes` = '1412-6' WHERE `option_id` = 'burt_lake_ottawa' AND `list_id` = 'race';
1703 #EndIf
1705 #IfRow2D list_options list_id race title Burt Lake Ottawa
1706 UPDATE `list_options` SET `notes` = '1412-6' WHERE `title` = 'Burt Lake Ottawa' AND `list_id` = 'race';
1707 #EndIf
1709 #IfNotRow2Dx2 list_options list_id race option_id cabazon title Cabazon
1710 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cabazon','Cabazon','1110', '0',' 1047-0', 0);
1711 #EndIf
1713 #IfRow2D list_options list_id race option_id cabazon
1714 UPDATE `list_options` SET `notes` = '1047-0' WHERE `option_id` = 'cabazon' AND `list_id` = 'race';
1715 #EndIf
1717 #IfRow2D list_options list_id race title Cabazon
1718 UPDATE `list_options` SET `notes` = '1047-0' WHERE `title` = 'Cabazon' AND `list_id` = 'race';
1719 #EndIf
1721 #IfNotRow2Dx2 list_options list_id race option_id caddo title Caddo
1722 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','caddo','Caddo','1120', '0',' 1041-3', 0);
1723 #EndIf
1725 #IfRow2D list_options list_id race option_id caddo
1726 UPDATE `list_options` SET `notes` = '1041-3' WHERE `option_id` = 'caddo' AND `list_id` = 'race';
1727 #EndIf
1729 #IfRow2D list_options list_id race title Caddo
1730 UPDATE `list_options` SET `notes` = '1041-3' WHERE `title` = 'Caddo' AND `list_id` = 'race';
1731 #EndIf
1733 #IfNotRow2Dx2 list_options list_id race option_id cahto title Cahto
1734 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cahto','Cahto','1130', '0',' 1054-6', 0);
1735 #EndIf
1737 #IfRow2D list_options list_id race option_id cahto
1738 UPDATE `list_options` SET `notes` = '1054-6' WHERE `option_id` = 'cahto' AND `list_id` = 'race';
1739 #EndIf
1741 #IfRow2D list_options list_id race title Cahto
1742 UPDATE `list_options` SET `notes` = '1054-6' WHERE `title` = 'Cahto' AND `list_id` = 'race';
1743 #EndIf
1745 #IfNotRow2Dx2 list_options list_id race option_id cahuilla title Cahuilla
1746 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cahuilla','Cahuilla','1140', '0',' 1044-7', 0);
1747 #EndIf
1749 #IfRow2D list_options list_id race option_id cahuilla
1750 UPDATE `list_options` SET `notes` = '1044-7' WHERE `option_id` = 'cahuilla' AND `list_id` = 'race';
1751 #EndIf
1753 #IfRow2D list_options list_id race title Cahuilla
1754 UPDATE `list_options` SET `notes` = '1044-7' WHERE `title` = 'Cahuilla' AND `list_id` = 'race';
1755 #EndIf
1757 #IfNotRow2Dx2 list_options list_id race option_id california_tribes title California Tribes
1758 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','california_tribes','California Tribes','1150', '0',' 1053-8', 0);
1759 #EndIf
1761 #IfRow2D list_options list_id race option_id california_tribes
1762 UPDATE `list_options` SET `notes` = '1053-8' WHERE `option_id` = 'california_tribes' AND `list_id` = 'race';
1763 #EndIf
1765 #IfRow2D list_options list_id race title California Tribes
1766 UPDATE `list_options` SET `notes` = '1053-8' WHERE `title` = 'California Tribes' AND `list_id` = 'race';
1767 #EndIf
1769 #IfNotRow2Dx2 list_options list_id race option_id calista_yupik title Calista Yupik
1770 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','calista_yupik','Calista Yupik','1160', '0',' 1907-5', 0);
1771 #EndIf
1773 #IfRow2D list_options list_id race option_id calista_yupik
1774 UPDATE `list_options` SET `notes` = '1907-5' WHERE `option_id` = 'calista_yupik' AND `list_id` = 'race';
1775 #EndIf
1777 #IfRow2D list_options list_id race title Calista Yupik
1778 UPDATE `list_options` SET `notes` = '1907-5' WHERE `title` = 'Calista Yupik' AND `list_id` = 'race';
1779 #EndIf
1781 #IfNotRow2Dx2 list_options list_id race option_id cambodian title Cambodian
1782 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cambodian','Cambodian','1170', '0',' 2033-9', 0);
1783 #EndIf
1785 #IfRow2D list_options list_id race option_id cambodian
1786 UPDATE `list_options` SET `notes` = '2033-9' WHERE `option_id` = 'cambodian' AND `list_id` = 'race';
1787 #EndIf
1789 #IfRow2D list_options list_id race title Cambodian
1790 UPDATE `list_options` SET `notes` = '2033-9' WHERE `title` = 'Cambodian' AND `list_id` = 'race';
1791 #EndIf
1793 #IfNotRow2Dx2 list_options list_id race option_id campo title Campo
1794 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','campo','Campo','1180', '0',' 1223-7', 0);
1795 #EndIf
1797 #IfRow2D list_options list_id race option_id campo
1798 UPDATE `list_options` SET `notes` = '1223-7' WHERE `option_id` = 'campo' AND `list_id` = 'race';
1799 #EndIf
1801 #IfRow2D list_options list_id race title Campo
1802 UPDATE `list_options` SET `notes` = '1223-7' WHERE `title` = 'Campo' AND `list_id` = 'race';
1803 #EndIf
1805 #IfNotRow2Dx2 list_options list_id race option_id canadian_latinamerican_indian title Canadian and Latin American Indian
1806 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','canadian_latinamerican_indian','Canadian and Latin American Indian','1190', '0',' 1068-6', 0);
1807 #EndIf
1809 #IfRow2D list_options list_id race option_id canadian_latinamerican_indian
1810 UPDATE `list_options` SET `notes` = '1068-6' WHERE `option_id` = 'canadian_latinamerican_indian' AND `list_id` = 'race';
1811 #EndIf
1813 #IfRow2D list_options list_id race title Canadian and Latin American Indian
1814 UPDATE `list_options` SET `notes` = '1068-6' WHERE `title` = 'Canadian and Latin American Indian' AND `list_id` = 'race';
1815 #EndIf
1817 #IfNotRow2Dx2 list_options list_id race option_id canadian_indian title Canadian Indian
1818 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','canadian_indian','Canadian Indian','1200', '0',' 1069-4', 0);
1819 #EndIf
1821 #IfRow2D list_options list_id race option_id canadian_indian
1822 UPDATE `list_options` SET `notes` = '1069-4' WHERE `option_id` = 'canadian_indian' AND `list_id` = 'race';
1823 #EndIf
1825 #IfRow2D list_options list_id race title Canadian Indian
1826 UPDATE `list_options` SET `notes` = '1069-4' WHERE `title` = 'Canadian Indian' AND `list_id` = 'race';
1827 #EndIf
1829 #IfNotRow2Dx2 list_options list_id race option_id canoncito_navajo title Canoncito Navajo
1830 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','canoncito_navajo','Canoncito Navajo','1210', '0',' 1384-7', 0);
1831 #EndIf
1833 #IfRow2D list_options list_id race option_id canoncito_navajo
1834 UPDATE `list_options` SET `notes` = '1384-7' WHERE `option_id` = 'canoncito_navajo' AND `list_id` = 'race';
1835 #EndIf
1837 #IfRow2D list_options list_id race title Canoncito Navajo
1838 UPDATE `list_options` SET `notes` = '1384-7' WHERE `title` = 'Canoncito Navajo' AND `list_id` = 'race';
1839 #EndIf
1841 #IfNotRow2Dx2 list_options list_id race option_id cantwell title Cantwell
1842 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cantwell','Cantwell','1220', '0',' 1749-1', 0);
1843 #EndIf
1845 #IfRow2D list_options list_id race option_id cantwell
1846 UPDATE `list_options` SET `notes` = '1749-1' WHERE `option_id` = 'cantwell' AND `list_id` = 'race';
1847 #EndIf
1849 #IfRow2D list_options list_id race title Cantwell
1850 UPDATE `list_options` SET `notes` = '1749-1' WHERE `title` = 'Cantwell' AND `list_id` = 'race';
1851 #EndIf
1853 #IfNotRow2Dx2 list_options list_id race option_id capitan_grande title Capitan Grande
1854 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','capitan_grande','Capitan Grande','1230', '0',' 1224-5', 0);
1855 #EndIf
1857 #IfRow2D list_options list_id race option_id capitan_grande
1858 UPDATE `list_options` SET `notes` = '1224-5' WHERE `option_id` = 'capitan_grande' AND `list_id` = 'race';
1859 #EndIf
1861 #IfRow2D list_options list_id race title Capitan Grande
1862 UPDATE `list_options` SET `notes` = '1224-5' WHERE `title` = 'Capitan Grande' AND `list_id` = 'race';
1863 #EndIf
1865 #IfNotRow2Dx2 list_options list_id race option_id carolinian title Carolinian
1866 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','carolinian','Carolinian','1240', '0',' 2092-5', 0);
1867 #EndIf
1869 #IfRow2D list_options list_id race option_id carolinian
1870 UPDATE `list_options` SET `notes` = '2092-5' WHERE `option_id` = 'carolinian' AND `list_id` = 'race';
1871 #EndIf
1873 #IfRow2D list_options list_id race title Carolinian
1874 UPDATE `list_options` SET `notes` = '2092-5' WHERE `title` = 'Carolinian' AND `list_id` = 'race';
1875 #EndIf
1877 #IfNotRow2Dx2 list_options list_id race option_id carson title Carson
1878 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','carson','Carson','1250', '0',' 1689-9', 0);
1879 #EndIf
1881 #IfRow2D list_options list_id race option_id carson
1882 UPDATE `list_options` SET `notes` = '1689-9' WHERE `option_id` = 'carson' AND `list_id` = 'race';
1883 #EndIf
1885 #IfRow2D list_options list_id race title Carson
1886 UPDATE `list_options` SET `notes` = '1689-9' WHERE `title` = 'Carson' AND `list_id` = 'race';
1887 #EndIf
1889 #IfNotRow2Dx2 list_options list_id race option_id catawba title Catawba
1890 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','catawba','Catawba','1260', '0',' 1076-9', 0);
1891 #EndIf
1893 #IfRow2D list_options list_id race option_id catawba
1894 UPDATE `list_options` SET `notes` = '1076-9' WHERE `option_id` = 'catawba' AND `list_id` = 'race';
1895 #EndIf
1897 #IfRow2D list_options list_id race title Catawba
1898 UPDATE `list_options` SET `notes` = '1076-9' WHERE `title` = 'Catawba' AND `list_id` = 'race';
1899 #EndIf
1901 #IfNotRow2Dx2 list_options list_id race option_id cayuga title Cayuga
1902 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cayuga','Cayuga','1270', '0',' 1286-4', 0);
1903 #EndIf
1905 #IfRow2D list_options list_id race option_id cayuga
1906 UPDATE `list_options` SET `notes` = '1286-4' WHERE `option_id` = 'cayuga' AND `list_id` = 'race';
1907 #EndIf
1909 #IfRow2D list_options list_id race title Cayuga
1910 UPDATE `list_options` SET `notes` = '1286-4' WHERE `title` = 'Cayuga' AND `list_id` = 'race';
1911 #EndIf
1913 #IfNotRow2Dx2 list_options list_id race option_id cayuse title Cayuse
1914 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cayuse','Cayuse','1280', '0',' 1078-5', 0);
1915 #EndIf
1917 #IfRow2D list_options list_id race option_id cayuse
1918 UPDATE `list_options` SET `notes` = '1078-5' WHERE `option_id` = 'cayuse' AND `list_id` = 'race';
1919 #EndIf
1921 #IfRow2D list_options list_id race title Cayuse
1922 UPDATE `list_options` SET `notes` = '1078-5' WHERE `title` = 'Cayuse' AND `list_id` = 'race';
1923 #EndIf
1925 #IfNotRow2Dx2 list_options list_id race option_id cedarville title Cedarville
1926 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cedarville','Cedarville','1290', '0',' 1420-9', 0);
1927 #EndIf
1929 #IfRow2D list_options list_id race option_id cedarville
1930 UPDATE `list_options` SET `notes` = '1420-9' WHERE `option_id` = 'cedarville' AND `list_id` = 'race';
1931 #EndIf
1933 #IfRow2D list_options list_id race title Cedarville
1934 UPDATE `list_options` SET `notes` = '1420-9' WHERE `title` = 'Cedarville' AND `list_id` = 'race';
1935 #EndIf
1937 #IfNotRow2Dx2 list_options list_id race option_id celilo title Celilo
1938 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','celilo','Celilo','1300', '0',' 1393-8', 0);
1939 #EndIf
1941 #IfRow2D list_options list_id race option_id celilo
1942 UPDATE `list_options` SET `notes` = '1393-8' WHERE `option_id` = 'celilo' AND `list_id` = 'race';
1943 #EndIf
1945 #IfRow2D list_options list_id race title Celilo
1946 UPDATE `list_options` SET `notes` = '1393-8' WHERE `title` = 'Celilo' AND `list_id` = 'race';
1947 #EndIf
1949 #IfNotRow2Dx2 list_options list_id race option_id central_american_indian title Central American Indian
1950 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','central_american_indian','Central American Indian','1310', '0',' 1070-2', 0);
1951 #EndIf
1953 #IfRow2D list_options list_id race option_id central_american_indian
1954 UPDATE `list_options` SET `notes` = '1070-2' WHERE `option_id` = 'central_american_indian' AND `list_id` = 'race';
1955 #EndIf
1957 #IfRow2D list_options list_id race title Central American Indian
1958 UPDATE `list_options` SET `notes` = '1070-2' WHERE `title` = 'Central American Indian' AND `list_id` = 'race';
1959 #EndIf
1961 #IfNotRow2Dx2 list_options list_id race option_id tlingit_and_haida_tribes title Central Council of Tlingit and Haida Tribes
1962 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tlingit_and_haida_tribes','Central Council of Tlingit and Haida Tribes','1320', '0',' 1815-0', 0);
1963 #EndIf
1965 #IfRow2D list_options list_id race option_id tlingit_and_haida_tribes
1966 UPDATE `list_options` SET `notes` = '1815-0' WHERE `option_id` = 'tlingit_and_haida_tribes' AND `list_id` = 'race';
1967 #EndIf
1969 #IfRow2D list_options list_id race title Central Council of Tlingit and Haida Tribes
1970 UPDATE `list_options` SET `notes` = '1815-0' WHERE `title` = 'Central Council of Tlingit and Haida Tribes' AND `list_id` = 'race';
1971 #EndIf
1973 #IfNotRow2Dx2 list_options list_id race option_id central_pomo title Central Pomo
1974 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','central_pomo','Central Pomo','1330', '0',' 1465-4', 0);
1975 #EndIf
1977 #IfRow2D list_options list_id race option_id central_pomo
1978 UPDATE `list_options` SET `notes` = '1465-4' WHERE `option_id` = 'central_pomo' AND `list_id` = 'race';
1979 #EndIf
1981 #IfRow2D list_options list_id race title Central Pomo
1982 UPDATE `list_options` SET `notes` = '1465-4' WHERE `title` = 'Central Pomo' AND `list_id` = 'race';
1983 #EndIf
1985 #IfNotRow2Dx2 list_options list_id race option_id chalkyitsik title Chalkyitsik
1986 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chalkyitsik','Chalkyitsik','1340', '0',' 1750-9', 0);
1987 #EndIf
1989 #IfRow2D list_options list_id race option_id chalkyitsik
1990 UPDATE `list_options` SET `notes` = '1750-9' WHERE `option_id` = 'chalkyitsik' AND `list_id` = 'race';
1991 #EndIf
1993 #IfRow2D list_options list_id race title Chalkyitsik
1994 UPDATE `list_options` SET `notes` = '1750-9' WHERE `title` = 'Chalkyitsik' AND `list_id` = 'race';
1995 #EndIf
1997 #IfNotRow2Dx2 list_options list_id race option_id chamorro title Chamorro
1998 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chamorro','Chamorro','1350', '0',' 2088-3', 0);
1999 #EndIf
2001 #IfRow2D list_options list_id race option_id chamorro
2002 UPDATE `list_options` SET `notes` = '2088-3' WHERE `option_id` = 'chamorro' AND `list_id` = 'race';
2003 #EndIf
2005 #IfRow2D list_options list_id race title Chamorro
2006 UPDATE `list_options` SET `notes` = '2088-3' WHERE `title` = 'Chamorro' AND `list_id` = 'race';
2007 #EndIf
2009 #IfNotRow2Dx2 list_options list_id race option_id chefornak title Chefornak
2010 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chefornak','Chefornak','1360', '0',' 1908-3', 0);
2011 #EndIf
2013 #IfRow2D list_options list_id race option_id chefornak
2014 UPDATE `list_options` SET `notes` = '1908-3' WHERE `option_id` = 'chefornak' AND `list_id` = 'race';
2015 #EndIf
2017 #IfRow2D list_options list_id race title Chefornak
2018 UPDATE `list_options` SET `notes` = '1908-3' WHERE `title` = 'Chefornak' AND `list_id` = 'race';
2019 #EndIf
2021 #IfNotRow2Dx2 list_options list_id race option_id chehalis title Chehalis
2022 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chehalis','Chehalis','1370', '0',' 1080-1', 0);
2023 #EndIf
2025 #IfRow2D list_options list_id race option_id chehalis
2026 UPDATE `list_options` SET `notes` = '1080-1' WHERE `option_id` = 'chehalis' AND `list_id` = 'race';
2027 #EndIf
2029 #IfRow2D list_options list_id race title Chehalis
2030 UPDATE `list_options` SET `notes` = '1080-1' WHERE `title` = 'Chehalis' AND `list_id` = 'race';
2031 #EndIf
2033 #IfNotRow2Dx2 list_options list_id race option_id chemakuan title Chemakuan
2034 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chemakuan','Chemakuan','1380', '0',' 1082-7', 0);
2035 #EndIf
2037 #IfRow2D list_options list_id race option_id chemakuan
2038 UPDATE `list_options` SET `notes` = '1082-7' WHERE `option_id` = 'chemakuan' AND `list_id` = 'race';
2039 #EndIf
2041 #IfRow2D list_options list_id race title Chemakuan
2042 UPDATE `list_options` SET `notes` = '1082-7' WHERE `title` = 'Chemakuan' AND `list_id` = 'race';
2043 #EndIf
2045 #IfNotRow2Dx2 list_options list_id race option_id chemehuevi title Chemehuevi
2046 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chemehuevi','Chemehuevi','1390', '0',' 1086-8', 0);
2047 #EndIf
2049 #IfRow2D list_options list_id race option_id chemehuevi
2050 UPDATE `list_options` SET `notes` = '1086-8' WHERE `option_id` = 'chemehuevi' AND `list_id` = 'race';
2051 #EndIf
2053 #IfRow2D list_options list_id race title Chemehuevi
2054 UPDATE `list_options` SET `notes` = '1086-8' WHERE `title` = 'Chemehuevi' AND `list_id` = 'race';
2055 #EndIf
2057 #IfNotRow2Dx2 list_options list_id race option_id chenega title Chenega
2058 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chenega','Chenega','1400', '0',' 1985-1', 0);
2059 #EndIf
2061 #IfRow2D list_options list_id race option_id chenega
2062 UPDATE `list_options` SET `notes` = '1985-1' WHERE `option_id` = 'chenega' AND `list_id` = 'race';
2063 #EndIf
2065 #IfRow2D list_options list_id race title Chenega
2066 UPDATE `list_options` SET `notes` = '1985-1' WHERE `title` = 'Chenega' AND `list_id` = 'race';
2067 #EndIf
2069 #IfNotRow2Dx2 list_options list_id race option_id cherokee title Cherokee
2070 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokee','Cherokee','1410', '0',' 1088-4', 0);
2071 #EndIf
2073 #IfRow2D list_options list_id race option_id cherokee
2074 UPDATE `list_options` SET `notes` = '1088-4' WHERE `option_id` = 'cherokee' AND `list_id` = 'race';
2075 #EndIf
2077 #IfRow2D list_options list_id race title Cherokee
2078 UPDATE `list_options` SET `notes` = '1088-4' WHERE `title` = 'Cherokee' AND `list_id` = 'race';
2079 #EndIf
2081 #IfNotRow2Dx2 list_options list_id race option_id cherokee_alabama title Cherokee Alabama
2082 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokee_alabama','Cherokee Alabama','1420', '0',' 1089-2', 0);
2083 #EndIf
2085 #IfRow2D list_options list_id race option_id cherokee_alabama
2086 UPDATE `list_options` SET `notes` = '1089-2' WHERE `option_id` = 'cherokee_alabama' AND `list_id` = 'race';
2087 #EndIf
2089 #IfRow2D list_options list_id race title Cherokee Alabama
2090 UPDATE `list_options` SET `notes` = '1089-2' WHERE `title` = 'Cherokee Alabama' AND `list_id` = 'race';
2091 #EndIf
2093 #IfNotRow2Dx2 list_options list_id race option_id cherokee_shawnee title Cherokee Shawnee
2094 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokee_shawnee','Cherokee Shawnee','1430', '0',' 1100-7', 0);
2095 #EndIf
2097 #IfRow2D list_options list_id race option_id cherokee_shawnee
2098 UPDATE `list_options` SET `notes` = '1100-7' WHERE `option_id` = 'cherokee_shawnee' AND `list_id` = 'race';
2099 #EndIf
2101 #IfRow2D list_options list_id race title Cherokee Shawnee
2102 UPDATE `list_options` SET `notes` = '1100-7' WHERE `title` = 'Cherokee Shawnee' AND `list_id` = 'race';
2103 #EndIf
2105 #IfNotRow2Dx2 list_options list_id race option_id cherokees_of_northeast_alabama title Cherokees of Northeast Alabama
2106 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokees_of_northeast_alabama','Cherokees of Northeast Alabama','1440', '0',' 1090-0', 0);
2107 #EndIf
2109 #IfRow2D list_options list_id race option_id cherokees_of_northeast_alabama
2110 UPDATE `list_options` SET `notes` = '1090-0' WHERE `option_id` = 'cherokees_of_northeast_alabama' AND `list_id` = 'race';
2111 #EndIf
2113 #IfRow2D list_options list_id race title Cherokees of Northeast Alabama
2114 UPDATE `list_options` SET `notes` = '1090-0' WHERE `title` = 'Cherokees of Northeast Alabama' AND `list_id` = 'race';
2115 #EndIf
2117 #IfNotRow2Dx2 list_options list_id race option_id cherokees_of_southeast_alabama title Cherokees of Southeast Alabama
2118 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cherokees_of_southeast_alabama','Cherokees of Southeast Alabama','1450', '0',' 1091-8', 0);
2119 #EndIf
2121 #IfRow2D list_options list_id race option_id cherokees_of_southeast_alabama
2122 UPDATE `list_options` SET `notes` = '1091-8' WHERE `option_id` = 'cherokees_of_southeast_alabama' AND `list_id` = 'race';
2123 #EndIf
2125 #IfRow2D list_options list_id race title Cherokees of Southeast Alabama
2126 UPDATE `list_options` SET `notes` = '1091-8' WHERE `title` = 'Cherokees of Southeast Alabama' AND `list_id` = 'race';
2127 #EndIf
2129 #IfNotRow2Dx2 list_options list_id race option_id chevak title Chevak
2130 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chevak','Chevak','1460', '0',' 1909-1', 0);
2131 #EndIf
2133 #IfRow2D list_options list_id race option_id chevak
2134 UPDATE `list_options` SET `notes` = '1909-1' WHERE `option_id` = 'chevak' AND `list_id` = 'race';
2135 #EndIf
2137 #IfRow2D list_options list_id race title Chevak
2138 UPDATE `list_options` SET `notes` = '1909-1' WHERE `title` = 'Chevak' AND `list_id` = 'race';
2139 #EndIf
2141 #IfNotRow2Dx2 list_options list_id race option_id cheyenne title Cheyenne
2142 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cheyenne','Cheyenne','1470', '0',' 1102-3', 0);
2143 #EndIf
2145 #IfRow2D list_options list_id race option_id cheyenne
2146 UPDATE `list_options` SET `notes` = '1102-3' WHERE `option_id` = 'cheyenne' AND `list_id` = 'race';
2147 #EndIf
2149 #IfRow2D list_options list_id race title Cheyenne
2150 UPDATE `list_options` SET `notes` = '1102-3' WHERE `title` = 'Cheyenne' AND `list_id` = 'race';
2151 #EndIf
2153 #IfNotRow2Dx2 list_options list_id race option_id cheyenne_river_sioux title Cheyenne River Sioux
2154 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cheyenne_river_sioux','Cheyenne River Sioux','1480', '0',' 1612-1', 0);
2155 #EndIf
2157 #IfRow2D list_options list_id race option_id cheyenne_river_sioux
2158 UPDATE `list_options` SET `notes` = '1612-1' WHERE `option_id` = 'cheyenne_river_sioux' AND `list_id` = 'race';
2159 #EndIf
2161 #IfRow2D list_options list_id race title Cheyenne River Sioux
2162 UPDATE `list_options` SET `notes` = '1612-1' WHERE `title` = 'Cheyenne River Sioux' AND `list_id` = 'race';
2163 #EndIf
2165 #IfNotRow2Dx2 list_options list_id race option_id cheyenne-arapaho title Cheyenne-Arapaho
2166 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cheyenne-arapaho','Cheyenne-Arapaho','1490', '0',' 1106-4', 0);
2167 #EndIf
2169 #IfRow2D list_options list_id race option_id cheyenne-arapaho
2170 UPDATE `list_options` SET `notes` = '1106-4' WHERE `option_id` = 'cheyenne-arapaho' AND `list_id` = 'race';
2171 #EndIf
2173 #IfRow2D list_options list_id race title Cheyenne-Arapaho
2174 UPDATE `list_options` SET `notes` = '1106-4' WHERE `title` = 'Cheyenne-Arapaho' AND `list_id` = 'race';
2175 #EndIf
2177 #IfNotRow2Dx2 list_options list_id race option_id chickahominy title Chickahominy
2178 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chickahominy','Chickahominy','1500', '0',' 1108-0', 0);
2179 #EndIf
2181 #IfRow2D list_options list_id race option_id chickahominy
2182 UPDATE `list_options` SET `notes` = '1108-0' WHERE `option_id` = 'chickahominy' AND `list_id` = 'race';
2183 #EndIf
2185 #IfRow2D list_options list_id race title Chickahominy
2186 UPDATE `list_options` SET `notes` = '1108-0' WHERE `title` = 'Chickahominy' AND `list_id` = 'race';
2187 #EndIf
2189 #IfNotRow2Dx2 list_options list_id race option_id chickaloon title Chickaloon
2190 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chickaloon','Chickaloon','1510', '0',' 1751-7', 0);
2191 #EndIf
2193 #IfRow2D list_options list_id race option_id chickaloon
2194 UPDATE `list_options` SET `notes` = '1751-7' WHERE `option_id` = 'chickaloon' AND `list_id` = 'race';
2195 #EndIf
2197 #IfRow2D list_options list_id race title Chickaloon
2198 UPDATE `list_options` SET `notes` = '1751-7' WHERE `title` = 'Chickaloon' AND `list_id` = 'race';
2199 #EndIf
2201 #IfNotRow2Dx2 list_options list_id race option_id chickasaw title Chickasaw
2202 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chickasaw','Chickasaw','1520', '0',' 1112-2', 0);
2203 #EndIf
2205 #IfRow2D list_options list_id race option_id chickasaw
2206 UPDATE `list_options` SET `notes` = '1112-2' WHERE `option_id` = 'chickasaw' AND `list_id` = 'race';
2207 #EndIf
2209 #IfRow2D list_options list_id race title Chickasaw
2210 UPDATE `list_options` SET `notes` = '1112-2' WHERE `title` = 'Chickasaw' AND `list_id` = 'race';
2211 #EndIf
2213 #IfNotRow2Dx2 list_options list_id race option_id chignik title Chignik
2214 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chignik','Chignik','1530', '0',' 1973-7', 0);
2215 #EndIf
2217 #IfRow2D list_options list_id race option_id chignik
2218 UPDATE `list_options` SET `notes` = '1973-7' WHERE `option_id` = 'chignik' AND `list_id` = 'race';
2219 #EndIf
2221 #IfRow2D list_options list_id race title Chignik
2222 UPDATE `list_options` SET `notes` = '1973-7' WHERE `title` = 'Chignik' AND `list_id` = 'race';
2223 #EndIf
2225 #IfNotRow2Dx2 list_options list_id race option_id chignik_lagoon title Chignik Lagoon
2226 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chignik_lagoon','Chignik Lagoon','1540', '0',' 2013-1', 0);
2227 #EndIf
2229 #IfRow2D list_options list_id race option_id chignik_lagoon
2230 UPDATE `list_options` SET `notes` = '2013-1' WHERE `option_id` = 'chignik_lagoon' AND `list_id` = 'race';
2231 #EndIf
2233 #IfRow2D list_options list_id race title Chignik Lagoon
2234 UPDATE `list_options` SET `notes` = '2013-1' WHERE `title` = 'Chignik Lagoon' AND `list_id` = 'race';
2235 #EndIf
2237 #IfNotRow2Dx2 list_options list_id race option_id chignik_lake title Chignik Lake
2238 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chignik_lake','Chignik Lake','1550', '0',' 1974-5', 0);
2239 #EndIf
2241 #IfRow2D list_options list_id race option_id chignik_lake
2242 UPDATE `list_options` SET `notes` = '1974-5' WHERE `option_id` = 'chignik_lake' AND `list_id` = 'race';
2243 #EndIf
2245 #IfRow2D list_options list_id race title Chignik Lake
2246 UPDATE `list_options` SET `notes` = '1974-5' WHERE `title` = 'Chignik Lake' AND `list_id` = 'race';
2247 #EndIf
2249 #IfNotRow2Dx2 list_options list_id race option_id chilkat title Chilkat
2250 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chilkat','Chilkat','1560', '0',' 1816-8', 0);
2251 #EndIf
2253 #IfRow2D list_options list_id race option_id chilkat
2254 UPDATE `list_options` SET `notes` = '1816-8' WHERE `option_id` = 'chilkat' AND `list_id` = 'race';
2255 #EndIf
2257 #IfRow2D list_options list_id race title Chilkat
2258 UPDATE `list_options` SET `notes` = '1816-8' WHERE `title` = 'Chilkat' AND `list_id` = 'race';
2259 #EndIf
2261 #IfNotRow2Dx2 list_options list_id race option_id chilkoot title Chilkoot
2262 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chilkoot','Chilkoot','1570', '0',' 1817-6', 0);
2263 #EndIf
2265 #IfRow2D list_options list_id race option_id chilkoot
2266 UPDATE `list_options` SET `notes` = '1817-6' WHERE `option_id` = 'chilkoot' AND `list_id` = 'race';
2267 #EndIf
2269 #IfRow2D list_options list_id race title Chilkoot
2270 UPDATE `list_options` SET `notes` = '1817-6' WHERE `title` = 'Chilkoot' AND `list_id` = 'race';
2271 #EndIf
2273 #IfNotRow2Dx2 list_options list_id race option_id chimariko title Chimariko
2274 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chimariko','Chimariko','1580', '0',' 1055-3', 0);
2275 #EndIf
2277 #IfRow2D list_options list_id race option_id chimariko
2278 UPDATE `list_options` SET `notes` = '1055-3' WHERE `option_id` = 'chimariko' AND `list_id` = 'race';
2279 #EndIf
2281 #IfRow2D list_options list_id race title Chimariko
2282 UPDATE `list_options` SET `notes` = '1055-3' WHERE `title` = 'Chimariko' AND `list_id` = 'race';
2283 #EndIf
2285 #IfNotRow2Dx2 list_options list_id race option_id chinese title Chinese
2286 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chinese','Chinese','1590', '0',' 2034-7', 0);
2287 #EndIf
2289 #IfRow2D list_options list_id race option_id chinese
2290 UPDATE `list_options` SET `notes` = '2034-7' WHERE `option_id` = 'chinese' AND `list_id` = 'race';
2291 #EndIf
2293 #IfRow2D list_options list_id race title Chinese
2294 UPDATE `list_options` SET `notes` = '2034-7' WHERE `title` = 'Chinese' AND `list_id` = 'race';
2295 #EndIf
2297 #IfNotRow2Dx2 list_options list_id race option_id chinik title Chinik
2298 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chinik','Chinik','1600', '0',' 1855-6', 0);
2299 #EndIf
2301 #IfRow2D list_options list_id race option_id chinik
2302 UPDATE `list_options` SET `notes` = '1855-6' WHERE `option_id` = 'chinik' AND `list_id` = 'race';
2303 #EndIf
2305 #IfRow2D list_options list_id race title Chinik
2306 UPDATE `list_options` SET `notes` = '1855-6' WHERE `title` = 'Chinik' AND `list_id` = 'race';
2307 #EndIf
2309 #IfNotRow2Dx2 list_options list_id race option_id chinook title Chinook
2310 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chinook','Chinook','1610', '0',' 1114-8', 0);
2311 #EndIf
2313 #IfRow2D list_options list_id race option_id chinook
2314 UPDATE `list_options` SET `notes` = '1114-8' WHERE `option_id` = 'chinook' AND `list_id` = 'race';
2315 #EndIf
2317 #IfRow2D list_options list_id race title Chinook
2318 UPDATE `list_options` SET `notes` = '1114-8' WHERE `title` = 'Chinook' AND `list_id` = 'race';
2319 #EndIf
2321 #IfNotRow2Dx2 list_options list_id race option_id chippewa title Chippewa
2322 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chippewa','Chippewa','1620', '0',' 1123-9', 0);
2323 #EndIf
2325 #IfRow2D list_options list_id race option_id chippewa
2326 UPDATE `list_options` SET `notes` = '1123-9' WHERE `option_id` = 'chippewa' AND `list_id` = 'race';
2327 #EndIf
2329 #IfRow2D list_options list_id race title Chippewa
2330 UPDATE `list_options` SET `notes` = '1123-9' WHERE `title` = 'Chippewa' AND `list_id` = 'race';
2331 #EndIf
2333 #IfNotRow2Dx2 list_options list_id race option_id chippewa_cree title Chippewa Cree
2334 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chippewa_cree','Chippewa Cree','1630', '0',' 1150-2', 0);
2335 #EndIf
2337 #IfRow2D list_options list_id race option_id chippewa_cree
2338 UPDATE `list_options` SET `notes` = '1150-2' WHERE `option_id` = 'chippewa_cree' AND `list_id` = 'race';
2339 #EndIf
2341 #IfRow2D list_options list_id race title Chippewa Cree
2342 UPDATE `list_options` SET `notes` = '1150-2' WHERE `title` = 'Chippewa Cree' AND `list_id` = 'race';
2343 #EndIf
2345 #IfNotRow2Dx2 list_options list_id race option_id chiricahua title Chiricahua
2346 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chiricahua','Chiricahua','1640', '0',' 1011-6', 0);
2347 #EndIf
2349 #IfRow2D list_options list_id race option_id chiricahua
2350 UPDATE `list_options` SET `notes` = '1011-6' WHERE `option_id` = 'chiricahua' AND `list_id` = 'race';
2351 #EndIf
2353 #IfRow2D list_options list_id race title Chiricahua
2354 UPDATE `list_options` SET `notes` = '1011-6' WHERE `title` = 'Chiricahua' AND `list_id` = 'race';
2355 #EndIf
2357 #IfNotRow2Dx2 list_options list_id race option_id chistochina title Chistochina
2358 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chistochina','Chistochina','1650', '0',' 1752-5', 0);
2359 #EndIf
2361 #IfRow2D list_options list_id race option_id chistochina
2362 UPDATE `list_options` SET `notes` = '1752-5' WHERE `option_id` = 'chistochina' AND `list_id` = 'race';
2363 #EndIf
2365 #IfRow2D list_options list_id race title Chistochina
2366 UPDATE `list_options` SET `notes` = '1752-5' WHERE `title` = 'Chistochina' AND `list_id` = 'race';
2367 #EndIf
2369 #IfNotRow2Dx2 list_options list_id race option_id chitimacha title Chitimacha
2370 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chitimacha','Chitimacha','1660', '0',' 1153-6', 0);
2371 #EndIf
2373 #IfRow2D list_options list_id race option_id chitimacha
2374 UPDATE `list_options` SET `notes` = '1153-6' WHERE `option_id` = 'chitimacha' AND `list_id` = 'race';
2375 #EndIf
2377 #IfRow2D list_options list_id race title Chitimacha
2378 UPDATE `list_options` SET `notes` = '1153-6' WHERE `title` = 'Chitimacha' AND `list_id` = 'race';
2379 #EndIf
2381 #IfNotRow2Dx2 list_options list_id race option_id chitina title Chitina
2382 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chitina','Chitina','1670', '0',' 1753-3', 0);
2383 #EndIf
2385 #IfRow2D list_options list_id race option_id chitina
2386 UPDATE `list_options` SET `notes` = '1753-3' WHERE `option_id` = 'chitina' AND `list_id` = 'race';
2387 #EndIf
2389 #IfRow2D list_options list_id race title Chitina
2390 UPDATE `list_options` SET `notes` = '1753-3' WHERE `title` = 'Chitina' AND `list_id` = 'race';
2391 #EndIf
2393 #IfNotRow2Dx2 list_options list_id race option_id choctaw title Choctaw
2394 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','choctaw','Choctaw','1680', '0',' 1155-1', 0);
2395 #EndIf
2397 #IfRow2D list_options list_id race option_id choctaw
2398 UPDATE `list_options` SET `notes` = '1155-1' WHERE `option_id` = 'choctaw' AND `list_id` = 'race';
2399 #EndIf
2401 #IfRow2D list_options list_id race title Choctaw
2402 UPDATE `list_options` SET `notes` = '1155-1' WHERE `title` = 'Choctaw' AND `list_id` = 'race';
2403 #EndIf
2405 #IfNotRow2Dx2 list_options list_id race option_id chuathbaluk title Chuathbaluk
2406 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chuathbaluk','Chuathbaluk','1690', '0',' 1910-9', 0);
2407 #EndIf
2409 #IfRow2D list_options list_id race option_id chuathbaluk
2410 UPDATE `list_options` SET `notes` = '1910-9' WHERE `option_id` = 'chuathbaluk' AND `list_id` = 'race';
2411 #EndIf
2413 #IfRow2D list_options list_id race title Chuathbaluk
2414 UPDATE `list_options` SET `notes` = '1910-9' WHERE `title` = 'Chuathbaluk' AND `list_id` = 'race';
2415 #EndIf
2417 #IfNotRow2Dx2 list_options list_id race option_id chugach_aleut title Chugach Aleut
2418 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chugach_aleut','Chugach Aleut','1700', '0',' 1984-4', 0);
2419 #EndIf
2421 #IfRow2D list_options list_id race option_id chugach_aleut
2422 UPDATE `list_options` SET `notes` = '1984-4' WHERE `option_id` = 'chugach_aleut' AND `list_id` = 'race';
2423 #EndIf
2425 #IfRow2D list_options list_id race title Chugach Aleut
2426 UPDATE `list_options` SET `notes` = '1984-4' WHERE `title` = 'Chugach Aleut' AND `list_id` = 'race';
2427 #EndIf
2429 #IfNotRow2Dx2 list_options list_id race option_id chugach_corporation title Chugach Corporation
2430 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chugach_corporation','Chugach Corporation','1710', '0',' 1986-9', 0);
2431 #EndIf
2433 #IfRow2D list_options list_id race option_id chugach_corporation
2434 UPDATE `list_options` SET `notes` = '1986-9' WHERE `option_id` = 'chugach_corporation' AND `list_id` = 'race';
2435 #EndIf
2437 #IfRow2D list_options list_id race title Chugach Corporation
2438 UPDATE `list_options` SET `notes` = '1986-9' WHERE `title` = 'Chugach Corporation' AND `list_id` = 'race';
2439 #EndIf
2441 #IfNotRow2Dx2 list_options list_id race option_id chukchansi title Chukchansi
2442 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chukchansi','Chukchansi','1720', '0',' 1718-6', 0);
2443 #EndIf
2445 #IfRow2D list_options list_id race option_id chukchansi
2446 UPDATE `list_options` SET `notes` = '1718-6' WHERE `option_id` = 'chukchansi' AND `list_id` = 'race';
2447 #EndIf
2449 #IfRow2D list_options list_id race title Chukchansi
2450 UPDATE `list_options` SET `notes` = '1718-6' WHERE `title` = 'Chukchansi' AND `list_id` = 'race';
2451 #EndIf
2453 #IfNotRow2Dx2 list_options list_id race option_id chumash title Chumash
2454 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chumash','Chumash','1730', '0',' 1162-7', 0);
2455 #EndIf
2457 #IfRow2D list_options list_id race option_id chumash
2458 UPDATE `list_options` SET `notes` = '1162-7' WHERE `option_id` = 'chumash' AND `list_id` = 'race';
2459 #EndIf
2461 #IfRow2D list_options list_id race title Chumash
2462 UPDATE `list_options` SET `notes` = '1162-7' WHERE `title` = 'Chumash' AND `list_id` = 'race';
2463 #EndIf
2465 #IfNotRow2Dx2 list_options list_id race option_id chuukese title Chuukese
2466 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','chuukese','Chuukese','1740', '0',' 2097-4', 0);
2467 #EndIf
2469 #IfRow2D list_options list_id race option_id chuukese
2470 UPDATE `list_options` SET `notes` = '2097-4' WHERE `option_id` = 'chuukese' AND `list_id` = 'race';
2471 #EndIf
2473 #IfRow2D list_options list_id race title Chuukese
2474 UPDATE `list_options` SET `notes` = '2097-4' WHERE `title` = 'Chuukese' AND `list_id` = 'race';
2475 #EndIf
2477 #IfNotRow2Dx2 list_options list_id race option_id circle title Circle
2478 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','circle','Circle','1750', '0',' 1754-1', 0);
2479 #EndIf
2481 #IfRow2D list_options list_id race option_id circle
2482 UPDATE `list_options` SET `notes` = '1754-1' WHERE `option_id` = 'circle' AND `list_id` = 'race';
2483 #EndIf
2485 #IfRow2D list_options list_id race title Circle
2486 UPDATE `list_options` SET `notes` = '1754-1' WHERE `title` = 'Circle' AND `list_id` = 'race';
2487 #EndIf
2489 #IfNotRow2Dx2 list_options list_id race option_id citizen_band_potawatomi title Citizen Band Potawatomi
2490 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','citizen_band_potawatomi','Citizen Band Potawatomi','1760', '0',' 1479-5', 0);
2491 #EndIf
2493 #IfRow2D list_options list_id race option_id citizen_band_potawatomi
2494 UPDATE `list_options` SET `notes` = '1479-5' WHERE `option_id` = 'citizen_band_potawatomi' AND `list_id` = 'race';
2495 #EndIf
2497 #IfRow2D list_options list_id race title Citizen Band Potawatomi
2498 UPDATE `list_options` SET `notes` = '1479-5' WHERE `title` = 'Citizen Band Potawatomi' AND `list_id` = 'race';
2499 #EndIf
2501 #IfNotRow2D list_options list_id race option_id clarks_point
2502 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','clarks_point',"Clark's Point",'1770', '0',' 1911-7', 0);
2503 #EndIf
2505 #IfRow2D list_options list_id race option_id clarks_point
2506 UPDATE `list_options` SET `notes` = '1911-7' WHERE `option_id` = 'clarks_point' AND `list_id` = 'race';
2507 #EndIf
2509 #IfNotRow2Dx2 list_options list_id race option_id clatsop title Clatsop
2510 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','clatsop','Clatsop','1780', '0',' 1115-5', 0);
2511 #EndIf
2513 #IfRow2D list_options list_id race option_id clatsop
2514 UPDATE `list_options` SET `notes` = '1115-5' WHERE `option_id` = 'clatsop' AND `list_id` = 'race';
2515 #EndIf
2517 #IfRow2D list_options list_id race title Clatsop
2518 UPDATE `list_options` SET `notes` = '1115-5' WHERE `title` = 'Clatsop' AND `list_id` = 'race';
2519 #EndIf
2521 #IfNotRow2Dx2 list_options list_id race option_id clear_lake title Clear Lake
2522 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','clear_lake','Clear Lake','1790', '0',' 1165-0', 0);
2523 #EndIf
2525 #IfRow2D list_options list_id race option_id clear_lake
2526 UPDATE `list_options` SET `notes` = '1165-0' WHERE `option_id` = 'clear_lake' AND `list_id` = 'race';
2527 #EndIf
2529 #IfRow2D list_options list_id race title Clear Lake
2530 UPDATE `list_options` SET `notes` = '1165-0' WHERE `title` = 'Clear Lake' AND `list_id` = 'race';
2531 #EndIf
2533 #IfNotRow2Dx2 list_options list_id race option_id clifton_choctaw title Clifton Choctaw
2534 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','clifton_choctaw','Clifton Choctaw','1800', '0',' 1156-9', 0);
2535 #EndIf
2537 #IfRow2D list_options list_id race option_id clifton_choctaw
2538 UPDATE `list_options` SET `notes` = '1156-9' WHERE `option_id` = 'clifton_choctaw' AND `list_id` = 'race';
2539 #EndIf
2541 #IfRow2D list_options list_id race title Clifton Choctaw
2542 UPDATE `list_options` SET `notes` = '1156-9' WHERE `title` = 'Clifton Choctaw' AND `list_id` = 'race';
2543 #EndIf
2545 #IfNotRow2Dx2 list_options list_id race option_id coast_miwok title Coast Miwok
2546 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coast_miwok','Coast Miwok','1810', '0',' 1056-1', 0);
2547 #EndIf
2549 #IfRow2D list_options list_id race option_id coast_miwok
2550 UPDATE `list_options` SET `notes` = '1056-1' WHERE `option_id` = 'coast_miwok' AND `list_id` = 'race';
2551 #EndIf
2553 #IfRow2D list_options list_id race title Coast Miwok
2554 UPDATE `list_options` SET `notes` = '1056-1' WHERE `title` = 'Coast Miwok' AND `list_id` = 'race';
2555 #EndIf
2557 #IfNotRow2Dx2 list_options list_id race option_id coast_yurok title Coast Yurok
2558 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coast_yurok','Coast Yurok','1820', '0',' 1733-5', 0);
2559 #EndIf
2561 #IfRow2D list_options list_id race option_id coast_yurok
2562 UPDATE `list_options` SET `notes` = '1733-5' WHERE `option_id` = 'coast_yurok' AND `list_id` = 'race';
2563 #EndIf
2565 #IfRow2D list_options list_id race title Coast Yurok
2566 UPDATE `list_options` SET `notes` = '1733-5' WHERE `title` = 'Coast Yurok' AND `list_id` = 'race';
2567 #EndIf
2569 #IfNotRow2Dx2 list_options list_id race option_id cochiti title Cochiti
2570 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cochiti','Cochiti','1830', '0',' 1492-8', 0);
2571 #EndIf
2573 #IfRow2D list_options list_id race option_id cochiti
2574 UPDATE `list_options` SET `notes` = '1492-8' WHERE `option_id` = 'cochiti' AND `list_id` = 'race';
2575 #EndIf
2577 #IfRow2D list_options list_id race title Cochiti
2578 UPDATE `list_options` SET `notes` = '1492-8' WHERE `title` = 'Cochiti' AND `list_id` = 'race';
2579 #EndIf
2581 #IfNotRow2Dx2 list_options list_id race option_id cocopah title Cocopah
2582 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cocopah','Cocopah','1840', '0',' 1725-1', 0);
2583 #EndIf
2585 #IfRow2D list_options list_id race option_id cocopah
2586 UPDATE `list_options` SET `notes` = '1725-1' WHERE `option_id` = 'cocopah' AND `list_id` = 'race';
2587 #EndIf
2589 #IfRow2D list_options list_id race title Cocopah
2590 UPDATE `list_options` SET `notes` = '1725-1' WHERE `title` = 'Cocopah' AND `list_id` = 'race';
2591 #EndIf
2593 #IfNotRow2D list_options list_id race option_id coeur_dalene
2594 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coeur_dalene',"Coeur D'Alene",'1850', '0',' 1167-6', 0);
2595 #EndIf
2597 #IfRow2D list_options list_id race option_id coeur_dalene
2598 UPDATE `list_options` SET `notes` = '1167-6' WHERE `option_id` = 'coeur_dalene' AND `list_id` = 'race';
2599 #EndIf
2601 #IfNotRow2Dx2 list_options list_id race option_id coharie title Coharie
2602 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coharie','Coharie','1860', '0',' 1169-2', 0);
2603 #EndIf
2605 #IfRow2D list_options list_id race option_id coharie
2606 UPDATE `list_options` SET `notes` = '1169-2' WHERE `option_id` = 'coharie' AND `list_id` = 'race';
2607 #EndIf
2609 #IfRow2D list_options list_id race title Coharie
2610 UPDATE `list_options` SET `notes` = '1169-2' WHERE `title` = 'Coharie' AND `list_id` = 'race';
2611 #EndIf
2613 #IfNotRow2Dx2 list_options list_id race option_id colorado_river title Colorado River
2614 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','colorado_river','Colorado River','1870', '0',' 1171-8', 0);
2615 #EndIf
2617 #IfRow2D list_options list_id race option_id colorado_river
2618 UPDATE `list_options` SET `notes` = '1171-8' WHERE `option_id` = 'colorado_river' AND `list_id` = 'race';
2619 #EndIf
2621 #IfRow2D list_options list_id race title Colorado River
2622 UPDATE `list_options` SET `notes` = '1171-8' WHERE `title` = 'Colorado River' AND `list_id` = 'race';
2623 #EndIf
2625 #IfNotRow2Dx2 list_options list_id race option_id columbia title Columbia
2626 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','columbia','Columbia','1880', '0',' 1394-6', 0);
2627 #EndIf
2629 #IfRow2D list_options list_id race option_id columbia
2630 UPDATE `list_options` SET `notes` = '1394-6' WHERE `option_id` = 'columbia' AND `list_id` = 'race';
2631 #EndIf
2633 #IfRow2D list_options list_id race title Columbia
2634 UPDATE `list_options` SET `notes` = '1394-6' WHERE `title` = 'Columbia' AND `list_id` = 'race';
2635 #EndIf
2637 #IfNotRow2Dx2 list_options list_id race option_id columbia_river_chinook title Columbia River Chinook
2638 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','columbia_river_chinook','Columbia River Chinook','1890', '0',' 1116-3', 0);
2639 #EndIf
2641 #IfRow2D list_options list_id race option_id columbia_river_chinook
2642 UPDATE `list_options` SET `notes` = '1116-3' WHERE `option_id` = 'columbia_river_chinook' AND `list_id` = 'race';
2643 #EndIf
2645 #IfRow2D list_options list_id race title Columbia River Chinook
2646 UPDATE `list_options` SET `notes` = '1116-3' WHERE `title` = 'Columbia River Chinook' AND `list_id` = 'race';
2647 #EndIf
2649 #IfNotRow2Dx2 list_options list_id race option_id colville title Colville
2650 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','colville','Colville','1900', '0',' 1173-4', 0);
2651 #EndIf
2653 #IfRow2D list_options list_id race option_id colville
2654 UPDATE `list_options` SET `notes` = '1173-4' WHERE `option_id` = 'colville' AND `list_id` = 'race';
2655 #EndIf
2657 #IfRow2D list_options list_id race title Colville
2658 UPDATE `list_options` SET `notes` = '1173-4' WHERE `title` = 'Colville' AND `list_id` = 'race';
2659 #EndIf
2661 #IfNotRow2Dx2 list_options list_id race option_id comanche title Comanche
2662 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','comanche','Comanche','1910', '0',' 1175-9', 0);
2663 #EndIf
2665 #IfRow2D list_options list_id race option_id comanche
2666 UPDATE `list_options` SET `notes` = '1175-9' WHERE `option_id` = 'comanche' AND `list_id` = 'race';
2667 #EndIf
2669 #IfRow2D list_options list_id race title Comanche
2670 UPDATE `list_options` SET `notes` = '1175-9' WHERE `title` = 'Comanche' AND `list_id` = 'race';
2671 #EndIf
2673 #IfNotRow2Dx2 list_options list_id race option_id cook_inlet title Cook Inlet
2674 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cook_inlet','Cook Inlet','1920', '0',' 1755-8', 0);
2675 #EndIf
2677 #IfRow2D list_options list_id race option_id cook_inlet
2678 UPDATE `list_options` SET `notes` = '1755-8' WHERE `option_id` = 'cook_inlet' AND `list_id` = 'race';
2679 #EndIf
2681 #IfRow2D list_options list_id race title Cook Inlet
2682 UPDATE `list_options` SET `notes` = '1755-8' WHERE `title` = 'Cook Inlet' AND `list_id` = 'race';
2683 #EndIf
2685 #IfNotRow2Dx2 list_options list_id race option_id coos title Coos
2686 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coos','Coos','1930', '0',' 1180-9', 0);
2687 #EndIf
2689 #IfRow2D list_options list_id race option_id coos
2690 UPDATE `list_options` SET `notes` = '1180-9' WHERE `option_id` = 'coos' AND `list_id` = 'race';
2691 #EndIf
2693 #IfRow2D list_options list_id race title Coos
2694 UPDATE `list_options` SET `notes` = '1180-9' WHERE `title` = 'Coos' AND `list_id` = 'race';
2695 #EndIf
2697 #IfNotRow2Dx2 list_options list_id race option_id coos_lower_umpqua_siuslaw title Coos, Lower Umpqua, Siuslaw
2698 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coos_lower_umpqua_siuslaw','Coos, Lower Umpqua, Siuslaw','1940', '0',' 1178-3', 0);
2699 #EndIf
2701 #IfRow2D list_options list_id race option_id coos_lower_umpqua_siuslaw
2702 UPDATE `list_options` SET `notes` = '1178-3' WHERE `option_id` = 'coos_lower_umpqua_siuslaw' AND `list_id` = 'race';
2703 #EndIf
2705 #IfRow2D list_options list_id race title Coos, Lower Umpqua, Siuslaw
2706 UPDATE `list_options` SET `notes` = '1178-3' WHERE `title` = 'Coos, Lower Umpqua, Siuslaw' AND `list_id` = 'race';
2707 #EndIf
2709 #IfNotRow2Dx2 list_options list_id race option_id copper_center title Copper Center
2710 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','copper_center','Copper Center','1950', '0',' 1756-6', 0);
2711 #EndIf
2713 #IfRow2D list_options list_id race option_id copper_center
2714 UPDATE `list_options` SET `notes` = '1756-6' WHERE `option_id` = 'copper_center' AND `list_id` = 'race';
2715 #EndIf
2717 #IfRow2D list_options list_id race title Copper Center
2718 UPDATE `list_options` SET `notes` = '1756-6' WHERE `title` = 'Copper Center' AND `list_id` = 'race';
2719 #EndIf
2721 #IfNotRow2Dx2 list_options list_id race option_id copper_river title Copper River
2722 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','copper_river','Copper River','1960', '0',' 1757-4', 0);
2723 #EndIf
2725 #IfRow2D list_options list_id race option_id copper_river
2726 UPDATE `list_options` SET `notes` = '1757-4' WHERE `option_id` = 'copper_river' AND `list_id` = 'race';
2727 #EndIf
2729 #IfRow2D list_options list_id race title Copper River
2730 UPDATE `list_options` SET `notes` = '1757-4' WHERE `title` = 'Copper River' AND `list_id` = 'race';
2731 #EndIf
2733 #IfNotRow2Dx2 list_options list_id race option_id coquilles title Coquilles
2734 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coquilles','Coquilles','1970', '0',' 1182-5', 0);
2735 #EndIf
2737 #IfRow2D list_options list_id race option_id coquilles
2738 UPDATE `list_options` SET `notes` = '1182-5' WHERE `option_id` = 'coquilles' AND `list_id` = 'race';
2739 #EndIf
2741 #IfRow2D list_options list_id race title Coquilles
2742 UPDATE `list_options` SET `notes` = '1182-5' WHERE `title` = 'Coquilles' AND `list_id` = 'race';
2743 #EndIf
2745 #IfNotRow2Dx2 list_options list_id race option_id costanoan title Costanoan
2746 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','costanoan','Costanoan','1980', '0',' 1184-1', 0);
2747 #EndIf
2749 #IfRow2D list_options list_id race option_id costanoan
2750 UPDATE `list_options` SET `notes` = '1184-1' WHERE `option_id` = 'costanoan' AND `list_id` = 'race';
2751 #EndIf
2753 #IfRow2D list_options list_id race title Costanoan
2754 UPDATE `list_options` SET `notes` = '1184-1' WHERE `title` = 'Costanoan' AND `list_id` = 'race';
2755 #EndIf
2757 #IfNotRow2Dx2 list_options list_id race option_id council title Council
2758 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','council','Council','1990', '0',' 1856-4', 0);
2759 #EndIf
2761 #IfRow2D list_options list_id race option_id council
2762 UPDATE `list_options` SET `notes` = '1856-4' WHERE `option_id` = 'council' AND `list_id` = 'race';
2763 #EndIf
2765 #IfRow2D list_options list_id race title Council
2766 UPDATE `list_options` SET `notes` = '1856-4' WHERE `title` = 'Council' AND `list_id` = 'race';
2767 #EndIf
2769 #IfNotRow2Dx2 list_options list_id race option_id coushatta title Coushatta
2770 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','coushatta','Coushatta','2000', '0',' 1186-6', 0);
2771 #EndIf
2773 #IfRow2D list_options list_id race option_id coushatta
2774 UPDATE `list_options` SET `notes` = '1186-6' WHERE `option_id` = 'coushatta' AND `list_id` = 'race';
2775 #EndIf
2777 #IfRow2D list_options list_id race title Coushatta
2778 UPDATE `list_options` SET `notes` = '1186-6' WHERE `title` = 'Coushatta' AND `list_id` = 'race';
2779 #EndIf
2781 #IfNotRow2Dx2 list_options list_id race option_id cow_creek_umpqua title Cow Creek Umpqua
2782 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cow_creek_umpqua','Cow Creek Umpqua','2010', '0',' 1668-3', 0);
2783 #EndIf
2785 #IfRow2D list_options list_id race option_id cow_creek_umpqua
2786 UPDATE `list_options` SET `notes` = '1668-3' WHERE `option_id` = 'cow_creek_umpqua' AND `list_id` = 'race';
2787 #EndIf
2789 #IfRow2D list_options list_id race title Cow Creek Umpqua
2790 UPDATE `list_options` SET `notes` = '1668-3' WHERE `title` = 'Cow Creek Umpqua' AND `list_id` = 'race';
2791 #EndIf
2793 #IfNotRow2Dx2 list_options list_id race option_id cowlitz title Cowlitz
2794 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cowlitz','Cowlitz','2020', '0',' 1189-0', 0);
2795 #EndIf
2797 #IfRow2D list_options list_id race option_id cowlitz
2798 UPDATE `list_options` SET `notes` = '1189-0' WHERE `option_id` = 'cowlitz' AND `list_id` = 'race';
2799 #EndIf
2801 #IfRow2D list_options list_id race title Cowlitz
2802 UPDATE `list_options` SET `notes` = '1189-0' WHERE `title` = 'Cowlitz' AND `list_id` = 'race';
2803 #EndIf
2805 #IfNotRow2Dx2 list_options list_id race option_id craig title Craig
2806 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','craig','Craig','2030', '0',' 1818-4', 0);
2807 #EndIf
2809 #IfRow2D list_options list_id race option_id craig
2810 UPDATE `list_options` SET `notes` = '1818-4' WHERE `option_id` = 'craig' AND `list_id` = 'race';
2811 #EndIf
2813 #IfRow2D list_options list_id race title Craig
2814 UPDATE `list_options` SET `notes` = '1818-4' WHERE `title` = 'Craig' AND `list_id` = 'race';
2815 #EndIf
2817 #IfNotRow2Dx2 list_options list_id race option_id cree title Cree
2818 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cree','Cree','2040', '0',' 1191-6', 0);
2819 #EndIf
2821 #IfRow2D list_options list_id race option_id cree
2822 UPDATE `list_options` SET `notes` = '1191-6' WHERE `option_id` = 'cree' AND `list_id` = 'race';
2823 #EndIf
2825 #IfRow2D list_options list_id race title Cree
2826 UPDATE `list_options` SET `notes` = '1191-6' WHERE `title` = 'Cree' AND `list_id` = 'race';
2827 #EndIf
2829 #IfNotRow2Dx2 list_options list_id race option_id creek title Creek
2830 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','creek','Creek','2050', '0',' 1193-2', 0);
2831 #EndIf
2833 #IfRow2D list_options list_id race option_id creek
2834 UPDATE `list_options` SET `notes` = '1193-2' WHERE `option_id` = 'creek' AND `list_id` = 'race';
2835 #EndIf
2837 #IfRow2D list_options list_id race title Creek
2838 UPDATE `list_options` SET `notes` = '1193-2' WHERE `title` = 'Creek' AND `list_id` = 'race';
2839 #EndIf
2841 #IfNotRow2Dx2 list_options list_id race option_id croatan title Croatan
2842 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','croatan','Croatan','2060', '0',' 1207-0', 0);
2843 #EndIf
2845 #IfRow2D list_options list_id race option_id croatan
2846 UPDATE `list_options` SET `notes` = '1207-0' WHERE `option_id` = 'croatan' AND `list_id` = 'race';
2847 #EndIf
2849 #IfRow2D list_options list_id race title Croatan
2850 UPDATE `list_options` SET `notes` = '1207-0' WHERE `title` = 'Croatan' AND `list_id` = 'race';
2851 #EndIf
2853 #IfNotRow2Dx2 list_options list_id race option_id crooked_creek title Crooked Creek
2854 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','crooked_creek','Crooked Creek','2070', '0',' 1912-5', 0);
2855 #EndIf
2857 #IfRow2D list_options list_id race option_id crooked_creek
2858 UPDATE `list_options` SET `notes` = '1912-5' WHERE `option_id` = 'crooked_creek' AND `list_id` = 'race';
2859 #EndIf
2861 #IfRow2D list_options list_id race title Crooked Creek
2862 UPDATE `list_options` SET `notes` = '1912-5' WHERE `title` = 'Crooked Creek' AND `list_id` = 'race';
2863 #EndIf
2865 #IfNotRow2Dx2 list_options list_id race option_id crow title Crow
2866 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','crow','Crow','2080', '0',' 1209-6', 0);
2867 #EndIf
2869 #IfRow2D list_options list_id race option_id crow
2870 UPDATE `list_options` SET `notes` = '1209-6' WHERE `option_id` = 'crow' AND `list_id` = 'race';
2871 #EndIf
2873 #IfRow2D list_options list_id race title Crow
2874 UPDATE `list_options` SET `notes` = '1209-6' WHERE `title` = 'Crow' AND `list_id` = 'race';
2875 #EndIf
2877 #IfNotRow2Dx2 list_options list_id race option_id crow_creek_sioux title Crow Creek Sioux
2878 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','crow_creek_sioux','Crow Creek Sioux','2090', '0',' 1613-9', 0);
2879 #EndIf
2881 #IfRow2D list_options list_id race option_id crow_creek_sioux
2882 UPDATE `list_options` SET `notes` = '1613-9' WHERE `option_id` = 'crow_creek_sioux' AND `list_id` = 'race';
2883 #EndIf
2885 #IfRow2D list_options list_id race title Crow Creek Sioux
2886 UPDATE `list_options` SET `notes` = '1613-9' WHERE `title` = 'Crow Creek Sioux' AND `list_id` = 'race';
2887 #EndIf
2889 #IfNotRow2Dx2 list_options list_id race option_id cupeno title Cupeno
2890 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cupeno','Cupeno','2100', '0',' 1211-2', 0);
2891 #EndIf
2893 #IfRow2D list_options list_id race option_id cupeno
2894 UPDATE `list_options` SET `notes` = '1211-2' WHERE `option_id` = 'cupeno' AND `list_id` = 'race';
2895 #EndIf
2897 #IfRow2D list_options list_id race title Cupeno
2898 UPDATE `list_options` SET `notes` = '1211-2' WHERE `title` = 'Cupeno' AND `list_id` = 'race';
2899 #EndIf
2901 #IfNotRow2Dx2 list_options list_id race option_id cuyapaipe title Cuyapaipe
2902 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','cuyapaipe','Cuyapaipe','2110', '0',' 1225-2', 0);
2903 #EndIf
2905 #IfRow2D list_options list_id race option_id cuyapaipe
2906 UPDATE `list_options` SET `notes` = '1225-2' WHERE `option_id` = 'cuyapaipe' AND `list_id` = 'race';
2907 #EndIf
2909 #IfRow2D list_options list_id race title Cuyapaipe
2910 UPDATE `list_options` SET `notes` = '1225-2' WHERE `title` = 'Cuyapaipe' AND `list_id` = 'race';
2911 #EndIf
2913 #IfNotRow2Dx2 list_options list_id race option_id dakota_sioux title Dakota Sioux
2914 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dakota_sioux','Dakota Sioux','2120', '0',' 1614-7', 0);
2915 #EndIf
2917 #IfRow2D list_options list_id race option_id dakota_sioux
2918 UPDATE `list_options` SET `notes` = '1614-7' WHERE `option_id` = 'dakota_sioux' AND `list_id` = 'race';
2919 #EndIf
2921 #IfRow2D list_options list_id race title Dakota Sioux
2922 UPDATE `list_options` SET `notes` = '1614-7' WHERE `title` = 'Dakota Sioux' AND `list_id` = 'race';
2923 #EndIf
2925 #IfNotRow2Dx2 list_options list_id race option_id deering title Deering
2926 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','deering','Deering','2130', '0',' 1857-2', 0);
2927 #EndIf
2929 #IfRow2D list_options list_id race option_id deering
2930 UPDATE `list_options` SET `notes` = '1857-2' WHERE `option_id` = 'deering' AND `list_id` = 'race';
2931 #EndIf
2933 #IfRow2D list_options list_id race title Deering
2934 UPDATE `list_options` SET `notes` = '1857-2' WHERE `title` = 'Deering' AND `list_id` = 'race';
2935 #EndIf
2937 #IfNotRow2Dx2 list_options list_id race option_id delaware title Delaware
2938 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','delaware','Delaware','2140', '0',' 1214-6', 0);
2939 #EndIf
2941 #IfRow2D list_options list_id race option_id delaware
2942 UPDATE `list_options` SET `notes` = '1214-6' WHERE `option_id` = 'delaware' AND `list_id` = 'race';
2943 #EndIf
2945 #IfRow2D list_options list_id race title Delaware
2946 UPDATE `list_options` SET `notes` = '1214-6' WHERE `title` = 'Delaware' AND `list_id` = 'race';
2947 #EndIf
2949 #IfNotRow2Dx2 list_options list_id race option_id diegueno title Diegueno
2950 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','diegueno','Diegueno','2150', '0',' 1222-9', 0);
2951 #EndIf
2953 #IfRow2D list_options list_id race option_id diegueno
2954 UPDATE `list_options` SET `notes` = '1222-9' WHERE `option_id` = 'diegueno' AND `list_id` = 'race';
2955 #EndIf
2957 #IfRow2D list_options list_id race title Diegueno
2958 UPDATE `list_options` SET `notes` = '1222-9' WHERE `title` = 'Diegueno' AND `list_id` = 'race';
2959 #EndIf
2961 #IfNotRow2Dx2 list_options list_id race option_id digger title Digger
2962 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','digger','Digger','2160', '0',' 1057-9', 0);
2963 #EndIf
2965 #IfRow2D list_options list_id race option_id digger
2966 UPDATE `list_options` SET `notes` = '1057-9' WHERE `option_id` = 'digger' AND `list_id` = 'race';
2967 #EndIf
2969 #IfRow2D list_options list_id race title Digger
2970 UPDATE `list_options` SET `notes` = '1057-9' WHERE `title` = 'Digger' AND `list_id` = 'race';
2971 #EndIf
2973 #IfNotRow2Dx2 list_options list_id race option_id dillingham title Dillingham
2974 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dillingham','Dillingham','2170', '0',' 1913-3', 0);
2975 #EndIf
2977 #IfRow2D list_options list_id race option_id dillingham
2978 UPDATE `list_options` SET `notes` = '1913-3' WHERE `option_id` = 'dillingham' AND `list_id` = 'race';
2979 #EndIf
2981 #IfRow2D list_options list_id race title Dillingham
2982 UPDATE `list_options` SET `notes` = '1913-3' WHERE `title` = 'Dillingham' AND `list_id` = 'race';
2983 #EndIf
2985 #IfNotRow2Dx2 list_options list_id race option_id dominica_islander title Dominica Islander
2986 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dominica_islander','Dominica Islander','2180', '0',' 2070-1', 0);
2987 #EndIf
2989 #IfRow2D list_options list_id race option_id dominica_islander
2990 UPDATE `list_options` SET `notes` = '2070-1' WHERE `option_id` = 'dominica_islander' AND `list_id` = 'race';
2991 #EndIf
2993 #IfRow2D list_options list_id race title Dominica Islander
2994 UPDATE `list_options` SET `notes` = '2070-1' WHERE `title` = 'Dominica Islander' AND `list_id` = 'race';
2995 #EndIf
2997 #IfNotRow2Dx2 list_options list_id race option_id dominican title Dominican
2998 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dominican','Dominican','2190', '0',' 2069-3', 0);
2999 #EndIf
3001 #IfRow2D list_options list_id race option_id dominican
3002 UPDATE `list_options` SET `notes` = '2069-3' WHERE `option_id` = 'dominican' AND `list_id` = 'race';
3003 #EndIf
3005 #IfRow2D list_options list_id race title Dominican
3006 UPDATE `list_options` SET `notes` = '2069-3' WHERE `title` = 'Dominican' AND `list_id` = 'race';
3007 #EndIf
3009 #IfNotRow2Dx2 list_options list_id race option_id dot_lake title Dot Lake
3010 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dot_lake','Dot Lake','2200', '0',' 1758-2', 0);
3011 #EndIf
3013 #IfRow2D list_options list_id race option_id dot_lake
3014 UPDATE `list_options` SET `notes` = '1758-2' WHERE `option_id` = 'dot_lake' AND `list_id` = 'race';
3015 #EndIf
3017 #IfRow2D list_options list_id race title Dot Lake
3018 UPDATE `list_options` SET `notes` = '1758-2' WHERE `title` = 'Dot Lake' AND `list_id` = 'race';
3019 #EndIf
3021 #IfNotRow2Dx2 list_options list_id race option_id douglas title Douglas
3022 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','douglas','Douglas','2210', '0',' 1819-2', 0);
3023 #EndIf
3025 #IfRow2D list_options list_id race option_id douglas
3026 UPDATE `list_options` SET `notes` = '1819-2' WHERE `option_id` = 'douglas' AND `list_id` = 'race';
3027 #EndIf
3029 #IfRow2D list_options list_id race title Douglas
3030 UPDATE `list_options` SET `notes` = '1819-2' WHERE `title` = 'Douglas' AND `list_id` = 'race';
3031 #EndIf
3033 #IfNotRow2Dx2 list_options list_id race option_id doyon title Doyon
3034 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','doyon','Doyon','2220', '0',' 1759-0', 0);
3035 #EndIf
3037 #IfRow2D list_options list_id race option_id doyon
3038 UPDATE `list_options` SET `notes` = '1759-0' WHERE `option_id` = 'doyon' AND `list_id` = 'race';
3039 #EndIf
3041 #IfRow2D list_options list_id race title Doyon
3042 UPDATE `list_options` SET `notes` = '1759-0' WHERE `title` = 'Doyon' AND `list_id` = 'race';
3043 #EndIf
3045 #IfNotRow2Dx2 list_options list_id race option_id dresslerville title Dresslerville
3046 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dresslerville','Dresslerville','2230', '0',' 1690-7', 0);
3047 #EndIf
3049 #IfRow2D list_options list_id race option_id dresslerville
3050 UPDATE `list_options` SET `notes` = '1690-7' WHERE `option_id` = 'dresslerville' AND `list_id` = 'race';
3051 #EndIf
3053 #IfRow2D list_options list_id race title Dresslerville
3054 UPDATE `list_options` SET `notes` = '1690-7' WHERE `title` = 'Dresslerville' AND `list_id` = 'race';
3055 #EndIf
3057 #IfNotRow2Dx2 list_options list_id race option_id dry_creek title Dry Creek
3058 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','dry_creek','Dry Creek','2240', '0',' 1466-2', 0);
3059 #EndIf
3061 #IfRow2D list_options list_id race option_id dry_creek
3062 UPDATE `list_options` SET `notes` = '1466-2' WHERE `option_id` = 'dry_creek' AND `list_id` = 'race';
3063 #EndIf
3065 #IfRow2D list_options list_id race title Dry Creek
3066 UPDATE `list_options` SET `notes` = '1466-2' WHERE `title` = 'Dry Creek' AND `list_id` = 'race';
3067 #EndIf
3069 #IfNotRow2Dx2 list_options list_id race option_id duck_valley title Duck Valley
3070 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','duck_valley','Duck Valley','2250', '0',' 1603-0', 0);
3071 #EndIf
3073 #IfRow2D list_options list_id race option_id duck_valley
3074 UPDATE `list_options` SET `notes` = '1603-0' WHERE `option_id` = 'duck_valley' AND `list_id` = 'race';
3075 #EndIf
3077 #IfRow2D list_options list_id race title Duck Valley
3078 UPDATE `list_options` SET `notes` = '1603-0' WHERE `title` = 'Duck Valley' AND `list_id` = 'race';
3079 #EndIf
3081 #IfNotRow2Dx2 list_options list_id race option_id duckwater title Duckwater
3082 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','duckwater','Duckwater','2260', '0',' 1588-3', 0);
3083 #EndIf
3085 #IfRow2D list_options list_id race option_id duckwater
3086 UPDATE `list_options` SET `notes` = '1588-3' WHERE `option_id` = 'duckwater' AND `list_id` = 'race';
3087 #EndIf
3089 #IfRow2D list_options list_id race title Duckwater
3090 UPDATE `list_options` SET `notes` = '1588-3' WHERE `title` = 'Duckwater' AND `list_id` = 'race';
3091 #EndIf
3093 #IfNotRow2Dx2 list_options list_id race option_id duwamish title Duwamish
3094 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','duwamish','Duwamish','2270', '0',' 1519-8', 0);
3095 #EndIf
3097 #IfRow2D list_options list_id race option_id duwamish
3098 UPDATE `list_options` SET `notes` = '1519-8' WHERE `option_id` = 'duwamish' AND `list_id` = 'race';
3099 #EndIf
3101 #IfRow2D list_options list_id race title Duwamish
3102 UPDATE `list_options` SET `notes` = '1519-8' WHERE `title` = 'Duwamish' AND `list_id` = 'race';
3103 #EndIf
3105 #IfNotRow2Dx2 list_options list_id race option_id eagle title Eagle
3106 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eagle','Eagle','2280', '0',' 1760-8', 0);
3107 #EndIf
3109 #IfRow2D list_options list_id race option_id eagle
3110 UPDATE `list_options` SET `notes` = '1760-8' WHERE `option_id` = 'eagle' AND `list_id` = 'race';
3111 #EndIf
3113 #IfRow2D list_options list_id race title Eagle
3114 UPDATE `list_options` SET `notes` = '1760-8' WHERE `title` = 'Eagle' AND `list_id` = 'race';
3115 #EndIf
3117 #IfNotRow2Dx2 list_options list_id race option_id eastern_cherokee title Eastern Cherokee
3118 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_cherokee','Eastern Cherokee','2290', '0',' 1092-6', 0);
3119 #EndIf
3121 #IfRow2D list_options list_id race option_id eastern_cherokee
3122 UPDATE `list_options` SET `notes` = '1092-6' WHERE `option_id` = 'eastern_cherokee' AND `list_id` = 'race';
3123 #EndIf
3125 #IfRow2D list_options list_id race title Eastern Cherokee
3126 UPDATE `list_options` SET `notes` = '1092-6' WHERE `title` = 'Eastern Cherokee' AND `list_id` = 'race';
3127 #EndIf
3129 #IfNotRow2Dx2 list_options list_id race option_id eastern_chickahominy title Eastern Chickahominy
3130 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_chickahominy','Eastern Chickahominy','2300', '0',' 1109-8', 0);
3131 #EndIf
3133 #IfRow2D list_options list_id race option_id eastern_chickahominy
3134 UPDATE `list_options` SET `notes` = '1109-8' WHERE `option_id` = 'eastern_chickahominy' AND `list_id` = 'race';
3135 #EndIf
3137 #IfRow2D list_options list_id race title Eastern Chickahominy
3138 UPDATE `list_options` SET `notes` = '1109-8' WHERE `title` = 'Eastern Chickahominy' AND `list_id` = 'race';
3139 #EndIf
3141 #IfNotRow2Dx2 list_options list_id race option_id eastern_creek title Eastern Creek
3142 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_creek','Eastern Creek','2310', '0',' 1196-5', 0);
3143 #EndIf
3145 #IfRow2D list_options list_id race option_id eastern_creek
3146 UPDATE `list_options` SET `notes` = '1196-5' WHERE `option_id` = 'eastern_creek' AND `list_id` = 'race';
3147 #EndIf
3149 #IfRow2D list_options list_id race title Eastern Creek
3150 UPDATE `list_options` SET `notes` = '1196-5' WHERE `title` = 'Eastern Creek' AND `list_id` = 'race';
3151 #EndIf
3153 #IfNotRow2Dx2 list_options list_id race option_id eastern_delaware title Eastern Delaware
3154 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_delaware','Eastern Delaware','2320', '0',' 1215-3', 0);
3155 #EndIf
3157 #IfRow2D list_options list_id race option_id eastern_delaware
3158 UPDATE `list_options` SET `notes` = '1215-3' WHERE `option_id` = 'eastern_delaware' AND `list_id` = 'race';
3159 #EndIf
3161 #IfRow2D list_options list_id race title Eastern Delaware
3162 UPDATE `list_options` SET `notes` = '1215-3' WHERE `title` = 'Eastern Delaware' AND `list_id` = 'race';
3163 #EndIf
3165 #IfNotRow2Dx2 list_options list_id race option_id eastern_muscogee title Eastern Muscogee
3166 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_muscogee','Eastern Muscogee','2330', '0',' 1197-3', 0);
3167 #EndIf
3169 #IfRow2D list_options list_id race option_id eastern_muscogee
3170 UPDATE `list_options` SET `notes` = '1197-3' WHERE `option_id` = 'eastern_muscogee' AND `list_id` = 'race';
3171 #EndIf
3173 #IfRow2D list_options list_id race title Eastern Muscogee
3174 UPDATE `list_options` SET `notes` = '1197-3' WHERE `title` = 'Eastern Muscogee' AND `list_id` = 'race';
3175 #EndIf
3177 #IfNotRow2Dx2 list_options list_id race option_id eastern_pomo title Eastern Pomo
3178 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_pomo','Eastern Pomo','2340', '0',' 1467-0', 0);
3179 #EndIf
3181 #IfRow2D list_options list_id race option_id eastern_pomo
3182 UPDATE `list_options` SET `notes` = '1467-0' WHERE `option_id` = 'eastern_pomo' AND `list_id` = 'race';
3183 #EndIf
3185 #IfRow2D list_options list_id race title Eastern Pomo
3186 UPDATE `list_options` SET `notes` = '1467-0' WHERE `title` = 'Eastern Pomo' AND `list_id` = 'race';
3187 #EndIf
3189 #IfNotRow2Dx2 list_options list_id race option_id eastern_shawnee title Eastern Shawnee
3190 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_shawnee','Eastern Shawnee','2350', '0',' 1580-0', 0);
3191 #EndIf
3193 #IfRow2D list_options list_id race option_id eastern_shawnee
3194 UPDATE `list_options` SET `notes` = '1580-0' WHERE `option_id` = 'eastern_shawnee' AND `list_id` = 'race';
3195 #EndIf
3197 #IfRow2D list_options list_id race title Eastern Shawnee
3198 UPDATE `list_options` SET `notes` = '1580-0' WHERE `title` = 'Eastern Shawnee' AND `list_id` = 'race';
3199 #EndIf
3201 #IfNotRow2Dx2 list_options list_id race option_id eastern_tribes title Eastern Tribes
3202 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eastern_tribes','Eastern Tribes','2360', '0',' 1233-6', 0);
3203 #EndIf
3205 #IfRow2D list_options list_id race option_id eastern_tribes
3206 UPDATE `list_options` SET `notes` = '1233-6' WHERE `option_id` = 'eastern_tribes' AND `list_id` = 'race';
3207 #EndIf
3209 #IfRow2D list_options list_id race title Eastern Tribes
3210 UPDATE `list_options` SET `notes` = '1233-6' WHERE `title` = 'Eastern Tribes' AND `list_id` = 'race';
3211 #EndIf
3213 #IfNotRow2Dx2 list_options list_id race option_id echota_cherokee title Echota Cherokee
3214 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','echota_cherokee','Echota Cherokee','2370', '0',' 1093-4', 0);
3215 #EndIf
3217 #IfRow2D list_options list_id race option_id echota_cherokee
3218 UPDATE `list_options` SET `notes` = '1093-4' WHERE `option_id` = 'echota_cherokee' AND `list_id` = 'race';
3219 #EndIf
3221 #IfRow2D list_options list_id race title Echota Cherokee
3222 UPDATE `list_options` SET `notes` = '1093-4' WHERE `title` = 'Echota Cherokee' AND `list_id` = 'race';
3223 #EndIf
3225 #IfNotRow2Dx2 list_options list_id race option_id eek title Eek
3226 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eek','Eek','2380', '0',' 1914-1', 0);
3227 #EndIf
3229 #IfRow2D list_options list_id race option_id eek
3230 UPDATE `list_options` SET `notes` = '1914-1' WHERE `option_id` = 'eek' AND `list_id` = 'race';
3231 #EndIf
3233 #IfRow2D list_options list_id race title Eek
3234 UPDATE `list_options` SET `notes` = '1914-1' WHERE `title` = 'Eek' AND `list_id` = 'race';
3235 #EndIf
3237 #IfNotRow2Dx2 list_options list_id race option_id egegik title Egegik
3238 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','egegik','Egegik','2390', '0',' 1975-2', 0);
3239 #EndIf
3241 #IfRow2D list_options list_id race option_id egegik
3242 UPDATE `list_options` SET `notes` = '1975-2' WHERE `option_id` = 'egegik' AND `list_id` = 'race';
3243 #EndIf
3245 #IfRow2D list_options list_id race title Egegik
3246 UPDATE `list_options` SET `notes` = '1975-2' WHERE `title` = 'Egegik' AND `list_id` = 'race';
3247 #EndIf
3249 #IfNotRow2Dx2 list_options list_id race option_id egyptian title Egyptian
3250 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','egyptian','Egyptian','2400', '0',' 2120-4', 0);
3251 #EndIf
3253 #IfRow2D list_options list_id race option_id egyptian
3254 UPDATE `list_options` SET `notes` = '2120-4' WHERE `option_id` = 'egyptian' AND `list_id` = 'race';
3255 #EndIf
3257 #IfRow2D list_options list_id race title Egyptian
3258 UPDATE `list_options` SET `notes` = '2120-4' WHERE `title` = 'Egyptian' AND `list_id` = 'race';
3259 #EndIf
3261 #IfNotRow2Dx2 list_options list_id race option_id eklutna title Eklutna
3262 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eklutna','Eklutna','2410', '0',' 1761-6', 0);
3263 #EndIf
3265 #IfRow2D list_options list_id race option_id eklutna
3266 UPDATE `list_options` SET `notes` = '1761-6' WHERE `option_id` = 'eklutna' AND `list_id` = 'race';
3267 #EndIf
3269 #IfRow2D list_options list_id race title Eklutna
3270 UPDATE `list_options` SET `notes` = '1761-6' WHERE `title` = 'Eklutna' AND `list_id` = 'race';
3271 #EndIf
3273 #IfNotRow2Dx2 list_options list_id race option_id ekuk title Ekuk
3274 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ekuk','Ekuk','2420', '0',' 1915-8', 0);
3275 #EndIf
3277 #IfRow2D list_options list_id race option_id ekuk
3278 UPDATE `list_options` SET `notes` = '1915-8' WHERE `option_id` = 'ekuk' AND `list_id` = 'race';
3279 #EndIf
3281 #IfRow2D list_options list_id race title Ekuk
3282 UPDATE `list_options` SET `notes` = '1915-8' WHERE `title` = 'Ekuk' AND `list_id` = 'race';
3283 #EndIf
3285 #IfNotRow2Dx2 list_options list_id race option_id ekwok title Ekwok
3286 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ekwok','Ekwok','2430', '0',' 1916-6', 0);
3287 #EndIf
3289 #IfRow2D list_options list_id race option_id ekwok
3290 UPDATE `list_options` SET `notes` = '1916-6' WHERE `option_id` = 'ekwok' AND `list_id` = 'race';
3291 #EndIf
3293 #IfRow2D list_options list_id race title Ekwok
3294 UPDATE `list_options` SET `notes` = '1916-6' WHERE `title` = 'Ekwok' AND `list_id` = 'race';
3295 #EndIf
3297 #IfNotRow2Dx2 list_options list_id race option_id elim title Elim
3298 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','elim','Elim','2440', '0',' 1858-0', 0);
3299 #EndIf
3301 #IfRow2D list_options list_id race option_id elim
3302 UPDATE `list_options` SET `notes` = '1858-0' WHERE `option_id` = 'elim' AND `list_id` = 'race';
3303 #EndIf
3305 #IfRow2D list_options list_id race title Elim
3306 UPDATE `list_options` SET `notes` = '1858-0' WHERE `title` = 'Elim' AND `list_id` = 'race';
3307 #EndIf
3309 #IfNotRow2Dx2 list_options list_id race option_id elko title Elko
3310 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','elko','Elko','2450', '0',' 1589-1', 0);
3311 #EndIf
3313 #IfRow2D list_options list_id race option_id elko
3314 UPDATE `list_options` SET `notes` = '1589-1' WHERE `option_id` = 'elko' AND `list_id` = 'race';
3315 #EndIf
3317 #IfRow2D list_options list_id race title Elko
3318 UPDATE `list_options` SET `notes` = '1589-1' WHERE `title` = 'Elko' AND `list_id` = 'race';
3319 #EndIf
3321 #IfNotRow2Dx2 list_options list_id race option_id ely title Ely
3322 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ely','Ely','2460', '0',' 1590-9', 0);
3323 #EndIf
3325 #IfRow2D list_options list_id race option_id ely
3326 UPDATE `list_options` SET `notes` = '1590-9' WHERE `option_id` = 'ely' AND `list_id` = 'race';
3327 #EndIf
3329 #IfRow2D list_options list_id race title Ely
3330 UPDATE `list_options` SET `notes` = '1590-9' WHERE `title` = 'Ely' AND `list_id` = 'race';
3331 #EndIf
3333 #IfNotRow2Dx2 list_options list_id race option_id emmonak title Emmonak
3334 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','emmonak','Emmonak','2470', '0',' 1917-4', 0);
3335 #EndIf
3337 #IfRow2D list_options list_id race option_id emmonak
3338 UPDATE `list_options` SET `notes` = '1917-4' WHERE `option_id` = 'emmonak' AND `list_id` = 'race';
3339 #EndIf
3341 #IfRow2D list_options list_id race title Emmonak
3342 UPDATE `list_options` SET `notes` = '1917-4' WHERE `title` = 'Emmonak' AND `list_id` = 'race';
3343 #EndIf
3345 #IfNotRow2Dx2 list_options list_id race option_id english title English
3346 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','english','English','2480', '0',' 2110-5', 0);
3347 #EndIf
3349 #IfRow2D list_options list_id race option_id english
3350 UPDATE `list_options` SET `notes` = '2110-5' WHERE `option_id` = 'english' AND `list_id` = 'race';
3351 #EndIf
3353 #IfRow2D list_options list_id race title English
3354 UPDATE `list_options` SET `notes` = '2110-5' WHERE `title` = 'English' AND `list_id` = 'race';
3355 #EndIf
3357 #IfNotRow2Dx2 list_options list_id race option_id english_bay title English Bay
3358 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','english_bay','English Bay','2490', '0',' 1987-7', 0);
3359 #EndIf
3361 #IfRow2D list_options list_id race option_id english_bay
3362 UPDATE `list_options` SET `notes` = '1987-7' WHERE `option_id` = 'english_bay' AND `list_id` = 'race';
3363 #EndIf
3365 #IfRow2D list_options list_id race title English Bay
3366 UPDATE `list_options` SET `notes` = '1987-7' WHERE `title` = 'English Bay' AND `list_id` = 'race';
3367 #EndIf
3369 #IfNotRow2Dx2 list_options list_id race option_id eskimo title Eskimo
3370 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eskimo','Eskimo','2500', '0',' 1840-8', 0);
3371 #EndIf
3373 #IfRow2D list_options list_id race option_id eskimo
3374 UPDATE `list_options` SET `notes` = '1840-8' WHERE `option_id` = 'eskimo' AND `list_id` = 'race';
3375 #EndIf
3377 #IfRow2D list_options list_id race title Eskimo
3378 UPDATE `list_options` SET `notes` = '1840-8' WHERE `title` = 'Eskimo' AND `list_id` = 'race';
3379 #EndIf
3381 #IfNotRow2Dx2 list_options list_id race option_id esselen title Esselen
3382 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','esselen','Esselen','2510', '0',' 1250-0', 0);
3383 #EndIf
3385 #IfRow2D list_options list_id race option_id esselen
3386 UPDATE `list_options` SET `notes` = '1250-0' WHERE `option_id` = 'esselen' AND `list_id` = 'race';
3387 #EndIf
3389 #IfRow2D list_options list_id race title Esselen
3390 UPDATE `list_options` SET `notes` = '1250-0' WHERE `title` = 'Esselen' AND `list_id` = 'race';
3391 #EndIf
3393 #IfNotRow2Dx2 list_options list_id race option_id ethiopian title Ethiopian
3394 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ethiopian','Ethiopian','2520', '0',' 2062-8', 0);
3395 #EndIf
3397 #IfRow2D list_options list_id race option_id ethiopian
3398 UPDATE `list_options` SET `notes` = '2062-8' WHERE `option_id` = 'ethiopian' AND `list_id` = 'race';
3399 #EndIf
3401 #IfRow2D list_options list_id race title Ethiopian
3402 UPDATE `list_options` SET `notes` = '2062-8' WHERE `title` = 'Ethiopian' AND `list_id` = 'race';
3403 #EndIf
3405 #IfNotRow2Dx2 list_options list_id race option_id etowah_cherokee title Etowah Cherokee
3406 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','etowah_cherokee','Etowah Cherokee','2530', '0',' 1094-2', 0);
3407 #EndIf
3409 #IfRow2D list_options list_id race option_id etowah_cherokee
3410 UPDATE `list_options` SET `notes` = '1094-2' WHERE `option_id` = 'etowah_cherokee' AND `list_id` = 'race';
3411 #EndIf
3413 #IfRow2D list_options list_id race title Etowah Cherokee
3414 UPDATE `list_options` SET `notes` = '1094-2' WHERE `title` = 'Etowah Cherokee' AND `list_id` = 'race';
3415 #EndIf
3417 #IfNotRow2Dx2 list_options list_id race option_id european title European
3418 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','european','European','2540', '0',' 2108-9', 0);
3419 #EndIf
3421 #IfRow2D list_options list_id race option_id european
3422 UPDATE `list_options` SET `notes` = '2108-9' WHERE `option_id` = 'european' AND `list_id` = 'race';
3423 #EndIf
3425 #IfRow2D list_options list_id race title European
3426 UPDATE `list_options` SET `notes` = '2108-9' WHERE `title` = 'European' AND `list_id` = 'race';
3427 #EndIf
3429 #IfNotRow2Dx2 list_options list_id race option_id evansville title Evansville
3430 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','evansville','Evansville','2550', '0',' 1762-4', 0);
3431 #EndIf
3433 #IfRow2D list_options list_id race option_id evansville
3434 UPDATE `list_options` SET `notes` = '1762-4' WHERE `option_id` = 'evansville' AND `list_id` = 'race';
3435 #EndIf
3437 #IfRow2D list_options list_id race title Evansville
3438 UPDATE `list_options` SET `notes` = '1762-4' WHERE `title` = 'Evansville' AND `list_id` = 'race';
3439 #EndIf
3441 #IfNotRow2Dx2 list_options list_id race option_id eyak title Eyak
3442 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','eyak','Eyak','2560', '0',' 1990-1', 0);
3443 #EndIf
3445 #IfRow2D list_options list_id race option_id eyak
3446 UPDATE `list_options` SET `notes` = '1990-1' WHERE `option_id` = 'eyak' AND `list_id` = 'race';
3447 #EndIf
3449 #IfRow2D list_options list_id race title Eyak
3450 UPDATE `list_options` SET `notes` = '1990-1' WHERE `title` = 'Eyak' AND `list_id` = 'race';
3451 #EndIf
3453 #IfNotRow2Dx2 list_options list_id race option_id fallon title Fallon
3454 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fallon','Fallon','2570', '0',' 1604-8', 0);
3455 #EndIf
3457 #IfRow2D list_options list_id race option_id fallon
3458 UPDATE `list_options` SET `notes` = '1604-8' WHERE `option_id` = 'fallon' AND `list_id` = 'race';
3459 #EndIf
3461 #IfRow2D list_options list_id race title Fallon
3462 UPDATE `list_options` SET `notes` = '1604-8' WHERE `title` = 'Fallon' AND `list_id` = 'race';
3463 #EndIf
3465 #IfNotRow2Dx2 list_options list_id race option_id false_pass title False Pass
3466 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','false_pass','False Pass','2580', '0',' 2015-6', 0);
3467 #EndIf
3469 #IfRow2D list_options list_id race option_id false_pass
3470 UPDATE `list_options` SET `notes` = '2015-6' WHERE `option_id` = 'false_pass' AND `list_id` = 'race';
3471 #EndIf
3473 #IfRow2D list_options list_id race title False Pass
3474 UPDATE `list_options` SET `notes` = '2015-6' WHERE `title` = 'False Pass' AND `list_id` = 'race';
3475 #EndIf
3477 #IfNotRow2Dx2 list_options list_id race option_id fijian title Fijian
3478 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fijian','Fijian','2590', '0',' 2101-4', 0);
3479 #EndIf
3481 #IfRow2D list_options list_id race option_id fijian
3482 UPDATE `list_options` SET `notes` = '2101-4' WHERE `option_id` = 'fijian' AND `list_id` = 'race';
3483 #EndIf
3485 #IfRow2D list_options list_id race title Fijian
3486 UPDATE `list_options` SET `notes` = '2101-4' WHERE `title` = 'Fijian' AND `list_id` = 'race';
3487 #EndIf
3489 #IfNotRow2Dx2 list_options list_id race option_id filipino title Filipino
3490 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','filipino','Filipino','2600', '0',' 2036-2', 0);
3491 #EndIf
3493 #IfRow2D list_options list_id race option_id filipino
3494 UPDATE `list_options` SET `notes` = '2036-2' WHERE `option_id` = 'filipino' AND `list_id` = 'race';
3495 #EndIf
3497 #IfRow2D list_options list_id race title Filipino
3498 UPDATE `list_options` SET `notes` = '2036-2' WHERE `title` = 'Filipino' AND `list_id` = 'race';
3499 #EndIf
3501 #IfNotRow2Dx2 list_options list_id race option_id flandreau_santee title Flandreau Santee
3502 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','flandreau_santee','Flandreau Santee','2610', '0',' 1615-4', 0);
3503 #EndIf
3505 #IfRow2D list_options list_id race option_id flandreau_santee
3506 UPDATE `list_options` SET `notes` = '1615-4' WHERE `option_id` = 'flandreau_santee' AND `list_id` = 'race';
3507 #EndIf
3509 #IfRow2D list_options list_id race title Flandreau Santee
3510 UPDATE `list_options` SET `notes` = '1615-4' WHERE `title` = 'Flandreau Santee' AND `list_id` = 'race';
3511 #EndIf
3513 #IfNotRow2Dx2 list_options list_id race option_id florida_seminole title Florida Seminole
3514 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','florida_seminole','Florida Seminole','2620', '0',' 1569-3', 0);
3515 #EndIf
3517 #IfRow2D list_options list_id race option_id florida_seminole
3518 UPDATE `list_options` SET `notes` = '1569-3' WHERE `option_id` = 'florida_seminole' AND `list_id` = 'race';
3519 #EndIf
3521 #IfRow2D list_options list_id race title Florida Seminole
3522 UPDATE `list_options` SET `notes` = '1569-3' WHERE `title` = 'Florida Seminole' AND `list_id` = 'race';
3523 #EndIf
3525 #IfNotRow2Dx2 list_options list_id race option_id fond_du_lac title Fond du Lac
3526 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fond_du_lac','Fond du Lac','2630', '0',' 1128-8', 0);
3527 #EndIf
3529 #IfRow2D list_options list_id race option_id fond_du_lac
3530 UPDATE `list_options` SET `notes` = '1128-8' WHERE `option_id` = 'fond_du_lac' AND `list_id` = 'race';
3531 #EndIf
3533 #IfRow2D list_options list_id race title Fond du Lac
3534 UPDATE `list_options` SET `notes` = '1128-8' WHERE `title` = 'Fond du Lac' AND `list_id` = 'race';
3535 #EndIf
3537 #IfNotRow2Dx2 list_options list_id race option_id forest_county title Forest County
3538 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','forest_county','Forest County','2640', '0',' 1480-3', 0);
3539 #EndIf
3541 #IfRow2D list_options list_id race option_id forest_county
3542 UPDATE `list_options` SET `notes` = '1480-3' WHERE `option_id` = 'forest_county' AND `list_id` = 'race';
3543 #EndIf
3545 #IfRow2D list_options list_id race title Forest County
3546 UPDATE `list_options` SET `notes` = '1480-3' WHERE `title` = 'Forest County' AND `list_id` = 'race';
3547 #EndIf
3549 #IfNotRow2Dx2 list_options list_id race option_id fort_belknap title Fort Belknap
3550 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_belknap','Fort Belknap','2650', '0',' 1252-6', 0);
3551 #EndIf
3553 #IfRow2D list_options list_id race option_id fort_belknap
3554 UPDATE `list_options` SET `notes` = '1252-6' WHERE `option_id` = 'fort_belknap' AND `list_id` = 'race';
3555 #EndIf
3557 #IfRow2D list_options list_id race title Fort Belknap
3558 UPDATE `list_options` SET `notes` = '1252-6' WHERE `title` = 'Fort Belknap' AND `list_id` = 'race';
3559 #EndIf
3561 #IfNotRow2Dx2 list_options list_id race option_id fort_berthold title Fort Berthold
3562 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_berthold','Fort Berthold','2660', '0',' 1254-2', 0);
3563 #EndIf
3565 #IfRow2D list_options list_id race option_id fort_berthold
3566 UPDATE `list_options` SET `notes` = '1254-2' WHERE `option_id` = 'fort_berthold' AND `list_id` = 'race';
3567 #EndIf
3569 #IfRow2D list_options list_id race title Fort Berthold
3570 UPDATE `list_options` SET `notes` = '1254-2' WHERE `title` = 'Fort Berthold' AND `list_id` = 'race';
3571 #EndIf
3573 #IfNotRow2Dx2 list_options list_id race option_id fort_bidwell title Fort Bidwell
3574 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_bidwell','Fort Bidwell','2670', '0',' 1421-7', 0);
3575 #EndIf
3577 #IfRow2D list_options list_id race option_id fort_bidwell
3578 UPDATE `list_options` SET `notes` = '1421-7' WHERE `option_id` = 'fort_bidwell' AND `list_id` = 'race';
3579 #EndIf
3581 #IfRow2D list_options list_id race title Fort Bidwell
3582 UPDATE `list_options` SET `notes` = '1421-7' WHERE `title` = 'Fort Bidwell' AND `list_id` = 'race';
3583 #EndIf
3585 #IfNotRow2Dx2 list_options list_id race option_id fort_hall title Fort Hall
3586 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_hall','Fort Hall','2680', '0',' 1258-3', 0);
3587 #EndIf
3589 #IfRow2D list_options list_id race option_id fort_hall
3590 UPDATE `list_options` SET `notes` = '1258-3' WHERE `option_id` = 'fort_hall' AND `list_id` = 'race';
3591 #EndIf
3593 #IfRow2D list_options list_id race title Fort Hall
3594 UPDATE `list_options` SET `notes` = '1258-3' WHERE `title` = 'Fort Hall' AND `list_id` = 'race';
3595 #EndIf
3597 #IfNotRow2Dx2 list_options list_id race option_id fort_independence title Fort Independence
3598 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_independence','Fort Independence','2690', '0',' 1422-5', 0);
3599 #EndIf
3601 #IfRow2D list_options list_id race option_id fort_independence
3602 UPDATE `list_options` SET `notes` = '1422-5' WHERE `option_id` = 'fort_independence' AND `list_id` = 'race';
3603 #EndIf
3605 #IfRow2D list_options list_id race title Fort Independence
3606 UPDATE `list_options` SET `notes` = '1422-5' WHERE `title` = 'Fort Independence' AND `list_id` = 'race';
3607 #EndIf
3609 #IfNotRow2Dx2 list_options list_id race option_id fort_mcdermitt title Fort McDermitt
3610 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_mcdermitt','Fort McDermitt','2700', '0',' 1605-5', 0);
3611 #EndIf
3613 #IfRow2D list_options list_id race option_id fort_mcdermitt
3614 UPDATE `list_options` SET `notes` = '1605-5' WHERE `option_id` = 'fort_mcdermitt' AND `list_id` = 'race';
3615 #EndIf
3617 #IfRow2D list_options list_id race title Fort McDermitt
3618 UPDATE `list_options` SET `notes` = '1605-5' WHERE `title` = 'Fort McDermitt' AND `list_id` = 'race';
3619 #EndIf
3621 #IfNotRow2Dx2 list_options list_id race option_id fort_mcdowell title Fort Mcdowell
3622 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_mcdowell','Fort Mcdowell','2710', '0',' 1256-7', 0);
3623 #EndIf
3625 #IfRow2D list_options list_id race option_id fort_mcdowell
3626 UPDATE `list_options` SET `notes` = '1256-7' WHERE `option_id` = 'fort_mcdowell' AND `list_id` = 'race';
3627 #EndIf
3629 #IfRow2D list_options list_id race title Fort Mcdowell
3630 UPDATE `list_options` SET `notes` = '1256-7' WHERE `title` = 'Fort Mcdowell' AND `list_id` = 'race';
3631 #EndIf
3633 #IfNotRow2Dx2 list_options list_id race option_id fort_peck title Fort Peck
3634 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_peck','Fort Peck','2720', '0',' 1616-2', 0);
3635 #EndIf
3637 #IfRow2D list_options list_id race option_id fort_peck
3638 UPDATE `list_options` SET `notes` = '1616-2' WHERE `option_id` = 'fort_peck' AND `list_id` = 'race';
3639 #EndIf
3641 #IfRow2D list_options list_id race title Fort Peck
3642 UPDATE `list_options` SET `notes` = '1616-2' WHERE `title` = 'Fort Peck' AND `list_id` = 'race';
3643 #EndIf
3645 #IfNotRow2Dx2 list_options list_id race option_id fort_peck_assiniboine_sioux title Fort Peck Assiniboine Sioux
3646 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_peck_assiniboine_sioux','Fort Peck Assiniboine Sioux','2730', '0',' 1031-4', 0);
3647 #EndIf
3649 #IfRow2D list_options list_id race option_id fort_peck_assiniboine_sioux
3650 UPDATE `list_options` SET `notes` = '1031-4' WHERE `option_id` = 'fort_peck_assiniboine_sioux' AND `list_id` = 'race';
3651 #EndIf
3653 #IfRow2D list_options list_id race title Fort Peck Assiniboine Sioux
3654 UPDATE `list_options` SET `notes` = '1031-4' WHERE `title` = 'Fort Peck Assiniboine Sioux' AND `list_id` = 'race';
3655 #EndIf
3657 #IfNotRow2Dx2 list_options list_id race option_id fort_sill_apache title Fort Sill Apache
3658 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_sill_apache','Fort Sill Apache','2740', '0',' 1012-4', 0);
3659 #EndIf
3661 #IfRow2D list_options list_id race option_id fort_sill_apache
3662 UPDATE `list_options` SET `notes` = '1012-4' WHERE `option_id` = 'fort_sill_apache' AND `list_id` = 'race';
3663 #EndIf
3665 #IfRow2D list_options list_id race title Fort Sill Apache
3666 UPDATE `list_options` SET `notes` = '1012-4' WHERE `title` = 'Fort Sill Apache' AND `list_id` = 'race';
3667 #EndIf
3669 #IfNotRow2Dx2 list_options list_id race option_id fort_yukon title Fort Yukon
3670 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','fort_yukon','Fort Yukon','2750', '0',' 1763-2', 0);
3671 #EndIf
3673 #IfRow2D list_options list_id race option_id fort_yukon
3674 UPDATE `list_options` SET `notes` = '1763-2' WHERE `option_id` = 'fort_yukon' AND `list_id` = 'race';
3675 #EndIf
3677 #IfRow2D list_options list_id race title Fort Yukon
3678 UPDATE `list_options` SET `notes` = '1763-2' WHERE `title` = 'Fort Yukon' AND `list_id` = 'race';
3679 #EndIf
3681 #IfNotRow2Dx2 list_options list_id race option_id french title French
3682 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','french','French','2760', '0',' 2111-3', 0);
3683 #EndIf
3685 #IfRow2D list_options list_id race option_id french
3686 UPDATE `list_options` SET `notes` = '2111-3' WHERE `option_id` = 'french' AND `list_id` = 'race';
3687 #EndIf
3689 #IfRow2D list_options list_id race title French
3690 UPDATE `list_options` SET `notes` = '2111-3' WHERE `title` = 'French' AND `list_id` = 'race';
3691 #EndIf
3693 #IfNotRow2Dx2 list_options list_id race option_id french_american_indian title French American Indian
3694 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','french_american_indian','French American Indian','2770', '0',' 1071-0', 0);
3695 #EndIf
3697 #IfRow2D list_options list_id race option_id french_american_indian
3698 UPDATE `list_options` SET `notes` = '1071-0' WHERE `option_id` = 'french_american_indian' AND `list_id` = 'race';
3699 #EndIf
3701 #IfRow2D list_options list_id race title French American Indian
3702 UPDATE `list_options` SET `notes` = '1071-0' WHERE `title` = 'French American Indian' AND `list_id` = 'race';
3703 #EndIf
3705 #IfNotRow2Dx2 list_options list_id race option_id gabrieleno title Gabrieleno
3706 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gabrieleno','Gabrieleno','2780', '0',' 1260-9', 0);
3707 #EndIf
3709 #IfRow2D list_options list_id race option_id gabrieleno
3710 UPDATE `list_options` SET `notes` = '1260-9' WHERE `option_id` = 'gabrieleno' AND `list_id` = 'race';
3711 #EndIf
3713 #IfRow2D list_options list_id race title Gabrieleno
3714 UPDATE `list_options` SET `notes` = '1260-9' WHERE `title` = 'Gabrieleno' AND `list_id` = 'race';
3715 #EndIf
3717 #IfNotRow2Dx2 list_options list_id race option_id gakona title Gakona
3718 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gakona','Gakona','2790', '0',' 1764-0', 0);
3719 #EndIf
3721 #IfRow2D list_options list_id race option_id gakona
3722 UPDATE `list_options` SET `notes` = '1764-0' WHERE `option_id` = 'gakona' AND `list_id` = 'race';
3723 #EndIf
3725 #IfRow2D list_options list_id race title Gakona
3726 UPDATE `list_options` SET `notes` = '1764-0' WHERE `title` = 'Gakona' AND `list_id` = 'race';
3727 #EndIf
3729 #IfNotRow2Dx2 list_options list_id race option_id galena title Galena
3730 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','galena','Galena','2800', '0',' 1765-7', 0);
3731 #EndIf
3733 #IfRow2D list_options list_id race option_id galena
3734 UPDATE `list_options` SET `notes` = '1765-7' WHERE `option_id` = 'galena' AND `list_id` = 'race';
3735 #EndIf
3737 #IfRow2D list_options list_id race title Galena
3738 UPDATE `list_options` SET `notes` = '1765-7' WHERE `title` = 'Galena' AND `list_id` = 'race';
3739 #EndIf
3741 #IfNotRow2Dx2 list_options list_id race option_id gambell title Gambell
3742 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gambell','Gambell','2810', '0',' 1892-9', 0);
3743 #EndIf
3745 #IfRow2D list_options list_id race option_id gambell
3746 UPDATE `list_options` SET `notes` = '1892-9' WHERE `option_id` = 'gambell' AND `list_id` = 'race';
3747 #EndIf
3749 #IfRow2D list_options list_id race title Gambell
3750 UPDATE `list_options` SET `notes` = '1892-9' WHERE `title` = 'Gambell' AND `list_id` = 'race';
3751 #EndIf
3753 #IfNotRow2Dx2 list_options list_id race option_id gay_head_wampanoag title Gay Head Wampanoag
3754 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gay_head_wampanoag','Gay Head Wampanoag','2820', '0',' 1680-8', 0);
3755 #EndIf
3757 #IfRow2D list_options list_id race option_id gay_head_wampanoag
3758 UPDATE `list_options` SET `notes` = '1680-8' WHERE `option_id` = 'gay_head_wampanoag' AND `list_id` = 'race';
3759 #EndIf
3761 #IfRow2D list_options list_id race title Gay Head Wampanoag
3762 UPDATE `list_options` SET `notes` = '1680-8' WHERE `title` = 'Gay Head Wampanoag' AND `list_id` = 'race';
3763 #EndIf
3765 #IfNotRow2Dx2 list_options list_id race option_id georgetown_eastern_tribes title Georgetown (Eastern Tribes)
3766 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','georgetown_eastern_tribes','Georgetown (Eastern Tribes)','2830', '0',' 1236-9', 0);
3767 #EndIf
3769 #IfRow2D list_options list_id race option_id georgetown_eastern_tribes
3770 UPDATE `list_options` SET `notes` = '1236-9' WHERE `option_id` = 'georgetown_eastern_tribes' AND `list_id` = 'race';
3771 #EndIf
3773 #IfRow2D list_options list_id race title Georgetown (Eastern Tribes)
3774 UPDATE `list_options` SET `notes` = '1236-9' WHERE `title` = 'Georgetown (Eastern Tribes)' AND `list_id` = 'race';
3775 #EndIf
3777 #IfNotRow2Dx2 list_options list_id race option_id georgetown_yupik-eskimo title Georgetown (Yupik-Eskimo)
3778 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','georgetown_yupik-eskimo','Georgetown (Yupik-Eskimo)','2840', '0',' 1962-0', 0);
3779 #EndIf
3781 #IfRow2D list_options list_id race option_id georgetown_yupik-eskimo
3782 UPDATE `list_options` SET `notes` = '1962-0' WHERE `option_id` = 'georgetown_yupik-eskimo' AND `list_id` = 'race';
3783 #EndIf
3785 #IfRow2D list_options list_id race title Georgetown (Yupik-Eskimo)
3786 UPDATE `list_options` SET `notes` = '1962-0' WHERE `title` = 'Georgetown (Yupik-Eskimo)' AND `list_id` = 'race';
3787 #EndIf
3789 #IfNotRow2Dx2 list_options list_id race option_id german title German
3790 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','german','German','2850', '0',' 2112-1', 0);
3791 #EndIf
3793 #IfRow2D list_options list_id race option_id german
3794 UPDATE `list_options` SET `notes` = '2112-1' WHERE `option_id` = 'german' AND `list_id` = 'race';
3795 #EndIf
3797 #IfRow2D list_options list_id race title German
3798 UPDATE `list_options` SET `notes` = '2112-1' WHERE `title` = 'German' AND `list_id` = 'race';
3799 #EndIf
3801 #IfNotRow2Dx2 list_options list_id race option_id gila_bend title Gila Bend
3802 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gila_bend','Gila Bend','2860', '0',' 1655-0', 0);
3803 #EndIf
3805 #IfRow2D list_options list_id race option_id gila_bend
3806 UPDATE `list_options` SET `notes` = '1655-0' WHERE `option_id` = 'gila_bend' AND `list_id` = 'race';
3807 #EndIf
3809 #IfRow2D list_options list_id race title Gila Bend
3810 UPDATE `list_options` SET `notes` = '1655-0' WHERE `title` = 'Gila Bend' AND `list_id` = 'race';
3811 #EndIf
3813 #IfNotRow2Dx2 list_options list_id race option_id gila_river_pima-maricopa title Gila River Pima-Maricopa
3814 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gila_river_pima-maricopa','Gila River Pima-Maricopa','2870', '0',' 1457-1', 0);
3815 #EndIf
3817 #IfRow2D list_options list_id race option_id gila_river_pima-maricopa
3818 UPDATE `list_options` SET `notes` = '1457-1' WHERE `option_id` = 'gila_river_pima-maricopa' AND `list_id` = 'race';
3819 #EndIf
3821 #IfRow2D list_options list_id race title Gila River Pima-Maricopa
3822 UPDATE `list_options` SET `notes` = '1457-1' WHERE `title` = 'Gila River Pima-Maricopa' AND `list_id` = 'race';
3823 #EndIf
3825 #IfNotRow2Dx2 list_options list_id race option_id golovin title Golovin
3826 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','golovin','Golovin','2880', '0',' 1859-8', 0);
3827 #EndIf
3829 #IfRow2D list_options list_id race option_id golovin
3830 UPDATE `list_options` SET `notes` = '1859-8' WHERE `option_id` = 'golovin' AND `list_id` = 'race';
3831 #EndIf
3833 #IfRow2D list_options list_id race title Golovin
3834 UPDATE `list_options` SET `notes` = '1859-8' WHERE `title` = 'Golovin' AND `list_id` = 'race';
3835 #EndIf
3837 #IfNotRow2Dx2 list_options list_id race option_id goodnews_bay title Goodnews Bay
3838 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','goodnews_bay','Goodnews Bay','2890', '0',' 1918-2', 0);
3839 #EndIf
3841 #IfRow2D list_options list_id race option_id goodnews_bay
3842 UPDATE `list_options` SET `notes` = '1918-2' WHERE `option_id` = 'goodnews_bay' AND `list_id` = 'race';
3843 #EndIf
3845 #IfRow2D list_options list_id race title Goodnews Bay
3846 UPDATE `list_options` SET `notes` = '1918-2' WHERE `title` = 'Goodnews Bay' AND `list_id` = 'race';
3847 #EndIf
3849 #IfNotRow2Dx2 list_options list_id race option_id goshute title Goshute
3850 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','goshute','Goshute','2900', '0',' 1591-7', 0);
3851 #EndIf
3853 #IfRow2D list_options list_id race option_id goshute
3854 UPDATE `list_options` SET `notes` = '1591-7' WHERE `option_id` = 'goshute' AND `list_id` = 'race';
3855 #EndIf
3857 #IfRow2D list_options list_id race title Goshute
3858 UPDATE `list_options` SET `notes` = '1591-7' WHERE `title` = 'Goshute' AND `list_id` = 'race';
3859 #EndIf
3861 #IfNotRow2Dx2 list_options list_id race option_id grand_portage title Grand Portage
3862 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','grand_portage','Grand Portage','2910', '0',' 1129-6', 0);
3863 #EndIf
3865 #IfRow2D list_options list_id race option_id grand_portage
3866 UPDATE `list_options` SET `notes` = '1129-6' WHERE `option_id` = 'grand_portage' AND `list_id` = 'race';
3867 #EndIf
3869 #IfRow2D list_options list_id race title Grand Portage
3870 UPDATE `list_options` SET `notes` = '1129-6' WHERE `title` = 'Grand Portage' AND `list_id` = 'race';
3871 #EndIf
3873 #IfNotRow2Dx2 list_options list_id race option_id grand_ronde title Grand Ronde
3874 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','grand_ronde','Grand Ronde','2920', '0',' 1262-5', 0);
3875 #EndIf
3877 #IfRow2D list_options list_id race option_id grand_ronde
3878 UPDATE `list_options` SET `notes` = '1262-5' WHERE `option_id` = 'grand_ronde' AND `list_id` = 'race';
3879 #EndIf
3881 #IfRow2D list_options list_id race title Grand Ronde
3882 UPDATE `list_options` SET `notes` = '1262-5' WHERE `title` = 'Grand Ronde' AND `list_id` = 'race';
3883 #EndIf
3885 #IfNotRow2Dx2 list_options list_id race option_id grand_traverse_band title Grand Traverse Band of Ottawa/Chippewa
3886 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','grand_traverse_band','Grand Traverse Band of Ottawa/Chippewa','2930', '0',' 1130-4', 0);
3887 #EndIf
3889 #IfRow2D list_options list_id race option_id grand_traverse_band
3890 UPDATE `list_options` SET `notes` = '1130-4' WHERE `option_id` = 'grand_traverse_band' AND `list_id` = 'race';
3891 #EndIf
3893 #IfRow2D list_options list_id race title Grand Traverse Band of Ottawa/Chippewa
3894 UPDATE `list_options` SET `notes` = '1130-4' WHERE `title` = 'Grand Traverse Band of Ottawa/Chippewa' AND `list_id` = 'race';
3895 #EndIf
3897 #IfNotRow2Dx2 list_options list_id race option_id grayling title Grayling
3898 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','grayling','Grayling','2940', '0',' 1766-5', 0);
3899 #EndIf
3901 #IfRow2D list_options list_id race option_id grayling
3902 UPDATE `list_options` SET `notes` = '1766-5' WHERE `option_id` = 'grayling' AND `list_id` = 'race';
3903 #EndIf
3905 #IfRow2D list_options list_id race title Grayling
3906 UPDATE `list_options` SET `notes` = '1766-5' WHERE `title` = 'Grayling' AND `list_id` = 'race';
3907 #EndIf
3909 #IfNotRow2Dx2 list_options list_id race option_id greenland_eskimo title Greenland Eskimo
3910 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','greenland_eskimo','Greenland Eskimo','2950', '0',' 1842-4', 0);
3911 #EndIf
3913 #IfRow2D list_options list_id race option_id greenland_eskimo
3914 UPDATE `list_options` SET `notes` = '1842-4' WHERE `option_id` = 'greenland_eskimo' AND `list_id` = 'race';
3915 #EndIf
3917 #IfRow2D list_options list_id race title Greenland Eskimo
3918 UPDATE `list_options` SET `notes` = '1842-4' WHERE `title` = 'Greenland Eskimo' AND `list_id` = 'race';
3919 #EndIf
3921 #IfNotRow2Dx2 list_options list_id race option_id gros_ventres title Gros Ventres
3922 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gros_ventres','Gros Ventres','2960', '0',' 1264-1', 0);
3923 #EndIf
3925 #IfRow2D list_options list_id race option_id gros_ventres
3926 UPDATE `list_options` SET `notes` = '1264-1' WHERE `option_id` = 'gros_ventres' AND `list_id` = 'race';
3927 #EndIf
3929 #IfRow2D list_options list_id race title Gros Ventres
3930 UPDATE `list_options` SET `notes` = '1264-1' WHERE `title` = 'Gros Ventres' AND `list_id` = 'race';
3931 #EndIf
3933 #IfNotRow2Dx2 list_options list_id race option_id guamanian title Guamanian
3934 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','guamanian','Guamanian','2970', '0',' 2087-5', 0);
3935 #EndIf
3937 #IfRow2D list_options list_id race option_id guamanian
3938 UPDATE `list_options` SET `notes` = '2087-5' WHERE `option_id` = 'guamanian' AND `list_id` = 'race';
3939 #EndIf
3941 #IfRow2D list_options list_id race title Guamanian
3942 UPDATE `list_options` SET `notes` = '2087-5' WHERE `title` = 'Guamanian' AND `list_id` = 'race';
3943 #EndIf
3945 #IfNotRow2Dx2 list_options list_id race option_id guamanian_or_chamorro title Guamanian or Chamorro
3946 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','guamanian_or_chamorro','Guamanian or Chamorro','2980', '0',' 2086-7', 0);
3947 #EndIf
3949 #IfRow2D list_options list_id race option_id guamanian_or_chamorro
3950 UPDATE `list_options` SET `notes` = '2086-7' WHERE `option_id` = 'guamanian_or_chamorro' AND `list_id` = 'race';
3951 #EndIf
3953 #IfRow2D list_options list_id race title Guamanian or Chamorro
3954 UPDATE `list_options` SET `notes` = '2086-7' WHERE `title` = 'Guamanian or Chamorro' AND `list_id` = 'race';
3955 #EndIf
3957 #IfNotRow2Dx2 list_options list_id race option_id gulkana title Gulkana
3958 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','gulkana','Gulkana','2990', '0',' 1767-3', 0);
3959 #EndIf
3961 #IfRow2D list_options list_id race option_id gulkana
3962 UPDATE `list_options` SET `notes` = '1767-3' WHERE `option_id` = 'gulkana' AND `list_id` = 'race';
3963 #EndIf
3965 #IfRow2D list_options list_id race title Gulkana
3966 UPDATE `list_options` SET `notes` = '1767-3' WHERE `title` = 'Gulkana' AND `list_id` = 'race';
3967 #EndIf
3969 #IfNotRow2Dx2 list_options list_id race option_id haida title Haida
3970 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','haida','Haida','3000', '0',' 1820-0', 0);
3971 #EndIf
3973 #IfRow2D list_options list_id race option_id haida
3974 UPDATE `list_options` SET `notes` = '1820-0' WHERE `option_id` = 'haida' AND `list_id` = 'race';
3975 #EndIf
3977 #IfRow2D list_options list_id race title Haida
3978 UPDATE `list_options` SET `notes` = '1820-0' WHERE `title` = 'Haida' AND `list_id` = 'race';
3979 #EndIf
3981 #IfNotRow2Dx2 list_options list_id race option_id haitian title Haitian
3982 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','haitian','Haitian','3010', '0',' 2071-9', 0);
3983 #EndIf
3985 #IfRow2D list_options list_id race option_id haitian
3986 UPDATE `list_options` SET `notes` = '2071-9' WHERE `option_id` = 'haitian' AND `list_id` = 'race';
3987 #EndIf
3989 #IfRow2D list_options list_id race title Haitian
3990 UPDATE `list_options` SET `notes` = '2071-9' WHERE `title` = 'Haitian' AND `list_id` = 'race';
3991 #EndIf
3993 #IfNotRow2Dx2 list_options list_id race option_id haliwa title Haliwa
3994 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','haliwa','Haliwa','3020', '0',' 1267-4', 0);
3995 #EndIf
3997 #IfRow2D list_options list_id race option_id haliwa
3998 UPDATE `list_options` SET `notes` = '1267-4' WHERE `option_id` = 'haliwa' AND `list_id` = 'race';
3999 #EndIf
4001 #IfRow2D list_options list_id race title Haliwa
4002 UPDATE `list_options` SET `notes` = '1267-4' WHERE `title` = 'Haliwa' AND `list_id` = 'race';
4003 #EndIf
4005 #IfNotRow2Dx2 list_options list_id race option_id hannahville title Hannahville
4006 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hannahville','Hannahville','3030', '0',' 1481-1', 0);
4007 #EndIf
4009 #IfRow2D list_options list_id race option_id hannahville
4010 UPDATE `list_options` SET `notes` = '1481-1' WHERE `option_id` = 'hannahville' AND `list_id` = 'race';
4011 #EndIf
4013 #IfRow2D list_options list_id race title Hannahville
4014 UPDATE `list_options` SET `notes` = '1481-1' WHERE `title` = 'Hannahville' AND `list_id` = 'race';
4015 #EndIf
4017 #IfNotRow2Dx2 list_options list_id race option_id havasupai title Havasupai
4018 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','havasupai','Havasupai','3040', '0',' 1726-9', 0);
4019 #EndIf
4021 #IfRow2D list_options list_id race option_id havasupai
4022 UPDATE `list_options` SET `notes` = '1726-9' WHERE `option_id` = 'havasupai' AND `list_id` = 'race';
4023 #EndIf
4025 #IfRow2D list_options list_id race title Havasupai
4026 UPDATE `list_options` SET `notes` = '1726-9' WHERE `title` = 'Havasupai' AND `list_id` = 'race';
4027 #EndIf
4029 #IfNotRow2Dx2 list_options list_id race option_id healy_lake title Healy Lake
4030 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','healy_lake','Healy Lake','3050', '0',' 1768-1', 0);
4031 #EndIf
4033 #IfRow2D list_options list_id race option_id healy_lake
4034 UPDATE `list_options` SET `notes` = '1768-1' WHERE `option_id` = 'healy_lake' AND `list_id` = 'race';
4035 #EndIf
4037 #IfRow2D list_options list_id race title Healy Lake
4038 UPDATE `list_options` SET `notes` = '1768-1' WHERE `title` = 'Healy Lake' AND `list_id` = 'race';
4039 #EndIf
4041 #IfNotRow2Dx2 list_options list_id race option_id hidatsa title Hidatsa
4042 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hidatsa','Hidatsa','3060', '0',' 1269-0', 0);
4043 #EndIf
4045 #IfRow2D list_options list_id race option_id hidatsa
4046 UPDATE `list_options` SET `notes` = '1269-0' WHERE `option_id` = 'hidatsa' AND `list_id` = 'race';
4047 #EndIf
4049 #IfRow2D list_options list_id race title Hidatsa
4050 UPDATE `list_options` SET `notes` = '1269-0' WHERE `title` = 'Hidatsa' AND `list_id` = 'race';
4051 #EndIf
4053 #IfNotRow2Dx2 list_options list_id race option_id hmong title Hmong
4054 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hmong','Hmong','3070', '0',' 2037-0', 0);
4055 #EndIf
4057 #IfRow2D list_options list_id race option_id hmong
4058 UPDATE `list_options` SET `notes` = '2037-0' WHERE `option_id` = 'hmong' AND `list_id` = 'race';
4059 #EndIf
4061 #IfRow2D list_options list_id race title Hmong
4062 UPDATE `list_options` SET `notes` = '2037-0' WHERE `title` = 'Hmong' AND `list_id` = 'race';
4063 #EndIf
4065 #IfNotRow2Dx2 list_options list_id race option_id ho-chunk title Ho-chunk
4066 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ho-chunk','Ho-chunk','3080', '0',' 1697-2', 0);
4067 #EndIf
4069 #IfRow2D list_options list_id race option_id ho-chunk
4070 UPDATE `list_options` SET `notes` = '1697-2' WHERE `option_id` = 'ho-chunk' AND `list_id` = 'race';
4071 #EndIf
4073 #IfRow2D list_options list_id race title Ho-chunk
4074 UPDATE `list_options` SET `notes` = '1697-2' WHERE `title` = 'Ho-chunk' AND `list_id` = 'race';
4075 #EndIf
4077 #IfNotRow2Dx2 list_options list_id race option_id hoh title Hoh
4078 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hoh','Hoh','3090', '0',' 1083-5', 0);
4079 #EndIf
4081 #IfRow2D list_options list_id race option_id hoh
4082 UPDATE `list_options` SET `notes` = '1083-5' WHERE `option_id` = 'hoh' AND `list_id` = 'race';
4083 #EndIf
4085 #IfRow2D list_options list_id race title Hoh
4086 UPDATE `list_options` SET `notes` = '1083-5' WHERE `title` = 'Hoh' AND `list_id` = 'race';
4087 #EndIf
4089 #IfNotRow2Dx2 list_options list_id race option_id hollywood_seminole title Hollywood Seminole
4090 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hollywood_seminole','Hollywood Seminole','3100', '0',' 1570-1', 0);
4091 #EndIf
4093 #IfRow2D list_options list_id race option_id hollywood_seminole
4094 UPDATE `list_options` SET `notes` = '1570-1' WHERE `option_id` = 'hollywood_seminole' AND `list_id` = 'race';
4095 #EndIf
4097 #IfRow2D list_options list_id race title Hollywood Seminole
4098 UPDATE `list_options` SET `notes` = '1570-1' WHERE `title` = 'Hollywood Seminole' AND `list_id` = 'race';
4099 #EndIf
4101 #IfNotRow2Dx2 list_options list_id race option_id holy_cross title Holy Cross
4102 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','holy_cross','Holy Cross','3110', '0',' 1769-9', 0);
4103 #EndIf
4105 #IfRow2D list_options list_id race option_id holy_cross
4106 UPDATE `list_options` SET `notes` = '1769-9' WHERE `option_id` = 'holy_cross' AND `list_id` = 'race';
4107 #EndIf
4109 #IfRow2D list_options list_id race title Holy Cross
4110 UPDATE `list_options` SET `notes` = '1769-9' WHERE `title` = 'Holy Cross' AND `list_id` = 'race';
4111 #EndIf
4113 #IfNotRow2Dx2 list_options list_id race option_id hoonah title Hoonah
4114 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hoonah','Hoonah','3120', '0',' 1821-8', 0);
4115 #EndIf
4117 #IfRow2D list_options list_id race option_id hoonah
4118 UPDATE `list_options` SET `notes` = '1821-8' WHERE `option_id` = 'hoonah' AND `list_id` = 'race';
4119 #EndIf
4121 #IfRow2D list_options list_id race title Hoonah
4122 UPDATE `list_options` SET `notes` = '1821-8' WHERE `title` = 'Hoonah' AND `list_id` = 'race';
4123 #EndIf
4125 #IfNotRow2Dx2 list_options list_id race option_id hoopa title Hoopa
4126 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hoopa','Hoopa','3130', '0',' 1271-6', 0);
4127 #EndIf
4129 #IfRow2D list_options list_id race option_id hoopa
4130 UPDATE `list_options` SET `notes` = '1271-6' WHERE `option_id` = 'hoopa' AND `list_id` = 'race';
4131 #EndIf
4133 #IfRow2D list_options list_id race title Hoopa
4134 UPDATE `list_options` SET `notes` = '1271-6' WHERE `title` = 'Hoopa' AND `list_id` = 'race';
4135 #EndIf
4137 #IfNotRow2Dx2 list_options list_id race option_id hoopa_extension title Hoopa Extension
4138 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hoopa_extension','Hoopa Extension','3140', '0',' 1275-7', 0);
4139 #EndIf
4141 #IfRow2D list_options list_id race option_id hoopa_extension
4142 UPDATE `list_options` SET `notes` = '1275-7' WHERE `option_id` = 'hoopa_extension' AND `list_id` = 'race';
4143 #EndIf
4145 #IfRow2D list_options list_id race title Hoopa Extension
4146 UPDATE `list_options` SET `notes` = '1275-7' WHERE `title` = 'Hoopa Extension' AND `list_id` = 'race';
4147 #EndIf
4149 #IfNotRow2Dx2 list_options list_id race option_id hooper_bay title Hooper Bay
4150 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hooper_bay','Hooper Bay','3150', '0',' 1919-0', 0);
4151 #EndIf
4153 #IfRow2D list_options list_id race option_id hooper_bay
4154 UPDATE `list_options` SET `notes` = '1919-0' WHERE `option_id` = 'hooper_bay' AND `list_id` = 'race';
4155 #EndIf
4157 #IfRow2D list_options list_id race title Hooper Bay
4158 UPDATE `list_options` SET `notes` = '1919-0' WHERE `title` = 'Hooper Bay' AND `list_id` = 'race';
4159 #EndIf
4161 #IfNotRow2Dx2 list_options list_id race option_id hopi title Hopi
4162 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hopi','Hopi','3160', '0',' 1493-6', 0);
4163 #EndIf
4165 #IfRow2D list_options list_id race option_id hopi
4166 UPDATE `list_options` SET `notes` = '1493-6' WHERE `option_id` = 'hopi' AND `list_id` = 'race';
4167 #EndIf
4169 #IfRow2D list_options list_id race title Hopi
4170 UPDATE `list_options` SET `notes` = '1493-6' WHERE `title` = 'Hopi' AND `list_id` = 'race';
4171 #EndIf
4173 #IfNotRow2Dx2 list_options list_id race option_id houma title Houma
4174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','houma','Houma','3170', '0',' 1277-3', 0);
4175 #EndIf
4177 #IfRow2D list_options list_id race option_id houma
4178 UPDATE `list_options` SET `notes` = '1277-3' WHERE `option_id` = 'houma' AND `list_id` = 'race';
4179 #EndIf
4181 #IfRow2D list_options list_id race title Houma
4182 UPDATE `list_options` SET `notes` = '1277-3' WHERE `title` = 'Houma' AND `list_id` = 'race';
4183 #EndIf
4185 #IfNotRow2Dx2 list_options list_id race option_id hualapai title Hualapai
4186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hualapai','Hualapai','3180', '0',' 1727-7', 0);
4187 #EndIf
4189 #IfRow2D list_options list_id race option_id hualapai
4190 UPDATE `list_options` SET `notes` = '1727-7' WHERE `option_id` = 'hualapai' AND `list_id` = 'race';
4191 #EndIf
4193 #IfRow2D list_options list_id race title Hualapai
4194 UPDATE `list_options` SET `notes` = '1727-7' WHERE `title` = 'Hualapai' AND `list_id` = 'race';
4195 #EndIf
4197 #IfNotRow2Dx2 list_options list_id race option_id hughes title Hughes
4198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hughes','Hughes','3190', '0',' 1770-7', 0);
4199 #EndIf
4201 #IfRow2D list_options list_id race option_id hughes
4202 UPDATE `list_options` SET `notes` = '1770-7' WHERE `option_id` = 'hughes' AND `list_id` = 'race';
4203 #EndIf
4205 #IfRow2D list_options list_id race title Hughes
4206 UPDATE `list_options` SET `notes` = '1770-7' WHERE `title` = 'Hughes' AND `list_id` = 'race';
4207 #EndIf
4209 #IfNotRow2Dx2 list_options list_id race option_id huron_potawatomi title Huron Potawatomi
4210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','huron_potawatomi','Huron Potawatomi','3200', '0',' 1482-9', 0);
4211 #EndIf
4213 #IfRow2D list_options list_id race option_id huron_potawatomi
4214 UPDATE `list_options` SET `notes` = '1482-9' WHERE `option_id` = 'huron_potawatomi' AND `list_id` = 'race';
4215 #EndIf
4217 #IfRow2D list_options list_id race title Huron Potawatomi
4218 UPDATE `list_options` SET `notes` = '1482-9' WHERE `title` = 'Huron Potawatomi' AND `list_id` = 'race';
4219 #EndIf
4221 #IfNotRow2Dx2 list_options list_id race option_id huslia title Huslia
4222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','huslia','Huslia','3210', '0',' 1771-5', 0);
4223 #EndIf
4225 #IfRow2D list_options list_id race option_id huslia
4226 UPDATE `list_options` SET `notes` = '1771-5' WHERE `option_id` = 'huslia' AND `list_id` = 'race';
4227 #EndIf
4229 #IfRow2D list_options list_id race title Huslia
4230 UPDATE `list_options` SET `notes` = '1771-5' WHERE `title` = 'Huslia' AND `list_id` = 'race';
4231 #EndIf
4233 #IfNotRow2Dx2 list_options list_id race option_id hydaburg title Hydaburg
4234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','hydaburg','Hydaburg','3220', '0',' 1822-6', 0);
4235 #EndIf
4237 #IfRow2D list_options list_id race option_id hydaburg
4238 UPDATE `list_options` SET `notes` = '1822-6' WHERE `option_id` = 'hydaburg' AND `list_id` = 'race';
4239 #EndIf
4241 #IfRow2D list_options list_id race title Hydaburg
4242 UPDATE `list_options` SET `notes` = '1822-6' WHERE `title` = 'Hydaburg' AND `list_id` = 'race';
4243 #EndIf
4245 #IfNotRow2Dx2 list_options list_id race option_id igiugig title Igiugig
4246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','igiugig','Igiugig','3230', '0',' 1976-0', 0);
4247 #EndIf
4249 #IfRow2D list_options list_id race option_id igiugig
4250 UPDATE `list_options` SET `notes` = '1976-0' WHERE `option_id` = 'igiugig' AND `list_id` = 'race';
4251 #EndIf
4253 #IfRow2D list_options list_id race title Igiugig
4254 UPDATE `list_options` SET `notes` = '1976-0' WHERE `title` = 'Igiugig' AND `list_id` = 'race';
4255 #EndIf
4257 #IfNotRow2Dx2 list_options list_id race option_id iliamna title Iliamna
4258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iliamna','Iliamna','3240', '0',' 1772-3', 0);
4259 #EndIf
4261 #IfRow2D list_options list_id race option_id iliamna
4262 UPDATE `list_options` SET `notes` = '1772-3' WHERE `option_id` = 'iliamna' AND `list_id` = 'race';
4263 #EndIf
4265 #IfRow2D list_options list_id race title Iliamna
4266 UPDATE `list_options` SET `notes` = '1772-3' WHERE `title` = 'Iliamna' AND `list_id` = 'race';
4267 #EndIf
4269 #IfNotRow2Dx2 list_options list_id race option_id illinois_miami title Illinois Miami
4270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','illinois_miami','Illinois Miami','3250', '0',' 1359-9', 0);
4271 #EndIf
4273 #IfRow2D list_options list_id race option_id illinois_miami
4274 UPDATE `list_options` SET `notes` = '1359-9' WHERE `option_id` = 'illinois_miami' AND `list_id` = 'race';
4275 #EndIf
4277 #IfRow2D list_options list_id race title Illinois Miami
4278 UPDATE `list_options` SET `notes` = '1359-9' WHERE `title` = 'Illinois Miami' AND `list_id` = 'race';
4279 #EndIf
4281 #IfNotRow2Dx2 list_options list_id race option_id inaja-cosmit title Inaja-Cosmit
4282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','inaja-cosmit','Inaja-Cosmit','3260', '0',' 1279-9', 0);
4283 #EndIf
4285 #IfRow2D list_options list_id race option_id inaja-cosmit
4286 UPDATE `list_options` SET `notes` = '1279-9' WHERE `option_id` = 'inaja-cosmit' AND `list_id` = 'race';
4287 #EndIf
4289 #IfRow2D list_options list_id race title Inaja-Cosmit
4290 UPDATE `list_options` SET `notes` = '1279-9' WHERE `title` = 'Inaja-Cosmit' AND `list_id` = 'race';
4291 #EndIf
4293 #IfNotRow2Dx2 list_options list_id race option_id inalik_diomede title Inalik Diomede
4294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','inalik_diomede','Inalik Diomede','3270', '0',' 1860-6', 0);
4295 #EndIf
4297 #IfRow2D list_options list_id race option_id inalik_diomede
4298 UPDATE `list_options` SET `notes` = '1860-6' WHERE `option_id` = 'inalik_diomede' AND `list_id` = 'race';
4299 #EndIf
4301 #IfRow2D list_options list_id race title Inalik Diomede
4302 UPDATE `list_options` SET `notes` = '1860-6' WHERE `title` = 'Inalik Diomede' AND `list_id` = 'race';
4303 #EndIf
4305 #IfNotRow2Dx2 list_options list_id race option_id indian_township title Indian Township
4306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','indian_township','Indian Township','3280', '0',' 1442-3', 0);
4307 #EndIf
4309 #IfRow2D list_options list_id race option_id indian_township
4310 UPDATE `list_options` SET `notes` = '1442-3' WHERE `option_id` = 'indian_township' AND `list_id` = 'race';
4311 #EndIf
4313 #IfRow2D list_options list_id race title Indian Township
4314 UPDATE `list_options` SET `notes` = '1442-3' WHERE `title` = 'Indian Township' AND `list_id` = 'race';
4315 #EndIf
4317 #IfNotRow2Dx2 list_options list_id race option_id indiana_miami title Indiana Miami
4318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','indiana_miami','Indiana Miami','3290', '0',' 1360-7', 0);
4319 #EndIf
4321 #IfRow2D list_options list_id race option_id indiana_miami
4322 UPDATE `list_options` SET `notes` = '1360-7' WHERE `option_id` = 'indiana_miami' AND `list_id` = 'race';
4323 #EndIf
4325 #IfRow2D list_options list_id race title Indiana Miami
4326 UPDATE `list_options` SET `notes` = '1360-7' WHERE `title` = 'Indiana Miami' AND `list_id` = 'race';
4327 #EndIf
4329 #IfNotRow2Dx2 list_options list_id race option_id indonesian title Indonesian
4330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','indonesian','Indonesian','3300', '0',' 2038-8', 0);
4331 #EndIf
4333 #IfRow2D list_options list_id race option_id indonesian
4334 UPDATE `list_options` SET `notes` = '2038-8' WHERE `option_id` = 'indonesian' AND `list_id` = 'race';
4335 #EndIf
4337 #IfRow2D list_options list_id race title Indonesian
4338 UPDATE `list_options` SET `notes` = '2038-8' WHERE `title` = 'Indonesian' AND `list_id` = 'race';
4339 #EndIf
4341 #IfNotRow2Dx2 list_options list_id race option_id inupiaq title Inupiaq
4342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','inupiaq','Inupiaq','3310', '0',' 1861-4', 0);
4343 #EndIf
4345 #IfRow2D list_options list_id race option_id inupiaq
4346 UPDATE `list_options` SET `notes` = '1861-4' WHERE `option_id` = 'inupiaq' AND `list_id` = 'race';
4347 #EndIf
4349 #IfRow2D list_options list_id race title Inupiaq
4350 UPDATE `list_options` SET `notes` = '1861-4' WHERE `title` = 'Inupiaq' AND `list_id` = 'race';
4351 #EndIf
4353 #IfNotRow2Dx2 list_options list_id race option_id inupiat_eskimo title Inupiat Eskimo
4354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','inupiat_eskimo','Inupiat Eskimo','3320', '0',' 1844-0', 0);
4355 #EndIf
4357 #IfRow2D list_options list_id race option_id inupiat_eskimo
4358 UPDATE `list_options` SET `notes` = '1844-0' WHERE `option_id` = 'inupiat_eskimo' AND `list_id` = 'race';
4359 #EndIf
4361 #IfRow2D list_options list_id race title Inupiat Eskimo
4362 UPDATE `list_options` SET `notes` = '1844-0' WHERE `title` = 'Inupiat Eskimo' AND `list_id` = 'race';
4363 #EndIf
4365 #IfNotRow2Dx2 list_options list_id race option_id iowa title Iowa
4366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iowa','Iowa','3330', '0',' 1281-5', 0);
4367 #EndIf
4369 #IfRow2D list_options list_id race option_id iowa
4370 UPDATE `list_options` SET `notes` = '1281-5' WHERE `option_id` = 'iowa' AND `list_id` = 'race';
4371 #EndIf
4373 #IfRow2D list_options list_id race title Iowa
4374 UPDATE `list_options` SET `notes` = '1281-5' WHERE `title` = 'Iowa' AND `list_id` = 'race';
4375 #EndIf
4377 #IfNotRow2Dx2 list_options list_id race option_id iowa_of_kansas-nebraska title Iowa of Kansas-Nebraska
4378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iowa_of_kansas-nebraska','Iowa of Kansas-Nebraska','3340', '0',' 1282-3', 0);
4379 #EndIf
4381 #IfRow2D list_options list_id race option_id iowa_of_kansas-nebraska
4382 UPDATE `list_options` SET `notes` = '1282-3' WHERE `option_id` = 'iowa_of_kansas-nebraska' AND `list_id` = 'race';
4383 #EndIf
4385 #IfRow2D list_options list_id race title Iowa of Kansas-Nebraska
4386 UPDATE `list_options` SET `notes` = '1282-3' WHERE `title` = 'Iowa of Kansas-Nebraska' AND `list_id` = 'race';
4387 #EndIf
4389 #IfNotRow2Dx2 list_options list_id race option_id iowa_of_oklahoma title Iowa of Oklahoma
4390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iowa_of_oklahoma','Iowa of Oklahoma','3350', '0',' 1283-1', 0);
4391 #EndIf
4393 #IfRow2D list_options list_id race option_id iowa_of_oklahoma
4394 UPDATE `list_options` SET `notes` = '1283-1' WHERE `option_id` = 'iowa_of_oklahoma' AND `list_id` = 'race';
4395 #EndIf
4397 #IfRow2D list_options list_id race title Iowa of Oklahoma
4398 UPDATE `list_options` SET `notes` = '1283-1' WHERE `title` = 'Iowa of Oklahoma' AND `list_id` = 'race';
4399 #EndIf
4401 #IfNotRow2Dx2 list_options list_id race option_id iowa_sac_and_fox title Iowa Sac and Fox
4402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iowa_sac_and_fox','Iowa Sac and Fox','3360', '0',' 1552-9', 0);
4403 #EndIf
4405 #IfRow2D list_options list_id race option_id iowa_sac_and_fox
4406 UPDATE `list_options` SET `notes` = '1552-9' WHERE `option_id` = 'iowa_sac_and_fox' AND `list_id` = 'race';
4407 #EndIf
4409 #IfRow2D list_options list_id race title Iowa Sac and Fox
4410 UPDATE `list_options` SET `notes` = '1552-9' WHERE `title` = 'Iowa Sac and Fox' AND `list_id` = 'race';
4411 #EndIf
4413 #IfNotRow2Dx2 list_options list_id race option_id iqurmuit_russian_mission title Iqurmuit (Russian Mission)
4414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iqurmuit_russian_mission','Iqurmuit (Russian Mission)','3370', '0',' 1920-8', 0);
4415 #EndIf
4417 #IfRow2D list_options list_id race option_id iqurmuit_russian_mission
4418 UPDATE `list_options` SET `notes` = '1920-8' WHERE `option_id` = 'iqurmuit_russian_mission' AND `list_id` = 'race';
4419 #EndIf
4421 #IfRow2D list_options list_id race title Iqurmuit (Russian Mission)
4422 UPDATE `list_options` SET `notes` = '1920-8' WHERE `title` = 'Iqurmuit (Russian Mission)' AND `list_id` = 'race';
4423 #EndIf
4425 #IfNotRow2Dx2 list_options list_id race option_id iranian title Iranian
4426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iranian','Iranian','3380', '0',' 2121-2', 0);
4427 #EndIf
4429 #IfRow2D list_options list_id race option_id iranian
4430 UPDATE `list_options` SET `notes` = '2121-2' WHERE `option_id` = 'iranian' AND `list_id` = 'race';
4431 #EndIf
4433 #IfRow2D list_options list_id race title Iranian
4434 UPDATE `list_options` SET `notes` = '2121-2' WHERE `title` = 'Iranian' AND `list_id` = 'race';
4435 #EndIf
4437 #IfNotRow2Dx2 list_options list_id race option_id iraqi title Iraqi
4438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iraqi','Iraqi','3390', '0',' 2122-0', 0);
4439 #EndIf
4441 #IfRow2D list_options list_id race option_id iraqi
4442 UPDATE `list_options` SET `notes` = '2122-0' WHERE `option_id` = 'iraqi' AND `list_id` = 'race';
4443 #EndIf
4445 #IfRow2D list_options list_id race title Iraqi
4446 UPDATE `list_options` SET `notes` = '2122-0' WHERE `title` = 'Iraqi' AND `list_id` = 'race';
4447 #EndIf
4449 #IfNotRow2Dx2 list_options list_id race option_id irish title Irish
4450 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','irish','Irish','3400', '0',' 2113-9', 0);
4451 #EndIf
4453 #IfRow2D list_options list_id race option_id irish
4454 UPDATE `list_options` SET `notes` = '2113-9' WHERE `option_id` = 'irish' AND `list_id` = 'race';
4455 #EndIf
4457 #IfRow2D list_options list_id race title Irish
4458 UPDATE `list_options` SET `notes` = '2113-9' WHERE `title` = 'Irish' AND `list_id` = 'race';
4459 #EndIf
4461 #IfNotRow2Dx2 list_options list_id race option_id iroquois title Iroquois
4462 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iroquois','Iroquois','3410', '0',' 1285-6', 0);
4463 #EndIf
4465 #IfRow2D list_options list_id race option_id iroquois
4466 UPDATE `list_options` SET `notes` = '1285-6' WHERE `option_id` = 'iroquois' AND `list_id` = 'race';
4467 #EndIf
4469 #IfRow2D list_options list_id race title Iroquois
4470 UPDATE `list_options` SET `notes` = '1285-6' WHERE `title` = 'Iroquois' AND `list_id` = 'race';
4471 #EndIf
4473 #IfNotRow2Dx2 list_options list_id race option_id isleta title Isleta
4474 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','isleta','Isleta','3420', '0',' 1494-4', 0);
4475 #EndIf
4477 #IfRow2D list_options list_id race option_id isleta
4478 UPDATE `list_options` SET `notes` = '1494-4' WHERE `option_id` = 'isleta' AND `list_id` = 'race';
4479 #EndIf
4481 #IfRow2D list_options list_id race title Isleta
4482 UPDATE `list_options` SET `notes` = '1494-4' WHERE `title` = 'Isleta' AND `list_id` = 'race';
4483 #EndIf
4485 #IfNotRow2Dx2 list_options list_id race option_id israeili title Israeili
4486 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','israeili','Israeili','3430', '0',' 2127-9', 0);
4487 #EndIf
4489 #IfRow2D list_options list_id race option_id israeili
4490 UPDATE `list_options` SET `notes` = '2127-9' WHERE `option_id` = 'israeili' AND `list_id` = 'race';
4491 #EndIf
4493 #IfRow2D list_options list_id race title Israeili
4494 UPDATE `list_options` SET `notes` = '2127-9' WHERE `title` = 'Israeili' AND `list_id` = 'race';
4495 #EndIf
4497 #IfNotRow2Dx2 list_options list_id race option_id italian title Italian
4498 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','italian','Italian','3440', '0',' 2114-7', 0);
4499 #EndIf
4501 #IfRow2D list_options list_id race option_id italian
4502 UPDATE `list_options` SET `notes` = '2114-7' WHERE `option_id` = 'italian' AND `list_id` = 'race';
4503 #EndIf
4505 #IfRow2D list_options list_id race title Italian
4506 UPDATE `list_options` SET `notes` = '2114-7' WHERE `title` = 'Italian' AND `list_id` = 'race';
4507 #EndIf
4509 #IfNotRow2Dx2 list_options list_id race option_id ivanof_bay title Ivanof Bay
4510 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ivanof_bay','Ivanof Bay','3450', '0',' 1977-8', 0);
4511 #EndIf
4513 #IfRow2D list_options list_id race option_id ivanof_bay
4514 UPDATE `list_options` SET `notes` = '1977-8' WHERE `option_id` = 'ivanof_bay' AND `list_id` = 'race';
4515 #EndIf
4517 #IfRow2D list_options list_id race title Ivanof Bay
4518 UPDATE `list_options` SET `notes` = '1977-8' WHERE `title` = 'Ivanof Bay' AND `list_id` = 'race';
4519 #EndIf
4521 #IfNotRow2Dx2 list_options list_id race option_id iwo_jiman title Iwo Jiman
4522 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','iwo_jiman','Iwo Jiman','3460', '0',' 2048-7', 0);
4523 #EndIf
4525 #IfRow2D list_options list_id race option_id iwo_jiman
4526 UPDATE `list_options` SET `notes` = '2048-7' WHERE `option_id` = 'iwo_jiman' AND `list_id` = 'race';
4527 #EndIf
4529 #IfRow2D list_options list_id race title Iwo Jiman
4530 UPDATE `list_options` SET `notes` = '2048-7' WHERE `title` = 'Iwo Jiman' AND `list_id` = 'race';
4531 #EndIf
4533 #IfNotRow2Dx2 list_options list_id race option_id jamaican title Jamaican
4534 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jamaican','Jamaican','3470', '0',' 2072-7', 0);
4535 #EndIf
4537 #IfRow2D list_options list_id race option_id jamaican
4538 UPDATE `list_options` SET `notes` = '2072-7' WHERE `option_id` = 'jamaican' AND `list_id` = 'race';
4539 #EndIf
4541 #IfRow2D list_options list_id race title Jamaican
4542 UPDATE `list_options` SET `notes` = '2072-7' WHERE `title` = 'Jamaican' AND `list_id` = 'race';
4543 #EndIf
4545 #IfNotRow2Dx2 list_options list_id race option_id jamestown title Jamestown
4546 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jamestown','Jamestown','3480', '0',' 1313-6', 0);
4547 #EndIf
4549 #IfRow2D list_options list_id race option_id jamestown
4550 UPDATE `list_options` SET `notes` = '1313-6' WHERE `option_id` = 'jamestown' AND `list_id` = 'race';
4551 #EndIf
4553 #IfRow2D list_options list_id race title Jamestown
4554 UPDATE `list_options` SET `notes` = '1313-6' WHERE `title` = 'Jamestown' AND `list_id` = 'race';
4555 #EndIf
4557 #IfNotRow2Dx2 list_options list_id race option_id japanese title Japanese
4558 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','japanese','Japanese','3490', '0',' 2039-6', 0);
4559 #EndIf
4561 #IfRow2D list_options list_id race option_id japanese
4562 UPDATE `list_options` SET `notes` = '2039-6' WHERE `option_id` = 'japanese' AND `list_id` = 'race';
4563 #EndIf
4565 #IfRow2D list_options list_id race title Japanese
4566 UPDATE `list_options` SET `notes` = '2039-6' WHERE `title` = 'Japanese' AND `list_id` = 'race';
4567 #EndIf
4569 #IfNotRow2Dx2 list_options list_id race option_id jemez title Jemez
4570 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jemez','Jemez','3500', '0',' 1495-1', 0);
4571 #EndIf
4573 #IfRow2D list_options list_id race option_id jemez
4574 UPDATE `list_options` SET `notes` = '1495-1' WHERE `option_id` = 'jemez' AND `list_id` = 'race';
4575 #EndIf
4577 #IfRow2D list_options list_id race title Jemez
4578 UPDATE `list_options` SET `notes` = '1495-1' WHERE `title` = 'Jemez' AND `list_id` = 'race';
4579 #EndIf
4581 #IfNotRow2Dx2 list_options list_id race option_id jena_choctaw title Jena Choctaw
4582 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jena_choctaw','Jena Choctaw','3510', '0',' 1157-7', 0);
4583 #EndIf
4585 #IfRow2D list_options list_id race option_id jena_choctaw
4586 UPDATE `list_options` SET `notes` = '1157-7' WHERE `option_id` = 'jena_choctaw' AND `list_id` = 'race';
4587 #EndIf
4589 #IfRow2D list_options list_id race title Jena Choctaw
4590 UPDATE `list_options` SET `notes` = '1157-7' WHERE `title` = 'Jena Choctaw' AND `list_id` = 'race';
4591 #EndIf
4593 #IfNotRow2Dx2 list_options list_id race option_id jicarilla_apache title Jicarilla Apache
4594 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','jicarilla_apache','Jicarilla Apache','3520', '0',' 1013-2', 0);
4595 #EndIf
4597 #IfRow2D list_options list_id race option_id jicarilla_apache
4598 UPDATE `list_options` SET `notes` = '1013-2' WHERE `option_id` = 'jicarilla_apache' AND `list_id` = 'race';
4599 #EndIf
4601 #IfRow2D list_options list_id race title Jicarilla Apache
4602 UPDATE `list_options` SET `notes` = '1013-2' WHERE `title` = 'Jicarilla Apache' AND `list_id` = 'race';
4603 #EndIf
4605 #IfNotRow2Dx2 list_options list_id race option_id juaneno title Juaneno
4606 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','juaneno','Juaneno','3530', '0',' 1297-1', 0);
4607 #EndIf
4609 #IfRow2D list_options list_id race option_id juaneno
4610 UPDATE `list_options` SET `notes` = '1297-1' WHERE `option_id` = 'juaneno' AND `list_id` = 'race';
4611 #EndIf
4613 #IfRow2D list_options list_id race title Juaneno
4614 UPDATE `list_options` SET `notes` = '1297-1' WHERE `title` = 'Juaneno' AND `list_id` = 'race';
4615 #EndIf
4617 #IfNotRow2Dx2 list_options list_id race option_id kaibab title Kaibab
4618 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kaibab','Kaibab','3540', '0',' 1423-3', 0);
4619 #EndIf
4621 #IfRow2D list_options list_id race option_id kaibab
4622 UPDATE `list_options` SET `notes` = '1423-3' WHERE `option_id` = 'kaibab' AND `list_id` = 'race';
4623 #EndIf
4625 #IfRow2D list_options list_id race title Kaibab
4626 UPDATE `list_options` SET `notes` = '1423-3' WHERE `title` = 'Kaibab' AND `list_id` = 'race';
4627 #EndIf
4629 #IfNotRow2Dx2 list_options list_id race option_id kake title Kake
4630 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kake','Kake','3550', '0',' 1823-4', 0);
4631 #EndIf
4633 #IfRow2D list_options list_id race option_id kake
4634 UPDATE `list_options` SET `notes` = '1823-4' WHERE `option_id` = 'kake' AND `list_id` = 'race';
4635 #EndIf
4637 #IfRow2D list_options list_id race title Kake
4638 UPDATE `list_options` SET `notes` = '1823-4' WHERE `title` = 'Kake' AND `list_id` = 'race';
4639 #EndIf
4641 #IfNotRow2Dx2 list_options list_id race option_id kaktovik title Kaktovik
4642 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kaktovik','Kaktovik','3560', '0',' 1862-2', 0);
4643 #EndIf
4645 #IfRow2D list_options list_id race option_id kaktovik
4646 UPDATE `list_options` SET `notes` = '1862-2' WHERE `option_id` = 'kaktovik' AND `list_id` = 'race';
4647 #EndIf
4649 #IfRow2D list_options list_id race title Kaktovik
4650 UPDATE `list_options` SET `notes` = '1862-2' WHERE `title` = 'Kaktovik' AND `list_id` = 'race';
4651 #EndIf
4653 #IfNotRow2Dx2 list_options list_id race option_id kalapuya title Kalapuya
4654 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kalapuya','Kalapuya','3570', '0',' 1395-3', 0);
4655 #EndIf
4657 #IfRow2D list_options list_id race option_id kalapuya
4658 UPDATE `list_options` SET `notes` = '1395-3' WHERE `option_id` = 'kalapuya' AND `list_id` = 'race';
4659 #EndIf
4661 #IfRow2D list_options list_id race title Kalapuya
4662 UPDATE `list_options` SET `notes` = '1395-3' WHERE `title` = 'Kalapuya' AND `list_id` = 'race';
4663 #EndIf
4665 #IfNotRow2Dx2 list_options list_id race option_id kalispel title Kalispel
4666 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kalispel','Kalispel','3580', '0',' 1299-7', 0);
4667 #EndIf
4669 #IfRow2D list_options list_id race option_id kalispel
4670 UPDATE `list_options` SET `notes` = '1299-7' WHERE `option_id` = 'kalispel' AND `list_id` = 'race';
4671 #EndIf
4673 #IfRow2D list_options list_id race title Kalispel
4674 UPDATE `list_options` SET `notes` = '1299-7' WHERE `title` = 'Kalispel' AND `list_id` = 'race';
4675 #EndIf
4677 #IfNotRow2Dx2 list_options list_id race option_id kalskag title Kalskag
4678 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kalskag','Kalskag','3590', '0',' 1921-6', 0);
4679 #EndIf
4681 #IfRow2D list_options list_id race option_id kalskag
4682 UPDATE `list_options` SET `notes` = '1921-6' WHERE `option_id` = 'kalskag' AND `list_id` = 'race';
4683 #EndIf
4685 #IfRow2D list_options list_id race title Kalskag
4686 UPDATE `list_options` SET `notes` = '1921-6' WHERE `title` = 'Kalskag' AND `list_id` = 'race';
4687 #EndIf
4689 #IfNotRow2Dx2 list_options list_id race option_id kaltag title Kaltag
4690 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kaltag','Kaltag','3600', '0',' 1773-1', 0);
4691 #EndIf
4693 #IfRow2D list_options list_id race option_id kaltag
4694 UPDATE `list_options` SET `notes` = '1773-1' WHERE `option_id` = 'kaltag' AND `list_id` = 'race';
4695 #EndIf
4697 #IfRow2D list_options list_id race title Kaltag
4698 UPDATE `list_options` SET `notes` = '1773-1' WHERE `title` = 'Kaltag' AND `list_id` = 'race';
4699 #EndIf
4701 #IfNotRow2Dx2 list_options list_id race option_id karluk title Karluk
4702 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','karluk','Karluk','3610', '0',' 1995-0', 0);
4703 #EndIf
4705 #IfRow2D list_options list_id race option_id karluk
4706 UPDATE `list_options` SET `notes` = '1995-0' WHERE `option_id` = 'karluk' AND `list_id` = 'race';
4707 #EndIf
4709 #IfRow2D list_options list_id race title Karluk
4710 UPDATE `list_options` SET `notes` = '1995-0' WHERE `title` = 'Karluk' AND `list_id` = 'race';
4711 #EndIf
4713 #IfNotRow2Dx2 list_options list_id race option_id karuk title Karuk
4714 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','karuk','Karuk','3620', '0',' 1301-1', 0);
4715 #EndIf
4717 #IfRow2D list_options list_id race option_id karuk
4718 UPDATE `list_options` SET `notes` = '1301-1' WHERE `option_id` = 'karuk' AND `list_id` = 'race';
4719 #EndIf
4721 #IfRow2D list_options list_id race title Karuk
4722 UPDATE `list_options` SET `notes` = '1301-1' WHERE `title` = 'Karuk' AND `list_id` = 'race';
4723 #EndIf
4725 #IfNotRow2Dx2 list_options list_id race option_id kasaan title Kasaan
4726 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kasaan','Kasaan','3630', '0',' 1824-2', 0);
4727 #EndIf
4729 #IfRow2D list_options list_id race option_id kasaan
4730 UPDATE `list_options` SET `notes` = '1824-2' WHERE `option_id` = 'kasaan' AND `list_id` = 'race';
4731 #EndIf
4733 #IfRow2D list_options list_id race title Kasaan
4734 UPDATE `list_options` SET `notes` = '1824-2' WHERE `title` = 'Kasaan' AND `list_id` = 'race';
4735 #EndIf
4737 #IfNotRow2Dx2 list_options list_id race option_id kashia title Kashia
4738 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kashia','Kashia','3640', '0',' 1468-8', 0);
4739 #EndIf
4741 #IfRow2D list_options list_id race option_id kashia
4742 UPDATE `list_options` SET `notes` = '1468-8' WHERE `option_id` = 'kashia' AND `list_id` = 'race';
4743 #EndIf
4745 #IfRow2D list_options list_id race title Kashia
4746 UPDATE `list_options` SET `notes` = '1468-8' WHERE `title` = 'Kashia' AND `list_id` = 'race';
4747 #EndIf
4749 #IfNotRow2Dx2 list_options list_id race option_id kasigluk title Kasigluk
4750 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kasigluk','Kasigluk','3650', '0',' 1922-4', 0);
4751 #EndIf
4753 #IfRow2D list_options list_id race option_id kasigluk
4754 UPDATE `list_options` SET `notes` = '1922-4' WHERE `option_id` = 'kasigluk' AND `list_id` = 'race';
4755 #EndIf
4757 #IfRow2D list_options list_id race title Kasigluk
4758 UPDATE `list_options` SET `notes` = '1922-4' WHERE `title` = 'Kasigluk' AND `list_id` = 'race';
4759 #EndIf
4761 #IfNotRow2Dx2 list_options list_id race option_id kathlamet title Kathlamet
4762 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kathlamet','Kathlamet','3660', '0',' 1117-1', 0);
4763 #EndIf
4765 #IfRow2D list_options list_id race option_id kathlamet
4766 UPDATE `list_options` SET `notes` = '1117-1' WHERE `option_id` = 'kathlamet' AND `list_id` = 'race';
4767 #EndIf
4769 #IfRow2D list_options list_id race title Kathlamet
4770 UPDATE `list_options` SET `notes` = '1117-1' WHERE `title` = 'Kathlamet' AND `list_id` = 'race';
4771 #EndIf
4773 #IfNotRow2Dx2 list_options list_id race option_id kaw title Kaw
4774 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kaw','Kaw','3670', '0',' 1303-7', 0);
4775 #EndIf
4777 #IfRow2D list_options list_id race option_id kaw
4778 UPDATE `list_options` SET `notes` = '1303-7' WHERE `option_id` = 'kaw' AND `list_id` = 'race';
4779 #EndIf
4781 #IfRow2D list_options list_id race title Kaw
4782 UPDATE `list_options` SET `notes` = '1303-7' WHERE `title` = 'Kaw' AND `list_id` = 'race';
4783 #EndIf
4785 #IfNotRow2Dx2 list_options list_id race option_id kawaiisu title Kawaiisu
4786 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kawaiisu','Kawaiisu','3680', '0',' 1058-7', 0);
4787 #EndIf
4789 #IfRow2D list_options list_id race option_id kawaiisu
4790 UPDATE `list_options` SET `notes` = '1058-7' WHERE `option_id` = 'kawaiisu' AND `list_id` = 'race';
4791 #EndIf
4793 #IfRow2D list_options list_id race title Kawaiisu
4794 UPDATE `list_options` SET `notes` = '1058-7' WHERE `title` = 'Kawaiisu' AND `list_id` = 'race';
4795 #EndIf
4797 #IfNotRow2Dx2 list_options list_id race option_id kawerak title Kawerak
4798 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kawerak','Kawerak','3690', '0',' 1863-0', 0);
4799 #EndIf
4801 #IfRow2D list_options list_id race option_id kawerak
4802 UPDATE `list_options` SET `notes` = '1863-0' WHERE `option_id` = 'kawerak' AND `list_id` = 'race';
4803 #EndIf
4805 #IfRow2D list_options list_id race title Kawerak
4806 UPDATE `list_options` SET `notes` = '1863-0' WHERE `title` = 'Kawerak' AND `list_id` = 'race';
4807 #EndIf
4809 #IfNotRow2Dx2 list_options list_id race option_id kenaitze title Kenaitze
4810 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kenaitze','Kenaitze','3700', '0',' 1825-9', 0);
4811 #EndIf
4813 #IfRow2D list_options list_id race option_id kenaitze
4814 UPDATE `list_options` SET `notes` = '1825-9' WHERE `option_id` = 'kenaitze' AND `list_id` = 'race';
4815 #EndIf
4817 #IfRow2D list_options list_id race title Kenaitze
4818 UPDATE `list_options` SET `notes` = '1825-9' WHERE `title` = 'Kenaitze' AND `list_id` = 'race';
4819 #EndIf
4821 #IfNotRow2Dx2 list_options list_id race option_id keres title Keres
4822 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','keres','Keres','3710', '0',' 1496-9', 0);
4823 #EndIf
4825 #IfRow2D list_options list_id race option_id keres
4826 UPDATE `list_options` SET `notes` = '1496-9' WHERE `option_id` = 'keres' AND `list_id` = 'race';
4827 #EndIf
4829 #IfRow2D list_options list_id race title Keres
4830 UPDATE `list_options` SET `notes` = '1496-9' WHERE `title` = 'Keres' AND `list_id` = 'race';
4831 #EndIf
4833 #IfNotRow2Dx2 list_options list_id race option_id kern_river title Kern River
4834 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kern_river','Kern River','3720', '0',' 1059-5', 0);
4835 #EndIf
4837 #IfRow2D list_options list_id race option_id kern_river
4838 UPDATE `list_options` SET `notes` = '1059-5' WHERE `option_id` = 'kern_river' AND `list_id` = 'race';
4839 #EndIf
4841 #IfRow2D list_options list_id race title Kern River
4842 UPDATE `list_options` SET `notes` = '1059-5' WHERE `title` = 'Kern River' AND `list_id` = 'race';
4843 #EndIf
4845 #IfNotRow2Dx2 list_options list_id race option_id ketchikan title Ketchikan
4846 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ketchikan','Ketchikan','3730', '0',' 1826-7', 0);
4847 #EndIf
4849 #IfRow2D list_options list_id race option_id ketchikan
4850 UPDATE `list_options` SET `notes` = '1826-7' WHERE `option_id` = 'ketchikan' AND `list_id` = 'race';
4851 #EndIf
4853 #IfRow2D list_options list_id race title Ketchikan
4854 UPDATE `list_options` SET `notes` = '1826-7' WHERE `title` = 'Ketchikan' AND `list_id` = 'race';
4855 #EndIf
4857 #IfNotRow2Dx2 list_options list_id race option_id keweenaw title Keweenaw
4858 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','keweenaw','Keweenaw','3740', '0',' 1131-2', 0);
4859 #EndIf
4861 #IfRow2D list_options list_id race option_id keweenaw
4862 UPDATE `list_options` SET `notes` = '1131-2' WHERE `option_id` = 'keweenaw' AND `list_id` = 'race';
4863 #EndIf
4865 #IfRow2D list_options list_id race title Keweenaw
4866 UPDATE `list_options` SET `notes` = '1131-2' WHERE `title` = 'Keweenaw' AND `list_id` = 'race';
4867 #EndIf
4869 #IfNotRow2Dx2 list_options list_id race option_id kialegee title Kialegee
4870 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kialegee','Kialegee','3750', '0',' 1198-1', 0);
4871 #EndIf
4873 #IfRow2D list_options list_id race option_id kialegee
4874 UPDATE `list_options` SET `notes` = '1198-1' WHERE `option_id` = 'kialegee' AND `list_id` = 'race';
4875 #EndIf
4877 #IfRow2D list_options list_id race title Kialegee
4878 UPDATE `list_options` SET `notes` = '1198-1' WHERE `title` = 'Kialegee' AND `list_id` = 'race';
4879 #EndIf
4881 #IfNotRow2Dx2 list_options list_id race option_id kiana title Kiana
4882 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kiana','Kiana','3760', '0',' 1864-8', 0);
4883 #EndIf
4885 #IfRow2D list_options list_id race option_id kiana
4886 UPDATE `list_options` SET `notes` = '1864-8' WHERE `option_id` = 'kiana' AND `list_id` = 'race';
4887 #EndIf
4889 #IfRow2D list_options list_id race title Kiana
4890 UPDATE `list_options` SET `notes` = '1864-8' WHERE `title` = 'Kiana' AND `list_id` = 'race';
4891 #EndIf
4893 #IfNotRow2Dx2 list_options list_id race option_id kickapoo title Kickapoo
4894 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kickapoo','Kickapoo','3770', '0',' 1305-2', 0);
4895 #EndIf
4897 #IfRow2D list_options list_id race option_id kickapoo
4898 UPDATE `list_options` SET `notes` = '1305-2' WHERE `option_id` = 'kickapoo' AND `list_id` = 'race';
4899 #EndIf
4901 #IfRow2D list_options list_id race title Kickapoo
4902 UPDATE `list_options` SET `notes` = '1305-2' WHERE `title` = 'Kickapoo' AND `list_id` = 'race';
4903 #EndIf
4905 #IfNotRow2Dx2 list_options list_id race option_id kikiallus title Kikiallus
4906 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kikiallus','Kikiallus','3780', '0',' 1520-6', 0);
4907 #EndIf
4909 #IfRow2D list_options list_id race option_id kikiallus
4910 UPDATE `list_options` SET `notes` = '1520-6' WHERE `option_id` = 'kikiallus' AND `list_id` = 'race';
4911 #EndIf
4913 #IfRow2D list_options list_id race title Kikiallus
4914 UPDATE `list_options` SET `notes` = '1520-6' WHERE `title` = 'Kikiallus' AND `list_id` = 'race';
4915 #EndIf
4917 #IfNotRow2Dx2 list_options list_id race option_id king_cove title King Cove
4918 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','king_cove','King Cove','3790', '0',' 2014-9', 0);
4919 #EndIf
4921 #IfRow2D list_options list_id race option_id king_cove
4922 UPDATE `list_options` SET `notes` = '2014-9' WHERE `option_id` = 'king_cove' AND `list_id` = 'race';
4923 #EndIf
4925 #IfRow2D list_options list_id race title King Cove
4926 UPDATE `list_options` SET `notes` = '2014-9' WHERE `title` = 'King Cove' AND `list_id` = 'race';
4927 #EndIf
4929 #IfNotRow2Dx2 list_options list_id race option_id king_salmon title King Salmon
4930 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','king_salmon','King Salmon','3800', '0',' 1978-6', 0);
4931 #EndIf
4933 #IfRow2D list_options list_id race option_id king_salmon
4934 UPDATE `list_options` SET `notes` = '1978-6' WHERE `option_id` = 'king_salmon' AND `list_id` = 'race';
4935 #EndIf
4937 #IfRow2D list_options list_id race title King Salmon
4938 UPDATE `list_options` SET `notes` = '1978-6' WHERE `title` = 'King Salmon' AND `list_id` = 'race';
4939 #EndIf
4941 #IfNotRow2Dx2 list_options list_id race option_id kiowa title Kiowa
4942 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kiowa','Kiowa','3810', '0',' 1309-4', 0);
4943 #EndIf
4945 #IfRow2D list_options list_id race option_id kiowa
4946 UPDATE `list_options` SET `notes` = '1309-4' WHERE `option_id` = 'kiowa' AND `list_id` = 'race';
4947 #EndIf
4949 #IfRow2D list_options list_id race title Kiowa
4950 UPDATE `list_options` SET `notes` = '1309-4' WHERE `title` = 'Kiowa' AND `list_id` = 'race';
4951 #EndIf
4953 #IfNotRow2Dx2 list_options list_id race option_id kipnuk title Kipnuk
4954 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kipnuk','Kipnuk','3820', '0',' 1923-2', 0);
4955 #EndIf
4957 #IfRow2D list_options list_id race option_id kipnuk
4958 UPDATE `list_options` SET `notes` = '1923-2' WHERE `option_id` = 'kipnuk' AND `list_id` = 'race';
4959 #EndIf
4961 #IfRow2D list_options list_id race title Kipnuk
4962 UPDATE `list_options` SET `notes` = '1923-2' WHERE `title` = 'Kipnuk' AND `list_id` = 'race';
4963 #EndIf
4965 #IfNotRow2Dx2 list_options list_id race option_id kiribati title Kiribati
4966 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kiribati','Kiribati','3830', '0',' 2096-6', 0);
4967 #EndIf
4969 #IfRow2D list_options list_id race option_id kiribati
4970 UPDATE `list_options` SET `notes` = '2096-6' WHERE `option_id` = 'kiribati' AND `list_id` = 'race';
4971 #EndIf
4973 #IfRow2D list_options list_id race title Kiribati
4974 UPDATE `list_options` SET `notes` = '2096-6' WHERE `title` = 'Kiribati' AND `list_id` = 'race';
4975 #EndIf
4977 #IfNotRow2Dx2 list_options list_id race option_id kivalina title Kivalina
4978 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kivalina','Kivalina','3840', '0',' 1865-5', 0);
4979 #EndIf
4981 #IfRow2D list_options list_id race option_id kivalina
4982 UPDATE `list_options` SET `notes` = '1865-5' WHERE `option_id` = 'kivalina' AND `list_id` = 'race';
4983 #EndIf
4985 #IfRow2D list_options list_id race title Kivalina
4986 UPDATE `list_options` SET `notes` = '1865-5' WHERE `title` = 'Kivalina' AND `list_id` = 'race';
4987 #EndIf
4989 #IfNotRow2Dx2 list_options list_id race option_id klallam title Klallam
4990 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','klallam','Klallam','3850', '0',' 1312-8', 0);
4991 #EndIf
4993 #IfRow2D list_options list_id race option_id klallam
4994 UPDATE `list_options` SET `notes` = '1312-8' WHERE `option_id` = 'klallam' AND `list_id` = 'race';
4995 #EndIf
4997 #IfRow2D list_options list_id race title Klallam
4998 UPDATE `list_options` SET `notes` = '1312-8' WHERE `title` = 'Klallam' AND `list_id` = 'race';
4999 #EndIf
5001 #IfNotRow2Dx2 list_options list_id race option_id klamath title Klamath
5002 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','klamath','Klamath','3860', '0',' 1317-7', 0);
5003 #EndIf
5005 #IfRow2D list_options list_id race option_id klamath
5006 UPDATE `list_options` SET `notes` = '1317-7' WHERE `option_id` = 'klamath' AND `list_id` = 'race';
5007 #EndIf
5009 #IfRow2D list_options list_id race title Klamath
5010 UPDATE `list_options` SET `notes` = '1317-7' WHERE `title` = 'Klamath' AND `list_id` = 'race';
5011 #EndIf
5013 #IfNotRow2Dx2 list_options list_id race option_id klawock title Klawock
5014 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','klawock','Klawock','3870', '0',' 1827-5', 0);
5015 #EndIf
5017 #IfRow2D list_options list_id race option_id klawock
5018 UPDATE `list_options` SET `notes` = '1827-5' WHERE `option_id` = 'klawock' AND `list_id` = 'race';
5019 #EndIf
5021 #IfRow2D list_options list_id race title Klawock
5022 UPDATE `list_options` SET `notes` = '1827-5' WHERE `title` = 'Klawock' AND `list_id` = 'race';
5023 #EndIf
5025 #IfNotRow2Dx2 list_options list_id race option_id kluti_kaah title Kluti Kaah
5026 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kluti_kaah','Kluti Kaah','3880', '0',' 1774-9', 0);
5027 #EndIf
5029 #IfRow2D list_options list_id race option_id kluti_kaah
5030 UPDATE `list_options` SET `notes` = '1774-9' WHERE `option_id` = 'kluti_kaah' AND `list_id` = 'race';
5031 #EndIf
5033 #IfRow2D list_options list_id race title Kluti Kaah
5034 UPDATE `list_options` SET `notes` = '1774-9' WHERE `title` = 'Kluti Kaah' AND `list_id` = 'race';
5035 #EndIf
5037 #IfNotRow2Dx2 list_options list_id race option_id knik title Knik
5038 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','knik','Knik','3890', '0',' 1775-6', 0);
5039 #EndIf
5041 #IfRow2D list_options list_id race option_id knik
5042 UPDATE `list_options` SET `notes` = '1775-6' WHERE `option_id` = 'knik' AND `list_id` = 'race';
5043 #EndIf
5045 #IfRow2D list_options list_id race title Knik
5046 UPDATE `list_options` SET `notes` = '1775-6' WHERE `title` = 'Knik' AND `list_id` = 'race';
5047 #EndIf
5049 #IfNotRow2Dx2 list_options list_id race option_id kobuk title Kobuk
5050 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kobuk','Kobuk','3900', '0',' 1866-3', 0);
5051 #EndIf
5053 #IfRow2D list_options list_id race option_id kobuk
5054 UPDATE `list_options` SET `notes` = '1866-3' WHERE `option_id` = 'kobuk' AND `list_id` = 'race';
5055 #EndIf
5057 #IfRow2D list_options list_id race title Kobuk
5058 UPDATE `list_options` SET `notes` = '1866-3' WHERE `title` = 'Kobuk' AND `list_id` = 'race';
5059 #EndIf
5061 #IfNotRow2Dx2 list_options list_id race option_id kodiak title Kodiak
5062 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kodiak','Kodiak','3910', '0',' 1996-8', 0);
5063 #EndIf
5065 #IfRow2D list_options list_id race option_id kodiak
5066 UPDATE `list_options` SET `notes` = '1996-8' WHERE `option_id` = 'kodiak' AND `list_id` = 'race';
5067 #EndIf
5069 #IfRow2D list_options list_id race title Kodiak
5070 UPDATE `list_options` SET `notes` = '1996-8' WHERE `title` = 'Kodiak' AND `list_id` = 'race';
5071 #EndIf
5073 #IfNotRow2Dx2 list_options list_id race option_id kokhanok title Kokhanok
5074 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kokhanok','Kokhanok','3920', '0',' 1979-4', 0);
5075 #EndIf
5077 #IfRow2D list_options list_id race option_id kokhanok
5078 UPDATE `list_options` SET `notes` = '1979-4' WHERE `option_id` = 'kokhanok' AND `list_id` = 'race';
5079 #EndIf
5081 #IfRow2D list_options list_id race title Kokhanok
5082 UPDATE `list_options` SET `notes` = '1979-4' WHERE `title` = 'Kokhanok' AND `list_id` = 'race';
5083 #EndIf
5085 #IfNotRow2Dx2 list_options list_id race option_id koliganek title Koliganek
5086 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','koliganek','Koliganek','3930', '0',' 1924-0', 0);
5087 #EndIf
5089 #IfRow2D list_options list_id race option_id koliganek
5090 UPDATE `list_options` SET `notes` = '1924-0' WHERE `option_id` = 'koliganek' AND `list_id` = 'race';
5091 #EndIf
5093 #IfRow2D list_options list_id race title Koliganek
5094 UPDATE `list_options` SET `notes` = '1924-0' WHERE `title` = 'Koliganek' AND `list_id` = 'race';
5095 #EndIf
5097 #IfNotRow2Dx2 list_options list_id race option_id kongiganak title Kongiganak
5098 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kongiganak','Kongiganak','3940', '0',' 1925-7', 0);
5099 #EndIf
5101 #IfRow2D list_options list_id race option_id kongiganak
5102 UPDATE `list_options` SET `notes` = '1925-7' WHERE `option_id` = 'kongiganak' AND `list_id` = 'race';
5103 #EndIf
5105 #IfRow2D list_options list_id race title Kongiganak
5106 UPDATE `list_options` SET `notes` = '1925-7' WHERE `title` = 'Kongiganak' AND `list_id` = 'race';
5107 #EndIf
5109 #IfNotRow2Dx2 list_options list_id race option_id koniag_aleut title Koniag Aleut
5110 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','koniag_aleut','Koniag Aleut','3950', '0',' 1992-7', 0);
5111 #EndIf
5113 #IfRow2D list_options list_id race option_id koniag_aleut
5114 UPDATE `list_options` SET `notes` = '1992-7' WHERE `option_id` = 'koniag_aleut' AND `list_id` = 'race';
5115 #EndIf
5117 #IfRow2D list_options list_id race title Koniag Aleut
5118 UPDATE `list_options` SET `notes` = '1992-7' WHERE `title` = 'Koniag Aleut' AND `list_id` = 'race';
5119 #EndIf
5121 #IfNotRow2Dx2 list_options list_id race option_id konkow title Konkow
5122 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','konkow','Konkow','3960', '0',' 1319-3', 0);
5123 #EndIf
5125 #IfRow2D list_options list_id race option_id konkow
5126 UPDATE `list_options` SET `notes` = '1319-3' WHERE `option_id` = 'konkow' AND `list_id` = 'race';
5127 #EndIf
5129 #IfRow2D list_options list_id race title Konkow
5130 UPDATE `list_options` SET `notes` = '1319-3' WHERE `title` = 'Konkow' AND `list_id` = 'race';
5131 #EndIf
5133 #IfNotRow2Dx2 list_options list_id race option_id kootenai title Kootenai
5134 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kootenai','Kootenai','3970', '0',' 1321-9', 0);
5135 #EndIf
5137 #IfRow2D list_options list_id race option_id kootenai
5138 UPDATE `list_options` SET `notes` = '1321-9' WHERE `option_id` = 'kootenai' AND `list_id` = 'race';
5139 #EndIf
5141 #IfRow2D list_options list_id race title Kootenai
5142 UPDATE `list_options` SET `notes` = '1321-9' WHERE `title` = 'Kootenai' AND `list_id` = 'race';
5143 #EndIf
5145 #IfNotRow2Dx2 list_options list_id race option_id korean title Korean
5146 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','korean','Korean','3980', '0',' 2040-4', 0);
5147 #EndIf
5149 #IfRow2D list_options list_id race option_id korean
5150 UPDATE `list_options` SET `notes` = '2040-4' WHERE `option_id` = 'korean' AND `list_id` = 'race';
5151 #EndIf
5153 #IfRow2D list_options list_id race title Korean
5154 UPDATE `list_options` SET `notes` = '2040-4' WHERE `title` = 'Korean' AND `list_id` = 'race';
5155 #EndIf
5157 #IfNotRow2Dx2 list_options list_id race option_id kosraean title Kosraean
5158 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kosraean','Kosraean','3990', '0',' 2093-3', 0);
5159 #EndIf
5161 #IfRow2D list_options list_id race option_id kosraean
5162 UPDATE `list_options` SET `notes` = '2093-3' WHERE `option_id` = 'kosraean' AND `list_id` = 'race';
5163 #EndIf
5165 #IfRow2D list_options list_id race title Kosraean
5166 UPDATE `list_options` SET `notes` = '2093-3' WHERE `title` = 'Kosraean' AND `list_id` = 'race';
5167 #EndIf
5169 #IfNotRow2Dx2 list_options list_id race option_id kotlik title Kotlik
5170 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kotlik','Kotlik','4000', '0',' 1926-5', 0);
5171 #EndIf
5173 #IfRow2D list_options list_id race option_id kotlik
5174 UPDATE `list_options` SET `notes` = '1926-5' WHERE `option_id` = 'kotlik' AND `list_id` = 'race';
5175 #EndIf
5177 #IfRow2D list_options list_id race title Kotlik
5178 UPDATE `list_options` SET `notes` = '1926-5' WHERE `title` = 'Kotlik' AND `list_id` = 'race';
5179 #EndIf
5181 #IfNotRow2Dx2 list_options list_id race option_id kotzebue title Kotzebue
5182 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kotzebue','Kotzebue','4010', '0',' 1867-1', 0);
5183 #EndIf
5185 #IfRow2D list_options list_id race option_id kotzebue
5186 UPDATE `list_options` SET `notes` = '1867-1' WHERE `option_id` = 'kotzebue' AND `list_id` = 'race';
5187 #EndIf
5189 #IfRow2D list_options list_id race title Kotzebue
5190 UPDATE `list_options` SET `notes` = '1867-1' WHERE `title` = 'Kotzebue' AND `list_id` = 'race';
5191 #EndIf
5193 #IfNotRow2Dx2 list_options list_id race option_id koyuk title Koyuk
5194 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','koyuk','Koyuk','4020', '0',' 1868-9', 0);
5195 #EndIf
5197 #IfRow2D list_options list_id race option_id koyuk
5198 UPDATE `list_options` SET `notes` = '1868-9' WHERE `option_id` = 'koyuk' AND `list_id` = 'race';
5199 #EndIf
5201 #IfRow2D list_options list_id race title Koyuk
5202 UPDATE `list_options` SET `notes` = '1868-9' WHERE `title` = 'Koyuk' AND `list_id` = 'race';
5203 #EndIf
5205 #IfNotRow2Dx2 list_options list_id race option_id koyukuk title Koyukuk
5206 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','koyukuk','Koyukuk','4030', '0',' 1776-4', 0);
5207 #EndIf
5209 #IfRow2D list_options list_id race option_id koyukuk
5210 UPDATE `list_options` SET `notes` = '1776-4' WHERE `option_id` = 'koyukuk' AND `list_id` = 'race';
5211 #EndIf
5213 #IfRow2D list_options list_id race title Koyukuk
5214 UPDATE `list_options` SET `notes` = '1776-4' WHERE `title` = 'Koyukuk' AND `list_id` = 'race';
5215 #EndIf
5217 #IfNotRow2Dx2 list_options list_id race option_id kwethluk title Kwethluk
5218 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kwethluk','Kwethluk','4040', '0',' 1927-3', 0);
5219 #EndIf
5221 #IfRow2D list_options list_id race option_id kwethluk
5222 UPDATE `list_options` SET `notes` = '1927-3' WHERE `option_id` = 'kwethluk' AND `list_id` = 'race';
5223 #EndIf
5225 #IfRow2D list_options list_id race title Kwethluk
5226 UPDATE `list_options` SET `notes` = '1927-3' WHERE `title` = 'Kwethluk' AND `list_id` = 'race';
5227 #EndIf
5229 #IfNotRow2Dx2 list_options list_id race option_id kwigillingok title Kwigillingok
5230 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kwigillingok','Kwigillingok','4050', '0',' 1928-1', 0);
5231 #EndIf
5233 #IfRow2D list_options list_id race option_id kwigillingok
5234 UPDATE `list_options` SET `notes` = '1928-1' WHERE `option_id` = 'kwigillingok' AND `list_id` = 'race';
5235 #EndIf
5237 #IfRow2D list_options list_id race title Kwigillingok
5238 UPDATE `list_options` SET `notes` = '1928-1' WHERE `title` = 'Kwigillingok' AND `list_id` = 'race';
5239 #EndIf
5241 #IfNotRow2Dx2 list_options list_id race option_id kwiguk title Kwiguk
5242 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','kwiguk','Kwiguk','4060', '0',' 1869-7', 0);
5243 #EndIf
5245 #IfRow2D list_options list_id race option_id kwiguk
5246 UPDATE `list_options` SET `notes` = '1869-7' WHERE `option_id` = 'kwiguk' AND `list_id` = 'race';
5247 #EndIf
5249 #IfRow2D list_options list_id race title Kwiguk
5250 UPDATE `list_options` SET `notes` = '1869-7' WHERE `title` = 'Kwiguk' AND `list_id` = 'race';
5251 #EndIf
5253 #IfNotRow2Dx2 list_options list_id race option_id la_jolla title La Jolla
5254 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','la_jolla','La Jolla','4070', '0',' 1332-6', 0);
5255 #EndIf
5257 #IfRow2D list_options list_id race option_id la_jolla
5258 UPDATE `list_options` SET `notes` = '1332-6' WHERE `option_id` = 'la_jolla' AND `list_id` = 'race';
5259 #EndIf
5261 #IfRow2D list_options list_id race title La Jolla
5262 UPDATE `list_options` SET `notes` = '1332-6' WHERE `title` = 'La Jolla' AND `list_id` = 'race';
5263 #EndIf
5265 #IfNotRow2Dx2 list_options list_id race option_id la_posta title La Posta
5266 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','la_posta','La Posta','4080', '0',' 1226-0', 0);
5267 #EndIf
5269 #IfRow2D list_options list_id race option_id la_posta
5270 UPDATE `list_options` SET `notes` = '1226-0' WHERE `option_id` = 'la_posta' AND `list_id` = 'race';
5271 #EndIf
5273 #IfRow2D list_options list_id race title La Posta
5274 UPDATE `list_options` SET `notes` = '1226-0' WHERE `title` = 'La Posta' AND `list_id` = 'race';
5275 #EndIf
5277 #IfNotRow2Dx2 list_options list_id race option_id lac_courte_oreilles title Lac Courte Oreilles
5278 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lac_courte_oreilles','Lac Courte Oreilles','4090', '0',' 1132-0', 0);
5279 #EndIf
5281 #IfRow2D list_options list_id race option_id lac_courte_oreilles
5282 UPDATE `list_options` SET `notes` = '1132-0' WHERE `option_id` = 'lac_courte_oreilles' AND `list_id` = 'race';
5283 #EndIf
5285 #IfRow2D list_options list_id race title Lac Courte Oreilles
5286 UPDATE `list_options` SET `notes` = '1132-0' WHERE `title` = 'Lac Courte Oreilles' AND `list_id` = 'race';
5287 #EndIf
5289 #IfNotRow2Dx2 list_options list_id race option_id lac_du_flambeau title Lac du Flambeau
5290 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lac_du_flambeau','Lac du Flambeau','4100', '0',' 1133-8', 0);
5291 #EndIf
5293 #IfRow2D list_options list_id race option_id lac_du_flambeau
5294 UPDATE `list_options` SET `notes` = '1133-8' WHERE `option_id` = 'lac_du_flambeau' AND `list_id` = 'race';
5295 #EndIf
5297 #IfRow2D list_options list_id race title Lac du Flambeau
5298 UPDATE `list_options` SET `notes` = '1133-8' WHERE `title` = 'Lac du Flambeau' AND `list_id` = 'race';
5299 #EndIf
5301 #IfNotRow2Dx2 list_options list_id race option_id lac_vieux_desert_chippewa title Lac Vieux Desert Chippewa
5302 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lac_vieux_desert_chippewa','Lac Vieux Desert Chippewa','4110', '0',' 1134-6', 0);
5303 #EndIf
5305 #IfRow2D list_options list_id race option_id lac_vieux_desert_chippewa
5306 UPDATE `list_options` SET `notes` = '1134-6' WHERE `option_id` = 'lac_vieux_desert_chippewa' AND `list_id` = 'race';
5307 #EndIf
5309 #IfRow2D list_options list_id race title Lac Vieux Desert Chippewa
5310 UPDATE `list_options` SET `notes` = '1134-6' WHERE `title` = 'Lac Vieux Desert Chippewa' AND `list_id` = 'race';
5311 #EndIf
5313 #IfNotRow2Dx2 list_options list_id race option_id laguna title Laguna
5314 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','laguna','Laguna','4120', '0',' 1497-7', 0);
5315 #EndIf
5317 #IfRow2D list_options list_id race option_id laguna
5318 UPDATE `list_options` SET `notes` = '1497-7' WHERE `option_id` = 'laguna' AND `list_id` = 'race';
5319 #EndIf
5321 #IfRow2D list_options list_id race title Laguna
5322 UPDATE `list_options` SET `notes` = '1497-7' WHERE `title` = 'Laguna' AND `list_id` = 'race';
5323 #EndIf
5325 #IfNotRow2Dx2 list_options list_id race option_id lake_minchumina title Lake Minchumina
5326 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lake_minchumina','Lake Minchumina','4130', '0',' 1777-2', 0);
5327 #EndIf
5329 #IfRow2D list_options list_id race option_id lake_minchumina
5330 UPDATE `list_options` SET `notes` = '1777-2' WHERE `option_id` = 'lake_minchumina' AND `list_id` = 'race';
5331 #EndIf
5333 #IfRow2D list_options list_id race title Lake Minchumina
5334 UPDATE `list_options` SET `notes` = '1777-2' WHERE `title` = 'Lake Minchumina' AND `list_id` = 'race';
5335 #EndIf
5337 #IfNotRow2Dx2 list_options list_id race option_id lake_superior title Lake Superior
5338 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lake_superior','Lake Superior','4140', '0',' 1135-3', 0);
5339 #EndIf
5341 #IfRow2D list_options list_id race option_id lake_superior
5342 UPDATE `list_options` SET `notes` = '1135-3' WHERE `option_id` = 'lake_superior' AND `list_id` = 'race';
5343 #EndIf
5345 #IfRow2D list_options list_id race title Lake Superior
5346 UPDATE `list_options` SET `notes` = '1135-3' WHERE `title` = 'Lake Superior' AND `list_id` = 'race';
5347 #EndIf
5349 #IfNotRow2Dx2 list_options list_id race option_id lake_traverse_sioux title Lake Traverse Sioux
5350 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lake_traverse_sioux','Lake Traverse Sioux','4150', '0',' 1617-0', 0);
5351 #EndIf
5353 #IfRow2D list_options list_id race option_id lake_traverse_sioux
5354 UPDATE `list_options` SET `notes` = '1617-0' WHERE `option_id` = 'lake_traverse_sioux' AND `list_id` = 'race';
5355 #EndIf
5357 #IfRow2D list_options list_id race title Lake Traverse Sioux
5358 UPDATE `list_options` SET `notes` = '1617-0' WHERE `title` = 'Lake Traverse Sioux' AND `list_id` = 'race';
5359 #EndIf
5361 #IfNotRow2Dx2 list_options list_id race option_id laotian title Laotian
5362 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','laotian','Laotian','4160', '0',' 2041-2', 0);
5363 #EndIf
5365 #IfRow2D list_options list_id race option_id laotian
5366 UPDATE `list_options` SET `notes` = '2041-2' WHERE `option_id` = 'laotian' AND `list_id` = 'race';
5367 #EndIf
5369 #IfRow2D list_options list_id race title Laotian
5370 UPDATE `list_options` SET `notes` = '2041-2' WHERE `title` = 'Laotian' AND `list_id` = 'race';
5371 #EndIf
5373 #IfNotRow2Dx2 list_options list_id race option_id larsen_bay title Larsen Bay
5374 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','larsen_bay','Larsen Bay','4170', '0',' 1997-6', 0);
5375 #EndIf
5377 #IfRow2D list_options list_id race option_id larsen_bay
5378 UPDATE `list_options` SET `notes` = '1997-6' WHERE `option_id` = 'larsen_bay' AND `list_id` = 'race';
5379 #EndIf
5381 #IfRow2D list_options list_id race title Larsen Bay
5382 UPDATE `list_options` SET `notes` = '1997-6' WHERE `title` = 'Larsen Bay' AND `list_id` = 'race';
5383 #EndIf
5385 #IfNotRow2Dx2 list_options list_id race option_id las_vegas title Las Vegas
5386 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','las_vegas','Las Vegas','4180', '0',' 1424-1', 0);
5387 #EndIf
5389 #IfRow2D list_options list_id race option_id las_vegas
5390 UPDATE `list_options` SET `notes` = '1424-1' WHERE `option_id` = 'las_vegas' AND `list_id` = 'race';
5391 #EndIf
5393 #IfRow2D list_options list_id race title Las Vegas
5394 UPDATE `list_options` SET `notes` = '1424-1' WHERE `title` = 'Las Vegas' AND `list_id` = 'race';
5395 #EndIf
5397 #IfNotRow2Dx2 list_options list_id race option_id lassik title Lassik
5398 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lassik','Lassik','4190', '0',' 1323-5', 0);
5399 #EndIf
5401 #IfRow2D list_options list_id race option_id lassik
5402 UPDATE `list_options` SET `notes` = '1323-5' WHERE `option_id` = 'lassik' AND `list_id` = 'race';
5403 #EndIf
5405 #IfRow2D list_options list_id race title Lassik
5406 UPDATE `list_options` SET `notes` = '1323-5' WHERE `title` = 'Lassik' AND `list_id` = 'race';
5407 #EndIf
5409 #IfNotRow2Dx2 list_options list_id race option_id lebanese title Lebanese
5410 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lebanese','Lebanese','4200', '0',' 2123-8', 0);
5411 #EndIf
5413 #IfRow2D list_options list_id race option_id lebanese
5414 UPDATE `list_options` SET `notes` = '2123-8' WHERE `option_id` = 'lebanese' AND `list_id` = 'race';
5415 #EndIf
5417 #IfRow2D list_options list_id race title Lebanese
5418 UPDATE `list_options` SET `notes` = '2123-8' WHERE `title` = 'Lebanese' AND `list_id` = 'race';
5419 #EndIf
5421 #IfNotRow2Dx2 list_options list_id race option_id leech_lake title Leech Lake
5422 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','leech_lake','Leech Lake','4210', '0',' 1136-1', 0);
5423 #EndIf
5425 #IfRow2D list_options list_id race option_id leech_lake
5426 UPDATE `list_options` SET `notes` = '1136-1' WHERE `option_id` = 'leech_lake' AND `list_id` = 'race';
5427 #EndIf
5429 #IfRow2D list_options list_id race title Leech Lake
5430 UPDATE `list_options` SET `notes` = '1136-1' WHERE `title` = 'Leech Lake' AND `list_id` = 'race';
5431 #EndIf
5433 #IfNotRow2Dx2 list_options list_id race option_id lenni-lenape title Lenni-Lenape
5434 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lenni-lenape','Lenni-Lenape','4220', '0',' 1216-1', 0);
5435 #EndIf
5437 #IfRow2D list_options list_id race option_id lenni-lenape
5438 UPDATE `list_options` SET `notes` = '1216-1' WHERE `option_id` = 'lenni-lenape' AND `list_id` = 'race';
5439 #EndIf
5441 #IfRow2D list_options list_id race title Lenni-Lenape
5442 UPDATE `list_options` SET `notes` = '1216-1' WHERE `title` = 'Lenni-Lenape' AND `list_id` = 'race';
5443 #EndIf
5445 #IfNotRow2Dx2 list_options list_id race option_id levelock title Levelock
5446 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','levelock','Levelock','4230', '0',' 1929-9', 0);
5447 #EndIf
5449 #IfRow2D list_options list_id race option_id levelock
5450 UPDATE `list_options` SET `notes` = '1929-9' WHERE `option_id` = 'levelock' AND `list_id` = 'race';
5451 #EndIf
5453 #IfRow2D list_options list_id race title Levelock
5454 UPDATE `list_options` SET `notes` = '1929-9' WHERE `title` = 'Levelock' AND `list_id` = 'race';
5455 #EndIf
5457 #IfNotRow2Dx2 list_options list_id race option_id liberian title Liberian
5458 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','liberian','Liberian','4240', '0',' 2063-6', 0);
5459 #EndIf
5461 #IfRow2D list_options list_id race option_id liberian
5462 UPDATE `list_options` SET `notes` = '2063-6' WHERE `option_id` = 'liberian' AND `list_id` = 'race';
5463 #EndIf
5465 #IfRow2D list_options list_id race title Liberian
5466 UPDATE `list_options` SET `notes` = '2063-6' WHERE `title` = 'Liberian' AND `list_id` = 'race';
5467 #EndIf
5469 #IfNotRow2Dx2 list_options list_id race option_id lime title Lime
5470 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lime','Lime','4250', '0',' 1778-0', 0);
5471 #EndIf
5473 #IfRow2D list_options list_id race option_id lime
5474 UPDATE `list_options` SET `notes` = '1778-0' WHERE `option_id` = 'lime' AND `list_id` = 'race';
5475 #EndIf
5477 #IfRow2D list_options list_id race title Lime
5478 UPDATE `list_options` SET `notes` = '1778-0' WHERE `title` = 'Lime' AND `list_id` = 'race';
5479 #EndIf
5481 #IfNotRow2Dx2 list_options list_id race option_id lipan_apache title Lipan Apache
5482 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lipan_apache','Lipan Apache','4260', '0',' 1014-0', 0);
5483 #EndIf
5485 #IfRow2D list_options list_id race option_id lipan_apache
5486 UPDATE `list_options` SET `notes` = '1014-0' WHERE `option_id` = 'lipan_apache' AND `list_id` = 'race';
5487 #EndIf
5489 #IfRow2D list_options list_id race title Lipan Apache
5490 UPDATE `list_options` SET `notes` = '1014-0' WHERE `title` = 'Lipan Apache' AND `list_id` = 'race';
5491 #EndIf
5493 #IfNotRow2Dx2 list_options list_id race option_id little_shell_chippewa title Little Shell Chippewa
5494 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','little_shell_chippewa','Little Shell Chippewa','4270', '0',' 1137-9', 0);
5495 #EndIf
5497 #IfRow2D list_options list_id race option_id little_shell_chippewa
5498 UPDATE `list_options` SET `notes` = '1137-9' WHERE `option_id` = 'little_shell_chippewa' AND `list_id` = 'race';
5499 #EndIf
5501 #IfRow2D list_options list_id race title Little Shell Chippewa
5502 UPDATE `list_options` SET `notes` = '1137-9' WHERE `title` = 'Little Shell Chippewa' AND `list_id` = 'race';
5503 #EndIf
5505 #IfNotRow2Dx2 list_options list_id race option_id lone_pine title Lone Pine
5506 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lone_pine','Lone Pine','4280', '0',' 1425-8', 0);
5507 #EndIf
5509 #IfRow2D list_options list_id race option_id lone_pine
5510 UPDATE `list_options` SET `notes` = '1425-8' WHERE `option_id` = 'lone_pine' AND `list_id` = 'race';
5511 #EndIf
5513 #IfRow2D list_options list_id race title Lone Pine
5514 UPDATE `list_options` SET `notes` = '1425-8' WHERE `title` = 'Lone Pine' AND `list_id` = 'race';
5515 #EndIf
5517 #IfNotRow2Dx2 list_options list_id race option_id long_island title Long Island
5518 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','long_island','Long Island','4290', '0',' 1325-0', 0);
5519 #EndIf
5521 #IfRow2D list_options list_id race option_id long_island
5522 UPDATE `list_options` SET `notes` = '1325-0' WHERE `option_id` = 'long_island' AND `list_id` = 'race';
5523 #EndIf
5525 #IfRow2D list_options list_id race title Long Island
5526 UPDATE `list_options` SET `notes` = '1325-0' WHERE `title` = 'Long Island' AND `list_id` = 'race';
5527 #EndIf
5529 #IfNotRow2Dx2 list_options list_id race option_id los_coyotes title Los Coyotes
5530 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','los_coyotes','Los Coyotes','4300', '0',' 1048-8', 0);
5531 #EndIf
5533 #IfRow2D list_options list_id race option_id los_coyotes
5534 UPDATE `list_options` SET `notes` = '1048-8' WHERE `option_id` = 'los_coyotes' AND `list_id` = 'race';
5535 #EndIf
5537 #IfRow2D list_options list_id race title Los Coyotes
5538 UPDATE `list_options` SET `notes` = '1048-8' WHERE `title` = 'Los Coyotes' AND `list_id` = 'race';
5539 #EndIf
5541 #IfNotRow2Dx2 list_options list_id race option_id lovelock title Lovelock
5542 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lovelock','Lovelock','4310', '0',' 1426-6', 0);
5543 #EndIf
5545 #IfRow2D list_options list_id race option_id lovelock
5546 UPDATE `list_options` SET `notes` = '1426-6' WHERE `option_id` = 'lovelock' AND `list_id` = 'race';
5547 #EndIf
5549 #IfRow2D list_options list_id race title Lovelock
5550 UPDATE `list_options` SET `notes` = '1426-6' WHERE `title` = 'Lovelock' AND `list_id` = 'race';
5551 #EndIf
5553 #IfNotRow2Dx2 list_options list_id race option_id lower_brule_sioux title Lower Brule Sioux
5554 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_brule_sioux','Lower Brule Sioux','4320', '0',' 1618-8', 0);
5555 #EndIf
5557 #IfRow2D list_options list_id race option_id lower_brule_sioux
5558 UPDATE `list_options` SET `notes` = '1618-8' WHERE `option_id` = 'lower_brule_sioux' AND `list_id` = 'race';
5559 #EndIf
5561 #IfRow2D list_options list_id race title Lower Brule Sioux
5562 UPDATE `list_options` SET `notes` = '1618-8' WHERE `title` = 'Lower Brule Sioux' AND `list_id` = 'race';
5563 #EndIf
5565 #IfNotRow2Dx2 list_options list_id race option_id lower_elwha title Lower Elwha
5566 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_elwha','Lower Elwha','4330', '0',' 1314-4', 0);
5567 #EndIf
5569 #IfRow2D list_options list_id race option_id lower_elwha
5570 UPDATE `list_options` SET `notes` = '1314-4' WHERE `option_id` = 'lower_elwha' AND `list_id` = 'race';
5571 #EndIf
5573 #IfRow2D list_options list_id race title Lower Elwha
5574 UPDATE `list_options` SET `notes` = '1314-4' WHERE `title` = 'Lower Elwha' AND `list_id` = 'race';
5575 #EndIf
5577 #IfNotRow2Dx2 list_options list_id race option_id lower_kalskag title Lower Kalskag
5578 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_kalskag','Lower Kalskag','4340', '0',' 1930-7', 0);
5579 #EndIf
5581 #IfRow2D list_options list_id race option_id lower_kalskag
5582 UPDATE `list_options` SET `notes` = '1930-7' WHERE `option_id` = 'lower_kalskag' AND `list_id` = 'race';
5583 #EndIf
5585 #IfRow2D list_options list_id race title Lower Kalskag
5586 UPDATE `list_options` SET `notes` = '1930-7' WHERE `title` = 'Lower Kalskag' AND `list_id` = 'race';
5587 #EndIf
5589 #IfNotRow2Dx2 list_options list_id race option_id lower_muscogee title Lower Muscogee
5590 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_muscogee','Lower Muscogee','4350', '0',' 1199-9', 0);
5591 #EndIf
5593 #IfRow2D list_options list_id race option_id lower_muscogee
5594 UPDATE `list_options` SET `notes` = '1199-9' WHERE `option_id` = 'lower_muscogee' AND `list_id` = 'race';
5595 #EndIf
5597 #IfRow2D list_options list_id race title Lower Muscogee
5598 UPDATE `list_options` SET `notes` = '1199-9' WHERE `title` = 'Lower Muscogee' AND `list_id` = 'race';
5599 #EndIf
5601 #IfNotRow2Dx2 list_options list_id race option_id lower_sioux title Lower Sioux
5602 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_sioux','Lower Sioux','4360', '0',' 1619-6', 0);
5603 #EndIf
5605 #IfRow2D list_options list_id race option_id lower_sioux
5606 UPDATE `list_options` SET `notes` = '1619-6' WHERE `option_id` = 'lower_sioux' AND `list_id` = 'race';
5607 #EndIf
5609 #IfRow2D list_options list_id race title Lower Sioux
5610 UPDATE `list_options` SET `notes` = '1619-6' WHERE `title` = 'Lower Sioux' AND `list_id` = 'race';
5611 #EndIf
5613 #IfNotRow2Dx2 list_options list_id race option_id lower_skagit title Lower Skagit
5614 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lower_skagit','Lower Skagit','4370', '0',' 1521-4', 0);
5615 #EndIf
5617 #IfRow2D list_options list_id race option_id lower_skagit
5618 UPDATE `list_options` SET `notes` = '1521-4' WHERE `option_id` = 'lower_skagit' AND `list_id` = 'race';
5619 #EndIf
5621 #IfRow2D list_options list_id race title Lower Skagit
5622 UPDATE `list_options` SET `notes` = '1521-4' WHERE `title` = 'Lower Skagit' AND `list_id` = 'race';
5623 #EndIf
5625 #IfNotRow2Dx2 list_options list_id race option_id luiseno title Luiseno
5626 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','luiseno','Luiseno','4380', '0',' 1331-8', 0);
5627 #EndIf
5629 #IfRow2D list_options list_id race option_id luiseno
5630 UPDATE `list_options` SET `notes` = '1331-8' WHERE `option_id` = 'luiseno' AND `list_id` = 'race';
5631 #EndIf
5633 #IfRow2D list_options list_id race title Luiseno
5634 UPDATE `list_options` SET `notes` = '1331-8' WHERE `title` = 'Luiseno' AND `list_id` = 'race';
5635 #EndIf
5637 #IfNotRow2Dx2 list_options list_id race option_id lumbee title Lumbee
5638 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lumbee','Lumbee','4390', '0',' 1340-9', 0);
5639 #EndIf
5641 #IfRow2D list_options list_id race option_id lumbee
5642 UPDATE `list_options` SET `notes` = '1340-9' WHERE `option_id` = 'lumbee' AND `list_id` = 'race';
5643 #EndIf
5645 #IfRow2D list_options list_id race title Lumbee
5646 UPDATE `list_options` SET `notes` = '1340-9' WHERE `title` = 'Lumbee' AND `list_id` = 'race';
5647 #EndIf
5649 #IfNotRow2Dx2 list_options list_id race option_id lummi title Lummi
5650 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','lummi','Lummi','4400', '0',' 1342-5', 0);
5651 #EndIf
5653 #IfRow2D list_options list_id race option_id lummi
5654 UPDATE `list_options` SET `notes` = '1342-5' WHERE `option_id` = 'lummi' AND `list_id` = 'race';
5655 #EndIf
5657 #IfRow2D list_options list_id race title Lummi
5658 UPDATE `list_options` SET `notes` = '1342-5' WHERE `title` = 'Lummi' AND `list_id` = 'race';
5659 #EndIf
5661 #IfNotRow2Dx2 list_options list_id race option_id machis_lower_creek_indian title Machis Lower Creek Indian
5662 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','machis_lower_creek_indian','Machis Lower Creek Indian','4410', '0',' 1200-5', 0);
5663 #EndIf
5665 #IfRow2D list_options list_id race option_id machis_lower_creek_indian
5666 UPDATE `list_options` SET `notes` = '1200-5' WHERE `option_id` = 'machis_lower_creek_indian' AND `list_id` = 'race';
5667 #EndIf
5669 #IfRow2D list_options list_id race title Machis Lower Creek Indian
5670 UPDATE `list_options` SET `notes` = '1200-5' WHERE `title` = 'Machis Lower Creek Indian' AND `list_id` = 'race';
5671 #EndIf
5673 #IfNotRow2Dx2 list_options list_id race option_id madagascar title Madagascar
5674 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','madagascar','Madagascar','4420', '0',' 2052-9', 0);
5675 #EndIf
5677 #IfRow2D list_options list_id race option_id madagascar
5678 UPDATE `list_options` SET `notes` = '2052-9' WHERE `option_id` = 'madagascar' AND `list_id` = 'race';
5679 #EndIf
5681 #IfRow2D list_options list_id race title Madagascar
5682 UPDATE `list_options` SET `notes` = '2052-9' WHERE `title` = 'Madagascar' AND `list_id` = 'race';
5683 #EndIf
5685 #IfNotRow2Dx2 list_options list_id race option_id maidu title Maidu
5686 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','maidu','Maidu','4430', '0',' 1344-1', 0);
5687 #EndIf
5689 #IfRow2D list_options list_id race option_id maidu
5690 UPDATE `list_options` SET `notes` = '1344-1' WHERE `option_id` = 'maidu' AND `list_id` = 'race';
5691 #EndIf
5693 #IfRow2D list_options list_id race title Maidu
5694 UPDATE `list_options` SET `notes` = '1344-1' WHERE `title` = 'Maidu' AND `list_id` = 'race';
5695 #EndIf
5697 #IfNotRow2Dx2 list_options list_id race option_id makah title Makah
5698 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','makah','Makah','4440', '0',' 1348-2', 0);
5699 #EndIf
5701 #IfRow2D list_options list_id race option_id makah
5702 UPDATE `list_options` SET `notes` = '1348-2' WHERE `option_id` = 'makah' AND `list_id` = 'race';
5703 #EndIf
5705 #IfRow2D list_options list_id race title Makah
5706 UPDATE `list_options` SET `notes` = '1348-2' WHERE `title` = 'Makah' AND `list_id` = 'race';
5707 #EndIf
5709 #IfNotRow2Dx2 list_options list_id race option_id malaysian title Malaysian
5710 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','malaysian','Malaysian','4450', '0',' 2042-0', 0);
5711 #EndIf
5713 #IfRow2D list_options list_id race option_id malaysian
5714 UPDATE `list_options` SET `notes` = '2042-0' WHERE `option_id` = 'malaysian' AND `list_id` = 'race';
5715 #EndIf
5717 #IfRow2D list_options list_id race title Malaysian
5718 UPDATE `list_options` SET `notes` = '2042-0' WHERE `title` = 'Malaysian' AND `list_id` = 'race';
5719 #EndIf
5721 #IfNotRow2Dx2 list_options list_id race option_id maldivian title Maldivian
5722 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','maldivian','Maldivian','4460', '0',' 2049-5', 0);
5723 #EndIf
5725 #IfRow2D list_options list_id race option_id maldivian
5726 UPDATE `list_options` SET `notes` = '2049-5' WHERE `option_id` = 'maldivian' AND `list_id` = 'race';
5727 #EndIf
5729 #IfRow2D list_options list_id race title Maldivian
5730 UPDATE `list_options` SET `notes` = '2049-5' WHERE `title` = 'Maldivian' AND `list_id` = 'race';
5731 #EndIf
5733 #IfNotRow2Dx2 list_options list_id race option_id malheur_paiute title Malheur Paiute
5734 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','malheur_paiute','Malheur Paiute','4470', '0',' 1427-4', 0);
5735 #EndIf
5737 #IfRow2D list_options list_id race option_id malheur_paiute
5738 UPDATE `list_options` SET `notes` = '1427-4' WHERE `option_id` = 'malheur_paiute' AND `list_id` = 'race';
5739 #EndIf
5741 #IfRow2D list_options list_id race title Malheur Paiute
5742 UPDATE `list_options` SET `notes` = '1427-4' WHERE `title` = 'Malheur Paiute' AND `list_id` = 'race';
5743 #EndIf
5745 #IfNotRow2Dx2 list_options list_id race option_id maliseet title Maliseet
5746 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','maliseet','Maliseet','4480', '0',' 1350-8', 0);
5747 #EndIf
5749 #IfRow2D list_options list_id race option_id maliseet
5750 UPDATE `list_options` SET `notes` = '1350-8' WHERE `option_id` = 'maliseet' AND `list_id` = 'race';
5751 #EndIf
5753 #IfRow2D list_options list_id race title Maliseet
5754 UPDATE `list_options` SET `notes` = '1350-8' WHERE `title` = 'Maliseet' AND `list_id` = 'race';
5755 #EndIf
5757 #IfNotRow2Dx2 list_options list_id race option_id mandan title Mandan
5758 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mandan','Mandan','4490', '0',' 1352-4', 0);
5759 #EndIf
5761 #IfRow2D list_options list_id race option_id mandan
5762 UPDATE `list_options` SET `notes` = '1352-4' WHERE `option_id` = 'mandan' AND `list_id` = 'race';
5763 #EndIf
5765 #IfRow2D list_options list_id race title Mandan
5766 UPDATE `list_options` SET `notes` = '1352-4' WHERE `title` = 'Mandan' AND `list_id` = 'race';
5767 #EndIf
5769 #IfNotRow2Dx2 list_options list_id race option_id manley_hot_springs title Manley Hot Springs
5770 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','manley_hot_springs','Manley Hot Springs','4500', '0',' 1780-6', 0);
5771 #EndIf
5773 #IfRow2D list_options list_id race option_id manley_hot_springs
5774 UPDATE `list_options` SET `notes` = '1780-6' WHERE `option_id` = 'manley_hot_springs' AND `list_id` = 'race';
5775 #EndIf
5777 #IfRow2D list_options list_id race title Manley Hot Springs
5778 UPDATE `list_options` SET `notes` = '1780-6' WHERE `title` = 'Manley Hot Springs' AND `list_id` = 'race';
5779 #EndIf
5781 #IfNotRow2Dx2 list_options list_id race option_id manokotak title Manokotak
5782 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','manokotak','Manokotak','4510', '0',' 1931-5', 0);
5783 #EndIf
5785 #IfRow2D list_options list_id race option_id manokotak
5786 UPDATE `list_options` SET `notes` = '1931-5' WHERE `option_id` = 'manokotak' AND `list_id` = 'race';
5787 #EndIf
5789 #IfRow2D list_options list_id race title Manokotak
5790 UPDATE `list_options` SET `notes` = '1931-5' WHERE `title` = 'Manokotak' AND `list_id` = 'race';
5791 #EndIf
5793 #IfNotRow2Dx2 list_options list_id race option_id manzanita title Manzanita
5794 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','manzanita','Manzanita','4520', '0',' 1227-8', 0);
5795 #EndIf
5797 #IfRow2D list_options list_id race option_id manzanita
5798 UPDATE `list_options` SET `notes` = '1227-8' WHERE `option_id` = 'manzanita' AND `list_id` = 'race';
5799 #EndIf
5801 #IfRow2D list_options list_id race title Manzanita
5802 UPDATE `list_options` SET `notes` = '1227-8' WHERE `title` = 'Manzanita' AND `list_id` = 'race';
5803 #EndIf
5805 #IfNotRow2Dx2 list_options list_id race option_id mariana_islander title Mariana Islander
5806 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mariana_islander','Mariana Islander','4530', '0',' 2089-1', 0);
5807 #EndIf
5809 #IfRow2D list_options list_id race option_id mariana_islander
5810 UPDATE `list_options` SET `notes` = '2089-1' WHERE `option_id` = 'mariana_islander' AND `list_id` = 'race';
5811 #EndIf
5813 #IfRow2D list_options list_id race title Mariana Islander
5814 UPDATE `list_options` SET `notes` = '2089-1' WHERE `title` = 'Mariana Islander' AND `list_id` = 'race';
5815 #EndIf
5817 #IfNotRow2Dx2 list_options list_id race option_id maricopa title Maricopa
5818 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','maricopa','Maricopa','4540', '0',' 1728-5', 0);
5819 #EndIf
5821 #IfRow2D list_options list_id race option_id maricopa
5822 UPDATE `list_options` SET `notes` = '1728-5' WHERE `option_id` = 'maricopa' AND `list_id` = 'race';
5823 #EndIf
5825 #IfRow2D list_options list_id race title Maricopa
5826 UPDATE `list_options` SET `notes` = '1728-5' WHERE `title` = 'Maricopa' AND `list_id` = 'race';
5827 #EndIf
5829 #IfNotRow2Dx2 list_options list_id race option_id marshall title Marshall
5830 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','marshall','Marshall','4550', '0',' 1932-3', 0);
5831 #EndIf
5833 #IfRow2D list_options list_id race option_id marshall
5834 UPDATE `list_options` SET `notes` = '1932-3' WHERE `option_id` = 'marshall' AND `list_id` = 'race';
5835 #EndIf
5837 #IfRow2D list_options list_id race title Marshall
5838 UPDATE `list_options` SET `notes` = '1932-3' WHERE `title` = 'Marshall' AND `list_id` = 'race';
5839 #EndIf
5841 #IfNotRow2Dx2 list_options list_id race option_id marshallese title Marshallese
5842 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','marshallese','Marshallese','4560', '0',' 2090-9', 0);
5843 #EndIf
5845 #IfRow2D list_options list_id race option_id marshallese
5846 UPDATE `list_options` SET `notes` = '2090-9' WHERE `option_id` = 'marshallese' AND `list_id` = 'race';
5847 #EndIf
5849 #IfRow2D list_options list_id race title Marshallese
5850 UPDATE `list_options` SET `notes` = '2090-9' WHERE `title` = 'Marshallese' AND `list_id` = 'race';
5851 #EndIf
5853 #IfNotRow2Dx2 list_options list_id race option_id marshantucket_pequot title Marshantucket Pequot
5854 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','marshantucket_pequot','Marshantucket Pequot','4570', '0',' 1454-8', 0);
5855 #EndIf
5857 #IfRow2D list_options list_id race option_id marshantucket_pequot
5858 UPDATE `list_options` SET `notes` = '1454-8' WHERE `option_id` = 'marshantucket_pequot' AND `list_id` = 'race';
5859 #EndIf
5861 #IfRow2D list_options list_id race title Marshantucket Pequot
5862 UPDATE `list_options` SET `notes` = '1454-8' WHERE `title` = 'Marshantucket Pequot' AND `list_id` = 'race';
5863 #EndIf
5865 #IfNotRow2D list_options list_id race option_id marys_igloo
5866 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','marys_igloo',"Mary's Igloo",'4580', '0',' 1889-5', 0);
5867 #EndIf
5869 #IfRow2D list_options list_id race option_id marys_igloo
5870 UPDATE `list_options` SET `notes` = '1889-5' WHERE `option_id` = 'marys_igloo' AND `list_id` = 'race';
5871 #EndIf
5873 #IfNotRow2Dx2 list_options list_id race option_id mashpee_wampanoag title Mashpee Wampanoag
5874 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mashpee_wampanoag','Mashpee Wampanoag','4590', '0',' 1681-6', 0);
5875 #EndIf
5877 #IfRow2D list_options list_id race option_id mashpee_wampanoag
5878 UPDATE `list_options` SET `notes` = '1681-6' WHERE `option_id` = 'mashpee_wampanoag' AND `list_id` = 'race';
5879 #EndIf
5881 #IfRow2D list_options list_id race title Mashpee Wampanoag
5882 UPDATE `list_options` SET `notes` = '1681-6' WHERE `title` = 'Mashpee Wampanoag' AND `list_id` = 'race';
5883 #EndIf
5885 #IfNotRow2Dx2 list_options list_id race option_id matinecock title Matinecock
5886 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','matinecock','Matinecock','4600', '0',' 1326-8', 0);
5887 #EndIf
5889 #IfRow2D list_options list_id race option_id matinecock
5890 UPDATE `list_options` SET `notes` = '1326-8' WHERE `option_id` = 'matinecock' AND `list_id` = 'race';
5891 #EndIf
5893 #IfRow2D list_options list_id race title Matinecock
5894 UPDATE `list_options` SET `notes` = '1326-8' WHERE `title` = 'Matinecock' AND `list_id` = 'race';
5895 #EndIf
5897 #IfNotRow2Dx2 list_options list_id race option_id mattaponi title Mattaponi
5898 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mattaponi','Mattaponi','4610', '0',' 1354-0', 0);
5899 #EndIf
5901 #IfRow2D list_options list_id race option_id mattaponi
5902 UPDATE `list_options` SET `notes` = '1354-0' WHERE `option_id` = 'mattaponi' AND `list_id` = 'race';
5903 #EndIf
5905 #IfRow2D list_options list_id race title Mattaponi
5906 UPDATE `list_options` SET `notes` = '1354-0' WHERE `title` = 'Mattaponi' AND `list_id` = 'race';
5907 #EndIf
5909 #IfNotRow2Dx2 list_options list_id race option_id mattole title Mattole
5910 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mattole','Mattole','4620', '0',' 1060-3', 0);
5911 #EndIf
5913 #IfRow2D list_options list_id race option_id mattole
5914 UPDATE `list_options` SET `notes` = '1060-3' WHERE `option_id` = 'mattole' AND `list_id` = 'race';
5915 #EndIf
5917 #IfRow2D list_options list_id race title Mattole
5918 UPDATE `list_options` SET `notes` = '1060-3' WHERE `title` = 'Mattole' AND `list_id` = 'race';
5919 #EndIf
5921 #IfNotRow2Dx2 list_options list_id race option_id mauneluk_inupiat title Mauneluk Inupiat
5922 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mauneluk_inupiat','Mauneluk Inupiat','4630', '0',' 1870-5', 0);
5923 #EndIf
5925 #IfRow2D list_options list_id race option_id mauneluk_inupiat
5926 UPDATE `list_options` SET `notes` = '1870-5' WHERE `option_id` = 'mauneluk_inupiat' AND `list_id` = 'race';
5927 #EndIf
5929 #IfRow2D list_options list_id race title Mauneluk Inupiat
5930 UPDATE `list_options` SET `notes` = '1870-5' WHERE `title` = 'Mauneluk Inupiat' AND `list_id` = 'race';
5931 #EndIf
5933 #IfNotRow2Dx2 list_options list_id race option_id mcgrath title Mcgrath
5934 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mcgrath','Mcgrath','4640', '0',' 1779-8', 0);
5935 #EndIf
5937 #IfRow2D list_options list_id race option_id mcgrath
5938 UPDATE `list_options` SET `notes` = '1779-8' WHERE `option_id` = 'mcgrath' AND `list_id` = 'race';
5939 #EndIf
5941 #IfRow2D list_options list_id race title Mcgrath
5942 UPDATE `list_options` SET `notes` = '1779-8' WHERE `title` = 'Mcgrath' AND `list_id` = 'race';
5943 #EndIf
5945 #IfNotRow2Dx2 list_options list_id race option_id mdewakanton_sioux title Mdewakanton Sioux
5946 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mdewakanton_sioux','Mdewakanton Sioux','4650', '0',' 1620-4', 0);
5947 #EndIf
5949 #IfRow2D list_options list_id race option_id mdewakanton_sioux
5950 UPDATE `list_options` SET `notes` = '1620-4' WHERE `option_id` = 'mdewakanton_sioux' AND `list_id` = 'race';
5951 #EndIf
5953 #IfRow2D list_options list_id race title Mdewakanton Sioux
5954 UPDATE `list_options` SET `notes` = '1620-4' WHERE `title` = 'Mdewakanton Sioux' AND `list_id` = 'race';
5955 #EndIf
5957 #IfNotRow2Dx2 list_options list_id race option_id mekoryuk title Mekoryuk
5958 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mekoryuk','Mekoryuk','4660', '0',' 1933-1', 0);
5959 #EndIf
5961 #IfRow2D list_options list_id race option_id mekoryuk
5962 UPDATE `list_options` SET `notes` = '1933-1' WHERE `option_id` = 'mekoryuk' AND `list_id` = 'race';
5963 #EndIf
5965 #IfRow2D list_options list_id race title Mekoryuk
5966 UPDATE `list_options` SET `notes` = '1933-1' WHERE `title` = 'Mekoryuk' AND `list_id` = 'race';
5967 #EndIf
5969 #IfNotRow2Dx2 list_options list_id race option_id melanesian title Melanesian
5970 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','melanesian','Melanesian','4670', '0',' 2100-6', 0);
5971 #EndIf
5973 #IfRow2D list_options list_id race option_id melanesian
5974 UPDATE `list_options` SET `notes` = '2100-6' WHERE `option_id` = 'melanesian' AND `list_id` = 'race';
5975 #EndIf
5977 #IfRow2D list_options list_id race title Melanesian
5978 UPDATE `list_options` SET `notes` = '2100-6' WHERE `title` = 'Melanesian' AND `list_id` = 'race';
5979 #EndIf
5981 #IfNotRow2Dx2 list_options list_id race option_id menominee title Menominee
5982 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','menominee','Menominee','4680', '0',' 1356-5', 0);
5983 #EndIf
5985 #IfRow2D list_options list_id race option_id menominee
5986 UPDATE `list_options` SET `notes` = '1356-5' WHERE `option_id` = 'menominee' AND `list_id` = 'race';
5987 #EndIf
5989 #IfRow2D list_options list_id race title Menominee
5990 UPDATE `list_options` SET `notes` = '1356-5' WHERE `title` = 'Menominee' AND `list_id` = 'race';
5991 #EndIf
5993 #IfNotRow2Dx2 list_options list_id race option_id mentasta_lake title Mentasta Lake
5994 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mentasta_lake','Mentasta Lake','4690', '0',' 1781-4', 0);
5995 #EndIf
5997 #IfRow2D list_options list_id race option_id mentasta_lake
5998 UPDATE `list_options` SET `notes` = '1781-4' WHERE `option_id` = 'mentasta_lake' AND `list_id` = 'race';
5999 #EndIf
6001 #IfRow2D list_options list_id race title Mentasta Lake
6002 UPDATE `list_options` SET `notes` = '1781-4' WHERE `title` = 'Mentasta Lake' AND `list_id` = 'race';
6003 #EndIf
6005 #IfNotRow2Dx2 list_options list_id race option_id mesa_grande title Mesa Grande
6006 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mesa_grande','Mesa Grande','4700', '0',' 1228-6', 0);
6007 #EndIf
6009 #IfRow2D list_options list_id race option_id mesa_grande
6010 UPDATE `list_options` SET `notes` = '1228-6' WHERE `option_id` = 'mesa_grande' AND `list_id` = 'race';
6011 #EndIf
6013 #IfRow2D list_options list_id race title Mesa Grande
6014 UPDATE `list_options` SET `notes` = '1228-6' WHERE `title` = 'Mesa Grande' AND `list_id` = 'race';
6015 #EndIf
6017 #IfNotRow2Dx2 list_options list_id race option_id mescalero_apache title Mescalero Apache
6018 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mescalero_apache','Mescalero Apache','4710', '0',' 1015-7', 0);
6019 #EndIf
6021 #IfRow2D list_options list_id race option_id mescalero_apache
6022 UPDATE `list_options` SET `notes` = '1015-7' WHERE `option_id` = 'mescalero_apache' AND `list_id` = 'race';
6023 #EndIf
6025 #IfRow2D list_options list_id race title Mescalero Apache
6026 UPDATE `list_options` SET `notes` = '1015-7' WHERE `title` = 'Mescalero Apache' AND `list_id` = 'race';
6027 #EndIf
6029 #IfNotRow2Dx2 list_options list_id race option_id metlakatla title Metlakatla
6030 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','metlakatla','Metlakatla','4720', '0',' 1838-2', 0);
6031 #EndIf
6033 #IfRow2D list_options list_id race option_id metlakatla
6034 UPDATE `list_options` SET `notes` = '1838-2' WHERE `option_id` = 'metlakatla' AND `list_id` = 'race';
6035 #EndIf
6037 #IfRow2D list_options list_id race title Metlakatla
6038 UPDATE `list_options` SET `notes` = '1838-2' WHERE `title` = 'Metlakatla' AND `list_id` = 'race';
6039 #EndIf
6041 #IfNotRow2Dx2 list_options list_id race option_id mexican_american_indian title Mexican American Indian
6042 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mexican_american_indian','Mexican American Indian','4730', '0',' 1072-8', 0);
6043 #EndIf
6045 #IfRow2D list_options list_id race option_id mexican_american_indian
6046 UPDATE `list_options` SET `notes` = '1072-8' WHERE `option_id` = 'mexican_american_indian' AND `list_id` = 'race';
6047 #EndIf
6049 #IfRow2D list_options list_id race title Mexican American Indian
6050 UPDATE `list_options` SET `notes` = '1072-8' WHERE `title` = 'Mexican American Indian' AND `list_id` = 'race';
6051 #EndIf
6053 #IfNotRow2Dx2 list_options list_id race option_id miami title Miami
6054 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','miami','Miami','4740', '0',' 1358-1', 0);
6055 #EndIf
6057 #IfRow2D list_options list_id race option_id miami
6058 UPDATE `list_options` SET `notes` = '1358-1' WHERE `option_id` = 'miami' AND `list_id` = 'race';
6059 #EndIf
6061 #IfRow2D list_options list_id race title Miami
6062 UPDATE `list_options` SET `notes` = '1358-1' WHERE `title` = 'Miami' AND `list_id` = 'race';
6063 #EndIf
6065 #IfNotRow2Dx2 list_options list_id race option_id miccosukee title Miccosukee
6066 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','miccosukee','Miccosukee','4750', '0',' 1363-1', 0);
6067 #EndIf
6069 #IfRow2D list_options list_id race option_id miccosukee
6070 UPDATE `list_options` SET `notes` = '1363-1' WHERE `option_id` = 'miccosukee' AND `list_id` = 'race';
6071 #EndIf
6073 #IfRow2D list_options list_id race title Miccosukee
6074 UPDATE `list_options` SET `notes` = '1363-1' WHERE `title` = 'Miccosukee' AND `list_id` = 'race';
6075 #EndIf
6077 #IfNotRow2Dx2 list_options list_id race option_id michigan_ottawa title Michigan Ottawa
6078 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','michigan_ottawa','Michigan Ottawa','4760', '0',' 1413-4', 0);
6079 #EndIf
6081 #IfRow2D list_options list_id race option_id michigan_ottawa
6082 UPDATE `list_options` SET `notes` = '1413-4' WHERE `option_id` = 'michigan_ottawa' AND `list_id` = 'race';
6083 #EndIf
6085 #IfRow2D list_options list_id race title Michigan Ottawa
6086 UPDATE `list_options` SET `notes` = '1413-4' WHERE `title` = 'Michigan Ottawa' AND `list_id` = 'race';
6087 #EndIf
6089 #IfNotRow2Dx2 list_options list_id race option_id micmac title Micmac
6090 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','micmac','Micmac','4770', '0',' 1365-6', 0);
6091 #EndIf
6093 #IfRow2D list_options list_id race option_id micmac
6094 UPDATE `list_options` SET `notes` = '1365-6' WHERE `option_id` = 'micmac' AND `list_id` = 'race';
6095 #EndIf
6097 #IfRow2D list_options list_id race title Micmac
6098 UPDATE `list_options` SET `notes` = '1365-6' WHERE `title` = 'Micmac' AND `list_id` = 'race';
6099 #EndIf
6101 #IfNotRow2Dx2 list_options list_id race option_id micronesian title Micronesian
6102 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','micronesian','Micronesian','4780', '0',' 2085-9', 0);
6103 #EndIf
6105 #IfRow2D list_options list_id race option_id micronesian
6106 UPDATE `list_options` SET `notes` = '2085-9' WHERE `option_id` = 'micronesian' AND `list_id` = 'race';
6107 #EndIf
6109 #IfRow2D list_options list_id race title Micronesian
6110 UPDATE `list_options` SET `notes` = '2085-9' WHERE `title` = 'Micronesian' AND `list_id` = 'race';
6111 #EndIf
6113 #IfNotRow2Dx2 list_options list_id race option_id middle_eastern_north_african title Middle Eastern or North African
6114 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','middle_eastern_north_african','Middle Eastern or North African','4790', '0',' 2118-8', 0);
6115 #EndIf
6117 #IfRow2D list_options list_id race option_id middle_eastern_north_african
6118 UPDATE `list_options` SET `notes` = '2118-8' WHERE `option_id` = 'middle_eastern_north_african' AND `list_id` = 'race';
6119 #EndIf
6121 #IfRow2D list_options list_id race title Middle Eastern or North African
6122 UPDATE `list_options` SET `notes` = '2118-8' WHERE `title` = 'Middle Eastern or North African' AND `list_id` = 'race';
6123 #EndIf
6125 #IfNotRow2Dx2 list_options list_id race option_id mille_lacs title Mille Lacs
6126 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mille_lacs','Mille Lacs','4800', '0',' 1138-7', 0);
6127 #EndIf
6129 #IfRow2D list_options list_id race option_id mille_lacs
6130 UPDATE `list_options` SET `notes` = '1138-7' WHERE `option_id` = 'mille_lacs' AND `list_id` = 'race';
6131 #EndIf
6133 #IfRow2D list_options list_id race title Mille Lacs
6134 UPDATE `list_options` SET `notes` = '1138-7' WHERE `title` = 'Mille Lacs' AND `list_id` = 'race';
6135 #EndIf
6137 #IfNotRow2Dx2 list_options list_id race option_id miniconjou title Miniconjou
6138 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','miniconjou','Miniconjou','4810', '0',' 1621-2', 0);
6139 #EndIf
6141 #IfRow2D list_options list_id race option_id miniconjou
6142 UPDATE `list_options` SET `notes` = '1621-2' WHERE `option_id` = 'miniconjou' AND `list_id` = 'race';
6143 #EndIf
6145 #IfRow2D list_options list_id race title Miniconjou
6146 UPDATE `list_options` SET `notes` = '1621-2' WHERE `title` = 'Miniconjou' AND `list_id` = 'race';
6147 #EndIf
6149 #IfNotRow2Dx2 list_options list_id race option_id minnesota_chippewa title Minnesota Chippewa
6150 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','minnesota_chippewa','Minnesota Chippewa','4820', '0',' 1139-5', 0);
6151 #EndIf
6153 #IfRow2D list_options list_id race option_id minnesota_chippewa
6154 UPDATE `list_options` SET `notes` = '1139-5' WHERE `option_id` = 'minnesota_chippewa' AND `list_id` = 'race';
6155 #EndIf
6157 #IfRow2D list_options list_id race title Minnesota Chippewa
6158 UPDATE `list_options` SET `notes` = '1139-5' WHERE `title` = 'Minnesota Chippewa' AND `list_id` = 'race';
6159 #EndIf
6161 #IfNotRow2Dx2 list_options list_id race option_id minto title Minto
6162 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','minto','Minto','4830', '0',' 1782-2', 0);
6163 #EndIf
6165 #IfRow2D list_options list_id race option_id minto
6166 UPDATE `list_options` SET `notes` = '1782-2' WHERE `option_id` = 'minto' AND `list_id` = 'race';
6167 #EndIf
6169 #IfRow2D list_options list_id race title Minto
6170 UPDATE `list_options` SET `notes` = '1782-2' WHERE `title` = 'Minto' AND `list_id` = 'race';
6171 #EndIf
6173 #IfNotRow2Dx2 list_options list_id race option_id mission_indians title Mission Indians
6174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mission_indians','Mission Indians','4840', '0',' 1368-0', 0);
6175 #EndIf
6177 #IfRow2D list_options list_id race option_id mission_indians
6178 UPDATE `list_options` SET `notes` = '1368-0' WHERE `option_id` = 'mission_indians' AND `list_id` = 'race';
6179 #EndIf
6181 #IfRow2D list_options list_id race title Mission Indians
6182 UPDATE `list_options` SET `notes` = '1368-0' WHERE `title` = 'Mission Indians' AND `list_id` = 'race';
6183 #EndIf
6185 #IfNotRow2Dx2 list_options list_id race option_id mississippi_choctaw title Mississippi Choctaw
6186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mississippi_choctaw','Mississippi Choctaw','4850', '0',' 1158-5', 0);
6187 #EndIf
6189 #IfRow2D list_options list_id race option_id mississippi_choctaw
6190 UPDATE `list_options` SET `notes` = '1158-5' WHERE `option_id` = 'mississippi_choctaw' AND `list_id` = 'race';
6191 #EndIf
6193 #IfRow2D list_options list_id race title Mississippi Choctaw
6194 UPDATE `list_options` SET `notes` = '1158-5' WHERE `title` = 'Mississippi Choctaw' AND `list_id` = 'race';
6195 #EndIf
6197 #IfNotRow2Dx2 list_options list_id race option_id missouri_sac_and_fox title Missouri Sac and Fox
6198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','missouri_sac_and_fox','Missouri Sac and Fox','4860', '0',' 1553-7', 0);
6199 #EndIf
6201 #IfRow2D list_options list_id race option_id missouri_sac_and_fox
6202 UPDATE `list_options` SET `notes` = '1553-7' WHERE `option_id` = 'missouri_sac_and_fox' AND `list_id` = 'race';
6203 #EndIf
6205 #IfRow2D list_options list_id race title Missouri Sac and Fox
6206 UPDATE `list_options` SET `notes` = '1553-7' WHERE `title` = 'Missouri Sac and Fox' AND `list_id` = 'race';
6207 #EndIf
6209 #IfNotRow2Dx2 list_options list_id race option_id miwok title Miwok
6210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','miwok','Miwok','4870', '0',' 1370-6', 0);
6211 #EndIf
6213 #IfRow2D list_options list_id race option_id miwok
6214 UPDATE `list_options` SET `notes` = '1370-6' WHERE `option_id` = 'miwok' AND `list_id` = 'race';
6215 #EndIf
6217 #IfRow2D list_options list_id race title Miwok
6218 UPDATE `list_options` SET `notes` = '1370-6' WHERE `title` = 'Miwok' AND `list_id` = 'race';
6219 #EndIf
6221 #IfNotRow2Dx2 list_options list_id race option_id moapa title Moapa
6222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','moapa','Moapa','4880', '0',' 1428-2', 0);
6223 #EndIf
6225 #IfRow2D list_options list_id race option_id moapa
6226 UPDATE `list_options` SET `notes` = '1428-2' WHERE `option_id` = 'moapa' AND `list_id` = 'race';
6227 #EndIf
6229 #IfRow2D list_options list_id race title Moapa
6230 UPDATE `list_options` SET `notes` = '1428-2' WHERE `title` = 'Moapa' AND `list_id` = 'race';
6231 #EndIf
6233 #IfNotRow2Dx2 list_options list_id race option_id modoc title Modoc
6234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','modoc','Modoc','4890', '0',' 1372-2', 0);
6235 #EndIf
6237 #IfRow2D list_options list_id race option_id modoc
6238 UPDATE `list_options` SET `notes` = '1372-2' WHERE `option_id` = 'modoc' AND `list_id` = 'race';
6239 #EndIf
6241 #IfRow2D list_options list_id race title Modoc
6242 UPDATE `list_options` SET `notes` = '1372-2' WHERE `title` = 'Modoc' AND `list_id` = 'race';
6243 #EndIf
6245 #IfNotRow2Dx2 list_options list_id race option_id mohave title Mohave
6246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mohave','Mohave','4900', '0',' 1729-3', 0);
6247 #EndIf
6249 #IfRow2D list_options list_id race option_id mohave
6250 UPDATE `list_options` SET `notes` = '1729-3' WHERE `option_id` = 'mohave' AND `list_id` = 'race';
6251 #EndIf
6253 #IfRow2D list_options list_id race title Mohave
6254 UPDATE `list_options` SET `notes` = '1729-3' WHERE `title` = 'Mohave' AND `list_id` = 'race';
6255 #EndIf
6257 #IfNotRow2Dx2 list_options list_id race option_id mohawk title Mohawk
6258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mohawk','Mohawk','4910', '0',' 1287-2', 0);
6259 #EndIf
6261 #IfRow2D list_options list_id race option_id mohawk
6262 UPDATE `list_options` SET `notes` = '1287-2' WHERE `option_id` = 'mohawk' AND `list_id` = 'race';
6263 #EndIf
6265 #IfRow2D list_options list_id race title Mohawk
6266 UPDATE `list_options` SET `notes` = '1287-2' WHERE `title` = 'Mohawk' AND `list_id` = 'race';
6267 #EndIf
6269 #IfNotRow2Dx2 list_options list_id race option_id mohegan title Mohegan
6270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mohegan','Mohegan','4920', '0',' 1374-8', 0);
6271 #EndIf
6273 #IfRow2D list_options list_id race option_id mohegan
6274 UPDATE `list_options` SET `notes` = '1374-8' WHERE `option_id` = 'mohegan' AND `list_id` = 'race';
6275 #EndIf
6277 #IfRow2D list_options list_id race title Mohegan
6278 UPDATE `list_options` SET `notes` = '1374-8' WHERE `title` = 'Mohegan' AND `list_id` = 'race';
6279 #EndIf
6281 #IfNotRow2Dx2 list_options list_id race option_id molala title Molala
6282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','molala','Molala','4930', '0',' 1396-1', 0);
6283 #EndIf
6285 #IfRow2D list_options list_id race option_id molala
6286 UPDATE `list_options` SET `notes` = '1396-1' WHERE `option_id` = 'molala' AND `list_id` = 'race';
6287 #EndIf
6289 #IfRow2D list_options list_id race title Molala
6290 UPDATE `list_options` SET `notes` = '1396-1' WHERE `title` = 'Molala' AND `list_id` = 'race';
6291 #EndIf
6293 #IfNotRow2Dx2 list_options list_id race option_id mono title Mono
6294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mono','Mono','4940', '0',' 1376-3', 0);
6295 #EndIf
6297 #IfRow2D list_options list_id race option_id mono
6298 UPDATE `list_options` SET `notes` = '1376-3' WHERE `option_id` = 'mono' AND `list_id` = 'race';
6299 #EndIf
6301 #IfRow2D list_options list_id race title Mono
6302 UPDATE `list_options` SET `notes` = '1376-3' WHERE `title` = 'Mono' AND `list_id` = 'race';
6303 #EndIf
6305 #IfNotRow2Dx2 list_options list_id race option_id montauk title Montauk
6306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','montauk','Montauk','4950', '0',' 1327-6', 0);
6307 #EndIf
6309 #IfRow2D list_options list_id race option_id montauk
6310 UPDATE `list_options` SET `notes` = '1327-6' WHERE `option_id` = 'montauk' AND `list_id` = 'race';
6311 #EndIf
6313 #IfRow2D list_options list_id race title Montauk
6314 UPDATE `list_options` SET `notes` = '1327-6' WHERE `title` = 'Montauk' AND `list_id` = 'race';
6315 #EndIf
6317 #IfNotRow2Dx2 list_options list_id race option_id moor title Moor
6318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','moor','Moor','4960', '0',' 1237-7', 0);
6319 #EndIf
6321 #IfRow2D list_options list_id race option_id moor
6322 UPDATE `list_options` SET `notes` = '1237-7' WHERE `option_id` = 'moor' AND `list_id` = 'race';
6323 #EndIf
6325 #IfRow2D list_options list_id race title Moor
6326 UPDATE `list_options` SET `notes` = '1237-7' WHERE `title` = 'Moor' AND `list_id` = 'race';
6327 #EndIf
6329 #IfNotRow2Dx2 list_options list_id race option_id morongo title Morongo
6330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','morongo','Morongo','4970', '0',' 1049-6', 0);
6331 #EndIf
6333 #IfRow2D list_options list_id race option_id morongo
6334 UPDATE `list_options` SET `notes` = '1049-6' WHERE `option_id` = 'morongo' AND `list_id` = 'race';
6335 #EndIf
6337 #IfRow2D list_options list_id race title Morongo
6338 UPDATE `list_options` SET `notes` = '1049-6' WHERE `title` = 'Morongo' AND `list_id` = 'race';
6339 #EndIf
6341 #IfNotRow2Dx2 list_options list_id race option_id mountain_maidu title Mountain Maidu
6342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mountain_maidu','Mountain Maidu','4980', '0',' 1345-8', 0);
6343 #EndIf
6345 #IfRow2D list_options list_id race option_id mountain_maidu
6346 UPDATE `list_options` SET `notes` = '1345-8' WHERE `option_id` = 'mountain_maidu' AND `list_id` = 'race';
6347 #EndIf
6349 #IfRow2D list_options list_id race title Mountain Maidu
6350 UPDATE `list_options` SET `notes` = '1345-8' WHERE `title` = 'Mountain Maidu' AND `list_id` = 'race';
6351 #EndIf
6353 #IfNotRow2Dx2 list_options list_id race option_id mountain_village title Mountain Village
6354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mountain_village','Mountain Village','4990', '0',' 1934-9', 0);
6355 #EndIf
6357 #IfRow2D list_options list_id race option_id mountain_village
6358 UPDATE `list_options` SET `notes` = '1934-9' WHERE `option_id` = 'mountain_village' AND `list_id` = 'race';
6359 #EndIf
6361 #IfRow2D list_options list_id race title Mountain Village
6362 UPDATE `list_options` SET `notes` = '1934-9' WHERE `title` = 'Mountain Village' AND `list_id` = 'race';
6363 #EndIf
6365 #IfNotRow2Dx2 list_options list_id race option_id mowa_band_of_choctaw title Mowa Band of Choctaw
6366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','mowa_band_of_choctaw','Mowa Band of Choctaw','5000', '0',' 1159-3', 0);
6367 #EndIf
6369 #IfRow2D list_options list_id race option_id mowa_band_of_choctaw
6370 UPDATE `list_options` SET `notes` = '1159-3' WHERE `option_id` = 'mowa_band_of_choctaw' AND `list_id` = 'race';
6371 #EndIf
6373 #IfRow2D list_options list_id race title Mowa Band of Choctaw
6374 UPDATE `list_options` SET `notes` = '1159-3' WHERE `title` = 'Mowa Band of Choctaw' AND `list_id` = 'race';
6375 #EndIf
6377 #IfNotRow2Dx2 list_options list_id race option_id muckleshoot title Muckleshoot
6378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','muckleshoot','Muckleshoot','5010', '0',' 1522-2', 0);
6379 #EndIf
6381 #IfRow2D list_options list_id race option_id muckleshoot
6382 UPDATE `list_options` SET `notes` = '1522-2' WHERE `option_id` = 'muckleshoot' AND `list_id` = 'race';
6383 #EndIf
6385 #IfRow2D list_options list_id race title Muckleshoot
6386 UPDATE `list_options` SET `notes` = '1522-2' WHERE `title` = 'Muckleshoot' AND `list_id` = 'race';
6387 #EndIf
6389 #IfNotRow2Dx2 list_options list_id race option_id munsee title Munsee
6390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','munsee','Munsee','5020', '0',' 1217-9', 0);
6391 #EndIf
6393 #IfRow2D list_options list_id race option_id munsee
6394 UPDATE `list_options` SET `notes` = '1217-9' WHERE `option_id` = 'munsee' AND `list_id` = 'race';
6395 #EndIf
6397 #IfRow2D list_options list_id race title Munsee
6398 UPDATE `list_options` SET `notes` = '1217-9' WHERE `title` = 'Munsee' AND `list_id` = 'race';
6399 #EndIf
6401 #IfNotRow2Dx2 list_options list_id race option_id naknek title Naknek
6402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','naknek','Naknek','5030', '0',' 1935-6', 0);
6403 #EndIf
6405 #IfRow2D list_options list_id race option_id naknek
6406 UPDATE `list_options` SET `notes` = '1935-6' WHERE `option_id` = 'naknek' AND `list_id` = 'race';
6407 #EndIf
6409 #IfRow2D list_options list_id race title Naknek
6410 UPDATE `list_options` SET `notes` = '1935-6' WHERE `title` = 'Naknek' AND `list_id` = 'race';
6411 #EndIf
6413 #IfNotRow2Dx2 list_options list_id race option_id nambe title Nambe
6414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nambe','Nambe','5040', '0',' 1498-5', 0);
6415 #EndIf
6417 #IfRow2D list_options list_id race option_id nambe
6418 UPDATE `list_options` SET `notes` = '1498-5' WHERE `option_id` = 'nambe' AND `list_id` = 'race';
6419 #EndIf
6421 #IfRow2D list_options list_id race title Nambe
6422 UPDATE `list_options` SET `notes` = '1498-5' WHERE `title` = 'Nambe' AND `list_id` = 'race';
6423 #EndIf
6425 #IfNotRow2Dx2 list_options list_id race option_id namibian title Namibian
6426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','namibian','Namibian','5050', '0',' 2064-4', 0);
6427 #EndIf
6429 #IfRow2D list_options list_id race option_id namibian
6430 UPDATE `list_options` SET `notes` = '2064-4' WHERE `option_id` = 'namibian' AND `list_id` = 'race';
6431 #EndIf
6433 #IfRow2D list_options list_id race title Namibian
6434 UPDATE `list_options` SET `notes` = '2064-4' WHERE `title` = 'Namibian' AND `list_id` = 'race';
6435 #EndIf
6437 #IfNotRow2Dx2 list_options list_id race option_id nana_inupiat title Nana Inupiat
6438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nana_inupiat','Nana Inupiat','5060', '0',' 1871-3', 0);
6439 #EndIf
6441 #IfRow2D list_options list_id race option_id nana_inupiat
6442 UPDATE `list_options` SET `notes` = '1871-3' WHERE `option_id` = 'nana_inupiat' AND `list_id` = 'race';
6443 #EndIf
6445 #IfRow2D list_options list_id race title Nana Inupiat
6446 UPDATE `list_options` SET `notes` = '1871-3' WHERE `title` = 'Nana Inupiat' AND `list_id` = 'race';
6447 #EndIf
6449 #IfNotRow2Dx2 list_options list_id race option_id nansemond title Nansemond
6450 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nansemond','Nansemond','5070', '0',' 1238-5', 0);
6451 #EndIf
6453 #IfRow2D list_options list_id race option_id nansemond
6454 UPDATE `list_options` SET `notes` = '1238-5' WHERE `option_id` = 'nansemond' AND `list_id` = 'race';
6455 #EndIf
6457 #IfRow2D list_options list_id race title Nansemond
6458 UPDATE `list_options` SET `notes` = '1238-5' WHERE `title` = 'Nansemond' AND `list_id` = 'race';
6459 #EndIf
6461 #IfNotRow2Dx2 list_options list_id race option_id nanticoke title Nanticoke
6462 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nanticoke','Nanticoke','5080', '0',' 1378-9', 0);
6463 #EndIf
6465 #IfRow2D list_options list_id race option_id nanticoke
6466 UPDATE `list_options` SET `notes` = '1378-9' WHERE `option_id` = 'nanticoke' AND `list_id` = 'race';
6467 #EndIf
6469 #IfRow2D list_options list_id race title Nanticoke
6470 UPDATE `list_options` SET `notes` = '1378-9' WHERE `title` = 'Nanticoke' AND `list_id` = 'race';
6471 #EndIf
6473 #IfNotRow2Dx2 list_options list_id race option_id napakiak title Napakiak
6474 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','napakiak','Napakiak','5090', '0',' 1937-2', 0);
6475 #EndIf
6477 #IfRow2D list_options list_id race option_id napakiak
6478 UPDATE `list_options` SET `notes` = '1937-2' WHERE `option_id` = 'napakiak' AND `list_id` = 'race';
6479 #EndIf
6481 #IfRow2D list_options list_id race title Napakiak
6482 UPDATE `list_options` SET `notes` = '1937-2' WHERE `title` = 'Napakiak' AND `list_id` = 'race';
6483 #EndIf
6485 #IfNotRow2Dx2 list_options list_id race option_id napaskiak title Napaskiak
6486 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','napaskiak','Napaskiak','5100', '0',' 1938-0', 0);
6487 #EndIf
6489 #IfRow2D list_options list_id race option_id napaskiak
6490 UPDATE `list_options` SET `notes` = '1938-0' WHERE `option_id` = 'napaskiak' AND `list_id` = 'race';
6491 #EndIf
6493 #IfRow2D list_options list_id race title Napaskiak
6494 UPDATE `list_options` SET `notes` = '1938-0' WHERE `title` = 'Napaskiak' AND `list_id` = 'race';
6495 #EndIf
6497 #IfNotRow2Dx2 list_options list_id race option_id napaumute title Napaumute
6498 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','napaumute','Napaumute','5110', '0',' 1936-4', 0);
6499 #EndIf
6501 #IfRow2D list_options list_id race option_id napaumute
6502 UPDATE `list_options` SET `notes` = '1936-4' WHERE `option_id` = 'napaumute' AND `list_id` = 'race';
6503 #EndIf
6505 #IfRow2D list_options list_id race title Napaumute
6506 UPDATE `list_options` SET `notes` = '1936-4' WHERE `title` = 'Napaumute' AND `list_id` = 'race';
6507 #EndIf
6509 #IfNotRow2Dx2 list_options list_id race option_id narragansett title Narragansett
6510 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','narragansett','Narragansett','5120', '0',' 1380-5', 0);
6511 #EndIf
6513 #IfRow2D list_options list_id race option_id narragansett
6514 UPDATE `list_options` SET `notes` = '1380-5' WHERE `option_id` = 'narragansett' AND `list_id` = 'race';
6515 #EndIf
6517 #IfRow2D list_options list_id race title Narragansett
6518 UPDATE `list_options` SET `notes` = '1380-5' WHERE `title` = 'Narragansett' AND `list_id` = 'race';
6519 #EndIf
6521 #IfNotRow2Dx2 list_options list_id race option_id natchez title Natchez
6522 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','natchez','Natchez','5130', '0',' 1239-3', 0);
6523 #EndIf
6525 #IfRow2D list_options list_id race option_id natchez
6526 UPDATE `list_options` SET `notes` = '1239-3' WHERE `option_id` = 'natchez' AND `list_id` = 'race';
6527 #EndIf
6529 #IfRow2D list_options list_id race title Natchez
6530 UPDATE `list_options` SET `notes` = '1239-3' WHERE `title` = 'Natchez' AND `list_id` = 'race';
6531 #EndIf
6533 #IfNotRow2Dx2 list_options list_id race option_id native_hawaiian title Native Hawaiian
6534 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','native_hawaiian','Native Hawaiian','5140', '0',' 2079-2', 0);
6535 #EndIf
6537 #IfRow2D list_options list_id race option_id native_hawaiian
6538 UPDATE `list_options` SET `notes` = '2079-2' WHERE `option_id` = 'native_hawaiian' AND `list_id` = 'race';
6539 #EndIf
6541 #IfRow2D list_options list_id race title Native Hawaiian
6542 UPDATE `list_options` SET `notes` = '2079-2' WHERE `title` = 'Native Hawaiian' AND `list_id` = 'race';
6543 #EndIf
6545 #IfNotRow2Dx2 list_options list_id race option_id nausu_waiwash title Nausu Waiwash
6546 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nausu_waiwash','Nausu Waiwash','5160', '0',' 1240-1', 0);
6547 #EndIf
6549 #IfRow2D list_options list_id race option_id nausu_waiwash
6550 UPDATE `list_options` SET `notes` = '1240-1' WHERE `option_id` = 'nausu_waiwash' AND `list_id` = 'race';
6551 #EndIf
6553 #IfRow2D list_options list_id race title Nausu Waiwash
6554 UPDATE `list_options` SET `notes` = '1240-1' WHERE `title` = 'Nausu Waiwash' AND `list_id` = 'race';
6555 #EndIf
6557 #IfNotRow2Dx2 list_options list_id race option_id navajo title Navajo
6558 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','navajo','Navajo','5170', '0',' 1382-1', 0);
6559 #EndIf
6561 #IfRow2D list_options list_id race option_id navajo
6562 UPDATE `list_options` SET `notes` = '1382-1' WHERE `option_id` = 'navajo' AND `list_id` = 'race';
6563 #EndIf
6565 #IfRow2D list_options list_id race title Navajo
6566 UPDATE `list_options` SET `notes` = '1382-1' WHERE `title` = 'Navajo' AND `list_id` = 'race';
6567 #EndIf
6569 #IfNotRow2Dx2 list_options list_id race option_id nebraska_ponca title Nebraska Ponca
6570 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nebraska_ponca','Nebraska Ponca','5180', '0',' 1475-3', 0);
6571 #EndIf
6573 #IfRow2D list_options list_id race option_id nebraska_ponca
6574 UPDATE `list_options` SET `notes` = '1475-3' WHERE `option_id` = 'nebraska_ponca' AND `list_id` = 'race';
6575 #EndIf
6577 #IfRow2D list_options list_id race title Nebraska Ponca
6578 UPDATE `list_options` SET `notes` = '1475-3' WHERE `title` = 'Nebraska Ponca' AND `list_id` = 'race';
6579 #EndIf
6581 #IfNotRow2Dx2 list_options list_id race option_id nebraska_winnebago title Nebraska Winnebago
6582 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nebraska_winnebago','Nebraska Winnebago','5190', '0',' 1698-0', 0);
6583 #EndIf
6585 #IfRow2D list_options list_id race option_id nebraska_winnebago
6586 UPDATE `list_options` SET `notes` = '1698-0' WHERE `option_id` = 'nebraska_winnebago' AND `list_id` = 'race';
6587 #EndIf
6589 #IfRow2D list_options list_id race title Nebraska Winnebago
6590 UPDATE `list_options` SET `notes` = '1698-0' WHERE `title` = 'Nebraska Winnebago' AND `list_id` = 'race';
6591 #EndIf
6593 #IfNotRow2Dx2 list_options list_id race option_id nelson_lagoon title Nelson Lagoon
6594 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nelson_lagoon','Nelson Lagoon','5200', '0',' 2016-4', 0);
6595 #EndIf
6597 #IfRow2D list_options list_id race option_id nelson_lagoon
6598 UPDATE `list_options` SET `notes` = '2016-4' WHERE `option_id` = 'nelson_lagoon' AND `list_id` = 'race';
6599 #EndIf
6601 #IfRow2D list_options list_id race title Nelson Lagoon
6602 UPDATE `list_options` SET `notes` = '2016-4' WHERE `title` = 'Nelson Lagoon' AND `list_id` = 'race';
6603 #EndIf
6605 #IfNotRow2Dx2 list_options list_id race option_id nenana title Nenana
6606 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nenana','Nenana','5210', '0',' 1783-0', 0);
6607 #EndIf
6609 #IfRow2D list_options list_id race option_id nenana
6610 UPDATE `list_options` SET `notes` = '1783-0' WHERE `option_id` = 'nenana' AND `list_id` = 'race';
6611 #EndIf
6613 #IfRow2D list_options list_id race title Nenana
6614 UPDATE `list_options` SET `notes` = '1783-0' WHERE `title` = 'Nenana' AND `list_id` = 'race';
6615 #EndIf
6617 #IfNotRow2Dx2 list_options list_id race option_id nepalese title Nepalese
6618 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nepalese','Nepalese','5220', '0',' 2050-3', 0);
6619 #EndIf
6621 #IfRow2D list_options list_id race option_id nepalese
6622 UPDATE `list_options` SET `notes` = '2050-3' WHERE `option_id` = 'nepalese' AND `list_id` = 'race';
6623 #EndIf
6625 #IfRow2D list_options list_id race title Nepalese
6626 UPDATE `list_options` SET `notes` = '2050-3' WHERE `title` = 'Nepalese' AND `list_id` = 'race';
6627 #EndIf
6629 #IfNotRow2Dx2 list_options list_id race option_id new_hebrides title New Hebrides
6630 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','new_hebrides','New Hebrides','5230', '0',' 2104-8', 0);
6631 #EndIf
6633 #IfRow2D list_options list_id race option_id new_hebrides
6634 UPDATE `list_options` SET `notes` = '2104-8' WHERE `option_id` = 'new_hebrides' AND `list_id` = 'race';
6635 #EndIf
6637 #IfRow2D list_options list_id race title New Hebrides
6638 UPDATE `list_options` SET `notes` = '2104-8' WHERE `title` = 'New Hebrides' AND `list_id` = 'race';
6639 #EndIf
6641 #IfNotRow2Dx2 list_options list_id race option_id new_stuyahok title New Stuyahok
6642 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','new_stuyahok','New Stuyahok','5240', '0',' 1940-6', 0);
6643 #EndIf
6645 #IfRow2D list_options list_id race option_id new_stuyahok
6646 UPDATE `list_options` SET `notes` = '1940-6' WHERE `option_id` = 'new_stuyahok' AND `list_id` = 'race';
6647 #EndIf
6649 #IfRow2D list_options list_id race title New Stuyahok
6650 UPDATE `list_options` SET `notes` = '1940-6' WHERE `title` = 'New Stuyahok' AND `list_id` = 'race';
6651 #EndIf
6653 #IfNotRow2Dx2 list_options list_id race option_id newhalen title Newhalen
6654 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','newhalen','Newhalen','5250', '0',' 1939-8', 0);
6655 #EndIf
6657 #IfRow2D list_options list_id race option_id newhalen
6658 UPDATE `list_options` SET `notes` = '1939-8' WHERE `option_id` = 'newhalen' AND `list_id` = 'race';
6659 #EndIf
6661 #IfRow2D list_options list_id race title Newhalen
6662 UPDATE `list_options` SET `notes` = '1939-8' WHERE `title` = 'Newhalen' AND `list_id` = 'race';
6663 #EndIf
6665 #IfNotRow2Dx2 list_options list_id race option_id newtok title Newtok
6666 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','newtok','Newtok','5260', '0',' 1941-4', 0);
6667 #EndIf
6669 #IfRow2D list_options list_id race option_id newtok
6670 UPDATE `list_options` SET `notes` = '1941-4' WHERE `option_id` = 'newtok' AND `list_id` = 'race';
6671 #EndIf
6673 #IfRow2D list_options list_id race title Newtok
6674 UPDATE `list_options` SET `notes` = '1941-4' WHERE `title` = 'Newtok' AND `list_id` = 'race';
6675 #EndIf
6677 #IfNotRow2Dx2 list_options list_id race option_id nez_perce title Nez Perce
6678 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nez_perce','Nez Perce','5270', '0',' 1387-0', 0);
6679 #EndIf
6681 #IfRow2D list_options list_id race option_id nez_perce
6682 UPDATE `list_options` SET `notes` = '1387-0' WHERE `option_id` = 'nez_perce' AND `list_id` = 'race';
6683 #EndIf
6685 #IfRow2D list_options list_id race title Nez Perce
6686 UPDATE `list_options` SET `notes` = '1387-0' WHERE `title` = 'Nez Perce' AND `list_id` = 'race';
6687 #EndIf
6689 #IfNotRow2Dx2 list_options list_id race option_id nigerian title Nigerian
6690 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nigerian','Nigerian','5280', '0',' 2065-1', 0);
6691 #EndIf
6693 #IfRow2D list_options list_id race option_id nigerian
6694 UPDATE `list_options` SET `notes` = '2065-1' WHERE `option_id` = 'nigerian' AND `list_id` = 'race';
6695 #EndIf
6697 #IfRow2D list_options list_id race title Nigerian
6698 UPDATE `list_options` SET `notes` = '2065-1' WHERE `title` = 'Nigerian' AND `list_id` = 'race';
6699 #EndIf
6701 #IfNotRow2Dx2 list_options list_id race option_id nightmute title Nightmute
6702 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nightmute','Nightmute','5290', '0',' 1942-2', 0);
6703 #EndIf
6705 #IfRow2D list_options list_id race option_id nightmute
6706 UPDATE `list_options` SET `notes` = '1942-2' WHERE `option_id` = 'nightmute' AND `list_id` = 'race';
6707 #EndIf
6709 #IfRow2D list_options list_id race title Nightmute
6710 UPDATE `list_options` SET `notes` = '1942-2' WHERE `title` = 'Nightmute' AND `list_id` = 'race';
6711 #EndIf
6713 #IfNotRow2Dx2 list_options list_id race option_id nikolai title Nikolai
6714 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nikolai','Nikolai','5300', '0',' 1784-8', 0);
6715 #EndIf
6717 #IfRow2D list_options list_id race option_id nikolai
6718 UPDATE `list_options` SET `notes` = '1784-8' WHERE `option_id` = 'nikolai' AND `list_id` = 'race';
6719 #EndIf
6721 #IfRow2D list_options list_id race title Nikolai
6722 UPDATE `list_options` SET `notes` = '1784-8' WHERE `title` = 'Nikolai' AND `list_id` = 'race';
6723 #EndIf
6725 #IfNotRow2Dx2 list_options list_id race option_id nikolski title Nikolski
6726 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nikolski','Nikolski','5310', '0',' 2017-2', 0);
6727 #EndIf
6729 #IfRow2D list_options list_id race option_id nikolski
6730 UPDATE `list_options` SET `notes` = '2017-2' WHERE `option_id` = 'nikolski' AND `list_id` = 'race';
6731 #EndIf
6733 #IfRow2D list_options list_id race title Nikolski
6734 UPDATE `list_options` SET `notes` = '2017-2' WHERE `title` = 'Nikolski' AND `list_id` = 'race';
6735 #EndIf
6737 #IfNotRow2Dx2 list_options list_id race option_id ninilchik title Ninilchik
6738 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ninilchik','Ninilchik','5320', '0',' 1785-5', 0);
6739 #EndIf
6741 #IfRow2D list_options list_id race option_id ninilchik
6742 UPDATE `list_options` SET `notes` = '1785-5' WHERE `option_id` = 'ninilchik' AND `list_id` = 'race';
6743 #EndIf
6745 #IfRow2D list_options list_id race title Ninilchik
6746 UPDATE `list_options` SET `notes` = '1785-5' WHERE `title` = 'Ninilchik' AND `list_id` = 'race';
6747 #EndIf
6749 #IfNotRow2Dx2 list_options list_id race option_id nipmuc title Nipmuc
6750 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nipmuc','Nipmuc','5330', '0',' 1241-9', 0);
6751 #EndIf
6753 #IfRow2D list_options list_id race option_id nipmuc
6754 UPDATE `list_options` SET `notes` = '1241-9' WHERE `option_id` = 'nipmuc' AND `list_id` = 'race';
6755 #EndIf
6757 #IfRow2D list_options list_id race title Nipmuc
6758 UPDATE `list_options` SET `notes` = '1241-9' WHERE `title` = 'Nipmuc' AND `list_id` = 'race';
6759 #EndIf
6761 #IfNotRow2Dx2 list_options list_id race option_id nishinam title Nishinam
6762 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nishinam','Nishinam','5340', '0',' 1346-6', 0);
6763 #EndIf
6765 #IfRow2D list_options list_id race option_id nishinam
6766 UPDATE `list_options` SET `notes` = '1346-6' WHERE `option_id` = 'nishinam' AND `list_id` = 'race';
6767 #EndIf
6769 #IfRow2D list_options list_id race title Nishinam
6770 UPDATE `list_options` SET `notes` = '1346-6' WHERE `title` = 'Nishinam' AND `list_id` = 'race';
6771 #EndIf
6773 #IfNotRow2Dx2 list_options list_id race option_id nisqually title Nisqually
6774 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nisqually','Nisqually','5350', '0',' 1523-0', 0);
6775 #EndIf
6777 #IfRow2D list_options list_id race option_id nisqually
6778 UPDATE `list_options` SET `notes` = '1523-0' WHERE `option_id` = 'nisqually' AND `list_id` = 'race';
6779 #EndIf
6781 #IfRow2D list_options list_id race title Nisqually
6782 UPDATE `list_options` SET `notes` = '1523-0' WHERE `title` = 'Nisqually' AND `list_id` = 'race';
6783 #EndIf
6785 #IfNotRow2Dx2 list_options list_id race option_id noatak title Noatak
6786 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','noatak','Noatak','5360', '0',' 1872-1', 0);
6787 #EndIf
6789 #IfRow2D list_options list_id race option_id noatak
6790 UPDATE `list_options` SET `notes` = '1872-1' WHERE `option_id` = 'noatak' AND `list_id` = 'race';
6791 #EndIf
6793 #IfRow2D list_options list_id race title Noatak
6794 UPDATE `list_options` SET `notes` = '1872-1' WHERE `title` = 'Noatak' AND `list_id` = 'race';
6795 #EndIf
6797 #IfNotRow2Dx2 list_options list_id race option_id nomalaki title Nomalaki
6798 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nomalaki','Nomalaki','5370', '0',' 1389-6', 0);
6799 #EndIf
6801 #IfRow2D list_options list_id race option_id nomalaki
6802 UPDATE `list_options` SET `notes` = '1389-6' WHERE `option_id` = 'nomalaki' AND `list_id` = 'race';
6803 #EndIf
6805 #IfRow2D list_options list_id race title Nomalaki
6806 UPDATE `list_options` SET `notes` = '1389-6' WHERE `title` = 'Nomalaki' AND `list_id` = 'race';
6807 #EndIf
6809 #IfNotRow2Dx2 list_options list_id race option_id nome title Nome
6810 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nome','Nome','5380', '0',' 1873-9', 0);
6811 #EndIf
6813 #IfRow2D list_options list_id race option_id nome
6814 UPDATE `list_options` SET `notes` = '1873-9' WHERE `option_id` = 'nome' AND `list_id` = 'race';
6815 #EndIf
6817 #IfRow2D list_options list_id race title Nome
6818 UPDATE `list_options` SET `notes` = '1873-9' WHERE `title` = 'Nome' AND `list_id` = 'race';
6819 #EndIf
6821 #IfNotRow2Dx2 list_options list_id race option_id nondalton title Nondalton
6822 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nondalton','Nondalton','5390', '0',' 1786-3', 0);
6823 #EndIf
6825 #IfRow2D list_options list_id race option_id nondalton
6826 UPDATE `list_options` SET `notes` = '1786-3' WHERE `option_id` = 'nondalton' AND `list_id` = 'race';
6827 #EndIf
6829 #IfRow2D list_options list_id race title Nondalton
6830 UPDATE `list_options` SET `notes` = '1786-3' WHERE `title` = 'Nondalton' AND `list_id` = 'race';
6831 #EndIf
6833 #IfNotRow2Dx2 list_options list_id race option_id nooksack title Nooksack
6834 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nooksack','Nooksack','5400', '0',' 1524-8', 0);
6835 #EndIf
6837 #IfRow2D list_options list_id race option_id nooksack
6838 UPDATE `list_options` SET `notes` = '1524-8' WHERE `option_id` = 'nooksack' AND `list_id` = 'race';
6839 #EndIf
6841 #IfRow2D list_options list_id race title Nooksack
6842 UPDATE `list_options` SET `notes` = '1524-8' WHERE `title` = 'Nooksack' AND `list_id` = 'race';
6843 #EndIf
6845 #IfNotRow2Dx2 list_options list_id race option_id noorvik title Noorvik
6846 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','noorvik','Noorvik','5410', '0',' 1874-7', 0);
6847 #EndIf
6849 #IfRow2D list_options list_id race option_id noorvik
6850 UPDATE `list_options` SET `notes` = '1874-7' WHERE `option_id` = 'noorvik' AND `list_id` = 'race';
6851 #EndIf
6853 #IfRow2D list_options list_id race title Noorvik
6854 UPDATE `list_options` SET `notes` = '1874-7' WHERE `title` = 'Noorvik' AND `list_id` = 'race';
6855 #EndIf
6857 #IfNotRow2Dx2 list_options list_id race option_id northern_arapaho title Northern Arapaho
6858 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_arapaho','Northern Arapaho','5420', '0',' 1022-3', 0);
6859 #EndIf
6861 #IfRow2D list_options list_id race option_id northern_arapaho
6862 UPDATE `list_options` SET `notes` = '1022-3' WHERE `option_id` = 'northern_arapaho' AND `list_id` = 'race';
6863 #EndIf
6865 #IfRow2D list_options list_id race title Northern Arapaho
6866 UPDATE `list_options` SET `notes` = '1022-3' WHERE `title` = 'Northern Arapaho' AND `list_id` = 'race';
6867 #EndIf
6869 #IfNotRow2Dx2 list_options list_id race option_id northern_cherokee title Northern Cherokee
6870 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_cherokee','Northern Cherokee','5430', '0',' 1095-9', 0);
6871 #EndIf
6873 #IfRow2D list_options list_id race option_id northern_cherokee
6874 UPDATE `list_options` SET `notes` = '1095-9' WHERE `option_id` = 'northern_cherokee' AND `list_id` = 'race';
6875 #EndIf
6877 #IfRow2D list_options list_id race title Northern Cherokee
6878 UPDATE `list_options` SET `notes` = '1095-9' WHERE `title` = 'Northern Cherokee' AND `list_id` = 'race';
6879 #EndIf
6881 #IfNotRow2Dx2 list_options list_id race option_id northern_cheyenne title Northern Cheyenne
6882 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_cheyenne','Northern Cheyenne','5440', '0',' 1103-1', 0);
6883 #EndIf
6885 #IfRow2D list_options list_id race option_id northern_cheyenne
6886 UPDATE `list_options` SET `notes` = '1103-1' WHERE `option_id` = 'northern_cheyenne' AND `list_id` = 'race';
6887 #EndIf
6889 #IfRow2D list_options list_id race title Northern Cheyenne
6890 UPDATE `list_options` SET `notes` = '1103-1' WHERE `title` = 'Northern Cheyenne' AND `list_id` = 'race';
6891 #EndIf
6893 #IfNotRow2Dx2 list_options list_id race option_id northern_paiute title Northern Paiute
6894 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_paiute','Northern Paiute','5450', '0',' 1429-0', 0);
6895 #EndIf
6897 #IfRow2D list_options list_id race option_id northern_paiute
6898 UPDATE `list_options` SET `notes` = '1429-0' WHERE `option_id` = 'northern_paiute' AND `list_id` = 'race';
6899 #EndIf
6901 #IfRow2D list_options list_id race title Northern Paiute
6902 UPDATE `list_options` SET `notes` = '1429-0' WHERE `title` = 'Northern Paiute' AND `list_id` = 'race';
6903 #EndIf
6905 #IfNotRow2Dx2 list_options list_id race option_id northern_pomo title Northern Pomo
6906 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northern_pomo','Northern Pomo','5460', '0',' 1469-6', 0);
6907 #EndIf
6909 #IfRow2D list_options list_id race option_id northern_pomo
6910 UPDATE `list_options` SET `notes` = '1469-6' WHERE `option_id` = 'northern_pomo' AND `list_id` = 'race';
6911 #EndIf
6913 #IfRow2D list_options list_id race title Northern Pomo
6914 UPDATE `list_options` SET `notes` = '1469-6' WHERE `title` = 'Northern Pomo' AND `list_id` = 'race';
6915 #EndIf
6917 #IfNotRow2Dx2 list_options list_id race option_id northway title Northway
6918 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northway','Northway','5470', '0',' 1787-1', 0);
6919 #EndIf
6921 #IfRow2D list_options list_id race option_id northway
6922 UPDATE `list_options` SET `notes` = '1787-1' WHERE `option_id` = 'northway' AND `list_id` = 'race';
6923 #EndIf
6925 #IfRow2D list_options list_id race title Northway
6926 UPDATE `list_options` SET `notes` = '1787-1' WHERE `title` = 'Northway' AND `list_id` = 'race';
6927 #EndIf
6929 #IfNotRow2Dx2 list_options list_id race option_id northwest_tribes title Northwest Tribes
6930 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','northwest_tribes','Northwest Tribes','5480', '0',' 1391-2', 0);
6931 #EndIf
6933 #IfRow2D list_options list_id race option_id northwest_tribes
6934 UPDATE `list_options` SET `notes` = '1391-2' WHERE `option_id` = 'northwest_tribes' AND `list_id` = 'race';
6935 #EndIf
6937 #IfRow2D list_options list_id race title Northwest Tribes
6938 UPDATE `list_options` SET `notes` = '1391-2' WHERE `title` = 'Northwest Tribes' AND `list_id` = 'race';
6939 #EndIf
6941 #IfNotRow2Dx2 list_options list_id race option_id nuiqsut title Nuiqsut
6942 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nuiqsut','Nuiqsut','5490', '0',' 1875-4', 0);
6943 #EndIf
6945 #IfRow2D list_options list_id race option_id nuiqsut
6946 UPDATE `list_options` SET `notes` = '1875-4' WHERE `option_id` = 'nuiqsut' AND `list_id` = 'race';
6947 #EndIf
6949 #IfRow2D list_options list_id race title Nuiqsut
6950 UPDATE `list_options` SET `notes` = '1875-4' WHERE `title` = 'Nuiqsut' AND `list_id` = 'race';
6951 #EndIf
6953 #IfNotRow2Dx2 list_options list_id race option_id nulato title Nulato
6954 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nulato','Nulato','5500', '0',' 1788-9', 0);
6955 #EndIf
6957 #IfRow2D list_options list_id race option_id nulato
6958 UPDATE `list_options` SET `notes` = '1788-9' WHERE `option_id` = 'nulato' AND `list_id` = 'race';
6959 #EndIf
6961 #IfRow2D list_options list_id race title Nulato
6962 UPDATE `list_options` SET `notes` = '1788-9' WHERE `title` = 'Nulato' AND `list_id` = 'race';
6963 #EndIf
6965 #IfNotRow2Dx2 list_options list_id race option_id nunapitchukv title Nunapitchukv
6966 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','nunapitchukv','Nunapitchukv','5510', '0',' 1943-0', 0);
6967 #EndIf
6969 #IfRow2D list_options list_id race option_id nunapitchukv
6970 UPDATE `list_options` SET `notes` = '1943-0' WHERE `option_id` = 'nunapitchukv' AND `list_id` = 'race';
6971 #EndIf
6973 #IfRow2D list_options list_id race title Nunapitchukv
6974 UPDATE `list_options` SET `notes` = '1943-0' WHERE `title` = 'Nunapitchukv' AND `list_id` = 'race';
6975 #EndIf
6977 #IfNotRow2Dx2 list_options list_id race option_id oglala_sioux title Oglala Sioux
6978 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oglala_sioux','Oglala Sioux','5520', '0',' 1622-0', 0);
6979 #EndIf
6981 #IfRow2D list_options list_id race option_id oglala_sioux
6982 UPDATE `list_options` SET `notes` = '1622-0' WHERE `option_id` = 'oglala_sioux' AND `list_id` = 'race';
6983 #EndIf
6985 #IfRow2D list_options list_id race title Oglala Sioux
6986 UPDATE `list_options` SET `notes` = '1622-0' WHERE `title` = 'Oglala Sioux' AND `list_id` = 'race';
6987 #EndIf
6989 #IfNotRow2Dx2 list_options list_id race option_id okinawan title Okinawan
6990 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','okinawan','Okinawan','5530', '0',' 2043-8', 0);
6991 #EndIf
6993 #IfRow2D list_options list_id race option_id okinawan
6994 UPDATE `list_options` SET `notes` = '2043-8' WHERE `option_id` = 'okinawan' AND `list_id` = 'race';
6995 #EndIf
6997 #IfRow2D list_options list_id race title Okinawan
6998 UPDATE `list_options` SET `notes` = '2043-8' WHERE `title` = 'Okinawan' AND `list_id` = 'race';
6999 #EndIf
7001 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_apache title Oklahoma Apache
7002 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_apache','Oklahoma Apache','5540', '0',' 1016-5', 0);
7003 #EndIf
7005 #IfRow2D list_options list_id race option_id oklahoma_apache
7006 UPDATE `list_options` SET `notes` = '1016-5' WHERE `option_id` = 'oklahoma_apache' AND `list_id` = 'race';
7007 #EndIf
7009 #IfRow2D list_options list_id race title Oklahoma Apache
7010 UPDATE `list_options` SET `notes` = '1016-5' WHERE `title` = 'Oklahoma Apache' AND `list_id` = 'race';
7011 #EndIf
7013 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_cado title Oklahoma Cado
7014 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_cado','Oklahoma Cado','5550', '0',' 1042-1', 0);
7015 #EndIf
7017 #IfRow2D list_options list_id race option_id oklahoma_cado
7018 UPDATE `list_options` SET `notes` = '1042-1' WHERE `option_id` = 'oklahoma_cado' AND `list_id` = 'race';
7019 #EndIf
7021 #IfRow2D list_options list_id race title Oklahoma Cado
7022 UPDATE `list_options` SET `notes` = '1042-1' WHERE `title` = 'Oklahoma Cado' AND `list_id` = 'race';
7023 #EndIf
7025 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_choctaw title Oklahoma Choctaw
7026 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_choctaw','Oklahoma Choctaw','5560', '0',' 1160-1', 0);
7027 #EndIf
7029 #IfRow2D list_options list_id race option_id oklahoma_choctaw
7030 UPDATE `list_options` SET `notes` = '1160-1' WHERE `option_id` = 'oklahoma_choctaw' AND `list_id` = 'race';
7031 #EndIf
7033 #IfRow2D list_options list_id race title Oklahoma Choctaw
7034 UPDATE `list_options` SET `notes` = '1160-1' WHERE `title` = 'Oklahoma Choctaw' AND `list_id` = 'race';
7035 #EndIf
7037 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_comanche title Oklahoma Comanche
7038 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_comanche','Oklahoma Comanche','5570', '0',' 1176-7', 0);
7039 #EndIf
7041 #IfRow2D list_options list_id race option_id oklahoma_comanche
7042 UPDATE `list_options` SET `notes` = '1176-7' WHERE `option_id` = 'oklahoma_comanche' AND `list_id` = 'race';
7043 #EndIf
7045 #IfRow2D list_options list_id race title Oklahoma Comanche
7046 UPDATE `list_options` SET `notes` = '1176-7' WHERE `title` = 'Oklahoma Comanche' AND `list_id` = 'race';
7047 #EndIf
7049 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_delaware title Oklahoma Delaware
7050 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_delaware','Oklahoma Delaware','5580', '0',' 1218-7', 0);
7051 #EndIf
7053 #IfRow2D list_options list_id race option_id oklahoma_delaware
7054 UPDATE `list_options` SET `notes` = '1218-7' WHERE `option_id` = 'oklahoma_delaware' AND `list_id` = 'race';
7055 #EndIf
7057 #IfRow2D list_options list_id race title Oklahoma Delaware
7058 UPDATE `list_options` SET `notes` = '1218-7' WHERE `title` = 'Oklahoma Delaware' AND `list_id` = 'race';
7059 #EndIf
7061 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_kickapoo title Oklahoma Kickapoo
7062 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_kickapoo','Oklahoma Kickapoo','5590', '0',' 1306-0', 0);
7063 #EndIf
7065 #IfRow2D list_options list_id race option_id oklahoma_kickapoo
7066 UPDATE `list_options` SET `notes` = '1306-0' WHERE `option_id` = 'oklahoma_kickapoo' AND `list_id` = 'race';
7067 #EndIf
7069 #IfRow2D list_options list_id race title Oklahoma Kickapoo
7070 UPDATE `list_options` SET `notes` = '1306-0' WHERE `title` = 'Oklahoma Kickapoo' AND `list_id` = 'race';
7071 #EndIf
7073 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_kiowa title Oklahoma Kiowa
7074 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_kiowa','Oklahoma Kiowa','5600', '0',' 1310-2', 0);
7075 #EndIf
7077 #IfRow2D list_options list_id race option_id oklahoma_kiowa
7078 UPDATE `list_options` SET `notes` = '1310-2' WHERE `option_id` = 'oklahoma_kiowa' AND `list_id` = 'race';
7079 #EndIf
7081 #IfRow2D list_options list_id race title Oklahoma Kiowa
7082 UPDATE `list_options` SET `notes` = '1310-2' WHERE `title` = 'Oklahoma Kiowa' AND `list_id` = 'race';
7083 #EndIf
7085 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_miami title Oklahoma Miami
7086 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_miami','Oklahoma Miami','5610', '0',' 1361-5', 0);
7087 #EndIf
7089 #IfRow2D list_options list_id race option_id oklahoma_miami
7090 UPDATE `list_options` SET `notes` = '1361-5' WHERE `option_id` = 'oklahoma_miami' AND `list_id` = 'race';
7091 #EndIf
7093 #IfRow2D list_options list_id race title Oklahoma Miami
7094 UPDATE `list_options` SET `notes` = '1361-5' WHERE `title` = 'Oklahoma Miami' AND `list_id` = 'race';
7095 #EndIf
7097 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_ottawa title Oklahoma Ottawa
7098 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_ottawa','Oklahoma Ottawa','5620', '0',' 1414-2', 0);
7099 #EndIf
7101 #IfRow2D list_options list_id race option_id oklahoma_ottawa
7102 UPDATE `list_options` SET `notes` = '1414-2' WHERE `option_id` = 'oklahoma_ottawa' AND `list_id` = 'race';
7103 #EndIf
7105 #IfRow2D list_options list_id race title Oklahoma Ottawa
7106 UPDATE `list_options` SET `notes` = '1414-2' WHERE `title` = 'Oklahoma Ottawa' AND `list_id` = 'race';
7107 #EndIf
7109 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_pawnee title Oklahoma Pawnee
7110 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_pawnee','Oklahoma Pawnee','5630', '0',' 1446-4', 0);
7111 #EndIf
7113 #IfRow2D list_options list_id race option_id oklahoma_pawnee
7114 UPDATE `list_options` SET `notes` = '1446-4' WHERE `option_id` = 'oklahoma_pawnee' AND `list_id` = 'race';
7115 #EndIf
7117 #IfRow2D list_options list_id race title Oklahoma Pawnee
7118 UPDATE `list_options` SET `notes` = '1446-4' WHERE `title` = 'Oklahoma Pawnee' AND `list_id` = 'race';
7119 #EndIf
7121 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_peoria title Oklahoma Peoria
7122 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_peoria','Oklahoma Peoria','5640', '0',' 1451-4', 0);
7123 #EndIf
7125 #IfRow2D list_options list_id race option_id oklahoma_peoria
7126 UPDATE `list_options` SET `notes` = '1451-4' WHERE `option_id` = 'oklahoma_peoria' AND `list_id` = 'race';
7127 #EndIf
7129 #IfRow2D list_options list_id race title Oklahoma Peoria
7130 UPDATE `list_options` SET `notes` = '1451-4' WHERE `title` = 'Oklahoma Peoria' AND `list_id` = 'race';
7131 #EndIf
7133 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_ponca title Oklahoma Ponca
7134 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_ponca','Oklahoma Ponca','5650', '0',' 1476-1', 0);
7135 #EndIf
7137 #IfRow2D list_options list_id race option_id oklahoma_ponca
7138 UPDATE `list_options` SET `notes` = '1476-1' WHERE `option_id` = 'oklahoma_ponca' AND `list_id` = 'race';
7139 #EndIf
7141 #IfRow2D list_options list_id race title Oklahoma Ponca
7142 UPDATE `list_options` SET `notes` = '1476-1' WHERE `title` = 'Oklahoma Ponca' AND `list_id` = 'race';
7143 #EndIf
7145 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_sac_and_fox title Oklahoma Sac and Fox
7146 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_sac_and_fox','Oklahoma Sac and Fox','5660', '0',' 1554-5', 0);
7147 #EndIf
7149 #IfRow2D list_options list_id race option_id oklahoma_sac_and_fox
7150 UPDATE `list_options` SET `notes` = '1554-5' WHERE `option_id` = 'oklahoma_sac_and_fox' AND `list_id` = 'race';
7151 #EndIf
7153 #IfRow2D list_options list_id race title Oklahoma Sac and Fox
7154 UPDATE `list_options` SET `notes` = '1554-5' WHERE `title` = 'Oklahoma Sac and Fox' AND `list_id` = 'race';
7155 #EndIf
7157 #IfNotRow2Dx2 list_options list_id race option_id oklahoma_seminole title Oklahoma Seminole
7158 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oklahoma_seminole','Oklahoma Seminole','5670', '0',' 1571-9', 0);
7159 #EndIf
7161 #IfRow2D list_options list_id race option_id oklahoma_seminole
7162 UPDATE `list_options` SET `notes` = '1571-9' WHERE `option_id` = 'oklahoma_seminole' AND `list_id` = 'race';
7163 #EndIf
7165 #IfRow2D list_options list_id race title Oklahoma Seminole
7166 UPDATE `list_options` SET `notes` = '1571-9' WHERE `title` = 'Oklahoma Seminole' AND `list_id` = 'race';
7167 #EndIf
7169 #IfNotRow2Dx2 list_options list_id race option_id old_harbor title Old Harbor
7170 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','old_harbor','Old Harbor','5680', '0',' 1998-4', 0);
7171 #EndIf
7173 #IfRow2D list_options list_id race option_id old_harbor
7174 UPDATE `list_options` SET `notes` = '1998-4' WHERE `option_id` = 'old_harbor' AND `list_id` = 'race';
7175 #EndIf
7177 #IfRow2D list_options list_id race title Old Harbor
7178 UPDATE `list_options` SET `notes` = '1998-4' WHERE `title` = 'Old Harbor' AND `list_id` = 'race';
7179 #EndIf
7181 #IfNotRow2Dx2 list_options list_id race option_id omaha title Omaha
7182 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','omaha','Omaha','5690', '0',' 1403-5', 0);
7183 #EndIf
7185 #IfRow2D list_options list_id race option_id omaha
7186 UPDATE `list_options` SET `notes` = '1403-5' WHERE `option_id` = 'omaha' AND `list_id` = 'race';
7187 #EndIf
7189 #IfRow2D list_options list_id race title Omaha
7190 UPDATE `list_options` SET `notes` = '1403-5' WHERE `title` = 'Omaha' AND `list_id` = 'race';
7191 #EndIf
7193 #IfNotRow2Dx2 list_options list_id race option_id oneida title Oneida
7194 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oneida','Oneida','5700', '0',' 1288-0', 0);
7195 #EndIf
7197 #IfRow2D list_options list_id race option_id oneida
7198 UPDATE `list_options` SET `notes` = '1288-0' WHERE `option_id` = 'oneida' AND `list_id` = 'race';
7199 #EndIf
7201 #IfRow2D list_options list_id race title Oneida
7202 UPDATE `list_options` SET `notes` = '1288-0' WHERE `title` = 'Oneida' AND `list_id` = 'race';
7203 #EndIf
7205 #IfNotRow2Dx2 list_options list_id race option_id onondaga title Onondaga
7206 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','onondaga','Onondaga','5710', '0',' 1289-8', 0);
7207 #EndIf
7209 #IfRow2D list_options list_id race option_id onondaga
7210 UPDATE `list_options` SET `notes` = '1289-8' WHERE `option_id` = 'onondaga' AND `list_id` = 'race';
7211 #EndIf
7213 #IfRow2D list_options list_id race title Onondaga
7214 UPDATE `list_options` SET `notes` = '1289-8' WHERE `title` = 'Onondaga' AND `list_id` = 'race';
7215 #EndIf
7217 #IfNotRow2Dx2 list_options list_id race option_id ontonagon title Ontonagon
7218 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ontonagon','Ontonagon','5720', '0',' 1140-3', 0);
7219 #EndIf
7221 #IfRow2D list_options list_id race option_id ontonagon
7222 UPDATE `list_options` SET `notes` = '1140-3' WHERE `option_id` = 'ontonagon' AND `list_id` = 'race';
7223 #EndIf
7225 #IfRow2D list_options list_id race title Ontonagon
7226 UPDATE `list_options` SET `notes` = '1140-3' WHERE `title` = 'Ontonagon' AND `list_id` = 'race';
7227 #EndIf
7229 #IfNotRow2Dx2 list_options list_id race option_id oregon_athabaskan title Oregon Athabaskan
7230 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oregon_athabaskan','Oregon Athabaskan','5730', '0',' 1405-0', 0);
7231 #EndIf
7233 #IfRow2D list_options list_id race option_id oregon_athabaskan
7234 UPDATE `list_options` SET `notes` = '1405-0' WHERE `option_id` = 'oregon_athabaskan' AND `list_id` = 'race';
7235 #EndIf
7237 #IfRow2D list_options list_id race title Oregon Athabaskan
7238 UPDATE `list_options` SET `notes` = '1405-0' WHERE `title` = 'Oregon Athabaskan' AND `list_id` = 'race';
7239 #EndIf
7241 #IfNotRow2Dx2 list_options list_id race option_id osage title Osage
7242 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','osage','Osage','5740', '0',' 1407-6', 0);
7243 #EndIf
7245 #IfRow2D list_options list_id race option_id osage
7246 UPDATE `list_options` SET `notes` = '1407-6' WHERE `option_id` = 'osage' AND `list_id` = 'race';
7247 #EndIf
7249 #IfRow2D list_options list_id race title Osage
7250 UPDATE `list_options` SET `notes` = '1407-6' WHERE `title` = 'Osage' AND `list_id` = 'race';
7251 #EndIf
7253 #IfNotRow2Dx2 list_options list_id race option_id oscarville title Oscarville
7254 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','oscarville','Oscarville','5750', '0',' 1944-8', 0);
7255 #EndIf
7257 #IfRow2D list_options list_id race option_id oscarville
7258 UPDATE `list_options` SET `notes` = '1944-8' WHERE `option_id` = 'oscarville' AND `list_id` = 'race';
7259 #EndIf
7261 #IfRow2D list_options list_id race title Oscarville
7262 UPDATE `list_options` SET `notes` = '1944-8' WHERE `title` = 'Oscarville' AND `list_id` = 'race';
7263 #EndIf
7265 #IfNotRow2Dx2 list_options list_id race option_id other_pacific_islander title Other Pacific Islander
7266 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','other_pacific_islander','Other Pacific Islander','5760', '0',' 2500-7', 0);
7267 #EndIf
7269 #IfRow2D list_options list_id race option_id other_pacific_islander
7270 UPDATE `list_options` SET `notes` = '2500-7' WHERE `option_id` = 'other_pacific_islander' AND `list_id` = 'race';
7271 #EndIf
7273 #IfRow2D list_options list_id race title Other Pacific Islander
7274 UPDATE `list_options` SET `notes` = '2500-7' WHERE `title` = 'Other Pacific Islander' AND `list_id` = 'race';
7275 #EndIf
7277 #IfNotRow2Dx2 list_options list_id race option_id other_race title Other Race
7278 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','other_race','Other Race','5770', '0',' 2131-1', 0);
7279 #EndIf
7281 #IfRow2D list_options list_id race option_id other_race
7282 UPDATE `list_options` SET `notes` = '2131-1' WHERE `option_id` = 'other_race' AND `list_id` = 'race';
7283 #EndIf
7285 #IfRow2D list_options list_id race title Other Race
7286 UPDATE `list_options` SET `notes` = '2131-1' WHERE `title` = 'Other Race' AND `list_id` = 'race';
7287 #EndIf
7289 #IfNotRow2Dx2 list_options list_id race option_id otoe-missouria title Otoe-Missouria
7290 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','otoe-missouria','Otoe-Missouria','5780', '0',' 1409-2', 0);
7291 #EndIf
7293 #IfRow2D list_options list_id race option_id otoe-missouria
7294 UPDATE `list_options` SET `notes` = '1409-2' WHERE `option_id` = 'otoe-missouria' AND `list_id` = 'race';
7295 #EndIf
7297 #IfRow2D list_options list_id race title Otoe-Missouria
7298 UPDATE `list_options` SET `notes` = '1409-2' WHERE `title` = 'Otoe-Missouria' AND `list_id` = 'race';
7299 #EndIf
7301 #IfNotRow2Dx2 list_options list_id race option_id ottawa title Ottawa
7302 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ottawa','Ottawa','5790', '0',' 1411-8', 0);
7303 #EndIf
7305 #IfRow2D list_options list_id race option_id ottawa
7306 UPDATE `list_options` SET `notes` = '1411-8' WHERE `option_id` = 'ottawa' AND `list_id` = 'race';
7307 #EndIf
7309 #IfRow2D list_options list_id race title Ottawa
7310 UPDATE `list_options` SET `notes` = '1411-8' WHERE `title` = 'Ottawa' AND `list_id` = 'race';
7311 #EndIf
7313 #IfNotRow2Dx2 list_options list_id race option_id ouzinkie title Ouzinkie
7314 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ouzinkie','Ouzinkie','5800', '0',' 1999-2', 0);
7315 #EndIf
7317 #IfRow2D list_options list_id race option_id ouzinkie
7318 UPDATE `list_options` SET `notes` = '1999-2' WHERE `option_id` = 'ouzinkie' AND `list_id` = 'race';
7319 #EndIf
7321 #IfRow2D list_options list_id race title Ouzinkie
7322 UPDATE `list_options` SET `notes` = '1999-2' WHERE `title` = 'Ouzinkie' AND `list_id` = 'race';
7323 #EndIf
7325 #IfNotRow2Dx2 list_options list_id race option_id owens_valley title Owens Valley
7326 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','owens_valley','Owens Valley','5810', '0',' 1430-8', 0);
7327 #EndIf
7329 #IfRow2D list_options list_id race option_id owens_valley
7330 UPDATE `list_options` SET `notes` = '1430-8' WHERE `option_id` = 'owens_valley' AND `list_id` = 'race';
7331 #EndIf
7333 #IfRow2D list_options list_id race title Owens Valley
7334 UPDATE `list_options` SET `notes` = '1430-8' WHERE `title` = 'Owens Valley' AND `list_id` = 'race';
7335 #EndIf
7337 #IfNotRow2Dx2 list_options list_id race option_id paiute title Paiute
7338 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','paiute','Paiute','5820', '0',' 1416-7', 0);
7339 #EndIf
7341 #IfRow2D list_options list_id race option_id paiute
7342 UPDATE `list_options` SET `notes` = '1416-7' WHERE `option_id` = 'paiute' AND `list_id` = 'race';
7343 #EndIf
7345 #IfRow2D list_options list_id race title Paiute
7346 UPDATE `list_options` SET `notes` = '1416-7' WHERE `title` = 'Paiute' AND `list_id` = 'race';
7347 #EndIf
7349 #IfNotRow2Dx2 list_options list_id race option_id pakistani title Pakistani
7350 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pakistani','Pakistani','5830', '0',' 2044-6', 0);
7351 #EndIf
7353 #IfRow2D list_options list_id race option_id pakistani
7354 UPDATE `list_options` SET `notes` = '2044-6' WHERE `option_id` = 'pakistani' AND `list_id` = 'race';
7355 #EndIf
7357 #IfRow2D list_options list_id race title Pakistani
7358 UPDATE `list_options` SET `notes` = '2044-6' WHERE `title` = 'Pakistani' AND `list_id` = 'race';
7359 #EndIf
7361 #IfNotRow2Dx2 list_options list_id race option_id pala title Pala
7362 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pala','Pala','5840', '0',' 1333-4', 0);
7363 #EndIf
7365 #IfRow2D list_options list_id race option_id pala
7366 UPDATE `list_options` SET `notes` = '1333-4' WHERE `option_id` = 'pala' AND `list_id` = 'race';
7367 #EndIf
7369 #IfRow2D list_options list_id race title Pala
7370 UPDATE `list_options` SET `notes` = '1333-4' WHERE `title` = 'Pala' AND `list_id` = 'race';
7371 #EndIf
7373 #IfNotRow2Dx2 list_options list_id race option_id palauan title Palauan
7374 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','palauan','Palauan','5850', '0',' 2091-7', 0);
7375 #EndIf
7377 #IfRow2D list_options list_id race option_id palauan
7378 UPDATE `list_options` SET `notes` = '2091-7' WHERE `option_id` = 'palauan' AND `list_id` = 'race';
7379 #EndIf
7381 #IfRow2D list_options list_id race title Palauan
7382 UPDATE `list_options` SET `notes` = '2091-7' WHERE `title` = 'Palauan' AND `list_id` = 'race';
7383 #EndIf
7385 #IfNotRow2Dx2 list_options list_id race option_id palestinian title Palestinian
7386 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','palestinian','Palestinian','5860', '0',' 2124-6', 0);
7387 #EndIf
7389 #IfRow2D list_options list_id race option_id palestinian
7390 UPDATE `list_options` SET `notes` = '2124-6' WHERE `option_id` = 'palestinian' AND `list_id` = 'race';
7391 #EndIf
7393 #IfRow2D list_options list_id race title Palestinian
7394 UPDATE `list_options` SET `notes` = '2124-6' WHERE `title` = 'Palestinian' AND `list_id` = 'race';
7395 #EndIf
7397 #IfNotRow2Dx2 list_options list_id race option_id pamunkey title Pamunkey
7398 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pamunkey','Pamunkey','5870', '0',' 1439-9', 0);
7399 #EndIf
7401 #IfRow2D list_options list_id race option_id pamunkey
7402 UPDATE `list_options` SET `notes` = '1439-9' WHERE `option_id` = 'pamunkey' AND `list_id` = 'race';
7403 #EndIf
7405 #IfRow2D list_options list_id race title Pamunkey
7406 UPDATE `list_options` SET `notes` = '1439-9' WHERE `title` = 'Pamunkey' AND `list_id` = 'race';
7407 #EndIf
7409 #IfNotRow2Dx2 list_options list_id race option_id panamint title Panamint
7410 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','panamint','Panamint','5880', '0',' 1592-5', 0);
7411 #EndIf
7413 #IfRow2D list_options list_id race option_id panamint
7414 UPDATE `list_options` SET `notes` = '1592-5' WHERE `option_id` = 'panamint' AND `list_id` = 'race';
7415 #EndIf
7417 #IfRow2D list_options list_id race title Panamint
7418 UPDATE `list_options` SET `notes` = '1592-5' WHERE `title` = 'Panamint' AND `list_id` = 'race';
7419 #EndIf
7421 #IfNotRow2Dx2 list_options list_id race option_id papua_new_guinean title Papua New Guinean
7422 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','papua_new_guinean','Papua New Guinean','5890', '0',' 2102-2', 0);
7423 #EndIf
7425 #IfRow2D list_options list_id race option_id papua_new_guinean
7426 UPDATE `list_options` SET `notes` = '2102-2' WHERE `option_id` = 'papua_new_guinean' AND `list_id` = 'race';
7427 #EndIf
7429 #IfRow2D list_options list_id race title Papua New Guinean
7430 UPDATE `list_options` SET `notes` = '2102-2' WHERE `title` = 'Papua New Guinean' AND `list_id` = 'race';
7431 #EndIf
7433 #IfNotRow2Dx2 list_options list_id race option_id pascua_yaqui title Pascua Yaqui
7434 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pascua_yaqui','Pascua Yaqui','5900', '0',' 1713-7', 0);
7435 #EndIf
7437 #IfRow2D list_options list_id race option_id pascua_yaqui
7438 UPDATE `list_options` SET `notes` = '1713-7' WHERE `option_id` = 'pascua_yaqui' AND `list_id` = 'race';
7439 #EndIf
7441 #IfRow2D list_options list_id race title Pascua Yaqui
7442 UPDATE `list_options` SET `notes` = '1713-7' WHERE `title` = 'Pascua Yaqui' AND `list_id` = 'race';
7443 #EndIf
7445 #IfNotRow2Dx2 list_options list_id race option_id passamaquoddy title Passamaquoddy
7446 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','passamaquoddy','Passamaquoddy','5910', '0',' 1441-5', 0);
7447 #EndIf
7449 #IfRow2D list_options list_id race option_id passamaquoddy
7450 UPDATE `list_options` SET `notes` = '1441-5' WHERE `option_id` = 'passamaquoddy' AND `list_id` = 'race';
7451 #EndIf
7453 #IfRow2D list_options list_id race title Passamaquoddy
7454 UPDATE `list_options` SET `notes` = '1441-5' WHERE `title` = 'Passamaquoddy' AND `list_id` = 'race';
7455 #EndIf
7457 #IfNotRow2Dx2 list_options list_id race option_id paugussett title Paugussett
7458 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','paugussett','Paugussett','5920', '0',' 1242-7', 0);
7459 #EndIf
7461 #IfRow2D list_options list_id race option_id paugussett
7462 UPDATE `list_options` SET `notes` = '1242-7' WHERE `option_id` = 'paugussett' AND `list_id` = 'race';
7463 #EndIf
7465 #IfRow2D list_options list_id race title Paugussett
7466 UPDATE `list_options` SET `notes` = '1242-7' WHERE `title` = 'Paugussett' AND `list_id` = 'race';
7467 #EndIf
7469 #IfNotRow2Dx2 list_options list_id race option_id pauloff_harbor title Pauloff Harbor
7470 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pauloff_harbor','Pauloff Harbor','5930', '0',' 2018-0', 0);
7471 #EndIf
7473 #IfRow2D list_options list_id race option_id pauloff_harbor
7474 UPDATE `list_options` SET `notes` = '2018-0' WHERE `option_id` = 'pauloff_harbor' AND `list_id` = 'race';
7475 #EndIf
7477 #IfRow2D list_options list_id race title Pauloff Harbor
7478 UPDATE `list_options` SET `notes` = '2018-0' WHERE `title` = 'Pauloff Harbor' AND `list_id` = 'race';
7479 #EndIf
7481 #IfNotRow2Dx2 list_options list_id race option_id pauma title Pauma
7482 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pauma','Pauma','5940', '0',' 1334-2', 0);
7483 #EndIf
7485 #IfRow2D list_options list_id race option_id pauma
7486 UPDATE `list_options` SET `notes` = '1334-2' WHERE `option_id` = 'pauma' AND `list_id` = 'race';
7487 #EndIf
7489 #IfRow2D list_options list_id race title Pauma
7490 UPDATE `list_options` SET `notes` = '1334-2' WHERE `title` = 'Pauma' AND `list_id` = 'race';
7491 #EndIf
7493 #IfNotRow2Dx2 list_options list_id race option_id pawnee title Pawnee
7494 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pawnee','Pawnee','5950', '0',' 1445-6', 0);
7495 #EndIf
7497 #IfRow2D list_options list_id race option_id pawnee
7498 UPDATE `list_options` SET `notes` = '1445-6' WHERE `option_id` = 'pawnee' AND `list_id` = 'race';
7499 #EndIf
7501 #IfRow2D list_options list_id race title Pawnee
7502 UPDATE `list_options` SET `notes` = '1445-6' WHERE `title` = 'Pawnee' AND `list_id` = 'race';
7503 #EndIf
7505 #IfNotRow2Dx2 list_options list_id race option_id payson_apache title Payson Apache
7506 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','payson_apache','Payson Apache','5960', '0',' 1017-3', 0);
7507 #EndIf
7509 #IfRow2D list_options list_id race option_id payson_apache
7510 UPDATE `list_options` SET `notes` = '1017-3' WHERE `option_id` = 'payson_apache' AND `list_id` = 'race';
7511 #EndIf
7513 #IfRow2D list_options list_id race title Payson Apache
7514 UPDATE `list_options` SET `notes` = '1017-3' WHERE `title` = 'Payson Apache' AND `list_id` = 'race';
7515 #EndIf
7517 #IfNotRow2Dx2 list_options list_id race option_id pechanga title Pechanga
7518 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pechanga','Pechanga','5970', '0',' 1335-9', 0);
7519 #EndIf
7521 #IfRow2D list_options list_id race option_id pechanga
7522 UPDATE `list_options` SET `notes` = '1335-9' WHERE `option_id` = 'pechanga' AND `list_id` = 'race';
7523 #EndIf
7525 #IfRow2D list_options list_id race title Pechanga
7526 UPDATE `list_options` SET `notes` = '1335-9' WHERE `title` = 'Pechanga' AND `list_id` = 'race';
7527 #EndIf
7529 #IfNotRow2Dx2 list_options list_id race option_id pedro_bay title Pedro Bay
7530 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pedro_bay','Pedro Bay','5980', '0',' 1789-7', 0);
7531 #EndIf
7533 #IfRow2D list_options list_id race option_id pedro_bay
7534 UPDATE `list_options` SET `notes` = '1789-7' WHERE `option_id` = 'pedro_bay' AND `list_id` = 'race';
7535 #EndIf
7537 #IfRow2D list_options list_id race title Pedro Bay
7538 UPDATE `list_options` SET `notes` = '1789-7' WHERE `title` = 'Pedro Bay' AND `list_id` = 'race';
7539 #EndIf
7541 #IfNotRow2Dx2 list_options list_id race option_id pelican title Pelican
7542 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pelican','Pelican','5990', '0',' 1828-3', 0);
7543 #EndIf
7545 #IfRow2D list_options list_id race option_id pelican
7546 UPDATE `list_options` SET `notes` = '1828-3' WHERE `option_id` = 'pelican' AND `list_id` = 'race';
7547 #EndIf
7549 #IfRow2D list_options list_id race title Pelican
7550 UPDATE `list_options` SET `notes` = '1828-3' WHERE `title` = 'Pelican' AND `list_id` = 'race';
7551 #EndIf
7553 #IfNotRow2Dx2 list_options list_id race option_id penobscot title Penobscot
7554 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','penobscot','Penobscot','6000', '0',' 1448-0', 0);
7555 #EndIf
7557 #IfRow2D list_options list_id race option_id penobscot
7558 UPDATE `list_options` SET `notes` = '1448-0' WHERE `option_id` = 'penobscot' AND `list_id` = 'race';
7559 #EndIf
7561 #IfRow2D list_options list_id race title Penobscot
7562 UPDATE `list_options` SET `notes` = '1448-0' WHERE `title` = 'Penobscot' AND `list_id` = 'race';
7563 #EndIf
7565 #IfNotRow2Dx2 list_options list_id race option_id peoria title Peoria
7566 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','peoria','Peoria','6010', '0',' 1450-6', 0);
7567 #EndIf
7569 #IfRow2D list_options list_id race option_id peoria
7570 UPDATE `list_options` SET `notes` = '1450-6' WHERE `option_id` = 'peoria' AND `list_id` = 'race';
7571 #EndIf
7573 #IfRow2D list_options list_id race title Peoria
7574 UPDATE `list_options` SET `notes` = '1450-6' WHERE `title` = 'Peoria' AND `list_id` = 'race';
7575 #EndIf
7577 #IfNotRow2Dx2 list_options list_id race option_id pequot title Pequot
7578 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pequot','Pequot','6020', '0',' 1453-0', 0);
7579 #EndIf
7581 #IfRow2D list_options list_id race option_id pequot
7582 UPDATE `list_options` SET `notes` = '1453-0' WHERE `option_id` = 'pequot' AND `list_id` = 'race';
7583 #EndIf
7585 #IfRow2D list_options list_id race title Pequot
7586 UPDATE `list_options` SET `notes` = '1453-0' WHERE `title` = 'Pequot' AND `list_id` = 'race';
7587 #EndIf
7589 #IfNotRow2Dx2 list_options list_id race option_id perryville title Perryville
7590 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','perryville','Perryville','6030', '0',' 1980-2', 0);
7591 #EndIf
7593 #IfRow2D list_options list_id race option_id perryville
7594 UPDATE `list_options` SET `notes` = '1980-2' WHERE `option_id` = 'perryville' AND `list_id` = 'race';
7595 #EndIf
7597 #IfRow2D list_options list_id race title Perryville
7598 UPDATE `list_options` SET `notes` = '1980-2' WHERE `title` = 'Perryville' AND `list_id` = 'race';
7599 #EndIf
7601 #IfNotRow2Dx2 list_options list_id race option_id petersburg title Petersburg
7602 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','petersburg','Petersburg','6040', '0',' 1829-1', 0);
7603 #EndIf
7605 #IfRow2D list_options list_id race option_id petersburg
7606 UPDATE `list_options` SET `notes` = '1829-1' WHERE `option_id` = 'petersburg' AND `list_id` = 'race';
7607 #EndIf
7609 #IfRow2D list_options list_id race title Petersburg
7610 UPDATE `list_options` SET `notes` = '1829-1' WHERE `title` = 'Petersburg' AND `list_id` = 'race';
7611 #EndIf
7613 #IfNotRow2Dx2 list_options list_id race option_id picuris title Picuris
7614 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','picuris','Picuris','6050', '0',' 1499-3', 0);
7615 #EndIf
7617 #IfRow2D list_options list_id race option_id picuris
7618 UPDATE `list_options` SET `notes` = '1499-3' WHERE `option_id` = 'picuris' AND `list_id` = 'race';
7619 #EndIf
7621 #IfRow2D list_options list_id race title Picuris
7622 UPDATE `list_options` SET `notes` = '1499-3' WHERE `title` = 'Picuris' AND `list_id` = 'race';
7623 #EndIf
7625 #IfNotRow2Dx2 list_options list_id race option_id pilot_point title Pilot Point
7626 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pilot_point','Pilot Point','6060', '0',' 1981-0', 0);
7627 #EndIf
7629 #IfRow2D list_options list_id race option_id pilot_point
7630 UPDATE `list_options` SET `notes` = '1981-0' WHERE `option_id` = 'pilot_point' AND `list_id` = 'race';
7631 #EndIf
7633 #IfRow2D list_options list_id race title Pilot Point
7634 UPDATE `list_options` SET `notes` = '1981-0' WHERE `title` = 'Pilot Point' AND `list_id` = 'race';
7635 #EndIf
7637 #IfNotRow2Dx2 list_options list_id race option_id pilot_station title Pilot Station
7638 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pilot_station','Pilot Station','6070', '0',' 1945-5', 0);
7639 #EndIf
7641 #IfRow2D list_options list_id race option_id pilot_station
7642 UPDATE `list_options` SET `notes` = '1945-5' WHERE `option_id` = 'pilot_station' AND `list_id` = 'race';
7643 #EndIf
7645 #IfRow2D list_options list_id race title Pilot Station
7646 UPDATE `list_options` SET `notes` = '1945-5' WHERE `title` = 'Pilot Station' AND `list_id` = 'race';
7647 #EndIf
7649 #IfNotRow2Dx2 list_options list_id race option_id pima title Pima
7650 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pima','Pima','6080', '0',' 1456-3', 0);
7651 #EndIf
7653 #IfRow2D list_options list_id race option_id pima
7654 UPDATE `list_options` SET `notes` = '1456-3' WHERE `option_id` = 'pima' AND `list_id` = 'race';
7655 #EndIf
7657 #IfRow2D list_options list_id race title Pima
7658 UPDATE `list_options` SET `notes` = '1456-3' WHERE `title` = 'Pima' AND `list_id` = 'race';
7659 #EndIf
7661 #IfNotRow2Dx2 list_options list_id race option_id pine_ridge_sioux title Pine Ridge Sioux
7662 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pine_ridge_sioux','Pine Ridge Sioux','6090', '0',' 1623-8', 0);
7663 #EndIf
7665 #IfRow2D list_options list_id race option_id pine_ridge_sioux
7666 UPDATE `list_options` SET `notes` = '1623-8' WHERE `option_id` = 'pine_ridge_sioux' AND `list_id` = 'race';
7667 #EndIf
7669 #IfRow2D list_options list_id race title Pine Ridge Sioux
7670 UPDATE `list_options` SET `notes` = '1623-8' WHERE `title` = 'Pine Ridge Sioux' AND `list_id` = 'race';
7671 #EndIf
7673 #IfNotRow2Dx2 list_options list_id race option_id pipestone_sioux title Pipestone Sioux
7674 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pipestone_sioux','Pipestone Sioux','6100', '0',' 1624-6', 0);
7675 #EndIf
7677 #IfRow2D list_options list_id race option_id pipestone_sioux
7678 UPDATE `list_options` SET `notes` = '1624-6' WHERE `option_id` = 'pipestone_sioux' AND `list_id` = 'race';
7679 #EndIf
7681 #IfRow2D list_options list_id race title Pipestone Sioux
7682 UPDATE `list_options` SET `notes` = '1624-6' WHERE `title` = 'Pipestone Sioux' AND `list_id` = 'race';
7683 #EndIf
7685 #IfNotRow2Dx2 list_options list_id race option_id piro title Piro
7686 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','piro','Piro','6110', '0',' 1500-8', 0);
7687 #EndIf
7689 #IfRow2D list_options list_id race option_id piro
7690 UPDATE `list_options` SET `notes` = '1500-8' WHERE `option_id` = 'piro' AND `list_id` = 'race';
7691 #EndIf
7693 #IfRow2D list_options list_id race title Piro
7694 UPDATE `list_options` SET `notes` = '1500-8' WHERE `title` = 'Piro' AND `list_id` = 'race';
7695 #EndIf
7697 #IfNotRow2Dx2 list_options list_id race option_id piscataway title Piscataway
7698 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','piscataway','Piscataway','6120', '0',' 1460-5', 0);
7699 #EndIf
7701 #IfRow2D list_options list_id race option_id piscataway
7702 UPDATE `list_options` SET `notes` = '1460-5' WHERE `option_id` = 'piscataway' AND `list_id` = 'race';
7703 #EndIf
7705 #IfRow2D list_options list_id race title Piscataway
7706 UPDATE `list_options` SET `notes` = '1460-5' WHERE `title` = 'Piscataway' AND `list_id` = 'race';
7707 #EndIf
7709 #IfNotRow2Dx2 list_options list_id race option_id pit_river title Pit River
7710 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pit_river','Pit River','6130', '0',' 1462-1', 0);
7711 #EndIf
7713 #IfRow2D list_options list_id race option_id pit_river
7714 UPDATE `list_options` SET `notes` = '1462-1' WHERE `option_id` = 'pit_river' AND `list_id` = 'race';
7715 #EndIf
7717 #IfRow2D list_options list_id race title Pit River
7718 UPDATE `list_options` SET `notes` = '1462-1' WHERE `title` = 'Pit River' AND `list_id` = 'race';
7719 #EndIf
7721 #IfNotRow2Dx2 list_options list_id race option_id pitkas_point title Pitkas Point
7722 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pitkas_point','Pitkas Point','6140', '0',' 1946-3', 0);
7723 #EndIf
7725 #IfRow2D list_options list_id race option_id pitkas_point
7726 UPDATE `list_options` SET `notes` = '1946-3' WHERE `option_id` = 'pitkas_point' AND `list_id` = 'race';
7727 #EndIf
7729 #IfRow2D list_options list_id race title Pitkas Point
7730 UPDATE `list_options` SET `notes` = '1946-3' WHERE `title` = 'Pitkas Point' AND `list_id` = 'race';
7731 #EndIf
7733 #IfNotRow2Dx2 list_options list_id race option_id platinum title Platinum
7734 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','platinum','Platinum','6150', '0',' 1947-1', 0);
7735 #EndIf
7737 #IfRow2D list_options list_id race option_id platinum
7738 UPDATE `list_options` SET `notes` = '1947-1' WHERE `option_id` = 'platinum' AND `list_id` = 'race';
7739 #EndIf
7741 #IfRow2D list_options list_id race title Platinum
7742 UPDATE `list_options` SET `notes` = '1947-1' WHERE `title` = 'Platinum' AND `list_id` = 'race';
7743 #EndIf
7745 #IfNotRow2Dx2 list_options list_id race option_id pleasant_point_passamaquoddy title Pleasant Point Passamaquoddy
7746 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pleasant_point_passamaquoddy','Pleasant Point Passamaquoddy','6160', '0',' 1443-1', 0);
7747 #EndIf
7749 #IfRow2D list_options list_id race option_id pleasant_point_passamaquoddy
7750 UPDATE `list_options` SET `notes` = '1443-1' WHERE `option_id` = 'pleasant_point_passamaquoddy' AND `list_id` = 'race';
7751 #EndIf
7753 #IfRow2D list_options list_id race title Pleasant Point Passamaquoddy
7754 UPDATE `list_options` SET `notes` = '1443-1' WHERE `title` = 'Pleasant Point Passamaquoddy' AND `list_id` = 'race';
7755 #EndIf
7757 #IfNotRow2Dx2 list_options list_id race option_id poarch_band title Poarch Band
7758 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','poarch_band','Poarch Band','6170', '0',' 1201-3', 0);
7759 #EndIf
7761 #IfRow2D list_options list_id race option_id poarch_band
7762 UPDATE `list_options` SET `notes` = '1201-3' WHERE `option_id` = 'poarch_band' AND `list_id` = 'race';
7763 #EndIf
7765 #IfRow2D list_options list_id race title Poarch Band
7766 UPDATE `list_options` SET `notes` = '1201-3' WHERE `title` = 'Poarch Band' AND `list_id` = 'race';
7767 #EndIf
7769 #IfNotRow2Dx2 list_options list_id race option_id pocomoke_acohonock title Pocomoke Acohonock
7770 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pocomoke_acohonock','Pocomoke Acohonock','6180', '0',' 1243-5', 0);
7771 #EndIf
7773 #IfRow2D list_options list_id race option_id pocomoke_acohonock
7774 UPDATE `list_options` SET `notes` = '1243-5' WHERE `option_id` = 'pocomoke_acohonock' AND `list_id` = 'race';
7775 #EndIf
7777 #IfRow2D list_options list_id race title Pocomoke Acohonock
7778 UPDATE `list_options` SET `notes` = '1243-5' WHERE `title` = 'Pocomoke Acohonock' AND `list_id` = 'race';
7779 #EndIf
7781 #IfNotRow2Dx2 list_options list_id race option_id pohnpeian title Pohnpeian
7782 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pohnpeian','Pohnpeian','6190', '0',' 2094-1', 0);
7783 #EndIf
7785 #IfRow2D list_options list_id race option_id pohnpeian
7786 UPDATE `list_options` SET `notes` = '2094-1' WHERE `option_id` = 'pohnpeian' AND `list_id` = 'race';
7787 #EndIf
7789 #IfRow2D list_options list_id race title Pohnpeian
7790 UPDATE `list_options` SET `notes` = '2094-1' WHERE `title` = 'Pohnpeian' AND `list_id` = 'race';
7791 #EndIf
7793 #IfNotRow2Dx2 list_options list_id race option_id point_hope title Point Hope
7794 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','point_hope','Point Hope','6200', '0',' 1876-2', 0);
7795 #EndIf
7797 #IfRow2D list_options list_id race option_id point_hope
7798 UPDATE `list_options` SET `notes` = '1876-2' WHERE `option_id` = 'point_hope' AND `list_id` = 'race';
7799 #EndIf
7801 #IfRow2D list_options list_id race title Point Hope
7802 UPDATE `list_options` SET `notes` = '1876-2' WHERE `title` = 'Point Hope' AND `list_id` = 'race';
7803 #EndIf
7805 #IfNotRow2Dx2 list_options list_id race option_id point_lay title Point Lay
7806 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','point_lay','Point Lay','6210', '0',' 1877-0', 0);
7807 #EndIf
7809 #IfRow2D list_options list_id race option_id point_lay
7810 UPDATE `list_options` SET `notes` = '1877-0' WHERE `option_id` = 'point_lay' AND `list_id` = 'race';
7811 #EndIf
7813 #IfRow2D list_options list_id race title Point Lay
7814 UPDATE `list_options` SET `notes` = '1877-0' WHERE `title` = 'Point Lay' AND `list_id` = 'race';
7815 #EndIf
7817 #IfNotRow2Dx2 list_options list_id race option_id pojoaque title Pojoaque
7818 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pojoaque','Pojoaque','6220', '0',' 1501-6', 0);
7819 #EndIf
7821 #IfRow2D list_options list_id race option_id pojoaque
7822 UPDATE `list_options` SET `notes` = '1501-6' WHERE `option_id` = 'pojoaque' AND `list_id` = 'race';
7823 #EndIf
7825 #IfRow2D list_options list_id race title Pojoaque
7826 UPDATE `list_options` SET `notes` = '1501-6' WHERE `title` = 'Pojoaque' AND `list_id` = 'race';
7827 #EndIf
7829 #IfNotRow2Dx2 list_options list_id race option_id pokagon_potawatomi title Pokagon Potawatomi
7830 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pokagon_potawatomi','Pokagon Potawatomi','6230', '0',' 1483-7', 0);
7831 #EndIf
7833 #IfRow2D list_options list_id race option_id pokagon_potawatomi
7834 UPDATE `list_options` SET `notes` = '1483-7' WHERE `option_id` = 'pokagon_potawatomi' AND `list_id` = 'race';
7835 #EndIf
7837 #IfRow2D list_options list_id race title Pokagon Potawatomi
7838 UPDATE `list_options` SET `notes` = '1483-7' WHERE `title` = 'Pokagon Potawatomi' AND `list_id` = 'race';
7839 #EndIf
7841 #IfNotRow2Dx2 list_options list_id race option_id polish title Polish
7842 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','polish','Polish','6240', '0',' 2115-4', 0);
7843 #EndIf
7845 #IfRow2D list_options list_id race option_id polish
7846 UPDATE `list_options` SET `notes` = '2115-4' WHERE `option_id` = 'polish' AND `list_id` = 'race';
7847 #EndIf
7849 #IfRow2D list_options list_id race title Polish
7850 UPDATE `list_options` SET `notes` = '2115-4' WHERE `title` = 'Polish' AND `list_id` = 'race';
7851 #EndIf
7853 #IfNotRow2Dx2 list_options list_id race option_id polynesian title Polynesian
7854 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','polynesian','Polynesian','6250', '0',' 2078-4', 0);
7855 #EndIf
7857 #IfRow2D list_options list_id race option_id polynesian
7858 UPDATE `list_options` SET `notes` = '2078-4' WHERE `option_id` = 'polynesian' AND `list_id` = 'race';
7859 #EndIf
7861 #IfRow2D list_options list_id race title Polynesian
7862 UPDATE `list_options` SET `notes` = '2078-4' WHERE `title` = 'Polynesian' AND `list_id` = 'race';
7863 #EndIf
7865 #IfNotRow2Dx2 list_options list_id race option_id pomo title Pomo
7866 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pomo','Pomo','6260', '0',' 1464-7', 0);
7867 #EndIf
7869 #IfRow2D list_options list_id race option_id pomo
7870 UPDATE `list_options` SET `notes` = '1464-7' WHERE `option_id` = 'pomo' AND `list_id` = 'race';
7871 #EndIf
7873 #IfRow2D list_options list_id race title Pomo
7874 UPDATE `list_options` SET `notes` = '1464-7' WHERE `title` = 'Pomo' AND `list_id` = 'race';
7875 #EndIf
7877 #IfNotRow2Dx2 list_options list_id race option_id ponca title Ponca
7878 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ponca','Ponca','6270', '0',' 1474-6', 0);
7879 #EndIf
7881 #IfRow2D list_options list_id race option_id ponca
7882 UPDATE `list_options` SET `notes` = '1474-6' WHERE `option_id` = 'ponca' AND `list_id` = 'race';
7883 #EndIf
7885 #IfRow2D list_options list_id race title Ponca
7886 UPDATE `list_options` SET `notes` = '1474-6' WHERE `title` = 'Ponca' AND `list_id` = 'race';
7887 #EndIf
7889 #IfNotRow2Dx2 list_options list_id race option_id poospatuck title Poospatuck
7890 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','poospatuck','Poospatuck','6280', '0',' 1328-4', 0);
7891 #EndIf
7893 #IfRow2D list_options list_id race option_id poospatuck
7894 UPDATE `list_options` SET `notes` = '1328-4' WHERE `option_id` = 'poospatuck' AND `list_id` = 'race';
7895 #EndIf
7897 #IfRow2D list_options list_id race title Poospatuck
7898 UPDATE `list_options` SET `notes` = '1328-4' WHERE `title` = 'Poospatuck' AND `list_id` = 'race';
7899 #EndIf
7901 #IfNotRow2Dx2 list_options list_id race option_id port_gamble_klallam title Port Gamble Klallam
7902 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_gamble_klallam','Port Gamble Klallam','6290', '0',' 1315-1', 0);
7903 #EndIf
7905 #IfRow2D list_options list_id race option_id port_gamble_klallam
7906 UPDATE `list_options` SET `notes` = '1315-1' WHERE `option_id` = 'port_gamble_klallam' AND `list_id` = 'race';
7907 #EndIf
7909 #IfRow2D list_options list_id race title Port Gamble Klallam
7910 UPDATE `list_options` SET `notes` = '1315-1' WHERE `title` = 'Port Gamble Klallam' AND `list_id` = 'race';
7911 #EndIf
7913 #IfNotRow2Dx2 list_options list_id race option_id port_graham title Port Graham
7914 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_graham','Port Graham','6300', '0',' 1988-5', 0);
7915 #EndIf
7917 #IfRow2D list_options list_id race option_id port_graham
7918 UPDATE `list_options` SET `notes` = '1988-5' WHERE `option_id` = 'port_graham' AND `list_id` = 'race';
7919 #EndIf
7921 #IfRow2D list_options list_id race title Port Graham
7922 UPDATE `list_options` SET `notes` = '1988-5' WHERE `title` = 'Port Graham' AND `list_id` = 'race';
7923 #EndIf
7925 #IfNotRow2Dx2 list_options list_id race option_id port_heiden title Port Heiden
7926 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_heiden','Port Heiden','6310', '0',' 1982-8', 0);
7927 #EndIf
7929 #IfRow2D list_options list_id race option_id port_heiden
7930 UPDATE `list_options` SET `notes` = '1982-8' WHERE `option_id` = 'port_heiden' AND `list_id` = 'race';
7931 #EndIf
7933 #IfRow2D list_options list_id race title Port Heiden
7934 UPDATE `list_options` SET `notes` = '1982-8' WHERE `title` = 'Port Heiden' AND `list_id` = 'race';
7935 #EndIf
7937 #IfNotRow2Dx2 list_options list_id race option_id port_lions title Port Lions
7938 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_lions','Port Lions','6320', '0',' 2000-8', 0);
7939 #EndIf
7941 #IfRow2D list_options list_id race option_id port_lions
7942 UPDATE `list_options` SET `notes` = '2000-8' WHERE `option_id` = 'port_lions' AND `list_id` = 'race';
7943 #EndIf
7945 #IfRow2D list_options list_id race title Port Lions
7946 UPDATE `list_options` SET `notes` = '2000-8' WHERE `title` = 'Port Lions' AND `list_id` = 'race';
7947 #EndIf
7949 #IfNotRow2Dx2 list_options list_id race option_id port_madison title Port Madison
7950 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','port_madison','Port Madison','6330', '0',' 1525-5', 0);
7951 #EndIf
7953 #IfRow2D list_options list_id race option_id port_madison
7954 UPDATE `list_options` SET `notes` = '1525-5' WHERE `option_id` = 'port_madison' AND `list_id` = 'race';
7955 #EndIf
7957 #IfRow2D list_options list_id race title Port Madison
7958 UPDATE `list_options` SET `notes` = '1525-5' WHERE `title` = 'Port Madison' AND `list_id` = 'race';
7959 #EndIf
7961 #IfNotRow2Dx2 list_options list_id race option_id portage_creek title Portage Creek
7962 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','portage_creek','Portage Creek','6340', '0',' 1948-9', 0);
7963 #EndIf
7965 #IfRow2D list_options list_id race option_id portage_creek
7966 UPDATE `list_options` SET `notes` = '1948-9' WHERE `option_id` = 'portage_creek' AND `list_id` = 'race';
7967 #EndIf
7969 #IfRow2D list_options list_id race title Portage Creek
7970 UPDATE `list_options` SET `notes` = '1948-9' WHERE `title` = 'Portage Creek' AND `list_id` = 'race';
7971 #EndIf
7973 #IfNotRow2Dx2 list_options list_id race option_id potawatomi title Potawatomi
7974 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','potawatomi','Potawatomi','6350', '0',' 1478-7', 0);
7975 #EndIf
7977 #IfRow2D list_options list_id race option_id potawatomi
7978 UPDATE `list_options` SET `notes` = '1478-7' WHERE `option_id` = 'potawatomi' AND `list_id` = 'race';
7979 #EndIf
7981 #IfRow2D list_options list_id race title Potawatomi
7982 UPDATE `list_options` SET `notes` = '1478-7' WHERE `title` = 'Potawatomi' AND `list_id` = 'race';
7983 #EndIf
7985 #IfNotRow2Dx2 list_options list_id race option_id powhatan title Powhatan
7986 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','powhatan','Powhatan','6360', '0',' 1487-8', 0);
7987 #EndIf
7989 #IfRow2D list_options list_id race option_id powhatan
7990 UPDATE `list_options` SET `notes` = '1487-8' WHERE `option_id` = 'powhatan' AND `list_id` = 'race';
7991 #EndIf
7993 #IfRow2D list_options list_id race title Powhatan
7994 UPDATE `list_options` SET `notes` = '1487-8' WHERE `title` = 'Powhatan' AND `list_id` = 'race';
7995 #EndIf
7997 #IfNotRow2Dx2 list_options list_id race option_id prairie_band title Prairie Band
7998 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','prairie_band','Prairie Band','6370', '0',' 1484-5', 0);
7999 #EndIf
8001 #IfRow2D list_options list_id race option_id prairie_band
8002 UPDATE `list_options` SET `notes` = '1484-5' WHERE `option_id` = 'prairie_band' AND `list_id` = 'race';
8003 #EndIf
8005 #IfRow2D list_options list_id race title Prairie Band
8006 UPDATE `list_options` SET `notes` = '1484-5' WHERE `title` = 'Prairie Band' AND `list_id` = 'race';
8007 #EndIf
8009 #IfNotRow2Dx2 list_options list_id race option_id prairie_island_sioux title Prairie Island Sioux
8010 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','prairie_island_sioux','Prairie Island Sioux','6380', '0',' 1625-3', 0);
8011 #EndIf
8013 #IfRow2D list_options list_id race option_id prairie_island_sioux
8014 UPDATE `list_options` SET `notes` = '1625-3' WHERE `option_id` = 'prairie_island_sioux' AND `list_id` = 'race';
8015 #EndIf
8017 #IfRow2D list_options list_id race title Prairie Island Sioux
8018 UPDATE `list_options` SET `notes` = '1625-3' WHERE `title` = 'Prairie Island Sioux' AND `list_id` = 'race';
8019 #EndIf
8021 #IfNotRow2Dx2 list_options list_id race option_id principal_creek_indian_nation title Principal Creek Indian Nation
8022 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','principal_creek_indian_nation','Principal Creek Indian Nation','6390', '0',' 1202-1', 0);
8023 #EndIf
8025 #IfRow2D list_options list_id race option_id principal_creek_indian_nation
8026 UPDATE `list_options` SET `notes` = '1202-1' WHERE `option_id` = 'principal_creek_indian_nation' AND `list_id` = 'race';
8027 #EndIf
8029 #IfRow2D list_options list_id race title Principal Creek Indian Nation
8030 UPDATE `list_options` SET `notes` = '1202-1' WHERE `title` = 'Principal Creek Indian Nation' AND `list_id` = 'race';
8031 #EndIf
8033 #IfNotRow2Dx2 list_options list_id race option_id prior_lake_sioux title Prior Lake Sioux
8034 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','prior_lake_sioux','Prior Lake Sioux','6400', '0',' 1626-1', 0);
8035 #EndIf
8037 #IfRow2D list_options list_id race option_id prior_lake_sioux
8038 UPDATE `list_options` SET `notes` = '1626-1' WHERE `option_id` = 'prior_lake_sioux' AND `list_id` = 'race';
8039 #EndIf
8041 #IfRow2D list_options list_id race title Prior Lake Sioux
8042 UPDATE `list_options` SET `notes` = '1626-1' WHERE `title` = 'Prior Lake Sioux' AND `list_id` = 'race';
8043 #EndIf
8045 #IfNotRow2Dx2 list_options list_id race option_id pueblo title Pueblo
8046 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pueblo','Pueblo','6410', '0',' 1489-4', 0);
8047 #EndIf
8049 #IfRow2D list_options list_id race option_id pueblo
8050 UPDATE `list_options` SET `notes` = '1489-4' WHERE `option_id` = 'pueblo' AND `list_id` = 'race';
8051 #EndIf
8053 #IfRow2D list_options list_id race title Pueblo
8054 UPDATE `list_options` SET `notes` = '1489-4' WHERE `title` = 'Pueblo' AND `list_id` = 'race';
8055 #EndIf
8057 #IfNotRow2Dx2 list_options list_id race option_id puget_sound_salish title Puget Sound Salish
8058 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','puget_sound_salish','Puget Sound Salish','6420', '0',' 1518-0', 0);
8059 #EndIf
8061 #IfRow2D list_options list_id race option_id puget_sound_salish
8062 UPDATE `list_options` SET `notes` = '1518-0' WHERE `option_id` = 'puget_sound_salish' AND `list_id` = 'race';
8063 #EndIf
8065 #IfRow2D list_options list_id race title Puget Sound Salish
8066 UPDATE `list_options` SET `notes` = '1518-0' WHERE `title` = 'Puget Sound Salish' AND `list_id` = 'race';
8067 #EndIf
8069 #IfNotRow2Dx2 list_options list_id race option_id puyallup title Puyallup
8070 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','puyallup','Puyallup','6430', '0',' 1526-3', 0);
8071 #EndIf
8073 #IfRow2D list_options list_id race option_id puyallup
8074 UPDATE `list_options` SET `notes` = '1526-3' WHERE `option_id` = 'puyallup' AND `list_id` = 'race';
8075 #EndIf
8077 #IfRow2D list_options list_id race title Puyallup
8078 UPDATE `list_options` SET `notes` = '1526-3' WHERE `title` = 'Puyallup' AND `list_id` = 'race';
8079 #EndIf
8081 #IfNotRow2Dx2 list_options list_id race option_id pyramid_lake title Pyramid Lake
8082 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','pyramid_lake','Pyramid Lake','6440', '0',' 1431-6', 0);
8083 #EndIf
8085 #IfRow2D list_options list_id race option_id pyramid_lake
8086 UPDATE `list_options` SET `notes` = '1431-6' WHERE `option_id` = 'pyramid_lake' AND `list_id` = 'race';
8087 #EndIf
8089 #IfRow2D list_options list_id race title Pyramid Lake
8090 UPDATE `list_options` SET `notes` = '1431-6' WHERE `title` = 'Pyramid Lake' AND `list_id` = 'race';
8091 #EndIf
8093 #IfNotRow2Dx2 list_options list_id race option_id qagan_toyagungin title Qagan Toyagungin
8094 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','qagan_toyagungin','Qagan Toyagungin','6450', '0',' 2019-8', 0);
8095 #EndIf
8097 #IfRow2D list_options list_id race option_id qagan_toyagungin
8098 UPDATE `list_options` SET `notes` = '2019-8' WHERE `option_id` = 'qagan_toyagungin' AND `list_id` = 'race';
8099 #EndIf
8101 #IfRow2D list_options list_id race title Qagan Toyagungin
8102 UPDATE `list_options` SET `notes` = '2019-8' WHERE `title` = 'Qagan Toyagungin' AND `list_id` = 'race';
8103 #EndIf
8105 #IfNotRow2Dx2 list_options list_id race option_id qawalangin title Qawalangin
8106 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','qawalangin','Qawalangin','6460', '0',' 2020-6', 0);
8107 #EndIf
8109 #IfRow2D list_options list_id race option_id qawalangin
8110 UPDATE `list_options` SET `notes` = '2020-6' WHERE `option_id` = 'qawalangin' AND `list_id` = 'race';
8111 #EndIf
8113 #IfRow2D list_options list_id race title Qawalangin
8114 UPDATE `list_options` SET `notes` = '2020-6' WHERE `title` = 'Qawalangin' AND `list_id` = 'race';
8115 #EndIf
8117 #IfNotRow2Dx2 list_options list_id race option_id quapaw title Quapaw
8118 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quapaw','Quapaw','6470', '0',' 1541-2', 0);
8119 #EndIf
8121 #IfRow2D list_options list_id race option_id quapaw
8122 UPDATE `list_options` SET `notes` = '1541-2' WHERE `option_id` = 'quapaw' AND `list_id` = 'race';
8123 #EndIf
8125 #IfRow2D list_options list_id race title Quapaw
8126 UPDATE `list_options` SET `notes` = '1541-2' WHERE `title` = 'Quapaw' AND `list_id` = 'race';
8127 #EndIf
8129 #IfNotRow2Dx2 list_options list_id race option_id quechan title Quechan
8130 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quechan','Quechan','6480', '0',' 1730-1', 0);
8131 #EndIf
8133 #IfRow2D list_options list_id race option_id quechan
8134 UPDATE `list_options` SET `notes` = '1730-1' WHERE `option_id` = 'quechan' AND `list_id` = 'race';
8135 #EndIf
8137 #IfRow2D list_options list_id race title Quechan
8138 UPDATE `list_options` SET `notes` = '1730-1' WHERE `title` = 'Quechan' AND `list_id` = 'race';
8139 #EndIf
8141 #IfNotRow2Dx2 list_options list_id race option_id quileute title Quileute
8142 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quileute','Quileute','6490', '0',' 1084-3', 0);
8143 #EndIf
8145 #IfRow2D list_options list_id race option_id quileute
8146 UPDATE `list_options` SET `notes` = '1084-3' WHERE `option_id` = 'quileute' AND `list_id` = 'race';
8147 #EndIf
8149 #IfRow2D list_options list_id race title Quileute
8150 UPDATE `list_options` SET `notes` = '1084-3' WHERE `title` = 'Quileute' AND `list_id` = 'race';
8151 #EndIf
8153 #IfNotRow2Dx2 list_options list_id race option_id quinault title Quinault
8154 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quinault','Quinault','6500', '0',' 1543-8', 0);
8155 #EndIf
8157 #IfRow2D list_options list_id race option_id quinault
8158 UPDATE `list_options` SET `notes` = '1543-8' WHERE `option_id` = 'quinault' AND `list_id` = 'race';
8159 #EndIf
8161 #IfRow2D list_options list_id race title Quinault
8162 UPDATE `list_options` SET `notes` = '1543-8' WHERE `title` = 'Quinault' AND `list_id` = 'race';
8163 #EndIf
8165 #IfNotRow2Dx2 list_options list_id race option_id quinhagak title Quinhagak
8166 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','quinhagak','Quinhagak','6510', '0',' 1949-7', 0);
8167 #EndIf
8169 #IfRow2D list_options list_id race option_id quinhagak
8170 UPDATE `list_options` SET `notes` = '1949-7' WHERE `option_id` = 'quinhagak' AND `list_id` = 'race';
8171 #EndIf
8173 #IfRow2D list_options list_id race title Quinhagak
8174 UPDATE `list_options` SET `notes` = '1949-7' WHERE `title` = 'Quinhagak' AND `list_id` = 'race';
8175 #EndIf
8177 #IfNotRow2Dx2 list_options list_id race option_id ramah_navajo title Ramah Navajo
8178 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ramah_navajo','Ramah Navajo','6520', '0',' 1385-4', 0);
8179 #EndIf
8181 #IfRow2D list_options list_id race option_id ramah_navajo
8182 UPDATE `list_options` SET `notes` = '1385-4' WHERE `option_id` = 'ramah_navajo' AND `list_id` = 'race';
8183 #EndIf
8185 #IfRow2D list_options list_id race title Ramah Navajo
8186 UPDATE `list_options` SET `notes` = '1385-4' WHERE `title` = 'Ramah Navajo' AND `list_id` = 'race';
8187 #EndIf
8189 #IfNotRow2Dx2 list_options list_id race option_id rampart title Rampart
8190 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rampart','Rampart','6530', '0',' 1790-5', 0);
8191 #EndIf
8193 #IfRow2D list_options list_id race option_id rampart
8194 UPDATE `list_options` SET `notes` = '1790-5' WHERE `option_id` = 'rampart' AND `list_id` = 'race';
8195 #EndIf
8197 #IfRow2D list_options list_id race title Rampart
8198 UPDATE `list_options` SET `notes` = '1790-5' WHERE `title` = 'Rampart' AND `list_id` = 'race';
8199 #EndIf
8201 #IfNotRow2Dx2 list_options list_id race option_id rampough_mountain title Rampough Mountain
8202 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rampough_mountain','Rampough Mountain','6540', '0',' 1219-5', 0);
8203 #EndIf
8205 #IfRow2D list_options list_id race option_id rampough_mountain
8206 UPDATE `list_options` SET `notes` = '1219-5' WHERE `option_id` = 'rampough_mountain' AND `list_id` = 'race';
8207 #EndIf
8209 #IfRow2D list_options list_id race title Rampough Mountain
8210 UPDATE `list_options` SET `notes` = '1219-5' WHERE `title` = 'Rampough Mountain' AND `list_id` = 'race';
8211 #EndIf
8213 #IfNotRow2Dx2 list_options list_id race option_id rappahannock title Rappahannock
8214 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rappahannock','Rappahannock','6550', '0',' 1545-3', 0);
8215 #EndIf
8217 #IfRow2D list_options list_id race option_id rappahannock
8218 UPDATE `list_options` SET `notes` = '1545-3' WHERE `option_id` = 'rappahannock' AND `list_id` = 'race';
8219 #EndIf
8221 #IfRow2D list_options list_id race title Rappahannock
8222 UPDATE `list_options` SET `notes` = '1545-3' WHERE `title` = 'Rappahannock' AND `list_id` = 'race';
8223 #EndIf
8225 #IfNotRow2Dx2 list_options list_id race option_id red_cliff_chippewa title Red Cliff Chippewa
8226 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','red_cliff_chippewa','Red Cliff Chippewa','6560', '0',' 1141-1', 0);
8227 #EndIf
8229 #IfRow2D list_options list_id race option_id red_cliff_chippewa
8230 UPDATE `list_options` SET `notes` = '1141-1' WHERE `option_id` = 'red_cliff_chippewa' AND `list_id` = 'race';
8231 #EndIf
8233 #IfRow2D list_options list_id race title Red Cliff Chippewa
8234 UPDATE `list_options` SET `notes` = '1141-1' WHERE `title` = 'Red Cliff Chippewa' AND `list_id` = 'race';
8235 #EndIf
8237 #IfNotRow2Dx2 list_options list_id race option_id red_devil title Red Devil
8238 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','red_devil','Red Devil','6570', '0',' 1950-5', 0);
8239 #EndIf
8241 #IfRow2D list_options list_id race option_id red_devil
8242 UPDATE `list_options` SET `notes` = '1950-5' WHERE `option_id` = 'red_devil' AND `list_id` = 'race';
8243 #EndIf
8245 #IfRow2D list_options list_id race title Red Devil
8246 UPDATE `list_options` SET `notes` = '1950-5' WHERE `title` = 'Red Devil' AND `list_id` = 'race';
8247 #EndIf
8249 #IfNotRow2Dx2 list_options list_id race option_id red_lake_chippewa title Red Lake Chippewa
8250 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','red_lake_chippewa','Red Lake Chippewa','6580', '0',' 1142-9', 0);
8251 #EndIf
8253 #IfRow2D list_options list_id race option_id red_lake_chippewa
8254 UPDATE `list_options` SET `notes` = '1142-9' WHERE `option_id` = 'red_lake_chippewa' AND `list_id` = 'race';
8255 #EndIf
8257 #IfRow2D list_options list_id race title Red Lake Chippewa
8258 UPDATE `list_options` SET `notes` = '1142-9' WHERE `title` = 'Red Lake Chippewa' AND `list_id` = 'race';
8259 #EndIf
8261 #IfNotRow2Dx2 list_options list_id race option_id red_wood title Red Wood
8262 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','red_wood','Red Wood','6590', '0',' 1061-1', 0);
8263 #EndIf
8265 #IfRow2D list_options list_id race option_id red_wood
8266 UPDATE `list_options` SET `notes` = '1061-1' WHERE `option_id` = 'red_wood' AND `list_id` = 'race';
8267 #EndIf
8269 #IfRow2D list_options list_id race title Red Wood
8270 UPDATE `list_options` SET `notes` = '1061-1' WHERE `title` = 'Red Wood' AND `list_id` = 'race';
8271 #EndIf
8273 #IfNotRow2Dx2 list_options list_id race option_id reno-sparks title Reno-Sparks
8274 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','reno-sparks','Reno-Sparks','6600', '0',' 1547-9', 0);
8275 #EndIf
8277 #IfRow2D list_options list_id race option_id reno-sparks
8278 UPDATE `list_options` SET `notes` = '1547-9' WHERE `option_id` = 'reno-sparks' AND `list_id` = 'race';
8279 #EndIf
8281 #IfRow2D list_options list_id race title Reno-Sparks
8282 UPDATE `list_options` SET `notes` = '1547-9' WHERE `title` = 'Reno-Sparks' AND `list_id` = 'race';
8283 #EndIf
8285 #IfNotRow2D list_options list_id race option_id rocky_boys_chippewa_cree
8286 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rocky_boys_chippewa_cree',"Rocky Boy's Chippewa Cree",'6610', '0',' 1151-0', 0);
8287 #EndIf
8289 #IfRow2D list_options list_id race option_id rocky_boys_chippewa_cree
8290 UPDATE `list_options` SET `notes` = '1151-0' WHERE `option_id` = 'rocky_boys_chippewa_cree' AND `list_id` = 'race';
8291 #EndIf
8293 #IfNotRow2Dx2 list_options list_id race option_id rosebud_sioux title Rosebud Sioux
8294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','rosebud_sioux','Rosebud Sioux','6620', '0',' 1627-9', 0);
8295 #EndIf
8297 #IfRow2D list_options list_id race option_id rosebud_sioux
8298 UPDATE `list_options` SET `notes` = '1627-9' WHERE `option_id` = 'rosebud_sioux' AND `list_id` = 'race';
8299 #EndIf
8301 #IfRow2D list_options list_id race title Rosebud Sioux
8302 UPDATE `list_options` SET `notes` = '1627-9' WHERE `title` = 'Rosebud Sioux' AND `list_id` = 'race';
8303 #EndIf
8305 #IfNotRow2Dx2 list_options list_id race option_id round_valley title Round Valley
8306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','round_valley','Round Valley','6630', '0',' 1549-5', 0);
8307 #EndIf
8309 #IfRow2D list_options list_id race option_id round_valley
8310 UPDATE `list_options` SET `notes` = '1549-5' WHERE `option_id` = 'round_valley' AND `list_id` = 'race';
8311 #EndIf
8313 #IfRow2D list_options list_id race title Round Valley
8314 UPDATE `list_options` SET `notes` = '1549-5' WHERE `title` = 'Round Valley' AND `list_id` = 'race';
8315 #EndIf
8317 #IfNotRow2Dx2 list_options list_id race option_id ruby title Ruby
8318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ruby','Ruby','6640', '0',' 1791-3', 0);
8319 #EndIf
8321 #IfRow2D list_options list_id race option_id ruby
8322 UPDATE `list_options` SET `notes` = '1791-3' WHERE `option_id` = 'ruby' AND `list_id` = 'race';
8323 #EndIf
8325 #IfRow2D list_options list_id race title Ruby
8326 UPDATE `list_options` SET `notes` = '1791-3' WHERE `title` = 'Ruby' AND `list_id` = 'race';
8327 #EndIf
8329 #IfNotRow2Dx2 list_options list_id race option_id ruby_valley title Ruby Valley
8330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ruby_valley','Ruby Valley','6650', '0',' 1593-3', 0);
8331 #EndIf
8333 #IfRow2D list_options list_id race option_id ruby_valley
8334 UPDATE `list_options` SET `notes` = '1593-3' WHERE `option_id` = 'ruby_valley' AND `list_id` = 'race';
8335 #EndIf
8337 #IfRow2D list_options list_id race title Ruby Valley
8338 UPDATE `list_options` SET `notes` = '1593-3' WHERE `title` = 'Ruby Valley' AND `list_id` = 'race';
8339 #EndIf
8341 #IfNotRow2Dx2 list_options list_id race option_id sac_and_fox title Sac and Fox
8342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sac_and_fox','Sac and Fox','6660', '0',' 1551-1', 0);
8343 #EndIf
8345 #IfRow2D list_options list_id race option_id sac_and_fox
8346 UPDATE `list_options` SET `notes` = '1551-1' WHERE `option_id` = 'sac_and_fox' AND `list_id` = 'race';
8347 #EndIf
8349 #IfRow2D list_options list_id race title Sac and Fox
8350 UPDATE `list_options` SET `notes` = '1551-1' WHERE `title` = 'Sac and Fox' AND `list_id` = 'race';
8351 #EndIf
8353 #IfNotRow2Dx2 list_options list_id race option_id saginaw_chippewa title Saginaw Chippewa
8354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','saginaw_chippewa','Saginaw Chippewa','6670', '0',' 1143-7', 0);
8355 #EndIf
8357 #IfRow2D list_options list_id race option_id saginaw_chippewa
8358 UPDATE `list_options` SET `notes` = '1143-7' WHERE `option_id` = 'saginaw_chippewa' AND `list_id` = 'race';
8359 #EndIf
8361 #IfRow2D list_options list_id race title Saginaw Chippewa
8362 UPDATE `list_options` SET `notes` = '1143-7' WHERE `title` = 'Saginaw Chippewa' AND `list_id` = 'race';
8363 #EndIf
8365 #IfNotRow2Dx2 list_options list_id race option_id saipanese title Saipanese
8366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','saipanese','Saipanese','6680', '0',' 2095-8', 0);
8367 #EndIf
8369 #IfRow2D list_options list_id race option_id saipanese
8370 UPDATE `list_options` SET `notes` = '2095-8' WHERE `option_id` = 'saipanese' AND `list_id` = 'race';
8371 #EndIf
8373 #IfRow2D list_options list_id race title Saipanese
8374 UPDATE `list_options` SET `notes` = '2095-8' WHERE `title` = 'Saipanese' AND `list_id` = 'race';
8375 #EndIf
8377 #IfNotRow2Dx2 list_options list_id race option_id salamatof title Salamatof
8378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salamatof','Salamatof','6690', '0',' 1792-1', 0);
8379 #EndIf
8381 #IfRow2D list_options list_id race option_id salamatof
8382 UPDATE `list_options` SET `notes` = '1792-1' WHERE `option_id` = 'salamatof' AND `list_id` = 'race';
8383 #EndIf
8385 #IfRow2D list_options list_id race title Salamatof
8386 UPDATE `list_options` SET `notes` = '1792-1' WHERE `title` = 'Salamatof' AND `list_id` = 'race';
8387 #EndIf
8389 #IfNotRow2Dx2 list_options list_id race option_id salinan title Salinan
8390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salinan','Salinan','6700', '0',' 1556-0', 0);
8391 #EndIf
8393 #IfRow2D list_options list_id race option_id salinan
8394 UPDATE `list_options` SET `notes` = '1556-0' WHERE `option_id` = 'salinan' AND `list_id` = 'race';
8395 #EndIf
8397 #IfRow2D list_options list_id race title Salinan
8398 UPDATE `list_options` SET `notes` = '1556-0' WHERE `title` = 'Salinan' AND `list_id` = 'race';
8399 #EndIf
8401 #IfNotRow2Dx2 list_options list_id race option_id salish title Salish
8402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salish','Salish','6710', '0',' 1558-6', 0);
8403 #EndIf
8405 #IfRow2D list_options list_id race option_id salish
8406 UPDATE `list_options` SET `notes` = '1558-6' WHERE `option_id` = 'salish' AND `list_id` = 'race';
8407 #EndIf
8409 #IfRow2D list_options list_id race title Salish
8410 UPDATE `list_options` SET `notes` = '1558-6' WHERE `title` = 'Salish' AND `list_id` = 'race';
8411 #EndIf
8413 #IfNotRow2Dx2 list_options list_id race option_id salish_and_kootenai title Salish and Kootenai
8414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salish_and_kootenai','Salish and Kootenai','6720', '0',' 1560-2', 0);
8415 #EndIf
8417 #IfRow2D list_options list_id race option_id salish_and_kootenai
8418 UPDATE `list_options` SET `notes` = '1560-2' WHERE `option_id` = 'salish_and_kootenai' AND `list_id` = 'race';
8419 #EndIf
8421 #IfRow2D list_options list_id race title Salish and Kootenai
8422 UPDATE `list_options` SET `notes` = '1560-2' WHERE `title` = 'Salish and Kootenai' AND `list_id` = 'race';
8423 #EndIf
8425 #IfNotRow2Dx2 list_options list_id race option_id salt_river_pima-maricopa title Salt River Pima-Maricopa
8426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','salt_river_pima-maricopa','Salt River Pima-Maricopa','6730', '0',' 1458-9', 0);
8427 #EndIf
8429 #IfRow2D list_options list_id race option_id salt_river_pima-maricopa
8430 UPDATE `list_options` SET `notes` = '1458-9' WHERE `option_id` = 'salt_river_pima-maricopa' AND `list_id` = 'race';
8431 #EndIf
8433 #IfRow2D list_options list_id race title Salt River Pima-Maricopa
8434 UPDATE `list_options` SET `notes` = '1458-9' WHERE `title` = 'Salt River Pima-Maricopa' AND `list_id` = 'race';
8435 #EndIf
8437 #IfNotRow2Dx2 list_options list_id race option_id samish title Samish
8438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','samish','Samish','6740', '0',' 1527-1', 0);
8439 #EndIf
8441 #IfRow2D list_options list_id race option_id samish
8442 UPDATE `list_options` SET `notes` = '1527-1' WHERE `option_id` = 'samish' AND `list_id` = 'race';
8443 #EndIf
8445 #IfRow2D list_options list_id race title Samish
8446 UPDATE `list_options` SET `notes` = '1527-1' WHERE `title` = 'Samish' AND `list_id` = 'race';
8447 #EndIf
8449 #IfNotRow2Dx2 list_options list_id race option_id samoan title Samoan
8450 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','samoan','Samoan','6750', '0',' 2080-0', 0);
8451 #EndIf
8453 #IfRow2D list_options list_id race option_id samoan
8454 UPDATE `list_options` SET `notes` = '2080-0' WHERE `option_id` = 'samoan' AND `list_id` = 'race';
8455 #EndIf
8457 #IfRow2D list_options list_id race title Samoan
8458 UPDATE `list_options` SET `notes` = '2080-0' WHERE `title` = 'Samoan' AND `list_id` = 'race';
8459 #EndIf
8461 #IfNotRow2Dx2 list_options list_id race option_id san_carlos_apache title San Carlos Apache
8462 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_carlos_apache','San Carlos Apache','6760', '0',' 1018-1', 0);
8463 #EndIf
8465 #IfRow2D list_options list_id race option_id san_carlos_apache
8466 UPDATE `list_options` SET `notes` = '1018-1' WHERE `option_id` = 'san_carlos_apache' AND `list_id` = 'race';
8467 #EndIf
8469 #IfRow2D list_options list_id race title San Carlos Apache
8470 UPDATE `list_options` SET `notes` = '1018-1' WHERE `title` = 'San Carlos Apache' AND `list_id` = 'race';
8471 #EndIf
8473 #IfNotRow2Dx2 list_options list_id race option_id san_felipe title San Felipe
8474 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_felipe','San Felipe','6770', '0',' 1502-4', 0);
8475 #EndIf
8477 #IfRow2D list_options list_id race option_id san_felipe
8478 UPDATE `list_options` SET `notes` = '1502-4' WHERE `option_id` = 'san_felipe' AND `list_id` = 'race';
8479 #EndIf
8481 #IfRow2D list_options list_id race title San Felipe
8482 UPDATE `list_options` SET `notes` = '1502-4' WHERE `title` = 'San Felipe' AND `list_id` = 'race';
8483 #EndIf
8485 #IfNotRow2Dx2 list_options list_id race option_id san_ildefonso title San Ildefonso
8486 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_ildefonso','San Ildefonso','6780', '0',' 1503-2', 0);
8487 #EndIf
8489 #IfRow2D list_options list_id race option_id san_ildefonso
8490 UPDATE `list_options` SET `notes` = '1503-2' WHERE `option_id` = 'san_ildefonso' AND `list_id` = 'race';
8491 #EndIf
8493 #IfRow2D list_options list_id race title San Ildefonso
8494 UPDATE `list_options` SET `notes` = '1503-2' WHERE `title` = 'San Ildefonso' AND `list_id` = 'race';
8495 #EndIf
8497 #IfNotRow2Dx2 list_options list_id race option_id san_juan title San Juan
8498 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_juan','San Juan','6790', '0',' 1506-5', 0);
8499 #EndIf
8501 #IfRow2D list_options list_id race option_id san_juan
8502 UPDATE `list_options` SET `notes` = '1506-5' WHERE `option_id` = 'san_juan' AND `list_id` = 'race';
8503 #EndIf
8505 #IfRow2D list_options list_id race title San Juan
8506 UPDATE `list_options` SET `notes` = '1506-5' WHERE `title` = 'San Juan' AND `list_id` = 'race';
8507 #EndIf
8509 #IfNotRow2Dx2 list_options list_id race option_id san_juan_de title San Juan De
8510 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_juan_de','San Juan De','6800', '0',' 1505-7', 0);
8511 #EndIf
8513 #IfRow2D list_options list_id race option_id san_juan_de
8514 UPDATE `list_options` SET `notes` = '1505-7' WHERE `option_id` = 'san_juan_de' AND `list_id` = 'race';
8515 #EndIf
8517 #IfRow2D list_options list_id race title San Juan De
8518 UPDATE `list_options` SET `notes` = '1505-7' WHERE `title` = 'San Juan De' AND `list_id` = 'race';
8519 #EndIf
8521 #IfNotRow2Dx2 list_options list_id race option_id san_juan_pueblo title San Juan Pueblo
8522 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_juan_pueblo','San Juan Pueblo','6810', '0',' 1504-0', 0);
8523 #EndIf
8525 #IfRow2D list_options list_id race option_id san_juan_pueblo
8526 UPDATE `list_options` SET `notes` = '1504-0' WHERE `option_id` = 'san_juan_pueblo' AND `list_id` = 'race';
8527 #EndIf
8529 #IfRow2D list_options list_id race title San Juan Pueblo
8530 UPDATE `list_options` SET `notes` = '1504-0' WHERE `title` = 'San Juan Pueblo' AND `list_id` = 'race';
8531 #EndIf
8533 #IfNotRow2Dx2 list_options list_id race option_id san_juan_southern_paiute title San Juan Southern Paiute
8534 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_juan_southern_paiute','San Juan Southern Paiute','6820', '0',' 1432-4', 0);
8535 #EndIf
8537 #IfRow2D list_options list_id race option_id san_juan_southern_paiute
8538 UPDATE `list_options` SET `notes` = '1432-4' WHERE `option_id` = 'san_juan_southern_paiute' AND `list_id` = 'race';
8539 #EndIf
8541 #IfRow2D list_options list_id race title San Juan Southern Paiute
8542 UPDATE `list_options` SET `notes` = '1432-4' WHERE `title` = 'San Juan Southern Paiute' AND `list_id` = 'race';
8543 #EndIf
8545 #IfNotRow2Dx2 list_options list_id race option_id san_manual title San Manual
8546 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_manual','San Manual','6830', '0',' 1574-3', 0);
8547 #EndIf
8549 #IfRow2D list_options list_id race option_id san_manual
8550 UPDATE `list_options` SET `notes` = '1574-3' WHERE `option_id` = 'san_manual' AND `list_id` = 'race';
8551 #EndIf
8553 #IfRow2D list_options list_id race title San Manual
8554 UPDATE `list_options` SET `notes` = '1574-3' WHERE `title` = 'San Manual' AND `list_id` = 'race';
8555 #EndIf
8557 #IfNotRow2Dx2 list_options list_id race option_id san_pasqual title San Pasqual
8558 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_pasqual','San Pasqual','6840', '0',' 1229-4', 0);
8559 #EndIf
8561 #IfRow2D list_options list_id race option_id san_pasqual
8562 UPDATE `list_options` SET `notes` = '1229-4' WHERE `option_id` = 'san_pasqual' AND `list_id` = 'race';
8563 #EndIf
8565 #IfRow2D list_options list_id race title San Pasqual
8566 UPDATE `list_options` SET `notes` = '1229-4' WHERE `title` = 'San Pasqual' AND `list_id` = 'race';
8567 #EndIf
8569 #IfNotRow2Dx2 list_options list_id race option_id san_xavier title San Xavier
8570 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','san_xavier','San Xavier','6850', '0',' 1656-8', 0);
8571 #EndIf
8573 #IfRow2D list_options list_id race option_id san_xavier
8574 UPDATE `list_options` SET `notes` = '1656-8' WHERE `option_id` = 'san_xavier' AND `list_id` = 'race';
8575 #EndIf
8577 #IfRow2D list_options list_id race title San Xavier
8578 UPDATE `list_options` SET `notes` = '1656-8' WHERE `title` = 'San Xavier' AND `list_id` = 'race';
8579 #EndIf
8581 #IfNotRow2Dx2 list_options list_id race option_id sand_hill title Sand Hill
8582 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sand_hill','Sand Hill','6860', '0',' 1220-3', 0);
8583 #EndIf
8585 #IfRow2D list_options list_id race option_id sand_hill
8586 UPDATE `list_options` SET `notes` = '1220-3' WHERE `option_id` = 'sand_hill' AND `list_id` = 'race';
8587 #EndIf
8589 #IfRow2D list_options list_id race title Sand Hill
8590 UPDATE `list_options` SET `notes` = '1220-3' WHERE `title` = 'Sand Hill' AND `list_id` = 'race';
8591 #EndIf
8593 #IfNotRow2Dx2 list_options list_id race option_id sand_point title Sand Point
8594 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sand_point','Sand Point','6870', '0',' 2023-0', 0);
8595 #EndIf
8597 #IfRow2D list_options list_id race option_id sand_point
8598 UPDATE `list_options` SET `notes` = '2023-0' WHERE `option_id` = 'sand_point' AND `list_id` = 'race';
8599 #EndIf
8601 #IfRow2D list_options list_id race title Sand Point
8602 UPDATE `list_options` SET `notes` = '2023-0' WHERE `title` = 'Sand Point' AND `list_id` = 'race';
8603 #EndIf
8605 #IfNotRow2Dx2 list_options list_id race option_id sandia title Sandia
8606 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sandia','Sandia','6880', '0',' 1507-3', 0);
8607 #EndIf
8609 #IfRow2D list_options list_id race option_id sandia
8610 UPDATE `list_options` SET `notes` = '1507-3' WHERE `option_id` = 'sandia' AND `list_id` = 'race';
8611 #EndIf
8613 #IfRow2D list_options list_id race title Sandia
8614 UPDATE `list_options` SET `notes` = '1507-3' WHERE `title` = 'Sandia' AND `list_id` = 'race';
8615 #EndIf
8617 #IfNotRow2Dx2 list_options list_id race option_id sans_arc_sioux title Sans Arc Sioux
8618 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sans_arc_sioux','Sans Arc Sioux','6890', '0',' 1628-7', 0);
8619 #EndIf
8621 #IfRow2D list_options list_id race option_id sans_arc_sioux
8622 UPDATE `list_options` SET `notes` = '1628-7' WHERE `option_id` = 'sans_arc_sioux' AND `list_id` = 'race';
8623 #EndIf
8625 #IfRow2D list_options list_id race title Sans Arc Sioux
8626 UPDATE `list_options` SET `notes` = '1628-7' WHERE `title` = 'Sans Arc Sioux' AND `list_id` = 'race';
8627 #EndIf
8629 #IfNotRow2Dx2 list_options list_id race option_id santa_ana title Santa Ana
8630 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_ana','Santa Ana','6900', '0',' 1508-1', 0);
8631 #EndIf
8633 #IfRow2D list_options list_id race option_id santa_ana
8634 UPDATE `list_options` SET `notes` = '1508-1' WHERE `option_id` = 'santa_ana' AND `list_id` = 'race';
8635 #EndIf
8637 #IfRow2D list_options list_id race title Santa Ana
8638 UPDATE `list_options` SET `notes` = '1508-1' WHERE `title` = 'Santa Ana' AND `list_id` = 'race';
8639 #EndIf
8641 #IfNotRow2Dx2 list_options list_id race option_id santa_clara title Santa Clara
8642 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_clara','Santa Clara','6910', '0',' 1509-9', 0);
8643 #EndIf
8645 #IfRow2D list_options list_id race option_id santa_clara
8646 UPDATE `list_options` SET `notes` = '1509-9' WHERE `option_id` = 'santa_clara' AND `list_id` = 'race';
8647 #EndIf
8649 #IfRow2D list_options list_id race title Santa Clara
8650 UPDATE `list_options` SET `notes` = '1509-9' WHERE `title` = 'Santa Clara' AND `list_id` = 'race';
8651 #EndIf
8653 #IfNotRow2Dx2 list_options list_id race option_id santa_rosa title Santa Rosa
8654 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_rosa','Santa Rosa','6920', '0',' 1062-9', 0);
8655 #EndIf
8657 #IfRow2D list_options list_id race option_id santa_rosa
8658 UPDATE `list_options` SET `notes` = '1062-9' WHERE `option_id` = 'santa_rosa' AND `list_id` = 'race';
8659 #EndIf
8661 #IfRow2D list_options list_id race title Santa Rosa
8662 UPDATE `list_options` SET `notes` = '1062-9' WHERE `title` = 'Santa Rosa' AND `list_id` = 'race';
8663 #EndIf
8665 #IfNotRow2Dx2 list_options list_id race option_id santa_rosa_cahuilla title Santa Rosa Cahuilla
8666 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_rosa_cahuilla','Santa Rosa Cahuilla','6930', '0',' 1050-4', 0);
8667 #EndIf
8669 #IfRow2D list_options list_id race option_id santa_rosa_cahuilla
8670 UPDATE `list_options` SET `notes` = '1050-4' WHERE `option_id` = 'santa_rosa_cahuilla' AND `list_id` = 'race';
8671 #EndIf
8673 #IfRow2D list_options list_id race title Santa Rosa Cahuilla
8674 UPDATE `list_options` SET `notes` = '1050-4' WHERE `title` = 'Santa Rosa Cahuilla' AND `list_id` = 'race';
8675 #EndIf
8677 #IfNotRow2Dx2 list_options list_id race option_id santa_ynez title Santa Ynez
8678 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_ynez','Santa Ynez','6940', '0',' 1163-5', 0);
8679 #EndIf
8681 #IfRow2D list_options list_id race option_id santa_ynez
8682 UPDATE `list_options` SET `notes` = '1163-5' WHERE `option_id` = 'santa_ynez' AND `list_id` = 'race';
8683 #EndIf
8685 #IfRow2D list_options list_id race title Santa Ynez
8686 UPDATE `list_options` SET `notes` = '1163-5' WHERE `title` = 'Santa Ynez' AND `list_id` = 'race';
8687 #EndIf
8689 #IfNotRow2Dx2 list_options list_id race option_id santa_ysabel title Santa Ysabel
8690 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santa_ysabel','Santa Ysabel','6950', '0',' 1230-2', 0);
8691 #EndIf
8693 #IfRow2D list_options list_id race option_id santa_ysabel
8694 UPDATE `list_options` SET `notes` = '1230-2' WHERE `option_id` = 'santa_ysabel' AND `list_id` = 'race';
8695 #EndIf
8697 #IfRow2D list_options list_id race title Santa Ysabel
8698 UPDATE `list_options` SET `notes` = '1230-2' WHERE `title` = 'Santa Ysabel' AND `list_id` = 'race';
8699 #EndIf
8701 #IfNotRow2Dx2 list_options list_id race option_id santee_sioux title Santee Sioux
8702 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santee_sioux','Santee Sioux','6960', '0',' 1629-5', 0);
8703 #EndIf
8705 #IfRow2D list_options list_id race option_id santee_sioux
8706 UPDATE `list_options` SET `notes` = '1629-5' WHERE `option_id` = 'santee_sioux' AND `list_id` = 'race';
8707 #EndIf
8709 #IfRow2D list_options list_id race title Santee Sioux
8710 UPDATE `list_options` SET `notes` = '1629-5' WHERE `title` = 'Santee Sioux' AND `list_id` = 'race';
8711 #EndIf
8713 #IfNotRow2Dx2 list_options list_id race option_id santo_domingo title Santo Domingo
8714 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','santo_domingo','Santo Domingo','6970', '0',' 1510-7', 0);
8715 #EndIf
8717 #IfRow2D list_options list_id race option_id santo_domingo
8718 UPDATE `list_options` SET `notes` = '1510-7' WHERE `option_id` = 'santo_domingo' AND `list_id` = 'race';
8719 #EndIf
8721 #IfRow2D list_options list_id race title Santo Domingo
8722 UPDATE `list_options` SET `notes` = '1510-7' WHERE `title` = 'Santo Domingo' AND `list_id` = 'race';
8723 #EndIf
8725 #IfNotRow2Dx2 list_options list_id race option_id sauk-suiattle title Sauk-Suiattle
8726 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sauk-suiattle','Sauk-Suiattle','6980', '0',' 1528-9', 0);
8727 #EndIf
8729 #IfRow2D list_options list_id race option_id sauk-suiattle
8730 UPDATE `list_options` SET `notes` = '1528-9' WHERE `option_id` = 'sauk-suiattle' AND `list_id` = 'race';
8731 #EndIf
8733 #IfRow2D list_options list_id race title Sauk-Suiattle
8734 UPDATE `list_options` SET `notes` = '1528-9' WHERE `title` = 'Sauk-Suiattle' AND `list_id` = 'race';
8735 #EndIf
8737 #IfNotRow2Dx2 list_options list_id race option_id sault_ste_marie_chippewa title Sault Ste. Marie Chippewa
8738 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sault_ste_marie_chippewa','Sault Ste. Marie Chippewa','6990', '0',' 1145-2', 0);
8739 #EndIf
8741 #IfRow2D list_options list_id race option_id sault_ste_marie_chippewa
8742 UPDATE `list_options` SET `notes` = '1145-2' WHERE `option_id` = 'sault_ste_marie_chippewa' AND `list_id` = 'race';
8743 #EndIf
8745 #IfRow2D list_options list_id race title Sault Ste. Marie Chippewa
8746 UPDATE `list_options` SET `notes` = '1145-2' WHERE `title` = 'Sault Ste. Marie Chippewa' AND `list_id` = 'race';
8747 #EndIf
8749 #IfNotRow2Dx2 list_options list_id race option_id savoonga title Savoonga
8750 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','savoonga','Savoonga','7000', '0',' 1893-7', 0);
8751 #EndIf
8753 #IfRow2D list_options list_id race option_id savoonga
8754 UPDATE `list_options` SET `notes` = '1893-7' WHERE `option_id` = 'savoonga' AND `list_id` = 'race';
8755 #EndIf
8757 #IfRow2D list_options list_id race title Savoonga
8758 UPDATE `list_options` SET `notes` = '1893-7' WHERE `title` = 'Savoonga' AND `list_id` = 'race';
8759 #EndIf
8761 #IfNotRow2Dx2 list_options list_id race option_id saxman title Saxman
8762 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','saxman','Saxman','7010', '0',' 1830-9', 0);
8763 #EndIf
8765 #IfRow2D list_options list_id race option_id saxman
8766 UPDATE `list_options` SET `notes` = '1830-9' WHERE `option_id` = 'saxman' AND `list_id` = 'race';
8767 #EndIf
8769 #IfRow2D list_options list_id race title Saxman
8770 UPDATE `list_options` SET `notes` = '1830-9' WHERE `title` = 'Saxman' AND `list_id` = 'race';
8771 #EndIf
8773 #IfNotRow2Dx2 list_options list_id race option_id scammon_bay title Scammon Bay
8774 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','scammon_bay','Scammon Bay','7020', '0',' 1952-1', 0);
8775 #EndIf
8777 #IfRow2D list_options list_id race option_id scammon_bay
8778 UPDATE `list_options` SET `notes` = '1952-1' WHERE `option_id` = 'scammon_bay' AND `list_id` = 'race';
8779 #EndIf
8781 #IfRow2D list_options list_id race title Scammon Bay
8782 UPDATE `list_options` SET `notes` = '1952-1' WHERE `title` = 'Scammon Bay' AND `list_id` = 'race';
8783 #EndIf
8785 #IfNotRow2Dx2 list_options list_id race option_id schaghticoke title Schaghticoke
8786 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','schaghticoke','Schaghticoke','7030', '0',' 1562-8', 0);
8787 #EndIf
8789 #IfRow2D list_options list_id race option_id schaghticoke
8790 UPDATE `list_options` SET `notes` = '1562-8' WHERE `option_id` = 'schaghticoke' AND `list_id` = 'race';
8791 #EndIf
8793 #IfRow2D list_options list_id race title Schaghticoke
8794 UPDATE `list_options` SET `notes` = '1562-8' WHERE `title` = 'Schaghticoke' AND `list_id` = 'race';
8795 #EndIf
8797 #IfNotRow2Dx2 list_options list_id race option_id scott_valley title Scott Valley
8798 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','scott_valley','Scott Valley','7040', '0',' 1564-4', 0);
8799 #EndIf
8801 #IfRow2D list_options list_id race option_id scott_valley
8802 UPDATE `list_options` SET `notes` = '1564-4' WHERE `option_id` = 'scott_valley' AND `list_id` = 'race';
8803 #EndIf
8805 #IfRow2D list_options list_id race title Scott Valley
8806 UPDATE `list_options` SET `notes` = '1564-4' WHERE `title` = 'Scott Valley' AND `list_id` = 'race';
8807 #EndIf
8809 #IfNotRow2Dx2 list_options list_id race option_id scottish title Scottish
8810 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','scottish','Scottish','7050', '0',' 2116-2', 0);
8811 #EndIf
8813 #IfRow2D list_options list_id race option_id scottish
8814 UPDATE `list_options` SET `notes` = '2116-2' WHERE `option_id` = 'scottish' AND `list_id` = 'race';
8815 #EndIf
8817 #IfRow2D list_options list_id race title Scottish
8818 UPDATE `list_options` SET `notes` = '2116-2' WHERE `title` = 'Scottish' AND `list_id` = 'race';
8819 #EndIf
8821 #IfNotRow2Dx2 list_options list_id race option_id scotts_valley title Scotts Valley
8822 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','scotts_valley','Scotts Valley','7060', '0',' 1470-4', 0);
8823 #EndIf
8825 #IfRow2D list_options list_id race option_id scotts_valley
8826 UPDATE `list_options` SET `notes` = '1470-4' WHERE `option_id` = 'scotts_valley' AND `list_id` = 'race';
8827 #EndIf
8829 #IfRow2D list_options list_id race title Scotts Valley
8830 UPDATE `list_options` SET `notes` = '1470-4' WHERE `title` = 'Scotts Valley' AND `list_id` = 'race';
8831 #EndIf
8833 #IfNotRow2Dx2 list_options list_id race option_id selawik title Selawik
8834 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','selawik','Selawik','7070', '0',' 1878-8', 0);
8835 #EndIf
8837 #IfRow2D list_options list_id race option_id selawik
8838 UPDATE `list_options` SET `notes` = '1878-8' WHERE `option_id` = 'selawik' AND `list_id` = 'race';
8839 #EndIf
8841 #IfRow2D list_options list_id race title Selawik
8842 UPDATE `list_options` SET `notes` = '1878-8' WHERE `title` = 'Selawik' AND `list_id` = 'race';
8843 #EndIf
8845 #IfNotRow2Dx2 list_options list_id race option_id seldovia title Seldovia
8846 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seldovia','Seldovia','7080', '0',' 1793-9', 0);
8847 #EndIf
8849 #IfRow2D list_options list_id race option_id seldovia
8850 UPDATE `list_options` SET `notes` = '1793-9' WHERE `option_id` = 'seldovia' AND `list_id` = 'race';
8851 #EndIf
8853 #IfRow2D list_options list_id race title Seldovia
8854 UPDATE `list_options` SET `notes` = '1793-9' WHERE `title` = 'Seldovia' AND `list_id` = 'race';
8855 #EndIf
8857 #IfNotRow2Dx2 list_options list_id race option_id sells title Sells
8858 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sells','Sells','7090', '0',' 1657-6', 0);
8859 #EndIf
8861 #IfRow2D list_options list_id race option_id sells
8862 UPDATE `list_options` SET `notes` = '1657-6' WHERE `option_id` = 'sells' AND `list_id` = 'race';
8863 #EndIf
8865 #IfRow2D list_options list_id race title Sells
8866 UPDATE `list_options` SET `notes` = '1657-6' WHERE `title` = 'Sells' AND `list_id` = 'race';
8867 #EndIf
8869 #IfNotRow2Dx2 list_options list_id race option_id seminole title Seminole
8870 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seminole','Seminole','7100', '0',' 1566-9', 0);
8871 #EndIf
8873 #IfRow2D list_options list_id race option_id seminole
8874 UPDATE `list_options` SET `notes` = '1566-9' WHERE `option_id` = 'seminole' AND `list_id` = 'race';
8875 #EndIf
8877 #IfRow2D list_options list_id race title Seminole
8878 UPDATE `list_options` SET `notes` = '1566-9' WHERE `title` = 'Seminole' AND `list_id` = 'race';
8879 #EndIf
8881 #IfNotRow2Dx2 list_options list_id race option_id seneca title Seneca
8882 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seneca','Seneca','7110', '0',' 1290-6', 0);
8883 #EndIf
8885 #IfRow2D list_options list_id race option_id seneca
8886 UPDATE `list_options` SET `notes` = '1290-6' WHERE `option_id` = 'seneca' AND `list_id` = 'race';
8887 #EndIf
8889 #IfRow2D list_options list_id race title Seneca
8890 UPDATE `list_options` SET `notes` = '1290-6' WHERE `title` = 'Seneca' AND `list_id` = 'race';
8891 #EndIf
8893 #IfNotRow2Dx2 list_options list_id race option_id seneca_nation title Seneca Nation
8894 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seneca_nation','Seneca Nation','7120', '0',' 1291-4', 0);
8895 #EndIf
8897 #IfRow2D list_options list_id race option_id seneca_nation
8898 UPDATE `list_options` SET `notes` = '1291-4' WHERE `option_id` = 'seneca_nation' AND `list_id` = 'race';
8899 #EndIf
8901 #IfRow2D list_options list_id race title Seneca Nation
8902 UPDATE `list_options` SET `notes` = '1291-4' WHERE `title` = 'Seneca Nation' AND `list_id` = 'race';
8903 #EndIf
8905 #IfNotRow2Dx2 list_options list_id race option_id seneca-cayuga title Seneca-Cayuga
8906 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','seneca-cayuga','Seneca-Cayuga','7130', '0',' 1292-2', 0);
8907 #EndIf
8909 #IfRow2D list_options list_id race option_id seneca-cayuga
8910 UPDATE `list_options` SET `notes` = '1292-2' WHERE `option_id` = 'seneca-cayuga' AND `list_id` = 'race';
8911 #EndIf
8913 #IfRow2D list_options list_id race title Seneca-Cayuga
8914 UPDATE `list_options` SET `notes` = '1292-2' WHERE `title` = 'Seneca-Cayuga' AND `list_id` = 'race';
8915 #EndIf
8917 #IfNotRow2Dx2 list_options list_id race option_id serrano title Serrano
8918 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','serrano','Serrano','7140', '0',' 1573-5', 0);
8919 #EndIf
8921 #IfRow2D list_options list_id race option_id serrano
8922 UPDATE `list_options` SET `notes` = '1573-5' WHERE `option_id` = 'serrano' AND `list_id` = 'race';
8923 #EndIf
8925 #IfRow2D list_options list_id race title Serrano
8926 UPDATE `list_options` SET `notes` = '1573-5' WHERE `title` = 'Serrano' AND `list_id` = 'race';
8927 #EndIf
8929 #IfNotRow2Dx2 list_options list_id race option_id setauket title Setauket
8930 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','setauket','Setauket','7150', '0',' 1329-2', 0);
8931 #EndIf
8933 #IfRow2D list_options list_id race option_id setauket
8934 UPDATE `list_options` SET `notes` = '1329-2' WHERE `option_id` = 'setauket' AND `list_id` = 'race';
8935 #EndIf
8937 #IfRow2D list_options list_id race title Setauket
8938 UPDATE `list_options` SET `notes` = '1329-2' WHERE `title` = 'Setauket' AND `list_id` = 'race';
8939 #EndIf
8941 #IfNotRow2Dx2 list_options list_id race option_id shageluk title Shageluk
8942 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shageluk','Shageluk','7160', '0',' 1795-4', 0);
8943 #EndIf
8945 #IfRow2D list_options list_id race option_id shageluk
8946 UPDATE `list_options` SET `notes` = '1795-4' WHERE `option_id` = 'shageluk' AND `list_id` = 'race';
8947 #EndIf
8949 #IfRow2D list_options list_id race title Shageluk
8950 UPDATE `list_options` SET `notes` = '1795-4' WHERE `title` = 'Shageluk' AND `list_id` = 'race';
8951 #EndIf
8953 #IfNotRow2Dx2 list_options list_id race option_id shaktoolik title Shaktoolik
8954 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shaktoolik','Shaktoolik','7170', '0',' 1879-6', 0);
8955 #EndIf
8957 #IfRow2D list_options list_id race option_id shaktoolik
8958 UPDATE `list_options` SET `notes` = '1879-6' WHERE `option_id` = 'shaktoolik' AND `list_id` = 'race';
8959 #EndIf
8961 #IfRow2D list_options list_id race title Shaktoolik
8962 UPDATE `list_options` SET `notes` = '1879-6' WHERE `title` = 'Shaktoolik' AND `list_id` = 'race';
8963 #EndIf
8965 #IfNotRow2Dx2 list_options list_id race option_id shasta title Shasta
8966 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shasta','Shasta','7180', '0',' 1576-8', 0);
8967 #EndIf
8969 #IfRow2D list_options list_id race option_id shasta
8970 UPDATE `list_options` SET `notes` = '1576-8' WHERE `option_id` = 'shasta' AND `list_id` = 'race';
8971 #EndIf
8973 #IfRow2D list_options list_id race title Shasta
8974 UPDATE `list_options` SET `notes` = '1576-8' WHERE `title` = 'Shasta' AND `list_id` = 'race';
8975 #EndIf
8977 #IfNotRow2Dx2 list_options list_id race option_id shawnee title Shawnee
8978 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shawnee','Shawnee','7190', '0',' 1578-4', 0);
8979 #EndIf
8981 #IfRow2D list_options list_id race option_id shawnee
8982 UPDATE `list_options` SET `notes` = '1578-4' WHERE `option_id` = 'shawnee' AND `list_id` = 'race';
8983 #EndIf
8985 #IfRow2D list_options list_id race title Shawnee
8986 UPDATE `list_options` SET `notes` = '1578-4' WHERE `title` = 'Shawnee' AND `list_id` = 'race';
8987 #EndIf
8989 #IfNotRow2D list_options list_id race option_id sheldons_point
8990 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sheldons_point',"Sheldon's Point",'7200', '0',' 1953-9', 0);
8991 #EndIf
8993 #IfRow2D list_options list_id race option_id sheldons_point
8994 UPDATE `list_options` SET `notes` = '1953-9' WHERE `option_id` = 'sheldons_point' AND `list_id` = 'race';
8995 #EndIf
8997 #IfNotRow2Dx2 list_options list_id race option_id shinnecock title Shinnecock
8998 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shinnecock','Shinnecock','7210', '0',' 1582-6', 0);
8999 #EndIf
9001 #IfRow2D list_options list_id race option_id shinnecock
9002 UPDATE `list_options` SET `notes` = '1582-6' WHERE `option_id` = 'shinnecock' AND `list_id` = 'race';
9003 #EndIf
9005 #IfRow2D list_options list_id race title Shinnecock
9006 UPDATE `list_options` SET `notes` = '1582-6' WHERE `title` = 'Shinnecock' AND `list_id` = 'race';
9007 #EndIf
9009 #IfNotRow2Dx2 list_options list_id race option_id shishmaref title Shishmaref
9010 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shishmaref','Shishmaref','7220', '0',' 1880-4', 0);
9011 #EndIf
9013 #IfRow2D list_options list_id race option_id shishmaref
9014 UPDATE `list_options` SET `notes` = '1880-4' WHERE `option_id` = 'shishmaref' AND `list_id` = 'race';
9015 #EndIf
9017 #IfRow2D list_options list_id race title Shishmaref
9018 UPDATE `list_options` SET `notes` = '1880-4' WHERE `title` = 'Shishmaref' AND `list_id` = 'race';
9019 #EndIf
9021 #IfNotRow2Dx2 list_options list_id race option_id shoalwater_bay title Shoalwater Bay
9022 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shoalwater_bay','Shoalwater Bay','7230', '0',' 1584-2', 0);
9023 #EndIf
9025 #IfRow2D list_options list_id race option_id shoalwater_bay
9026 UPDATE `list_options` SET `notes` = '1584-2' WHERE `option_id` = 'shoalwater_bay' AND `list_id` = 'race';
9027 #EndIf
9029 #IfRow2D list_options list_id race title Shoalwater Bay
9030 UPDATE `list_options` SET `notes` = '1584-2' WHERE `title` = 'Shoalwater Bay' AND `list_id` = 'race';
9031 #EndIf
9033 #IfNotRow2Dx2 list_options list_id race option_id shoshone title Shoshone
9034 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shoshone','Shoshone','7240', '0',' 1586-7', 0);
9035 #EndIf
9037 #IfRow2D list_options list_id race option_id shoshone
9038 UPDATE `list_options` SET `notes` = '1586-7' WHERE `option_id` = 'shoshone' AND `list_id` = 'race';
9039 #EndIf
9041 #IfRow2D list_options list_id race title Shoshone
9042 UPDATE `list_options` SET `notes` = '1586-7' WHERE `title` = 'Shoshone' AND `list_id` = 'race';
9043 #EndIf
9045 #IfNotRow2Dx2 list_options list_id race option_id shoshone_paiute title Shoshone Paiute
9046 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shoshone_paiute','Shoshone Paiute','7250', '0',' 1602-2', 0);
9047 #EndIf
9049 #IfRow2D list_options list_id race option_id shoshone_paiute
9050 UPDATE `list_options` SET `notes` = '1602-2' WHERE `option_id` = 'shoshone_paiute' AND `list_id` = 'race';
9051 #EndIf
9053 #IfRow2D list_options list_id race title Shoshone Paiute
9054 UPDATE `list_options` SET `notes` = '1602-2' WHERE `title` = 'Shoshone Paiute' AND `list_id` = 'race';
9055 #EndIf
9057 #IfNotRow2Dx2 list_options list_id race option_id shungnak title Shungnak
9058 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','shungnak','Shungnak','7260', '0',' 1881-2', 0);
9059 #EndIf
9061 #IfRow2D list_options list_id race option_id shungnak
9062 UPDATE `list_options` SET `notes` = '1881-2' WHERE `option_id` = 'shungnak' AND `list_id` = 'race';
9063 #EndIf
9065 #IfRow2D list_options list_id race title Shungnak
9066 UPDATE `list_options` SET `notes` = '1881-2' WHERE `title` = 'Shungnak' AND `list_id` = 'race';
9067 #EndIf
9069 #IfNotRow2Dx2 list_options list_id race option_id siberian_eskimo title Siberian Eskimo
9070 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','siberian_eskimo','Siberian Eskimo','7270', '0',' 1891-1', 0);
9071 #EndIf
9073 #IfRow2D list_options list_id race option_id siberian_eskimo
9074 UPDATE `list_options` SET `notes` = '1891-1' WHERE `option_id` = 'siberian_eskimo' AND `list_id` = 'race';
9075 #EndIf
9077 #IfRow2D list_options list_id race title Siberian Eskimo
9078 UPDATE `list_options` SET `notes` = '1891-1' WHERE `title` = 'Siberian Eskimo' AND `list_id` = 'race';
9079 #EndIf
9081 #IfNotRow2Dx2 list_options list_id race option_id siberian_yupik title Siberian Yupik
9082 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','siberian_yupik','Siberian Yupik','7280', '0',' 1894-5', 0);
9083 #EndIf
9085 #IfRow2D list_options list_id race option_id siberian_yupik
9086 UPDATE `list_options` SET `notes` = '1894-5' WHERE `option_id` = 'siberian_yupik' AND `list_id` = 'race';
9087 #EndIf
9089 #IfRow2D list_options list_id race title Siberian Yupik
9090 UPDATE `list_options` SET `notes` = '1894-5' WHERE `title` = 'Siberian Yupik' AND `list_id` = 'race';
9091 #EndIf
9093 #IfNotRow2Dx2 list_options list_id race option_id siletz title Siletz
9094 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','siletz','Siletz','7290', '0',' 1607-1', 0);
9095 #EndIf
9097 #IfRow2D list_options list_id race option_id siletz
9098 UPDATE `list_options` SET `notes` = '1607-1' WHERE `option_id` = 'siletz' AND `list_id` = 'race';
9099 #EndIf
9101 #IfRow2D list_options list_id race title Siletz
9102 UPDATE `list_options` SET `notes` = '1607-1' WHERE `title` = 'Siletz' AND `list_id` = 'race';
9103 #EndIf
9105 #IfNotRow2Dx2 list_options list_id race option_id singaporean title Singaporean
9106 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','singaporean','Singaporean','7300', '0',' 2051-1', 0);
9107 #EndIf
9109 #IfRow2D list_options list_id race option_id singaporean
9110 UPDATE `list_options` SET `notes` = '2051-1' WHERE `option_id` = 'singaporean' AND `list_id` = 'race';
9111 #EndIf
9113 #IfRow2D list_options list_id race title Singaporean
9114 UPDATE `list_options` SET `notes` = '2051-1' WHERE `title` = 'Singaporean' AND `list_id` = 'race';
9115 #EndIf
9117 #IfNotRow2Dx2 list_options list_id race option_id sioux title Sioux
9118 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sioux','Sioux','7310', '0',' 1609-7', 0);
9119 #EndIf
9121 #IfRow2D list_options list_id race option_id sioux
9122 UPDATE `list_options` SET `notes` = '1609-7' WHERE `option_id` = 'sioux' AND `list_id` = 'race';
9123 #EndIf
9125 #IfRow2D list_options list_id race title Sioux
9126 UPDATE `list_options` SET `notes` = '1609-7' WHERE `title` = 'Sioux' AND `list_id` = 'race';
9127 #EndIf
9129 #IfNotRow2Dx2 list_options list_id race option_id sisseton_sioux title Sisseton Sioux
9130 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sisseton_sioux','Sisseton Sioux','7320', '0',' 1631-1', 0);
9131 #EndIf
9133 #IfRow2D list_options list_id race option_id sisseton_sioux
9134 UPDATE `list_options` SET `notes` = '1631-1' WHERE `option_id` = 'sisseton_sioux' AND `list_id` = 'race';
9135 #EndIf
9137 #IfRow2D list_options list_id race title Sisseton Sioux
9138 UPDATE `list_options` SET `notes` = '1631-1' WHERE `title` = 'Sisseton Sioux' AND `list_id` = 'race';
9139 #EndIf
9141 #IfNotRow2Dx2 list_options list_id race option_id sisseton-wahpeton title Sisseton-Wahpeton
9142 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sisseton-wahpeton','Sisseton-Wahpeton','7330', '0',' 1630-3', 0);
9143 #EndIf
9145 #IfRow2D list_options list_id race option_id sisseton-wahpeton
9146 UPDATE `list_options` SET `notes` = '1630-3' WHERE `option_id` = 'sisseton-wahpeton' AND `list_id` = 'race';
9147 #EndIf
9149 #IfRow2D list_options list_id race title Sisseton-Wahpeton
9150 UPDATE `list_options` SET `notes` = '1630-3' WHERE `title` = 'Sisseton-Wahpeton' AND `list_id` = 'race';
9151 #EndIf
9153 #IfNotRow2Dx2 list_options list_id race option_id sitka title Sitka
9154 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sitka','Sitka','7340', '0',' 1831-7', 0);
9155 #EndIf
9157 #IfRow2D list_options list_id race option_id sitka
9158 UPDATE `list_options` SET `notes` = '1831-7' WHERE `option_id` = 'sitka' AND `list_id` = 'race';
9159 #EndIf
9161 #IfRow2D list_options list_id race title Sitka
9162 UPDATE `list_options` SET `notes` = '1831-7' WHERE `title` = 'Sitka' AND `list_id` = 'race';
9163 #EndIf
9165 #IfNotRow2Dx2 list_options list_id race option_id siuslaw title Siuslaw
9166 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','siuslaw','Siuslaw','7350', '0',' 1643-6', 0);
9167 #EndIf
9169 #IfRow2D list_options list_id race option_id siuslaw
9170 UPDATE `list_options` SET `notes` = '1643-6' WHERE `option_id` = 'siuslaw' AND `list_id` = 'race';
9171 #EndIf
9173 #IfRow2D list_options list_id race title Siuslaw
9174 UPDATE `list_options` SET `notes` = '1643-6' WHERE `title` = 'Siuslaw' AND `list_id` = 'race';
9175 #EndIf
9177 #IfNotRow2Dx2 list_options list_id race option_id skokomish title Skokomish
9178 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','skokomish','Skokomish','7360', '0',' 1529-7', 0);
9179 #EndIf
9181 #IfRow2D list_options list_id race option_id skokomish
9182 UPDATE `list_options` SET `notes` = '1529-7' WHERE `option_id` = 'skokomish' AND `list_id` = 'race';
9183 #EndIf
9185 #IfRow2D list_options list_id race title Skokomish
9186 UPDATE `list_options` SET `notes` = '1529-7' WHERE `title` = 'Skokomish' AND `list_id` = 'race';
9187 #EndIf
9189 #IfNotRow2Dx2 list_options list_id race option_id skull_valley title Skull Valley
9190 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','skull_valley','Skull Valley','7370', '0',' 1594-1', 0);
9191 #EndIf
9193 #IfRow2D list_options list_id race option_id skull_valley
9194 UPDATE `list_options` SET `notes` = '1594-1' WHERE `option_id` = 'skull_valley' AND `list_id` = 'race';
9195 #EndIf
9197 #IfRow2D list_options list_id race title Skull Valley
9198 UPDATE `list_options` SET `notes` = '1594-1' WHERE `title` = 'Skull Valley' AND `list_id` = 'race';
9199 #EndIf
9201 #IfNotRow2Dx2 list_options list_id race option_id skykomish title Skykomish
9202 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','skykomish','Skykomish','7380', '0',' 1530-5', 0);
9203 #EndIf
9205 #IfRow2D list_options list_id race option_id skykomish
9206 UPDATE `list_options` SET `notes` = '1530-5' WHERE `option_id` = 'skykomish' AND `list_id` = 'race';
9207 #EndIf
9209 #IfRow2D list_options list_id race title Skykomish
9210 UPDATE `list_options` SET `notes` = '1530-5' WHERE `title` = 'Skykomish' AND `list_id` = 'race';
9211 #EndIf
9213 #IfNotRow2Dx2 list_options list_id race option_id slana title Slana
9214 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','slana','Slana','7390', '0',' 1794-7', 0);
9215 #EndIf
9217 #IfRow2D list_options list_id race option_id slana
9218 UPDATE `list_options` SET `notes` = '1794-7' WHERE `option_id` = 'slana' AND `list_id` = 'race';
9219 #EndIf
9221 #IfRow2D list_options list_id race title Slana
9222 UPDATE `list_options` SET `notes` = '1794-7' WHERE `title` = 'Slana' AND `list_id` = 'race';
9223 #EndIf
9225 #IfNotRow2Dx2 list_options list_id race option_id sleetmute title Sleetmute
9226 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sleetmute','Sleetmute','7400', '0',' 1954-7', 0);
9227 #EndIf
9229 #IfRow2D list_options list_id race option_id sleetmute
9230 UPDATE `list_options` SET `notes` = '1954-7' WHERE `option_id` = 'sleetmute' AND `list_id` = 'race';
9231 #EndIf
9233 #IfRow2D list_options list_id race title Sleetmute
9234 UPDATE `list_options` SET `notes` = '1954-7' WHERE `title` = 'Sleetmute' AND `list_id` = 'race';
9235 #EndIf
9237 #IfNotRow2Dx2 list_options list_id race option_id snohomish title Snohomish
9238 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','snohomish','Snohomish','7410', '0',' 1531-3', 0);
9239 #EndIf
9241 #IfRow2D list_options list_id race option_id snohomish
9242 UPDATE `list_options` SET `notes` = '1531-3' WHERE `option_id` = 'snohomish' AND `list_id` = 'race';
9243 #EndIf
9245 #IfRow2D list_options list_id race title Snohomish
9246 UPDATE `list_options` SET `notes` = '1531-3' WHERE `title` = 'Snohomish' AND `list_id` = 'race';
9247 #EndIf
9249 #IfNotRow2Dx2 list_options list_id race option_id snoqualmie title Snoqualmie
9250 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','snoqualmie','Snoqualmie','7420', '0',' 1532-1', 0);
9251 #EndIf
9253 #IfRow2D list_options list_id race option_id snoqualmie
9254 UPDATE `list_options` SET `notes` = '1532-1' WHERE `option_id` = 'snoqualmie' AND `list_id` = 'race';
9255 #EndIf
9257 #IfRow2D list_options list_id race title Snoqualmie
9258 UPDATE `list_options` SET `notes` = '1532-1' WHERE `title` = 'Snoqualmie' AND `list_id` = 'race';
9259 #EndIf
9261 #IfNotRow2Dx2 list_options list_id race option_id soboba title Soboba
9262 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','soboba','Soboba','7430', '0',' 1336-7', 0);
9263 #EndIf
9265 #IfRow2D list_options list_id race option_id soboba
9266 UPDATE `list_options` SET `notes` = '1336-7' WHERE `option_id` = 'soboba' AND `list_id` = 'race';
9267 #EndIf
9269 #IfRow2D list_options list_id race title Soboba
9270 UPDATE `list_options` SET `notes` = '1336-7' WHERE `title` = 'Soboba' AND `list_id` = 'race';
9271 #EndIf
9273 #IfNotRow2Dx2 list_options list_id race option_id sokoagon_chippewa title Sokoagon Chippewa
9274 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sokoagon_chippewa','Sokoagon Chippewa','7440', '0',' 1146-0', 0);
9275 #EndIf
9277 #IfRow2D list_options list_id race option_id sokoagon_chippewa
9278 UPDATE `list_options` SET `notes` = '1146-0' WHERE `option_id` = 'sokoagon_chippewa' AND `list_id` = 'race';
9279 #EndIf
9281 #IfRow2D list_options list_id race title Sokoagon Chippewa
9282 UPDATE `list_options` SET `notes` = '1146-0' WHERE `title` = 'Sokoagon Chippewa' AND `list_id` = 'race';
9283 #EndIf
9285 #IfNotRow2Dx2 list_options list_id race option_id solomon title Solomon
9286 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','solomon','Solomon','7450', '0',' 1882-0', 0);
9287 #EndIf
9289 #IfRow2D list_options list_id race option_id solomon
9290 UPDATE `list_options` SET `notes` = '1882-0' WHERE `option_id` = 'solomon' AND `list_id` = 'race';
9291 #EndIf
9293 #IfRow2D list_options list_id race title Solomon
9294 UPDATE `list_options` SET `notes` = '1882-0' WHERE `title` = 'Solomon' AND `list_id` = 'race';
9295 #EndIf
9297 #IfNotRow2Dx2 list_options list_id race option_id solomon_islander title Solomon Islander
9298 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','solomon_islander','Solomon Islander','7460', '0',' 2103-0', 0);
9299 #EndIf
9301 #IfRow2D list_options list_id race option_id solomon_islander
9302 UPDATE `list_options` SET `notes` = '2103-0' WHERE `option_id` = 'solomon_islander' AND `list_id` = 'race';
9303 #EndIf
9305 #IfRow2D list_options list_id race title Solomon Islander
9306 UPDATE `list_options` SET `notes` = '2103-0' WHERE `title` = 'Solomon Islander' AND `list_id` = 'race';
9307 #EndIf
9309 #IfNotRow2Dx2 list_options list_id race option_id south_american_indian title South American Indian
9310 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','south_american_indian','South American Indian','7470', '0',' 1073-6', 0);
9311 #EndIf
9313 #IfRow2D list_options list_id race option_id south_american_indian
9314 UPDATE `list_options` SET `notes` = '1073-6' WHERE `option_id` = 'south_american_indian' AND `list_id` = 'race';
9315 #EndIf
9317 #IfRow2D list_options list_id race title South American Indian
9318 UPDATE `list_options` SET `notes` = '1073-6' WHERE `title` = 'South American Indian' AND `list_id` = 'race';
9319 #EndIf
9321 #IfNotRow2Dx2 list_options list_id race option_id south_fork_shoshone title South Fork Shoshone
9322 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','south_fork_shoshone','South Fork Shoshone','7480', '0',' 1595-8', 0);
9323 #EndIf
9325 #IfRow2D list_options list_id race option_id south_fork_shoshone
9326 UPDATE `list_options` SET `notes` = '1595-8' WHERE `option_id` = 'south_fork_shoshone' AND `list_id` = 'race';
9327 #EndIf
9329 #IfRow2D list_options list_id race title South Fork Shoshone
9330 UPDATE `list_options` SET `notes` = '1595-8' WHERE `title` = 'South Fork Shoshone' AND `list_id` = 'race';
9331 #EndIf
9333 #IfNotRow2Dx2 list_options list_id race option_id south_naknek title South Naknek
9334 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','south_naknek','South Naknek','7490', '0',' 2024-8', 0);
9335 #EndIf
9337 #IfRow2D list_options list_id race option_id south_naknek
9338 UPDATE `list_options` SET `notes` = '2024-8' WHERE `option_id` = 'south_naknek' AND `list_id` = 'race';
9339 #EndIf
9341 #IfRow2D list_options list_id race title South Naknek
9342 UPDATE `list_options` SET `notes` = '2024-8' WHERE `title` = 'South Naknek' AND `list_id` = 'race';
9343 #EndIf
9345 #IfNotRow2Dx2 list_options list_id race option_id southeast_alaska title Southeast Alaska
9346 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southeast_alaska','Southeast Alaska','7500', '0',' 1811-9', 0);
9347 #EndIf
9349 #IfRow2D list_options list_id race option_id southeast_alaska
9350 UPDATE `list_options` SET `notes` = '1811-9' WHERE `option_id` = 'southeast_alaska' AND `list_id` = 'race';
9351 #EndIf
9353 #IfRow2D list_options list_id race title Southeast Alaska
9354 UPDATE `list_options` SET `notes` = '1811-9' WHERE `title` = 'Southeast Alaska' AND `list_id` = 'race';
9355 #EndIf
9357 #IfNotRow2Dx2 list_options list_id race option_id southeastern_indians title Southeastern Indians
9358 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southeastern_indians','Southeastern Indians','7510', '0',' 1244-3', 0);
9359 #EndIf
9361 #IfRow2D list_options list_id race option_id southeastern_indians
9362 UPDATE `list_options` SET `notes` = '1244-3' WHERE `option_id` = 'southeastern_indians' AND `list_id` = 'race';
9363 #EndIf
9365 #IfRow2D list_options list_id race title Southeastern Indians
9366 UPDATE `list_options` SET `notes` = '1244-3' WHERE `title` = 'Southeastern Indians' AND `list_id` = 'race';
9367 #EndIf
9369 #IfNotRow2Dx2 list_options list_id race option_id southern_arapaho title Southern Arapaho
9370 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southern_arapaho','Southern Arapaho','7520', '0',' 1023-1', 0);
9371 #EndIf
9373 #IfRow2D list_options list_id race option_id southern_arapaho
9374 UPDATE `list_options` SET `notes` = '1023-1' WHERE `option_id` = 'southern_arapaho' AND `list_id` = 'race';
9375 #EndIf
9377 #IfRow2D list_options list_id race title Southern Arapaho
9378 UPDATE `list_options` SET `notes` = '1023-1' WHERE `title` = 'Southern Arapaho' AND `list_id` = 'race';
9379 #EndIf
9381 #IfNotRow2Dx2 list_options list_id race option_id southern_cheyenne title Southern Cheyenne
9382 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southern_cheyenne','Southern Cheyenne','7530', '0',' 1104-9', 0);
9383 #EndIf
9385 #IfRow2D list_options list_id race option_id southern_cheyenne
9386 UPDATE `list_options` SET `notes` = '1104-9' WHERE `option_id` = 'southern_cheyenne' AND `list_id` = 'race';
9387 #EndIf
9389 #IfRow2D list_options list_id race title Southern Cheyenne
9390 UPDATE `list_options` SET `notes` = '1104-9' WHERE `title` = 'Southern Cheyenne' AND `list_id` = 'race';
9391 #EndIf
9393 #IfNotRow2Dx2 list_options list_id race option_id southern_paiute title Southern Paiute
9394 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','southern_paiute','Southern Paiute','7540', '0',' 1433-2', 0);
9395 #EndIf
9397 #IfRow2D list_options list_id race option_id southern_paiute
9398 UPDATE `list_options` SET `notes` = '1433-2' WHERE `option_id` = 'southern_paiute' AND `list_id` = 'race';
9399 #EndIf
9401 #IfRow2D list_options list_id race title Southern Paiute
9402 UPDATE `list_options` SET `notes` = '1433-2' WHERE `title` = 'Southern Paiute' AND `list_id` = 'race';
9403 #EndIf
9405 #IfNotRow2Dx2 list_options list_id race option_id spanish_american_indian title Spanish American Indian
9406 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','spanish_american_indian','Spanish American Indian','7550', '0',' 1074-4', 0);
9407 #EndIf
9409 #IfRow2D list_options list_id race option_id spanish_american_indian
9410 UPDATE `list_options` SET `notes` = '1074-4' WHERE `option_id` = 'spanish_american_indian' AND `list_id` = 'race';
9411 #EndIf
9413 #IfRow2D list_options list_id race title Spanish American Indian
9414 UPDATE `list_options` SET `notes` = '1074-4' WHERE `title` = 'Spanish American Indian' AND `list_id` = 'race';
9415 #EndIf
9417 #IfNotRow2Dx2 list_options list_id race option_id spirit_lake_sioux title Spirit Lake Sioux
9418 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','spirit_lake_sioux','Spirit Lake Sioux','7560', '0',' 1632-9', 0);
9419 #EndIf
9421 #IfRow2D list_options list_id race option_id spirit_lake_sioux
9422 UPDATE `list_options` SET `notes` = '1632-9' WHERE `option_id` = 'spirit_lake_sioux' AND `list_id` = 'race';
9423 #EndIf
9425 #IfRow2D list_options list_id race title Spirit Lake Sioux
9426 UPDATE `list_options` SET `notes` = '1632-9' WHERE `title` = 'Spirit Lake Sioux' AND `list_id` = 'race';
9427 #EndIf
9429 #IfNotRow2Dx2 list_options list_id race option_id spokane title Spokane
9430 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','spokane','Spokane','7570', '0',' 1645-1', 0);
9431 #EndIf
9433 #IfRow2D list_options list_id race option_id spokane
9434 UPDATE `list_options` SET `notes` = '1645-1' WHERE `option_id` = 'spokane' AND `list_id` = 'race';
9435 #EndIf
9437 #IfRow2D list_options list_id race title Spokane
9438 UPDATE `list_options` SET `notes` = '1645-1' WHERE `title` = 'Spokane' AND `list_id` = 'race';
9439 #EndIf
9441 #IfNotRow2Dx2 list_options list_id race option_id squaxin_island title Squaxin Island
9442 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','squaxin_island','Squaxin Island','7580', '0',' 1533-9', 0);
9443 #EndIf
9445 #IfRow2D list_options list_id race option_id squaxin_island
9446 UPDATE `list_options` SET `notes` = '1533-9' WHERE `option_id` = 'squaxin_island' AND `list_id` = 'race';
9447 #EndIf
9449 #IfRow2D list_options list_id race title Squaxin Island
9450 UPDATE `list_options` SET `notes` = '1533-9' WHERE `title` = 'Squaxin Island' AND `list_id` = 'race';
9451 #EndIf
9453 #IfNotRow2Dx2 list_options list_id race option_id sri_lankan title Sri Lankan
9454 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sri_lankan','Sri Lankan','7590', '0',' 2045-3', 0);
9455 #EndIf
9457 #IfRow2D list_options list_id race option_id sri_lankan
9458 UPDATE `list_options` SET `notes` = '2045-3' WHERE `option_id` = 'sri_lankan' AND `list_id` = 'race';
9459 #EndIf
9461 #IfRow2D list_options list_id race title Sri Lankan
9462 UPDATE `list_options` SET `notes` = '2045-3' WHERE `title` = 'Sri Lankan' AND `list_id` = 'race';
9463 #EndIf
9465 #IfNotRow2Dx2 list_options list_id race option_id st_croix_chippewa title St. Croix Chippewa
9466 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_croix_chippewa','St. Croix Chippewa','7600', '0',' 1144-5', 0);
9467 #EndIf
9469 #IfRow2D list_options list_id race option_id st_croix_chippewa
9470 UPDATE `list_options` SET `notes` = '1144-5' WHERE `option_id` = 'st_croix_chippewa' AND `list_id` = 'race';
9471 #EndIf
9473 #IfRow2D list_options list_id race title St. Croix Chippewa
9474 UPDATE `list_options` SET `notes` = '1144-5' WHERE `title` = 'St. Croix Chippewa' AND `list_id` = 'race';
9475 #EndIf
9477 #IfNotRow2Dx2 list_options list_id race option_id st_george title St. George
9478 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_george','St. George','7610', '0',' 2021-4', 0);
9479 #EndIf
9481 #IfRow2D list_options list_id race option_id st_george
9482 UPDATE `list_options` SET `notes` = '2021-4' WHERE `option_id` = 'st_george' AND `list_id` = 'race';
9483 #EndIf
9485 #IfRow2D list_options list_id race title St. George
9486 UPDATE `list_options` SET `notes` = '2021-4' WHERE `title` = 'St. George' AND `list_id` = 'race';
9487 #EndIf
9489 #IfNotRow2D list_options list_id race option_id st_marys
9490 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_marys',"St. Mary's",'7620', '0',' 1963-8', 0);
9491 #EndIf
9493 #IfRow2D list_options list_id race option_id st_marys
9494 UPDATE `list_options` SET `notes` = '1963-8' WHERE `option_id` = 'st_marys' AND `list_id` = 'race';
9495 #EndIf
9497 #IfNotRow2Dx2 list_options list_id race option_id st_michael title St. Michael
9498 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_michael','St. Michael','7630', '0',' 1951-3', 0);
9499 #EndIf
9501 #IfRow2D list_options list_id race option_id st_michael
9502 UPDATE `list_options` SET `notes` = '1951-3' WHERE `option_id` = 'st_michael' AND `list_id` = 'race';
9503 #EndIf
9505 #IfRow2D list_options list_id race title St. Michael
9506 UPDATE `list_options` SET `notes` = '1951-3' WHERE `title` = 'St. Michael' AND `list_id` = 'race';
9507 #EndIf
9509 #IfNotRow2Dx2 list_options list_id race option_id st_paul title St. Paul
9510 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','st_paul','St. Paul','7640', '0',' 2022-2', 0);
9511 #EndIf
9513 #IfRow2D list_options list_id race option_id st_paul
9514 UPDATE `list_options` SET `notes` = '2022-2' WHERE `option_id` = 'st_paul' AND `list_id` = 'race';
9515 #EndIf
9517 #IfRow2D list_options list_id race title St. Paul
9518 UPDATE `list_options` SET `notes` = '2022-2' WHERE `title` = 'St. Paul' AND `list_id` = 'race';
9519 #EndIf
9521 #IfNotRow2Dx2 list_options list_id race option_id standing_rock_sioux title Standing Rock Sioux
9522 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','standing_rock_sioux','Standing Rock Sioux','7650', '0',' 1633-7', 0);
9523 #EndIf
9525 #IfRow2D list_options list_id race option_id standing_rock_sioux
9526 UPDATE `list_options` SET `notes` = '1633-7' WHERE `option_id` = 'standing_rock_sioux' AND `list_id` = 'race';
9527 #EndIf
9529 #IfRow2D list_options list_id race title Standing Rock Sioux
9530 UPDATE `list_options` SET `notes` = '1633-7' WHERE `title` = 'Standing Rock Sioux' AND `list_id` = 'race';
9531 #EndIf
9533 #IfNotRow2Dx2 list_options list_id race option_id star_clan_of_muscogee_creeks title Star Clan of Muscogee Creeks
9534 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','star_clan_of_muscogee_creeks','Star Clan of Muscogee Creeks','7660', '0',' 1203-9', 0);
9535 #EndIf
9537 #IfRow2D list_options list_id race option_id star_clan_of_muscogee_creeks
9538 UPDATE `list_options` SET `notes` = '1203-9' WHERE `option_id` = 'star_clan_of_muscogee_creeks' AND `list_id` = 'race';
9539 #EndIf
9541 #IfRow2D list_options list_id race title Star Clan of Muscogee Creeks
9542 UPDATE `list_options` SET `notes` = '1203-9' WHERE `title` = 'Star Clan of Muscogee Creeks' AND `list_id` = 'race';
9543 #EndIf
9545 #IfNotRow2Dx2 list_options list_id race option_id stebbins title Stebbins
9546 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stebbins','Stebbins','7670', '0',' 1955-4', 0);
9547 #EndIf
9549 #IfRow2D list_options list_id race option_id stebbins
9550 UPDATE `list_options` SET `notes` = '1955-4' WHERE `option_id` = 'stebbins' AND `list_id` = 'race';
9551 #EndIf
9553 #IfRow2D list_options list_id race title Stebbins
9554 UPDATE `list_options` SET `notes` = '1955-4' WHERE `title` = 'Stebbins' AND `list_id` = 'race';
9555 #EndIf
9557 #IfNotRow2Dx2 list_options list_id race option_id steilacoom title Steilacoom
9558 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','steilacoom','Steilacoom','7680', '0',' 1534-7', 0);
9559 #EndIf
9561 #IfRow2D list_options list_id race option_id steilacoom
9562 UPDATE `list_options` SET `notes` = '1534-7' WHERE `option_id` = 'steilacoom' AND `list_id` = 'race';
9563 #EndIf
9565 #IfRow2D list_options list_id race title Steilacoom
9566 UPDATE `list_options` SET `notes` = '1534-7' WHERE `title` = 'Steilacoom' AND `list_id` = 'race';
9567 #EndIf
9569 #IfNotRow2Dx2 list_options list_id race option_id stevens title Stevens
9570 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stevens','Stevens','7690', '0',' 1796-2', 0);
9571 #EndIf
9573 #IfRow2D list_options list_id race option_id stevens
9574 UPDATE `list_options` SET `notes` = '1796-2' WHERE `option_id` = 'stevens' AND `list_id` = 'race';
9575 #EndIf
9577 #IfRow2D list_options list_id race title Stevens
9578 UPDATE `list_options` SET `notes` = '1796-2' WHERE `title` = 'Stevens' AND `list_id` = 'race';
9579 #EndIf
9581 #IfNotRow2Dx2 list_options list_id race option_id stewart title Stewart
9582 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stewart','Stewart','7700', '0',' 1647-7', 0);
9583 #EndIf
9585 #IfRow2D list_options list_id race option_id stewart
9586 UPDATE `list_options` SET `notes` = '1647-7' WHERE `option_id` = 'stewart' AND `list_id` = 'race';
9587 #EndIf
9589 #IfRow2D list_options list_id race title Stewart
9590 UPDATE `list_options` SET `notes` = '1647-7' WHERE `title` = 'Stewart' AND `list_id` = 'race';
9591 #EndIf
9593 #IfNotRow2Dx2 list_options list_id race option_id stillaguamish title Stillaguamish
9594 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stillaguamish','Stillaguamish','7710', '0',' 1535-4', 0);
9595 #EndIf
9597 #IfRow2D list_options list_id race option_id stillaguamish
9598 UPDATE `list_options` SET `notes` = '1535-4' WHERE `option_id` = 'stillaguamish' AND `list_id` = 'race';
9599 #EndIf
9601 #IfRow2D list_options list_id race title Stillaguamish
9602 UPDATE `list_options` SET `notes` = '1535-4' WHERE `title` = 'Stillaguamish' AND `list_id` = 'race';
9603 #EndIf
9605 #IfNotRow2Dx2 list_options list_id race option_id stockbridge title Stockbridge
9606 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stockbridge','Stockbridge','7720', '0',' 1649-3', 0);
9607 #EndIf
9609 #IfRow2D list_options list_id race option_id stockbridge
9610 UPDATE `list_options` SET `notes` = '1649-3' WHERE `option_id` = 'stockbridge' AND `list_id` = 'race';
9611 #EndIf
9613 #IfRow2D list_options list_id race title Stockbridge
9614 UPDATE `list_options` SET `notes` = '1649-3' WHERE `title` = 'Stockbridge' AND `list_id` = 'race';
9615 #EndIf
9617 #IfNotRow2Dx2 list_options list_id race option_id stony_river title Stony River
9618 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stony_river','Stony River','7730', '0',' 1797-0', 0);
9619 #EndIf
9621 #IfRow2D list_options list_id race option_id stony_river
9622 UPDATE `list_options` SET `notes` = '1797-0' WHERE `option_id` = 'stony_river' AND `list_id` = 'race';
9623 #EndIf
9625 #IfRow2D list_options list_id race title Stony River
9626 UPDATE `list_options` SET `notes` = '1797-0' WHERE `title` = 'Stony River' AND `list_id` = 'race';
9627 #EndIf
9629 #IfNotRow2Dx2 list_options list_id race option_id stonyford title Stonyford
9630 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','stonyford','Stonyford','7740', '0',' 1471-2', 0);
9631 #EndIf
9633 #IfRow2D list_options list_id race option_id stonyford
9634 UPDATE `list_options` SET `notes` = '1471-2' WHERE `option_id` = 'stonyford' AND `list_id` = 'race';
9635 #EndIf
9637 #IfRow2D list_options list_id race title Stonyford
9638 UPDATE `list_options` SET `notes` = '1471-2' WHERE `title` = 'Stonyford' AND `list_id` = 'race';
9639 #EndIf
9641 #IfNotRow2Dx2 list_options list_id race option_id sugpiaq title Sugpiaq
9642 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sugpiaq','Sugpiaq','7750', '0',' 2002-4', 0);
9643 #EndIf
9645 #IfRow2D list_options list_id race option_id sugpiaq
9646 UPDATE `list_options` SET `notes` = '2002-4' WHERE `option_id` = 'sugpiaq' AND `list_id` = 'race';
9647 #EndIf
9649 #IfRow2D list_options list_id race title Sugpiaq
9650 UPDATE `list_options` SET `notes` = '2002-4' WHERE `title` = 'Sugpiaq' AND `list_id` = 'race';
9651 #EndIf
9653 #IfNotRow2Dx2 list_options list_id race option_id sulphur_bank title Sulphur Bank
9654 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sulphur_bank','Sulphur Bank','7760', '0',' 1472-0', 0);
9655 #EndIf
9657 #IfRow2D list_options list_id race option_id sulphur_bank
9658 UPDATE `list_options` SET `notes` = '1472-0' WHERE `option_id` = 'sulphur_bank' AND `list_id` = 'race';
9659 #EndIf
9661 #IfRow2D list_options list_id race title Sulphur Bank
9662 UPDATE `list_options` SET `notes` = '1472-0' WHERE `title` = 'Sulphur Bank' AND `list_id` = 'race';
9663 #EndIf
9665 #IfNotRow2Dx2 list_options list_id race option_id summit_lake title Summit Lake
9666 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','summit_lake','Summit Lake','7770', '0',' 1434-0', 0);
9667 #EndIf
9669 #IfRow2D list_options list_id race option_id summit_lake
9670 UPDATE `list_options` SET `notes` = '1434-0' WHERE `option_id` = 'summit_lake' AND `list_id` = 'race';
9671 #EndIf
9673 #IfRow2D list_options list_id race title Summit Lake
9674 UPDATE `list_options` SET `notes` = '1434-0' WHERE `title` = 'Summit Lake' AND `list_id` = 'race';
9675 #EndIf
9677 #IfNotRow2Dx2 list_options list_id race option_id suqpigaq title Suqpigaq
9678 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','suqpigaq','Suqpigaq','7780', '0',' 2004-0', 0);
9679 #EndIf
9681 #IfRow2D list_options list_id race option_id suqpigaq
9682 UPDATE `list_options` SET `notes` = '2004-0' WHERE `option_id` = 'suqpigaq' AND `list_id` = 'race';
9683 #EndIf
9685 #IfRow2D list_options list_id race title Suqpigaq
9686 UPDATE `list_options` SET `notes` = '2004-0' WHERE `title` = 'Suqpigaq' AND `list_id` = 'race';
9687 #EndIf
9689 #IfNotRow2Dx2 list_options list_id race option_id suquamish title Suquamish
9690 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','suquamish','Suquamish','7790', '0',' 1536-2', 0);
9691 #EndIf
9693 #IfRow2D list_options list_id race option_id suquamish
9694 UPDATE `list_options` SET `notes` = '1536-2' WHERE `option_id` = 'suquamish' AND `list_id` = 'race';
9695 #EndIf
9697 #IfRow2D list_options list_id race title Suquamish
9698 UPDATE `list_options` SET `notes` = '1536-2' WHERE `title` = 'Suquamish' AND `list_id` = 'race';
9699 #EndIf
9701 #IfNotRow2Dx2 list_options list_id race option_id susanville title Susanville
9702 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','susanville','Susanville','7800', '0',' 1651-9', 0);
9703 #EndIf
9705 #IfRow2D list_options list_id race option_id susanville
9706 UPDATE `list_options` SET `notes` = '1651-9' WHERE `option_id` = 'susanville' AND `list_id` = 'race';
9707 #EndIf
9709 #IfRow2D list_options list_id race title Susanville
9710 UPDATE `list_options` SET `notes` = '1651-9' WHERE `title` = 'Susanville' AND `list_id` = 'race';
9711 #EndIf
9713 #IfNotRow2Dx2 list_options list_id race option_id susquehanock title Susquehanock
9714 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','susquehanock','Susquehanock','7810', '0',' 1245-0', 0);
9715 #EndIf
9717 #IfRow2D list_options list_id race option_id susquehanock
9718 UPDATE `list_options` SET `notes` = '1245-0' WHERE `option_id` = 'susquehanock' AND `list_id` = 'race';
9719 #EndIf
9721 #IfRow2D list_options list_id race title Susquehanock
9722 UPDATE `list_options` SET `notes` = '1245-0' WHERE `title` = 'Susquehanock' AND `list_id` = 'race';
9723 #EndIf
9725 #IfNotRow2Dx2 list_options list_id race option_id swinomish title Swinomish
9726 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','swinomish','Swinomish','7820', '0',' 1537-0', 0);
9727 #EndIf
9729 #IfRow2D list_options list_id race option_id swinomish
9730 UPDATE `list_options` SET `notes` = '1537-0' WHERE `option_id` = 'swinomish' AND `list_id` = 'race';
9731 #EndIf
9733 #IfRow2D list_options list_id race title Swinomish
9734 UPDATE `list_options` SET `notes` = '1537-0' WHERE `title` = 'Swinomish' AND `list_id` = 'race';
9735 #EndIf
9737 #IfNotRow2Dx2 list_options list_id race option_id sycuan title Sycuan
9738 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','sycuan','Sycuan','7830', '0',' 1231-0', 0);
9739 #EndIf
9741 #IfRow2D list_options list_id race option_id sycuan
9742 UPDATE `list_options` SET `notes` = '1231-0' WHERE `option_id` = 'sycuan' AND `list_id` = 'race';
9743 #EndIf
9745 #IfRow2D list_options list_id race title Sycuan
9746 UPDATE `list_options` SET `notes` = '1231-0' WHERE `title` = 'Sycuan' AND `list_id` = 'race';
9747 #EndIf
9749 #IfNotRow2Dx2 list_options list_id race option_id syrian title Syrian
9750 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','syrian','Syrian','7840', '0',' 2125-3', 0);
9751 #EndIf
9753 #IfRow2D list_options list_id race option_id syrian
9754 UPDATE `list_options` SET `notes` = '2125-3' WHERE `option_id` = 'syrian' AND `list_id` = 'race';
9755 #EndIf
9757 #IfRow2D list_options list_id race title Syrian
9758 UPDATE `list_options` SET `notes` = '2125-3' WHERE `title` = 'Syrian' AND `list_id` = 'race';
9759 #EndIf
9761 #IfNotRow2Dx2 list_options list_id race option_id table_bluff title Table Bluff
9762 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','table_bluff','Table Bluff','7850', '0',' 1705-3', 0);
9763 #EndIf
9765 #IfRow2D list_options list_id race option_id table_bluff
9766 UPDATE `list_options` SET `notes` = '1705-3' WHERE `option_id` = 'table_bluff' AND `list_id` = 'race';
9767 #EndIf
9769 #IfRow2D list_options list_id race title Table Bluff
9770 UPDATE `list_options` SET `notes` = '1705-3' WHERE `title` = 'Table Bluff' AND `list_id` = 'race';
9771 #EndIf
9773 #IfNotRow2Dx2 list_options list_id race option_id tachi title Tachi
9774 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tachi','Tachi','7860', '0',' 1719-4', 0);
9775 #EndIf
9777 #IfRow2D list_options list_id race option_id tachi
9778 UPDATE `list_options` SET `notes` = '1719-4' WHERE `option_id` = 'tachi' AND `list_id` = 'race';
9779 #EndIf
9781 #IfRow2D list_options list_id race title Tachi
9782 UPDATE `list_options` SET `notes` = '1719-4' WHERE `title` = 'Tachi' AND `list_id` = 'race';
9783 #EndIf
9785 #IfNotRow2Dx2 list_options list_id race option_id tahitian title Tahitian
9786 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tahitian','Tahitian','7870', '0',' 2081-8', 0);
9787 #EndIf
9789 #IfRow2D list_options list_id race option_id tahitian
9790 UPDATE `list_options` SET `notes` = '2081-8' WHERE `option_id` = 'tahitian' AND `list_id` = 'race';
9791 #EndIf
9793 #IfRow2D list_options list_id race title Tahitian
9794 UPDATE `list_options` SET `notes` = '2081-8' WHERE `title` = 'Tahitian' AND `list_id` = 'race';
9795 #EndIf
9797 #IfNotRow2Dx2 list_options list_id race option_id taiwanese title Taiwanese
9798 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','taiwanese','Taiwanese','7880', '0',' 2035-4', 0);
9799 #EndIf
9801 #IfRow2D list_options list_id race option_id taiwanese
9802 UPDATE `list_options` SET `notes` = '2035-4' WHERE `option_id` = 'taiwanese' AND `list_id` = 'race';
9803 #EndIf
9805 #IfRow2D list_options list_id race title Taiwanese
9806 UPDATE `list_options` SET `notes` = '2035-4' WHERE `title` = 'Taiwanese' AND `list_id` = 'race';
9807 #EndIf
9809 #IfNotRow2Dx2 list_options list_id race option_id takelma title Takelma
9810 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','takelma','Takelma','7890', '0',' 1063-7', 0);
9811 #EndIf
9813 #IfRow2D list_options list_id race option_id takelma
9814 UPDATE `list_options` SET `notes` = '1063-7' WHERE `option_id` = 'takelma' AND `list_id` = 'race';
9815 #EndIf
9817 #IfRow2D list_options list_id race title Takelma
9818 UPDATE `list_options` SET `notes` = '1063-7' WHERE `title` = 'Takelma' AND `list_id` = 'race';
9819 #EndIf
9821 #IfNotRow2Dx2 list_options list_id race option_id takotna title Takotna
9822 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','takotna','Takotna','7900', '0',' 1798-8', 0);
9823 #EndIf
9825 #IfRow2D list_options list_id race option_id takotna
9826 UPDATE `list_options` SET `notes` = '1798-8' WHERE `option_id` = 'takotna' AND `list_id` = 'race';
9827 #EndIf
9829 #IfRow2D list_options list_id race title Takotna
9830 UPDATE `list_options` SET `notes` = '1798-8' WHERE `title` = 'Takotna' AND `list_id` = 'race';
9831 #EndIf
9833 #IfNotRow2Dx2 list_options list_id race option_id talakamish title Talakamish
9834 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','talakamish','Talakamish','7910', '0',' 1397-9', 0);
9835 #EndIf
9837 #IfRow2D list_options list_id race option_id talakamish
9838 UPDATE `list_options` SET `notes` = '1397-9' WHERE `option_id` = 'talakamish' AND `list_id` = 'race';
9839 #EndIf
9841 #IfRow2D list_options list_id race title Talakamish
9842 UPDATE `list_options` SET `notes` = '1397-9' WHERE `title` = 'Talakamish' AND `list_id` = 'race';
9843 #EndIf
9845 #IfNotRow2Dx2 list_options list_id race option_id tanacross title Tanacross
9846 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tanacross','Tanacross','7920', '0',' 1799-6', 0);
9847 #EndIf
9849 #IfRow2D list_options list_id race option_id tanacross
9850 UPDATE `list_options` SET `notes` = '1799-6' WHERE `option_id` = 'tanacross' AND `list_id` = 'race';
9851 #EndIf
9853 #IfRow2D list_options list_id race title Tanacross
9854 UPDATE `list_options` SET `notes` = '1799-6' WHERE `title` = 'Tanacross' AND `list_id` = 'race';
9855 #EndIf
9857 #IfNotRow2Dx2 list_options list_id race option_id tanaina title Tanaina
9858 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tanaina','Tanaina','7930', '0',' 1800-2', 0);
9859 #EndIf
9861 #IfRow2D list_options list_id race option_id tanaina
9862 UPDATE `list_options` SET `notes` = '1800-2' WHERE `option_id` = 'tanaina' AND `list_id` = 'race';
9863 #EndIf
9865 #IfRow2D list_options list_id race title Tanaina
9866 UPDATE `list_options` SET `notes` = '1800-2' WHERE `title` = 'Tanaina' AND `list_id` = 'race';
9867 #EndIf
9869 #IfNotRow2Dx2 list_options list_id race option_id tanana title Tanana
9870 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tanana','Tanana','7940', '0',' 1801-0', 0);
9871 #EndIf
9873 #IfRow2D list_options list_id race option_id tanana
9874 UPDATE `list_options` SET `notes` = '1801-0' WHERE `option_id` = 'tanana' AND `list_id` = 'race';
9875 #EndIf
9877 #IfRow2D list_options list_id race title Tanana
9878 UPDATE `list_options` SET `notes` = '1801-0' WHERE `title` = 'Tanana' AND `list_id` = 'race';
9879 #EndIf
9881 #IfNotRow2Dx2 list_options list_id race option_id tanana_chiefs title Tanana Chiefs
9882 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tanana_chiefs','Tanana Chiefs','7950', '0',' 1802-8', 0);
9883 #EndIf
9885 #IfRow2D list_options list_id race option_id tanana_chiefs
9886 UPDATE `list_options` SET `notes` = '1802-8' WHERE `option_id` = 'tanana_chiefs' AND `list_id` = 'race';
9887 #EndIf
9889 #IfRow2D list_options list_id race title Tanana Chiefs
9890 UPDATE `list_options` SET `notes` = '1802-8' WHERE `title` = 'Tanana Chiefs' AND `list_id` = 'race';
9891 #EndIf
9893 #IfNotRow2Dx2 list_options list_id race option_id taos title Taos
9894 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','taos','Taos','7960', '0',' 1511-5', 0);
9895 #EndIf
9897 #IfRow2D list_options list_id race option_id taos
9898 UPDATE `list_options` SET `notes` = '1511-5' WHERE `option_id` = 'taos' AND `list_id` = 'race';
9899 #EndIf
9901 #IfRow2D list_options list_id race title Taos
9902 UPDATE `list_options` SET `notes` = '1511-5' WHERE `title` = 'Taos' AND `list_id` = 'race';
9903 #EndIf
9905 #IfNotRow2Dx2 list_options list_id race option_id tatitlek title Tatitlek
9906 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tatitlek','Tatitlek','7970', '0',' 1969-5', 0);
9907 #EndIf
9909 #IfRow2D list_options list_id race option_id tatitlek
9910 UPDATE `list_options` SET `notes` = '1969-5' WHERE `option_id` = 'tatitlek' AND `list_id` = 'race';
9911 #EndIf
9913 #IfRow2D list_options list_id race title Tatitlek
9914 UPDATE `list_options` SET `notes` = '1969-5' WHERE `title` = 'Tatitlek' AND `list_id` = 'race';
9915 #EndIf
9917 #IfNotRow2Dx2 list_options list_id race option_id tazlina title Tazlina
9918 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tazlina','Tazlina','7980', '0',' 1803-6', 0);
9919 #EndIf
9921 #IfRow2D list_options list_id race option_id tazlina
9922 UPDATE `list_options` SET `notes` = '1803-6' WHERE `option_id` = 'tazlina' AND `list_id` = 'race';
9923 #EndIf
9925 #IfRow2D list_options list_id race title Tazlina
9926 UPDATE `list_options` SET `notes` = '1803-6' WHERE `title` = 'Tazlina' AND `list_id` = 'race';
9927 #EndIf
9929 #IfNotRow2Dx2 list_options list_id race option_id telida title Telida
9930 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','telida','Telida','7990', '0',' 1804-4', 0);
9931 #EndIf
9933 #IfRow2D list_options list_id race option_id telida
9934 UPDATE `list_options` SET `notes` = '1804-4' WHERE `option_id` = 'telida' AND `list_id` = 'race';
9935 #EndIf
9937 #IfRow2D list_options list_id race title Telida
9938 UPDATE `list_options` SET `notes` = '1804-4' WHERE `title` = 'Telida' AND `list_id` = 'race';
9939 #EndIf
9941 #IfNotRow2Dx2 list_options list_id race option_id teller title Teller
9942 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','teller','Teller','8000', '0',' 1883-8', 0);
9943 #EndIf
9945 #IfRow2D list_options list_id race option_id teller
9946 UPDATE `list_options` SET `notes` = '1883-8' WHERE `option_id` = 'teller' AND `list_id` = 'race';
9947 #EndIf
9949 #IfRow2D list_options list_id race title Teller
9950 UPDATE `list_options` SET `notes` = '1883-8' WHERE `title` = 'Teller' AND `list_id` = 'race';
9951 #EndIf
9953 #IfNotRow2Dx2 list_options list_id race option_id temecula title Temecula
9954 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','temecula','Temecula','8010', '0',' 1338-3', 0);
9955 #EndIf
9957 #IfRow2D list_options list_id race option_id temecula
9958 UPDATE `list_options` SET `notes` = '1338-3' WHERE `option_id` = 'temecula' AND `list_id` = 'race';
9959 #EndIf
9961 #IfRow2D list_options list_id race title Temecula
9962 UPDATE `list_options` SET `notes` = '1338-3' WHERE `title` = 'Temecula' AND `list_id` = 'race';
9963 #EndIf
9965 #IfNotRow2Dx2 list_options list_id race option_id te-moak_western_shoshone title Te-Moak Western Shoshone
9966 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','te-moak_western_shoshone','Te-Moak Western Shoshone','8020', '0',' 1596-6', 0);
9967 #EndIf
9969 #IfRow2D list_options list_id race option_id te-moak_western_shoshone
9970 UPDATE `list_options` SET `notes` = '1596-6' WHERE `option_id` = 'te-moak_western_shoshone' AND `list_id` = 'race';
9971 #EndIf
9973 #IfRow2D list_options list_id race title Te-Moak Western Shoshone
9974 UPDATE `list_options` SET `notes` = '1596-6' WHERE `title` = 'Te-Moak Western Shoshone' AND `list_id` = 'race';
9975 #EndIf
9977 #IfNotRow2Dx2 list_options list_id race option_id tenakee_springs title Tenakee Springs
9978 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tenakee_springs','Tenakee Springs','8030', '0',' 1832-5', 0);
9979 #EndIf
9981 #IfRow2D list_options list_id race option_id tenakee_springs
9982 UPDATE `list_options` SET `notes` = '1832-5' WHERE `option_id` = 'tenakee_springs' AND `list_id` = 'race';
9983 #EndIf
9985 #IfRow2D list_options list_id race title Tenakee Springs
9986 UPDATE `list_options` SET `notes` = '1832-5' WHERE `title` = 'Tenakee Springs' AND `list_id` = 'race';
9987 #EndIf
9989 #IfNotRow2Dx2 list_options list_id race option_id tenino title Tenino
9990 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tenino','Tenino','8040', '0',' 1398-7', 0);
9991 #EndIf
9993 #IfRow2D list_options list_id race option_id tenino
9994 UPDATE `list_options` SET `notes` = '1398-7' WHERE `option_id` = 'tenino' AND `list_id` = 'race';
9995 #EndIf
9997 #IfRow2D list_options list_id race title Tenino
9998 UPDATE `list_options` SET `notes` = '1398-7' WHERE `title` = 'Tenino' AND `list_id` = 'race';
9999 #EndIf
10001 #IfNotRow2Dx2 list_options list_id race option_id tesuque title Tesuque
10002 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tesuque','Tesuque','8050', '0',' 1512-3', 0);
10003 #EndIf
10005 #IfRow2D list_options list_id race option_id tesuque
10006 UPDATE `list_options` SET `notes` = '1512-3' WHERE `option_id` = 'tesuque' AND `list_id` = 'race';
10007 #EndIf
10009 #IfRow2D list_options list_id race title Tesuque
10010 UPDATE `list_options` SET `notes` = '1512-3' WHERE `title` = 'Tesuque' AND `list_id` = 'race';
10011 #EndIf
10013 #IfNotRow2Dx2 list_options list_id race option_id tetlin title Tetlin
10014 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tetlin','Tetlin','8060', '0',' 1805-1', 0);
10015 #EndIf
10017 #IfRow2D list_options list_id race option_id tetlin
10018 UPDATE `list_options` SET `notes` = '1805-1' WHERE `option_id` = 'tetlin' AND `list_id` = 'race';
10019 #EndIf
10021 #IfRow2D list_options list_id race title Tetlin
10022 UPDATE `list_options` SET `notes` = '1805-1' WHERE `title` = 'Tetlin' AND `list_id` = 'race';
10023 #EndIf
10025 #IfNotRow2Dx2 list_options list_id race option_id teton_sioux title Teton Sioux
10026 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','teton_sioux','Teton Sioux','8070', '0',' 1634-5', 0);
10027 #EndIf
10029 #IfRow2D list_options list_id race option_id teton_sioux
10030 UPDATE `list_options` SET `notes` = '1634-5' WHERE `option_id` = 'teton_sioux' AND `list_id` = 'race';
10031 #EndIf
10033 #IfRow2D list_options list_id race title Teton Sioux
10034 UPDATE `list_options` SET `notes` = '1634-5' WHERE `title` = 'Teton Sioux' AND `list_id` = 'race';
10035 #EndIf
10037 #IfNotRow2Dx2 list_options list_id race option_id tewa title Tewa
10038 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tewa','Tewa','8080', '0',' 1513-1', 0);
10039 #EndIf
10041 #IfRow2D list_options list_id race option_id tewa
10042 UPDATE `list_options` SET `notes` = '1513-1' WHERE `option_id` = 'tewa' AND `list_id` = 'race';
10043 #EndIf
10045 #IfRow2D list_options list_id race title Tewa
10046 UPDATE `list_options` SET `notes` = '1513-1' WHERE `title` = 'Tewa' AND `list_id` = 'race';
10047 #EndIf
10049 #IfNotRow2Dx2 list_options list_id race option_id texas_kickapoo title Texas Kickapoo
10050 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','texas_kickapoo','Texas Kickapoo','8090', '0',' 1307-8', 0);
10051 #EndIf
10053 #IfRow2D list_options list_id race option_id texas_kickapoo
10054 UPDATE `list_options` SET `notes` = '1307-8' WHERE `option_id` = 'texas_kickapoo' AND `list_id` = 'race';
10055 #EndIf
10057 #IfRow2D list_options list_id race title Texas Kickapoo
10058 UPDATE `list_options` SET `notes` = '1307-8' WHERE `title` = 'Texas Kickapoo' AND `list_id` = 'race';
10059 #EndIf
10061 #IfNotRow2Dx2 list_options list_id race option_id thai title Thai
10062 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','thai','Thai','8100', '0',' 2046-1', 0);
10063 #EndIf
10065 #IfRow2D list_options list_id race option_id thai
10066 UPDATE `list_options` SET `notes` = '2046-1' WHERE `option_id` = 'thai' AND `list_id` = 'race';
10067 #EndIf
10069 #IfRow2D list_options list_id race title Thai
10070 UPDATE `list_options` SET `notes` = '2046-1' WHERE `title` = 'Thai' AND `list_id` = 'race';
10071 #EndIf
10073 #IfNotRow2Dx2 list_options list_id race option_id thlopthlocco title Thlopthlocco
10074 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','thlopthlocco','Thlopthlocco','8110', '0',' 1204-7', 0);
10075 #EndIf
10077 #IfRow2D list_options list_id race option_id thlopthlocco
10078 UPDATE `list_options` SET `notes` = '1204-7' WHERE `option_id` = 'thlopthlocco' AND `list_id` = 'race';
10079 #EndIf
10081 #IfRow2D list_options list_id race title Thlopthlocco
10082 UPDATE `list_options` SET `notes` = '1204-7' WHERE `title` = 'Thlopthlocco' AND `list_id` = 'race';
10083 #EndIf
10085 #IfNotRow2Dx2 list_options list_id race option_id tigua title Tigua
10086 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tigua','Tigua','8120', '0',' 1514-9', 0);
10087 #EndIf
10089 #IfRow2D list_options list_id race option_id tigua
10090 UPDATE `list_options` SET `notes` = '1514-9' WHERE `option_id` = 'tigua' AND `list_id` = 'race';
10091 #EndIf
10093 #IfRow2D list_options list_id race title Tigua
10094 UPDATE `list_options` SET `notes` = '1514-9' WHERE `title` = 'Tigua' AND `list_id` = 'race';
10095 #EndIf
10097 #IfNotRow2Dx2 list_options list_id race option_id tillamook title Tillamook
10098 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tillamook','Tillamook','8130', '0',' 1399-5', 0);
10099 #EndIf
10101 #IfRow2D list_options list_id race option_id tillamook
10102 UPDATE `list_options` SET `notes` = '1399-5' WHERE `option_id` = 'tillamook' AND `list_id` = 'race';
10103 #EndIf
10105 #IfRow2D list_options list_id race title Tillamook
10106 UPDATE `list_options` SET `notes` = '1399-5' WHERE `title` = 'Tillamook' AND `list_id` = 'race';
10107 #EndIf
10109 #IfNotRow2Dx2 list_options list_id race option_id timbi-sha_shoshone title Timbi-Sha Shoshone
10110 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','timbi-sha_shoshone','Timbi-Sha Shoshone','8140', '0',' 1597-4', 0);
10111 #EndIf
10113 #IfRow2D list_options list_id race option_id timbi-sha_shoshone
10114 UPDATE `list_options` SET `notes` = '1597-4' WHERE `option_id` = 'timbi-sha_shoshone' AND `list_id` = 'race';
10115 #EndIf
10117 #IfRow2D list_options list_id race title Timbi-Sha Shoshone
10118 UPDATE `list_options` SET `notes` = '1597-4' WHERE `title` = 'Timbi-Sha Shoshone' AND `list_id` = 'race';
10119 #EndIf
10121 #IfNotRow2Dx2 list_options list_id race option_id tlingit title Tlingit
10122 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tlingit','Tlingit','8150', '0',' 1833-3', 0);
10123 #EndIf
10125 #IfRow2D list_options list_id race option_id tlingit
10126 UPDATE `list_options` SET `notes` = '1833-3' WHERE `option_id` = 'tlingit' AND `list_id` = 'race';
10127 #EndIf
10129 #IfRow2D list_options list_id race title Tlingit
10130 UPDATE `list_options` SET `notes` = '1833-3' WHERE `title` = 'Tlingit' AND `list_id` = 'race';
10131 #EndIf
10133 #IfNotRow2Dx2 list_options list_id race option_id tlingit-haida title Tlingit-Haida
10134 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tlingit-haida','Tlingit-Haida','8160', '0',' 1813-5', 0);
10135 #EndIf
10137 #IfRow2D list_options list_id race option_id tlingit-haida
10138 UPDATE `list_options` SET `notes` = '1813-5' WHERE `option_id` = 'tlingit-haida' AND `list_id` = 'race';
10139 #EndIf
10141 #IfRow2D list_options list_id race title Tlingit-Haida
10142 UPDATE `list_options` SET `notes` = '1813-5' WHERE `title` = 'Tlingit-Haida' AND `list_id` = 'race';
10143 #EndIf
10145 #IfNotRow2Dx2 list_options list_id race option_id tobagoan title Tobagoan
10146 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tobagoan','Tobagoan','8170', '0',' 2073-5', 0);
10147 #EndIf
10149 #IfRow2D list_options list_id race option_id tobagoan
10150 UPDATE `list_options` SET `notes` = '2073-5' WHERE `option_id` = 'tobagoan' AND `list_id` = 'race';
10151 #EndIf
10153 #IfRow2D list_options list_id race title Tobagoan
10154 UPDATE `list_options` SET `notes` = '2073-5' WHERE `title` = 'Tobagoan' AND `list_id` = 'race';
10155 #EndIf
10157 #IfNotRow2Dx2 list_options list_id race option_id togiak title Togiak
10158 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','togiak','Togiak','8180', '0',' 1956-2', 0);
10159 #EndIf
10161 #IfRow2D list_options list_id race option_id togiak
10162 UPDATE `list_options` SET `notes` = '1956-2' WHERE `option_id` = 'togiak' AND `list_id` = 'race';
10163 #EndIf
10165 #IfRow2D list_options list_id race title Togiak
10166 UPDATE `list_options` SET `notes` = '1956-2' WHERE `title` = 'Togiak' AND `list_id` = 'race';
10167 #EndIf
10169 #IfNotRow2D list_options list_id race option_id tohono_oodham
10170 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tohono_oodham',"Tohono O'Odham",'8190', '0',' 1653-5', 0);
10171 #EndIf
10173 #IfRow2D list_options list_id race option_id tohono_oodham
10174 UPDATE `list_options` SET `notes` = '1653-5' WHERE `option_id` = 'tohono_oodham' AND `list_id` = 'race';
10175 #EndIf
10177 #IfNotRow2Dx2 list_options list_id race option_id tok title Tok
10178 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tok','Tok','8200', '0',' 1806-9', 0);
10179 #EndIf
10181 #IfRow2D list_options list_id race option_id tok
10182 UPDATE `list_options` SET `notes` = '1806-9' WHERE `option_id` = 'tok' AND `list_id` = 'race';
10183 #EndIf
10185 #IfRow2D list_options list_id race title Tok
10186 UPDATE `list_options` SET `notes` = '1806-9' WHERE `title` = 'Tok' AND `list_id` = 'race';
10187 #EndIf
10189 #IfNotRow2Dx2 list_options list_id race option_id tokelauan title Tokelauan
10190 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tokelauan','Tokelauan','8210', '0',' 2083-4', 0);
10191 #EndIf
10193 #IfRow2D list_options list_id race option_id tokelauan
10194 UPDATE `list_options` SET `notes` = '2083-4' WHERE `option_id` = 'tokelauan' AND `list_id` = 'race';
10195 #EndIf
10197 #IfRow2D list_options list_id race title Tokelauan
10198 UPDATE `list_options` SET `notes` = '2083-4' WHERE `title` = 'Tokelauan' AND `list_id` = 'race';
10199 #EndIf
10201 #IfNotRow2Dx2 list_options list_id race option_id toksook title Toksook
10202 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','toksook','Toksook','8220', '0',' 1957-0', 0);
10203 #EndIf
10205 #IfRow2D list_options list_id race option_id toksook
10206 UPDATE `list_options` SET `notes` = '1957-0' WHERE `option_id` = 'toksook' AND `list_id` = 'race';
10207 #EndIf
10209 #IfRow2D list_options list_id race title Toksook
10210 UPDATE `list_options` SET `notes` = '1957-0' WHERE `title` = 'Toksook' AND `list_id` = 'race';
10211 #EndIf
10213 #IfNotRow2Dx2 list_options list_id race option_id tolowa title Tolowa
10214 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tolowa','Tolowa','8230', '0',' 1659-2', 0);
10215 #EndIf
10217 #IfRow2D list_options list_id race option_id tolowa
10218 UPDATE `list_options` SET `notes` = '1659-2' WHERE `option_id` = 'tolowa' AND `list_id` = 'race';
10219 #EndIf
10221 #IfRow2D list_options list_id race title Tolowa
10222 UPDATE `list_options` SET `notes` = '1659-2' WHERE `title` = 'Tolowa' AND `list_id` = 'race';
10223 #EndIf
10225 #IfNotRow2Dx2 list_options list_id race option_id tonawanda_seneca title Tonawanda Seneca
10226 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tonawanda_seneca','Tonawanda Seneca','8240', '0',' 1293-0', 0);
10227 #EndIf
10229 #IfRow2D list_options list_id race option_id tonawanda_seneca
10230 UPDATE `list_options` SET `notes` = '1293-0' WHERE `option_id` = 'tonawanda_seneca' AND `list_id` = 'race';
10231 #EndIf
10233 #IfRow2D list_options list_id race title Tonawanda Seneca
10234 UPDATE `list_options` SET `notes` = '1293-0' WHERE `title` = 'Tonawanda Seneca' AND `list_id` = 'race';
10235 #EndIf
10237 #IfNotRow2Dx2 list_options list_id race option_id tongan title Tongan
10238 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tongan','Tongan','8250', '0',' 2082-6', 0);
10239 #EndIf
10241 #IfRow2D list_options list_id race option_id tongan
10242 UPDATE `list_options` SET `notes` = '2082-6' WHERE `option_id` = 'tongan' AND `list_id` = 'race';
10243 #EndIf
10245 #IfRow2D list_options list_id race title Tongan
10246 UPDATE `list_options` SET `notes` = '2082-6' WHERE `title` = 'Tongan' AND `list_id` = 'race';
10247 #EndIf
10249 #IfNotRow2Dx2 list_options list_id race option_id tonkawa title Tonkawa
10250 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tonkawa','Tonkawa','8260', '0',' 1661-8', 0);
10251 #EndIf
10253 #IfRow2D list_options list_id race option_id tonkawa
10254 UPDATE `list_options` SET `notes` = '1661-8' WHERE `option_id` = 'tonkawa' AND `list_id` = 'race';
10255 #EndIf
10257 #IfRow2D list_options list_id race title Tonkawa
10258 UPDATE `list_options` SET `notes` = '1661-8' WHERE `title` = 'Tonkawa' AND `list_id` = 'race';
10259 #EndIf
10261 #IfNotRow2Dx2 list_options list_id race option_id torres-martinez title Torres-Martinez
10262 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','torres-martinez','Torres-Martinez','8270', '0',' 1051-2', 0);
10263 #EndIf
10265 #IfRow2D list_options list_id race option_id torres-martinez
10266 UPDATE `list_options` SET `notes` = '1051-2' WHERE `option_id` = 'torres-martinez' AND `list_id` = 'race';
10267 #EndIf
10269 #IfRow2D list_options list_id race title Torres-Martinez
10270 UPDATE `list_options` SET `notes` = '1051-2' WHERE `title` = 'Torres-Martinez' AND `list_id` = 'race';
10271 #EndIf
10273 #IfNotRow2Dx2 list_options list_id race option_id trinidadian title Trinidadian
10274 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','trinidadian','Trinidadian','8280', '0',' 2074-3', 0);
10275 #EndIf
10277 #IfRow2D list_options list_id race option_id trinidadian
10278 UPDATE `list_options` SET `notes` = '2074-3' WHERE `option_id` = 'trinidadian' AND `list_id` = 'race';
10279 #EndIf
10281 #IfRow2D list_options list_id race title Trinidadian
10282 UPDATE `list_options` SET `notes` = '2074-3' WHERE `title` = 'Trinidadian' AND `list_id` = 'race';
10283 #EndIf
10285 #IfNotRow2Dx2 list_options list_id race option_id trinity title Trinity
10286 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','trinity','Trinity','8290', '0',' 1272-4', 0);
10287 #EndIf
10289 #IfRow2D list_options list_id race option_id trinity
10290 UPDATE `list_options` SET `notes` = '1272-4' WHERE `option_id` = 'trinity' AND `list_id` = 'race';
10291 #EndIf
10293 #IfRow2D list_options list_id race title Trinity
10294 UPDATE `list_options` SET `notes` = '1272-4' WHERE `title` = 'Trinity' AND `list_id` = 'race';
10295 #EndIf
10297 #IfNotRow2Dx2 list_options list_id race option_id tsimshian title Tsimshian
10298 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tsimshian','Tsimshian','8300', '0',' 1837-4', 0);
10299 #EndIf
10301 #IfRow2D list_options list_id race option_id tsimshian
10302 UPDATE `list_options` SET `notes` = '1837-4' WHERE `option_id` = 'tsimshian' AND `list_id` = 'race';
10303 #EndIf
10305 #IfRow2D list_options list_id race title Tsimshian
10306 UPDATE `list_options` SET `notes` = '1837-4' WHERE `title` = 'Tsimshian' AND `list_id` = 'race';
10307 #EndIf
10309 #IfNotRow2Dx2 list_options list_id race option_id tuckabachee title Tuckabachee
10310 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tuckabachee','Tuckabachee','8310', '0',' 1205-4', 0);
10311 #EndIf
10313 #IfRow2D list_options list_id race option_id tuckabachee
10314 UPDATE `list_options` SET `notes` = '1205-4' WHERE `option_id` = 'tuckabachee' AND `list_id` = 'race';
10315 #EndIf
10317 #IfRow2D list_options list_id race title Tuckabachee
10318 UPDATE `list_options` SET `notes` = '1205-4' WHERE `title` = 'Tuckabachee' AND `list_id` = 'race';
10319 #EndIf
10321 #IfNotRow2Dx2 list_options list_id race option_id tulalip title Tulalip
10322 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tulalip','Tulalip','8320', '0',' 1538-8', 0);
10323 #EndIf
10325 #IfRow2D list_options list_id race option_id tulalip
10326 UPDATE `list_options` SET `notes` = '1538-8' WHERE `option_id` = 'tulalip' AND `list_id` = 'race';
10327 #EndIf
10329 #IfRow2D list_options list_id race title Tulalip
10330 UPDATE `list_options` SET `notes` = '1538-8' WHERE `title` = 'Tulalip' AND `list_id` = 'race';
10331 #EndIf
10333 #IfNotRow2Dx2 list_options list_id race option_id tule_river title Tule River
10334 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tule_river','Tule River','8330', '0',' 1720-2', 0);
10335 #EndIf
10337 #IfRow2D list_options list_id race option_id tule_river
10338 UPDATE `list_options` SET `notes` = '1720-2' WHERE `option_id` = 'tule_river' AND `list_id` = 'race';
10339 #EndIf
10341 #IfRow2D list_options list_id race title Tule River
10342 UPDATE `list_options` SET `notes` = '1720-2' WHERE `title` = 'Tule River' AND `list_id` = 'race';
10343 #EndIf
10345 #IfNotRow2Dx2 list_options list_id race option_id tulukskak title Tulukskak
10346 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tulukskak','Tulukskak','8340', '0',' 1958-8', 0);
10347 #EndIf
10349 #IfRow2D list_options list_id race option_id tulukskak
10350 UPDATE `list_options` SET `notes` = '1958-8' WHERE `option_id` = 'tulukskak' AND `list_id` = 'race';
10351 #EndIf
10353 #IfRow2D list_options list_id race title Tulukskak
10354 UPDATE `list_options` SET `notes` = '1958-8' WHERE `title` = 'Tulukskak' AND `list_id` = 'race';
10355 #EndIf
10357 #IfNotRow2Dx2 list_options list_id race option_id tunica_biloxi title Tunica Biloxi
10358 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tunica_biloxi','Tunica Biloxi','8350', '0',' 1246-8', 0);
10359 #EndIf
10361 #IfRow2D list_options list_id race option_id tunica_biloxi
10362 UPDATE `list_options` SET `notes` = '1246-8' WHERE `option_id` = 'tunica_biloxi' AND `list_id` = 'race';
10363 #EndIf
10365 #IfRow2D list_options list_id race title Tunica Biloxi
10366 UPDATE `list_options` SET `notes` = '1246-8' WHERE `title` = 'Tunica Biloxi' AND `list_id` = 'race';
10367 #EndIf
10369 #IfNotRow2Dx2 list_options list_id race option_id tuntutuliak title Tuntutuliak
10370 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tuntutuliak','Tuntutuliak','8360', '0',' 1959-6', 0);
10371 #EndIf
10373 #IfRow2D list_options list_id race option_id tuntutuliak
10374 UPDATE `list_options` SET `notes` = '1959-6' WHERE `option_id` = 'tuntutuliak' AND `list_id` = 'race';
10375 #EndIf
10377 #IfRow2D list_options list_id race title Tuntutuliak
10378 UPDATE `list_options` SET `notes` = '1959-6' WHERE `title` = 'Tuntutuliak' AND `list_id` = 'race';
10379 #EndIf
10381 #IfNotRow2Dx2 list_options list_id race option_id tununak title Tununak
10382 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tununak','Tununak','8370', '0',' 1960-4', 0);
10383 #EndIf
10385 #IfRow2D list_options list_id race option_id tununak
10386 UPDATE `list_options` SET `notes` = '1960-4' WHERE `option_id` = 'tununak' AND `list_id` = 'race';
10387 #EndIf
10389 #IfRow2D list_options list_id race title Tununak
10390 UPDATE `list_options` SET `notes` = '1960-4' WHERE `title` = 'Tununak' AND `list_id` = 'race';
10391 #EndIf
10393 #IfNotRow2Dx2 list_options list_id race option_id turtle_mountain title Turtle Mountain
10394 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','turtle_mountain','Turtle Mountain','8380', '0',' 1147-8', 0);
10395 #EndIf
10397 #IfRow2D list_options list_id race option_id turtle_mountain
10398 UPDATE `list_options` SET `notes` = '1147-8' WHERE `option_id` = 'turtle_mountain' AND `list_id` = 'race';
10399 #EndIf
10401 #IfRow2D list_options list_id race title Turtle Mountain
10402 UPDATE `list_options` SET `notes` = '1147-8' WHERE `title` = 'Turtle Mountain' AND `list_id` = 'race';
10403 #EndIf
10405 #IfNotRow2Dx2 list_options list_id race option_id tuscarora title Tuscarora
10406 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tuscarora','Tuscarora','8390', '0',' 1294-8', 0);
10407 #EndIf
10409 #IfRow2D list_options list_id race option_id tuscarora
10410 UPDATE `list_options` SET `notes` = '1294-8' WHERE `option_id` = 'tuscarora' AND `list_id` = 'race';
10411 #EndIf
10413 #IfRow2D list_options list_id race title Tuscarora
10414 UPDATE `list_options` SET `notes` = '1294-8' WHERE `title` = 'Tuscarora' AND `list_id` = 'race';
10415 #EndIf
10417 #IfNotRow2Dx2 list_options list_id race option_id tuscola title Tuscola
10418 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tuscola','Tuscola','8400', '0',' 1096-7', 0);
10419 #EndIf
10421 #IfRow2D list_options list_id race option_id tuscola
10422 UPDATE `list_options` SET `notes` = '1096-7' WHERE `option_id` = 'tuscola' AND `list_id` = 'race';
10423 #EndIf
10425 #IfRow2D list_options list_id race title Tuscola
10426 UPDATE `list_options` SET `notes` = '1096-7' WHERE `title` = 'Tuscola' AND `list_id` = 'race';
10427 #EndIf
10429 #IfNotRow2Dx2 list_options list_id race option_id twenty-nine_palms title Twenty-Nine Palms
10430 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','twenty-nine_palms','Twenty-Nine Palms','8410', '0',' 1337-5', 0);
10431 #EndIf
10433 #IfRow2D list_options list_id race option_id twenty-nine_palms
10434 UPDATE `list_options` SET `notes` = '1337-5' WHERE `option_id` = 'twenty-nine_palms' AND `list_id` = 'race';
10435 #EndIf
10437 #IfRow2D list_options list_id race title Twenty-Nine Palms
10438 UPDATE `list_options` SET `notes` = '1337-5' WHERE `title` = 'Twenty-Nine Palms' AND `list_id` = 'race';
10439 #EndIf
10441 #IfNotRow2Dx2 list_options list_id race option_id twin_hills title Twin Hills
10442 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','twin_hills','Twin Hills','8420', '0',' 1961-2', 0);
10443 #EndIf
10445 #IfRow2D list_options list_id race option_id twin_hills
10446 UPDATE `list_options` SET `notes` = '1961-2' WHERE `option_id` = 'twin_hills' AND `list_id` = 'race';
10447 #EndIf
10449 #IfRow2D list_options list_id race title Twin Hills
10450 UPDATE `list_options` SET `notes` = '1961-2' WHERE `title` = 'Twin Hills' AND `list_id` = 'race';
10451 #EndIf
10453 #IfNotRow2Dx2 list_options list_id race option_id two_kettle_sioux title Two Kettle Sioux
10454 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','two_kettle_sioux','Two Kettle Sioux','8430', '0',' 1635-2', 0);
10455 #EndIf
10457 #IfRow2D list_options list_id race option_id two_kettle_sioux
10458 UPDATE `list_options` SET `notes` = '1635-2' WHERE `option_id` = 'two_kettle_sioux' AND `list_id` = 'race';
10459 #EndIf
10461 #IfRow2D list_options list_id race title Two Kettle Sioux
10462 UPDATE `list_options` SET `notes` = '1635-2' WHERE `title` = 'Two Kettle Sioux' AND `list_id` = 'race';
10463 #EndIf
10465 #IfNotRow2Dx2 list_options list_id race option_id tygh title Tygh
10466 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tygh','Tygh','8440', '0',' 1663-4', 0);
10467 #EndIf
10469 #IfRow2D list_options list_id race option_id tygh
10470 UPDATE `list_options` SET `notes` = '1663-4' WHERE `option_id` = 'tygh' AND `list_id` = 'race';
10471 #EndIf
10473 #IfRow2D list_options list_id race title Tygh
10474 UPDATE `list_options` SET `notes` = '1663-4' WHERE `title` = 'Tygh' AND `list_id` = 'race';
10475 #EndIf
10477 #IfNotRow2Dx2 list_options list_id race option_id tyonek title Tyonek
10478 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','tyonek','Tyonek','8450', '0',' 1807-7', 0);
10479 #EndIf
10481 #IfRow2D list_options list_id race option_id tyonek
10482 UPDATE `list_options` SET `notes` = '1807-7' WHERE `option_id` = 'tyonek' AND `list_id` = 'race';
10483 #EndIf
10485 #IfRow2D list_options list_id race title Tyonek
10486 UPDATE `list_options` SET `notes` = '1807-7' WHERE `title` = 'Tyonek' AND `list_id` = 'race';
10487 #EndIf
10489 #IfNotRow2Dx2 list_options list_id race option_id ugashik title Ugashik
10490 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ugashik','Ugashik','8460', '0',' 1970-3', 0);
10491 #EndIf
10493 #IfRow2D list_options list_id race option_id ugashik
10494 UPDATE `list_options` SET `notes` = '1970-3' WHERE `option_id` = 'ugashik' AND `list_id` = 'race';
10495 #EndIf
10497 #IfRow2D list_options list_id race title Ugashik
10498 UPDATE `list_options` SET `notes` = '1970-3' WHERE `title` = 'Ugashik' AND `list_id` = 'race';
10499 #EndIf
10501 #IfNotRow2Dx2 list_options list_id race option_id uintah_ute title Uintah Ute
10502 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','uintah_ute','Uintah Ute','8470', '0',' 1672-5', 0);
10503 #EndIf
10505 #IfRow2D list_options list_id race option_id uintah_ute
10506 UPDATE `list_options` SET `notes` = '1672-5' WHERE `option_id` = 'uintah_ute' AND `list_id` = 'race';
10507 #EndIf
10509 #IfRow2D list_options list_id race title Uintah Ute
10510 UPDATE `list_options` SET `notes` = '1672-5' WHERE `title` = 'Uintah Ute' AND `list_id` = 'race';
10511 #EndIf
10513 #IfNotRow2Dx2 list_options list_id race option_id umatilla title Umatilla
10514 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','umatilla','Umatilla','8480', '0',' 1665-9', 0);
10515 #EndIf
10517 #IfRow2D list_options list_id race option_id umatilla
10518 UPDATE `list_options` SET `notes` = '1665-9' WHERE `option_id` = 'umatilla' AND `list_id` = 'race';
10519 #EndIf
10521 #IfRow2D list_options list_id race title Umatilla
10522 UPDATE `list_options` SET `notes` = '1665-9' WHERE `title` = 'Umatilla' AND `list_id` = 'race';
10523 #EndIf
10525 #IfNotRow2Dx2 list_options list_id race option_id umkumiate title Umkumiate
10526 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','umkumiate','Umkumiate','8490', '0',' 1964-6', 0);
10527 #EndIf
10529 #IfRow2D list_options list_id race option_id umkumiate
10530 UPDATE `list_options` SET `notes` = '1964-6' WHERE `option_id` = 'umkumiate' AND `list_id` = 'race';
10531 #EndIf
10533 #IfRow2D list_options list_id race title Umkumiate
10534 UPDATE `list_options` SET `notes` = '1964-6' WHERE `title` = 'Umkumiate' AND `list_id` = 'race';
10535 #EndIf
10537 #IfNotRow2Dx2 list_options list_id race option_id umpqua title Umpqua
10538 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','umpqua','Umpqua','8500', '0',' 1667-5', 0);
10539 #EndIf
10541 #IfRow2D list_options list_id race option_id umpqua
10542 UPDATE `list_options` SET `notes` = '1667-5' WHERE `option_id` = 'umpqua' AND `list_id` = 'race';
10543 #EndIf
10545 #IfRow2D list_options list_id race title Umpqua
10546 UPDATE `list_options` SET `notes` = '1667-5' WHERE `title` = 'Umpqua' AND `list_id` = 'race';
10547 #EndIf
10549 #IfNotRow2Dx2 list_options list_id race option_id unalakleet title Unalakleet
10550 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','unalakleet','Unalakleet','8510', '0',' 1884-6', 0);
10551 #EndIf
10553 #IfRow2D list_options list_id race option_id unalakleet
10554 UPDATE `list_options` SET `notes` = '1884-6' WHERE `option_id` = 'unalakleet' AND `list_id` = 'race';
10555 #EndIf
10557 #IfRow2D list_options list_id race title Unalakleet
10558 UPDATE `list_options` SET `notes` = '1884-6' WHERE `title` = 'Unalakleet' AND `list_id` = 'race';
10559 #EndIf
10561 #IfNotRow2Dx2 list_options list_id race option_id unalaska title Unalaska
10562 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','unalaska','Unalaska','8520', '0',' 2025-5', 0);
10563 #EndIf
10565 #IfRow2D list_options list_id race option_id unalaska
10566 UPDATE `list_options` SET `notes` = '2025-5' WHERE `option_id` = 'unalaska' AND `list_id` = 'race';
10567 #EndIf
10569 #IfRow2D list_options list_id race title Unalaska
10570 UPDATE `list_options` SET `notes` = '2025-5' WHERE `title` = 'Unalaska' AND `list_id` = 'race';
10571 #EndIf
10573 #IfNotRow2Dx2 list_options list_id race option_id unangan_aleut title Unangan Aleut
10574 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','unangan_aleut','Unangan Aleut','8530', '0',' 2006-5', 0);
10575 #EndIf
10577 #IfRow2D list_options list_id race option_id unangan_aleut
10578 UPDATE `list_options` SET `notes` = '2006-5' WHERE `option_id` = 'unangan_aleut' AND `list_id` = 'race';
10579 #EndIf
10581 #IfRow2D list_options list_id race title Unangan Aleut
10582 UPDATE `list_options` SET `notes` = '2006-5' WHERE `title` = 'Unangan Aleut' AND `list_id` = 'race';
10583 #EndIf
10585 #IfNotRow2Dx2 list_options list_id race option_id unga title Unga
10586 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','unga','Unga','8540', '0',' 2026-3', 0);
10587 #EndIf
10589 #IfRow2D list_options list_id race option_id unga
10590 UPDATE `list_options` SET `notes` = '2026-3' WHERE `option_id` = 'unga' AND `list_id` = 'race';
10591 #EndIf
10593 #IfRow2D list_options list_id race title Unga
10594 UPDATE `list_options` SET `notes` = '2026-3' WHERE `title` = 'Unga' AND `list_id` = 'race';
10595 #EndIf
10597 #IfNotRow2Dx2 list_options list_id race option_id united_ketowah_band_of_cheroke title United Keetowah Band of Cherokee
10598 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','united_ketowah_band_of_cheroke','United Keetowah Band of Cherokee','8550', '0',' 1097-5', 0);
10599 #EndIf
10601 #IfRow2D list_options list_id race option_id united_ketowah_band_of_cheroke
10602 UPDATE `list_options` SET `notes` = '1097-5' WHERE `option_id` = 'united_ketowah_band_of_cheroke' AND `list_id` = 'race';
10603 #EndIf
10605 #IfRow2D list_options list_id race title United Keetowah Band of Cherokee
10606 UPDATE `list_options` SET `notes` = '1097-5' WHERE `title` = 'United Keetowah Band of Cherokee' AND `list_id` = 'race';
10607 #EndIf
10609 #IfNotRow2Dx2 list_options list_id race option_id upper_chinook title Upper Chinook
10610 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','upper_chinook','Upper Chinook','8560', '0',' 1118-9', 0);
10611 #EndIf
10613 #IfRow2D list_options list_id race option_id upper_chinook
10614 UPDATE `list_options` SET `notes` = '1118-9' WHERE `option_id` = 'upper_chinook' AND `list_id` = 'race';
10615 #EndIf
10617 #IfRow2D list_options list_id race title Upper Chinook
10618 UPDATE `list_options` SET `notes` = '1118-9' WHERE `title` = 'Upper Chinook' AND `list_id` = 'race';
10619 #EndIf
10621 #IfNotRow2Dx2 list_options list_id race option_id upper_sioux title Upper Sioux
10622 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','upper_sioux','Upper Sioux','8570', '0',' 1636-0', 0);
10623 #EndIf
10625 #IfRow2D list_options list_id race option_id upper_sioux
10626 UPDATE `list_options` SET `notes` = '1636-0' WHERE `option_id` = 'upper_sioux' AND `list_id` = 'race';
10627 #EndIf
10629 #IfRow2D list_options list_id race title Upper Sioux
10630 UPDATE `list_options` SET `notes` = '1636-0' WHERE `title` = 'Upper Sioux' AND `list_id` = 'race';
10631 #EndIf
10633 #IfNotRow2Dx2 list_options list_id race option_id upper_skagit title Upper Skagit
10634 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','upper_skagit','Upper Skagit','8580', '0',' 1539-6', 0);
10635 #EndIf
10637 #IfRow2D list_options list_id race option_id upper_skagit
10638 UPDATE `list_options` SET `notes` = '1539-6' WHERE `option_id` = 'upper_skagit' AND `list_id` = 'race';
10639 #EndIf
10641 #IfRow2D list_options list_id race title Upper Skagit
10642 UPDATE `list_options` SET `notes` = '1539-6' WHERE `title` = 'Upper Skagit' AND `list_id` = 'race';
10643 #EndIf
10645 #IfNotRow2Dx2 list_options list_id race option_id ute title Ute
10646 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ute','Ute','8590', '0',' 1670-9', 0);
10647 #EndIf
10649 #IfRow2D list_options list_id race option_id ute
10650 UPDATE `list_options` SET `notes` = '1670-9' WHERE `option_id` = 'ute' AND `list_id` = 'race';
10651 #EndIf
10653 #IfRow2D list_options list_id race title Ute
10654 UPDATE `list_options` SET `notes` = '1670-9' WHERE `title` = 'Ute' AND `list_id` = 'race';
10655 #EndIf
10657 #IfNotRow2Dx2 list_options list_id race option_id ute_mountain_ute title Ute Mountain Ute
10658 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','ute_mountain_ute','Ute Mountain Ute','8600', '0',' 1673-3', 0);
10659 #EndIf
10661 #IfRow2D list_options list_id race option_id ute_mountain_ute
10662 UPDATE `list_options` SET `notes` = '1673-3' WHERE `option_id` = 'ute_mountain_ute' AND `list_id` = 'race';
10663 #EndIf
10665 #IfRow2D list_options list_id race title Ute Mountain Ute
10666 UPDATE `list_options` SET `notes` = '1673-3' WHERE `title` = 'Ute Mountain Ute' AND `list_id` = 'race';
10667 #EndIf
10669 #IfNotRow2Dx2 list_options list_id race option_id utu_utu_gwaitu_paiute title Utu Utu Gwaitu Paiute
10670 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','utu_utu_gwaitu_paiute','Utu Utu Gwaitu Paiute','8610', '0',' 1435-7', 0);
10671 #EndIf
10673 #IfRow2D list_options list_id race option_id utu_utu_gwaitu_paiute
10674 UPDATE `list_options` SET `notes` = '1435-7' WHERE `option_id` = 'utu_utu_gwaitu_paiute' AND `list_id` = 'race';
10675 #EndIf
10677 #IfRow2D list_options list_id race title Utu Utu Gwaitu Paiute
10678 UPDATE `list_options` SET `notes` = '1435-7' WHERE `title` = 'Utu Utu Gwaitu Paiute' AND `list_id` = 'race';
10679 #EndIf
10681 #IfNotRow2Dx2 list_options list_id race option_id venetie title Venetie
10682 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','venetie','Venetie','8620', '0',' 1808-5', 0);
10683 #EndIf
10685 #IfRow2D list_options list_id race option_id venetie
10686 UPDATE `list_options` SET `notes` = '1808-5' WHERE `option_id` = 'venetie' AND `list_id` = 'race';
10687 #EndIf
10689 #IfRow2D list_options list_id race title Venetie
10690 UPDATE `list_options` SET `notes` = '1808-5' WHERE `title` = 'Venetie' AND `list_id` = 'race';
10691 #EndIf
10693 #IfNotRow2Dx2 list_options list_id race option_id vietnamese title Vietnamese
10694 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','vietnamese','Vietnamese','8630', '0',' 2047-9', 0);
10695 #EndIf
10697 #IfRow2D list_options list_id race option_id vietnamese
10698 UPDATE `list_options` SET `notes` = '2047-9' WHERE `option_id` = 'vietnamese' AND `list_id` = 'race';
10699 #EndIf
10701 #IfRow2D list_options list_id race title Vietnamese
10702 UPDATE `list_options` SET `notes` = '2047-9' WHERE `title` = 'Vietnamese' AND `list_id` = 'race';
10703 #EndIf
10705 #IfNotRow2Dx2 list_options list_id race option_id waccamaw-siousan title Waccamaw-Siousan
10706 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','waccamaw-siousan','Waccamaw-Siousan','8640', '0',' 1247-6', 0);
10707 #EndIf
10709 #IfRow2D list_options list_id race option_id waccamaw-siousan
10710 UPDATE `list_options` SET `notes` = '1247-6' WHERE `option_id` = 'waccamaw-siousan' AND `list_id` = 'race';
10711 #EndIf
10713 #IfRow2D list_options list_id race title Waccamaw-Siousan
10714 UPDATE `list_options` SET `notes` = '1247-6' WHERE `title` = 'Waccamaw-Siousan' AND `list_id` = 'race';
10715 #EndIf
10717 #IfNotRow2Dx2 list_options list_id race option_id wahpekute_sioux title Wahpekute Sioux
10718 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wahpekute_sioux','Wahpekute Sioux','8650', '0',' 1637-8', 0);
10719 #EndIf
10721 #IfRow2D list_options list_id race option_id wahpekute_sioux
10722 UPDATE `list_options` SET `notes` = '1637-8' WHERE `option_id` = 'wahpekute_sioux' AND `list_id` = 'race';
10723 #EndIf
10725 #IfRow2D list_options list_id race title Wahpekute Sioux
10726 UPDATE `list_options` SET `notes` = '1637-8' WHERE `title` = 'Wahpekute Sioux' AND `list_id` = 'race';
10727 #EndIf
10729 #IfNotRow2Dx2 list_options list_id race option_id wahpeton_sioux title Wahpeton Sioux
10730 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wahpeton_sioux','Wahpeton Sioux','8660', '0',' 1638-6', 0);
10731 #EndIf
10733 #IfRow2D list_options list_id race option_id wahpeton_sioux
10734 UPDATE `list_options` SET `notes` = '1638-6' WHERE `option_id` = 'wahpeton_sioux' AND `list_id` = 'race';
10735 #EndIf
10737 #IfRow2D list_options list_id race title Wahpeton Sioux
10738 UPDATE `list_options` SET `notes` = '1638-6' WHERE `title` = 'Wahpeton Sioux' AND `list_id` = 'race';
10739 #EndIf
10741 #IfNotRow2Dx2 list_options list_id race option_id wailaki title Wailaki
10742 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wailaki','Wailaki','8670', '0',' 1675-8', 0);
10743 #EndIf
10745 #IfRow2D list_options list_id race option_id wailaki
10746 UPDATE `list_options` SET `notes` = '1675-8' WHERE `option_id` = 'wailaki' AND `list_id` = 'race';
10747 #EndIf
10749 #IfRow2D list_options list_id race title Wailaki
10750 UPDATE `list_options` SET `notes` = '1675-8' WHERE `title` = 'Wailaki' AND `list_id` = 'race';
10751 #EndIf
10753 #IfNotRow2Dx2 list_options list_id race option_id wainwright title Wainwright
10754 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wainwright','Wainwright','8680', '0',' 1885-3', 0);
10755 #EndIf
10757 #IfRow2D list_options list_id race option_id wainwright
10758 UPDATE `list_options` SET `notes` = '1885-3' WHERE `option_id` = 'wainwright' AND `list_id` = 'race';
10759 #EndIf
10761 #IfRow2D list_options list_id race title Wainwright
10762 UPDATE `list_options` SET `notes` = '1885-3' WHERE `title` = 'Wainwright' AND `list_id` = 'race';
10763 #EndIf
10765 #IfNotRow2Dx2 list_options list_id race option_id wakiakum_chinook title Wakiakum Chinook
10766 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wakiakum_chinook','Wakiakum Chinook','8690', '0',' 1119-7', 0);
10767 #EndIf
10769 #IfRow2D list_options list_id race option_id wakiakum_chinook
10770 UPDATE `list_options` SET `notes` = '1119-7' WHERE `option_id` = 'wakiakum_chinook' AND `list_id` = 'race';
10771 #EndIf
10773 #IfRow2D list_options list_id race title Wakiakum Chinook
10774 UPDATE `list_options` SET `notes` = '1119-7' WHERE `title` = 'Wakiakum Chinook' AND `list_id` = 'race';
10775 #EndIf
10777 #IfNotRow2Dx2 list_options list_id race option_id wales title Wales
10778 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wales','Wales','8700', '0',' 1886-1', 0);
10779 #EndIf
10781 #IfRow2D list_options list_id race option_id wales
10782 UPDATE `list_options` SET `notes` = '1886-1' WHERE `option_id` = 'wales' AND `list_id` = 'race';
10783 #EndIf
10785 #IfRow2D list_options list_id race title Wales
10786 UPDATE `list_options` SET `notes` = '1886-1' WHERE `title` = 'Wales' AND `list_id` = 'race';
10787 #EndIf
10789 #IfNotRow2Dx2 list_options list_id race option_id walker_river title Walker River
10790 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','walker_river','Walker River','8710', '0',' 1436-5', 0);
10791 #EndIf
10793 #IfRow2D list_options list_id race option_id walker_river
10794 UPDATE `list_options` SET `notes` = '1436-5' WHERE `option_id` = 'walker_river' AND `list_id` = 'race';
10795 #EndIf
10797 #IfRow2D list_options list_id race title Walker River
10798 UPDATE `list_options` SET `notes` = '1436-5' WHERE `title` = 'Walker River' AND `list_id` = 'race';
10799 #EndIf
10801 #IfNotRow2Dx2 list_options list_id race option_id walla-walla title Walla-Walla
10802 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','walla-walla','Walla-Walla','8720', '0',' 1677-4', 0);
10803 #EndIf
10805 #IfRow2D list_options list_id race option_id walla-walla
10806 UPDATE `list_options` SET `notes` = '1677-4' WHERE `option_id` = 'walla-walla' AND `list_id` = 'race';
10807 #EndIf
10809 #IfRow2D list_options list_id race title Walla-Walla
10810 UPDATE `list_options` SET `notes` = '1677-4' WHERE `title` = 'Walla-Walla' AND `list_id` = 'race';
10811 #EndIf
10813 #IfNotRow2Dx2 list_options list_id race option_id wampanoag title Wampanoag
10814 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wampanoag','Wampanoag','8730', '0',' 1679-0', 0);
10815 #EndIf
10817 #IfRow2D list_options list_id race option_id wampanoag
10818 UPDATE `list_options` SET `notes` = '1679-0' WHERE `option_id` = 'wampanoag' AND `list_id` = 'race';
10819 #EndIf
10821 #IfRow2D list_options list_id race title Wampanoag
10822 UPDATE `list_options` SET `notes` = '1679-0' WHERE `title` = 'Wampanoag' AND `list_id` = 'race';
10823 #EndIf
10825 #IfNotRow2Dx2 list_options list_id race option_id wappo title Wappo
10826 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wappo','Wappo','8740', '0',' 1064-5', 0);
10827 #EndIf
10829 #IfRow2D list_options list_id race option_id wappo
10830 UPDATE `list_options` SET `notes` = '1064-5' WHERE `option_id` = 'wappo' AND `list_id` = 'race';
10831 #EndIf
10833 #IfRow2D list_options list_id race title Wappo
10834 UPDATE `list_options` SET `notes` = '1064-5' WHERE `title` = 'Wappo' AND `list_id` = 'race';
10835 #EndIf
10837 #IfNotRow2Dx2 list_options list_id race option_id warm_springs title Warm Springs
10838 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','warm_springs','Warm Springs','8750', '0',' 1683-2', 0);
10839 #EndIf
10841 #IfRow2D list_options list_id race option_id warm_springs
10842 UPDATE `list_options` SET `notes` = '1683-2' WHERE `option_id` = 'warm_springs' AND `list_id` = 'race';
10843 #EndIf
10845 #IfRow2D list_options list_id race title Warm Springs
10846 UPDATE `list_options` SET `notes` = '1683-2' WHERE `title` = 'Warm Springs' AND `list_id` = 'race';
10847 #EndIf
10849 #IfNotRow2Dx2 list_options list_id race option_id wascopum title Wascopum
10850 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wascopum','Wascopum','8760', '0',' 1685-7', 0);
10851 #EndIf
10853 #IfRow2D list_options list_id race option_id wascopum
10854 UPDATE `list_options` SET `notes` = '1685-7' WHERE `option_id` = 'wascopum' AND `list_id` = 'race';
10855 #EndIf
10857 #IfRow2D list_options list_id race title Wascopum
10858 UPDATE `list_options` SET `notes` = '1685-7' WHERE `title` = 'Wascopum' AND `list_id` = 'race';
10859 #EndIf
10861 #IfNotRow2Dx2 list_options list_id race option_id washakie title Washakie
10862 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','washakie','Washakie','8770', '0',' 1598-2', 0);
10863 #EndIf
10865 #IfRow2D list_options list_id race option_id washakie
10866 UPDATE `list_options` SET `notes` = '1598-2' WHERE `option_id` = 'washakie' AND `list_id` = 'race';
10867 #EndIf
10869 #IfRow2D list_options list_id race title Washakie
10870 UPDATE `list_options` SET `notes` = '1598-2' WHERE `title` = 'Washakie' AND `list_id` = 'race';
10871 #EndIf
10873 #IfNotRow2Dx2 list_options list_id race option_id washoe title Washoe
10874 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','washoe','Washoe','8780', '0',' 1687-3', 0);
10875 #EndIf
10877 #IfRow2D list_options list_id race option_id washoe
10878 UPDATE `list_options` SET `notes` = '1687-3' WHERE `option_id` = 'washoe' AND `list_id` = 'race';
10879 #EndIf
10881 #IfRow2D list_options list_id race title Washoe
10882 UPDATE `list_options` SET `notes` = '1687-3' WHERE `title` = 'Washoe' AND `list_id` = 'race';
10883 #EndIf
10885 #IfNotRow2Dx2 list_options list_id race option_id wazhaza_sioux title Wazhaza Sioux
10886 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wazhaza_sioux','Wazhaza Sioux','8790', '0',' 1639-4', 0);
10887 #EndIf
10889 #IfRow2D list_options list_id race option_id wazhaza_sioux
10890 UPDATE `list_options` SET `notes` = '1639-4' WHERE `option_id` = 'wazhaza_sioux' AND `list_id` = 'race';
10891 #EndIf
10893 #IfRow2D list_options list_id race title Wazhaza Sioux
10894 UPDATE `list_options` SET `notes` = '1639-4' WHERE `title` = 'Wazhaza Sioux' AND `list_id` = 'race';
10895 #EndIf
10897 #IfNotRow2Dx2 list_options list_id race option_id wenatchee title Wenatchee
10898 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wenatchee','Wenatchee','8800', '0',' 1400-1', 0);
10899 #EndIf
10901 #IfRow2D list_options list_id race option_id wenatchee
10902 UPDATE `list_options` SET `notes` = '1400-1' WHERE `option_id` = 'wenatchee' AND `list_id` = 'race';
10903 #EndIf
10905 #IfRow2D list_options list_id race title Wenatchee
10906 UPDATE `list_options` SET `notes` = '1400-1' WHERE `title` = 'Wenatchee' AND `list_id` = 'race';
10907 #EndIf
10909 #IfNotRow2Dx2 list_options list_id race option_id west_indian title West Indian
10910 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','west_indian','West Indian','8810', '0',' 2075-0', 0);
10911 #EndIf
10913 #IfRow2D list_options list_id race option_id west_indian
10914 UPDATE `list_options` SET `notes` = '2075-0' WHERE `option_id` = 'west_indian' AND `list_id` = 'race';
10915 #EndIf
10917 #IfRow2D list_options list_id race title West Indian
10918 UPDATE `list_options` SET `notes` = '2075-0' WHERE `title` = 'West Indian' AND `list_id` = 'race';
10919 #EndIf
10921 #IfNotRow2Dx2 list_options list_id race option_id western_cherokee title Western Cherokee
10922 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','western_cherokee','Western Cherokee','8820', '0',' 1098-3', 0);
10923 #EndIf
10925 #IfRow2D list_options list_id race option_id western_cherokee
10926 UPDATE `list_options` SET `notes` = '1098-3' WHERE `option_id` = 'western_cherokee' AND `list_id` = 'race';
10927 #EndIf
10929 #IfRow2D list_options list_id race title Western Cherokee
10930 UPDATE `list_options` SET `notes` = '1098-3' WHERE `title` = 'Western Cherokee' AND `list_id` = 'race';
10931 #EndIf
10933 #IfNotRow2Dx2 list_options list_id race option_id western_chickahominy title Western Chickahominy
10934 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','western_chickahominy','Western Chickahominy','8830', '0',' 1110-6', 0);
10935 #EndIf
10937 #IfRow2D list_options list_id race option_id western_chickahominy
10938 UPDATE `list_options` SET `notes` = '1110-6' WHERE `option_id` = 'western_chickahominy' AND `list_id` = 'race';
10939 #EndIf
10941 #IfRow2D list_options list_id race title Western Chickahominy
10942 UPDATE `list_options` SET `notes` = '1110-6' WHERE `title` = 'Western Chickahominy' AND `list_id` = 'race';
10943 #EndIf
10945 #IfNotRow2Dx2 list_options list_id race option_id whilkut title Whilkut
10946 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','whilkut','Whilkut','8840', '0',' 1273-2', 0);
10947 #EndIf
10949 #IfRow2D list_options list_id race option_id whilkut
10950 UPDATE `list_options` SET `notes` = '1273-2' WHERE `option_id` = 'whilkut' AND `list_id` = 'race';
10951 #EndIf
10953 #IfRow2D list_options list_id race title Whilkut
10954 UPDATE `list_options` SET `notes` = '1273-2' WHERE `title` = 'Whilkut' AND `list_id` = 'race';
10955 #EndIf
10957 #IfNotRow2Dx2 list_options list_id race option_id white_earth title White Earth
10958 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','white_earth','White Earth','8860', '0',' 1148-6', 0);
10959 #EndIf
10961 #IfRow2D list_options list_id race option_id white_earth
10962 UPDATE `list_options` SET `notes` = '1148-6' WHERE `option_id` = 'white_earth' AND `list_id` = 'race';
10963 #EndIf
10965 #IfRow2D list_options list_id race title White Earth
10966 UPDATE `list_options` SET `notes` = '1148-6' WHERE `title` = 'White Earth' AND `list_id` = 'race';
10967 #EndIf
10969 #IfNotRow2Dx2 list_options list_id race option_id white_mountain title White Mountain
10970 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','white_mountain','White Mountain','8870', '0',' 1887-9', 0);
10971 #EndIf
10973 #IfRow2D list_options list_id race option_id white_mountain
10974 UPDATE `list_options` SET `notes` = '1887-9' WHERE `option_id` = 'white_mountain' AND `list_id` = 'race';
10975 #EndIf
10977 #IfRow2D list_options list_id race title White Mountain
10978 UPDATE `list_options` SET `notes` = '1887-9' WHERE `title` = 'White Mountain' AND `list_id` = 'race';
10979 #EndIf
10981 #IfNotRow2Dx2 list_options list_id race option_id white_mountain_apache title White Mountain Apache
10982 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','white_mountain_apache','White Mountain Apache','8880', '0',' 1019-9', 0);
10983 #EndIf
10985 #IfRow2D list_options list_id race option_id white_mountain_apache
10986 UPDATE `list_options` SET `notes` = '1019-9' WHERE `option_id` = 'white_mountain_apache' AND `list_id` = 'race';
10987 #EndIf
10989 #IfRow2D list_options list_id race title White Mountain Apache
10990 UPDATE `list_options` SET `notes` = '1019-9' WHERE `title` = 'White Mountain Apache' AND `list_id` = 'race';
10991 #EndIf
10993 #IfNotRow2Dx2 list_options list_id race option_id white_mountain_inupiat title White Mountain Inupiat
10994 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','white_mountain_inupiat','White Mountain Inupiat','8890', '0',' 1888-7', 0);
10995 #EndIf
10997 #IfRow2D list_options list_id race option_id white_mountain_inupiat
10998 UPDATE `list_options` SET `notes` = '1888-7' WHERE `option_id` = 'white_mountain_inupiat' AND `list_id` = 'race';
10999 #EndIf
11001 #IfRow2D list_options list_id race title White Mountain Inupiat
11002 UPDATE `list_options` SET `notes` = '1888-7' WHERE `title` = 'White Mountain Inupiat' AND `list_id` = 'race';
11003 #EndIf
11005 #IfNotRow2Dx2 list_options list_id race option_id wichita title Wichita
11006 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wichita','Wichita','8900', '0',' 1692-3', 0);
11007 #EndIf
11009 #IfRow2D list_options list_id race option_id wichita
11010 UPDATE `list_options` SET `notes` = '1692-3' WHERE `option_id` = 'wichita' AND `list_id` = 'race';
11011 #EndIf
11013 #IfRow2D list_options list_id race title Wichita
11014 UPDATE `list_options` SET `notes` = '1692-3' WHERE `title` = 'Wichita' AND `list_id` = 'race';
11015 #EndIf
11017 #IfNotRow2Dx2 list_options list_id race option_id wicomico title Wicomico
11018 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wicomico','Wicomico','8910', '0',' 1248-4', 0);
11019 #EndIf
11021 #IfRow2D list_options list_id race option_id wicomico
11022 UPDATE `list_options` SET `notes` = '1248-4' WHERE `option_id` = 'wicomico' AND `list_id` = 'race';
11023 #EndIf
11025 #IfRow2D list_options list_id race title Wicomico
11026 UPDATE `list_options` SET `notes` = '1248-4' WHERE `title` = 'Wicomico' AND `list_id` = 'race';
11027 #EndIf
11029 #IfNotRow2Dx2 list_options list_id race option_id willapa_chinook title Willapa Chinook
11030 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','willapa_chinook','Willapa Chinook','8920', '0',' 1120-5', 0);
11031 #EndIf
11033 #IfRow2D list_options list_id race option_id willapa_chinook
11034 UPDATE `list_options` SET `notes` = '1120-5' WHERE `option_id` = 'willapa_chinook' AND `list_id` = 'race';
11035 #EndIf
11037 #IfRow2D list_options list_id race title Willapa Chinook
11038 UPDATE `list_options` SET `notes` = '1120-5' WHERE `title` = 'Willapa Chinook' AND `list_id` = 'race';
11039 #EndIf
11041 #IfNotRow2Dx2 list_options list_id race option_id wind_river title Wind River
11042 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wind_river','Wind River','8930', '0',' 1694-9', 0);
11043 #EndIf
11045 #IfRow2D list_options list_id race option_id wind_river
11046 UPDATE `list_options` SET `notes` = '1694-9' WHERE `option_id` = 'wind_river' AND `list_id` = 'race';
11047 #EndIf
11049 #IfRow2D list_options list_id race title Wind River
11050 UPDATE `list_options` SET `notes` = '1694-9' WHERE `title` = 'Wind River' AND `list_id` = 'race';
11051 #EndIf
11053 #IfNotRow2Dx2 list_options list_id race option_id wind_river_arapaho title Wind River Arapaho
11054 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wind_river_arapaho','Wind River Arapaho','8940', '0',' 1024-9', 0);
11055 #EndIf
11057 #IfRow2D list_options list_id race option_id wind_river_arapaho
11058 UPDATE `list_options` SET `notes` = '1024-9' WHERE `option_id` = 'wind_river_arapaho' AND `list_id` = 'race';
11059 #EndIf
11061 #IfRow2D list_options list_id race title Wind River Arapaho
11062 UPDATE `list_options` SET `notes` = '1024-9' WHERE `title` = 'Wind River Arapaho' AND `list_id` = 'race';
11063 #EndIf
11065 #IfNotRow2Dx2 list_options list_id race option_id wind_river_shoshone title Wind River Shoshone
11066 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wind_river_shoshone','Wind River Shoshone','8950', '0',' 1599-0', 0);
11067 #EndIf
11069 #IfRow2D list_options list_id race option_id wind_river_shoshone
11070 UPDATE `list_options` SET `notes` = '1599-0' WHERE `option_id` = 'wind_river_shoshone' AND `list_id` = 'race';
11071 #EndIf
11073 #IfRow2D list_options list_id race title Wind River Shoshone
11074 UPDATE `list_options` SET `notes` = '1599-0' WHERE `title` = 'Wind River Shoshone' AND `list_id` = 'race';
11075 #EndIf
11077 #IfNotRow2Dx2 list_options list_id race option_id winnebago title Winnebago
11078 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','winnebago','Winnebago','8960', '0',' 1696-4', 0);
11079 #EndIf
11081 #IfRow2D list_options list_id race option_id winnebago
11082 UPDATE `list_options` SET `notes` = '1696-4' WHERE `option_id` = 'winnebago' AND `list_id` = 'race';
11083 #EndIf
11085 #IfRow2D list_options list_id race title Winnebago
11086 UPDATE `list_options` SET `notes` = '1696-4' WHERE `title` = 'Winnebago' AND `list_id` = 'race';
11087 #EndIf
11089 #IfNotRow2Dx2 list_options list_id race option_id winnemucca title Winnemucca
11090 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','winnemucca','Winnemucca','8970', '0',' 1700-4', 0);
11091 #EndIf
11093 #IfRow2D list_options list_id race option_id winnemucca
11094 UPDATE `list_options` SET `notes` = '1700-4' WHERE `option_id` = 'winnemucca' AND `list_id` = 'race';
11095 #EndIf
11097 #IfRow2D list_options list_id race title Winnemucca
11098 UPDATE `list_options` SET `notes` = '1700-4' WHERE `title` = 'Winnemucca' AND `list_id` = 'race';
11099 #EndIf
11101 #IfNotRow2Dx2 list_options list_id race option_id wintun title Wintun
11102 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wintun','Wintun','8980', '0',' 1702-0', 0);
11103 #EndIf
11105 #IfRow2D list_options list_id race option_id wintun
11106 UPDATE `list_options` SET `notes` = '1702-0' WHERE `option_id` = 'wintun' AND `list_id` = 'race';
11107 #EndIf
11109 #IfRow2D list_options list_id race title Wintun
11110 UPDATE `list_options` SET `notes` = '1702-0' WHERE `title` = 'Wintun' AND `list_id` = 'race';
11111 #EndIf
11113 #IfNotRow2Dx2 list_options list_id race option_id wisconsin_potawatomi title Wisconsin Potawatomi
11114 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wisconsin_potawatomi','Wisconsin Potawatomi','8990', '0',' 1485-2', 0);
11115 #EndIf
11117 #IfRow2D list_options list_id race option_id wisconsin_potawatomi
11118 UPDATE `list_options` SET `notes` = '1485-2' WHERE `option_id` = 'wisconsin_potawatomi' AND `list_id` = 'race';
11119 #EndIf
11121 #IfRow2D list_options list_id race title Wisconsin Potawatomi
11122 UPDATE `list_options` SET `notes` = '1485-2' WHERE `title` = 'Wisconsin Potawatomi' AND `list_id` = 'race';
11123 #EndIf
11125 #IfNotRow2Dx2 list_options list_id race option_id wiseman title Wiseman
11126 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wiseman','Wiseman','9000', '0',' 1809-3', 0);
11127 #EndIf
11129 #IfRow2D list_options list_id race option_id wiseman
11130 UPDATE `list_options` SET `notes` = '1809-3' WHERE `option_id` = 'wiseman' AND `list_id` = 'race';
11131 #EndIf
11133 #IfRow2D list_options list_id race title Wiseman
11134 UPDATE `list_options` SET `notes` = '1809-3' WHERE `title` = 'Wiseman' AND `list_id` = 'race';
11135 #EndIf
11137 #IfNotRow2Dx2 list_options list_id race option_id wishram title Wishram
11138 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wishram','Wishram','9010', '0',' 1121-3', 0);
11139 #EndIf
11141 #IfRow2D list_options list_id race option_id wishram
11142 UPDATE `list_options` SET `notes` = '1121-3' WHERE `option_id` = 'wishram' AND `list_id` = 'race';
11143 #EndIf
11145 #IfRow2D list_options list_id race title Wishram
11146 UPDATE `list_options` SET `notes` = '1121-3' WHERE `title` = 'Wishram' AND `list_id` = 'race';
11147 #EndIf
11149 #IfNotRow2Dx2 list_options list_id race option_id wiyot title Wiyot
11150 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wiyot','Wiyot','9020', '0',' 1704-6', 0);
11151 #EndIf
11153 #IfRow2D list_options list_id race option_id wiyot
11154 UPDATE `list_options` SET `notes` = '1704-6' WHERE `option_id` = 'wiyot' AND `list_id` = 'race';
11155 #EndIf
11157 #IfRow2D list_options list_id race title Wiyot
11158 UPDATE `list_options` SET `notes` = '1704-6' WHERE `title` = 'Wiyot' AND `list_id` = 'race';
11159 #EndIf
11161 #IfNotRow2Dx2 list_options list_id race option_id wrangell title Wrangell
11162 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wrangell','Wrangell','9030', '0',' 1834-1', 0);
11163 #EndIf
11165 #IfRow2D list_options list_id race option_id wrangell
11166 UPDATE `list_options` SET `notes` = '1834-1' WHERE `option_id` = 'wrangell' AND `list_id` = 'race';
11167 #EndIf
11169 #IfRow2D list_options list_id race title Wrangell
11170 UPDATE `list_options` SET `notes` = '1834-1' WHERE `title` = 'Wrangell' AND `list_id` = 'race';
11171 #EndIf
11173 #IfNotRow2Dx2 list_options list_id race option_id wyandotte title Wyandotte
11174 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','wyandotte','Wyandotte','9040', '0',' 1295-5', 0);
11175 #EndIf
11177 #IfRow2D list_options list_id race option_id wyandotte
11178 UPDATE `list_options` SET `notes` = '1295-5' WHERE `option_id` = 'wyandotte' AND `list_id` = 'race';
11179 #EndIf
11181 #IfRow2D list_options list_id race title Wyandotte
11182 UPDATE `list_options` SET `notes` = '1295-5' WHERE `title` = 'Wyandotte' AND `list_id` = 'race';
11183 #EndIf
11185 #IfNotRow2Dx2 list_options list_id race option_id yahooskin title Yahooskin
11186 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yahooskin','Yahooskin','9050', '0',' 1401-9', 0);
11187 #EndIf
11189 #IfRow2D list_options list_id race option_id yahooskin
11190 UPDATE `list_options` SET `notes` = '1401-9' WHERE `option_id` = 'yahooskin' AND `list_id` = 'race';
11191 #EndIf
11193 #IfRow2D list_options list_id race title Yahooskin
11194 UPDATE `list_options` SET `notes` = '1401-9' WHERE `title` = 'Yahooskin' AND `list_id` = 'race';
11195 #EndIf
11197 #IfNotRow2Dx2 list_options list_id race option_id yakama title Yakama
11198 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yakama','Yakama','9060', '0',' 1707-9', 0);
11199 #EndIf
11201 #IfRow2D list_options list_id race option_id yakama
11202 UPDATE `list_options` SET `notes` = '1707-9' WHERE `option_id` = 'yakama' AND `list_id` = 'race';
11203 #EndIf
11205 #IfRow2D list_options list_id race title Yakama
11206 UPDATE `list_options` SET `notes` = '1707-9' WHERE `title` = 'Yakama' AND `list_id` = 'race';
11207 #EndIf
11209 #IfNotRow2Dx2 list_options list_id race option_id yakama_cowlitz title Yakama Cowlitz
11210 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yakama_cowlitz','Yakama Cowlitz','9070', '0',' 1709-5', 0);
11211 #EndIf
11213 #IfRow2D list_options list_id race option_id yakama_cowlitz
11214 UPDATE `list_options` SET `notes` = '1709-5' WHERE `option_id` = 'yakama_cowlitz' AND `list_id` = 'race';
11215 #EndIf
11217 #IfRow2D list_options list_id race title Yakama Cowlitz
11218 UPDATE `list_options` SET `notes` = '1709-5' WHERE `title` = 'Yakama Cowlitz' AND `list_id` = 'race';
11219 #EndIf
11221 #IfNotRow2Dx2 list_options list_id race option_id yakutat title Yakutat
11222 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yakutat','Yakutat','9080', '0',' 1835-8', 0);
11223 #EndIf
11225 #IfRow2D list_options list_id race option_id yakutat
11226 UPDATE `list_options` SET `notes` = '1835-8' WHERE `option_id` = 'yakutat' AND `list_id` = 'race';
11227 #EndIf
11229 #IfRow2D list_options list_id race title Yakutat
11230 UPDATE `list_options` SET `notes` = '1835-8' WHERE `title` = 'Yakutat' AND `list_id` = 'race';
11231 #EndIf
11233 #IfNotRow2Dx2 list_options list_id race option_id yana title Yana
11234 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yana','Yana','9090', '0',' 1065-2', 0);
11235 #EndIf
11237 #IfRow2D list_options list_id race option_id yana
11238 UPDATE `list_options` SET `notes` = '1065-2' WHERE `option_id` = 'yana' AND `list_id` = 'race';
11239 #EndIf
11241 #IfRow2D list_options list_id race title Yana
11242 UPDATE `list_options` SET `notes` = '1065-2' WHERE `title` = 'Yana' AND `list_id` = 'race';
11243 #EndIf
11245 #IfNotRow2Dx2 list_options list_id race option_id yankton_sioux title Yankton Sioux
11246 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yankton_sioux','Yankton Sioux','9100', '0',' 1640-2', 0);
11247 #EndIf
11249 #IfRow2D list_options list_id race option_id yankton_sioux
11250 UPDATE `list_options` SET `notes` = '1640-2' WHERE `option_id` = 'yankton_sioux' AND `list_id` = 'race';
11251 #EndIf
11253 #IfRow2D list_options list_id race title Yankton Sioux
11254 UPDATE `list_options` SET `notes` = '1640-2' WHERE `title` = 'Yankton Sioux' AND `list_id` = 'race';
11255 #EndIf
11257 #IfNotRow2Dx2 list_options list_id race option_id yanktonai_sioux title Yanktonai Sioux
11258 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yanktonai_sioux','Yanktonai Sioux','9110', '0',' 1641-0', 0);
11259 #EndIf
11261 #IfRow2D list_options list_id race option_id yanktonai_sioux
11262 UPDATE `list_options` SET `notes` = '1641-0' WHERE `option_id` = 'yanktonai_sioux' AND `list_id` = 'race';
11263 #EndIf
11265 #IfRow2D list_options list_id race title Yanktonai Sioux
11266 UPDATE `list_options` SET `notes` = '1641-0' WHERE `title` = 'Yanktonai Sioux' AND `list_id` = 'race';
11267 #EndIf
11269 #IfNotRow2Dx2 list_options list_id race option_id yapese title Yapese
11270 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yapese','Yapese','9120', '0',' 2098-2', 0);
11271 #EndIf
11273 #IfRow2D list_options list_id race option_id yapese
11274 UPDATE `list_options` SET `notes` = '2098-2' WHERE `option_id` = 'yapese' AND `list_id` = 'race';
11275 #EndIf
11277 #IfRow2D list_options list_id race title Yapese
11278 UPDATE `list_options` SET `notes` = '2098-2' WHERE `title` = 'Yapese' AND `list_id` = 'race';
11279 #EndIf
11281 #IfNotRow2Dx2 list_options list_id race option_id yaqui title Yaqui
11282 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yaqui','Yaqui','9130', '0',' 1711-1', 0);
11283 #EndIf
11285 #IfRow2D list_options list_id race option_id yaqui
11286 UPDATE `list_options` SET `notes` = '1711-1' WHERE `option_id` = 'yaqui' AND `list_id` = 'race';
11287 #EndIf
11289 #IfRow2D list_options list_id race title Yaqui
11290 UPDATE `list_options` SET `notes` = '1711-1' WHERE `title` = 'Yaqui' AND `list_id` = 'race';
11291 #EndIf
11293 #IfNotRow2Dx2 list_options list_id race option_id yavapai title Yavapai
11294 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yavapai','Yavapai','9140', '0',' 1731-9', 0);
11295 #EndIf
11297 #IfRow2D list_options list_id race option_id yavapai
11298 UPDATE `list_options` SET `notes` = '1731-9' WHERE `option_id` = 'yavapai' AND `list_id` = 'race';
11299 #EndIf
11301 #IfRow2D list_options list_id race title Yavapai
11302 UPDATE `list_options` SET `notes` = '1731-9' WHERE `title` = 'Yavapai' AND `list_id` = 'race';
11303 #EndIf
11305 #IfNotRow2Dx2 list_options list_id race option_id yavapai_apache title Yavapai Apache
11306 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yavapai_apache','Yavapai Apache','9150', '0',' 1715-2', 0);
11307 #EndIf
11309 #IfRow2D list_options list_id race option_id yavapai_apache
11310 UPDATE `list_options` SET `notes` = '1715-2' WHERE `option_id` = 'yavapai_apache' AND `list_id` = 'race';
11311 #EndIf
11313 #IfRow2D list_options list_id race title Yavapai Apache
11314 UPDATE `list_options` SET `notes` = '1715-2' WHERE `title` = 'Yavapai Apache' AND `list_id` = 'race';
11315 #EndIf
11317 #IfNotRow2Dx2 list_options list_id race option_id yerington_paiute title Yerington Paiute
11318 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yerington_paiute','Yerington Paiute','9160', '0',' 1437-3', 0);
11319 #EndIf
11321 #IfRow2D list_options list_id race option_id yerington_paiute
11322 UPDATE `list_options` SET `notes` = '1437-3' WHERE `option_id` = 'yerington_paiute' AND `list_id` = 'race';
11323 #EndIf
11325 #IfRow2D list_options list_id race title Yerington Paiute
11326 UPDATE `list_options` SET `notes` = '1437-3' WHERE `title` = 'Yerington Paiute' AND `list_id` = 'race';
11327 #EndIf
11329 #IfNotRow2Dx2 list_options list_id race option_id yokuts title Yokuts
11330 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yokuts','Yokuts','9170', '0',' 1717-8', 0);
11331 #EndIf
11333 #IfRow2D list_options list_id race option_id yokuts
11334 UPDATE `list_options` SET `notes` = '1717-8' WHERE `option_id` = 'yokuts' AND `list_id` = 'race';
11335 #EndIf
11337 #IfRow2D list_options list_id race title Yokuts
11338 UPDATE `list_options` SET `notes` = '1717-8' WHERE `title` = 'Yokuts' AND `list_id` = 'race';
11339 #EndIf
11341 #IfNotRow2Dx2 list_options list_id race option_id yomba title Yomba
11342 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yomba','Yomba','9180', '0',' 1600-6', 0);
11343 #EndIf
11345 #IfRow2D list_options list_id race option_id yomba
11346 UPDATE `list_options` SET `notes` = '1600-6' WHERE `option_id` = 'yomba' AND `list_id` = 'race';
11347 #EndIf
11349 #IfRow2D list_options list_id race title Yomba
11350 UPDATE `list_options` SET `notes` = '1600-6' WHERE `title` = 'Yomba' AND `list_id` = 'race';
11351 #EndIf
11353 #IfNotRow2Dx2 list_options list_id race option_id yuchi title Yuchi
11354 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yuchi','Yuchi','9190', '0',' 1722-8', 0);
11355 #EndIf
11357 #IfRow2D list_options list_id race option_id yuchi
11358 UPDATE `list_options` SET `notes` = '1722-8' WHERE `option_id` = 'yuchi' AND `list_id` = 'race';
11359 #EndIf
11361 #IfRow2D list_options list_id race title Yuchi
11362 UPDATE `list_options` SET `notes` = '1722-8' WHERE `title` = 'Yuchi' AND `list_id` = 'race';
11363 #EndIf
11365 #IfNotRow2Dx2 list_options list_id race option_id yuki title Yuki
11366 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yuki','Yuki','9200', '0',' 1066-0', 0);
11367 #EndIf
11369 #IfRow2D list_options list_id race option_id yuki
11370 UPDATE `list_options` SET `notes` = '1066-0' WHERE `option_id` = 'yuki' AND `list_id` = 'race';
11371 #EndIf
11373 #IfRow2D list_options list_id race title Yuki
11374 UPDATE `list_options` SET `notes` = '1066-0' WHERE `title` = 'Yuki' AND `list_id` = 'race';
11375 #EndIf
11377 #IfNotRow2Dx2 list_options list_id race option_id yuman title Yuman
11378 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yuman','Yuman','9210', '0',' 1724-4', 0);
11379 #EndIf
11381 #IfRow2D list_options list_id race option_id yuman
11382 UPDATE `list_options` SET `notes` = '1724-4' WHERE `option_id` = 'yuman' AND `list_id` = 'race';
11383 #EndIf
11385 #IfRow2D list_options list_id race title Yuman
11386 UPDATE `list_options` SET `notes` = '1724-4' WHERE `title` = 'Yuman' AND `list_id` = 'race';
11387 #EndIf
11389 #IfNotRow2Dx2 list_options list_id race option_id yupik_eskimo title Yupik Eskimo
11390 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yupik_eskimo','Yupik Eskimo','9220', '0',' 1896-0', 0);
11391 #EndIf
11393 #IfRow2D list_options list_id race option_id yupik_eskimo
11394 UPDATE `list_options` SET `notes` = '1896-0' WHERE `option_id` = 'yupik_eskimo' AND `list_id` = 'race';
11395 #EndIf
11397 #IfRow2D list_options list_id race title Yupik Eskimo
11398 UPDATE `list_options` SET `notes` = '1896-0' WHERE `title` = 'Yupik Eskimo' AND `list_id` = 'race';
11399 #EndIf
11401 #IfNotRow2Dx2 list_options list_id race option_id yurok title Yurok
11402 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','yurok','Yurok','9230', '0',' 1732-7', 0);
11403 #EndIf
11405 #IfRow2D list_options list_id race option_id yurok
11406 UPDATE `list_options` SET `notes` = '1732-7' WHERE `option_id` = 'yurok' AND `list_id` = 'race';
11407 #EndIf
11409 #IfRow2D list_options list_id race title Yurok
11410 UPDATE `list_options` SET `notes` = '1732-7' WHERE `title` = 'Yurok' AND `list_id` = 'race';
11411 #EndIf
11413 #IfNotRow2Dx2 list_options list_id race option_id zairean title Zairean
11414 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','zairean','Zairean','9240', '0',' 2066-9', 0);
11415 #EndIf
11417 #IfRow2D list_options list_id race option_id zairean
11418 UPDATE `list_options` SET `notes` = '2066-9' WHERE `option_id` = 'zairean' AND `list_id` = 'race';
11419 #EndIf
11421 #IfRow2D list_options list_id race title Zairean
11422 UPDATE `list_options` SET `notes` = '2066-9' WHERE `title` = 'Zairean' AND `list_id` = 'race';
11423 #EndIf
11425 #IfNotRow2Dx2 list_options list_id race option_id zia title Zia
11426 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','zia','Zia','9250', '0',' 1515-6', 0);
11427 #EndIf
11429 #IfRow2D list_options list_id race option_id zia
11430 UPDATE `list_options` SET `notes` = '1515-6' WHERE `option_id` = 'zia' AND `list_id` = 'race';
11431 #EndIf
11433 #IfRow2D list_options list_id race title Zia
11434 UPDATE `list_options` SET `notes` = '1515-6' WHERE `title` = 'Zia' AND `list_id` = 'race';
11435 #EndIf
11437 #IfNotRow2Dx2 list_options list_id race option_id zuni title Zuni
11438 INSERT INTO list_options (list_id, option_id,  title, seq, is_default, notes, activity) VALUES ('race','zuni','Zuni','9260', '0',' 1516-4', 0);
11439 #EndIf
11441 #IfRow2D list_options list_id race option_id zuni
11442 UPDATE `list_options` SET `notes` = '1516-4' WHERE `option_id` = 'zuni' AND `list_id` = 'race';
11443 #EndIf
11445 #IfRow2D list_options list_id race title Zuni
11446 UPDATE `list_options` SET `notes` = '1516-4' WHERE `title` = 'Zuni' AND `list_id` = 'race';
11447 #EndIf
11449 #IfMissingColumn lists severity_al
11450 ALTER TABLE lists ADD COLUMN severity_al VARCHAR(50) DEFAULT NULL;
11451 #EndIf
11453 #IfNotRow2D list_options list_id lists option_id severity_ccda
11454 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','severity_ccda','Severity');
11455 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','unassigned','Unassigned','','10');
11456 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','mild','Mild','SNOMED-CT:255604002','20');
11457 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','mild_to_moderate','Mild to moderate','SNOMED-CT:371923003','30');
11458 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','moderate','Moderate','SNOMED-CT:6736007','40');
11459 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','moderate_to_severe','Moderate to severe','SNOMED-CT:371924009','50');
11460 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','severe','Severe','SNOMED-CT:24484000','60');
11461 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','life_threatening_severity','Life threatening severity','SNOMED-CT:442452003','70');
11462 INSERT INTO list_options (list_id, option_id, title, codes, seq) values ('severity_ccda','fatal','Fatal','SNOMED-CT:399166001','80');
11463 #EndIf
11465 #IfNotRow3D list_options list_id drug_route notes PO title Per Oris
11466 UPDATE list_options SET list_options.notes = 'PO' WHERE list_options.list_id = 'drug_route' AND title = 'Per Oris';
11467 #EndIf
11469 #IfNotRow3D list_options list_id drug_route notes OTH title Per Rectum
11470 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Per Rectum';
11471 #EndIf
11473 #IfNotRow3D list_options list_id drug_route notes OTH title To Skin
11474 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'To Skin';
11475 #EndIf
11477 #IfNotRow3D list_options list_id drug_route notes OTH title To Affected Area
11478 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'To Affected Area';
11479 #EndIf
11481 #IfNotRow3D list_options list_id drug_route notes OTH title Sublingual
11482 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Sublingual';
11483 #EndIf
11485 #IfNotRow3D list_options list_id drug_route notes OTH title OS
11486 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OS';
11487 #EndIf
11489 #IfNotRow3D list_options list_id drug_route notes OTH title OD
11490 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OD';
11491 #EndIf
11493 #IfNotRow3D list_options list_id drug_route notes OTH title OU
11494 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'OU';
11495 #EndIf
11497 #IfNotRow3D list_options list_id drug_route notes OTH title SQ
11498 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'SQ';
11499 #EndIf
11501 #IfNotRow3D list_options list_id drug_route notes IM title IM
11502 UPDATE list_options SET list_options.notes = 'IM' WHERE list_options.list_id = 'drug_route' AND title = 'IM';
11503 #EndIf
11505 #IfNotRow3D list_options list_id drug_route notes IV title IV
11506 UPDATE list_options SET list_options.notes = 'IV' WHERE list_options.list_id = 'drug_route' AND title = 'IV';
11507 #EndIf
11509 #IfNotRow3D list_options list_id drug_route notes NS title Per Nostril
11510 UPDATE list_options SET list_options.notes = 'NS' WHERE list_options.list_id = 'drug_route' AND title = 'Per Nostril';
11511 #EndIf
11513 #IfNotRow3D list_options list_id drug_route notes OTH title Both Ears
11514 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Both Ears';
11515 #EndIf
11517 #IfNotRow3D list_options list_id drug_route notes OTH title Left Ear
11518 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Left Ear';
11519 #EndIf
11521 #IfNotRow3D list_options list_id drug_route notes OTH title Right Ear
11522 UPDATE list_options SET list_options.notes = 'OTH' WHERE list_options.list_id = 'drug_route' AND title = 'Right Ear';
11523 #EndIf
11525 #IfNotRow2Dx2 list_options list_id drug_route title intradermal title Intradermal
11526 INSERT INTO list_options ( list_id, option_id, title, seq,  notes ) VALUES ('drug_route', 'intradermal', 'Intradermal', 20, 'ID');
11527 #EndIf
11529 #IfNotRow2Dx2 list_options list_id drug_route title other title Other/Miscellaneous
11530 INSERT INTO list_options ( list_id, option_id, title, seq, notes ) VALUES ('drug_route', 'other', 'Other/Miscellaneous', 30, 'OTH');
11531 #EndIf
11533 #IfNotRow2Dx2 list_options list_id drug_route title transdermal title Transdermal
11534 INSERT INTO list_options ( list_id, option_id, title, seq, notes ) VALUES ('drug_route', 'transdermal', 'Transdermal', 40, 'TD');
11535 #EndIf
11537 #IfNotRow2D list_options list_id lists option_id physician_type
11538 INSERT INTO list_options (list_id,option_id,title) VALUES ('lists','physician_type','Physician Type');
11539 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','attending_physician','SNOMED-CT:405279007','Attending physician', '10');
11540 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','audiological_physician','SNOMED-CT:310172001','Audiological physician', '20');
11541 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','chest_physician','SNOMED-CT:309345004','Chest physician', '30');
11542 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','community_health_physician','SNOMED-CT:23278007','Community health physician', '40');
11543 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','consultant_physician','SNOMED-CT:158967008','Consultant physician', '50');
11544 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','general_physician','SNOMED-CT:59058001','General physician', '60');
11545 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','genitourinarymedicinephysician','SNOMED-CT:309358003','Genitourinary medicine physician', '70');
11546 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','occupational_physician','SNOMED-CT:158973009','Occupational physician', '80');
11547 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','palliative_care_physician','SNOMED-CT:309359006','Palliative care physician', '90');
11548 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','physician','SNOMED-CT:309343006','Physician', '100');
11549 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','public_health_physician','SNOMED-CT:56466003','Public health physician', '110');
11550 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','rehabilitation_physician','SNOMED-CT:309360001','Rehabilitation physician', '120');
11551 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','resident_physician','SNOMED-CT:405277009','Resident physician', '130');
11552 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','specialized_physician','SNOMED-CT:69280009','Specialized physician', '140');
11553 INSERT INTO list_options (list_id, option_id, codes,title, seq) VALUES ('physician_type','thoracic_physician','SNOMED-CT:309346003','Thoracic physician', '150');
11554 #EndIf
11556 #IfNotRow3D list_options list_id marital option_id married notes M
11557 update list_options set notes = 'M' where list_id = 'marital' and option_id = 'married';
11558 #EndIf
11560 #IfNotRow3D list_options list_id marital option_id single notes S
11561 update list_options set notes = 'S' where list_id = 'marital' and option_id = 'single';
11562 #EndIf
11564 #IfNotRow3D list_options list_id marital option_id divorced notes D
11565 update list_options set notes = 'D' where list_id = 'marital' and option_id = 'divorced';
11566 #EndIf
11568 #IfNotRow3D list_options list_id marital option_id widowed notes W
11569 update list_options set notes = 'W' where list_id = 'marital' and option_id = 'widowed';
11570 #EndIf
11572 #IfNotRow3D list_options list_id marital option_id separated notes L
11573 update list_options set notes = 'L' where list_id = 'marital' and option_id = 'separated';
11574 update list_options set notes = 'T' where list_id = 'marital' and option_id = 'domestic partner';
11575 #EndIf
11577 #IfMissingColumn users physician_type
11578 ALTER TABLE users ADD COLUMN physician_type VARCHAR(50) DEFAULT NULL;
11579 #EndIf
11581 #IfMissingColumn facility facility_code
11582 ALTER TABLE facility ADD COLUMN facility_code VARCHAR(31) default NULL;
11583 #EndIf
11585 #IfMissingColumn documents audit_master_approval_status
11586 ALTER TABLE documents ADD COLUMN audit_master_approval_status TINYINT DEFAULT 1 NOT NULL COMMENT 'approval_status from audit_master table';
11587 #EndIf
11589 #IfMissingColumn documents audit_master_id
11590 ALTER TABLE documents ADD COLUMN  audit_master_id int(11) default NULL;
11591 #EndIf
11593 #IfMissingColumn patient_data religion
11594 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='ethnicity' AND form_id='DEM');
11595 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11596 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11597 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'religion', IFNULL(@group_name,@backup_group_name), 'Religion', @seq+1, 1, 1, 0, 0, 'religious_affiliation', 1, 3, '', '', 'Patient Religion' ) ;
11598 ALTER TABLE patient_data ADD COLUMN religion varchar(40) NOT NULL default '';
11599 #EndIf
11601 #IfNotRow categories name CCDA
11602 INSERT INTO categories (id, name, value, parent, lft, rght) select (select MAX(id) from categories) + 1, 'CCDA', '', 1, rght, rght + 1 from categories where name = 'Categories';
11603 UPDATE categories SET rght = rght + 2 WHERE name = 'Categories';
11604 UPDATE categories_seq SET id = (select MAX(id) from categories);
11605 #Endif
11607 #IfNotRow2D list_options list_id abook_type option_id ccda
11608 INSERT INTO list_options (list_id, option_id, title, seq, option_value) VALUES ('abook_type', 'ccda', 'Care Coordination', 35, 2);
11609 #EndIf
11611 #IfNotRow2D list_options list_id abook_type option_id emr_direct
11612 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'emr_direct', 'EMR Direct' ,105, 4);
11613 #EndIf
11615 #IfNotRow2D list_options list_id abook_type option_id external_provider
11616 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'external_provider', 'External Provider' ,110, 1);
11617 #EndIf
11619 #IfNotRow2D list_options list_id abook_type option_id external_org
11620 INSERT INTO list_options (list_id, option_id, title , seq, option_value) VALUES ('abook_type', 'external_org', 'External Organization' ,120, 1);
11621 #EndIf
11623 #IfMissingColumn immunizations external_id
11624 ALTER TABLE `immunizations` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11625 #EndIf
11627 #IfMissingColumn prescriptions external_id
11628 ALTER TABLE `prescriptions` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11629 #EndIf
11631 #IfMissingColumn lists external_id
11632 ALTER TABLE `lists` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11633 #EndIf
11635 #IfMissingColumn form_vitals external_id
11636 ALTER TABLE `form_vitals` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11637 #EndIf
11639 #IfMissingColumn form_encounter external_id
11640 ALTER TABLE `form_encounter` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11641 #EndIf
11643 #IfMissingColumn billing external_id
11644 ALTER TABLE `billing` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11645 #EndIf
11647 #IfMissingColumn procedure_order external_id
11648 ALTER TABLE `procedure_order` ADD COLUMN `external_id` VARCHAR(20) DEFAULT NULL;
11649 #EndIf
11651 #IfMissingColumn patient_data industry
11652 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='occupation' AND form_id='DEM');
11653 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11654 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11655 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'industry', IFNULL(@group_name,@backup_group_name), 'Industry', @seq+1, 1, 1, 0, 0, 'Industry', 1, 1, '', '', 'Industry' ) ;
11656 ALTER TABLE patient_data ADD COLUMN industry TEXT NOT NULL;
11657 #EndIf
11659 #IfNotRow2D list_options list_id lists option_id Industry
11660 INSERT INTO `list_options` (`list_id`, `option_id`, `title`) VALUES('lists','Industry','Industry');
11661 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'law_firm', 'Law Firm', 10);
11662 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'engineering_firm', 'Engineering Firm', 20);
11663 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Industry', 'construction_firm', 'Construction Firm', 30);
11664 #EndIf
11666 #IfNotListOccupation
11667 #EndIf
11669 #IfNotRow2D list_options list_id Occupation option_id lawyer
11670 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11671 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'lawyer', 'Lawyer', IFNULL(@max_list_id,0) + 10);
11672 #EndIf
11674 #IfNotRow2D list_options list_id Occupation option_id engineer
11675 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11676 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'engineer', 'Engineer', (@max_list_id+10));
11677 #EndIf
11679 #IfNotRow2D list_options list_id Occupation option_id site_worker
11680 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='Occupation');
11681 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('Occupation', 'site_worker', 'Site Worker', (@max_list_id+10));
11682 #EndIf
11684 #IfNotRow3D layout_options field_id occupation form_id DEM data_type 26
11685 UPDATE layout_options SET list_id='Occupation', data_type='26', fld_length='0', max_length='0', edit_options='' WHERE field_id='occupation' AND form_id='DEM';
11686 #EndIf
11688 #IfMissingColumn patient_access_offsite portal_relation
11689 ALTER TABLE patient_access_offsite ADD COLUMN portal_relation VARCHAR(100) NULL;
11690 #EndIf
11692 #IfMissingColumn pnotes portal_relation
11693 ALTER TABLE pnotes ADD COLUMN `portal_relation` VARCHAR(100) NULL;
11694 #EndIf
11696 #IfMissingColumn pnotes is_msg_encrypted
11697 ALTER TABLE pnotes ADD is_msg_encrypted TINYINT(2) DEFAULT '0' COMMENT 'Whether messsage encrypted 0-Not encrypted, 1-Encrypted'; 
11698 #EndIf
11700 #IfMissingColumn log log_from
11701 ALTER TABLE `log` ADD `log_from` VARCHAR(20) DEFAULT 'open-emr'; 
11702 #EndIf
11704 #IfMissingColumn log menu_item_id
11705 ALTER TABLE `log` ADD `menu_item_id` INT(11) DEFAULT NULL;
11706 #EndIf
11708 #IfNotTable patient_portal_menu
11709 CREATE TABLE `patient_portal_menu` (
11710   `patient_portal_menu_id` INT(11) NOT NULL AUTO_INCREMENT,
11711   `patient_portal_menu_group_id` INT(11) DEFAULT NULL,
11712   `menu_name` VARCHAR(40) DEFAULT NULL,
11713   `menu_order` SMALLINT(4) DEFAULT NULL,
11714   `menu_status` TINYINT(2) DEFAULT '1',
11715   PRIMARY KEY (`patient_portal_menu_id`)
11716 ) ENGINE=INNODB AUTO_INCREMENT=14;
11718 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (1,1,'Dashboard',3,1);
11719 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (2,1,'My Profile',6,1);
11720 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (3,1,'Appointments',9,1);
11721 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (4,1,'Documents',12,1);
11722 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (5,1,'Med Records',15,1);
11723 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (6,1,'My Account',18,1);
11724 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (7,1,'Mailbox',21,1);
11725 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (8,1,'Password',24,1);
11726 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (9,1,'View Log',27,1);
11727 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (10,1,'Logout',30,1);
11728 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (11,1,'View Health Information',33,1);
11729 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (12,1,'Download Health Information',36,1);
11730 INSERT  INTO `patient_portal_menu`(`patient_portal_menu_id`,`patient_portal_menu_group_id`,`menu_name`,`menu_order`,`menu_status`) VALUES (13,1,'Transmit Health Information',39,1);
11732 #Endif
11734 #IfMissingColumn log ccda_doc_id
11735 ALTER TABLE `log` ADD `ccda_doc_id` INT(11) DEFAULT NULL COMMENT 'CCDA document id from ccda';
11736 #Endif
11738 #IfNotListReaction
11739 #EndIf
11741 #IfNotRow2D list_options list_id reaction option_id unassigned
11742 INSERT INTO list_options ( list_id, option_id, title, seq ) VALUES ('reaction', 'unassigned', 'Unassigned', 0);
11743 #EndIf
11745 #IfNotRow2D list_options list_id reaction option_id hives
11746 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='reaction');
11747 INSERT INTO list_options ( list_id, option_id, title, seq, codes ) VALUES ('reaction', 'hives', 'Hives', (@max_list_id+10), 'SNOMED-CT:247472004');
11748 #EndIf
11750 #IfNotRow2D list_options list_id reaction option_id nausea
11751 SET @max_list_id = (SELECT MAX(seq) FROM list_options WHERE list_id='reaction');
11752 INSERT INTO list_options ( list_id, option_id, title, seq, codes ) VALUES ('reaction', 'nausea', 'Nausea', (@max_list_id+10), 'SNOMED-CT:422587007');
11753 #EndIf
11755 #IfNotRow2D list_options list_id lists option_id county
11756 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','county','County');
11757 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','adair','ADAIR','001', '10');
11758 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','andrew','ANDREW','003', '20');
11759 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','atchison','ATCHISON','005', '30');
11760 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','audrain','AUDRAIN','007', '40');
11761 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('county','barry','BARRY','009', '50');
11762 #EndIf
11764 #IfMissingColumn patient_data county
11765 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='country_code' AND form_id='DEM');
11766 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11767 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11768 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'county', IFNULL(@group_name,@backup_group_name), 'County', @seq+1, 26, 1, 0, 0, 'county', 1, 1, '', '', 'County' ) ;
11769 ALTER TABLE `patient_data` ADD COLUMN `county` varchar(40) NOT NULL default '';
11770 #EndIf 
11772 #IfNotListImmunizationManufacturer
11773 #EndIf
11775 #IfNotRow2D list_options list_id lists option_id Immunization_Manufacturer
11776 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','Immunization_Manufacturer','Immunization Manufacturer');
11777 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AB','Abbott Laboratories','AB','10');
11778 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ACA','Acambis, Inc','ACA','20');
11779 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AD','Adams Laboratories, Inc.','AD','30');
11780 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AKR','Akorn, Inc','AKR','40');
11781 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ALP','Alpha Therapeutic Corporation','ALP','50');
11782 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AR','Armour','AR','60');
11783 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AVB','Aventis Behring L.L.C.','AVB','70');
11784 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','AVI','Aviron','AVI','80');
11785 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BRR','Barr Laboratories','BRR','90');
11786 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BAH','Baxter Healthcare Corporation','BAH','100');
11787 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BA','Baxter Healthcare Corporation-inactive','BA','110');
11788 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BAY','Bayer Corporation','BAY','120');
11789 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BP','Berna Products','BP','130');
11790 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BPC','Berna Products Corporation','BPC','140');
11791 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','BTP','Biotest Pharmaceuticals Corporation','BTP','150');
11792 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CNJ','Cangene Corporation','CNJ','160');
11793 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CMP','Celltech Medeva Pharmaceuticals','CMP','170');
11794 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CEN','Centeon L.L.C.','CEN','180');
11795 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CHI','Chiron Corporation','CHI','190');
11796 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CON','Connaught','CON','200');
11797 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CRU','Crucell','CRU','210');
11798 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','CSL','CSL Behring, Inc','CSL','220');
11799 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','DVC','DynPort Vaccine Company, LLC','DVC','230');
11800 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MIP','Emergent BioDefense Operations Lansing','MIP','240');
11801 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','EVN','Evans Medical Limited','EVN','250');
11802 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GEO','GeoVax Labs, Inc.','GEO','260');
11803 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SKB','GlaxoSmithKline','SKB','270');
11804 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GRE','Greer Laboratories, Inc.','GRE','280');
11805 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','GRF','Grifols','GRF','290');
11806 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IDB','ID Biomedical','IDB','300');
11807 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IAG','Immuno International AG','IAG','310');
11808 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IUS','Immuno-U.S., Inc.','IUS','320');
11809 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','INT','Intercell Biomedical','INT','330');
11810 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','JNJ','Johnson and Johnson','JNJ','340');
11811 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','KGC','Korea Green Cross Corporation','KGC','350');
11812 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','LED','Lederle','LED','360');
11813 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MBL','Massachusetts Biologic Laboratories','MBL','370');
11814 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MA','Massachusetts Public Health Biologic Laboratories','MA','380');
11815 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MED','MedImmune, Inc.','MED','390');
11816 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MSD','Merck and Co., Inc.','MSD','400');
11817 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','IM','Merieux','IM','410');
11818 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','MIL','Miles','MIL','420');
11819 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NAB','NABI','NAB','430');
11820 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NYB','New York Blood Center','NYB','440');
11821 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NAV','North American Vaccine, Inc.','NAV','450');
11822 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NOV','Novartis Pharmaceutical Corporation','NOV','460');
11823 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','NVX','Novavax, Inc.','NVX','470');
11824 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','OTC','Organon Teknika Corporation','OTC','480');
11825 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ORT','Ortho-clinical Diagnostics','ORT','490');
11826 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','OTH','Other manufacturer','OTH','500');
11827 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PD','Parkedale Pharmaceuticals','PD','510');
11828 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PFR','Pfizer, Inc','PFR','520');
11829 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PWJ','PowderJect Pharmaceuticals','PWJ','530');
11830 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PRX','Praxis Biologics','PRX','540');
11831 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PSC','Protein Sciences','PSC','550');
11832 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','PMC','sanofi pasteur','PMC','560');
11833 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SCL','Sclavo, Inc.','SCL','570');
11834 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SOL','Solvay Pharmaceuticals','SOL','580');
11835 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','SI','Swiss Serum and Vaccine Inst.','SI','590');
11836 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','TAL','Talecris Biotherapeutics','TAL','600');
11837 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','JPN','The Research Foundation for Microbial Diseases of Osaka University (BIKEN)','JPN','610');
11838 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','USA','United States Army Medical Research and Material Command','USA','620');
11839 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','UNK','Unknown manufacturer','UNK','630');
11840 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','VXG','VaxGen','VXG','640');
11841 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','WAL','Wyeth','WAL','650');
11842 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','WA','Wyeth-Ayerst','WA','660');
11843 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Manufacturer','ZLB','ZLB Behring','ZLB','670');
11844 #EndIf
11846 #IfNotRow2D list_options list_id lists option_id Immunization_Completion_Status
11847 INSERT INTO list_options (list_id, option_id, title) VALUES ('lists','Immunization_Completion_Status','Immunization Completion Status');
11848 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Completed','completed','CP', '10');
11849 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Refused','Refused','RE', '20');
11850 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Not_Administered','Not Administered','NA', '30');
11851 INSERT INTO list_options (list_id, option_id, title, notes, seq) VALUES ('Immunization_Completion_Status','Partially_Administered','Partially Administered','PA', '40');
11852 #EndIf
11854 #IfMissingColumn immunizations completion_status
11855 ALTER TABLE immunizations ADD COLUMN `completion_status` VARCHAR(50) DEFAULT NULL;
11856 #EndIf
11858 #IfMissingColumn prescriptions indication
11859 ALTER TABLE prescriptions ADD COLUMN `indication` text;
11860 #EndIf
11862 #IfMissingColumn prescriptions end_date
11863 ALTER TABLE prescriptions ADD COLUMN `end_date` date default NULL;
11864 #EndIf
11866 #IfNotTable external_procedures
11867 CREATE TABLE `external_procedures` (
11868   `ep_id` int(11) NOT NULL AUTO_INCREMENT,
11869   `ep_date` date DEFAULT NULL,
11870   `ep_code_type` varchar(20) DEFAULT NULL,
11871   `ep_code` varchar(9) DEFAULT NULL,
11872   `ep_pid` int(11) DEFAULT NULL,
11873   `ep_encounter` int(11) DEFAULT NULL,
11874   `ep_code_text` longtext,
11875   `ep_facility_id` varchar(255) DEFAULT NULL,
11876   `ep_external_id` varchar(255) DEFAULT NULL,
11877   PRIMARY KEY (`ep_id`)
11878 ) ENGINE=InnoDB;
11879 #EndIf
11881 #IfNotTable external_encounters
11882 CREATE TABLE `external_encounters` (
11883   `ee_id` int(11) NOT NULL AUTO_INCREMENT,
11884   `ee_date` date DEFAULT NULL,
11885   `ee_pid` int(11) DEFAULT NULL,
11886   `ee_provider_id` varchar(255) DEFAULT NULL,
11887   `ee_facility_id` varchar(255) DEFAULT NULL,
11888   `ee_encounter_diagnosis` varchar(255) DEFAULT NULL,
11889   `ee_external_id` varchar(255) DEFAULT NULL,
11890   PRIMARY KEY (`ee_id`)
11891 ) ENGINE=InnoDB;
11892 #EndIf
11894 #IfMissingColumn prescriptions prn
11895 ALTER TABLE prescriptions ADD COLUMN `prn` VARCHAR(30) DEFAULT NULL;
11896 #EndIf
11898 #IfMissingColumn patient_data care_team
11899 SET @group_name = (SELECT group_name FROM layout_options WHERE field_id='ref_providerID' AND form_id='DEM');
11900 SET @backup_group_name = (SELECT group_name FROM layout_options WHERE field_id='DOB' AND form_id='DEM');
11901 SET @seq = (SELECT MAX(seq) FROM layout_options WHERE group_name = IFNULL(@group_name,@backup_group_name) AND form_id='DEM');
11902 INSERT INTO `layout_options` (`form_id`, `field_id`, `group_name`, `title`, `seq`, `data_type`, `uor`, `fld_length`, `max_length`, `list_id`, `titlecols`, `datacols`, `default_value`, `edit_options`, `description`) VALUES ('DEM', 'care_team', IFNULL(@group_name,@backup_group_name), 'Care Team', @seq+1, 11, 1, 0, 0, '', 1, 1, '', '', '' ) ;
11903 alter table patient_data add column care_team int(11) DEFAULT NULL;
11904 #EndIf
11906 #IfNotTable form_observation
11907 CREATE TABLE `form_observation` (
11908   `id` bigint(20) NOT NULL,
11909   `date` DATE DEFAULT NULL,
11910   `pid` bigint(20) DEFAULT NULL,
11911   `encounter` varchar(255) DEFAULT NULL,
11912   `user` varchar(255) DEFAULT NULL,
11913   `groupname` varchar(255) DEFAULT NULL,
11914   `authorized` tinyint(4) DEFAULT NULL,
11915   `activity` tinyint(4) DEFAULT NULL,
11916   `code` varchar(255) DEFAULT NULL,
11917   `observation` varchar(255) DEFAULT NULL,
11918   `ob_value` varchar(255),
11919   `ob_unit` varchar(255),
11920   `description` varchar(255),
11921   `code_type` varchar(255),
11922   `table_code` varchar(255)
11923 ) ENGINE=InnoDB;
11924 SET @seq = (SELECT MAX(id) FROM registry);
11925 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Observation', 1, 'observation', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11926 #EndIf
11928 #IfNotTable form_care_plan
11929 CREATE TABLE `form_care_plan` (
11930   `id` bigint(20) NOT NULL,
11931   `date` DATE DEFAULT NULL,
11932   `pid` bigint(20) DEFAULT NULL,
11933   `encounter` varchar(255) DEFAULT NULL,
11934   `user` varchar(255) DEFAULT NULL,
11935   `groupname` varchar(255) DEFAULT NULL,
11936   `authorized` tinyint(4) DEFAULT NULL,
11937   `activity` tinyint(4) DEFAULT NULL,
11938   `code` varchar(255) DEFAULT NULL,
11939   `codetext` text,
11940   `description` text,
11941   `external_id` VARCHAR(30) DEFAULT NULL
11942 ) ENGINE=InnoDB;
11943 SET @seq = (SELECT MAX(id) FROM registry);
11944 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Care Plan', 1, 'care_plan', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11945 #EndIf
11947 #IfNotTable form_functional_cognitive_status
11948 CREATE TABLE `form_functional_cognitive_status` (
11949   `id` bigint(20) NOT NULL,
11950   `date` DATE DEFAULT NULL,
11951   `pid` bigint(20) DEFAULT NULL,
11952   `encounter` varchar(255) DEFAULT NULL,
11953   `user` varchar(255) DEFAULT NULL,
11954   `groupname` varchar(255) DEFAULT NULL,
11955   `authorized` tinyint(4) DEFAULT NULL,
11956   `activity` tinyint(4) DEFAULT NULL,
11957   `code` varchar(255) DEFAULT NULL,
11958   `codetext` text,
11959   `description` text,
11960   `external_id` VARCHAR(30) DEFAULT NULL
11961 ) ENGINE=InnoDB;
11962 SET @seq = (SELECT MAX(id) FROM registry);
11963 INSERT INTO `registry` (`name`,`state`,`directory`,`id`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Functional and Cognitive Status', 1, 'functional_cognitive_status', @seq+1, 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
11964 #EndIf
11966 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_htn_bp_measure_cqm' AND `pid` = 0;
11967 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_adult_wt_screen_fu_cqm' AND `pid` = 0;
11968 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_wt_assess_couns_child_cqm' AND `pid` = 0;
11969 UPDATE `clinical_rules` SET `cqm_2014_flag` = 1 WHERE `id` = 'rule_pneumovacc_ge_65_cqm' AND `pid` = 0;
11971 #IfMissingColumn clinical_rules amc_2014_stage1_flag
11972         ALTER TABLE `clinical_rules` ADD COLUMN `amc_2014_stage1_flag` tinyint(1) COMMENT '2014 Stage 1 - Automated Measure Calculation flag for (unable to customize per patient)';
11974         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–4' WHERE `clinical_rules`.`id` = 'problem_list_amc' AND `clinical_rules`.`pid` =0;
11975         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–5' WHERE `clinical_rules`.`id` = 'med_list_amc' AND `clinical_rules`.`pid` =0;
11976         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–6' WHERE `clinical_rules`.`id` = 'med_allergy_list_amc' AND `clinical_rules`.`pid` =0;
11977         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–7' WHERE `clinical_rules`.`id` = 'cpoe_med_amc' AND `clinical_rules`.`pid` =0;
11978         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–9' WHERE `clinical_rules`.`id` = 'record_dem_amc' AND `clinical_rules`.`pid` =0;
11979         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–11' WHERE `clinical_rules`.`id` = 'record_smoke_amc' AND `clinical_rules`.`pid` =0;
11980         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–12' WHERE `clinical_rules`.`id` = 'lab_result_amc' AND `clinical_rules`.`pid` =0;
11981         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–13' WHERE `clinical_rules`.`id` = 'send_reminder_amc' AND `clinical_rules`.`pid` =0;
11982         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–15' WHERE `clinical_rules`.`id` = 'provide_sum_pat_amc' AND `clinical_rules`.`pid` =0;
11983         UPDATE `clinical_rules` SET `amc_2014_stage1_flag` = '1', `amc_code_2014` = '170.314(g)(1)/(2)–16' WHERE `clinical_rules`.`id` = 'patient_edu_amc' AND `clinical_rules`.`pid` =0;
11984 #EndIf
11986 #IfMissingColumn clinical_rules amc_2014_stage2_flag
11987         ALTER TABLE `clinical_rules` ADD COLUMN `amc_2014_stage2_flag` tinyint(1) COMMENT '2014 Stage 2 - Automated Measure Calculation flag for (unable to customize per patient)';
11989         UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'record_smoke_amc' AND `clinical_rules`.`pid` =0;
11990         UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'lab_result_amc' AND `clinical_rules`.`pid` =0;
11991         UPDATE `clinical_rules` SET `amc_2014_stage2_flag` = '1' WHERE `clinical_rules`.`id` = 'record_dem_amc' AND `clinical_rules`.`pid` =0;
11992 #EndIf
11994 #IfNotRow clinical_rules id rule_children_pharyngitis_cqm
11995 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_children_pharyngitis_cqm', 0, 0, 0, 1, '0002', '', 0, '', 0, 0, 0, '', 1, 1);
11996 #EndIf
11998 #IfNotRow2D list_options list_id clinical_rules option_id rule_children_pharyngitis_cqm
11999 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_children_pharyngitis_cqm', 'Appropriate Testing for Children with Pharyngitis (CQM)', 502, 0, 0, '', '', '', 0, 0);
12000 #EndIf
12002 #IfNotRow clinical_rules id rule_fall_screening_cqm
12003 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_fall_screening_cqm', 0, 0, 0, 1, '0101', '', 0, '', 0, 0, 0, '', 1, 1);
12004 #EndIf
12006 #IfNotRow2D list_options list_id clinical_rules option_id rule_fall_screening_cqm
12007 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_fall_screening_cqm', 'Falls: Screening, Risk-Assessment, and Plan of Care to Prevent Future Falls (CQM)', 504, 0, 0, '', '', '', 0, 0);
12008 #EndIf
12010 #IfNotRow clinical_rules id rule_pain_intensity_cqm
12011 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`) VALUES ('rule_pain_intensity_cqm', 0, 0, 0, 1, '0384', '', 0, '', 0, 0, 0, '', 1, 1);
12012 #EndIf
12014 #IfNotRow2D list_options list_id clinical_rules option_id rule_pain_intensity_cqm
12015 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_pain_intensity_cqm', 'Oncology: Medical and Radiation â€“ Pain Intensity Quantified (CQM)', 506, 0, 0, '', '', '', 0, 0);
12016 #EndIf
12018 #IfNotRow clinical_rules id rule_child_immun_stat_2014_cqm
12019 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('rule_child_immun_stat_2014_cqm', 0, 0, 0, 1, '0038', '', 0, '', 0, 0, 0, '', 0, 1, 0, 0);
12020 #EndIf
12022 #IfNotRow2D list_options list_id clinical_rules option_id rule_child_immun_stat_2014_cqm
12023 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_child_immun_stat_2014_cqm', 'Childhood immunization Status (CQM)', 250, 0, 0, '', '', '', 0, 0);
12024 #EndIf
12026 #IfNotRow clinical_rules id rule_tob_use_2014_cqm
12027 INSERT INTO `clinical_rules` (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES ('rule_tob_use_2014_cqm', 0, 0, 0, 1, '0028', '', 0, '', 0, 0, 0, '', 0, 1, 0, 0);
12028 #EndIf
12030 #IfNotRow2D list_options list_id clinical_rules option_id rule_tob_use_2014_cqm
12031 INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES ('clinical_rules', 'rule_tob_use_2014_cqm', 'Preventive Care and Screening: Tobacco Use: Screening and Cessation Intervention (CQM)', 210, 0, 0, '', '', '', 0, 0);
12032 #EndIf
12034 #IfNotRow clinical_rules id image_results_amc
12035         INSERT INTO `clinical_rules` 
12036         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12037         ('image_results_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–20', 0, 0, 0, 1);
12038 #EndIf
12040 #IfNotRow2D list_options list_id clinical_rules option_id image_results_amc
12041         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12042         ('clinical_rules', 'image_results_amc', 'Image Results', 3000, 0, 0, '', '', '', 0, 0);
12043 #EndIf
12045 #IfNotRow clinical_rules id family_health_history_amc
12046         INSERT INTO `clinical_rules` 
12047         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12048         ('family_health_history_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–21', 0, 0, 0, 1);
12049 #EndIf
12051 #IfNotRow2D list_options list_id clinical_rules option_id family_health_history_amc
12052         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12053         ('clinical_rules', 'family_health_history_amc', 'Family Health History', 3100, 0, 0, '', '', '', 0, 0);
12054 #EndIf
12056 #IfNotRow clinical_rules id electronic_notes_amc
12057         INSERT INTO `clinical_rules` 
12058         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12059         ('electronic_notes_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–22', 0, 0, 0, 1);
12060 #EndIf
12062 #IfNotRow2D list_options list_id clinical_rules option_id electronic_notes_amc
12063         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12064         ('clinical_rules', 'electronic_notes_amc', 'Electronic Notes', 3200, 0, 0, '', '', '', 0, 0);
12065 #EndIf
12067 #IfNotRow clinical_rules id secure_messaging_amc
12068         INSERT INTO `clinical_rules` 
12069         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12070         ('secure_messaging_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)', 0, 0, 0, 1);
12071 #EndIf
12073 #IfNotRow2D list_options list_id clinical_rules option_id secure_messaging_amc
12074         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12075         ('clinical_rules', 'secure_messaging_amc', 'Secure Electronic Messaging', 3400, 0, 0, '', '', '', 0, 0);
12076 #EndIf
12078 #IfNotRow clinical_rules id view_download_transmit_amc
12079         INSERT INTO `clinical_rules` 
12080         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12081         ('view_download_transmit_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–14', 0, 0, 1, 1);
12082 #EndIf
12084 #IfNotRow2D list_options list_id clinical_rules option_id view_download_transmit_amc
12085         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12086         ('clinical_rules', 'view_download_transmit_amc', 'View, Download, Transmit (VDT)  (Measure B)', 3500, 0, 0, '', '', '', 0, 0);
12087 #EndIf
12089 #IfNotRow clinical_rules id cpoe_radiology_amc
12090         INSERT INTO `clinical_rules` 
12091         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12092         ('cpoe_radiology_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 0, 1);
12093 #EndIf
12095 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_radiology_amc
12096         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12097         ('clinical_rules', 'cpoe_radiology_amc', 'Use CPOE for radiology orders.', 46, 0, 0, '', '', '', 0, 0);
12098 #EndIf
12100 #IfNotRow clinical_rules id cpoe_proc_orders_amc
12101         INSERT INTO `clinical_rules` 
12102         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12103         ('cpoe_proc_orders_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 0, 1);
12104 #EndIf
12106 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_proc_orders_amc
12107         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12108         ('clinical_rules', 'cpoe_proc_orders_amc', 'Use CPOE for procedure orders.', 47, 0, 0, '', '', '', 0, 0);
12109 #EndIf
12111 #IfNotRow clinical_rules id send_reminder_stage2_amc
12112         INSERT INTO `clinical_rules` 
12113         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12114         ('send_reminder_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(d)', 0, 0, 1, '170.314(g)(1)/(2)–13', 0, 0, 0, 1);
12115 #EndIf
12117 #IfNotRow2D list_options list_id clinical_rules option_id send_reminder_stage2_amc
12118         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12119         ('clinical_rules', 'send_reminder_stage2_amc', 'Send reminders to patients per patient preference for preventive/follow up care.', 60, 0, 0, '', '', '', 0, 0);
12120 #EndIf
12122 #IfNotRow clinical_rules id cpoe_med_stage2_amc
12123         INSERT INTO `clinical_rules` 
12124         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12125         ('cpoe_med_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(a)', 0, 0, 1, '170.314(g)(1)/(2)–7', 0, 0, 1, 1);
12126 #EndIf
12128 #IfNotRow2D list_options list_id clinical_rules option_id cpoe_med_stage2_amc
12129         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12130         ('clinical_rules', 'cpoe_med_stage2_amc', 'Use CPOE for medication orders.(Alternative)', 47, 0, 0, '', '', '', 0, 0);
12131 #EndIf
12133 #IfNotRow clinical_rules id patient_edu_stage2_amc
12134         INSERT INTO `clinical_rules` 
12135         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12136         ('patient_edu_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.302(m)', 0, 0, 1, '170.314(g)(1)/(2)–16', 0, 0, 0, 1);
12137 #EndIf
12139 #IfNotRow2D list_options list_id clinical_rules option_id patient_edu_stage2_amc
12140         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12141         ('clinical_rules', 'patient_edu_stage2_amc', 'Use certified EHR technology to identify patient-specific education resources and provide those resources to the patient if appropriate(New).', 40, 0, 0, '', '', '', 0, 0);
12142 #EndIf
12144 #IfNotRow clinical_rules id record_vitals_1_stage1_amc
12145         INSERT INTO `clinical_rules` 
12146         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12147         ('record_vitals_1_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 0, 0);
12148 #EndIf
12150 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_1_stage1_amc
12151         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12152         ('clinical_rules', 'record_vitals_1_stage1_amc', 'Record and chart changes in vital signs (SET 1).', 20, 0, 0, '', '', '', 0, 0);
12153 #EndIf
12155 #IfNotRow clinical_rules id record_vitals_2_stage1_amc
12156         INSERT INTO `clinical_rules` 
12157         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12158         ('record_vitals_2_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12159 #EndIf
12161 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_2_stage1_amc
12162         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12163         ('clinical_rules', 'record_vitals_2_stage1_amc', 'Record and chart changes in vital signs (BP out of scope).', 20, 0, 0, '', '', '', 0, 0);
12164 #EndIf
12166 #IfNotRow clinical_rules id record_vitals_3_stage1_amc
12167         INSERT INTO `clinical_rules` 
12168         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12169         ('record_vitals_3_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12170 #EndIf
12172 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_3_stage1_amc
12173         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12174         ('clinical_rules', 'record_vitals_3_stage1_amc', 'Record and chart changes in vital signs (Height / Weight out of scope).', 20, 0, 0, '', '', '', 0, 0);
12175 #EndIf
12177 #IfNotRow clinical_rules id record_vitals_4_stage1_amc
12178         INSERT INTO `clinical_rules` 
12179         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12180         ('record_vitals_4_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 1, 1);
12181 #EndIf
12183 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_4_stage1_amc
12184         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12185         ('clinical_rules', 'record_vitals_4_stage1_amc', 'Record and chart changes in vital signs ( Height / Weight / BP with in scope ).', 20, 0, 0, '', '', '', 0, 0);
12186 #EndIf
12188 #IfNotRow clinical_rules id record_vitals_stage2_amc
12189         INSERT INTO `clinical_rules` 
12190         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12191         ('record_vitals_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.302(f)', 0, 0, 1, '170.314(g)(1)/(2)–10', 0, 0, 0, 0);
12192 #EndIf
12194 #IfNotRow2D list_options list_id clinical_rules option_id record_vitals_stage2_amc
12195         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12196         ('clinical_rules', 'record_vitals_stage2_amc', 'Record and chart changes in vital signs (New).', 20, 0, 0, '', '', '', 0, 0);
12197 #EndIf
12199 #IfNotRow clinical_rules id provide_sum_pat_stage2_amc
12200         INSERT INTO `clinical_rules` 
12201         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12202         ('provide_sum_pat_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(h)', 0, 0, 1, '170.314(g)(1)/(2)–15', 0, 0, 0, 1);
12203 #EndIf
12205 #IfNotRow2D list_options list_id clinical_rules option_id provide_sum_pat_stage2_amc
12206         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12207         ('clinical_rules', 'provide_sum_pat_stage2_amc', 'Provide clinical summaries for patients for each office visit (New).', 75, 0, 0, '', '', '', 0, 0);
12208 #EndIf
12210 #IfNotRow clinical_rules id vdt_stage2_amc
12211         INSERT INTO `clinical_rules` 
12212         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12213         ('vdt_stage2_amc', 0, 0, 0, 0, '', '', 1, '', 0, 0, 1, '170.314(g)(1)/(2)–14', 0, 0, 1, 1);
12214 #EndIf
12216 #IfNotRow2D list_options list_id clinical_rules option_id vdt_stage2_amc
12217         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12218         ('clinical_rules', 'vdt_stage2_amc', 'View, Download, Transmit (VDT) (Measure A)', 3500, 0, 0, '', '', '', 0, 0);
12219 #EndIf
12221 #IfNotRow clinical_rules id send_sum_stage1_amc
12222         INSERT INTO `clinical_rules` 
12223         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12224         ('send_sum_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 1, 0);
12225 #EndIf
12227 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_stage1_amc
12228         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12229         ('clinical_rules', 'send_sum_stage1_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral.', 80, 0, 0, '', '', '', 0, 0);
12230 #EndIf
12232 #IfNotRow clinical_rules id send_sum_1_stage2_amc
12233         INSERT INTO `clinical_rules` 
12234         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12235         ('send_sum_1_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 0, 1);
12236 #EndIf
12238 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_1_stage2_amc
12239         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12240         ('clinical_rules', 'send_sum_1_stage2_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral (Measure A).', 80, 0, 0, '', '', '', 0, 0);
12241 #EndIf
12243 #IfNotRow clinical_rules id send_sum_stage2_amc
12244         INSERT INTO `clinical_rules` 
12245         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12246         ('send_sum_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(i)', 0, 0, 1, '170.314(g)(1)/(2)–18', 0, 0, 0, 1);
12247 #EndIf
12249 #IfNotRow2D list_options list_id clinical_rules option_id send_sum_stage2_amc
12250         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12251         ('clinical_rules', 'send_sum_stage2_amc', 'The EP, eligible hospital or CAH who transitions their patient to another setting of care or provider of care or refers their patient to another provider of care should provide summary of care record for each transition of care or referral (Measure B).', 80, 0, 0, '', '', '', 0, 0);
12252 #EndIf
12254 #IfNotRow clinical_rules id e_prescribe_stage1_amc
12255         INSERT INTO `clinical_rules` 
12256         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12257         ('e_prescribe_stage1_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 1, 0);
12258 #EndIf
12260 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_stage1_amc
12261         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12262         ('clinical_rules', 'e_prescribe_stage1_amc', 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).', 50, 0, 0, '', '', '', 0, 0);
12263 #EndIf
12265 #IfNotRow clinical_rules id e_prescribe_1_stage2_amc
12266         INSERT INTO `clinical_rules` 
12267         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12268         ('e_prescribe_1_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 0, 1);
12269 #EndIf
12271 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_1_stage2_amc
12272         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12273         ('clinical_rules', 'e_prescribe_1_stage2_amc', 'Generate and transmit permissible prescriptions electronically (All Prescriptions).', 50, 0, 0, '', '', '', 0, 0);
12274 #EndIf
12276 #IfNotRow clinical_rules id e_prescribe_2_stage2_amc
12277         INSERT INTO `clinical_rules` 
12278         (`id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `amc_2011_flag`, `amc_2014_flag`, `amc_code_2014`, `cqm_2011_flag`, `cqm_2014_flag`, `amc_2014_stage1_flag`, `amc_2014_stage2_flag`) VALUES
12279         ('e_prescribe_2_stage2_amc', 0, 0, 0, 0, '', '', 1, '170.304(b)', 0, 0, 1, '170.314(g)(1)/(2)–8', 0, 0, 0, 1);
12280 #EndIf
12282 #IfNotRow2D list_options list_id clinical_rules option_id e_prescribe_2_stage2_amc
12283         INSERT INTO `list_options` (`list_id`, `option_id`, `title`, `seq`, `is_default`, `option_value`, `mapping`, `notes`, `codes`, `toggle_setting_1`, `toggle_setting_2`) VALUES
12284         ('clinical_rules', 'e_prescribe_2_stage2_amc', 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).', 50, 0, 0, '', '', '', 0, 0);
12285 #EndIf
12287 #IfMissingColumn users cpoe
12288         ALTER TABLE `users` ADD `cpoe` tinyint(1) NULL DEFAULT NULL;
12289 #EndIf
12291 #IfMissingColumn procedure_order_code procedure_order_title
12292         ALTER TABLE  `procedure_order_code` ADD  `procedure_order_title` varchar( 255 ) NULL DEFAULT NULL;
12293 #EndIf
12295 #IfMissingColumn procedure_providers lab_director
12296         ALTER TABLE `procedure_providers` ADD `lab_director` bigint(20) NOT NULL DEFAULT '0';
12297 #EndIf
12299 #IfNotRow2D list_options list_id lists option_id order_type
12300         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('lists','order_type','Order Types', 1,0);
12301         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','procedure','Procedure',10,0);
12302         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','intervention','Intervention',20,0);
12303         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','laboratory_test','Laboratory Test',30,0);
12304         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','physical_exam','Physical Exam',40,0);
12305         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','risk_category','Risk Category Assessment',50,0);
12306         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','patient_characteristics','Patient Characteristics',60,0);
12307         INSERT INTO list_options ( list_id, option_id, title, seq, is_default ) VALUES ('order_type','imaging','Imaging',70,0);
12308 #EndIf
12310 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-PCS-Long-Abbrev-Titles.zip
12311 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-PCS-Long-Abbrev-Titles.zip', 'd5ea519d0257db0ed7deb0406a4d0503');
12312 #EndIf
12314 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-General-Equivalence-Mappings.zip
12315 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-General-Equivalence-Mappings.zip', '3324a45b6040be7e48ab770a0d3ca695');
12316 #EndIf
12318 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-Code-Descriptions-in-Tabular-Order.zip
12319 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-Code-Descriptions-in-Tabular-Order.zip', '518a47fe9e268e4fb72fecf633d15f17');
12320 #EndIf
12322 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename 2016-ProcedureGEMs.zip
12323 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', '2016-ProcedureGEMs.zip', '45a8d9da18d8aed57f0c6ea91e3e8fe4');
12324 #EndIf
12326 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename Reimbursement_Mapping_dx_2016.zip
12327 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', 'Reimbursement_Mapping_dx_2016.zip', '1b53b512e10c1fdf7ae4cfd1baa8dfbb');
12328 #EndIf
12330 #IfNotRow4D supported_external_dataloads load_type ICD10 load_source CMS load_release_date 2015-10-01 load_filename Reimbursement_Mapping_pr_2016.zip
12331 INSERT INTO `supported_external_dataloads` (`load_type`, `load_source`, `load_release_date`, `load_filename`, `load_checksum`) VALUES ('ICD10', 'CMS', '2015-10-01', 'Reimbursement_Mapping_pr_2016.zip', '3c780dd103d116aa57980decfddd4f19');
12332 #EndIf
12334 #IfNotRow2D list_options list_id transactions option_id LBTref
12335 UPDATE list_options SET title = 'Layout-Based Transaction Forms', seq = 9 WHERE list_id = 'lists' AND option_id = 'transactions';
12336 UPDATE list_options SET option_id = 'LBTref'   WHERE list_id = 'transactions' AND option_id = 'Referral';
12337 UPDATE list_options SET option_id = 'LBTptreq' WHERE list_id = 'transactions' AND option_id = 'Patient Request';
12338 UPDATE list_options SET option_id = 'LBTphreq' WHERE list_id = 'transactions' AND option_id = 'Physician Request';
12339 UPDATE list_options SET option_id = 'LBTlegal' WHERE list_id = 'transactions' AND option_id = 'Legal';
12340 UPDATE list_options SET option_id = 'LBTbill'  WHERE list_id = 'transactions' AND option_id = 'Billing';
12341 UPDATE transactions SET title     = 'LBTref'   WHERE title = 'Referral';
12342 UPDATE transactions SET title     = 'LBTptreq' WHERE title = 'Patient Request';
12343 UPDATE transactions SET title     = 'LBTphreq' WHERE title = 'Physician Request';
12344 UPDATE transactions SET title     = 'LBTlegal' WHERE title = 'Legal';
12345 UPDATE transactions SET title     = 'LBTbill'  WHERE title = 'Billing';
12346 UPDATE layout_options SET form_id = 'LBTref'   WHERE form_id = 'REF';
12348 INSERT INTO `layout_options` (`form_id`,`field_id`,`group_name`,`title`,`seq`,`data_type`,`uor`,`fld_length`,
12349   `max_length`,`list_id`,`titlecols`,`datacols`,`default_value`,`edit_options`,`description`,`fld_rows`)
12350   VALUES ('LBTptreq','body','1','Details',10,3,2,30,0,'',1,3,'','','Content',5);
12352 INSERT INTO `layout_options` (`form_id`,`field_id`,`group_name`,`title`,`seq`,`data_type`,`uor`,`fld_length`,
12353   `max_length`,`list_id`,`titlecols`,`datacols`,`default_value`,`edit_options`,`description`,`fld_rows`)
12354   VALUES ('LBTphreq','body','1','Details',10,3,2,30,0,'',1,3,'','','Content',5);
12356 INSERT INTO `layout_options` (`form_id`,`field_id`,`group_name`,`title`,`seq`,`data_type`,`uor`,`fld_length`,
12357   `max_length`,`list_id`,`titlecols`,`datacols`,`default_value`,`edit_options`,`description`,`fld_rows`)
12358   VALUES ('LBTlegal','body','1','Details',10,3,2,30,0,'',1,3,'','','Content',5);
12360 INSERT INTO `layout_options` (`form_id`,`field_id`,`group_name`,`title`,`seq`,`data_type`,`uor`,`fld_length`,
12361   `max_length`,`list_id`,`titlecols`,`datacols`,`default_value`,`edit_options`,`description`,`fld_rows`)
12362   VALUES ('LBTbill' ,'body','1','Details',10,3,2,30,0,'',1,3,'','','Content',5);
12363 #EndIf
12365 #IfNotTable lbt_data
12366 CREATE TABLE `lbt_data` (
12367   `form_id`     bigint(20)   NOT NULL COMMENT 'references transactions.id',
12368   `field_id`    varchar(31)  NOT NULL COMMENT 'references layout_options.field_id',
12369   `field_value` TEXT         NOT NULL,
12370   PRIMARY KEY (`form_id`,`field_id`)
12371 ) ENGINE=MyISAM COMMENT='contains all data from layout-based transactions';
12372 #EndIf
12374 #IfColumn transactions                                body
12375 INSERT INTO lbt_data SELECT id, 'body'              , body               FROM transactions WHERE body               != '';
12376 ALTER TABLE transactions DROP COLUMN                  body;
12377 #EndIf
12378 #IfColumn transactions                                refer_date
12379 INSERT INTO lbt_data SELECT id, 'refer_date'        , refer_date         FROM transactions WHERE refer_date         IS NOT NULL;
12380 ALTER TABLE transactions DROP COLUMN                  refer_date;
12381 #EndIf
12382 #IfColumn transactions                                refer_from
12383 INSERT INTO lbt_data SELECT id, 'refer_from'        , refer_from         FROM transactions WHERE refer_from         != 0;
12384 ALTER TABLE transactions DROP COLUMN                  refer_from;
12385 #EndIf
12386 #IfColumn transactions                                refer_to
12387 INSERT INTO lbt_data SELECT id, 'refer_to'          , refer_to           FROM transactions WHERE refer_to           != 0;
12388 ALTER TABLE transactions DROP COLUMN                  refer_to;
12389 #EndIf
12390 #IfColumn transactions                                refer_diag
12391 INSERT INTO lbt_data SELECT id, 'refer_diag'        , refer_diag         FROM transactions WHERE refer_diag         != '';
12392 ALTER TABLE transactions DROP COLUMN                  refer_diag;
12393 #EndIf
12394 #IfColumn transactions                                refer_risk_level
12395 INSERT INTO lbt_data SELECT id, 'refer_risk_level'  , refer_risk_level   FROM transactions WHERE refer_risk_level   != '';
12396 ALTER TABLE transactions DROP COLUMN                  refer_risk_level;
12397 #EndIf
12398 #IfColumn transactions                                refer_vitals
12399 INSERT INTO lbt_data SELECT id, 'refer_vitals'      , refer_vitals       FROM transactions WHERE refer_vitals       != 0;
12400 ALTER TABLE transactions DROP COLUMN                  refer_vitals;
12401 #EndIf
12402 #IfColumn transactions                                refer_external
12403 INSERT INTO lbt_data SELECT id, 'refer_external'    , refer_external     FROM transactions WHERE refer_external     != 0;
12404 ALTER TABLE transactions DROP COLUMN                  refer_external;
12405 #EndIf
12406 #IfColumn transactions                                refer_related_code
12407 INSERT INTO lbt_data SELECT id, 'refer_related_code', refer_related_code FROM transactions WHERE refer_related_code != '';
12408 ALTER TABLE transactions DROP COLUMN                  refer_related_code;
12409 #EndIf
12410 #IfColumn transactions                                refer_reply_date
12411 INSERT INTO lbt_data SELECT id, 'refer_reply_date'  , refer_reply_date   FROM transactions WHERE refer_reply_date   IS NOT NULL;
12412 ALTER TABLE transactions DROP COLUMN                  refer_reply_date;
12413 #EndIf
12414 #IfColumn transactions                                reply_date
12415 INSERT INTO lbt_data SELECT id, 'reply_date'        , reply_date         FROM transactions WHERE reply_date         IS NOT NULL;
12416 ALTER TABLE transactions DROP COLUMN                  reply_date;
12417 #EndIf
12418 #IfColumn transactions                                reply_from
12419 INSERT INTO lbt_data SELECT id, 'reply_from'        , reply_from         FROM transactions WHERE reply_from         != '';
12420 ALTER TABLE transactions DROP COLUMN                  reply_from;
12421 #EndIf
12422 #IfColumn transactions                                reply_init_diag
12423 INSERT INTO lbt_data SELECT id, 'reply_init_diag'   , reply_init_diag    FROM transactions WHERE reply_init_diag    != '';
12424 ALTER TABLE transactions DROP COLUMN                  reply_init_diag;
12425 #EndIf
12426 #IfColumn transactions                                reply_final_diag
12427 INSERT INTO lbt_data SELECT id, 'reply_final_diag'  , reply_final_diag   FROM transactions WHERE reply_final_diag   != '';
12428 ALTER TABLE transactions DROP COLUMN                  reply_final_diag;
12429 #EndIf
12430 #IfColumn transactions                                reply_documents
12431 INSERT INTO lbt_data SELECT id, 'reply_documents'   , reply_documents    FROM transactions WHERE reply_documents    != '';
12432 ALTER TABLE transactions DROP COLUMN                  reply_documents;
12433 #EndIf
12434 #IfColumn transactions                                reply_findings
12435 INSERT INTO lbt_data SELECT id, 'reply_findings'    , reply_findings     FROM transactions WHERE reply_findings     != '';
12436 ALTER TABLE transactions DROP COLUMN                  reply_findings;
12437 #EndIf
12438 #IfColumn transactions                                reply_services
12439 INSERT INTO lbt_data SELECT id, 'reply_services'    , reply_services     FROM transactions WHERE reply_services     != '';
12440 ALTER TABLE transactions DROP COLUMN                  reply_services;
12441 #EndIf
12442 #IfColumn transactions                                reply_recommend
12443 INSERT INTO lbt_data SELECT id, 'reply_recommend'   , reply_recommend    FROM transactions WHERE reply_recommend    != '';
12444 ALTER TABLE transactions DROP COLUMN                  reply_recommend;
12445 #EndIf
12446 #IfColumn transactions                                reply_rx_refer
12447 INSERT INTO lbt_data SELECT id, 'reply_rx_refer'    , reply_rx_refer     FROM transactions WHERE reply_rx_refer     != '';
12448 ALTER TABLE transactions DROP COLUMN                  reply_rx_refer;
12449 #EndIf
12450 #IfColumn transactions                                reply_related_code
12451 INSERT INTO lbt_data SELECT id, 'reply_related_code', reply_related_code FROM transactions WHERE reply_related_code != '';
12452 ALTER TABLE transactions DROP COLUMN                  reply_related_code;
12453 #EndIf
12455 #IfRow2D clinical_rules id secure_messaging_amc amc_code_2014 170.314(g)(1)/(2)
12456 UPDATE `clinical_rules` SET `amc_code_2014` = '170.314(g)(1)/(2)-19' WHERE `id` = 'secure_messaging_amc' AND `amc_code_2014` = '170.314(g)(1)/(2)'; 
12457 #EndIf
12459 #IfMissingColumn documents documentationOf
12460 ALTER TABLE `documents` ADD `documentationOf` varchar(255) DEFAULT NULL;
12461 #EndIf
12463 #IfMissingColumn ccda_components ccda_type
12464 ALTER TABLE `ccda_components` ADD ccda_type int(11) NOT NULL COMMENT '0=>sections,1=>components';
12465 #EndIf
12467 #IfNotRow2D ccda_components ccda_components_field allergies ccda_components_name Allergies
12468 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('allergies','Allergies',1);
12469 #EndIf
12471 #IfNotRow2D ccda_components ccda_components_field medications ccda_components_name Medications
12472 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('medications','Medications',1);
12473 #EndIf
12475 #IfNotRow2D ccda_components ccda_components_field problems ccda_components_name Problems
12476 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('problems','Problems',1);
12477 #EndIf
12479 #IfNotRow2D ccda_components ccda_components_field immunizations ccda_components_name Immunizations
12480 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('immunizations','Immunizations',1);
12481 #EndIf
12483 #IfNotRow2D ccda_components ccda_components_field procedures ccda_components_name Procedures
12484 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('procedures','Procedures',1);
12485 #EndIf
12487 #IfNotRow2D ccda_components ccda_components_field results ccda_components_name Results
12488 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('results','Results',1);
12489 #EndIf
12491 #IfNotRow2D ccda_components ccda_components_field plan_of_care ccda_components_name Plan Of Care
12492 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('plan_of_care','Plan Of Care',1);
12493 #EndIf
12495 #IfNotRow2D ccda_components ccda_components_field vitals ccda_components_name Vitals
12496 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('vitals','Vitals',1);
12497 #EndIf
12499 #IfNotRow2D ccda_components ccda_components_field social_history ccda_components_name Social History
12500 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('social_history','Social History',1);
12501 #EndIf
12503 #IfNotRow2D ccda_components ccda_components_field encounters ccda_components_name Encounters
12504 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('encounters','Encounters',1);
12505 #EndIf
12507 #IfNotRow2D ccda_components ccda_components_field functional_status ccda_components_name Functional Status
12508 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('functional_status','Functional Status',1);
12509 #EndIf
12511 #IfNotRow2D ccda_components ccda_components_field referral ccda_components_name Reason for Referral
12512 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('referral','Reason for Referral',1);
12513 #EndIf
12515 #IfNotRow2D ccda_components ccda_components_field instructions ccda_components_name Instructions
12516 INSERT INTO ccda_components (ccda_components_field, ccda_components_name, ccda_type) VALUES ('instructions','Instructions',1);
12517 #EndIf
12519 #IfNotTable form_clinical_instructions
12520 CREATE TABLE `form_clinical_instructions` (
12521   `id` int(11) NOT NULL AUTO_INCREMENT,
12522   `pid` bigint(20) DEFAULT NULL,
12523   `encounter` varchar(255) DEFAULT NULL,
12524   `user` varchar(255) DEFAULT NULL,
12525   `instruction` text,
12526   `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
12527   `activity` TINYINT DEFAULT 1 NULL,
12528   PRIMARY KEY (`id`)
12529 )ENGINE=InnoDB;
12530 INSERT INTO `registry` (`name`,`state`,`directory`,`sql_run`,`unpackaged`,`date`,`priority`,`category`,`nickname`) VALUES ('Clinical Instructions', 1, 'clinical_instructions', 1, 1, '2015-09-09 00:00:00', 0, 'Clinical', '');
12531 #EndIf
12533 #IfMissingColumn clinical_rules web_reference
12534 ALTER TABLE  `clinical_rules` ADD  `web_reference` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'Clinical Rule Web Reference';
12535 #EndIf
12537 #IfNotTable clinical_rules_log
12538 CREATE TABLE `clinical_rules_log` (
12539   `id` bigint(20) NOT NULL auto_increment,
12540   `date` datetime DEFAULT NULL,
12541   `pid` bigint(20) NOT NULL DEFAULT '0',
12542   `uid` bigint(20) NOT NULL DEFAULT '0',
12543   `category` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'An example category is clinical_reminder_widget',
12544   `value` TEXT NOT NULL,
12545   PRIMARY KEY (`id`),
12546   KEY `pid` (`pid`),
12547   KEY `uid` (`uid`),
12548   KEY `category` (`category`)
12549 ) ENGINE=MyISAM AUTO_INCREMENT=1 ;
12550 #EndIf
12552 #IfMissingColumn clinical_rules access_control
12553 ALTER TABLE `clinical_rules` ADD `access_control` VARCHAR(255) NOT NULL DEFAULT 'patients:med' COMMENT 'ACO link for access control';
12554 #EndIf
12556 #IfNotRow clinical_rules id rule_socsec_entry
12557 INSERT INTO `clinical_rules` ( `id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag`, `access_control` ) VALUES ('rule_socsec_entry', 0, 0, 0, 0, '', '', 0, '', 0, 'admin:practice');
12558 #EndIf
12560 #IfNotRow2D list_options list_id clinical_rules option_id rule_socsec_entry
12561 INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES ('clinical_rules', 'rule_socsec_entry', 'Data Entry - Social Security Number', 1500, 0);
12562 #EndIf
12564 #IfNotRow2D list_options list_id rule_action option_id act_soc_sec
12565 INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES ('rule_action' ,'act_soc_sec', 'Social Security Number', 155, 0);
12566 #EndIf
12568 #IfNotRow rule_action id rule_socsec_entry
12569 INSERT INTO `rule_action` ( `id`, `group_id`, `category`, `item` ) VALUES ('rule_socsec_entry', 1, 'act_cat_assess', 'act_soc_sec');
12570 #EndIf
12572 #IfNotRow2D rule_action_item category act_cat_assess item act_soc_sec
12573 INSERT INTO `rule_action_item` ( `category`, `item`, `clin_rem_link`, `reminder_message`, `custom_flag` ) VALUES ('act_cat_assess', 'act_soc_sec', '', '', 0);
12574 #EndIf
12576 #IfNotRow rule_reminder id rule_socsec_entry
12577 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_socsec_entry', 'clinical_reminder_pre', 'week', '2');
12578 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_socsec_entry', 'clinical_reminder_post', 'month', '1');
12579 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_socsec_entry', 'patient_reminder_pre', 'week', '2');
12580 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_socsec_entry', 'patient_reminder_post', 'month', '1');
12581 #EndIf
12583 #IfNotRow rule_target id rule_socsec_entry
12584 INSERT INTO `rule_target` ( `id`, `group_id`, `include_flag`, `required_flag`, `method`, `value`, `interval` ) VALUES ('rule_socsec_entry', 1, 1, 1, 'target_database', '::patient_data::ss::::::ge::1', 0);
12585 #EndIf
12587 #IfRow2D list_options list_id clinical_rules option_id e_prescribe_stage1_amc
12588 UPDATE `list_options` SET `title` = 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).'  WHERE list_id = 'clinical_rules' AND option_id = 'e_prescribe_stage1_amc';
12589 #EndIf
12591 #IfRow2D list_options list_id clinical_rules option_id e_prescribe_2_stage2_amc 
12592 UPDATE `list_options` SET `title` = 'Generate and transmit permissible prescriptions electronically (Not including controlled substances).'  WHERE list_id = 'clinical_rules' AND option_id = 'e_prescribe_2_stage2_amc';
12593 #EndIf
12595 #IfNotRow clinical_rules id rule_penicillin_allergy
12596 INSERT INTO `clinical_rules` ( `id`, `pid`, `active_alert_flag`, `passive_alert_flag`, `cqm_flag`, `cqm_nqf_code`, `cqm_pqri_code`, `amc_flag`, `amc_code`, `patient_reminder_flag` ) VALUES ('rule_penicillin_allergy', 0, 0, 0, 0, '', '', 0, '', 0);
12597 #EndIf
12599 #IfNotRow2D list_options list_id clinical_rules option_id rule_penicillin_allergy
12600 INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES ('clinical_rules', 'rule_penicillin_allergy', 'Assess Penicillin Allergy', 1600, 0);
12601 #EndIf
12603 #IfNotRow2D list_options list_id rule_action option_id act_penicillin_allergy
12604 INSERT INTO `list_options` ( `list_id`, `option_id`, `title`, `seq`, `is_default` ) VALUES ('rule_action' ,'act_penicillin_allergy', 'Penicillin Allergy', 157, 0);
12605 #EndIf
12607 #IfNotRow rule_action id rule_penicillin_allergy
12608 INSERT INTO `rule_action` ( `id`, `group_id`, `category`, `item` ) VALUES ('rule_penicillin_allergy', 1, 'act_cat_assess', 'act_penicillin_allergy');
12609 #EndIf
12611 #IfNotRow2D rule_action_item category act_cat_assess item act_penicillin_allergy
12612 INSERT INTO `rule_action_item` ( `category`, `item`, `clin_rem_link`, `reminder_message`, `custom_flag` ) VALUES ('act_cat_assess', 'act_penicillin_allergy', '', '', 1);
12613 #EndIf
12615 #IfNotRow rule_reminder id rule_penicillin_allergy
12616 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 'clinical_reminder_pre', 'week', '2');
12617 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 'clinical_reminder_post', 'month', '1');
12618 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 'patient_reminder_pre', 'week', '2');
12619 INSERT INTO `rule_reminder` ( `id`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 'patient_reminder_post', 'month', '1');
12620 #EndIf
12622 #IfNotRow rule_filter id rule_penicillin_allergy
12623 INSERT INTO `rule_filter` ( `id`, `include_flag`, `required_flag`, `method`, `method_detail`, `value` ) VALUES ('rule_penicillin_allergy', 1, 0, 'filt_lists', 'allergy', 'penicillin');
12624 #EndIf
12626 #IfNotRow rule_target id rule_penicillin_allergy
12627 INSERT INTO `rule_target` ( `id`, `group_id`, `include_flag`, `required_flag`, `method`, `value`, `interval` ) VALUES ('rule_penicillin_allergy', 1, 1, 1, 'target_interval', 'year', 1);
12628 INSERT INTO `rule_target` ( `id`, `group_id`, `include_flag`, `required_flag`, `method`, `value`, `interval` ) VALUES ('rule_penicillin_allergy', 1, 1, 1, 'target_database', 'CUSTOM::act_cat_assess::act_penicillin_allergy::YES::ge::1', 0);
12629 #EndIf
12631 #IfMissingColumn clinical_rules_log new_value
12632 ALTER TABLE  `clinical_rules_log` ADD `new_value` TEXT NOT NULL;
12633 #EndIf
12635 #IfNotColumnType procedure_report date_report datetime
12636 ALTER TABLE `procedure_report` CHANGE `date_report` `date_report` datetime DEFAULT NULL;
12637 #EndIf