Advertisement
kolpastebin

Crimbo 2014 Factory.ash

Dec 16th, 2014
10,742
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 477.27 KB | None | 0 0
  1. since r15056; //absolute minimum to run, but newer mafia builds will be better
  2.  
  3. //Crimbo 2014 Factory.ash
  4. //Version 2.0.2
  5. //Zero-configuration factory script. Just run it and it will try to farm as many parts as it can.
  6. //Picks the best floor on its own, using the schematics you have. You'll need to buy/use the schematics first, though.
  7. //Will ask how many turns you want to spend at the start. Enter zero to spend all of your turns.
  8. //Supports all floors automatically. Future updates may be slightly more optimal.
  9. //Latest version available from http://pastebin.com/DiESCamE
  10. //This script is in the public domain.
  11.  
  12.  
  13.  
  14. //-----------------------------------------------------------------------
  15. //Settings:
  16. int setting_preferred_floor = 0; //Supports 0, 1, 2, and 3. Zero means we auto-pick the floor for part farming.
  17.  
  18. boolean setting_prefer_schematics = false; //Generally not worth enabling. If enabling, setting_preferred_floor must not be equal to 0.
  19. //If you want to farm schematics, set setting_prefer_schematics = true, and setting_preferred_floor to 1, 2, 3 - depending on which floor you want to farm on.
  20.  
  21. boolean setting_every_day_is_crimbo = false; //???
  22.  
  23. //Manual overrides for parts. Must be the same string as in-game. NOT REQUIRED, the script will automatically pick the best parts it knows for you.
  24. string setting_desired_left_arm_part = "";
  25. string setting_desired_right_arm_part = "";
  26. string setting_desired_torso_part = "";
  27. string setting_desired_propulsion_part = "";
  28.  
  29. //Strategies:
  30. //(these are overwritten when setting_preferred_floor equals 0)
  31. boolean setting_prefer_ascension_on_second_floor = true; //Generally a good idea to ascend. Set to false to descend and see scary rooms.
  32. boolean setting_prefer_easy_on_third_floor = true; //Easy seems to be better.
  33. boolean setting_third_floor_switch_to_easy_after_first_risk_choice = true; //Surviving two hard choices on floor 3 is very difficult - switch to easy after collecting the first smartphone. Umm... you'd probably just want to run easy anyways.
  34.  
  35. //Unimportant settings:
  36. boolean setting_output_to_session_log = false; //DO NOT ENABLE - will write large amounts of data to your session log. Used for spading.
  37. boolean setting_enable_manual_confirmation = false; //similarly DO NOT ENABLE - will constantly pop up confirmation dialog boxes. I mean, unless you like dialog boxes. They're kind of like friends.
  38.  
  39.  
  40. //End of settings.
  41. //-----------------------------------------------------------------------
  42.  
  43. if (false)
  44. {
  45. //spading:
  46. setting_preferred_floor = 1;
  47. setting_desired_left_arm_part = "Swiss Arm";
  48. setting_desired_right_arm_part = "Grease / Regular Gun";
  49. setting_desired_torso_part = "Really Big Head";
  50. setting_desired_propulsion_part = "Heavy Treads";
  51. //setting_prefer_ascension_on_second_floor = false;
  52. }
  53.  
  54.  
  55.  
  56. boolean [string] __known_part_names = $strings[Ball-Bearing Dispenser,Basic Head,Big Head,Big Wheel,Bit Masher,Bug Zapper,Camera Claw,Candle Lighter,Cold Shoulder,Crab Core,Cyclopean Torso,Data Analyzer,Dynamo Head,Grease / Regular Gun,Grease Gun,Gun Face,Gun Legs,Heavy Treads,Heavy-Duty Legs,High-Speed Fan,Hoverjack,Lamp Filler,Maxi-Mag Light,Mega Vise,Military Chassis,Mobile Girder,Nerding Module,Power Arm,Power Stapler,Really Big Head,Refrigerator Chassis,Regular Legs,Ribbon Manipulator,Rivet Shocker,Rocket Skirt,Rodent Gun,Rollerfeet,Security Chassis,Sim-Simian Feet,Snow Blower,Swiss Arm,Tiny Fist,Tripod Legs,Wrecking Ball];
  57.  
  58. if (true || my_id() == 1557284) //spading, DO NOT ENABLE
  59. {
  60. setting_output_to_session_log = true;
  61. //setting_enable_manual_confirmation = true;
  62. }
  63.  
  64.  
  65. void listAppend(string [int] list, string entry)
  66. {
  67. int position = list.count();
  68. while (list contains position)
  69. position += 1;
  70. list[position] = entry;
  71. }
  72.  
  73. void listAppend(int [int] list, int entry)
  74. {
  75. int position = list.count();
  76. while (list contains position)
  77. position += 1;
  78. list[position] = entry;
  79. }
  80.  
  81. void listAppend(item [int] list, item entry)
  82. {
  83. int position = list.count();
  84. while (list contains position)
  85. position += 1;
  86. list[position] = entry;
  87. }
  88.  
  89. string [int] listMakeBlankString()
  90. {
  91. string [int] result;
  92. return result;
  93. }
  94.  
  95. int [int] listMake(int e1, int e2, int e3, int e4)
  96. {
  97. int [int] result;
  98. result.listAppend(e1);
  99. result.listAppend(e2);
  100. result.listAppend(e3);
  101. result.listAppend(e4);
  102. return result;
  103. }
  104.  
  105. int to_int_silent(string value)
  106. {
  107. if (is_integer(value))
  108. return to_int(value);
  109. return 0;
  110. }
  111.  
  112. float powf(float x, float p)
  113. {
  114. return x ** p;
  115. }
  116.  
  117. //Allows for fractional digits, not just whole numbers. Useful for preventing "+233.333333333333333% item"-type output.
  118. //Outputs 3.0, 3.1, 3.14, etc.
  119. float round(float v, int additional_fractional_digits)
  120. {
  121. if (additional_fractional_digits < 1)
  122. return v.round().to_float();
  123. float multiplier = powf(10.0, additional_fractional_digits);
  124. return to_float(round(v * multiplier)) / multiplier;
  125. }
  126.  
  127. //Similar to round() addition above, but also converts whole float numbers into integers for output
  128. string roundForOutput(float v, int additional_fractional_digits)
  129. {
  130. v = round(v, additional_fractional_digits);
  131. int vi = v.to_int();
  132. if (vi.to_float() == v)
  133. return vi.to_string();
  134. else
  135. return v.to_string();
  136. }
  137.  
  138. string listJoinComponents(string [int] list, string joining_string, string and_string)
  139. {
  140. buffer result;
  141. boolean first = true;
  142. int number_seen = 0;
  143. foreach i in list
  144. {
  145. if (first)
  146. {
  147. result.append(list[i]);
  148. first = false;
  149. }
  150. else
  151. {
  152. if (!(list.count() == 2 && and_string.length() > 0))
  153. result.append(joining_string);
  154. if (and_string.length() > 0 && number_seen == list.count() - 1)
  155. {
  156. result.append(" ");
  157. result.append(and_string);
  158. result.append(" ");
  159. }
  160. result.append(list[i]);
  161. }
  162. number_seen = number_seen + 1;
  163. }
  164. return result.to_string();
  165. }
  166.  
  167.  
  168. string listJoinComponents(string [int] list, string joining_string)
  169. {
  170. return listJoinComponents(list, joining_string, "");
  171. }
  172.  
  173. //(I'm assuming maps have a consistent enumeration order, which may not be the case)
  174. int listKeyForIndex(string [int] list, int index)
  175. {
  176. int i = 0;
  177. foreach key in list
  178. {
  179. if (i == index)
  180. return key;
  181. i += 1;
  182. }
  183. return -1;
  184. }
  185.  
  186. string listGetRandomObject(string [int] list)
  187. {
  188. if (list.count() == 0)
  189. return "";
  190. if (list.count() == 1)
  191. return list[listKeyForIndex(list, 0)];
  192. return list[listKeyForIndex(list, random(list.count()))];
  193. }
  194.  
  195. string convertStringToHolidayFun(string input)
  196. {
  197. buffer result;
  198. string [int] colours;
  199. colours.listAppend("#A52A2A"); //"brown"
  200. colours.listAppend("#FF3300");
  201. colours.listAppend("green");
  202. colours.listAppend("purple");
  203. colours.listAppend("red");
  204. for i from 0 to input.length() - 1
  205. {
  206. //WARNING: does not support escaped HTML strings such as &amp; or &lt;
  207. string c = input.char_at(i);
  208. result.append("<font color=\"");
  209. result.append(colours.listGetRandomObject());
  210. result.append("\">");
  211. result.append(c);
  212. result.append("</font>");
  213. }
  214.  
  215. return result.to_string();
  216. }
  217.  
  218. //print replacement, won't write to session log by default:
  219. void print_r(string output)
  220. {
  221. if (setting_output_to_session_log)
  222. logprint("Crimbo 2014 Factory.ash: " + output);
  223.  
  224. string output_processed = output;
  225. if (format_date_time("yyyyMMdd", today_to_string(), "MM-dd") == "12-25" || setting_every_day_is_crimbo) //minor error - will not process <> properly
  226. output_processed = convertStringToHolidayFun(output_processed);
  227. else
  228. output_processed = output.entity_encode();
  229. print_html(output_processed);
  230. }
  231.  
  232. void print_r(buffer output)
  233. {
  234. print_r(output.to_string());
  235. }
  236.  
  237. Record RoomChoice
  238. {
  239. boolean is_enabled;
  240. string button_value;
  241. string [int] image_file_names;
  242. int choice_index;
  243.  
  244. int hp_damage;
  245. int schematics_given;
  246. int parts_given;
  247. int custom_score_modifier;
  248. };
  249.  
  250. RoomChoice RoomChoiceMake()
  251. {
  252. RoomChoice choice;
  253. choice.choice_index = -1;
  254. choice.hp_damage = -1;
  255. choice.schematics_given = -1;
  256. choice.parts_given = -1;
  257. choice.custom_score_modifier = 0;
  258. return choice;
  259. }
  260.  
  261.  
  262. RoomChoice RoomChoiceMake(int schematics_given, int parts_given, int hp_damage, int custom_score_modifier)
  263. {
  264. RoomChoice choice = RoomChoiceMake();
  265. choice.hp_damage = hp_damage;
  266. choice.schematics_given = schematics_given;
  267. choice.parts_given = parts_given;
  268. choice.custom_score_modifier = custom_score_modifier;
  269. return choice;
  270. }
  271.  
  272. RoomChoice RoomChoiceMake(int schematics_given, int parts_given, int hp_damage)
  273. {
  274. return RoomChoiceMake(schematics_given, parts_given, hp_damage, 0);
  275. }
  276.  
  277. string description(RoomChoice choice)
  278. {
  279. buffer building_description;
  280. building_description.append("\"");
  281. building_description.append(choice.button_value);
  282. building_description.append("\" - image ");
  283. building_description.append(choice.image_file_names.listJoinComponents(" / "));
  284. building_description.append(",");
  285. if (choice.choice_index != -1)
  286. {
  287. building_description.append(" choice index ");
  288. building_description.append(choice.choice_index);
  289. building_description.append(",");
  290. }
  291.  
  292. if (choice.hp_damage > 0)
  293. {
  294. building_description.append(" -");
  295. building_description.append(choice.hp_damage);
  296. building_description.append(" HP");
  297. building_description.append(",");
  298. }
  299. if (choice.schematics_given > 0)
  300. {
  301. building_description.append(" ");
  302. building_description.append(choice.schematics_given);
  303. building_description.append(" schematics given");
  304. building_description.append(",");
  305. }
  306. if (choice.parts_given > 0)
  307. {
  308. building_description.append(" ");
  309. building_description.append(choice.parts_given);
  310. building_description.append(" parts given");
  311. building_description.append(",");
  312. }
  313. if (choice.custom_score_modifier != 0)
  314. {
  315. building_description.append(" ");
  316. building_description.append(choice.custom_score_modifier);
  317. building_description.append(" score modifier");
  318. building_description.append(",");
  319. }
  320.  
  321. if (choice.is_enabled)
  322. building_description.append(" ENABLED");
  323. else
  324. building_description.append(" DISABLED");
  325. return building_description.to_string();
  326. }
  327.  
  328. Record Room
  329. {
  330. string name;
  331. string description;
  332. RoomChoice [int] choices;
  333.  
  334. int probable_number;
  335. };
  336.  
  337. string description(Room r)
  338. {
  339. buffer result;
  340. if (r.probable_number > 0)
  341. {
  342. result.append(r.probable_number);
  343. result.append(" ");
  344. }
  345. result.append("\"");
  346. result.append(r.name);
  347. result.append("\" - \"");
  348. result.append(r.description);
  349. result.append("\", ");
  350. result.append(r.choices.count());
  351. result.append(" choices.");
  352. return result.to_string();
  353. }
  354.  
  355. Room parsePage()
  356. {
  357. Room result;
  358. string page_text = visit_url("choice.php", false).replace_string("\r", ""); //don't need newlines
  359.  
  360. //print_r("page_text = " + page_text);
  361.  
  362. if (page_text.length() == 0)
  363. {
  364. print_r("Empty page.");
  365. return result;
  366. }
  367.  
  368. result.name = page_text.group_string("<td valign=top width=250 class=small><center><b>([^<]*)")[0][1];
  369.  
  370. result.description = page_text.group_string("<img src=\"http://images.kingdomofloathing.com/otherimages/crimbot/overlay[0-9]*.png\" width=[0-9]* height=[0-9]*></div></div><p>([^<]*)<")[0][1];
  371.  
  372. string [int][int] button_html_matches = page_text.group_string("<input ([^\"]*\"[^\"]*[^>])"); //masher->hack()
  373.  
  374. string [int][int] known_choice_ids = page_text.group_string("<input type=hidden name=option value=([0-9]*)>");
  375.  
  376. int next_choice_id = 0;
  377. int [int] choice_ids;
  378. foreach key in known_choice_ids
  379. {
  380. int id = known_choice_ids[key][1].to_int_silent();
  381. choice_ids.listAppend(id);
  382. }
  383.  
  384.  
  385. foreach key in button_html_matches
  386. {
  387. string button_rest = button_html_matches[key][1];
  388. if (button_rest.group_string("class=button").count() + button_rest.group_string("class='button'").count() == 0)
  389. continue;
  390.  
  391. boolean is_disabled = button_rest.group_string(" disable ").count() > 0;
  392. string value = button_rest.group_string(" value=\"([^\"]*)\"")[0][1];
  393. string [int] image_file_names;
  394.  
  395. //Find the image immediately after:
  396. if (true)
  397. {
  398. int match_index = page_text.index_of(button_html_matches[key][0]);
  399. if (match_index >= page_text.length())
  400. continue;
  401. //hack:
  402. int end_index = page_text.index_of("<form", match_index);
  403. int end_index_2 = page_text.index_of("</form", match_index);
  404. int end_index_3 = -1;
  405. if (match_index + 1 < page_text.length())
  406. end_index_3 = page_text.index_of("<input type=button", match_index + 1);
  407. if (end_index_2 < end_index && end_index_2 > 0)
  408. end_index = end_index_2;
  409. if (end_index_3 < end_index && end_index_3 > 0)
  410. end_index = end_index_3;
  411. if (end_index < 0)
  412. {
  413. end_index = page_text.length() - 1;
  414. }
  415.  
  416. string [int][int] image_regex_matches = page_text.substring(match_index, end_index).group_string("<img (class=faded )?src=([^ ]*)");
  417.  
  418. foreach key2 in image_regex_matches
  419. {
  420. string image_path_name = page_text.substring(match_index).group_string("<img (class=faded )?src=([^ ]*)")[key2][2];
  421. int last_slash = image_path_name.last_index_of("/");
  422. if (last_slash + 1 < image_path_name.length())
  423. image_file_names.listAppend(image_path_name.substring(last_slash + 1));
  424. }
  425. }
  426.  
  427. RoomChoice choice = RoomChoiceMake();
  428. choice.is_enabled = !is_disabled;
  429. choice.button_value = value;
  430. choice.image_file_names = image_file_names;
  431. choice.choice_index = -1; //WARNING HACK. We should look into
  432. if (choice.is_enabled)
  433. {
  434. choice.choice_index = choice_ids[next_choice_id];
  435. next_choice_id += 1;
  436. }
  437. if (value == "Self-Destruct")
  438. choice.choice_index = -1; //never do this. usually, 6
  439. result.choices[result.choices.count()] = choice;
  440. }
  441. return result;
  442. }
  443.  
  444. void fillInRoomChoices(Room current_room)
  445. {
  446. //Replace choice modifiers with known:
  447. RoomChoice [string][string] known_modifiers;
  448. known_modifiers["Office Space"]["open /home/desktop"] = RoomChoiceMake(0, 1, 0); //parts
  449. known_modifiers["Office Space"]["UNZIP FILING.CAB"] = RoomChoiceMake(1, 0, 0); //schematic
  450. known_modifiers["The Dilemma"]["paper.shuffle()"] = RoomChoiceMake(1, 0, 0);
  451. known_modifiers["The Dilemma"]["break; // restroom"] = RoomChoiceMake(0, 1, 0);
  452.  
  453. known_modifiers["The Dark Closet Returns"]["GRAB.COM"] = RoomChoiceMake(0, 1, 0);
  454. known_modifiers["The Dark Closet Returns"]["ILLUMINATE.EXE"] = RoomChoiceMake(0, 2, 0);
  455.  
  456. known_modifiers["Tin Door. Rusted."]["while (1) shoot();"] = RoomChoiceMake(0, 0, 0);
  457. known_modifiers["Tin Door. Rusted."]["repeat (10) { grease.apply() }"] = RoomChoiceMake(0, 2, 0);
  458.  
  459.  
  460. //backup:
  461. known_modifiers["Tin Door. Rusted."]["while (1) shoot();"] = RoomChoiceMake(0, 0, 0);
  462. known_modifiers["Tin Door. Rusted."]["repeat (10) { grease.apply() }"] = RoomChoiceMake(0, 2, 0);
  463. known_modifiers["War of Gears"]["ceil(float(self))"] = RoomChoiceMake(1, 0, 0);
  464.  
  465. //Ascend:
  466. known_modifiers["This Gym Is Much Nicer"]["search(priority_jock);"] = RoomChoiceMake(0, 1, 0);
  467. known_modifiers["This Gym Is Much Nicer"]["search(priority_nerd);"] = RoomChoiceMake(1, 0, 0);
  468. known_modifiers["Still Life With Despair"]["find * | desk"] = RoomChoiceMake(0, 1, 0);
  469. known_modifiers["Still Life With Despair"]["computronz.zaphack++"] = RoomChoiceMake(1, 0, 0);
  470. known_modifiers["Hope You Have A Beretta"]["RUN SHOOT_BACKPACK.QB"] = RoomChoiceMake(0, 1, 0);
  471. known_modifiers["Hope You Have A Beretta"]["schematic_grab();"] = RoomChoiceMake(1, 0, 0);
  472.  
  473. //Descent:
  474. known_modifiers["Birdbot is the Wordbot"]["GgsOSUB 1000 : REM bird hunting"] = RoomChoiceMake(0, 1, 0);
  475. known_modifiers["Cage Match"]["with(electricity) fight(electricity);"] = RoomChoiceMake(1, 0, 0);
  476. known_modifiers["Humpster Dumpster"]["xDumpster.lube()"] = RoomChoiceMake(0, 1, 0);
  477. known_modifiers["Pants in High Places"]["php ./pantsblast.php"] = RoomChoiceMake(1, 0, 0);
  478.  
  479.  
  480. known_modifiers["Phony"]["phone.photograph()"] = RoomChoiceMake(1, 0, 0);
  481. known_modifiers["Phony"]["phone.yoink()"] = RoomChoiceMake(0, 1, 0);
  482.  
  483.  
  484. //Third floor:
  485. known_modifiers["Clear Cut Decision"]["534348454d4154494321"] = RoomChoiceMake(1, 0, 0);
  486. known_modifiers["Clear Cut Decision"]["4c4f53542f464f554e44"] = RoomChoiceMake(0, 2, 0);
  487.  
  488. known_modifiers["Too Few Cooks"]["proc.initiate('hotpocket.script')"] = RoomChoiceMake(0, 1, 0);
  489. known_modifiers["Too Few Cooks"]["appliance.apply.app('freeze.dmg')"] = RoomChoiceMake(1, 0, 0);
  490.  
  491. known_modifiers["Messy, Messy"]["schematic.grab()"] = RoomChoiceMake(1, 0, 0);
  492. known_modifiers["Messy, Messy"]["schematic.burn()"] = RoomChoiceMake(0, 1, 0);
  493.  
  494.  
  495. if (setting_prefer_ascension_on_second_floor)
  496. {
  497. known_modifiers["The Corporate Ladder"]["doscript(bcc_automated_ascension)"] = RoomChoiceMake(0, 0, 0, 100);
  498. known_modifiers["The Corporate Ladder"]["DESCENT.EXE"] = RoomChoiceMake(0, 0, 0, 0);
  499. }
  500. else
  501. {
  502. known_modifiers["The Corporate Ladder"]["doscript(bcc_automated_ascension)"] = RoomChoiceMake(0, 0, 0, 0);
  503. known_modifiers["The Corporate Ladder"]["DESCENT.EXE"] = RoomChoiceMake(0, 0, 0, 100);
  504. }
  505.  
  506. if (setting_prefer_easy_on_third_floor || (setting_third_floor_switch_to_easy_after_first_risk_choice && current_room.probable_number >= 4))
  507. {
  508. known_modifiers["Risk vs. Reward"]["const char diff = 'hard';"] = RoomChoiceMake(0, 0, 0, 0);
  509. known_modifiers["Risk vs. Reward"]["const char diff = 'easy';"] = RoomChoiceMake(0, 0, 0, 100);
  510. }
  511. else
  512. {
  513. known_modifiers["Risk vs. Reward"]["const char diff = 'hard';"] = RoomChoiceMake(0, 0, 0, 100);
  514. known_modifiers["Risk vs. Reward"]["const char diff = 'easy';"] = RoomChoiceMake(0, 0, 0, 0);
  515. }
  516.  
  517. if (known_modifiers contains current_room.name)
  518. {
  519. RoomChoice [int] new_choices;
  520. foreach key, choice in current_room.choices
  521. {
  522. if (known_modifiers[current_room.name] contains choice.button_value)
  523. {
  524. RoomChoice modifiers = known_modifiers[current_room.name][choice.button_value];
  525.  
  526. choice.hp_damage = modifiers.hp_damage;
  527. choice.schematics_given = modifiers.schematics_given;
  528. choice.parts_given = modifiers.parts_given;
  529. choice.custom_score_modifier = modifiers.custom_score_modifier;
  530. }
  531. }
  532. }
  533. }
  534.  
  535. void chooseOption(Room current_room)
  536. {
  537. print_r(" ");
  538. print_r("Room " + current_room.description());
  539. RoomChoice current_choice = RoomChoiceMake();
  540. int current_score = 0;
  541. foreach key, choice in current_room.choices
  542. {
  543. print_r("Choice " + (key + 1) + ": " + choice.description());
  544. if (!choice.is_enabled)
  545. continue;
  546. if (choice.choice_index == -1)
  547. continue;
  548. if (choice.button_value == "Self-Destruct")
  549. continue;
  550.  
  551. int score = 0;
  552. if (setting_prefer_schematics)
  553. {
  554. score += choice.parts_given * 10;
  555. score += choice.schematics_given * 100;
  556. }
  557. else
  558. {
  559. score += choice.parts_given * 100;
  560. score += choice.schematics_given * 10;
  561. }
  562. score += choice.custom_score_modifier;
  563. score -= choice.hp_damage * 2;
  564. if (choice.image_file_names[0] == "FREE.gif")
  565. score -= 1;
  566. if (current_room.name == "The Lobby" && choice.choice_index == setting_preferred_floor)
  567. {
  568. score += 100;
  569. }
  570.  
  571. if (current_choice.choice_index == -1 || score > current_score)
  572. {
  573. current_choice = choice;
  574. current_score = score;
  575. }
  576. }
  577. if (current_choice.choice_index == -1)
  578. {
  579. print_r("No choice.");
  580. return;
  581. }
  582. print_r("Chose " + current_choice.description());
  583.  
  584. if (setting_enable_manual_confirmation)
  585. {
  586. boolean yes = user_confirm("Run " + current_choice.description() + "?");
  587. if (!yes)
  588. {
  589. abort("stop");
  590. return;
  591. }
  592. }
  593.  
  594. string page_result = visit_url("choice.php?whichchoice=992&option=" + current_choice.choice_index);
  595. //print_r("page_result = " + page_result);
  596. int damage_taken = page_result.group_string("Your Crimbot takes <b>([0-9]*)</b> damage.")[0][1].to_int_silent();
  597. if (damage_taken > 0)
  598. print_r(damage_taken + " damage taken.");
  599. string [int][int] items_found_matches = page_result.group_string("You acquire an item: <b>([^<]*)</b>");
  600. foreach key in items_found_matches
  601. {
  602. string item_found = items_found_matches[key][1];
  603. print_r("Found \"" + item_found + "\".");
  604. }
  605. }
  606.  
  607. //[Floor]["N/A","ascend","descend","hard always","hard first, easy second","easy"]["parts" or "schematic"] for lookup
  608. string [int][string][string][int] __hacky_optimal_configuration_order;
  609. string [int] __hacky_optimal_configuration_order_parts_only;
  610. string [int] __hacky_optimal_configuration_name_lookup;
  611. string [string][int] __hacky_optimal_part_configurations;
  612. int [int][int] __hacky_optimal_index_table;
  613.  
  614. int [int][int] __hacky_optimal_order_index_to_part_id;
  615. void initialiseOptimalConfigurationOrder()
  616. {
  617. if (__hacky_optimal_configuration_order.count() > 0)
  618. return;
  619. //Simulation data:
  620. //Simulation code is available from http://pastebin.com/AcMW1MbV
  621. //It's probably wrong in every way.
  622.  
  623.  
  624.  
  625. __hacky_optimal_part_configurations["leftarm"] = "Mobile Girder|Swiss Arm|Maxi-Mag Light|Bit Masher|Mega Vise|Data Analyzer|Camera Claw|Bug Zapper|Rivet Shocker|Tiny Fist|Rodent Gun".split_string("\\|");
  626. __hacky_optimal_part_configurations["rightarm"] = "Wrecking Ball|Grease / Regular Gun|Candle Lighter|Lamp Filler|Ball-Bearing Dispenser|Power Arm|Ribbon Manipulator|Power Stapler|Grease Gun|Snow Blower|Cold Shoulder".split_string("\\|");
  627. __hacky_optimal_part_configurations["torso"] = "Nerding Module|Refrigerator Chassis|Really Big Head|Cyclopean Torso|Dynamo Head|Big Head|Crab Core|Military Chassis|Security Chassis|Gun Face|Basic Head".split_string("\\|");
  628. __hacky_optimal_part_configurations["propulsion"] = "Rocket Skirt|Heavy Treads|Hoverjack|High-Speed Fan|Heavy-Duty Legs|Tripod Legs|Big Wheel|Gun Legs|Regular Legs|Rollerfeet|Sim-Simian Feet".split_string("\\|");
  629. __hacky_optimal_configuration_order_parts_only = "0|3|1|1464|1|1|242|3|1|363|3|1|484|3|1|605|3|1|726|3|1|847|3|1|968|3|1|121|3|1|1089|3|1|244|3|1|1210|3|1|365|3|1|364|3|1|2662|3|1|3993|3|1|1475|1|1|1453|1|1|1486|1|1|1497|1|1|243|3|1|5324|3|1|6655|3|1|7986|3|1|9317|3|1|245|3|1|366|3|1|10781|1|1|2311|1|1|1706|1|1|367|3|1|3872|3|1|5203|3|1|8712|3|1|8833|3|1|6897|3|1|7018|3|1|2904|3|1|3025|3|1|4235|3|1|4356|3|1|8228|3|1|8349|3|1|11979|3|1|9922|3|1|10164|3|1|10648|3|1|1331|3|1|4015|3|1|4004|3|1|1508|1|1|1519|1|1|9559|3|1|9680|3|1|368|3|1|369|3|1|370|3|1|12112|1|1|11628|1|1|11023|1|1|5457|1|1|2806|1|1|2784|1|1|2795|1|1|4126|1|1|3026|3|1|4357|3|1|1827|1|1|246|3|1|133|1|1|6534|3|1|7139|3|1|7260|3|1|7381|3|1|7502|3|1|7623|3|1|6776|3|1|7744|3|1|6899|3|1|7865|3|1|7020|3|1|3146|3|1|3267|3|1|3388|3|1|3509|3|1|3630|3|1|2783|3|1|3751|3|1|2906|3|1|3027|3|1|4477|3|1|4598|3|1|4719|3|1|4840|3|1|4961|3|1|4114|3|1|5082|3|1|4237|3|1|4358|3|1|8470|3|1|8591|3|1|8954|3|1|8107|3|1|9075|3|1|8230|3|1|9196|3|1|8351|3|1|10847|1|1|2377|1|1|1541|1|1|1530|1|1|1772|1|1|9801|3|1|10043|3|1|10285|3|1|9438|3|1|10406|3|1|9561|3|1|10527|3|1|9682|3|1|13310|3|1|247|3|1|248|3|1|249|3|1|6677|3|1|6666|3|1|8008|3|1|7997|3|1|5463|1|1|1349|1|1|10792|1|1|10770|1|1|2322|1|1|2300|1|1|1717|1|1|1695|1|1|10803|1|1|2333|1|1|1728|1|1|2828|1|1|2905|3|1|4236|3|1|5566|3|1|5687|3|1|5214|3|1|5688|3|1|7019|3|1|8350|3|1|2|3|1|1|3|1|9681|3|1|371|3|1|372|3|1|373|3|1|134|1|1|132|1|1|1465|1|1|1463|1|1|199|1|1|10814|1|1|2344|1|1|1739|1|1|5458|1|1|5456|1|1|13189|3|1|13794|3|1|13431|3|1|11253|3|1|11495|3|1|11858|3|1|5808|3|1|5929|3|1|6050|3|1|6171|3|1|6292|3|1|5445|3|1|6413|3|1|5568|3|1|5689|3|1|1815|3|1|1936|3|1|2178|3|1|1452|3|1|2541|3|1|4048|3|1|4059|3|1|4037|3|1|4026|3|1|5225|3|1|8052|3|1|8734|3|1|8723|3|1|8855|3|1|8844|3|1|155|1|1|6900|3|1|7021|3|1|2907|3|1|3028|3|1|4238|3|1|4359|3|1|8231|3|1|8352|3|1|12221|3|1|12342|3|1|13552|3|1|13673|3|1|10890|3|1|11011|3|1|1573|3|1|1694|3|1|7755|3|1|6919|3|1|6908|3|1|7876|3|1|7040|3|1|7029|3|1|5093|3|1|4257|3|1|4246|3|1|4378|3|1|4367|3|1|9086|3|1|8250|3|1|8239|3|1|9207|3|1|8371|3|1|8360|3|1|12123|1|1|12101|1|1|11639|1|1|11617|1|1|11034|1|1|11012|1|1|5468|1|1|5446|1|1|4137|1|1|4115|1|1|9560|3|1|5567|3|1|250|3|1|251|3|1|252|3|1|6898|3|1|8229|3|1|12178|1|1|5523|1|1|2883|1|1|2861|1|1|4192|1|1|980|1|1|375|1|1|144|1|1|122|1|1|10869|1|1|2399|1|1|1563|1|1|1552|1|1|1794|1|1|5474|1|1|5452|1|1|12134|1|1|11650|1|1|11045|1|1|5479|1|1|3675|1|1|2839|1|1|2850|1|1|2817|1|1|3070|1|1|4148|1|1|970|3|1|123|3|1|1849|1|1|1409|1|1|139|1|1|12463|3|1|12584|3|1|12705|3|1|12826|3|1|12947|3|1|12100|3|1|13068|3|1|12223|3|1|12344|3|1|9562|3|1|9683|3|1|13915|3|1|14036|3|1|14157|3|1|14278|3|1|14399|3|1|13554|3|1|14520|3|1|13675|3|1|11132|3|1|11374|3|1|11616|3|1|10769|3|1|11737|3|1|10892|3|1|11013|3|1|2057|3|1|2299|3|1|2420|3|1|1575|3|1|1696|3|1|7161|3|1|7150|3|1|7282|3|1|7271|3|1|6710|3|1|6721|3|1|6699|3|1|6688|3|1|7403|3|1|7392|3|1|7524|3|1|7513|3|1|7645|3|1|7634|3|1|6798|3|1|6787|3|1|7766|3|1|6921|3|1|6910|3|1|7887|3|1|7042|3|1|7031|3|1|4499|3|1|4488|3|1|4620|3|1|4609|3|1|4741|3|1|4730|3|1|4862|3|1|4851|3|1|4983|3|1|4972|3|1|4136|3|1|4125|3|1|5104|3|1|4259|3|1|4248|3|1|4380|3|1|4369|3|1|8492|3|1|8481|3|1|8613|3|1|8602|3|1|8041|3|1|8030|3|1|8019|3|1|8976|3|1|8965|3|1|8129|3|1|8118|3|1|9097|3|1|8252|3|1|8241|3|1|9218|3|1|8373|3|1|8362|3|1|9450|1|1|12343|3|1|4379|3|1|4368|3|1|12959|1|1|12354|1|1|6304|1|1|5699|1|1|3653|1|1|3631|1|1|3642|1|1|3048|1|1|3037|1|1|4973|1|1|969|3|1|12|1|1|166|1|1|200|1|1|198|1|1|1838|1|1|1816|1|1|9451|1|1|9449|1|1|12145|1|1|10825|1|1|10836|1|1|5490|1|1|2355|1|1|2366|1|1|1750|1|1|1761|1|1|4159|1|1|11661|1|1|11056|1|1|8877|3|1|156|1|1|154|1|1|135|1|1|7022|3|1|3029|3|1|4360|3|1|8353|3|1|167|1|1|165|1|1|8294|3|1|8415|3|1|194|2|1|486|3|1|607|3|1|3|3|1|728|3|1|849|3|1|1091|3|1|1212|3|1|485|3|2|606|3|2|4|3|2|727|3|2|848|3|2|1090|3|2|1211|3|2|1476|1|1|1474|1|1|1454|1|1|145|1|1|143|1|1|221|1|1|1860|1|1|1360|1|1|1338|1|1|7023|3|1|7024|3|1|7025|3|1|3030|3|1|3031|3|1|3032|3|1|4361|3|1|4362|3|1|4363|3|1|8354|3|1|8355|3|1|8356|3|1|2014|1|1|1371|1|1|2256|1|1|2559|1|1|9684|3|1|13674|3|1|7041|3|1|7030|3|1|8372|3|1|8361|3|1|13443|1|1|12222|3|1|10891|3|1|1574|3|1|4258|3|1|4247|3|1|5469|1|1|5467|1|1|5447|1|1|6901|3|1|2908|3|1|4239|3|1|8232|3|1|5569|3|1|5690|3|1|7304|3|1|7447|3|1|7568|3|1|7546|3|1|4642|3|1|4103|3|1|4092|3|1|4081|3|1|4070|3|1|4785|3|1|4906|3|1|4884|3|1|5258|3|1|5269|3|1|5247|3|1|5236|3|1|8536|3|1|8657|3|1|8635|3|1|8767|3|1|8778|3|1|8756|3|1|8745|3|1|8888|3|1|8899|3|1|8866|3|1|9020|3|1|8173|3|1|9141|3|1|8296|3|1|9262|3|1|8417|3|1|9329|1|1|78|1|1|10297|1|1|9692|1|1|1046|1|1|210|1|1|441|1|1|1487|1|1|1485|1|1|1466|1|1|6902|3|1|6903|3|1|6904|3|1|2909|3|1|2910|3|1|2911|3|1|4240|3|1|4241|3|1|4242|3|1|8233|3|1|8234|3|1|8235|3|1|9685|3|1|9686|3|1|9687|3|1|6952|3|1|6963|3|1|6941|3|1|6930|3|1|7073|3|1|7084|3|1|7062|3|1|7051|3|1|4290|3|1|4301|3|1|4279|3|1|4268|3|1|4411|3|1|4422|3|1|4400|3|1|4389|3|1|8283|3|1|8272|3|1|8261|3|1|8404|3|1|8393|3|1|8382|3|1|11694|1|1|10858|1|1|11089|1|1|2388|1|1|1783|1|1|1013|1|1|177|1|1|188|1|1|408|1|1|1002|1|1|397|1|1|5485|1|1|6310|1|1|5524|1|1|5522|1|1|5461|1|1|5705|1|1|5496|1|1|10782|1|1|10780|1|1|2312|1|1|2310|1|1|1707|1|1|1705|1|1|5480|1|1|5478|1|1|5460|1|1|5459|1|1|981|1|1|979|1|1|376|1|1|374|1|1|991|1|1|386|1|1|6305|1|1|6303|1|1|5700|1|1|5698|1|1|12200|1|1|5545|1|1|4214|1|1|1382|1|1|12224|3|1|12345|3|1|9564|3|1|9565|3|1|9566|3|1|13555|3|1|13676|3|1|10893|3|1|11014|3|1|1576|3|1|1697|3|1|7194|3|1|7205|3|1|7183|3|1|7172|3|1|7315|3|1|7326|3|1|7293|3|1|6765|3|1|6754|3|1|6743|3|1|6732|3|1|7436|3|1|7425|3|1|7414|3|1|7557|3|1|7535|3|1|7678|3|1|7689|3|1|7667|3|1|7656|3|1|6831|3|1|6842|3|1|6820|3|1|6809|3|1|7799|3|1|7810|3|1|7788|3|1|7777|3|1|6954|3|1|6965|3|1|6943|3|1|6932|3|1|6922|3|1|6911|3|1|7920|3|1|7931|3|1|7909|3|1|7898|3|1|7075|3|1|7086|3|1|7064|3|1|7053|3|1|7043|3|1|7032|3|1|4532|3|1|4543|3|1|4521|3|1|4510|3|1|4653|3|1|4664|3|1|4631|3|1|4774|3|1|4763|3|1|4752|3|1|4895|3|1|4873|3|1|5016|3|1|5027|3|1|5005|3|1|4994|3|1|4169|3|1|4180|3|1|4158|3|1|4147|3|1|5137|3|1|5148|3|1|5126|3|1|5115|3|1|4292|3|1|4303|3|1|4281|3|1|4270|3|1|4260|3|1|4249|3|1|4413|3|1|4424|3|1|4402|3|1|4391|3|1|4381|3|1|4370|3|1|8525|3|1|8514|3|1|8503|3|1|8646|3|1|8624|3|1|8096|3|1|8085|3|1|8074|3|1|8063|3|1|9009|3|1|8998|3|1|8987|3|1|8162|3|1|8151|3|1|8140|3|1|9130|3|1|9119|3|1|9108|3|1|8285|3|1|8274|3|1|8263|3|1|8253|3|1|8242|3|1|9251|3|1|9240|3|1|9229|3|1|8406|3|1|8395|3|1|8384|3|1|8374|3|1|8363|3|1|9563|3|1|13553|3|1|6920|3|1|6909|3|1|8251|3|1|8240|3|1|8359|3|1|557|2|1|172|1|1|13388|1|1|34|1|1|1222|1|1|7026|3|1|7027|3|1|7028|3|1|3033|3|1|3034|3|1|3035|3|1|4364|3|1|4365|3|1|4366|3|1|8357|3|1|8358|3|1|1343|1|1|12992|1|1|12156|1|1|12167|1|1|12387|1|1|11672|1|1|11683|1|1|11067|1|1|11078|1|1|6337|1|1|5501|1|1|5512|1|1|5732|1|1|5006|1|1|4170|1|1|4181|1|1|4401|1|1|1498|1|1|1496|1|1|5691|3|1|4412|3|1|4423|3|1|4390|3|1|8416|3|1|150|1|1|128|1|1|1410|1|1|1408|1|1|5491|1|1|5489|1|1|9461|1|1|9439|1|1|2196|2|1|161|1|1|12970|1|1|12948|1|1|12365|1|1|6315|1|1|6293|1|1|5710|1|1|4984|1|1|4962|1|1|9456|1|1|986|1|1|137|1|1|381|1|1|9516|1|1|13680|3|1|5692|3|1|5693|3|1|5694|3|1|1701|3|1|6905|3|1|6906|3|1|6907|3|1|2912|3|1|2913|3|1|2914|3|1|4243|3|1|4244|3|1|4245|3|1|8236|3|1|8237|3|1|8238|3|1|9472|1|1|222|1|1|220|1|1|2663|3|1|3994|3|1|45|1|1|136|1|1|9462|1|1|9460|1|1|9440|1|1|168|1|1|13444|1|1|13442|1|1|201|1|1|13559|3|1|5571|3|1|5572|3|1|5573|3|1|1580|3|1|7238|3|1|7216|3|1|6875|3|1|6853|3|1|4576|3|1|4554|3|1|4213|3|1|4191|3|1|5313|3|1|5302|3|1|5291|3|1|5280|3|1|8569|3|1|8547|3|1|8822|3|1|8811|3|1|8800|3|1|8789|3|1|8943|3|1|8932|3|1|8921|3|1|8910|3|1|8206|3|1|8184|3|1|8297|3|1|8418|3|1|2664|3|1|3995|3|1|12346|3|1|9688|3|1|9689|3|1|9690|3|1|13677|3|1|11015|3|1|1698|3|1|7074|3|1|7085|3|1|7063|3|1|7052|3|1|7044|3|1|7033|3|1|4382|3|1|4371|3|1|8405|3|1|8394|3|1|8383|3|1|8375|3|1|8364|3|1|9517|1|1|9515|1|1|10298|1|1|10296|1|1|9693|1|1|9691|1|1|1047|1|1|1045|1|1|211|1|1|209|1|1|157|1|1|442|1|1|440|1|1|12113|1|1|12111|1|1|9473|1|1|9471|1|1|9452|1|1|11629|1|1|11627|1|1|11024|1|1|11022|1|1|2807|1|1|2805|1|1|2785|1|1|2796|1|1|2794|1|1|4127|1|1|1014|1|1|1012|1|1|178|1|1|176|1|1|189|1|1|187|1|1|146|1|1|124|1|1|409|1|1|407|1|1|12347|3|1|12348|3|1|12349|3|1|13678|3|1|13679|3|1|11016|3|1|11017|3|1|11018|3|1|1699|3|1|1700|3|1|7007|3|1|6996|3|1|6985|3|1|6974|3|1|7128|3|1|7117|3|1|7106|3|1|7095|3|1|7045|3|1|7046|3|1|7047|3|1|7034|3|1|7035|3|1|7036|3|1|4345|3|1|4334|3|1|4323|3|1|4312|3|1|4466|3|1|4455|3|1|4444|3|1|4433|3|1|4383|3|1|4384|3|1|4385|3|1|4372|3|1|4373|3|1|4374|3|1|8338|3|1|8327|3|1|8316|3|1|8305|3|1|8459|3|1|8448|3|1|8437|3|1|8426|3|1|8376|3|1|8377|3|1|8378|3|1|8365|3|1|8366|3|1|8367|3|1|5570|3|1|4291|3|1|4302|3|1|4280|3|1|4269|3|1|8295|3|1|1948|1|1|2190|1|1|12981|1|1|12376|1|1|6326|1|1|5721|1|1|3686|1|1|3697|1|1|3664|1|1|3081|1|1|3092|1|1|3059|1|1|4995|1|1|971|3|1|12226|3|1|12227|3|1|12228|3|1|13557|3|1|13558|3|1|10895|3|1|10896|3|1|10897|3|1|1578|3|1|1579|3|1|7249|3|1|7227|3|1|7370|3|1|7359|3|1|7348|3|1|7337|3|1|7491|3|1|7480|3|1|7469|3|1|7458|3|1|7612|3|1|7601|3|1|7590|3|1|7579|3|1|7733|3|1|7722|3|1|7711|3|1|7700|3|1|6886|3|1|6864|3|1|7854|3|1|7843|3|1|7832|3|1|7821|3|1|7009|3|1|6998|3|1|6955|3|1|6987|3|1|6976|3|1|6966|3|1|6944|3|1|6933|3|1|6924|3|1|6925|3|1|6926|3|1|6913|3|1|6914|3|1|6915|3|1|7975|3|1|7964|3|1|7953|3|1|7942|3|1|7130|3|1|7119|3|1|7076|3|1|7108|3|1|7097|3|1|7087|3|1|7065|3|1|7054|3|1|4587|3|1|4565|3|1|4708|3|1|4697|3|1|4686|3|1|4675|3|1|4829|3|1|4818|3|1|4807|3|1|4796|3|1|4950|3|1|4939|3|1|4928|3|1|4917|3|1|5071|3|1|5060|3|1|5049|3|1|5038|3|1|4224|3|1|4202|3|1|5192|3|1|5181|3|1|5170|3|1|5159|3|1|4347|3|1|4336|3|1|4293|3|1|4325|3|1|4314|3|1|4304|3|1|4282|3|1|4271|3|1|4262|3|1|4263|3|1|4264|3|1|4251|3|1|4252|3|1|4253|3|1|4468|3|1|4457|3|1|4414|3|1|4446|3|1|4435|3|1|4425|3|1|4403|3|1|4392|3|1|8580|3|1|8558|3|1|8701|3|1|8690|3|1|8679|3|1|8668|3|1|9064|3|1|9053|3|1|9042|3|1|9031|3|1|8217|3|1|8195|3|1|9185|3|1|9174|3|1|9163|3|1|9152|3|1|8340|3|1|8329|3|1|8286|3|1|8318|3|1|8307|3|1|8275|3|1|8264|3|1|8255|3|1|8256|3|1|8257|3|1|8244|3|1|8245|3|1|8246|3|1|9306|3|1|9295|3|1|9284|3|1|9273|3|1|8461|3|1|8450|3|1|8407|3|1|8439|3|1|8428|3|1|8396|3|1|8385|3|1|13025|1|1|12189|1|1|12420|1|1|11705|1|1|11100|1|1|6370|1|1|5534|1|1|5465|1|1|5462|1|1|5765|1|1|3730|1|1|3708|1|1|2894|1|1|2872|1|1|3125|1|1|3103|1|1|5039|1|1|4203|1|1|4434|1|1|1871|1|1|1882|1|1|1431|1|1|5826|1|1|12225|3|1|9567|3|1|9568|3|1|9569|3|1|13556|3|1|10894|3|1|1577|3|1|6953|3|1|6964|3|1|6942|3|1|6931|3|1|6923|3|1|6912|3|1|4261|3|1|4250|3|1|8284|3|1|8273|3|1|8262|3|1|8254|3|1|8243|3|1|11210|1|1|1904|1|1|1893|1|1|2135|1|1|2498|1|1|1651|1|1|2619|1|1|8125|2|1|13454|1|1|13432|1|1|5695|3|1|5696|3|1|5697|3|1|4467|3|1|4456|3|1|4445|3|1|8419|3|1|8381|3|1|8370|3|1|23|1|1|9483|1|1|12350|3|1|12351|3|1|12352|3|1|13681|3|1|13682|3|1|13683|3|1|11019|3|1|11020|3|1|11021|3|1|1702|3|1|1703|3|1|1704|3|1|7129|3|1|7118|3|1|7077|3|1|7107|3|1|7096|3|1|7088|3|1|7066|3|1|7055|3|1|7048|3|1|7049|3|1|7050|3|1|7037|3|1|7038|3|1|7039|3|1|4415|3|1|4426|3|1|4404|3|1|4393|3|1|4386|3|1|4387|3|1|4388|3|1|4375|3|1|4376|3|1|4377|3|1|8460|3|1|8449|3|1|8408|3|1|8438|3|1|8427|3|1|8420|3|1|8421|3|1|8422|3|1|8397|3|1|8386|3|1|8379|3|1|8380|3|1|8368|3|1|8369|3|1|9351|1|1|10539|1|1|13322|1|1|10660|1|1|1288|1|1|12229|3|1|12230|3|1|12231|3|1|13560|3|1|13561|3|1|13562|3|1|10898|3|1|10899|3|1|10900|3|1|5574|3|1|5575|3|1|5576|3|1|1581|3|1|1582|3|1|1583|3|1|7008|3|1|6997|3|1|6956|3|1|6986|3|1|6975|3|1|6967|3|1|6945|3|1|6934|3|1|6927|3|1|6928|3|1|6929|3|1|6916|3|1|6917|3|1|6918|3|1|7078|3|1|7079|3|1|7080|3|1|7089|3|1|7090|3|1|7091|3|1|7067|3|1|7068|3|1|7069|3|1|7056|3|1|7057|3|1|7058|3|1|4346|3|1|4335|3|1|4294|3|1|4324|3|1|4313|3|1|4305|3|1|4283|3|1|4272|3|1|4265|3|1|4266|3|1|4267|3|1|4254|3|1|4255|3|1|4256|3|1|4416|3|1|4417|3|1|4418|3|1|4427|3|1|4428|3|1|4429|3|1|4405|3|1|4406|3|1|4407|3|1|4394|3|1|4395|3|1|4396|3|1|8339|3|1|8328|3|1|8287|3|1|8317|3|1|8306|3|1|8298|3|1|8299|3|1|8300|3|1|8301|3|1|8276|3|1|8265|3|1|8258|3|1|8259|3|1|8260|3|1|8247|3|1|8248|3|1|8249|3|1|8409|3|1|8410|3|1|8411|3|1|8398|3|1|8399|3|1|8400|3|1|8387|3|1|8388|3|1|8389|3|1|10308|1|1|10286|1|1|9703|1|1|1068|1|1|232|1|1|463|1|1|1057|1|1|141|1|1|138|1|1|452|1|1|1509|1|1|1507|1|1|1520|1|1|1518|1|1|1477|1|1|1455|1|1|11716|1|1|10880|1|1|11111|1|1|2410|1|1|1805|1|1|1024|1|1|1035|1|1|419|1|1|430|1|1|7010|3|1|6999|3|1|6957|3|1|6958|3|1|6959|3|1|6988|3|1|6977|3|1|6968|3|1|6969|3|1|6970|3|1|6946|3|1|6947|3|1|6948|3|1|6935|3|1|6936|3|1|6937|3|1|7131|3|1|7120|3|1|7109|3|1|7098|3|1|4348|3|1|4337|3|1|4295|3|1|4296|3|1|4297|3|1|4326|3|1|4315|3|1|4306|3|1|4307|3|1|4308|3|1|4284|3|1|4285|3|1|4286|3|1|4273|3|1|4274|3|1|4275|3|1|4469|3|1|4458|3|1|4447|3|1|4436|3|1|8341|3|1|8330|3|1|8288|3|1|8289|3|1|8290|3|1|8319|3|1|8308|3|1|8277|3|1|8278|3|1|8279|3|1|8266|3|1|8267|3|1|8268|3|1|8462|3|1|8451|3|1|8440|3|1|8429|3|1|10319|1|1|9714|1|1|14290|1|1|13685|1|1|6788|1|1|8119|1|1|1344|1|1|1342|1|1|6321|1|1|6299|1|1|5546|1|1|5544|1|1|5472|1|1|5450|1|1|5716|1|1|5507|1|1|5518|1|1|13499|2|1|13497|2|1|810|2|1|931|2|1|10793|1|1|10791|1|1|10771|1|1|2323|1|1|2321|1|1|2301|1|1|1718|1|1|1716|1|1|7132|3|1|7121|3|1|7081|3|1|7082|3|1|7083|3|1|7110|3|1|7099|3|1|7092|3|1|7093|3|1|7094|3|1|7070|3|1|7071|3|1|7072|3|1|7059|3|1|7060|3|1|7061|3|1|4470|3|1|4459|3|1|4419|3|1|4420|3|1|4421|3|1|4448|3|1|4437|3|1|4430|3|1|4431|3|1|4432|3|1|4408|3|1|4409|3|1|4410|3|1|4397|3|1|4398|3|1|4399|3|1|8463|3|1|8452|3|1|8412|3|1|8413|3|1|8414|3|1|8441|3|1|8430|3|1|8423|3|1|8424|3|1|8425|3|1|8401|3|1|8402|3|1|8403|3|1|8390|3|1|8391|3|1|8392|3|1|5326|3|1|6657|3|1|7988|3|1|9484|1|1|9482|1|1|13465|1|1|208|2|1|2278|2|1|6338|1|1|6336|1|1|5502|1|1|5500|1|1|5513|1|1|5511|1|1|5471|1|1|5470|1|1|5449|1|1|5448|1|1|5733|1|1|5731|1|1|7011|3|1|7000|3|1|6960|3|1|6961|3|1|6962|3|1|6989|3|1|6978|3|1|6971|3|1|6972|3|1|6973|3|1|6949|3|1|6950|3|1|6951|3|1|6938|3|1|6939|3|1|6940|3|1|4349|3|1|4338|3|1|4298|3|1|4299|3|1|4300|3|1|4327|3|1|4316|3|1|4309|3|1|4310|3|1|4311|3|1|4287|3|1|4288|3|1|4289|3|1|4276|3|1|4277|3|1|4278|3|1|8342|3|1|8331|3|1|8291|3|1|8292|3|1|8293|3|1|8320|3|1|8309|3|1|8302|3|1|8303|3|1|8304|3|1|8280|3|1|8281|3|1|8282|3|1|8269|3|1|8270|3|1|8271|3|1|992|1|1|990|1|1|387|1|1|385|1|1|2257|2|1|2255|2|1|1467|1|1|6316|1|1|6314|1|1|6294|1|1|5711|1|1|5709|1|1|89|1|1|1244|1|1|10787|1|1|2317|1|1|1468|1|1|1470|1|1|1712|1|1|1003|1|1|1001|1|1|982|1|1|398|1|1|396|1|1|377|1|1|972|3|1|125|3|1|2036|1|1|1393|1|1|1404|1|1|2570|1|1|2548|1|1|10804|1|1|10802|1|1|10783|1|1|2334|1|1|2332|1|1|2313|1|1|1729|1|1|1727|1|1|1708|1|1|2829|1|1|2827|1|1|6327|1|1|6325|1|1|6307|1|1|6306|1|1|5722|1|1|5720|1|1|5702|1|1|5701|1|1|11265|1|1|11507|1|1|10848|1|1|10846|1|1|2378|1|1|2376|1|1|1542|1|1|1540|1|1|1531|1|1|1529|1|1|1488|1|1|1773|1|1|1771|1|1|9319|3|1|487|3|1|608|3|1|5|3|1|6|3|1|7|3|1|729|3|1|850|3|1|1092|3|1|1213|3|1|9340|1|1|9318|1|1|100|1|1|1255|1|1|9395|1|1|11144|1|1|1365|1|1|2069|1|1|2432|1|1|1585|1|1|2553|1|1|739|2|1|737|2|1|860|2|1|858|2|1|1828|1|1|1826|1|1|158|1|1|140|1|1|142|1|1|183|1|1|9467|1|1|9445|1|1|9538|1|1|13476|1|1|6371|1|1|6369|1|1|5535|1|1|5533|1|1|5482|1|1|5481|1|1|5464|1|1|5466|1|1|5766|1|1|5764|1|1|10330|1|1|9725|1|1|1019|1|1|170|1|1|414|1|1|997|1|1|975|1|1|148|1|1|126|1|1|392|1|1|9494|1|1|9505|1|1|6656|3|1|7987|3|1|6308|1|1|5703|1|1|147|1|1|169|1|1|13|1|1|11|1|1|562|1|1|1008|1|1|202|1|1|159|1|1|403|1|1|10732|1|1|1426|1|1|1413|1|1|1415|1|1|2581|1|1|9453|1|1|13455|1|1|13453|1|1|13433|1|1|223|1|1|9539|1|1|9537|1|1|13477|1|1|13475|1|1|10309|1|1|10307|1|1|10287|1|1|9704|1|1|9702|1|1|1069|1|1|1067|1|1|1015|1|1|233|1|1|231|1|1|179|1|1|190|1|1|464|1|1|462|1|1|410|1|1|10661|1|1|10659|1|1|12124|1|1|12122|1|1|12102|1|1|9495|1|1|9493|1|1|9506|1|1|9504|1|1|9463|1|1|9441|1|1|11640|1|1|11638|1|1|11618|1|1|11035|1|1|11033|1|1|4138|1|1|4116|1|1|1499|1|1|13498|2|1|571|2|1|230|2|1|12960|1|1|12958|1|1|12355|1|1|12353|1|1|10320|1|1|10318|1|1|10299|1|1|9715|1|1|9713|1|1|9694|1|1|14291|1|1|14289|1|1|13686|1|1|13684|1|1|1048|1|1|212|1|1|443|1|1|6789|1|1|3654|1|1|3652|1|1|3632|1|1|3643|1|1|3641|1|1|3049|1|1|3047|1|1|3038|1|1|3036|1|1|4974|1|1|8120|1|1|973|3|1|974|3|1|127|3|1|13452|2|1|1473|2|1|8186|2|1|10363|1|1|9527|1|1|9758|1|1|13410|1|1|56|1|1|67|1|1|1233|1|1|9362|1|1|10303|1|1|9454|1|1|9698|1|1|13003|1|1|13014|1|1|12398|1|1|12409|1|1|6348|1|1|6359|1|1|5743|1|1|5754|1|1|5017|1|1|5028|1|1|13862|2|1|13860|2|1|832|2|1|953|2|1|1883|2|1|1881|2|1|10815|1|1|10813|1|1|2345|1|1|2343|1|1|1740|1|1|1738|1|1|1052|1|1|216|1|1|203|1|1|205|1|1|447|1|1|12541|1|1|14598|1|1|5886|1|1|3246|1|1|3224|1|1|4555|1|1|1354|1|1|1332|1|1|6332|1|1|5526|1|1|5525|1|1|5483|1|1|5727|1|1|13047|1|1|12211|1|1|12442|1|1|11727|1|1|11122|1|1|6392|1|1|5556|1|1|5476|1|1|5473|1|1|5454|1|1|5451|1|1|5787|1|1|5061|1|1|4225|1|1|14054|2|1|14175|2|1|2075|2|1|8488|2|1|7625|3|1|6778|3|1|2665|3|1|3874|3|1|3996|3|1|4963|3|1|5205|3|1|8714|3|1|8835|3|1|8956|3|1|8109|3|1|12135|1|1|12133|1|1|12114|1|1|10364|1|1|10362|1|1|9528|1|1|9526|1|1|9474|1|1|9759|1|1|9757|1|1|11651|1|1|11649|1|1|11630|1|1|11046|1|1|11044|1|1|11025|1|1|3676|1|1|3674|1|1|2840|1|1|2838|1|1|2851|1|1|2849|1|1|2818|1|1|2816|1|1|2808|1|1|2786|1|1|2797|1|1|3071|1|1|3069|1|1|4149|1|1|4128|1|1|13466|1|1|13464|1|1|13445|1|1|1432|1|1|1430|1|1|1412|1|1|1411|1|1|2620|1|1|2618|1|1|5493|1|1|5492|1|1|496|1|1|617|1|1|859|1|1|3873|3|3|983|1|1|378|1|1|2592|1|1|12118|1|1|9478|1|1|2812|1|1|2790|1|1|2801|1|1|4132|1|1|10666|1|1|1970|1|1|1347|1|1|2212|1|1|1472|1|1|1469|1|1|6343|1|1|5494|1|1|5738|1|1|11980|3|1|10649|3|1|5325|3|1|4016|3|1|4005|3|1|5204|3|1|2279|2|1|2277|2|1|2207|2|1|2185|2|1|984|1|1|379|1|1|84|1|1|1079|1|1|152|1|1|149|1|1|130|1|1|474|1|1|163|1|1|160|1|1|7635|1|1|8966|1|1|12179|1|1|12177|1|1|9518|1|1|2884|1|1|2882|1|1|2862|1|1|2860|1|1|4193|1|1|738|2|1|10341|1|1|10352|1|1|9736|1|1|9747|1|1|14301|1|1|14279|1|1|13696|1|1|174|1|1|171|1|1|6799|1|1|6777|1|1|8130|1|1|8108|1|1|12475|1|1|12596|1|1|12838|1|1|9406|1|1|10561|1|1|13344|1|1|14532|1|1|10682|1|1|11386|1|1|11749|1|1|10902|1|1|11870|1|1|5820|1|1|5941|1|1|6183|1|1|3169|1|1|3147|1|1|3158|1|1|3290|1|1|3268|1|1|3279|1|1|2707|1|1|3532|1|1|3510|1|1|3521|1|1|4489|1|1|4610|1|1|4852|1|1|10177|2|1|10175|2|1|502|1|1|13487|1|1|1058|1|1|1056|1|1|1004|1|1|453|1|1|451|1|1|399|1|1|1959|1|1|1937|1|1|1376|1|1|2201|1|1|2179|1|1|11981|3|1|9924|3|1|10166|3|1|10650|3|1|491|3|1|1333|3|1|4017|3|1|4006|3|1|740|2|1|861|2|1|488|3|2|609|3|2|8|3|2|9|3|2|10|3|2|730|3|2|851|3|2|1093|3|2|1214|3|2|1366|1|1|1364|1|1|1346|1|1|1345|1|1|2554|1|1|2552|1|1|1478|1|1|1456|1|1|11991|1|1|5336|1|1|1299|1|1|6667|1|1|2685|1|1|2674|1|1|7998|1|1|13036|1|1|12431|1|1|6381|1|1|6312|1|1|6309|1|1|5776|1|1|5707|1|1|5704|1|1|3741|1|1|3719|1|1|3136|1|1|3114|1|1|5050|1|1|563|1|1|561|1|1|10331|1|1|10329|1|1|9726|1|1|9724|1|1|10798|1|1|10776|1|1|2328|1|1|2306|1|1|1479|1|1|1481|1|1|1457|1|1|1459|1|1|1723|1|1|9489|1|1|1025|1|1|1023|1|1|1036|1|1|1034|1|1|993|1|1|420|1|1|418|1|1|431|1|1|429|1|1|388|1|1|10784|1|1|2314|1|1|1709|1|1|10374|1|1|9458|1|1|9455|1|1|9769|1|1|14312|1|1|13707|1|1|6810|1|1|8141|1|1|5837|1|1|5815|1|1|988|1|1|985|1|1|383|1|1|380|1|1|11232|1|1|1926|1|1|1915|1|1|2157|1|1|2520|1|1|1673|1|1|2641|1|1|5327|3|1|6536|3|1|7141|3|1|7262|3|1|6658|3|1|7383|3|1|7504|3|1|7746|3|1|7867|3|1|3148|3|1|3269|3|1|3390|3|1|3511|3|1|3753|3|1|4479|3|1|4600|3|1|4721|3|1|4842|3|1|5084|3|1|8472|3|1|8593|3|1|7989|3|1|9077|3|1|9198|3|1|9485|1|1|11662|1|1|11660|1|1|11057|1|1|11055|1|1|12146|1|1|12144|1|1|10826|1|1|10824|1|1|10837|1|1|10835|1|1|10794|1|1|10772|1|1|2356|1|1|2354|1|1|2367|1|1|2365|1|1|2324|1|1|2302|1|1|1751|1|1|1749|1|1|1762|1|1|1760|1|1|1719|1|1|4160|1|1|6376|1|1|5540|1|1|5527|1|1|5529|1|1|5771|1|1|7624|3|1|8955|3|1|893|2|1|891|2|1|1277|2|1|207|1|1|204|1|1|18|1|1|9330|1|1|9328|1|1|79|1|1|77|1|1|6349|1|1|6347|1|1|6360|1|1|6358|1|1|6318|1|1|6317|1|1|6296|1|1|6295|1|1|5744|1|1|5742|1|1|5755|1|1|5753|1|1|5713|1|1|5712|1|1|10870|1|1|10868|1|1|2400|1|1|2398|1|1|1564|1|1|1562|1|1|1553|1|1|1551|1|1|1510|1|1|1521|1|1|1795|1|1|1793|1|1|9373|1|1|9384|1|1|10550|1|1|10528|1|1|13333|1|1|13311|1|1|10671|1|1|1310|1|1|497|1|1|495|1|1|618|1|1|616|1|1|35|1|1|33|1|1|14|1|1|1223|1|1|1221|1|1|13861|2|1|593|2|1|8185|2|1|10300|1|1|9695|1|1|1049|1|1|213|1|1|162|1|1|164|1|1|444|1|1|1016|1|1|180|1|1|191|1|1|151|1|1|153|1|1|129|1|1|131|1|1|411|1|1|9511|2|1|13815|2|1|14115|2|1|14113|2|1|14236|2|1|14234|2|1|13500|2|1|1836|2|1|2136|2|1|2134|2|1|8549|2|1|8208|2|1|8136|2|1|8114|2|1|1355|1|1|1353|1|1|6393|1|1|6391|1|1|6340|1|1|6339|1|1|5557|1|1|5555|1|1|5504|1|1|5503|1|1|5515|1|1|5514|1|1|5475|1|1|5477|1|1|5453|1|1|5455|1|1|5788|1|1|5786|1|1|5735|1|1|5734|1|1|5487|1|1|5484|1|1|11634|1|1|10785|1|1|11029|1|1|2315|1|1|1489|1|1|1471|1|1|1710|1|1|1005|1|1|987|1|1|989|1|1|400|1|1|382|1|1|384|1|1|1030|1|1|1041|1|1|1017|1|1|224|1|1|181|1|1|192|1|1|425|1|1|436|1|1|412|1|1|6319|1|1|6297|1|1|5714|1|1|9464|1|1|9442|1|1|173|1|1|175|1|1|14356|1|1|13520|1|1|13509|1|1|13751|1|1|6854|1|1|21|2|1|761|2|1|759|2|1|741|2|1|882|2|1|880|2|1|862|2|1|12063|1|1|5848|1|1|5408|1|1|2768|1|1|2746|1|1|4077|1|1|111|1|1|1266|1|1|11695|1|1|11693|1|1|10859|1|1|10857|1|1|10805|1|1|11090|1|1|11088|1|1|2389|1|1|2387|1|1|2335|1|1|1784|1|1|1782|1|1|1730|1|1|2830|1|1|68|2|1|66|2|1|750|2|1|748|2|1|871|2|1|869|2|1|11997|1|1|11287|1|1|10664|1|1|11529|1|1|5342|1|1|3312|1|1|2691|1|1|2669|1|1|2680|1|1|3554|1|1|4011|1|1|8713|3|3|8834|3|3|1417|1|1|1414|1|1|13806|1|1|5887|1|1|5885|1|1|10176|2|1|12971|1|1|12969|1|1|12949|1|1|12366|1|1|12364|1|1|10342|1|1|10340|1|1|10353|1|1|10351|1|1|10310|1|1|10288|1|1|9737|1|1|9735|1|1|9748|1|1|9746|1|1|9705|1|1|14302|1|1|14300|1|1|14280|1|1|13697|1|1|13695|1|1|1070|1|1|234|1|1|465|1|1|6800|1|1|4985|1|1|8131|1|1|5215|3|1|10605|1|1|11166|1|1|10726|1|1|1420|1|1|1351|1|1|1348|1|1|2091|1|1|2454|1|1|1607|1|1|2575|1|1|3191|1|1|10385|1|1|9549|1|1|9780|1|1|14323|1|1|13718|1|1|6821|1|1|8152|1|1|1850|1|1|1848|1|1|1829|1|1|5498|1|1|5495|1|1|10314|1|1|10292|1|1|9465|1|1|9443|1|1|9709|1|1|9803|3|1|9320|3|1|10045|3|1|10408|3|1|10529|3|1|13312|3|1|489|3|1|490|3|1|610|3|1|611|3|1|612|3|1|731|3|1|732|3|1|733|3|1|852|3|1|853|3|1|854|3|1|1094|3|1|1095|3|1|1096|3|1|1215|3|1|1216|3|1|1217|3|1|6679|3|1|6668|3|1|8010|3|1|7999|3|1|7866|3|1|2666|3|1|3389|3|1|3752|3|1|4478|3|1|4599|3|1|3997|3|1|4720|3|1|4841|3|1|5083|3|1|9197|3|1|12115|1|1|9475|1|1|9457|1|1|9459|1|1|11631|1|1|11026|1|1|2809|1|1|2787|1|1|2798|1|1|4129|1|1|1074|1|1|238|1|1|225|1|1|227|1|1|469|1|1|10683|1|1|10681|1|1|10663|1|1|10662|1|1|11871|1|1|11869|1|1|5821|1|1|5819|1|1|5942|1|1|5940|1|1|6184|1|1|6182|1|1|2708|1|1|2706|1|1|1157|2|1|1155|2|1|1278|2|1|1276|2|1|11992|1|1|11990|1|1|5337|1|1|5335|1|1|2686|1|1|2684|1|1|2675|1|1|2673|1|1|6382|1|1|6380|1|1|6329|1|1|6328|1|1|6311|1|1|6313|1|1|5777|1|1|5775|1|1|5724|1|1|5723|1|1|5706|1|1|5708|1|1|6354|1|1|6365|1|1|6341|1|1|5548|1|1|5547|1|1|5505|1|1|5516|1|1|5749|1|1|5760|1|1|5736|1|1|7626|3|1|6779|3|1|2667|3|1|2668|3|1|3633|3|1|3875|3|1|3998|3|1|3999|3|1|4000|3|1|4964|3|1|4117|3|1|5206|3|1|8715|3|1|8836|3|1|8957|3|1|8110|3|1|10572|1|1|11276|1|1|11254|1|1|10693|1|1|11518|1|1|11496|1|1|1500|1|1|12993|1|1|12991|1|1|12157|1|1|12155|1|1|12168|1|1|12166|1|1|12125|1|1|12103|1|1|12388|1|1|12386|1|1|10386|1|1|10384|1|1|9550|1|1|9548|1|1|9496|1|1|9507|1|1|9781|1|1|9779|1|1|14324|1|1|14322|1|1|13719|1|1|13717|1|1|11673|1|1|11671|1|1|11684|1|1|11682|1|1|11641|1|1|11619|1|1|11068|1|1|11066|1|1|11079|1|1|11077|1|1|11036|1|1|6822|1|1|5007|1|1|4171|1|1|4182|1|1|4139|1|1|8153|1|1|12982|1|1|12980|1|1|12961|1|1|12377|1|1|12375|1|1|12356|1|1|10375|1|1|10373|1|1|10321|1|1|9770|1|1|9768|1|1|9716|1|1|14313|1|1|14311|1|1|14292|1|1|13708|1|1|13706|1|1|13687|1|1|6811|1|1|6790|1|1|3687|1|1|3685|1|1|3698|1|1|3696|1|1|3665|1|1|3663|1|1|3655|1|1|3644|1|1|3082|1|1|3080|1|1|3093|1|1|3091|1|1|3060|1|1|3058|1|1|3050|1|1|3039|1|1|4996|1|1|4975|1|1|8142|1|1|8121|1|1|13488|1|1|13486|1|1|13456|1|1|13434|1|1|10301|1|1|9696|1|1|13446|1|1|1063|1|1|1050|1|1|214|1|1|206|1|1|458|1|1|445|1|1|892|2|1|9417|1|1|13355|1|1|11155|1|1|11133|1|1|1387|1|1|1398|1|1|2080|1|1|2058|1|1|2443|1|1|2421|1|1|1596|1|1|2564|1|1|2542|1|1|1059|1|1|454|1|1|7636|1|1|8967|1|1|518|1|1|639|1|1|881|1|1|46|1|1|44|1|1|1101|1|1|254|1|1|1839|1|1|1837|1|1|1817|1|1|1377|1|1|1375|1|1|12129|1|1|12107|1|1|9500|1|1|4143|1|1|4121|1|1|1483|1|1|1480|1|1|1461|1|1|1458|1|1|10248|2|1|2258|2|1|2218|2|1|994|1|1|389|1|1|2614|2|1|760|2|1|976|3|1|977|3|1|978|3|1|995|1|1|390|1|1|10178|2|1|11508|2|1|11506|2|1|6063|2|1|6061|2|1|2191|2|1|2189|2|1|24|1|1|22|1|1|584|1|1|1006|1|1|401|1|1|552|2|1|550|2|1|673|2|1|671|2|1|69|2|1|783|2|1|781|2|1|794|2|1|792|2|1|772|2|1|770|2|1|751|2|1|904|2|1|902|2|1|915|2|1|913|2|1|872|2|1|1156|2|1|310|2|1|308|2|1|1021|1|1|1018|1|1|185|1|1|182|1|1|196|1|1|193|1|1|416|1|1|413|1|1|7646|1|1|8977|1|1|10809|1|1|2339|1|1|1490|1|1|1492|1|1|1734|1|1|2834|1|1|10754|1|1|5859|1|1|1448|1|1|1435|1|1|1437|1|1|2603|1|1|10816|1|1|2346|1|1|1741|1|1|12201|1|1|12199|1|1|9540|1|1|13478|1|1|4215|1|1|5329|3|1|5330|3|1|5331|3|1|6537|3|1|7142|3|1|7263|3|1|6660|3|1|6661|3|1|6662|3|1|7384|3|1|7505|3|1|7747|3|1|7868|3|1|3149|3|1|3270|3|1|3391|3|1|3512|3|1|3754|3|1|4480|3|1|4601|3|1|4722|3|1|4843|3|1|5085|3|1|8473|3|1|8594|3|1|7991|3|1|7992|3|1|7993|3|1|9078|3|1|9199|3|1|10188|2|1|10186|2|1|894|2|1|13190|3|1|11859|3|1|5809|3|1|5930|3|1|5328|3|1|6051|3|1|6172|3|1|6414|3|1|6535|3|1|7140|3|1|7261|3|1|6659|3|1|7382|3|1|7503|3|1|7745|3|1|4049|3|1|4060|3|1|4038|3|1|4027|3|1|5226|3|1|8471|3|1|8592|3|1|7990|3|1|9076|3|1|10056|2|1|10054|2|1|742|2|1|743|2|1|744|2|1|863|2|1|864|2|1|865|2|1|10672|1|1|10670|1|1|749|2|1|870|2|1|5216|3|1|10849|1|1|2379|1|1|1543|1|1|1532|1|1|1774|1|1|1080|1|1|1078|1|1|1026|1|1|1037|1|1|475|1|1|473|1|1|421|1|1|432|1|1|6783|3|1|551|2|1|672|2|1|70|2|1|32|2|1|782|2|1|793|2|1|771|2|1|752|2|1|903|2|1|914|2|1|873|2|1|309|2|1|10789|1|1|10786|1|1|2319|1|1|2316|1|1|1714|1|1|1711|1|1|12965|1|1|12116|1|1|12360|1|1|10325|1|1|9519|1|1|9476|1|1|9720|1|1|11632|1|1|11027|1|1|3659|1|1|3637|1|1|3648|1|1|2810|1|1|2788|1|1|2799|1|1|3054|1|1|3043|1|1|4979|1|1|4130|1|1|13058|1|1|12453|1|1|6403|1|1|6323|1|1|6320|1|1|6301|1|1|6298|1|1|5798|1|1|5718|1|1|5715|1|1|5072|1|1|12563|1|1|14620|1|1|5908|1|1|4577|1|1|13026|1|1|13024|1|1|12190|1|1|12188|1|1|12136|1|1|12421|1|1|12419|1|1|10365|1|1|9529|1|1|9760|1|1|11706|1|1|11704|1|1|11652|1|1|11101|1|1|11099|1|1|11047|1|1|3731|1|1|3729|1|1|3709|1|1|3707|1|1|3677|1|1|2895|1|1|2893|1|1|2841|1|1|2873|1|1|2871|1|1|2852|1|1|2819|1|1|3126|1|1|3124|1|1|3104|1|1|3102|1|1|3072|1|1|5040|1|1|4204|1|1|4150|1|1|6373|1|1|6372|1|1|5537|1|1|5536|1|1|5486|1|1|5488|1|1|5768|1|1|5767|1|1|14114|2|1|14235|2|1|13501|2|1|13463|2|1|13441|2|1|1522|2|1|1484|2|1|1462|2|1|8548|2|1|8207|2|1|5531|1|1|5528|1|1|524|1|1|1954|1|1|10396|1|1|9469|1|1|9466|1|1|9447|1|1|9444|1|1|9791|1|1|14334|1|1|14345|1|1|13729|1|1|13740|1|1|7668|1|1|6832|1|1|6843|1|1|8999|1|1|8163|1|1|8174|1|1|11982|3|1|13191|3|1|9925|3|1|10167|3|1|13796|3|1|11255|3|1|10651|3|1|11497|3|1|11860|3|1|5810|3|1|5931|3|1|6052|3|1|6173|3|1|6415|3|1|1938|3|1|1334|3|1|2180|3|1|2543|3|1|7647|3|1|7627|3|1|6780|3|1|3634|3|1|4050|3|1|4061|3|1|4039|3|1|4028|3|1|4018|3|1|4007|3|1|4965|3|1|4118|3|1|5227|3|1|8054|3|1|8736|3|1|8725|3|1|8857|3|1|8846|3|1|8978|3|1|8958|3|1|8111|3|1|10795|1|1|10773|1|1|2325|1|1|2303|1|1|1720|1|1|16|1|1|9819|1|1|13328|1|1|689|1|1|1294|1|1|14296|1|1|13447|1|1|13449|1|1|13691|1|1|6794|1|1|13807|1|1|13805|1|1|564|1|1|9486|1|1|12013|1|1|12717|1|1|13080|1|1|12233|1|1|13201|1|1|5358|1|1|6062|1|1|6425|1|1|5578|1|1|6546|1|1|6689|1|1|7877|1|1|2718|1|1|2729|1|1|2696|1|1|3411|1|1|3400|1|1|3774|1|1|3763|1|1|2927|1|1|2916|1|1|3895|1|1|3884|1|1|4731|1|1|5094|1|1|8020|1|1|9208|1|1|999|1|1|996|1|1|394|1|1|391|1|1|1434|1|1|1433|1|1|2642|1|1|2640|1|1|10820|1|1|2350|1|1|1501|1|1|1503|1|1|1745|1|1|1949|1|1|1947|1|1|9934|1|1|623|1|1|40|1|1|1228|1|1|507|1|1|628|1|1|229|1|1|226|1|1|14357|1|1|14355|1|1|13521|1|1|13519|1|1|13510|1|1|13508|1|1|13467|1|1|13752|1|1|13750|1|1|6855|1|1|2856|2|1|8187|2|1|8147|2|1|9879|1|1|2015|1|1|2013|1|1|6398|1|1|5562|1|1|5549|1|1|5551|1|1|5793|1|1|9880|1|1|9878|1|1|13389|1|1|13387|1|1|12497|1|1|12618|1|1|12057|1|1|12860|1|1|10616|1|1|13399|1|1|14554|1|1|10737|1|1|10668|1|1|10665|1|1|11408|1|1|11771|1|1|10924|1|1|11892|1|1|5842|1|1|5963|1|1|5402|1|1|6205|1|1|6733|1|1|3202|1|1|3213|1|1|3180|1|1|3323|1|1|3334|1|1|3301|1|1|2762|1|1|2740|1|1|3433|1|1|3565|1|1|3576|1|1|3543|1|1|3796|1|1|2949|1|1|3917|1|1|4511|1|1|4632|1|1|4071|1|1|4874|1|1|8064|1|1|13438|3|1|7628|3|1|7629|3|1|7630|3|1|6781|3|1|6782|3|1|3635|3|1|3636|3|1|2789|3|1|4966|3|1|4967|3|1|4968|3|1|4119|3|1|4120|3|1|8959|3|1|8960|3|1|8961|3|1|8112|3|1|8113|3|1|10305|1|1|10302|1|1|9700|1|1|9697|1|1|1054|1|1|1051|1|1|218|1|1|215|1|1|449|1|1|446|1|1|7657|1|1|8988|1|1|519|1|1|517|1|1|498|1|1|640|1|1|638|1|1|619|1|1|90|1|1|88|1|1|36|1|1|1245|1|1|1243|1|1|1224|1|1|9874|2|1|13863|2|1|13383|2|1|14137|2|1|14135|2|1|14065|2|1|14043|2|1|14258|2|1|14256|2|1|14186|2|1|14164|2|1|1884|2|1|2158|2|1|2156|2|1|2086|2|1|2064|2|1|8571|2|1|8499|2|1|8477|2|1|11177|1|1|10677|1|1|10655|1|1|1992|1|1|2003|1|1|1981|1|1|1358|1|1|1336|1|1|2102|1|1|2234|1|1|2245|1|1|2223|1|1|2465|1|1|1618|1|1|2586|1|1|9814|1|1|9812|1|1|9352|1|1|9350|1|1|9331|1|1|10540|1|1|10538|1|1|13323|1|1|13321|1|1|684|1|1|682|1|1|80|1|1|926|1|1|924|1|1|1289|1|1|1287|1|1|1010|1|1|1007|1|1|405|1|1|402|1|1|10727|1|1|10725|1|1|1421|1|1|1419|1|1|1368|1|1|1367|1|1|1350|1|1|1352|1|1|2576|1|1|2574|1|1|2556|1|1|2555|1|1|11331|1|1|10688|1|1|11573|1|1|11876|1|1|5947|1|1|6189|1|1|2025|1|1|1369|1|1|2267|1|1|2557|1|1|2713|1|1|10332|1|1|9727|1|1|6330|1|1|5725|1|1|535|1|1|106|1|1|10187|2|1|10165|2|1|895|2|1|8009|2|1|5497|1|1|5499|1|1|15|1|1|7146|3|1|3153|3|1|3877|3|1|3878|3|1|3879|3|1|4484|3|1|5208|3|1|5209|3|1|5210|3|1|8717|3|1|8718|3|1|8719|3|1|8838|3|1|8839|3|1|8840|3|1|1861|1|1|1859|1|1|10311|1|1|10289|1|1|9706|1|1|1071|1|1|1020|1|1|1022|1|1|235|1|1|184|1|1|186|1|1|195|1|1|197|1|1|466|1|1|415|1|1|417|1|1|1158|2|1|1279|2|1|10055|2|1|505|2|1|626|2|1|816|2|1|814|2|1|805|2|1|803|2|1|762|2|1|745|2|1|746|2|1|747|2|1|937|2|1|935|2|1|883|2|1|866|2|1|867|2|1|868|2|1|1110|2|1|263|2|1|1231|2|1|9923|3|1|736|3|1|857|3|1|6678|3|1|2670|3|1|2671|3|1|2672|3|1|3876|3|1|4001|3|1|4002|3|1|4003|3|1|5207|3|1|7996|3|1|8716|3|1|8837|3|1|12486|1|1|12464|1|1|12607|1|1|12585|1|1|12024|1|1|12849|1|1|12827|1|1|9428|1|1|10583|1|1|10594|1|1|13366|1|1|13377|1|1|14543|1|1|14521|1|1|10704|1|1|10715|1|1|11397|1|1|11375|1|1|11760|1|1|11738|1|1|10913|1|1|11881|1|1|5831|1|1|5952|1|1|5369|1|1|6194|1|1|6700|1|1|4500|1|1|4621|1|1|4863|1|1|8031|1|1|11645|1|1|11623|1|1|10796|1|1|10774|1|1|11040|1|1|2326|1|1|2304|1|1|1511|1|1|1482|1|1|1460|1|1|1721|1|1|6345|1|1|6342|1|1|5509|1|1|5506|1|1|5520|1|1|5517|1|1|5740|1|1|5737|1|1|10336|1|1|9487|1|1|9731|1|1|10694|1|1|10692|1|1|513|1|1|9813|1|1|683|1|1|925|1|1|13801|3|1|6539|3|1|6540|3|1|6541|3|1|1822|3|1|7144|3|1|7145|3|1|7265|3|1|7266|3|1|7267|3|1|7386|3|1|7387|3|1|7388|3|1|7507|3|1|7508|3|1|7509|3|1|7749|3|1|7750|3|1|7751|3|1|7870|3|1|7871|3|1|7872|3|1|3151|3|1|3152|3|1|3272|3|1|3273|3|1|3274|3|1|3393|3|1|3394|3|1|3395|3|1|3514|3|1|3515|3|1|3516|3|1|3756|3|1|3757|3|1|3758|3|1|4482|3|1|4483|3|1|4603|3|1|4604|3|1|4605|3|1|4724|3|1|4725|3|1|4726|3|1|4845|3|1|4846|3|1|4847|3|1|5087|3|1|5088|3|1|5089|3|1|8475|3|1|8476|3|1|8596|3|1|8597|3|1|8598|3|1|9080|3|1|9081|3|1|9082|3|1|9201|3|1|9202|3|1|9203|3|1|1027|1|1|1038|1|1|998|1|1|1000|1|1|422|1|1|433|1|1|393|1|1|395|1|1|14378|1|1|13542|1|1|13531|1|1|13773|1|1|6876|1|1|1416|1|1|1418|1|1|2622|1|1|2621|1|1|1388|1|1|1386|1|1|1399|1|1|1397|1|1|1357|1|1|1356|1|1|1335|1|1|2565|1|1|2563|1|1|10199|2|1|10197|2|1|10179|2|1|2730|2|1|2728|2|1|12002|1|1|5347|1|1|1321|1|1|8879|3|1|9022|3|1|8175|3|1|12147|1|1|11717|1|1|11715|1|1|10881|1|1|10879|1|1|10827|1|1|10838|1|1|11112|1|1|11110|1|1|2411|1|1|2409|1|1|2357|1|1|2368|1|1|1806|1|1|1804|1|1|1752|1|1|1763|1|1|4161|1|1|10270|2|1|9525|2|1|14208|2|1|13474|2|1|5881|2|1|2009|2|1|2108|2|1|2280|2|1|2240|2|1|2259|2|1|2251|2|1|2229|2|1|1506|2|1|1495|2|1|8188|2|1|585|1|1|583|1|1|12465|3|1|12586|3|1|12707|3|1|12828|3|1|13070|3|1|9804|3|1|9322|3|1|9323|3|1|9324|3|1|10046|3|1|10409|3|1|10530|3|1|13917|3|1|13313|3|1|14038|3|1|14159|3|1|14401|3|1|14522|3|1|11134|3|1|11376|3|1|11739|3|1|2059|3|1|2422|3|1|7163|3|1|7152|3|1|7284|3|1|7273|3|1|6712|3|1|6723|3|1|6701|3|1|6690|3|1|6680|3|1|6669|3|1|7405|3|1|7394|3|1|7526|3|1|7515|3|1|7768|3|1|7757|3|1|7889|3|1|7878|3|1|4501|3|1|4490|3|1|4622|3|1|4611|3|1|4743|3|1|4732|3|1|4864|3|1|4853|3|1|5106|3|1|5095|3|1|8494|3|1|8483|3|1|8615|3|1|8604|3|1|8043|3|1|8032|3|1|8021|3|1|8011|3|1|8000|3|1|9099|3|1|9088|3|1|9220|3|1|9209|3|1|11663|1|1|11058|1|1|5332|3|1|5333|3|1|5334|3|1|6538|3|1|7143|3|1|7264|3|1|6663|3|1|6664|3|1|6665|3|1|7385|3|1|7506|3|1|7748|3|1|7869|3|1|3150|3|1|3271|3|1|3392|3|1|3513|3|1|3755|3|1|4481|3|1|4602|3|1|4104|3|1|4093|3|1|4082|3|1|4723|3|1|4844|3|1|5086|3|1|5259|3|1|5270|3|1|5248|3|1|5237|3|1|8474|3|1|8595|3|1|7994|3|1|7995|3|1|8964|3|1|8117|3|1|9079|3|1|9200|3|1|10806|1|1|10788|1|1|10790|1|1|2336|1|1|2318|1|1|2320|1|1|1731|1|1|1713|1|1|1715|1|1|2831|1|1|12140|1|1|10369|1|1|9533|1|1|9520|1|1|9522|1|1|9764|1|1|2845|1|1|2823|1|1|4154|1|1|7631|3|1|7632|3|1|7633|3|1|6784|3|1|6785|3|1|6786|3|1|3638|3|1|3639|3|1|3640|3|1|2791|3|1|2792|3|1|2793|3|1|4969|3|1|4970|3|1|4971|3|1|4122|3|1|4123|3|1|4124|3|1|8962|3|1|8963|3|1|8115|3|1|8116|3|1|9385|2|1|9383|2|1|10067|2|1|10065|2|1|553|2|1|674|2|1|71|2|1|72|2|1|73|2|1|838|2|1|836|2|1|827|2|1|825|2|1|784|2|1|795|2|1|773|2|1|753|2|1|754|2|1|755|2|1|959|2|1|957|2|1|948|2|1|946|2|1|905|2|1|916|2|1|874|2|1|875|2|1|876|2|1|1159|2|1|1121|2|1|1099|2|1|311|2|1|1280|2|1|1242|2|1|1220|2|1|1060|1|1|1009|1|1|1011|1|1|455|1|1|404|1|1|406|1|1|12126|1|1|12104|1|1|9497|1|1|9508|1|1|9468|1|1|9470|1|1|9446|1|1|9448|1|1|11642|1|1|11620|1|1|11037|1|1|4140|1|1|9935|1|1|9933|1|1|1494|1|1|1491|1|1|529|1|1|650|1|1|29|1|1|12120|1|1|12117|1|1|9480|1|1|9477|1|1|14367|1|1|13762|1|1|11636|1|1|11633|1|1|11031|1|1|11028|1|1|7701|1|1|6865|1|1|2814|1|1|2811|1|1|2803|1|1|2800|1|1|4134|1|1|4131|1|1|9032|1|1|8196|1|1|9335|1|1|9341|1|1|9339|1|1|530|1|1|528|1|1|101|1|1|99|1|1|47|1|1|1256|1|1|1254|1|1|12180|1|1|2885|1|1|2863|1|1|4194|1|1|6404|1|1|6402|1|1|6351|1|1|6350|1|1|6362|1|1|6361|1|1|6322|1|1|6324|1|1|6300|1|1|6302|1|1|5799|1|1|5797|1|1|5746|1|1|5745|1|1|5757|1|1|5756|1|1|5717|1|1|5719|1|1|12962|1|1|12357|1|1|10322|1|1|10304|1|1|10306|1|1|9717|1|1|9699|1|1|9701|1|1|14293|1|1|13688|1|1|1053|1|1|1055|1|1|217|1|1|219|1|1|448|1|1|450|1|1|6791|1|1|3656|1|1|3645|1|1|3051|1|1|3040|1|1|4976|1|1|8122|1|1|10290|3|1|10291|3|1|5217|3|1|10312|1|1|9707|1|1|13457|1|1|13435|1|1|1085|1|1|1072|1|1|236|1|1|228|1|1|480|1|1|467|1|1|11984|3|1|11985|3|1|11986|3|1|12950|3|1|13192|3|1|9808|3|1|9927|3|1|9928|3|1|9929|3|1|10169|3|1|10170|3|1|10171|3|1|13797|3|1|13317|3|1|14281|3|1|11256|3|1|10653|3|1|10654|3|1|11498|3|1|11861|3|1|5811|3|1|5932|3|1|6053|3|1|6174|3|1|6416|3|1|6542|3|1|6543|3|1|6544|3|1|1818|3|1|1939|3|1|1337|3|1|2181|3|1|2544|3|1|7147|3|1|7148|3|1|7149|3|1|7306|3|1|7268|3|1|7269|3|1|7270|3|1|7449|3|1|7389|3|1|7390|3|1|7391|3|1|7570|3|1|7548|3|1|7510|3|1|7511|3|1|7512|3|1|7680|3|1|7691|3|1|7669|3|1|7658|3|1|7648|3|1|7637|3|1|6833|3|1|6844|3|1|6801|3|1|7752|3|1|7753|3|1|7754|3|1|7873|3|1|7874|3|1|7875|3|1|3154|3|1|3155|3|1|3156|3|1|3275|3|1|3276|3|1|3277|3|1|3396|3|1|3397|3|1|3398|3|1|3517|3|1|3518|3|1|3519|3|1|3759|3|1|3760|3|1|3761|3|1|3880|3|1|3881|3|1|3882|3|1|4485|3|1|4486|3|1|4487|3|1|4644|3|1|4606|3|1|4607|3|1|4608|3|1|4105|3|1|4094|3|1|4051|3|1|4083|3|1|4072|3|1|4062|3|1|4040|3|1|4029|3|1|4020|3|1|4021|3|1|4022|3|1|4009|3|1|4010|3|1|4787|3|1|4727|3|1|4728|3|1|4729|3|1|4908|3|1|4886|3|1|4848|3|1|4849|3|1|4850|3|1|5018|3|1|5029|3|1|4986|3|1|5090|3|1|5091|3|1|5092|3|1|5314|3|1|5303|3|1|5260|3|1|5292|3|1|5281|3|1|5271|3|1|5249|3|1|5238|3|1|5228|3|1|5211|3|1|5212|3|1|5213|3|1|8538|3|1|8478|3|1|8479|3|1|8480|3|1|8659|3|1|8637|3|1|8599|3|1|8600|3|1|8601|3|1|8055|3|1|8053|3|1|8769|3|1|8780|3|1|8758|3|1|8747|3|1|8737|3|1|8720|3|1|8721|3|1|8722|3|1|8726|3|1|8890|3|1|8901|3|1|8868|3|1|8858|3|1|8841|3|1|8842|3|1|8843|3|1|8847|3|1|9011|3|1|9000|3|1|8989|3|1|8979|3|1|8968|3|1|8164|3|1|8132|3|1|9143|3|1|9083|3|1|9084|3|1|9085|3|1|9264|3|1|9204|3|1|9205|3|1|9206|3|1|11266|1|1|11264|1|1|13004|1|1|13002|1|1|13015|1|1|13013|1|1|12972|1|1|12399|1|1|12397|1|1|12410|1|1|12408|1|1|12367|1|1|10397|1|1|10395|1|1|10343|1|1|10354|1|1|9792|1|1|9790|1|1|9738|1|1|9749|1|1|14335|1|1|14333|1|1|14346|1|1|14344|1|1|14303|1|1|13730|1|1|13728|1|1|13741|1|1|13739|1|1|13698|1|1|20|1|1|17|1|1|1123|1|1|276|1|1|508|1|1|506|1|1|629|1|1|627|1|1|57|1|1|55|1|1|25|1|1|1234|1|1|1232|1|1|12014|1|1|12012|1|1|11994|1|1|11993|1|1|13202|1|1|13200|1|1|5359|1|1|5357|1|1|5339|1|1|5338|1|1|6426|1|1|6424|1|1|5579|1|1|5577|1|1|6547|1|1|6545|1|1|2719|1|1|2717|1|1|2697|1|1|2695|1|1|2688|1|1|2687|1|1|2677|1|1|2676|1|1|3896|1|1|3894|1|1|3885|1|1|3883|1|1|4008|1|1|11942|1|1|6013|1|1|6255|1|1|2636|1|1|2623|1|1|2625|1|1|1081|1|1|476|1|1|43|2|1|815|2|1|804|2|1|763|2|1|936|2|1|884|2|1|13451|1|1|13448|1|1|12173|2|1|10127|2|1|14116|2|1|14076|2|1|14237|2|1|14197|2|1|14351|2|1|13502|2|1|13503|2|1|13504|2|1|13746|2|1|10842|2|1|2137|2|1|2097|2|1|2372|2|1|1523|2|1|1524|2|1|1525|2|1|1767|2|1|6849|2|1|3219|2|1|4187|2|1|8550|2|1|8510|2|1|8070|2|1|8209|2|1|8169|2|1|8180|2|1|8158|2|1|14285|3|1|13436|3|1|13437|3|1|1943|3|1|6877|3|1|6805|3|1|8880|3|1|9023|3|1|9021|3|1|8176|3|1|10066|2|1|10044|2|1|554|2|1|516|2|1|494|2|1|675|2|1|637|2|1|615|2|1|65|2|1|74|2|1|75|2|1|76|2|1|54|2|1|837|2|1|826|2|1|785|2|1|796|2|1|774|2|1|756|2|1|757|2|1|758|2|1|734|2|1|735|2|1|958|2|1|947|2|1|906|2|1|917|2|1|877|2|1|878|2|1|879|2|1|855|2|1|856|2|1|312|2|1|274|2|1|10418|1|1|9571|1|1|573|1|1|694|1|1|1167|1|1|320|1|1|11983|3|1|12706|3|1|13069|3|1|9926|3|1|10168|3|1|13795|3|1|10652|3|1|6711|3|1|6722|3|1|7888|3|1|4019|3|1|4742|3|1|5105|3|1|8042|3|1|8735|3|1|8724|3|1|8856|3|1|8845|3|1|9219|3|1|13828|1|1|11995|1|1|5340|1|1|2689|1|1|2678|1|1|9396|1|1|9394|1|1|11145|1|1|11143|1|1|2070|1|1|2068|1|1|2433|1|1|2431|1|1|1586|1|1|1584|1|1|1102|1|1|1100|1|1|255|1|1|253|1|1|1830|1|1|12470|3|1|12951|3|1|12952|3|1|12953|3|1|12954|3|1|12105|3|1|12106|3|1|13194|3|1|13195|3|1|13196|3|1|10293|3|1|10294|3|1|10295|3|1|13799|3|1|13800|3|1|13922|3|1|14282|3|1|14283|3|1|14284|3|1|14406|3|1|14527|3|1|11139|3|1|11258|3|1|11259|3|1|11260|3|1|11500|3|1|11501|3|1|11502|3|1|11621|3|1|11622|3|1|10775|3|1|11863|3|1|11864|3|1|11865|3|1|5813|3|1|5814|3|1|5934|3|1|5935|3|1|5936|3|1|6055|3|1|6056|3|1|6057|3|1|6176|3|1|6177|3|1|6178|3|1|6418|3|1|6419|3|1|6420|3|1|1820|3|1|1821|3|1|1941|3|1|1942|3|1|2183|3|1|2184|3|1|2305|3|1|2427|3|1|2546|3|1|2547|3|1|7240|3|1|7218|3|1|7168|3|1|7157|3|1|7307|3|1|7450|3|1|7571|3|1|7549|3|1|7735|3|1|7724|3|1|7681|3|1|7679|3|1|7713|3|1|7702|3|1|7692|3|1|7690|3|1|7670|3|1|7659|3|1|7649|3|1|7650|3|1|7651|3|1|7652|3|1|7638|3|1|7639|3|1|7640|3|1|7641|3|1|6888|3|1|6834|3|1|6866|3|1|6845|3|1|6823|3|1|6812|3|1|6802|3|1|6803|3|1|6804|3|1|6792|3|1|6793|3|1|4578|3|1|4556|3|1|4506|3|1|4495|3|1|4645|3|1|4106|3|1|4095|3|1|4053|3|1|4054|3|1|4055|3|1|4084|3|1|4073|3|1|4064|3|1|4065|3|1|4066|3|1|4042|3|1|4043|3|1|4044|3|1|4031|3|1|4032|3|1|4033|3|1|4788|3|1|4909|3|1|4887|3|1|5073|3|1|5062|3|1|5019|3|1|5051|3|1|5030|3|1|5008|3|1|4997|3|1|4987|3|1|4988|3|1|4989|3|1|4990|3|1|4977|3|1|4978|3|1|4226|3|1|4172|3|1|4183|3|1|4141|3|1|4142|3|1|5315|3|1|5304|3|1|5261|3|1|5293|3|1|5282|3|1|5272|3|1|5250|3|1|5239|3|1|5230|3|1|5231|3|1|5232|3|1|5218|3|1|5219|3|1|5220|3|1|5221|3|1|8539|3|1|8660|3|1|8638|3|1|8057|3|1|8058|3|1|8059|3|1|8824|3|1|8813|3|1|8770|3|1|8802|3|1|8791|3|1|8781|3|1|8759|3|1|8748|3|1|8739|3|1|8740|3|1|8741|3|1|8728|3|1|8729|3|1|8730|3|1|8945|3|1|8934|3|1|8891|3|1|8923|3|1|8912|3|1|8902|3|1|8869|3|1|8860|3|1|8861|3|1|8862|3|1|8849|3|1|8850|3|1|8851|3|1|9066|3|1|9055|3|1|9012|3|1|9010|3|1|9044|3|1|9033|3|1|9001|3|1|8990|3|1|8980|3|1|8981|3|1|8982|3|1|8983|3|1|8969|3|1|8970|3|1|8971|3|1|8972|3|1|8219|3|1|8165|3|1|8197|3|1|8154|3|1|8143|3|1|8133|3|1|8134|3|1|8135|3|1|8123|3|1|8124|3|1|9144|3|1|9265|3|1|12058|1|1|12056|1|1|10738|1|1|10736|1|1|10685|1|1|10684|1|1|10667|1|1|10669|1|1|11893|1|1|11891|1|1|11873|1|1|11872|1|1|5843|1|1|5841|1|1|5823|1|1|5822|1|1|5964|1|1|5962|1|1|5944|1|1|5943|1|1|5403|1|1|5401|1|1|6206|1|1|6204|1|1|6186|1|1|6185|1|1|2763|1|1|2761|1|1|2741|1|1|2739|1|1|2710|1|1|2709|1|1|3918|1|1|3916|1|1|1028|1|1|1039|1|1|423|1|1|434|1|1|12471|3|1|12467|3|1|12468|3|1|12472|3|1|12473|3|1|12466|3|1|12469|3|1|12592|3|1|12588|3|1|12589|3|1|12593|3|1|12594|3|1|12587|3|1|12590|3|1|12591|3|1|11987|3|1|11988|3|1|11989|3|1|12713|3|1|12709|3|1|12710|3|1|12714|3|1|12715|3|1|12708|3|1|12711|3|1|12712|3|1|12834|3|1|12830|3|1|12831|3|1|12835|3|1|12836|3|1|12829|3|1|12832|3|1|12833|3|1|12955|3|1|12956|3|1|12957|3|1|12108|3|1|12109|3|1|12110|3|1|13076|3|1|13072|3|1|13073|3|1|13077|3|1|13078|3|1|13071|3|1|13074|3|1|13075|3|1|13197|3|1|13193|3|1|13198|3|1|13199|3|1|9809|3|1|9805|3|1|9806|3|1|9810|3|1|9811|3|1|9807|3|1|9802|3|1|9930|3|1|9931|3|1|9932|3|1|9325|3|1|9321|3|1|9326|3|1|9327|3|1|10051|3|1|10047|3|1|10048|3|1|10052|3|1|10053|3|1|10049|3|1|10050|3|1|10172|3|1|10173|3|1|10174|3|1|10414|3|1|10410|3|1|10411|3|1|10415|3|1|10416|3|1|10412|3|1|10413|3|1|10407|3|1|10535|3|1|10531|3|1|10532|3|1|10536|3|1|10537|3|1|10533|3|1|10534|3|1|13802|3|1|13798|3|1|13803|3|1|13804|3|1|13923|3|1|13919|3|1|13920|3|1|13924|3|1|13925|3|1|13918|3|1|13921|3|1|13916|3|1|13318|3|1|13314|3|1|13315|3|1|13319|3|1|13320|3|1|13316|3|1|14044|3|1|14040|3|1|14041|3|1|14045|3|1|14046|3|1|14039|3|1|14042|3|1|14037|3|1|14165|3|1|14161|3|1|14162|3|1|14166|3|1|14167|3|1|14160|3|1|14163|3|1|14158|3|1|14286|3|1|14287|3|1|14288|3|1|13439|3|1|13440|3|1|14407|3|1|14403|3|1|14404|3|1|14408|3|1|14409|3|1|14402|3|1|14405|3|1|14400|3|1|14528|3|1|14524|3|1|14525|3|1|14529|3|1|14530|3|1|14523|3|1|14526|3|1|11140|3|1|11136|3|1|11137|3|1|11141|3|1|11142|3|1|11135|3|1|11138|3|1|11261|3|1|11257|3|1|11262|3|1|11263|3|1|10656|3|1|10657|3|1|10658|3|1|11382|3|1|11378|3|1|11379|3|1|11383|3|1|11384|3|1|11377|3|1|11380|3|1|11381|3|1|11503|3|1|11499|3|1|11504|3|1|11505|3|1|11624|3|1|11625|3|1|11626|3|1|10777|3|1|10778|3|1|10779|3|1|11745|3|1|11741|3|1|11742|3|1|11746|3|1|11747|3|1|11740|3|1|11743|3|1|11744|3|1|11866|3|1|11862|3|1|11867|3|1|11868|3|1|5816|3|1|5812|3|1|5817|3|1|5818|3|1|5937|3|1|5933|3|1|5938|3|1|5939|3|1|6058|3|1|6054|3|1|6059|3|1|6060|3|1|6179|3|1|6175|3|1|6180|3|1|6181|3|1|6421|3|1|6417|3|1|6422|3|1|6423|3|1|492|3|1|493|3|1|613|3|1|614|3|1|1097|3|1|1098|3|1|1218|3|1|1219|3|1|1823|3|1|1819|3|1|1824|3|1|1825|3|1|1944|3|1|1940|3|1|1945|3|1|1946|3|1|1339|3|1|1340|3|1|1341|3|1|2065|3|1|2061|3|1|2062|3|1|2066|3|1|2067|3|1|2060|3|1|2063|3|1|2186|3|1|2182|3|1|2187|3|1|2188|3|1|2307|3|1|2308|3|1|2309|3|1|2428|3|1|2424|3|1|2425|3|1|2429|3|1|2430|3|1|2423|3|1|2426|3|1|2549|3|1|2545|3|1|2550|3|1|2551|3|1|7253|3|1|7252|3|1|7251|3|1|7250|3|1|7242|3|1|7241|3|1|7239|3|1|7202|3|1|7198|3|1|7199|3|1|7203|3|1|7204|3|1|7197|3|1|7200|3|1|7196|3|1|7201|3|1|7195|3|1|7231|3|1|7230|3|1|7229|3|1|7228|3|1|7220|3|1|7219|3|1|7217|3|1|7213|3|1|7209|3|1|7210|3|1|7214|3|1|7215|3|1|7208|3|1|7211|3|1|7207|3|1|7212|3|1|7206|3|1|7191|3|1|7187|3|1|7188|3|1|7192|3|1|7193|3|1|7186|3|1|7189|3|1|7185|3|1|7190|3|1|7184|3|1|7180|3|1|7176|3|1|7177|3|1|7181|3|1|7182|3|1|7175|3|1|7178|3|1|7174|3|1|7179|3|1|7173|3|1|7169|3|1|7165|3|1|7166|3|1|7170|3|1|7171|3|1|7164|3|1|7167|3|1|7162|3|1|7158|3|1|7154|3|1|7155|3|1|7159|3|1|7160|3|1|7153|3|1|7156|3|1|7151|3|1|7374|3|1|7373|3|1|7372|3|1|7371|3|1|7363|3|1|7362|3|1|7361|3|1|7360|3|1|7323|3|1|7319|3|1|7320|3|1|7324|3|1|7325|3|1|7318|3|1|7321|3|1|7317|3|1|7322|3|1|7316|3|1|7352|3|1|7351|3|1|7350|3|1|7349|3|1|7341|3|1|7340|3|1|7339|3|1|7338|3|1|7334|3|1|7330|3|1|7331|3|1|7335|3|1|7336|3|1|7329|3|1|7332|3|1|7328|3|1|7333|3|1|7327|3|1|7312|3|1|7308|3|1|7309|3|1|7313|3|1|7314|3|1|7310|3|1|7311|3|1|7305|3|1|7301|3|1|7297|3|1|7298|3|1|7302|3|1|7303|3|1|7296|3|1|7299|3|1|7295|3|1|7300|3|1|7294|3|1|7290|3|1|7286|3|1|7287|3|1|7291|3|1|7292|3|1|7285|3|1|7288|3|1|7289|3|1|7283|3|1|7279|3|1|7275|3|1|7276|3|1|7280|3|1|7281|3|1|7274|3|1|7277|3|1|7278|3|1|7272|3|1|6773|3|1|6769|3|1|6770|3|1|6774|3|1|6775|3|1|6768|3|1|6771|3|1|6767|3|1|6772|3|1|6766|3|1|6762|3|1|6758|3|1|6759|3|1|6763|3|1|6764|3|1|6757|3|1|6760|3|1|6756|3|1|6761|3|1|6755|3|1|6718|3|1|6714|3|1|6715|3|1|6719|3|1|6720|3|1|6713|3|1|6716|3|1|6717|3|1|6751|3|1|6747|3|1|6748|3|1|6752|3|1|6753|3|1|6746|3|1|6749|3|1|6745|3|1|6750|3|1|6744|3|1|6740|3|1|6736|3|1|6737|3|1|6741|3|1|6742|3|1|6735|3|1|6738|3|1|6734|3|1|6739|3|1|6729|3|1|6725|3|1|6726|3|1|6730|3|1|6731|3|1|6724|3|1|6727|3|1|6728|3|1|6707|3|1|6703|3|1|6704|3|1|6708|3|1|6709|3|1|6702|3|1|6705|3|1|6706|3|1|6696|3|1|6692|3|1|6693|3|1|6697|3|1|6698|3|1|6691|3|1|6694|3|1|6695|3|1|6685|3|1|6681|3|1|6682|3|1|6686|3|1|6687|3|1|6683|3|1|6684|3|1|6674|3|1|6670|3|1|6671|3|1|6675|3|1|6676|3|1|6672|3|1|6673|3|1|7495|3|1|7494|3|1|7493|3|1|7492|3|1|7484|3|1|7483|3|1|7482|3|1|7481|3|1|7444|3|1|7440|3|1|7441|3|1|7445|3|1|7446|3|1|7439|3|1|7442|3|1|7438|3|1|7443|3|1|7437|3|1|7473|3|1|7472|3|1|7471|3|1|7470|3|1|7462|3|1|7461|3|1|7460|3|1|7459|3|1|7455|3|1|7451|3|1|7452|3|1|7456|3|1|7457|3|1|7453|3|1|7454|3|1|7448|3|1|7433|3|1|7429|3|1|7430|3|1|7434|3|1|7435|3|1|7428|3|1|7431|3|1|7427|3|1|7432|3|1|7426|3|1|7422|3|1|7418|3|1|7419|3|1|7423|3|1|7424|3|1|7417|3|1|7420|3|1|7416|3|1|7421|3|1|7415|3|1|7411|3|1|7407|3|1|7408|3|1|7412|3|1|7413|3|1|7406|3|1|7409|3|1|7410|3|1|7404|3|1|7400|3|1|7396|3|1|7397|3|1|7401|3|1|7402|3|1|7395|3|1|7398|3|1|7399|3|1|7393|3|1|7616|3|1|7615|3|1|7614|3|1|7613|3|1|7605|3|1|7604|3|1|7603|3|1|7602|3|1|7565|3|1|7561|3|1|7562|3|1|7566|3|1|7567|3|1|7560|3|1|7563|3|1|7559|3|1|7564|3|1|7558|3|1|7594|3|1|7593|3|1|7592|3|1|7591|3|1|7583|3|1|7582|3|1|7581|3|1|7580|3|1|7576|3|1|7572|3|1|7573|3|1|7577|3|1|7578|3|1|7574|3|1|7575|3|1|7569|3|1|7554|3|1|7550|3|1|7551|3|1|7555|3|1|7556|3|1|7552|3|1|7553|3|1|7547|3|1|7543|3|1|7539|3|1|7540|3|1|7544|3|1|7545|3|1|7538|3|1|7541|3|1|7537|3|1|7542|3|1|7536|3|1|7532|3|1|7528|3|1|7529|3|1|7533|3|1|7534|3|1|7527|3|1|7530|3|1|7531|3|1|7525|3|1|7521|3|1|7517|3|1|7518|3|1|7522|3|1|7523|3|1|7516|3|1|7519|3|1|7520|3|1|7514|3|1|7737|3|1|7736|3|1|7734|3|1|7726|3|1|7725|3|1|7723|3|1|7686|3|1|7682|3|1|7683|3|1|7687|3|1|7688|3|1|7684|3|1|7685|3|1|7715|3|1|7714|3|1|7712|3|1|7704|3|1|7703|3|1|7697|3|1|7693|3|1|7694|3|1|7698|3|1|7699|3|1|7695|3|1|7696|3|1|7675|3|1|7671|3|1|7672|3|1|7676|3|1|7677|3|1|7673|3|1|7674|3|1|7664|3|1|7660|3|1|7661|3|1|7665|3|1|7666|3|1|7662|3|1|7663|3|1|7653|3|1|7654|3|1|7655|3|1|7642|3|1|7643|3|1|7644|3|1|6890|3|1|6889|3|1|6887|3|1|6879|3|1|6878|3|1|6839|3|1|6835|3|1|6836|3|1|6840|3|1|6841|3|1|6837|3|1|6838|3|1|6868|3|1|6867|3|1|6857|3|1|6856|3|1|6850|3|1|6846|3|1|6847|3|1|6851|3|1|6852|3|1|6848|3|1|6828|3|1|6824|3|1|6825|3|1|6829|3|1|6830|3|1|6826|3|1|6827|3|1|6817|3|1|6813|3|1|6814|3|1|6818|3|1|6819|3|1|6815|3|1|6816|3|1|6806|3|1|6807|3|1|6808|3|1|6795|3|1|6796|3|1|6797|3|1|7858|3|1|7857|3|1|7856|3|1|7855|3|1|7847|3|1|7846|3|1|7845|3|1|7844|3|1|7807|3|1|7803|3|1|7804|3|1|7808|3|1|7809|3|1|7802|3|1|7805|3|1|7801|3|1|7806|3|1|7800|3|1|7836|3|1|7835|3|1|7834|3|1|7833|3|1|7825|3|1|7824|3|1|7823|3|1|7822|3|1|7818|3|1|7814|3|1|7815|3|1|7819|3|1|7820|3|1|7813|3|1|7816|3|1|7812|3|1|7817|3|1|7811|3|1|7796|3|1|7792|3|1|7793|3|1|7797|3|1|7798|3|1|7791|3|1|7794|3|1|7790|3|1|7795|3|1|7789|3|1|7785|3|1|7781|3|1|7782|3|1|7786|3|1|7787|3|1|7780|3|1|7783|3|1|7779|3|1|7784|3|1|7778|3|1|7774|3|1|7770|3|1|7771|3|1|7775|3|1|7776|3|1|7769|3|1|7772|3|1|7773|3|1|7767|3|1|7763|3|1|7759|3|1|7760|3|1|7764|3|1|7765|3|1|7758|3|1|7761|3|1|7762|3|1|7756|3|1|7979|3|1|7978|3|1|7977|3|1|7976|3|1|7968|3|1|7967|3|1|7966|3|1|7965|3|1|7928|3|1|7924|3|1|7925|3|1|7929|3|1|7930|3|1|7923|3|1|7926|3|1|7922|3|1|7927|3|1|7921|3|1|7957|3|1|7956|3|1|7955|3|1|7954|3|1|7946|3|1|7945|3|1|7944|3|1|7943|3|1|7939|3|1|7935|3|1|7936|3|1|7940|3|1|7941|3|1|7934|3|1|7937|3|1|7933|3|1|7938|3|1|7932|3|1|7917|3|1|7913|3|1|7914|3|1|7918|3|1|7919|3|1|7912|3|1|7915|3|1|7911|3|1|7916|3|1|7910|3|1|7906|3|1|7902|3|1|7903|3|1|7907|3|1|7908|3|1|7901|3|1|7904|3|1|7900|3|1|7905|3|1|7899|3|1|7895|3|1|7891|3|1|7892|3|1|7896|3|1|7897|3|1|7890|3|1|7893|3|1|7894|3|1|7884|3|1|7880|3|1|7881|3|1|7885|3|1|7886|3|1|7879|3|1|7882|3|1|7883|3|1|4591|3|1|4590|3|1|4589|3|1|4588|3|1|4580|3|1|4579|3|1|4540|3|1|4536|3|1|4537|3|1|4541|3|1|4542|3|1|4535|3|1|4538|3|1|4534|3|1|4539|3|1|4533|3|1|4569|3|1|4568|3|1|4567|3|1|4566|3|1|4558|3|1|4557|3|1|4551|3|1|4547|3|1|4548|3|1|4552|3|1|4553|3|1|4546|3|1|4549|3|1|4545|3|1|4550|3|1|4544|3|1|4529|3|1|4525|3|1|4526|3|1|4530|3|1|4531|3|1|4524|3|1|4527|3|1|4523|3|1|4528|3|1|4522|3|1|4518|3|1|4514|3|1|4515|3|1|4519|3|1|4520|3|1|4513|3|1|4516|3|1|4512|3|1|4517|3|1|4507|3|1|4503|3|1|4504|3|1|4508|3|1|4509|3|1|4502|3|1|4505|3|1|4496|3|1|4492|3|1|4493|3|1|4497|3|1|4498|3|1|4491|3|1|4494|3|1|4712|3|1|4711|3|1|4710|3|1|4709|3|1|4701|3|1|4700|3|1|4699|3|1|4698|3|1|4661|3|1|4657|3|1|4658|3|1|4662|3|1|4663|3|1|4656|3|1|4659|3|1|4655|3|1|4660|3|1|4654|3|1|4690|3|1|4689|3|1|4688|3|1|4687|3|1|4679|3|1|4678|3|1|4677|3|1|4676|3|1|4672|3|1|4668|3|1|4669|3|1|4673|3|1|4674|3|1|4667|3|1|4670|3|1|4666|3|1|4671|3|1|4665|3|1|4650|3|1|4646|3|1|4647|3|1|4651|3|1|4652|3|1|4648|3|1|4649|3|1|4643|3|1|4639|3|1|4635|3|1|4636|3|1|4640|3|1|4641|3|1|4634|3|1|4637|3|1|4633|3|1|4638|3|1|4628|3|1|4624|3|1|4625|3|1|4629|3|1|4630|3|1|4623|3|1|4626|3|1|4627|3|1|4617|3|1|4613|3|1|4614|3|1|4618|3|1|4619|3|1|4612|3|1|4615|3|1|4616|3|1|4111|3|1|4107|3|1|4108|3|1|4112|3|1|4113|3|1|4109|3|1|4110|3|1|4100|3|1|4096|3|1|4097|3|1|4101|3|1|4102|3|1|4098|3|1|4099|3|1|4056|3|1|4052|3|1|4057|3|1|4058|3|1|4089|3|1|4085|3|1|4086|3|1|4090|3|1|4091|3|1|4087|3|1|4088|3|1|4078|3|1|4074|3|1|4075|3|1|4079|3|1|4080|3|1|4076|3|1|4067|3|1|4063|3|1|4068|3|1|4069|3|1|4045|3|1|4041|3|1|4046|3|1|4047|3|1|4034|3|1|4030|3|1|4035|3|1|4036|3|1|4023|3|1|4024|3|1|4025|3|1|4012|3|1|4013|3|1|4014|3|1|4833|3|1|4832|3|1|4831|3|1|4830|3|1|4822|3|1|4821|3|1|4820|3|1|4819|3|1|4782|3|1|4778|3|1|4779|3|1|4783|3|1|4784|3|1|4777|3|1|4780|3|1|4776|3|1|4781|3|1|4775|3|1|4811|3|1|4810|3|1|4809|3|1|4808|3|1|4800|3|1|4799|3|1|4798|3|1|4797|3|1|4793|3|1|4789|3|1|4790|3|1|4794|3|1|4795|3|1|4791|3|1|4792|3|1|4786|3|1|4771|3|1|4767|3|1|4768|3|1|4772|3|1|4773|3|1|4766|3|1|4769|3|1|4765|3|1|4770|3|1|4764|3|1|4760|3|1|4756|3|1|4757|3|1|4761|3|1|4762|3|1|4755|3|1|4758|3|1|4754|3|1|4759|3|1|4753|3|1|4749|3|1|4745|3|1|4746|3|1|4750|3|1|4751|3|1|4744|3|1|4747|3|1|4748|3|1|4738|3|1|4734|3|1|4735|3|1|4739|3|1|4740|3|1|4733|3|1|4736|3|1|4737|3|1|4954|3|1|4953|3|1|4952|3|1|4951|3|1|4943|3|1|4942|3|1|4941|3|1|4940|3|1|4903|3|1|4899|3|1|4900|3|1|4904|3|1|4905|3|1|4898|3|1|4901|3|1|4897|3|1|4902|3|1|4896|3|1|4932|3|1|4931|3|1|4930|3|1|4929|3|1|4921|3|1|4920|3|1|4919|3|1|4918|3|1|4914|3|1|4910|3|1|4911|3|1|4915|3|1|4916|3|1|4912|3|1|4913|3|1|4907|3|1|4892|3|1|4888|3|1|4889|3|1|4893|3|1|4894|3|1|4890|3|1|4891|3|1|4885|3|1|4881|3|1|4877|3|1|4878|3|1|4882|3|1|4883|3|1|4876|3|1|4879|3|1|4875|3|1|4880|3|1|4870|3|1|4866|3|1|4867|3|1|4871|3|1|4872|3|1|4865|3|1|4868|3|1|4869|3|1|4859|3|1|4855|3|1|4856|3|1|4860|3|1|4861|3|1|4854|3|1|4857|3|1|4858|3|1|5075|3|1|5074|3|1|5064|3|1|5063|3|1|5024|3|1|5020|3|1|5021|3|1|5025|3|1|5026|3|1|5022|3|1|5023|3|1|5053|3|1|5052|3|1|5042|3|1|5041|3|1|5035|3|1|5031|3|1|5032|3|1|5036|3|1|5037|3|1|5033|3|1|5034|3|1|5013|3|1|5009|3|1|5010|3|1|5014|3|1|5015|3|1|5011|3|1|5012|3|1|5002|3|1|4998|3|1|4999|3|1|5003|3|1|5004|3|1|5000|3|1|5001|3|1|4991|3|1|4992|3|1|4993|3|1|4980|3|1|4981|3|1|4982|3|1|4228|3|1|4227|3|1|4217|3|1|4216|3|1|4177|3|1|4173|3|1|4174|3|1|4178|3|1|4179|3|1|4175|3|1|4176|3|1|4206|3|1|4205|3|1|4195|3|1|4188|3|1|4184|3|1|4185|3|1|4189|3|1|4190|3|1|4186|3|1|4166|3|1|4162|3|1|4163|3|1|4167|3|1|4168|3|1|4164|3|1|4165|3|1|4155|3|1|4151|3|1|4152|3|1|4156|3|1|4157|3|1|4153|3|1|4144|3|1|4145|3|1|4146|3|1|4133|3|1|4135|3|1|5196|3|1|5195|3|1|5194|3|1|5193|3|1|5185|3|1|5184|3|1|5183|3|1|5182|3|1|5145|3|1|5141|3|1|5142|3|1|5146|3|1|5147|3|1|5140|3|1|5143|3|1|5139|3|1|5144|3|1|5138|3|1|5174|3|1|5173|3|1|5172|3|1|5171|3|1|5163|3|1|5162|3|1|5161|3|1|5160|3|1|5156|3|1|5152|3|1|5153|3|1|5157|3|1|5158|3|1|5151|3|1|5154|3|1|5150|3|1|5155|3|1|5149|3|1|5134|3|1|5130|3|1|5131|3|1|5135|3|1|5136|3|1|5129|3|1|5132|3|1|5128|3|1|5133|3|1|5127|3|1|5123|3|1|5119|3|1|5120|3|1|5124|3|1|5125|3|1|5118|3|1|5121|3|1|5117|3|1|5122|3|1|5116|3|1|5112|3|1|5108|3|1|5109|3|1|5113|3|1|5114|3|1|5107|3|1|5110|3|1|5111|3|1|5101|3|1|5097|3|1|5098|3|1|5102|3|1|5103|3|1|5096|3|1|5099|3|1|5100|3|1|5317|3|1|5316|3|1|5306|3|1|5305|3|1|5266|3|1|5262|3|1|5263|3|1|5267|3|1|5268|3|1|5264|3|1|5265|3|1|5295|3|1|5294|3|1|5284|3|1|5283|3|1|5277|3|1|5273|3|1|5274|3|1|5278|3|1|5279|3|1|5275|3|1|5276|3|1|5255|3|1|5251|3|1|5252|3|1|5256|3|1|5257|3|1|5253|3|1|5254|3|1|5244|3|1|5240|3|1|5241|3|1|5245|3|1|5246|3|1|5242|3|1|5243|3|1|5233|3|1|5229|3|1|5234|3|1|5235|3|1|5222|3|1|5223|3|1|5224|3|1|8584|3|1|8583|3|1|8582|3|1|8581|3|1|8573|3|1|8572|3|1|8570|3|1|8533|3|1|8529|3|1|8530|3|1|8534|3|1|8535|3|1|8528|3|1|8531|3|1|8527|3|1|8532|3|1|8526|3|1|8562|3|1|8561|3|1|8560|3|1|8559|3|1|8551|3|1|8544|3|1|8540|3|1|8541|3|1|8545|3|1|8546|3|1|8542|3|1|8543|3|1|8537|3|1|8522|3|1|8518|3|1|8519|3|1|8523|3|1|8524|3|1|8517|3|1|8520|3|1|8516|3|1|8521|3|1|8515|3|1|8511|3|1|8507|3|1|8508|3|1|8512|3|1|8513|3|1|8506|3|1|8509|3|1|8505|3|1|8504|3|1|8500|3|1|8496|3|1|8497|3|1|8501|3|1|8502|3|1|8495|3|1|8498|3|1|8493|3|1|8489|3|1|8485|3|1|8486|3|1|8490|3|1|8491|3|1|8484|3|1|8487|3|1|8482|3|1|8705|3|1|8704|3|1|8703|3|1|8702|3|1|8694|3|1|8693|3|1|8692|3|1|8691|3|1|8654|3|1|8650|3|1|8651|3|1|8655|3|1|8656|3|1|8649|3|1|8652|3|1|8648|3|1|8653|3|1|8647|3|1|8683|3|1|8682|3|1|8681|3|1|8680|3|1|8672|3|1|8671|3|1|8670|3|1|8669|3|1|8665|3|1|8661|3|1|8662|3|1|8666|3|1|8667|3|1|8663|3|1|8664|3|1|8658|3|1|8643|3|1|8639|3|1|8640|3|1|8644|3|1|8645|3|1|8641|3|1|8642|3|1|8636|3|1|8632|3|1|8628|3|1|8629|3|1|8633|3|1|8634|3|1|8627|3|1|8630|3|1|8626|3|1|8631|3|1|8625|3|1|8621|3|1|8617|3|1|8618|3|1|8622|3|1|8623|3|1|8616|3|1|8619|3|1|8620|3|1|8614|3|1|8610|3|1|8606|3|1|8607|3|1|8611|3|1|8612|3|1|8605|3|1|8608|3|1|8609|3|1|8603|3|1|8104|3|1|8100|3|1|8101|3|1|8105|3|1|8106|3|1|8099|3|1|8102|3|1|8098|3|1|8103|3|1|8097|3|1|8093|3|1|8089|3|1|8090|3|1|8094|3|1|8095|3|1|8088|3|1|8091|3|1|8087|3|1|8092|3|1|8086|3|1|8049|3|1|8045|3|1|8046|3|1|8050|3|1|8051|3|1|8044|3|1|8047|3|1|8048|3|1|8082|3|1|8078|3|1|8079|3|1|8083|3|1|8084|3|1|8077|3|1|8080|3|1|8076|3|1|8081|3|1|8075|3|1|8071|3|1|8067|3|1|8068|3|1|8072|3|1|8073|3|1|8066|3|1|8069|3|1|8065|3|1|8060|3|1|8056|3|1|8061|3|1|8062|3|1|8038|3|1|8034|3|1|8035|3|1|8039|3|1|8040|3|1|8033|3|1|8036|3|1|8037|3|1|8027|3|1|8023|3|1|8024|3|1|8028|3|1|8029|3|1|8022|3|1|8025|3|1|8026|3|1|8016|3|1|8012|3|1|8013|3|1|8017|3|1|8018|3|1|8014|3|1|8015|3|1|8005|3|1|8001|3|1|8002|3|1|8006|3|1|8007|3|1|8003|3|1|8004|3|1|8826|3|1|8825|3|1|8823|3|1|8815|3|1|8814|3|1|8812|3|1|8775|3|1|8771|3|1|8772|3|1|8776|3|1|8777|3|1|8773|3|1|8774|3|1|8768|3|1|8804|3|1|8803|3|1|8801|3|1|8793|3|1|8792|3|1|8790|3|1|8786|3|1|8782|3|1|8783|3|1|8787|3|1|8788|3|1|8784|3|1|8785|3|1|8779|3|1|8764|3|1|8760|3|1|8761|3|1|8765|3|1|8766|3|1|8762|3|1|8763|3|1|8757|3|1|8753|3|1|8749|3|1|8750|3|1|8754|3|1|8755|3|1|8751|3|1|8752|3|1|8746|3|1|8742|3|1|8738|3|1|8743|3|1|8744|3|1|8731|3|1|8727|3|1|8732|3|1|8733|3|1|8947|3|1|8946|3|1|8944|3|1|8936|3|1|8935|3|1|8933|3|1|8896|3|1|8892|3|1|8893|3|1|8897|3|1|8898|3|1|8894|3|1|8895|3|1|8889|3|1|8925|3|1|8924|3|1|8922|3|1|8914|3|1|8913|3|1|8911|3|1|8907|3|1|8903|3|1|8904|3|1|8908|3|1|8909|3|1|8905|3|1|8906|3|1|8900|3|1|8885|3|1|8881|3|1|8882|3|1|8886|3|1|8887|3|1|8883|3|1|8884|3|1|8878|3|1|8874|3|1|8870|3|1|8871|3|1|8875|3|1|8876|3|1|8872|3|1|8873|3|1|8867|3|1|8863|3|1|8859|3|1|8864|3|1|8865|3|1|8852|3|1|8848|3|1|8853|3|1|8854|3|1|9068|3|1|9067|3|1|9065|3|1|9057|3|1|9056|3|1|9054|3|1|9017|3|1|9013|3|1|9014|3|1|9018|3|1|9019|3|1|9015|3|1|9016|3|1|9046|3|1|9045|3|1|9043|3|1|9035|3|1|9034|3|1|9028|3|1|9024|3|1|9025|3|1|9029|3|1|9030|3|1|9026|3|1|9027|3|1|9006|3|1|9002|3|1|9003|3|1|9007|3|1|9008|3|1|9004|3|1|9005|3|1|8995|3|1|8991|3|1|8992|3|1|8996|3|1|8997|3|1|8993|3|1|8994|3|1|8984|3|1|8985|3|1|8986|3|1|8973|3|1|8974|3|1|8975|3|1|8221|3|1|8220|3|1|8218|3|1|8210|3|1|8170|3|1|8166|3|1|8167|3|1|8171|3|1|8172|3|1|8168|3|1|8199|3|1|8198|3|1|8181|3|1|8177|3|1|8178|3|1|8182|3|1|8183|3|1|8179|3|1|8159|3|1|8155|3|1|8156|3|1|8160|3|1|8161|3|1|8157|3|1|8148|3|1|8144|3|1|8145|3|1|8149|3|1|8150|3|1|8146|3|1|8137|3|1|8138|3|1|8139|3|1|8126|3|1|8127|3|1|8128|3|1|9189|3|1|9188|3|1|9187|3|1|9186|3|1|9178|3|1|9177|3|1|9176|3|1|9175|3|1|9138|3|1|9134|3|1|9135|3|1|9139|3|1|9140|3|1|9133|3|1|9136|3|1|9132|3|1|9137|3|1|9131|3|1|9167|3|1|9166|3|1|9165|3|1|9164|3|1|9156|3|1|9155|3|1|9154|3|1|9153|3|1|9149|3|1|9145|3|1|9146|3|1|9150|3|1|9151|3|1|9147|3|1|9148|3|1|9142|3|1|9127|3|1|9123|3|1|9124|3|1|9128|3|1|9129|3|1|9122|3|1|9125|3|1|9121|3|1|9126|3|1|9120|3|1|9116|3|1|9112|3|1|9113|3|1|9117|3|1|9118|3|1|9111|3|1|9114|3|1|9110|3|1|9115|3|1|9109|3|1|9105|3|1|9101|3|1|9102|3|1|9106|3|1|9107|3|1|9100|3|1|9103|3|1|9104|3|1|9098|3|1|9094|3|1|9090|3|1|9091|3|1|9095|3|1|9096|3|1|9089|3|1|9092|3|1|9093|3|1|9087|3|1|9310|3|1|9309|3|1|9308|3|1|9307|3|1|9299|3|1|9298|3|1|9297|3|1|9296|3|1|9259|3|1|9255|3|1|9256|3|1|9260|3|1|9261|3|1|9254|3|1|9257|3|1|9253|3|1|9258|3|1|9252|3|1|9288|3|1|9287|3|1|9286|3|1|9285|3|1|9277|3|1|9276|3|1|9275|3|1|9274|3|1|9270|3|1|9266|3|1|9267|3|1|9271|3|1|9272|3|1|9268|3|1|9269|3|1|9263|3|1|9248|3|1|9244|3|1|9245|3|1|9249|3|1|9250|3|1|9243|3|1|9246|3|1|9242|3|1|9247|3|1|9241|3|1|9237|3|1|9233|3|1|9234|3|1|9238|3|1|9239|3|1|9232|3|1|9235|3|1|9231|3|1|9236|3|1|9230|3|1|9226|3|1|9222|3|1|9223|3|1|9227|3|1|9228|3|1|9221|3|1|9224|3|1|9225|3|1|9215|3|1|9211|3|1|9212|3|1|9216|3|1|9217|3|1|9210|3|1|9213|3|1|9214|3|1|10699|1|1|1380|1|1|7003|3|1|6981|3|1|7124|3|1|7102|3|1|4341|3|1|4319|3|1|4462|3|1|4440|3|1|8334|3|1|8312|3|1|8455|3|1|8433|3|1|12151|1|1|10831|1|1|2361|1|1|1512|1|1|1514|1|1|1505|1|1|1502|1|1|1756|1|1|12718|2|1|12716|2|1|12839|2|1|12837|2|1|10057|2|1|14049|2|1|14047|2|1|14170|2|1|14168|2|1|11387|2|1|11385|2|1|3401|2|1|3399|2|1|3522|2|1|3520|2|1|6387|1|1|6374|1|1|5538|1|1|5530|1|1|5532|1|1|5782|1|1|5769|1|1|12085|1|1|5870|1|1|5430|1|1|10817|1|1|2347|1|1|1742|1|1|13864|2|1|13826|2|1|14136|2|1|14257|2|1|1885|2|1|1847|2|1|12629|1|1|12008|1|1|12871|1|1|11309|1|1|11320|1|1|11298|1|1|10675|1|1|11419|1|1|11551|1|1|11562|1|1|11540|1|1|11782|1|1|10935|1|1|11903|1|1|5974|1|1|5353|1|1|6216|1|1|9401|1|1|11150|1|1|1831|1|1|1833|1|1|2438|1|1|1591|1|1|8348|3|1|8337|3|1|8326|3|1|8315|3|1|8469|3|1|8458|3|1|8447|3|1|8436|3|1|1439|1|1|1436|1|1|13817|1|1|12047|2|1|12045|2|1|9990|2|1|9988|2|1|10089|2|1|10087|2|1|10221|2|1|10219|2|1|10232|2|1|10230|2|1|10210|2|1|10208|2|1|10189|2|1|10716|2|1|10714|2|1|11519|2|1|11517|2|1|5392|2|1|5390|2|1|6074|2|1|6072|2|1|6195|2|1|6193|2|1|896|2|1|897|2|1|898|2|1|2202|2|1|2200|2|1|5909|1|1|5907|1|1|12019|1|1|13207|1|1|11342|1|1|10686|1|1|11584|1|1|11874|1|1|5824|1|1|5945|1|1|5364|1|1|6068|1|1|6187|1|1|6431|1|1|5584|1|1|6552|1|1|2724|1|1|2735|1|1|2711|1|1|2702|1|1|3901|1|1|3890|1|1|10871|1|1|2401|1|1|1565|1|1|1554|1|1|1796|1|1|14472|2|1|14593|2|1|2493|2|1|12508|1|1|10627|1|1|14565|1|1|11188|1|1|11199|1|1|10748|1|1|5853|1|1|1442|1|1|1362|1|1|1359|1|1|2113|1|1|2124|1|1|2476|1|1|2487|1|1|1629|1|1|1640|1|1|2597|1|1|2608|1|1|11211|1|1|11209|1|1|1905|1|1|1903|1|1|1894|1|1|1892|1|1|1851|1|1|2499|1|1|2497|1|1|1652|1|1|1650|1|1|6334|1|1|6331|1|1|5729|1|1|5726|1|1|10800|1|1|10797|1|1|2330|1|1|2327|1|1|1725|1|1|1722|1|1|10198|2|1|1872|1|1|1870|1|1|1840|1|1|1379|1|1|1378|1|1|2587|1|1|2585|1|1|12976|1|1|12127|1|1|12371|1|1|10347|1|1|10358|1|1|9541|1|1|9498|1|1|9509|1|1|9491|1|1|9488|1|1|9742|1|1|9753|1|1|13479|1|1|11643|1|1|11038|1|1|12662|1|1|12904|1|1|11221|1|1|11452|1|1|11815|1|1|10968|1|1|11936|1|1|6007|1|1|6249|1|1|1373|1|1|1370|1|1|2146|1|1|2509|1|1|1662|1|1|2630|1|1|2561|1|1|2558|1|1|3367|1|1|3345|1|1|3609|1|1|3587|1|1|500|1|1|621|1|1|38|1|1|1107|1|1|260|1|1|1226|1|1|12025|1|1|12023|1|1|10705|1|1|10703|1|1|10674|1|1|10673|1|1|11882|1|1|11880|1|1|5832|1|1|5830|1|1|5953|1|1|5951|1|1|5370|1|1|5368|1|1|13048|1|1|13046|1|1|12994|1|1|12212|1|1|12210|1|1|12158|1|1|12169|1|1|12443|1|1|12441|1|1|12389|1|1|10387|1|1|9551|1|1|9782|1|1|14325|1|1|13720|1|1|11728|1|1|11726|1|1|11674|1|1|11685|1|1|11123|1|1|11121|1|1|11069|1|1|11080|1|1|12003|1|1|12001|1|1|5348|1|1|5346|1|1|6395|1|1|6394|1|1|6344|1|1|6346|1|1|5559|1|1|5558|1|1|5508|1|1|5510|1|1|5519|1|1|5521|1|1|5790|1|1|5789|1|1|5739|1|1|5741|1|1|5553|1|1|5550|1|1|9363|1|1|9361|1|1|10419|1|1|10417|1|1|9572|1|1|9570|1|1|574|1|1|572|1|1|520|1|1|695|1|1|693|1|1|641|1|1|91|1|1|1168|1|1|1166|1|1|321|1|1|319|1|1|1300|1|1|1298|1|1|1246|1|1|651|1|1|649|1|1|14307|1|1|13458|1|1|13460|1|1|13702|1|1|6217|2|1|6215|2|1|11579|2|1|6134|2|1|2273|2|1|2260|2|1|2261|2|1|2262|2|1|2628|2|1|9038|2|1|8202|2|1|8189|2|1|8190|2|1|8191|2|1|12137|1|1|12119|1|1|12121|1|1|10366|1|1|9530|1|1|9479|1|1|9481|1|1|9761|1|1|11653|1|1|11635|1|1|11637|1|1|11048|1|1|11030|1|1|11032|1|1|3678|1|1|2842|1|1|2853|1|1|2820|1|1|2813|1|1|2815|1|1|2802|1|1|2804|1|1|3073|1|1|51|1|1|499|1|1|620|1|1|37|1|1|19|1|1|1225|1|1|9956|1|1|9333|1|1|645|1|1|95|1|1|82|1|1|887|1|1|1250|1|1|10333|1|1|9728|1|1|14379|1|1|14377|1|1|13543|1|1|13541|1|1|13532|1|1|13530|1|1|13489|1|1|13774|1|1|13772|1|1|540|1|1|661|1|1|1134|1|1|287|1|1|10316|1|1|10313|1|1|9711|1|1|9708|1|1|1076|1|1|1073|1|1|240|1|1|237|1|1|471|1|1|468|1|1|1112|1|1|265|1|1|565|1|1|9888|2|1|9547|2|1|13837|2|1|13397|2|1|14117|2|1|14238|2|1|13496|2|1|13505|2|1|13506|2|1|13507|2|1|13485|2|1|1869|2|1|1858|2|1|1440|2|1|2138|2|1|2281|2|1|1517|2|1|1526|2|1|1527|2|1|1528|2|1|9159|2|1|9280|2|1|1032|1|1|1029|1|1|1043|1|1|1040|1|1|427|1|1|424|1|1|438|1|1|435|1|1|11696|1|1|10860|1|1|11091|1|1|2390|1|1|1785|1|1|10180|2|1|10181|2|1|10182|2|1|11509|2|1|6064|2|1|2192|2|1|3940|2|1|3938|2|1|12476|1|1|12474|1|1|12597|1|1|12595|1|1|9836|1|1|9834|1|1|9815|1|1|9407|1|1|9405|1|1|9353|1|1|10562|1|1|10560|1|1|10541|1|1|13928|1|1|13926|1|1|13345|1|1|13343|1|1|13324|1|1|14533|1|1|14531|1|1|11750|1|1|11748|1|1|10903|1|1|10901|1|1|685|1|1|927|1|1|1290|1|1|3170|1|1|3168|1|1|3159|1|1|3157|1|1|3291|1|1|3289|1|1|3280|1|1|3278|1|1|3533|1|1|3531|1|1|9524|1|1|9521|1|1|12963|1|1|12358|1|1|10323|1|1|9718|1|1|14294|1|1|13468|1|1|13450|1|1|13689|1|1|3657|1|1|3646|1|1|3052|1|1|3041|1|1|11656|1|1|10850|1|1|10807|1|1|11051|1|1|2380|1|1|2337|1|1|1544|1|1|1533|1|1|1493|1|1|1775|1|1|1732|1|1|3681|1|1|2832|1|1|3076|1|1|13037|1|1|13035|1|1|12983|1|1|12432|1|1|12430|1|1|12378|1|1|10376|1|1|9771|1|1|14368|1|1|14366|1|1|14314|1|1|13763|1|1|13761|1|1|13709|1|1|3742|1|1|3740|1|1|3688|1|1|3720|1|1|3718|1|1|3699|1|1|3666|1|1|3137|1|1|3135|1|1|3083|1|1|3115|1|1|3113|1|1|3094|1|1|3061|1|1|9835|1|1|13927|1|1|14169|1|1|5889|1|1|5888|1|1|6352|1|1|6363|1|1|5747|1|1|5758|1|1|12536|2|1|10149|2|1|13865|2|1|13866|2|1|13867|2|1|13988|2|1|14138|2|1|14098|2|1|14109|2|1|14087|2|1|14259|2|1|14219|2|1|14230|2|1|13625|2|1|11205|2|1|1886|2|1|1887|2|1|1888|2|1|2159|2|1|2119|2|1|2130|2|1|1646|2|1|9332|1|1|81|1|1|10474|2|1|10472|2|1|10595|2|1|10593|2|1|1160|2|1|1161|2|1|1162|2|1|1281|2|1|1282|2|1|1283|2|1|579|1|1|566|1|1|568|1|1|1173|1|1|326|1|1|13829|1|1|13827|1|1|13808|1|1|1124|1|1|1122|1|1|1103|1|1|277|1|1|275|1|1|256|1|1|1061|1|1|456|1|1|12046|2|1|12728|2|1|9989|2|1|10088|2|1|10220|2|1|10231|2|1|10209|2|1|10190|2|1|5391|2|1|6073|2|1|659|2|1|899|2|1|900|2|1|901|2|1|1971|1|1|1969|1|1|1950|1|1|2213|1|1|2211|1|1|12068|1|1|11999|1|1|11996|1|1|12739|1|1|13102|1|1|12255|1|1|13223|1|1|5413|1|1|5344|1|1|5341|1|1|6084|1|1|6447|1|1|5600|1|1|6568|1|1|2773|1|1|2751|1|1|2693|1|1|2690|1|1|2682|1|1|2679|1|1|3444|1|1|3455|1|1|3422|1|1|3807|1|1|3818|1|1|3785|1|1|2960|1|1|2971|1|1|2938|1|1|3928|1|1|3939|1|1|3906|1|1|12148|1|1|10828|1|1|10839|1|1|10799|1|1|10801|1|1|2358|1|1|2369|1|1|2329|1|1|2331|1|1|1753|1|1|1764|1|1|1724|1|1|1726|1|1|504|1|1|501|1|1|625|1|1|622|1|1|42|1|1|39|1|1|1178|1|1|331|1|1|1230|1|1|1227|1|1|12789|2|1|12910|2|1|14131|2|1|14118|2|1|14119|2|1|14120|2|1|14252|2|1|14239|2|1|14240|2|1|14241|2|1|14486|2|1|14607|2|1|11458|2|1|11601|2|1|6156|2|1|6277|2|1|2152|2|1|2139|2|1|2140|2|1|2141|2|1|2295|2|1|2282|2|1|2283|2|1|2284|2|1|2507|2|1|2650|2|1|7465|2|1|7586|2|1|3494|2|1|3472|2|1|3615|2|1|3593|2|1|4803|2|1|4924|2|1|8565|2|1|8552|2|1|8553|2|1|8554|2|1|8675|2|1|8796|2|1|8917|2|1|9060|2|1|8224|2|1|8211|2|1|8212|2|1|8213|2|1|546|1|1|1965|1|1|9490|1|1|9492|1|1|11664|1|1|11059|1|1|12162|1|1|10391|1|1|9555|1|1|9542|1|1|9544|1|1|9786|1|1|14329|1|1|13480|1|1|13482|1|1|13724|1|1|1082|1|1|1031|1|1|1033|1|1|1042|1|1|1044|1|1|477|1|1|426|1|1|428|1|1|437|1|1|439|1|1|27|1|1|9830|1|1|13339|1|1|711|1|1|1316|1|1|9338|2|1|10078|2|1|10076|2|1|10058|2|1|14048|2|1|817|2|1|806|2|1|764|2|1|765|2|1|766|2|1|938|2|1|885|2|1|886|2|1|1132|2|1|1253|2|1|3412|2|1|3410|2|1|1516|1|1|1513|1|1|13818|1|1|13816|1|1|586|1|1|12035|1|1|13091|1|1|12244|1|1|13212|1|1|5380|1|1|6436|1|1|5589|1|1|6557|1|1|1104|1|1|257|1|1|1960|1|1|1958|1|1|12131|1|1|12128|1|1|9502|1|1|9499|1|1|9513|1|1|9510|1|1|14389|1|1|13784|1|1|11647|1|1|11644|1|1|11042|1|1|11039|1|1|9945|1|1|634|1|1|62|1|1|49|1|1|1239|1|1|9901|1|1|13839|1|1|12973|1|1|12368|1|1|10344|1|1|10355|1|1|10315|1|1|10317|1|1|9739|1|1|9750|1|1|9710|1|1|9712|1|1|14304|1|1|13699|1|1|1075|1|1|1077|1|1|239|1|1|241|1|1|470|1|1|472|1|1|1862|1|1|2037|1|1|2035|1|1|12481|1|1|9841|1|1|13933|1|1|13350|1|1|14538|1|1|3175|1|1|3164|1|1|9902|1|1|9900|1|1|13840|1|1|13838|1|1|13411|1|1|13409|1|1|10696|1|1|10695|1|1|11904|1|1|11902|1|1|5975|1|1|5973|1|1|10697|1|1|12202|1|1|12519|1|1|12530|1|1|12640|1|1|12651|1|1|12079|1|1|12750|1|1|12882|1|1|12893|1|1|13113|1|1|12266|1|1|13234|1|1|10638|1|1|13421|1|1|14576|1|1|14587|1|1|10759|1|1|10679|1|1|10676|1|1|11430|1|1|11441|1|1|11793|1|1|11804|1|1|10946|1|1|10957|1|1|11914|1|1|11925|1|1|5864|1|1|5875|1|1|5985|1|1|5996|1|1|5424|1|1|6095|1|1|6227|1|1|6238|1|1|6458|1|1|5611|1|1|6579|1|1|6384|1|1|6383|1|1|6333|1|1|6335|1|1|5779|1|1|5778|1|1|5728|1|1|5730|1|1|541|1|1|539|1|1|509|1|1|662|1|1|660|1|1|630|1|1|112|1|1|110|1|1|58|1|1|1135|1|1|1133|1|1|288|1|1|286|1|1|1267|1|1|1265|1|1|1235|1|1|12542|1|1|12540|1|1|9881|1|1|13994|1|1|13992|1|1|13390|1|1|14599|1|1|14597|1|1|3247|1|1|3245|1|1|3225|1|1|3223|1|1|10334|1|1|9729|1|1|9910|2|1|13859|2|1|13868|2|1|13869|2|1|13870|2|1|13848|2|1|13419|2|1|14139|2|1|14260|2|1|1880|2|1|1889|2|1|1890|2|1|1891|2|1|2160|2|1|9181|2|1|9302|2|1|10729|1|1|10728|1|1|11937|1|1|11935|1|1|6008|1|1|6006|1|1|6250|1|1|6248|1|1|1423|1|1|1422|1|1|1372|1|1|1374|1|1|2631|1|1|2629|1|1|2578|1|1|2577|1|1|2560|1|1|2562|1|1|9825|1|1|9823|1|1|9374|1|1|9372|1|1|9342|1|1|10551|1|1|10549|1|1|13334|1|1|13332|1|1|531|1|1|706|1|1|704|1|1|102|1|1|1311|1|1|1309|1|1|1257|1|1|11667|1|1|10818|1|1|11062|1|1|2348|1|1|1504|1|1|1743|1|1|9337|1|1|9334|1|1|10077|1|1|10440|1|1|9593|1|1|14411|1|1|13564|1|1|86|1|1|83|1|1|10749|1|1|10747|1|1|5854|1|1|5852|1|1|1443|1|1|1441|1|1|1390|1|1|1389|1|1|1401|1|1|1400|1|1|1361|1|1|1363|1|1|2598|1|1|2596|1|1|2609|1|1|2607|1|1|2567|1|1|2566|1|1|9957|1|1|9955|1|1|9936|1|1|12030|1|1|11353|1|1|10710|1|1|10721|1|1|11595|1|1|11887|1|1|5958|1|1|5375|1|1|6200|1|1|2047|1|1|1391|1|1|1402|1|1|1384|1|1|1381|1|1|2289|1|1|2568|1|1|6378|1|1|6375|1|1|5542|1|1|5539|1|1|5773|1|1|5770|1|1|13462|1|1|13459|1|1|12552|1|1|12673|1|1|12783|1|1|12915|1|1|13146|1|1|12299|1|1|13267|1|1|14609|1|1|10690|1|1|10687|1|1|11463|1|1|11826|1|1|10979|1|1|11947|1|1|11878|1|1|11875|1|1|5897|1|1|5828|1|1|5825|1|1|6018|1|1|5949|1|1|5946|1|1|6128|1|1|6260|1|1|6191|1|1|6188|1|1|6491|1|1|5644|1|1|6612|1|1|3257|1|1|3235|1|1|3378|1|1|3356|1|1|2715|1|1|2712|1|1|3488|1|1|3466|1|1|3620|1|1|3598|1|1|3851|1|1|3829|1|1|3004|1|1|2982|1|1|3972|1|1|3950|1|1|26|1|1|13993|1|1|1835|1|1|1832|1|1|12811|2|1|12932|2|1|14153|2|1|14140|2|1|14141|2|1|14142|2|1|14274|2|1|14261|2|1|14262|2|1|14263|2|1|14508|2|1|14629|2|1|11480|2|1|2174|2|1|2161|2|1|2162|2|1|2163|2|1|2529|2|1|7487|2|1|7608|2|1|4825|2|1|4946|2|1|8587|2|1|8574|2|1|8575|2|1|8576|2|1|8697|2|1|8818|2|1|8939|2|1|13273|1|1|5903|1|1|5890|1|1|5892|1|1|6497|1|1|5650|1|1|6618|1|1|3978|1|1|3956|1|1|5287|1|1|13257|2|1|13255|2|1|11926|2|1|11924|2|1|6481|2|1|6479|2|1|6602|2|1|6600|2|1|48|1|1|521|1|1|503|1|1|642|1|1|624|1|1|92|1|1|41|1|1|1247|1|1|1229|1|1|12000|2|1|9943|2|1|10254|2|1|10252|2|1|10243|2|1|10241|2|1|10200|2|1|10183|2|1|10184|2|1|10185|2|1|11530|2|1|11528|2|1|11510|2|1|5345|2|1|6085|2|1|6083|2|1|6065|2|1|2193|2|1|2731|2|1|2683|2|1|3555|2|1|3553|2|1|11700|1|1|10864|1|1|10851|1|1|10853|1|1|11095|1|1|2394|1|1|2381|1|1|2383|1|1|1545|1|1|1547|1|1|1534|1|1|1536|1|1|1789|1|1|1776|1|1|1778|1|1|14318|1|1|13469|1|1|13471|1|1|13713|1|1|2627|1|1|2624|1|1|12987|1|1|12181|1|1|12138|1|1|12382|1|1|10380|1|1|10367|1|1|9531|1|1|9523|1|1|9775|1|1|9762|1|1|11654|1|1|11049|1|1|3692|1|1|3703|1|1|3679|1|1|3670|1|1|2886|1|1|2843|1|1|2864|1|1|2854|1|1|2821|1|1|3087|1|1|3098|1|1|3074|1|1|3065|1|1|12572|2|1|12550|2|1|12209|2|1|12187|2|1|13914|2|1|13903|2|1|13892|2|1|13881|2|1|14024|2|1|14002|2|1|14143|2|1|14144|2|1|14145|2|1|14121|2|1|14122|2|1|14123|2|1|14264|2|1|14265|2|1|14266|2|1|14242|2|1|14243|2|1|14244|2|1|14387|2|1|14365|2|1|13551|2|1|13540|2|1|13529|2|1|13518|2|1|13661|2|1|13639|2|1|13782|2|1|13760|2|1|11241|2|1|11219|2|1|10878|2|1|10856|2|1|5917|2|1|5895|2|1|5554|2|1|1935|2|1|1924|2|1|1913|2|1|1902|2|1|2045|2|1|2023|2|1|2164|2|1|2165|2|1|2166|2|1|2142|2|1|2143|2|1|2144|2|1|2285|2|1|2286|2|1|2287|2|1|2263|2|1|2264|2|1|2265|2|1|2408|2|1|2386|2|1|1572|2|1|1561|2|1|1550|2|1|1539|2|1|1682|2|1|1660|2|1|1803|2|1|1781|2|1|7248|2|1|7226|2|1|6885|2|1|6863|2|1|3255|2|1|3233|2|1|2892|2|1|2870|2|1|4586|2|1|4564|2|1|4223|2|1|4201|2|1|8577|2|1|8578|2|1|8579|2|1|8555|2|1|8556|2|1|8557|2|1|8214|2|1|8215|2|1|8216|2|1|8192|2|1|8193|2|1|8194|2|1|9824|1|1|705|1|1|9397|1|1|10606|1|1|10604|1|1|11167|1|1|11165|1|1|11146|1|1|2092|1|1|2090|1|1|2071|1|1|2455|1|1|2453|1|1|2434|1|1|1608|1|1|1606|1|1|1587|1|1|3192|1|1|3190|1|1|12967|1|1|12964|1|1|12362|1|1|12359|1|1|10327|1|1|10324|1|1|9722|1|1|9719|1|1|14298|1|1|14295|1|1|13693|1|1|13690|1|1|3661|1|1|3658|1|1|3650|1|1|3647|1|1|3056|1|1|3053|1|1|3045|1|1|3042|1|1|1438|1|1|2644|1|1|2643|1|1|13027|1|1|12191|1|1|12422|1|1|11707|1|1|11102|1|1|3732|1|1|3710|1|1|2896|1|1|2874|1|1|3127|1|1|3105|1|1|6409|1|1|6396|1|1|5560|1|1|5552|1|1|5804|1|1|5791|1|1|10811|1|1|10808|1|1|2341|1|1|2338|1|1|1736|1|1|1733|1|1|2836|1|1|2833|1|1|1976|1|1|10001|1|1|9999|1|1|11288|1|1|11286|1|1|11267|1|1|3313|1|1|3311|1|1|9816|1|1|9354|1|1|9336|1|1|10542|1|1|13325|1|1|686|1|1|85|1|1|87|1|1|928|1|1|1291|1|1|14358|1|1|13522|1|1|13511|1|1|13753|1|1|12069|1|1|12067|1|1|12016|1|1|12015|1|1|11998|1|1|13224|1|1|13222|1|1|13204|1|1|13203|1|1|5414|1|1|5412|1|1|5361|1|1|5360|1|1|5343|1|1|6448|1|1|6446|1|1|6428|1|1|6427|1|1|5601|1|1|5599|1|1|5581|1|1|5580|1|1|6569|1|1|6567|1|1|6549|1|1|6548|1|1|2774|1|1|2772|1|1|2721|1|1|2720|1|1|2752|1|1|2750|1|1|2732|1|1|2699|1|1|2698|1|1|2692|1|1|2694|1|1|2681|1|1|3929|1|1|3927|1|1|3907|1|1|3905|1|1|3898|1|1|3897|1|1|3887|1|1|3886|1|1|6356|1|1|6353|1|1|6367|1|1|6364|1|1|5751|1|1|5748|1|1|5762|1|1|5759|1|1|1065|1|1|1062|1|1|460|1|1|457|1|1|10000|1|1|9357|1|1|10242|1|1|10545|1|1|9946|1|1|9944|1|1|652|1|1|1179|1|1|1177|1|1|1125|1|1|332|1|1|330|1|1|278|1|1|570|1|1|567|1|1|656|1|1|9940|1|1|10743|1|1|10730|1|1|11898|1|1|5969|1|1|6211|1|1|1424|1|1|2579|1|1|3923|1|1|9846|1|1|9346|1|1|1261|1|1|12995|1|1|12159|1|1|12170|1|1|12130|1|1|12132|1|1|12390|1|1|10388|1|1|9552|1|1|9501|1|1|9503|1|1|9512|1|1|9514|1|1|9783|1|1|14326|1|1|13721|1|1|11675|1|1|11686|1|1|11646|1|1|11648|1|1|11070|1|1|11081|1|1|11041|1|1|11043|1|1|7012|3|1|7013|3|1|7014|3|1|7001|3|1|7002|3|1|6990|3|1|6991|3|1|6992|3|1|6979|3|1|6980|3|1|7133|3|1|7134|3|1|7135|3|1|7122|3|1|7123|3|1|7111|3|1|7112|3|1|7113|3|1|7100|3|1|7101|3|1|4350|3|1|4351|3|1|4352|3|1|4339|3|1|4340|3|1|4328|3|1|4329|3|1|4330|3|1|4317|3|1|4318|3|1|4471|3|1|4472|3|1|4473|3|1|4460|3|1|4461|3|1|4449|3|1|4450|3|1|4451|3|1|4438|3|1|4439|3|1|8343|3|1|8344|3|1|8345|3|1|8332|3|1|8333|3|1|8321|3|1|8322|3|1|8323|3|1|8310|3|1|8311|3|1|8464|3|1|8465|3|1|8466|3|1|8453|3|1|8454|3|1|8442|3|1|8443|3|1|8444|3|1|8431|3|1|8432|3|1|12729|2|1|12727|2|1|12850|2|1|12848|2|1|9869|2|1|9867|2|1|9386|2|1|10100|2|1|10098|2|1|10111|2|1|10109|2|1|10068|2|1|10473|2|1|9627|2|1|9625|2|1|13378|2|1|13376|2|1|14060|2|1|14058|2|1|14181|2|1|14179|2|1|11398|2|1|11396|2|1|555|2|1|556|2|1|676|2|1|677|2|1|678|2|1|839|2|1|828|2|1|786|2|1|787|2|1|788|2|1|797|2|1|798|2|1|799|2|1|775|2|1|776|2|1|777|2|1|960|2|1|949|2|1|907|2|1|908|2|1|909|2|1|918|2|1|919|2|1|920|2|1|1154|2|1|1163|2|1|1164|2|1|1165|2|1|1143|2|1|313|2|1|314|2|1|315|2|1|1275|2|1|1284|2|1|1285|2|1|1286|2|1|1264|2|1|2081|2|1|2079|2|1|13081|1|1|13079|1|1|12234|1|1|12232|1|1|10441|1|1|10439|1|1|10420|1|1|9594|1|1|9592|1|1|9573|1|1|14412|1|1|14410|1|1|13565|1|1|13563|1|1|575|1|1|696|1|1|1169|1|1|322|1|1|1301|1|1|3775|1|1|3773|1|1|3764|1|1|3762|1|1|2928|1|1|2926|1|1|2917|1|1|2915|1|1|2016|1|1|9847|1|1|9845|1|1|9364|1|1|10573|1|1|10571|1|1|11277|1|1|11275|1|1|31|1|1|28|1|1|1145|1|1|298|1|1|12036|1|1|12034|1|1|12005|1|1|12004|1|1|13213|1|1|13211|1|1|5381|1|1|5379|1|1|5350|1|1|5349|1|1|6437|1|1|6435|1|1|5590|1|1|5588|1|1|6558|1|1|6556|1|1|11964|1|1|6035|1|1|2658|1|1|2645|1|1|2647|1|1|11718|1|1|10882|1|1|11113|1|1|2412|1|1|1807|1|1|7015|3|1|7016|3|1|7017|3|1|7004|3|1|7005|3|1|7006|3|1|6993|3|1|6994|3|1|6995|3|1|6982|3|1|6983|3|1|6984|3|1|7136|3|1|7137|3|1|7138|3|1|7125|3|1|7126|3|1|7127|3|1|7114|3|1|7115|3|1|7116|3|1|7103|3|1|7104|3|1|7105|3|1|4353|3|1|4354|3|1|4355|3|1|4342|3|1|4343|3|1|4344|3|1|4331|3|1|4332|3|1|4333|3|1|4320|3|1|4321|3|1|4322|3|1|4474|3|1|4475|3|1|4476|3|1|4463|3|1|4464|3|1|4465|3|1|4452|3|1|4453|3|1|4454|3|1|4441|3|1|4442|3|1|4443|3|1|8346|3|1|8347|3|1|8335|3|1|8336|3|1|8324|3|1|8325|3|1|8313|3|1|8314|3|1|8467|3|1|8468|3|1|8456|3|1|8457|3|1|8445|3|1|8446|3|1|8434|3|1|8435|3|1|11665|1|1|11060|1|1|9546|1|1|9543|1|1|13484|1|1|13481|1|1|522|1|1|643|1|1|93|1|1|1129|1|1|282|1|1|1248|1|1|10429|1|1|9582|1|1|595|1|1|716|1|1|53|1|1|50|1|1|1189|1|1|342|1|1|12974|1|1|12369|1|1|10345|1|1|10356|1|1|10338|1|1|10335|1|1|9740|1|1|9751|1|1|9733|1|1|9730|1|1|14305|1|1|13490|1|1|13461|1|1|13700|1|1|12998|1|1|12149|1|1|12393|1|1|11678|1|1|11689|1|1|10872|1|1|10829|1|1|10840|1|1|10822|1|1|10819|1|1|11073|1|1|11084|1|1|2402|1|1|2359|1|1|2370|1|1|2352|1|1|2349|1|1|1566|1|1|1555|1|1|1515|1|1|1797|1|1|1754|1|1|1765|1|1|1747|1|1|1744|1|1|13850|1|1|12006|1|1|5351|1|1|9418|1|1|9416|1|1|13356|1|1|13354|1|1|11156|1|1|11154|1|1|2444|1|1|2442|1|1|1597|1|1|1595|1|1|1113|1|1|1111|1|1|266|1|1|264|1|1|13059|1|1|13057|1|1|13005|1|1|13016|1|1|12454|1|1|12452|1|1|12400|1|1|12411|1|1|10398|1|1|9793|1|1|14390|1|1|14388|1|1|14336|1|1|14347|1|1|13785|1|1|13783|1|1|13731|1|1|13742|1|1|527|2|1|648|2|1|98|2|1|818|2|1|807|2|1|767|2|1|768|2|1|769|2|1|939|2|1|888|2|1|889|2|1|890|2|1|285|2|1|1841|1|1|12080|1|1|12078|1|1|12027|1|1|12026|1|1|13235|1|1|13233|1|1|10760|1|1|10758|1|1|10707|1|1|10706|1|1|10718|1|1|10717|1|1|10678|1|1|10680|1|1|11915|1|1|11913|1|1|11884|1|1|11883|1|1|5865|1|1|5863|1|1|5876|1|1|5874|1|1|5834|1|1|5833|1|1|5986|1|1|5984|1|1|5997|1|1|5995|1|1|5955|1|1|5954|1|1|5425|1|1|5423|1|1|5372|1|1|5371|1|1|6096|1|1|6094|1|1|6228|1|1|6226|1|1|6239|1|1|6237|1|1|6197|1|1|6196|1|1|6459|1|1|6457|1|1|5612|1|1|5610|1|1|6580|1|1|6578|1|1|9852|1|1|1105|1|1|258|1|1|12060|1|1|12059|1|1|13268|1|1|13266|1|1|10740|1|1|10739|1|1|10689|1|1|10691|1|1|11948|1|1|11946|1|1|11895|1|1|11894|1|1|11877|1|1|11879|1|1|5898|1|1|5896|1|1|5845|1|1|5844|1|1|5827|1|1|5829|1|1|6019|1|1|6017|1|1|5966|1|1|5965|1|1|5948|1|1|5950|1|1|5405|1|1|5404|1|1|6129|1|1|6127|1|1|6261|1|1|6259|1|1|6208|1|1|6207|1|1|6190|1|1|6192|1|1|6492|1|1|6490|1|1|5645|1|1|5643|1|1|6613|1|1|6611|1|1|2765|1|1|2764|1|1|2743|1|1|2742|1|1|2714|1|1|2716|1|1|3973|1|1|3971|1|1|3951|1|1|3949|1|1|3920|1|1|3919|1|1|1852|1|1|1834|1|1|9890|1|1|10121|1|1|10484|1|1|9637|1|1|13949|1|1|14191|1|1|9423|1|1|13361|1|1|11161|1|1|1842|1|1|1844|1|1|2449|1|1|1602|1|1|12984|1|1|12966|1|1|12968|1|1|12379|1|1|12361|1|1|12363|1|1|10377|1|1|10326|1|1|10328|1|1|9772|1|1|9721|1|1|9723|1|1|14315|1|1|14297|1|1|14299|1|1|13710|1|1|13692|1|1|13694|1|1|3689|1|1|3700|1|1|3667|1|1|3660|1|1|3662|1|1|3649|1|1|3651|1|1|3084|1|1|3095|1|1|3062|1|1|3055|1|1|3057|1|1|3044|1|1|3046|1|1|12017|1|1|13205|1|1|5362|1|1|6066|1|1|6429|1|1|5582|1|1|6550|1|1|2722|1|1|2733|1|1|2700|1|1|3899|1|1|3888|1|1|10253|2|1|10201|2|1|13883|1|1|13872|1|1|14477|1|1|13630|1|1|1109|1|1|1106|1|1|262|1|1|259|1|1|1083|1|1|478|1|1|12041|1|1|12052|1|1|12028|1|1|13218|1|1|11364|1|1|10708|1|1|10719|1|1|10701|1|1|10698|1|1|11606|1|1|11885|1|1|5835|1|1|5956|1|1|5386|1|1|5397|1|1|5373|1|1|6079|1|1|6198|1|1|6442|1|1|5595|1|1|6563|1|1|11233|1|1|11231|1|1|1927|1|1|1925|1|1|1916|1|1|1914|1|1|1873|1|1|1383|1|1|1385|1|1|2521|1|1|2519|1|1|1674|1|1|1672|1|1|2589|1|1|2588|1|1|12498|1|1|12496|1|1|12477|1|1|12619|1|1|12617|1|1|12598|1|1|12861|1|1|12859|1|1|12840|1|1|9891|1|1|9889|1|1|9837|1|1|9408|1|1|10122|1|1|10120|1|1|10485|1|1|10483|1|1|9638|1|1|9636|1|1|10617|1|1|10615|1|1|10563|1|1|13950|1|1|13948|1|1|13929|1|1|13400|1|1|13398|1|1|13346|1|1|14192|1|1|14190|1|1|14171|1|1|14555|1|1|14553|1|1|14534|1|1|11409|1|1|11407|1|1|11388|1|1|11772|1|1|11770|1|1|11751|1|1|10925|1|1|10923|1|1|10904|1|1|3203|1|1|3201|1|1|3214|1|1|3212|1|1|3181|1|1|3179|1|1|3171|1|1|3160|1|1|3324|1|1|3322|1|1|3335|1|1|3333|1|1|3302|1|1|3300|1|1|3292|1|1|3281|1|1|3434|1|1|3432|1|1|3566|1|1|3564|1|1|3577|1|1|3575|1|1|3544|1|1|3542|1|1|3534|1|1|3523|1|1|3797|1|1|3795|1|1|2950|1|1|2948|1|1|6377|1|1|6379|1|1|5541|1|1|5543|1|1|5772|1|1|5774|1|1|13473|1|1|13470|1|1|12048|2|1|12872|2|1|12870|2|1|13135|2|1|13256|2|1|9991|2|1|10090|2|1|10276|2|1|10274|2|1|10265|2|1|10263|2|1|10222|2|1|10233|2|1|10211|2|1|10191|2|1|10192|2|1|10193|2|1|14203|2|1|14201|2|1|11321|2|1|11319|2|1|11420|2|1|11418|2|1|11552|2|1|11550|2|1|11563|2|1|11561|2|1|11541|2|1|11539|2|1|11520|2|1|5393|2|1|6107|2|1|6105|2|1|6118|2|1|6116|2|1|6075|2|1|6480|2|1|5634|2|1|5632|2|1|6601|2|1|2004|2|1|2002|2|1|2103|2|1|2101|2|1|2235|2|1|2233|2|1|2246|2|1|2244|2|1|2224|2|1|2222|2|1|2203|2|1|12684|1|1|12926|1|1|11243|1|1|11474|1|1|11837|1|1|10990|1|1|11958|1|1|6029|1|1|6271|1|1|1395|1|1|1392|1|1|1406|1|1|1403|1|1|2168|1|1|2531|1|1|1684|1|1|2652|1|1|2572|1|1|2569|1|1|511|1|1|632|1|1|60|1|1|1118|1|1|271|1|1|1237|1|1|12142|1|1|12139|1|1|10371|1|1|10368|1|1|9535|1|1|9532|1|1|9766|1|1|9763|1|1|11658|1|1|11655|1|1|11053|1|1|11050|1|1|3683|1|1|3680|1|1|2847|1|1|2844|1|1|2858|1|1|2855|1|1|2825|1|1|2822|1|1|3078|1|1|3075|1|1|11511|2|1|11512|2|1|11513|2|1|6067|2|1|2194|2|1|2195|2|1|3941|2|1|10430|1|1|10428|1|1|9583|1|1|9581|1|1|596|1|1|594|1|1|542|1|1|717|1|1|715|1|1|663|1|1|113|1|1|1190|1|1|1188|1|1|1136|1|1|343|1|1|341|1|1|289|1|1|1322|1|1|1320|1|1|1268|1|1|11697|1|1|10861|1|1|10810|1|1|10812|1|1|11092|1|1|1064|1|1|1066|1|1|459|1|1|461|1|1|2391|1|1|2340|1|1|2342|1|1|1786|1|1|1735|1|1|1737|1|1|2835|1|1|2837|1|1|1951|1|1|6385|1|1|5780|1|1|13809|1|1|569|1|1|10855|1|1|10852|1|1|2385|1|1|2382|1|1|1549|1|1|1546|1|1|1538|1|1|1535|1|1|1780|1|1|1777|1|1|510|1|1|631|1|1|59|1|1|30|1|1|1236|1|1|9978|1|1|9967|1|1|9344|1|1|10451|1|1|9604|1|1|533|1|1|667|1|1|117|1|1|104|1|1|1140|1|1|293|1|1|1272|1|1|1259|1|1|9817|1|1|10011|1|1|9355|1|1|10061|1|1|10424|1|1|9577|1|1|10543|1|1|13326|1|1|700|1|1|687|1|1|942|1|1|929|1|1|1305|1|1|1292|1|1|12719|2|1|10059|2|1|10060|2|1|14050|2|1|3402|2|1|3819|2|1|3817|2|1|526|1|1|523|1|1|647|1|1|644|1|1|97|1|1|94|1|1|1252|1|1|1249|1|1|13031|1|1|12195|1|1|12182|1|1|12184|1|1|12426|1|1|3736|1|1|3714|1|1|2900|1|1|2887|1|1|2889|1|1|2878|1|1|2865|1|1|2867|1|1|3131|1|1|3109|1|1|5045|1|1|4209|1|1|4196|1|1|4198|1|1|6406|1|1|6405|1|1|6355|1|1|6357|1|1|6366|1|1|6368|1|1|5801|1|1|5800|1|1|5750|1|1|5752|1|1|5761|1|1|5763|1|1|587|1|1|9937|1|1|10006|1|1|11909|1|1|5980|1|1|6222|1|1|2590|1|1|12487|1|1|12485|1|1|12608|1|1|12606|1|1|9858|1|1|9856|1|1|9826|1|1|9429|1|1|9427|1|1|9375|1|1|10584|1|1|10582|1|1|10552|1|1|13939|1|1|13937|1|1|13367|1|1|13365|1|1|13335|1|1|14544|1|1|14542|1|1|11761|1|1|11759|1|1|10914|1|1|10912|1|1|707|1|1|1312|1|1|9398|1|1|11147|1|1|1126|1|1|1108|1|1|279|1|1|261|1|1|2072|1|1|2435|1|1|1588|1|1|6218|2|1|6400|1|1|6397|1|1|5564|1|1|5561|1|1|5795|1|1|5792|1|1|9857|1|1|9868|1|1|13938|1|1|14180|1|1|5911|1|1|5910|1|1|2626|1|1|10337|1|1|10339|1|1|9732|1|1|9734|1|1|9343|1|1|532|1|1|103|1|1|52|1|1|1258|1|1|10611|1|1|11172|1|1|1853|1|1|1855|1|1|2460|1|1|1613|1|1|3197|1|1|5894|1|1|5891|1|1|11722|1|1|10886|1|1|10873|1|1|10875|1|1|11117|1|1|2416|1|1|2403|1|1|2405|1|1|1567|1|1|1569|1|1|1556|1|1|1558|1|1|1811|1|1|1798|1|1|1800|1|1|13009|1|1|13020|1|1|12996|1|1|12203|1|1|12160|1|1|12171|1|1|12404|1|1|12415|1|1|12391|1|1|10402|1|1|10389|1|1|9553|1|1|9545|1|1|9797|1|1|9784|1|1|14327|1|1|13483|1|1|13722|1|1|11676|1|1|11687|1|1|11669|1|1|11666|1|1|11071|1|1|11082|1|1|11064|1|1|11061|1|1|12074|1|1|12061|1|1|13229|1|1|10741|1|1|11896|1|1|5846|1|1|5967|1|1|5419|1|1|5406|1|1|6090|1|1|6209|1|1|6453|1|1|5606|1|1|6574|1|1|2779|1|1|2766|1|1|2757|1|1|2744|1|1|3934|1|1|3945|1|1|3921|1|1|3912|1|1|14340|1|1|13491|1|1|13493|1|1|13735|1|1|11212|1|1|1906|1|1|1895|1|1|2500|1|1|1653|1|1|12978|1|1|12975|1|1|12373|1|1|12370|1|1|10349|1|1|10346|1|1|10360|1|1|10357|1|1|9744|1|1|9741|1|1|9755|1|1|9752|1|1|14309|1|1|14306|1|1|13704|1|1|13701|1|1|601|1|1|588|1|1|590|1|1|1195|1|1|348|1|1|13851|1|1|13849|1|1|13819|1|1|1146|1|1|1144|1|1|1114|1|1|299|1|1|297|1|1|267|1|1|13049|1|1|12213|1|1|12444|1|1|11729|1|1|11124|1|1|653|1|1|11178|1|1|11176|1|1|1993|1|1|1991|1|1|1982|1|1|1980|1|1|1961|1|1|2466|1|1|2464|1|1|1619|1|1|1617|1|1|12090|1|1|12010|1|1|12007|1|1|12761|1|1|12772|1|1|13124|1|1|12277|1|1|12288|1|1|13245|1|1|5435|1|1|5355|1|1|5352|1|1|6106|1|1|6117|1|1|6469|1|1|5622|1|1|5633|1|1|6590|1|1|12153|1|1|12150|1|1|10833|1|1|10830|1|1|10844|1|1|10841|1|1|2363|1|1|2360|1|1|2374|1|1|2371|1|1|1758|1|1|1755|1|1|1769|1|1|1766|1|1|10821|1|1|10823|1|1|2351|1|1|2353|1|1|1746|1|1|1748|1|1|11332|1|1|11330|1|1|11574|1|1|11572|1|1|2026|1|1|2024|1|1|1972|1|1|2268|1|1|2266|1|1|2214|1|1|12985|1|1|12380|1|1|10378|1|1|9773|1|1|14359|1|1|14316|1|1|13523|1|1|13512|1|1|13472|1|1|13754|1|1|13711|1|1|3690|1|1|3701|1|1|3668|1|1|3085|1|1|3096|1|1|3063|1|1|11271|1|1|1952|1|1|515|1|1|512|1|1|636|1|1|633|1|1|64|1|1|61|1|1|1200|1|1|353|1|1|1241|1|1|1238|1|1|1087|1|1|1084|1|1|482|1|1|479|1|1|9387|2|1|9349|2|1|10099|2|1|10110|2|1|10069|2|1|9626|2|1|14059|2|1|549|2|1|558|2|1|559|2|1|560|2|1|538|2|1|670|2|1|679|2|1|680|2|1|681|2|1|120|2|1|109|2|1|840|2|1|829|2|1|789|2|1|790|2|1|791|2|1|800|2|1|801|2|1|802|2|1|778|2|1|779|2|1|780|2|1|961|2|1|950|2|1|910|2|1|911|2|1|912|2|1|921|2|1|922|2|1|923|2|1|307|2|1|316|2|1|317|2|1|318|2|1|296|2|1|10734|1|1|10731|1|1|1428|1|1|1425|1|1|2583|1|1|2580|1|1|13884|1|1|13882|1|1|13873|1|1|13871|1|1|13830|1|1|14478|1|1|14476|1|1|13631|1|1|13629|1|1|14380|1|1|13544|1|1|13533|1|1|13775|1|1|1863|1|1|13810|1|1|13812|1|1|14417|1|1|13570|1|1|9368|1|1|9882|1|1|13391|1|1|10421|1|1|9574|1|1|576|1|1|525|1|1|697|1|1|646|1|1|96|1|1|1170|1|1|323|1|1|1302|1|1|1251|1|1|9365|1|1|1115|1|1|268|1|1|13028|1|1|12192|1|1|12141|1|1|12143|1|1|12423|1|1|10370|1|1|10372|1|1|9534|1|1|9536|1|1|9765|1|1|9767|1|1|11708|1|1|11657|1|1|11659|1|1|11103|1|1|11052|1|1|11054|1|1|3733|1|1|3711|1|1|3682|1|1|3684|1|1|2897|1|1|2846|1|1|2848|1|1|2875|1|1|2857|1|1|2859|1|1|2824|1|1|2826|1|1|3128|1|1|3106|1|1|3077|1|1|3079|1|1|9821|1|1|9818|1|1|9359|1|1|9356|1|1|10132|1|1|10495|1|1|9648|1|1|10547|1|1|10544|1|1|13330|1|1|13327|1|1|14070|1|1|14433|1|1|13586|1|1|691|1|1|688|1|1|933|1|1|930|1|1|1296|1|1|1293|1|1|12492|1|1|9863|1|1|13944|1|1|13372|1|1|14549|1|1|11711|1|1|11698|1|1|10862|1|1|10854|1|1|11106|1|1|11093|1|1|2392|1|1|2384|1|1|1548|1|1|1537|1|1|1787|1|1|1779|1|1|10012|1|1|10010|1|1|9958|1|1|12564|1|1|12562|1|1|9903|1|1|13841|1|1|14016|1|1|14014|1|1|13412|1|1|14621|1|1|14619|1|1|10700|1|1|10702|1|1|11906|1|1|11905|1|1|5977|1|1|5976|1|1|6219|1|1|12021|1|1|12018|1|1|12794|1|1|13157|1|1|12310|1|1|13278|1|1|13209|1|1|13206|1|1|5366|1|1|5363|1|1|6139|1|1|6070|1|1|6502|1|1|6433|1|1|6430|1|1|5655|1|1|5586|1|1|5583|1|1|6623|1|1|6554|1|1|6551|1|1|2726|1|1|2723|1|1|2737|1|1|2734|1|1|2704|1|1|2701|1|1|3499|1|1|3477|1|1|3862|1|1|3840|1|1|3015|1|1|2993|1|1|3983|1|1|3961|1|1|3903|1|1|3900|1|1|3892|1|1|3889|1|1|10751|1|1|10750|1|1|11959|1|1|11957|1|1|5856|1|1|5855|1|1|6030|1|1|6028|1|1|6272|1|1|6270|1|1|1445|1|1|1444|1|1|1394|1|1|1396|1|1|1405|1|1|1407|1|1|2653|1|1|2651|1|1|2600|1|1|2599|1|1|2611|1|1|2610|1|1|2571|1|1|2573|1|1|11268|1|1|9348|1|1|9345|1|1|10462|1|1|9615|1|1|14422|1|1|13575|1|1|537|1|1|534|1|1|108|1|1|105|1|1|1263|1|1|1260|1|1|9979|1|1|9977|1|1|9968|1|1|9966|1|1|9947|1|1|10452|1|1|10450|1|1|9605|1|1|9603|1|1|6389|1|1|6386|1|1|5784|1|1|5781|1|1|9938|1|1|12574|1|1|12695|1|1|12032|1|1|12029|1|1|12805|1|1|12937|1|1|13168|1|1|12321|1|1|13289|1|1|14631|1|1|10712|1|1|10709|1|1|10723|1|1|10720|1|1|11485|1|1|11848|1|1|11001|1|1|11969|1|1|11889|1|1|11886|1|1|5919|1|1|5839|1|1|5836|1|1|6040|1|1|5960|1|1|5957|1|1|5377|1|1|5374|1|1|6150|1|1|6282|1|1|6202|1|1|6199|1|1|6513|1|1|5666|1|1|6634|1|1|13038|1|1|12433|1|1|14369|1|1|13764|1|1|3743|1|1|3721|1|1|3138|1|1|3116|1|1|654|1|1|14015|1|1|1846|1|1|1843|1|1|12049|2|1|12011|2|1|13136|2|1|13134|2|1|9992|2|1|9954|2|1|9371|2|1|10091|2|1|10275|2|1|10264|2|1|10223|2|1|10234|2|1|10212|2|1|10194|2|1|10195|2|1|10196|2|1|10475|2|1|10596|2|1|14202|2|1|14467|2|1|14465|2|1|14588|2|1|14586|2|1|11521|2|1|11805|2|1|11803|2|1|5394|2|1|5356|2|1|6076|2|1|2204|2|1|2488|2|1|2486|2|1|12740|2|1|12738|2|1|12720|2|1|12841|2|1|9822|2|1|10133|2|1|10131|2|1|10079|2|1|10062|2|1|10063|2|1|10064|2|1|10427|2|1|9580|2|1|10548|2|1|13331|2|1|14071|2|1|14069|2|1|14051|2|1|14172|2|1|11389|2|1|819|2|1|820|2|1|821|2|1|808|2|1|809|2|1|940|2|1|941|2|1|1187|2|1|1176|2|1|1308|2|1|1297|2|1|3445|2|1|3443|2|1|3456|2|1|3454|2|1|3423|2|1|3421|2|1|3413|2|1|3403|2|1|3524|2|1|2972|2|1|2970|2|1|13295|1|1|5925|1|1|5912|1|1|5914|1|1|6519|1|1|5672|1|1|6640|1|1|5309|1|1|13210|2|1|10255|2|1|10244|2|1|10202|2|1|10203|2|1|10204|2|1|11274|2|1|11585|2|1|11583|2|1|11531|2|1|11514|2|1|11515|2|1|11516|2|1|6140|2|1|6138|2|1|6086|2|1|6069|2|1|6071|2|1|6434|2|1|5587|2|1|6555|2|1|1957|2|1|2197|2|1|2198|2|1|2199|2|1|3556|2|1|3942|2|1|3904|2|1|3893|2|1|543|1|1|514|1|1|664|1|1|635|1|1|114|1|1|63|1|1|1137|1|1|290|1|1|1269|1|1|1240|1|1|2649|1|1|2646|1|1|12509|1|1|12507|1|1|9419|1|1|10628|1|1|10626|1|1|13357|1|1|14566|1|1|14564|1|1|11189|1|1|11187|1|1|11200|1|1|11198|1|1|11157|1|1|2114|1|1|2112|1|1|2125|1|1|2123|1|1|2082|1|1|2477|1|1|2475|1|1|2445|1|1|1630|1|1|1628|1|1|1641|1|1|1639|1|1|1598|1|1|13006|1|1|13017|1|1|12977|1|1|12979|1|1|12401|1|1|12412|1|1|12372|1|1|12374|1|1|10399|1|1|10348|1|1|10350|1|1|10359|1|1|10361|1|1|9794|1|1|9743|1|1|9745|1|1|9754|1|1|9756|1|1|14337|1|1|14348|1|1|14308|1|1|14310|1|1|13732|1|1|13743|1|1|13703|1|1|13705|1|1|12186|1|1|12183|1|1|2891|1|1|2888|1|1|2869|1|1|2866|1|1|4200|1|1|4197|1|1|11668|1|1|11670|1|1|11063|1|1|11065|1|1|11183|1|1|1864|1|1|1866|1|1|1998|1|1|1987|1|1|2471|1|1|1624|1|1|12630|1|1|12628|1|1|9848|1|1|10023|1|1|10021|1|1|10574|1|1|13961|1|1|13959|1|1|11310|1|1|11308|1|1|11299|1|1|11297|1|1|11278|1|1|11783|1|1|11781|1|1|10936|1|1|10934|1|1|9827|1|1|9376|1|1|9347|1|1|10553|1|1|13336|1|1|536|1|1|708|1|1|107|1|1|1313|1|1|1262|1|1|11907|1|1|5978|1|1|6220|1|1|13258|2|1|11927|2|1|6482|2|1|6603|2|1|12091|1|1|12089|1|1|12038|1|1|12037|1|1|12009|1|1|13246|1|1|13244|1|1|13215|1|1|13214|1|1|5436|1|1|5434|1|1|5383|1|1|5382|1|1|5354|1|1|6470|1|1|6468|1|1|6439|1|1|6438|1|1|5623|1|1|5621|1|1|5592|1|1|5591|1|1|6591|1|1|6589|1|1|6560|1|1|6559|1|1|6399|1|1|6401|1|1|5563|1|1|5565|1|1|5794|1|1|5796|1|1|12503|1|1|9896|1|1|9883|1|1|9885|1|1|10490|1|1|9643|1|1|13955|1|1|13405|1|1|13392|1|1|13394|1|1|14560|1|1|3208|1|1|3186|1|1|13495|1|1|13492|1|1|10022|1|1|9379|1|1|9390|1|1|10556|1|1|13960|1|1|13000|1|1|12997|1|1|12164|1|1|12161|1|1|12175|1|1|12172|1|1|12395|1|1|12392|1|1|10393|1|1|10390|1|1|9557|1|1|9554|1|1|9788|1|1|9785|1|1|14331|1|1|14328|1|1|13726|1|1|13723|1|1|11680|1|1|11677|1|1|11691|1|1|11688|1|1|11075|1|1|11072|1|1|11086|1|1|11083|1|1|12543|1|1|13995|1|1|14600|1|1|3248|1|1|3226|1|1|12152|1|1|12154|1|1|11719|1|1|10883|1|1|10832|1|1|10834|1|1|10843|1|1|10845|1|1|11114|1|1|1086|1|1|1088|1|1|481|1|1|483|1|1|2413|1|1|2362|1|1|2364|1|1|2373|1|1|2375|1|1|1808|1|1|1757|1|1|1759|1|1|1768|1|1|1770|1|1|12478|1|1|12599|1|1|9838|1|1|9820|1|1|9409|1|1|9358|1|1|9360|1|1|10564|1|1|10546|1|1|13930|1|1|13347|1|1|13329|1|1|14535|1|1|11752|1|1|10905|1|1|690|1|1|692|1|1|932|1|1|934|1|1|1295|1|1|3172|1|1|3161|1|1|3293|1|1|3282|1|1|3535|1|1|1201|1|1|1199|1|1|1147|1|1|354|1|1|352|1|1|300|1|1|592|1|1|589|1|1|9951|1|1|9366|1|1|12989|1|1|12986|1|1|12384|1|1|12381|1|1|10382|1|1|10379|1|1|9777|1|1|9774|1|1|14320|1|1|14317|1|1|13715|1|1|13712|1|1|3694|1|1|3691|1|1|3705|1|1|3702|1|1|3672|1|1|3669|1|1|3089|1|1|3086|1|1|3100|1|1|3097|1|1|3067|1|1|3064|1|1|13240|1|1|10765|1|1|10752|1|1|11920|1|1|11931|1|1|5857|1|1|5991|1|1|6002|1|1|6101|1|1|6233|1|1|6244|1|1|6464|1|1|5617|1|1|6585|1|1|1446|1|1|2601|1|1|2612|1|1|2594|1|1|2591|1|1|10002|1|1|11343|1|1|11341|1|1|11289|1|1|3314|1|1|13092|1|1|13090|1|1|12245|1|1|12243|1|1|10463|1|1|10461|1|1|10431|1|1|9616|1|1|9614|1|1|9584|1|1|14423|1|1|14421|1|1|13576|1|1|13574|1|1|597|1|1|718|1|1|1191|1|1|344|1|1|1323|1|1|9962|1|1|11269|1|1|2038|1|1|10877|1|1|10874|1|1|2407|1|1|2404|1|1|1571|1|1|1568|1|1|1560|1|1|1557|1|1|1802|1|1|1799|1|1|6407|1|1|5802|1|1|2017|1|1|5893|1|1|13053|1|1|12217|1|1|12204|1|1|12206|1|1|12448|1|1|5067|1|1|4231|1|1|4218|1|1|4220|1|1|10733|1|1|10735|1|1|11939|1|1|11938|1|1|6010|1|1|6009|1|1|6252|1|1|6251|1|1|1427|1|1|1429|1|1|2633|1|1|2632|1|1|2582|1|1|2584|1|1|12663|1|1|12661|1|1|12905|1|1|12903|1|1|10607|1|1|11222|1|1|11220|1|1|11168|1|1|11453|1|1|11451|1|1|11816|1|1|11814|1|1|10969|1|1|10967|1|1|2147|1|1|2145|1|1|2093|1|1|2510|1|1|2508|1|1|2456|1|1|1663|1|1|1661|1|1|1609|1|1|3193|1|1|3368|1|1|3366|1|1|3346|1|1|3344|1|1|3610|1|1|3608|1|1|3588|1|1|3586|1|1|1857|1|1|1854|1|1|6388|1|1|6390|1|1|5783|1|1|5785|1|1|12065|1|1|12062|1|1|10745|1|1|10742|1|1|11900|1|1|11897|1|1|5850|1|1|5847|1|1|5971|1|1|5968|1|1|5410|1|1|5407|1|1|6213|1|1|6210|1|1|2770|1|1|2767|1|1|2748|1|1|2745|1|1|3925|1|1|3922|1|1|13103|1|1|13101|1|1|13082|1|1|12256|1|1|12254|1|1|12235|1|1|10496|1|1|10494|1|1|10442|1|1|9649|1|1|9647|1|1|9595|1|1|14434|1|1|14432|1|1|14413|1|1|13587|1|1|13585|1|1|13566|1|1|3808|1|1|3806|1|1|3786|1|1|3784|1|1|3776|1|1|3765|1|1|2961|1|1|2959|1|1|2939|1|1|2937|1|1|2929|1|1|2918|1|1|544|1|1|665|1|1|658|1|1|655|1|1|115|1|1|1151|1|1|1138|1|1|304|1|1|291|1|1|1270|1|1|1180|1|1|333|1|1|12071|1|1|12070|1|1|12020|1|1|12022|1|1|13279|1|1|13277|1|1|13226|1|1|13225|1|1|13208|1|1|5416|1|1|5415|1|1|5365|1|1|5367|1|1|6087|1|1|6503|1|1|6501|1|1|6450|1|1|6449|1|1|6432|1|1|5656|1|1|5654|1|1|5603|1|1|5602|1|1|5585|1|1|6624|1|1|6622|1|1|6571|1|1|6570|1|1|6553|1|1|2776|1|1|2775|1|1|2725|1|1|2727|1|1|2754|1|1|2753|1|1|2736|1|1|2738|1|1|2703|1|1|2705|1|1|3984|1|1|3982|1|1|3931|1|1|3930|1|1|3962|1|1|3960|1|1|3909|1|1|3908|1|1|3902|1|1|3891|1|1|6882|3|1|6860|3|1|13814|1|1|13811|1|1|1116|1|1|269|1|1|12082|1|1|12081|1|1|12031|1|1|12033|1|1|13290|1|1|13288|1|1|13237|1|1|13236|1|1|10762|1|1|10761|1|1|10711|1|1|10713|1|1|10722|1|1|10724|1|1|11970|1|1|11968|1|1|11917|1|1|11916|1|1|11928|1|1|11888|1|1|11890|1|1|5920|1|1|5918|1|1|5867|1|1|5866|1|1|5878|1|1|5877|1|1|5838|1|1|5840|1|1|6041|1|1|6039|1|1|5988|1|1|5987|1|1|5999|1|1|5998|1|1|5959|1|1|5961|1|1|5427|1|1|5426|1|1|5376|1|1|5378|1|1|6151|1|1|6149|1|1|6098|1|1|6097|1|1|6283|1|1|6281|1|1|6230|1|1|6229|1|1|6241|1|1|6240|1|1|6201|1|1|6203|1|1|6514|1|1|6512|1|1|6461|1|1|6460|1|1|5667|1|1|5665|1|1|5614|1|1|5613|1|1|6635|1|1|6633|1|1|6582|1|1|6581|1|1|13042|1|1|13029|1|1|12193|1|1|12185|1|1|12437|1|1|12424|1|1|11709|1|1|11104|1|1|3747|1|1|3734|1|1|3725|1|1|3712|1|1|2898|1|1|2890|1|1|2876|1|1|2868|1|1|3142|1|1|3129|1|1|3120|1|1|3107|1|1|5056|1|1|5043|1|1|4207|1|1|4199|1|1|7729|3|1|7707|3|1|6893|3|1|6883|3|1|6880|3|1|6884|3|1|6881|3|1|6871|3|1|6861|3|1|6858|3|1|6862|3|1|6859|3|1|4221|3|1|4222|3|1|4219|3|1|9074|3|1|9063|3|1|9052|3|1|9041|3|1|8227|3|1|8205|3|1|1874|1|1|1845|1|1|9912|1|1|10143|1|1|10506|1|1|9659|1|1|13971|1|1|13982|1|1|14081|1|1|14213|1|1|14224|1|1|14444|1|1|13597|1|1|10080|2|1|582|2|1|703|2|1|822|2|1|823|2|1|824|2|1|811|2|1|812|2|1|813|2|1|943|2|1|944|2|1|945|2|1|340|2|1|329|2|1|3414|2|1|9942|1|1|9939|1|1|10422|1|1|9575|1|1|577|1|1|698|1|1|1184|1|1|1171|1|1|337|1|1|324|1|1|1303|1|1|11702|1|1|11699|1|1|10866|1|1|10863|1|1|11097|1|1|11094|1|1|2396|1|1|2393|1|1|1791|1|1|1788|1|1|12039|1|1|12050|1|1|13216|1|1|5384|1|1|5395|1|1|6077|1|1|6440|1|1|5593|1|1|6561|1|1|12602|1|1|12844|1|1|9412|1|1|9399|1|1|10567|1|1|11148|1|1|11392|1|1|11755|1|1|10908|1|1|1956|1|1|1953|1|1|2073|1|1|2436|1|1|1589|1|1|3296|1|1|3285|1|1|3538|1|1|3527|1|1|13905|1|1|13894|1|1|14499|1|1|13652|1|1|1120|1|1|1117|1|1|273|1|1|270|1|1|11337|1|1|2031|1|1|2018|1|1|2020|1|1|12520|1|1|12518|1|1|12531|1|1|12529|1|1|12488|1|1|12641|1|1|12639|1|1|12652|1|1|12650|1|1|12609|1|1|12751|1|1|12749|1|1|12883|1|1|12881|1|1|12894|1|1|12892|1|1|12851|1|1|13114|1|1|13112|1|1|12267|1|1|12265|1|1|9913|1|1|9911|1|1|9859|1|1|9870|1|1|9430|1|1|10144|1|1|10142|1|1|10507|1|1|10505|1|1|9660|1|1|9658|1|1|10639|1|1|10637|1|1|10585|1|1|13972|1|1|13970|1|1|13983|1|1|13981|1|1|13940|1|1|13422|1|1|13420|1|1|13368|1|1|13379|1|1|14082|1|1|14080|1|1|14214|1|1|14212|1|1|14225|1|1|14223|1|1|14182|1|1|14445|1|1|14443|1|1|13598|1|1|13596|1|1|14577|1|1|14575|1|1|14545|1|1|11431|1|1|11429|1|1|11442|1|1|11440|1|1|11399|1|1|11794|1|1|11792|1|1|11762|1|1|10947|1|1|10945|1|1|10958|1|1|10956|1|1|10915|1|1|13007|1|1|13018|1|1|12402|1|1|12413|1|1|10400|1|1|9795|1|1|14381|1|1|14338|1|1|14349|1|1|13545|1|1|13534|1|1|13494|1|1|13776|1|1|13733|1|1|13744|1|1|12721|2|1|12722|2|1|12723|2|1|12842|2|1|12843|2|1|14052|2|1|14053|2|1|14173|2|1|14174|2|1|11390|2|1|11391|2|1|2074|2|1|3404|2|1|3405|2|1|3406|2|1|3525|2|1|3526|2|1|3820|2|1|13039|1|1|12988|1|1|12990|1|1|12434|1|1|12383|1|1|12385|1|1|10381|1|1|10383|1|1|9776|1|1|9778|1|1|14370|1|1|14319|1|1|14321|1|1|13765|1|1|13714|1|1|13716|1|1|3744|1|1|3693|1|1|3695|1|1|3722|1|1|3704|1|1|3706|1|1|3671|1|1|3673|1|1|3139|1|1|3088|1|1|3090|1|1|3117|1|1|3099|1|1|3101|1|1|3066|1|1|3068|1|1|1127|1|1|280|1|1|9965|2|1|10256|2|1|10245|2|1|10205|2|1|10206|2|1|10207|2|1|11532|2|1|2215|2|1|3557|2|1|1962|1|1|13050|1|1|12999|1|1|13001|1|1|12214|1|1|12163|1|1|12165|1|1|12174|1|1|12176|1|1|12445|1|1|12394|1|1|12396|1|1|10392|1|1|10394|1|1|9556|1|1|9558|1|1|9787|1|1|9789|1|1|14330|1|1|14332|1|1|13725|1|1|13727|1|1|11730|1|1|11679|1|1|11681|1|1|11690|1|1|11692|1|1|11125|1|1|11074|1|1|11076|1|1|11085|1|1|11087|1|1|13820|1|1|591|1|1|9828|1|1|10033|1|1|9377|1|1|9388|1|1|9370|1|1|9367|1|1|10072|1|1|10435|1|1|9588|1|1|10554|1|1|13337|1|1|722|1|1|709|1|1|964|1|1|951|1|1|1327|1|1|1314|1|1|11733|1|1|11720|1|1|10884|1|1|10876|1|1|11128|1|1|11115|1|1|2414|1|1|2406|1|1|1570|1|1|1559|1|1|1809|1|1|1801|1|1|548|1|1|545|1|1|669|1|1|666|1|1|119|1|1|116|1|1|1142|1|1|1139|1|1|295|1|1|292|1|1|1274|1|1|1271|1|1|12051|2|1|12873|2|1|13259|2|1|13221|2|1|9993|2|1|9994|2|1|9995|2|1|10092|2|1|10093|2|1|10094|2|1|10277|2|1|10266|2|1|10224|2|1|10225|2|1|10226|2|1|10235|2|1|10236|2|1|10237|2|1|10213|2|1|10214|2|1|10215|2|1|10460|2|1|10581|2|1|14204|2|1|11322|2|1|11421|2|1|11607|2|1|11605|2|1|11596|2|1|11594|2|1|11553|2|1|11564|2|1|11542|2|1|11522|2|1|11523|2|1|11524|2|1|5396|2|1|6162|2|1|6160|2|1|6108|2|1|6119|2|1|6078|2|1|6483|2|1|6445|2|1|5635|2|1|6604|2|1|6566|2|1|2005|2|1|2104|2|1|2290|2|1|2288|2|1|2236|2|1|2247|2|1|2225|2|1|2205|2|1|2206|2|1|12762|2|1|12760|2|1|12773|2|1|12771|2|1|12730|2|1|12289|2|1|12287|2|1|9389|2|1|10155|2|1|10153|2|1|10101|2|1|10112|2|1|10070|2|1|10071|2|1|10476|2|1|10438|2|1|9628|2|1|10597|2|1|10559|2|1|14093|2|1|14091|2|1|14104|2|1|14102|2|1|14061|2|1|14466|2|1|13620|2|1|13618|2|1|841|2|1|842|2|1|843|2|1|830|2|1|831|2|1|962|2|1|963|2|1|952|2|1|1209|2|1|1198|2|1|1330|2|1|1319|2|1|9948|1|1|657|1|1|10028|1|1|13966|1|1|9420|1|1|13358|1|1|11158|1|1|1148|1|1|1119|1|1|301|1|1|272|1|1|2083|1|1|2446|1|1|1599|1|1|6411|1|1|6408|1|1|5806|1|1|5803|1|1|13060|1|1|12455|1|1|14391|1|1|13786|1|1|2648|1|1|3943|2|1|3944|2|1|13831|1|1|13813|1|1|12514|1|1|10633|1|1|14571|1|1|11194|1|1|1875|1|1|1877|1|1|1868|1|1|1865|1|1|2482|1|1|1635|1|1|12072|1|1|13227|1|1|5417|1|1|6088|1|1|6451|1|1|5604|1|1|6572|1|1|2777|1|1|2755|1|1|3932|1|1|3910|1|1|5916|1|1|5913|1|1|12096|1|1|12083|1|1|13251|1|1|13262|1|1|13238|1|1|10763|1|1|11918|1|1|11929|1|1|11911|1|1|11908|1|1|5868|1|1|5879|1|1|5989|1|1|6000|1|1|5982|1|1|5979|1|1|5441|1|1|5428|1|1|6112|1|1|6123|1|1|6099|1|1|6231|1|1|6242|1|1|6224|1|1|6221|1|1|6475|1|1|6486|1|1|6462|1|1|5628|1|1|5639|1|1|5615|1|1|6596|1|1|6607|1|1|6583|1|1|11953|1|1|11940|1|1|6024|1|1|6011|1|1|6266|1|1|6253|1|1|2634|1|1|11234|1|1|1928|1|1|1917|1|1|2522|1|1|1675|1|1|2593|1|1|2595|1|1|9887|1|1|9884|1|1|13396|1|1|13393|1|1|12553|1|1|12551|1|1|12499|1|1|12674|1|1|12672|1|1|12620|1|1|12784|1|1|12782|1|1|12916|1|1|12914|1|1|12862|1|1|13147|1|1|13145|1|1|12300|1|1|12298|1|1|9892|1|1|10123|1|1|10486|1|1|9639|1|1|10618|1|1|14005|1|1|14003|1|1|13951|1|1|13401|1|1|14247|1|1|14245|1|1|14193|1|1|14610|1|1|14608|1|1|14556|1|1|11464|1|1|11462|1|1|11410|1|1|11827|1|1|11825|1|1|11773|1|1|10980|1|1|10978|1|1|10926|1|1|3258|1|1|3256|1|1|3204|1|1|3236|1|1|3234|1|1|3215|1|1|3182|1|1|3379|1|1|3377|1|1|3325|1|1|3357|1|1|3355|1|1|3336|1|1|3303|1|1|3489|1|1|3487|1|1|3467|1|1|3465|1|1|3435|1|1|3621|1|1|3619|1|1|3567|1|1|3599|1|1|3597|1|1|3578|1|1|3545|1|1|3852|1|1|3850|1|1|3830|1|1|3828|1|1|3798|1|1|3005|1|1|3003|1|1|2983|1|1|2981|1|1|2951|1|1|12064|1|1|12066|1|1|13270|1|1|13269|1|1|10744|1|1|10746|1|1|11950|1|1|11949|1|1|11899|1|1|11901|1|1|5900|1|1|5899|1|1|5849|1|1|5851|1|1|6021|1|1|6020|1|1|5970|1|1|5972|1|1|5409|1|1|5411|1|1|6131|1|1|6130|1|1|6263|1|1|6262|1|1|6212|1|1|6214|1|1|6494|1|1|6493|1|1|5647|1|1|5646|1|1|6615|1|1|6614|1|1|2769|1|1|2771|1|1|2747|1|1|2749|1|1|3975|1|1|3974|1|1|3953|1|1|3952|1|1|3924|1|1|3926|1|1|11213|1|1|1907|1|1|1896|1|1|1856|1|1|2501|1|1|1654|1|1|11701|1|1|11703|1|1|10865|1|1|10867|1|1|11096|1|1|11098|1|1|2395|1|1|2397|1|1|1790|1|1|1792|1|1|12208|1|1|12205|1|1|9959|1|1|9941|1|1|14373|1|1|14360|1|1|14362|1|1|13524|1|1|13526|1|1|13513|1|1|13515|1|1|13768|1|1|13755|1|1|13757|1|1|11179|1|1|11354|1|1|11352|1|1|2048|1|1|2046|1|1|1994|1|1|1983|1|1|2467|1|1|1620|1|1|11912|2|1|10578|1|1|11282|1|1|1963|1|1|13033|1|1|13030|1|1|12197|1|1|12194|1|1|12428|1|1|12425|1|1|11713|1|1|11710|1|1|11108|1|1|11105|1|1|3738|1|1|3735|1|1|3716|1|1|3713|1|1|2902|1|1|2899|1|1|2880|1|1|2877|1|1|3133|1|1|3130|1|1|3111|1|1|3108|1|1|5047|1|1|5044|1|1|4211|1|1|4208|1|1|10756|1|1|10753|1|1|5861|1|1|5858|1|1|1450|1|1|1447|1|1|2605|1|1|2602|1|1|2616|1|1|2613|1|1|13906|1|1|13904|1|1|13895|1|1|13893|1|1|13852|1|1|14500|1|1|14498|1|1|13653|1|1|13651|1|1|12479|1|1|12600|1|1|13086|1|1|12239|1|1|9839|1|1|9410|1|1|10083|1|1|10446|1|1|9599|1|1|10565|1|1|13931|1|1|13348|1|1|14536|1|1|11273|1|1|11270|1|1|11753|1|1|10906|1|1|3173|1|1|3162|1|1|3294|1|1|3283|1|1|3417|1|1|3536|1|1|3780|1|1|3769|1|1|2933|1|1|2922|1|1|1973|1|1|1955|1|1|13821|1|1|13823|1|1|14428|1|1|13581|1|1|9904|1|1|13842|1|1|13413|1|1|10432|1|1|9585|1|1|598|1|1|547|1|1|719|1|1|668|1|1|118|1|1|1192|1|1|1141|1|1|345|1|1|294|1|1|1324|1|1|1273|1|1|10426|1|1|10423|1|1|9579|1|1|9576|1|1|581|1|1|578|1|1|702|1|1|699|1|1|1175|1|1|1172|1|1|328|1|1|325|1|1|1307|1|1|1304|1|1|12484|2|1|12605|2|1|12795|2|1|12793|2|1|12741|2|1|12724|2|1|12725|2|1|12726|2|1|12845|2|1|12846|2|1|12847|2|1|13089|2|1|12242|2|1|10134|2|1|10081|2|1|10082|2|1|10449|2|1|10570|2|1|13936|2|1|14126|2|1|14124|2|1|14072|2|1|14055|2|1|14056|2|1|14057|2|1|14176|2|1|14177|2|1|14178|2|1|14420|2|1|13573|2|1|14541|2|1|11153|2|1|11393|2|1|11394|2|1|11395|2|1|11758|2|1|10911|2|1|2076|2|1|2077|2|1|2078|2|1|2441|2|1|1594|2|1|3167|2|1|3288|2|1|3500|2|1|3498|2|1|3446|2|1|3478|2|1|3476|2|1|3457|2|1|3424|2|1|3415|2|1|3416|2|1|3407|2|1|3408|2|1|3409|2|1|3537|2|1|3528|2|1|3529|2|1|3530|2|1|3821|2|1|3783|2|1|3772|2|1|2973|2|1|2925|2|1|13011|1|1|13008|1|1|13022|1|1|13019|1|1|12406|1|1|12403|1|1|12417|1|1|12414|1|1|10404|1|1|10401|1|1|9799|1|1|9796|1|1|14342|1|1|14339|1|1|14353|1|1|14350|1|1|13737|1|1|13734|1|1|13748|1|1|13745|1|1|9832|1|1|9829|1|1|9381|1|1|9378|1|1|9392|1|1|10154|1|1|10517|1|1|9670|1|1|10558|1|1|10555|1|1|13341|1|1|13338|1|1|14092|1|1|14103|1|1|14455|1|1|13608|1|1|13619|1|1|713|1|1|710|1|1|955|1|1|1318|1|1|1315|1|1|10034|1|1|10032|1|1|9980|1|1|9969|1|1|10453|1|1|9606|1|1|12043|1|1|12040|1|1|12054|1|1|12816|1|1|13179|1|1|12332|1|1|13300|1|1|13220|1|1|13217|1|1|5388|1|1|5385|1|1|5399|1|1|6161|1|1|6081|1|1|6524|1|1|6444|1|1|6441|1|1|5677|1|1|5597|1|1|5594|1|1|6645|1|1|6565|1|1|6562|1|1|9849|1|1|9369|1|1|10575|1|1|11279|1|1|9949|1|1|13232|2|1|10257|2|1|10258|2|1|10259|2|1|10246|2|1|10247|2|1|11586|2|1|11575|2|1|11533|2|1|11534|2|1|11535|2|1|6141|2|1|6089|2|1|6456|2|1|6577|2|1|2269|2|1|2216|2|1|2217|2|1|3558|2|1|3559|2|1|3560|2|1|3937|2|1|3946|2|1|3947|2|1|3948|2|1|3915|2|1|6410|1|1|6412|1|1|5805|1|1|5807|1|1|13832|1|1|13834|1|1|14439|1|1|13592|1|1|9403|1|1|9400|1|1|14004|1|1|14246|1|1|11152|1|1|11149|1|1|1131|1|1|1128|1|1|284|1|1|281|1|1|2440|1|1|2437|1|1|1593|1|1|1590|1|1|10013|1|1|9960|1|1|12668|1|1|11227|1|1|11214|1|1|11216|1|1|11821|1|1|10974|1|1|1908|1|1|1910|1|1|1897|1|1|1899|1|1|2022|1|1|2019|1|1|2515|1|1|2502|1|1|2504|1|1|1668|1|1|1655|1|1|1657|1|1|3373|1|1|3351|1|1|4682|1|1|13064|1|1|13051|1|1|12215|1|1|12207|1|1|12459|1|1|12446|1|1|11731|1|1|11126|1|1|5078|1|1|5065|1|1|4229|1|1|13032|1|1|13034|1|1|12196|1|1|12198|1|1|12427|1|1|12429|1|1|11712|1|1|11714|1|1|11107|1|1|11109|1|1|3737|1|1|3739|1|1|3715|1|1|3717|1|1|2901|1|1|2903|1|1|2879|1|1|2881|1|1|3132|1|1|3134|1|1|3110|1|1|3112|1|1|5046|1|1|5048|1|1|4210|1|1|4212|1|1|13885|1|1|13874|1|1|14479|1|1|13632|1|1|12044|2|1|12053|2|1|12055|2|1|12874|2|1|9855|2|1|9987|2|1|9996|2|1|9997|2|1|9998|2|1|9976|2|1|10095|2|1|10096|2|1|10097|2|1|10278|2|1|10267|2|1|10227|2|1|10228|2|1|10229|2|1|10238|2|1|10239|2|1|10240|2|1|10216|2|1|10217|2|1|10218|2|1|9613|2|1|14205|2|1|11323|2|1|11285|2|1|11422|2|1|11554|2|1|11565|2|1|11543|2|1|11525|2|1|11526|2|1|11527|2|1|5389|2|1|5398|2|1|5400|2|1|6109|2|1|6120|2|1|6080|2|1|6082|2|1|5636|2|1|5598|2|1|2006|2|1|1968|2|1|2105|2|1|2237|2|1|2248|2|1|2226|2|1|2208|2|1|2209|2|1|2210|2|1|11724|1|1|11721|1|1|10888|1|1|10885|1|1|11119|1|1|11116|1|1|2418|1|1|2415|1|1|1813|1|1|1810|1|1|12544|1|1|9886|1|1|13996|1|1|13395|1|1|14601|1|1|3249|1|1|3227|1|1|14364|1|1|14361|1|1|13528|1|1|13525|1|1|13517|1|1|13514|1|1|13759|1|1|13756|1|1|13260|2|1|13261|2|1|11930|2|1|6484|2|1|6485|2|1|6605|2|1|6606|2|1|12525|1|1|9918|1|1|9905|1|1|9907|1|1|10512|1|1|9665|1|1|13843|1|1|13845|1|1|13977|1|1|13427|1|1|13414|1|1|13416|1|1|14450|1|1|13603|1|1|14582|1|1|12565|1|1|14017|1|1|14622|1|1|11910|1|1|5981|1|1|5983|1|1|6223|1|1|6225|1|1|12489|1|1|12610|1|1|12852|1|1|9860|1|1|9871|1|1|9831|1|1|9833|1|1|9431|1|1|9380|1|1|9382|1|1|9391|1|1|9393|1|1|10586|1|1|10557|1|1|13941|1|1|13369|1|1|13380|1|1|13340|1|1|13342|1|1|14183|1|1|14546|1|1|11400|1|1|11763|1|1|10916|1|1|712|1|1|714|1|1|954|1|1|956|1|1|1317|1|1|11333|1|1|2027|1|1|13061|1|1|13010|1|1|13012|1|1|13021|1|1|13023|1|1|12456|1|1|12405|1|1|12407|1|1|12416|1|1|12418|1|1|10403|1|1|10405|1|1|9798|1|1|9800|1|1|14392|1|1|14341|1|1|14343|1|1|14352|1|1|14354|1|1|13787|1|1|13736|1|1|13738|1|1|13747|1|1|13749|1|1|11293|1|1|1974|1|1|3318|1|1|10003|1|1|11290|1|1|11272|1|1|3315|1|1|7245|3|1|7223|3|1|4583|3|1|4561|3|1|12631|1|1|10024|1|1|13962|1|1|11365|1|1|11363|1|1|11311|1|1|11300|1|1|11784|1|1|10937|1|1|9850|1|1|9984|1|1|9973|1|1|10457|1|1|9610|1|1|10576|1|1|11280|1|1|12076|1|1|12073|1|1|13231|1|1|13228|1|1|5421|1|1|5418|1|1|6092|1|1|6455|1|1|6452|1|1|5608|1|1|5605|1|1|6576|1|1|6573|1|1|2781|1|1|2778|1|1|2759|1|1|2756|1|1|3936|1|1|3933|1|1|3914|1|1|3911|1|1|1867|1|1|2039|1|1|5915|1|1|7256|3|1|7246|3|1|7243|3|1|7247|3|1|7244|3|1|7234|3|1|7224|3|1|7221|3|1|7225|3|1|7222|3|1|7366|3|1|7344|3|1|7501|3|1|7490|3|1|7479|3|1|7468|3|1|7622|3|1|7611|3|1|7600|3|1|7589|3|1|7741|3|1|7738|3|1|7742|3|1|7743|3|1|7739|3|1|7740|3|1|7730|3|1|7727|3|1|7731|3|1|7732|3|1|7728|3|1|7719|3|1|7716|3|1|7720|3|1|7721|3|1|7717|3|1|7718|3|1|7708|3|1|7705|3|1|7709|3|1|7710|3|1|7706|3|1|6894|3|1|6891|3|1|6895|3|1|6896|3|1|6892|3|1|6872|3|1|6869|3|1|6873|3|1|6874|3|1|6870|3|1|7850|3|1|7828|3|1|7971|3|1|7949|3|1|4594|3|1|4584|3|1|4581|3|1|4585|3|1|4582|3|1|4572|3|1|4562|3|1|4559|3|1|4563|3|1|4560|3|1|4704|3|1|4839|3|1|4828|3|1|4817|3|1|4806|3|1|4960|3|1|4949|3|1|4938|3|1|4927|3|1|5079|3|1|5076|3|1|5080|3|1|5081|3|1|5077|3|1|5068|3|1|5069|3|1|5070|3|1|5066|3|1|5057|3|1|5054|3|1|5058|3|1|5059|3|1|5055|3|1|4232|3|1|4233|3|1|4234|3|1|4230|3|1|5188|3|1|5166|3|1|5321|3|1|5318|3|1|5322|3|1|5323|3|1|5319|3|1|5320|3|1|5310|3|1|5307|3|1|5311|3|1|5312|3|1|5308|3|1|5299|3|1|5296|3|1|5300|3|1|5301|3|1|5297|3|1|5298|3|1|5288|3|1|5285|3|1|5289|3|1|5290|3|1|5286|3|1|8590|3|1|8568|3|1|8711|3|1|8700|3|1|8689|3|1|8678|3|1|8830|3|1|8827|3|1|8831|3|1|8832|3|1|8828|3|1|8829|3|1|8819|3|1|8816|3|1|8820|3|1|8821|3|1|8817|3|1|8808|3|1|8805|3|1|8809|3|1|8810|3|1|8806|3|1|8807|3|1|8797|3|1|8794|3|1|8798|3|1|8799|3|1|8795|3|1|8951|3|1|8948|3|1|8952|3|1|8953|3|1|8949|3|1|8950|3|1|8940|3|1|8937|3|1|8941|3|1|8942|3|1|8938|3|1|8929|3|1|8926|3|1|8930|3|1|8931|3|1|8927|3|1|8928|3|1|8918|3|1|8915|3|1|8919|3|1|8920|3|1|8916|3|1|9072|3|1|9069|3|1|9073|3|1|9070|3|1|9071|3|1|9061|3|1|9058|3|1|9062|3|1|9059|3|1|9050|3|1|9047|3|1|9051|3|1|9048|3|1|9049|3|1|9039|3|1|9036|3|1|9040|3|1|9037|3|1|8225|3|1|8222|3|1|8226|3|1|8223|3|1|8203|3|1|8200|3|1|8204|3|1|8201|3|1|9195|3|1|9184|3|1|9173|3|1|9162|3|1|9316|3|1|9305|3|1|9294|3|1|9283|3|1|13284|1|1|13271|1|1|11951|1|1|5901|1|1|6022|1|1|6145|1|1|6132|1|1|6264|1|1|6508|1|1|6495|1|1|5661|1|1|5648|1|1|6629|1|1|6616|1|1|3989|1|1|3976|1|1|3967|1|1|3954|1|1|13083|1|1|12236|1|1|10443|1|1|10425|1|1|9596|1|1|9578|1|1|14414|1|1|13567|1|1|580|1|1|701|1|1|1174|1|1|327|1|1|1306|1|1|3777|1|1|3766|1|1|2930|1|1|2919|1|1|10755|1|1|10757|1|1|11961|1|1|11960|1|1|5860|1|1|5862|1|1|6032|1|1|6031|1|1|6274|1|1|6273|1|1|1449|1|1|1451|1|1|2655|1|1|2654|1|1|2604|1|1|2606|1|1|2615|1|1|2617|1|1|12510|1|1|12685|1|1|12683|1|1|12927|1|1|12925|1|1|10629|1|1|14567|1|1|11244|1|1|11242|1|1|11190|1|1|11201|1|1|11475|1|1|11473|1|1|11838|1|1|11836|1|1|10991|1|1|10989|1|1|2169|1|1|2167|1|1|2115|1|1|2126|1|1|2532|1|1|2530|1|1|2478|1|1|2489|1|1|1685|1|1|1683|1|1|1631|1|1|1642|1|1|12077|2|1|12742|2|1|12731|2|1|12863|2|1|13137|2|1|9844|2|1|10020|2|1|10009|2|1|9415|2|1|9404|2|1|10102|2|1|10135|2|1|10124|2|1|10113|2|1|10084|2|1|10085|2|1|10086|2|1|10073|2|1|10074|2|1|10075|2|1|10260|2|1|10261|2|1|10262|2|1|10249|2|1|10250|2|1|10251|2|1|10477|2|1|10478|2|1|10479|2|1|9629|2|1|9602|2|1|9591|2|1|10598|2|1|10599|2|1|10600|2|1|13353|2|1|14125|2|1|14073|2|1|14062|2|1|14194|2|1|14468|2|1|14589|2|1|11296|2|1|11411|2|1|11587|2|1|11576|2|1|11536|2|1|11537|2|1|11538|2|1|11806|2|1|5422|2|1|6142|2|1|6091|2|1|6093|2|1|5609|2|1|604|2|1|725|2|1|844|2|1|845|2|1|846|2|1|833|2|1|834|2|1|835|2|1|965|2|1|966|2|1|967|2|1|362|2|1|351|2|1|1979|2|1|2094|2|1|2270|2|1|2219|2|1|2220|2|1|2221|2|1|3216|2|1|3178|2|1|3337|2|1|3321|2|1|3299|2|1|2782|2|1|2760|2|1|3447|2|1|3458|2|1|3436|2|1|3425|2|1|3418|2|1|3419|2|1|3420|2|1|3568|2|1|3579|2|1|3561|2|1|3562|2|1|3563|2|1|3546|2|1|3539|2|1|3540|2|1|3541|2|1|2974|2|1|2936|2|1|1879|1|1|1876|1|1|12087|1|1|12084|1|1|13242|1|1|13239|1|1|10767|1|1|10764|1|1|11922|1|1|11919|1|1|11933|1|1|5872|1|1|5869|1|1|5883|1|1|5880|1|1|5993|1|1|5990|1|1|6004|1|1|6001|1|1|5432|1|1|5429|1|1|6103|1|1|6100|1|1|6235|1|1|6232|1|1|6246|1|1|6243|1|1|6466|1|1|6463|1|1|5619|1|1|5616|1|1|6587|1|1|6584|1|1|13125|1|1|13123|1|1|13093|1|1|12278|1|1|12276|1|1|12246|1|1|10518|1|1|10516|1|1|10464|1|1|9671|1|1|9669|1|1|9617|1|1|14456|1|1|14454|1|1|14424|1|1|13609|1|1|13607|1|1|13577|1|1|1202|1|1|355|1|1|12093|1|1|12092|1|1|12042|1|1|13301|1|1|13299|1|1|13248|1|1|13247|1|1|13219|1|1|5438|1|1|5437|1|1|5387|1|1|6525|1|1|6523|1|1|6472|1|1|6471|1|1|6443|1|1|5678|1|1|5676|1|1|5625|1|1|5624|1|1|5596|1|1|6646|1|1|6644|1|1|6593|1|1|6592|1|1|6564|1|1|2021|1|1|13825|1|1|13822|1|1|3822|2|1|3823|2|1|3824|2|1|13040|1|1|12435|1|1|14371|1|1|14363|1|1|13527|1|1|13516|1|1|13766|1|1|13758|1|1|3745|1|1|3723|1|1|3140|1|1|3118|1|1|12875|2|1|12876|2|1|12877|2|1|13254|2|1|13263|2|1|13264|2|1|13265|2|1|13243|2|1|10279|2|1|10280|2|1|10281|2|1|10268|2|1|10269|2|1|14206|2|1|14207|2|1|11324|2|1|11325|2|1|11326|2|1|11423|2|1|11424|2|1|11425|2|1|11608|2|1|11597|2|1|11555|2|1|11556|2|1|11557|2|1|11566|2|1|11567|2|1|11568|2|1|11544|2|1|11545|2|1|11546|2|1|11791|2|1|11923|2|1|11932|2|1|11934|2|1|6163|2|1|6152|2|1|6110|2|1|6111|2|1|6121|2|1|6122|2|1|6284|2|1|6478|2|1|6487|2|1|6488|2|1|6489|2|1|6467|2|1|5637|2|1|5638|2|1|6599|2|1|6608|2|1|6609|2|1|6610|2|1|6588|2|1|2007|2|1|2008|2|1|2106|2|1|2107|2|1|2291|2|1|2238|2|1|2239|2|1|2249|2|1|2250|2|1|2227|2|1|2228|2|1|2474|2|1|11944|1|1|11941|1|1|6015|1|1|6012|1|1|6257|1|1|6254|1|1|2638|1|1|2635|1|1|9953|1|1|9950|1|1|10433|1|1|9586|1|1|599|1|1|720|1|1|1206|1|1|1193|1|1|359|1|1|346|1|1|1325|1|1|12613|1|1|12855|1|1|9434|1|1|9421|1|1|10589|1|1|13359|1|1|11159|1|1|11403|1|1|11766|1|1|10919|1|1|1967|1|1|1964|1|1|2084|1|1|2447|1|1|1600|1|1|12483|1|1|12480|1|1|12604|1|1|12601|1|1|9843|1|1|9840|1|1|9414|1|1|9411|1|1|10569|1|1|10566|1|1|13935|1|1|13932|1|1|13352|1|1|13349|1|1|14488|1|1|13641|1|1|14540|1|1|14537|1|1|11757|1|1|11754|1|1|10910|1|1|10907|1|1|3177|1|1|3174|1|1|3166|1|1|3163|1|1|3298|1|1|3295|1|1|3287|1|1|3284|1|1|14395|1|1|14382|1|1|14384|1|1|13546|1|1|13548|1|1|13535|1|1|13537|1|1|13790|1|1|13777|1|1|13779|1|1|11723|1|1|11725|1|1|10887|1|1|10889|1|1|11118|1|1|11120|1|1|2417|1|1|2419|1|1|1812|1|1|1814|1|1|11359|1|1|2053|1|1|2040|1|1|2042|1|1|10017|1|1|10004|1|1|11291|1|1|3316|1|1|12796|2|1|12785|2|1|12743|2|1|12744|2|1|12745|2|1|12917|2|1|12906|2|1|12864|2|1|12865|2|1|12866|2|1|13111|2|1|10136|2|1|10137|2|1|10138|2|1|10125|2|1|10126|2|1|10504|2|1|10493|2|1|10625|2|1|10614|2|1|14127|2|1|14074|2|1|14075|2|1|14248|2|1|14195|2|1|14196|2|1|14442|2|1|14563|2|1|11465|2|1|11454|2|1|11412|2|1|11413|2|1|11414|2|1|11780|2|1|2148|2|1|2095|2|1|2096|2|1|2463|2|1|3217|2|1|3218|2|1|3338|2|1|3339|2|1|3340|2|1|3501|2|1|3490|2|1|3448|2|1|3449|2|1|3450|2|1|3479|2|1|3468|2|1|3459|2|1|3460|2|1|3461|2|1|3437|2|1|3438|2|1|3439|2|1|3426|2|1|3427|2|1|3428|2|1|3622|2|1|3611|2|1|3569|2|1|3570|2|1|3571|2|1|3600|2|1|3589|2|1|3580|2|1|3581|2|1|3582|2|1|3547|2|1|3548|2|1|3549|2|1|3816|2|1|3825|2|1|3826|2|1|3827|2|1|3805|2|1|3794|2|1|2975|2|1|2976|2|1|2977|2|1|13055|1|1|13052|1|1|12219|1|1|12216|1|1|12450|1|1|12447|1|1|11735|1|1|11732|1|1|11130|1|1|11127|1|1|11344|1|1|1149|1|1|302|1|1|13836|1|1|13833|1|1|12532|2|1|12653|2|1|12817|2|1|12815|2|1|12806|2|1|12804|2|1|12763|2|1|12774|2|1|12752|2|1|12732|2|1|12733|2|1|12734|2|1|12938|2|1|12936|2|1|12884|2|1|12895|2|1|12853|2|1|12854|2|1|13138|2|1|13100|2|1|12290|2|1|13287|2|1|13276|2|1|9872|2|1|9873|2|1|10156|2|1|10145|2|1|10103|2|1|10104|2|1|10105|2|1|10114|2|1|10115|2|1|10116|2|1|10471|2|1|10480|2|1|10481|2|1|10482|2|1|9630|2|1|9631|2|1|9632|2|1|10592|2|1|10601|2|1|10602|2|1|10603|2|1|13984|2|1|13381|2|1|13382|2|1|14148|2|1|14146|2|1|14094|2|1|14105|2|1|14083|2|1|14063|2|1|14064|2|1|14269|2|1|14267|2|1|14215|2|1|14226|2|1|14184|2|1|14185|2|1|14469|2|1|14431|2|1|13621|2|1|14590|2|1|14552|2|1|11486|2|1|11484|2|1|11432|2|1|11443|2|1|11401|2|1|11402|2|1|11588|2|1|11589|2|1|11590|2|1|11577|2|1|11578|2|1|11807|2|1|11769|2|1|10959|2|1|11956|2|1|11945|2|1|6143|2|1|6144|2|1|6133|2|1|6265|2|1|6511|2|1|6500|2|1|6632|2|1|6621|2|1|2085|2|1|2271|2|1|2272|2|1|2490|2|1|2452|2|1|2639|2|1|3992|2|1|3981|2|1|3970|2|1|3959|2|1|9402|1|1|10608|1|1|11169|1|1|11151|1|1|1181|1|1|1130|1|1|334|1|1|283|1|1|2457|1|1|2439|1|1|1610|1|1|1592|1|1|3194|1|1|13084|1|1|12237|1|1|9964|1|1|9961|1|1|10444|1|1|9597|1|1|14415|1|1|13568|1|1|3778|1|1|3767|1|1|2931|1|1|2920|1|1|13158|1|1|13156|1|1|13104|1|1|12311|1|1|12309|1|1|12257|1|1|10497|1|1|9650|1|1|14489|1|1|14487|1|1|14435|1|1|13642|1|1|13640|1|1|13588|1|1|3863|1|1|3861|1|1|3809|1|1|3841|1|1|3839|1|1|3787|1|1|3016|1|1|3014|1|1|2962|1|1|2994|1|1|2992|1|1|2940|1|1|12075|1|1|13281|1|1|13280|1|1|13230|1|1|5420|1|1|6505|1|1|6504|1|1|6454|1|1|5658|1|1|5657|1|1|5607|1|1|6626|1|1|6625|1|1|6575|1|1|2780|1|1|2758|1|1|3986|1|1|3985|1|1|3935|1|1|3964|1|1|3963|1|1|3913|1|1|13044|1|1|13041|1|1|12439|1|1|12436|1|1|14375|1|1|14372|1|1|13770|1|1|13767|1|1|3749|1|1|3746|1|1|3727|1|1|3724|1|1|3144|1|1|3141|1|1|3122|1|1|3119|1|1|12506|2|1|12638|2|1|12627|2|1|12099|2|1|12088|2|1|12797|2|1|12786|2|1|12746|2|1|12747|2|1|12748|2|1|12918|2|1|12907|2|1|12878|2|1|12879|2|1|12880|2|1|12867|2|1|12868|2|1|12869|2|1|12264|2|1|9899|2|1|10042|2|1|10031|2|1|10139|2|1|10140|2|1|10141|2|1|10128|2|1|10129|2|1|10130|2|1|10282|2|1|10283|2|1|10284|2|1|10271|2|1|10272|2|1|10273|2|1|9657|2|1|9646|2|1|13969|2|1|13958|2|1|13408|2|1|14128|2|1|14077|2|1|14078|2|1|14079|2|1|14249|2|1|14209|2|1|14210|2|1|14211|2|1|14198|2|1|14199|2|1|14200|2|1|13595|2|1|11186|2|1|11175|2|1|11318|2|1|11327|2|1|11328|2|1|11329|2|1|11307|2|1|10768|2|1|11466|2|1|11455|2|1|11426|2|1|11427|2|1|11428|2|1|11415|2|1|11416|2|1|11417|2|1|11609|2|1|11598|2|1|11558|2|1|11559|2|1|11560|2|1|11569|2|1|11570|2|1|11571|2|1|11547|2|1|11548|2|1|11549|2|1|10944|2|1|10933|2|1|5873|2|1|5882|2|1|5884|2|1|5994|2|1|6003|2|1|6005|2|1|5444|2|1|5433|2|1|6164|2|1|6153|2|1|6113|2|1|6114|2|1|6115|2|1|6124|2|1|6125|2|1|6126|2|1|6102|2|1|6104|2|1|6285|2|1|6234|2|1|6236|2|1|6245|2|1|6247|2|1|5631|2|1|5640|2|1|5641|2|1|5642|2|1|5620|2|1|2001|2|1|2010|2|1|2011|2|1|2012|2|1|1990|2|1|2149|2|1|2109|2|1|2110|2|1|2111|2|1|2098|2|1|2099|2|1|2100|2|1|2292|2|1|2241|2|1|2242|2|1|2243|2|1|2252|2|1|2253|2|1|2254|2|1|2230|2|1|2231|2|1|2232|2|1|1627|2|1|1616|2|1|3211|2|1|3220|2|1|3221|2|1|3222|2|1|3200|2|1|3189|2|1|3332|2|1|3341|2|1|3342|2|1|3343|2|1|3310|2|1|3502|2|1|3491|2|1|3451|2|1|3452|2|1|3453|2|1|3480|2|1|3469|2|1|3462|2|1|3463|2|1|3464|2|1|3440|2|1|3441|2|1|3442|2|1|3429|2|1|3430|2|1|3431|2|1|3623|2|1|3612|2|1|3572|2|1|3573|2|1|3574|2|1|3601|2|1|3590|2|1|3583|2|1|3584|2|1|3585|2|1|3550|2|1|3551|2|1|3552|2|1|2969|2|1|2978|2|1|2979|2|1|2980|2|1|2958|2|1|2947|2|1|9168|2|1|9169|2|1|9170|2|1|9157|2|1|9158|2|1|9289|2|1|9290|2|1|9291|2|1|9278|2|1|9279|2|1|11218|1|1|11215|1|1|1912|1|1|1909|1|1|1901|1|1|1898|1|1|2506|1|1|2503|1|1|1659|1|1|1656|1|1|12558|1|1|12545|1|1|12547|1|1|13152|1|1|12305|1|1|14010|1|1|13997|1|1|13999|1|1|14615|1|1|14602|1|1|14604|1|1|3263|1|1|3250|1|1|3252|1|1|3241|1|1|3228|1|1|3230|1|1|3857|1|1|3835|1|1|3010|1|1|2988|1|1|12798|2|1|12799|2|1|12800|2|1|12787|2|1|12788|2|1|12919|2|1|12920|2|1|12921|2|1|12908|2|1|12909|2|1|13166|2|1|13155|2|1|13309|2|1|13298|2|1|14129|2|1|14130|2|1|14250|2|1|14251|2|1|14497|2|1|14618|2|1|11467|2|1|11468|2|1|11469|2|1|11456|2|1|11457|2|1|11610|2|1|11611|2|1|11612|2|1|11599|2|1|11600|2|1|11835|2|1|11824|2|1|11978|2|1|11967|2|1|6165|2|1|6166|2|1|6167|2|1|6154|2|1|6155|2|1|6286|2|1|6287|2|1|6288|2|1|6275|2|1|6276|2|1|6533|2|1|6522|2|1|6654|2|1|6643|2|1|2150|2|1|2151|2|1|2293|2|1|2294|2|1|2518|2|1|2661|2|1|7474|2|1|7475|2|1|7476|2|1|7463|2|1|7464|2|1|7595|2|1|7596|2|1|7597|2|1|7584|2|1|7585|2|1|7842|2|1|7831|2|1|7963|2|1|7952|2|1|3503|2|1|3504|2|1|3505|2|1|3492|2|1|3493|2|1|3481|2|1|3482|2|1|3483|2|1|3470|2|1|3471|2|1|3624|2|1|3625|2|1|3626|2|1|3613|2|1|3614|2|1|3602|2|1|3603|2|1|3604|2|1|3591|2|1|3592|2|1|3871|2|1|3860|2|1|3849|2|1|3838|2|1|4812|2|1|4813|2|1|4814|2|1|4801|2|1|4802|2|1|4933|2|1|4934|2|1|4935|2|1|4922|2|1|4923|2|1|5180|2|1|5169|2|1|8563|2|1|8564|2|1|8684|2|1|8685|2|1|8686|2|1|8673|2|1|8674|2|1|9171|2|1|9172|2|1|9160|2|1|9161|2|1|9292|2|1|9293|2|1|9281|2|1|9282|2|1|13853|1|1|13824|1|1|12094|1|1|13249|1|1|5439|1|1|6473|1|1|5626|1|1|6594|1|1|11975|1|1|11962|1|1|6046|1|1|6033|1|1|2656|1|1|9909|1|1|9906|1|1|13847|1|1|13844|1|1|13418|1|1|13415|1|1|12624|1|1|10622|1|1|10609|1|1|11170|1|1|11777|1|1|10930|1|1|1978|1|1|1975|1|1|2458|1|1|1611|1|1|3195|1|1|3329|1|1|3307|1|1|3802|1|1|2955|1|1|12583|2|1|12528|2|1|12561|2|1|12537|2|1|12533|2|1|12534|2|1|12538|2|1|12539|2|1|12535|2|1|12517|2|1|12495|2|1|12704|2|1|12693|2|1|12649|2|1|12682|2|1|12671|2|1|12658|2|1|12654|2|1|12655|2|1|12659|2|1|12660|2|1|12656|2|1|12657|2|1|12616|2|1|12823|2|1|12819|2|1|12820|2|1|12824|2|1|12825|2|1|12818|2|1|12821|2|1|12822|2|1|12812|2|1|12808|2|1|12809|2|1|12813|2|1|12814|2|1|12807|2|1|12810|2|1|12768|2|1|12764|2|1|12765|2|1|12769|2|1|12770|2|1|12766|2|1|12767|2|1|12801|2|1|12802|2|1|12803|2|1|12790|2|1|12791|2|1|12792|2|1|12779|2|1|12775|2|1|12776|2|1|12780|2|1|12781|2|1|12777|2|1|12778|2|1|12757|2|1|12753|2|1|12754|2|1|12758|2|1|12759|2|1|12755|2|1|12756|2|1|12735|2|1|12736|2|1|12737|2|1|12944|2|1|12940|2|1|12941|2|1|12945|2|1|12946|2|1|12939|2|1|12942|2|1|12943|2|1|12933|2|1|12929|2|1|12930|2|1|12934|2|1|12935|2|1|12928|2|1|12931|2|1|12889|2|1|12885|2|1|12886|2|1|12890|2|1|12891|2|1|12887|2|1|12888|2|1|12922|2|1|12923|2|1|12924|2|1|12911|2|1|12912|2|1|12913|2|1|12900|2|1|12896|2|1|12897|2|1|12901|2|1|12902|2|1|12898|2|1|12899|2|1|12856|2|1|12857|2|1|12858|2|1|13067|2|1|13056|2|1|13045|2|1|12220|2|1|13188|2|1|13177|2|1|13133|2|1|13142|2|1|13139|2|1|13143|2|1|13144|2|1|13140|2|1|13141|2|1|13122|2|1|12341|2|1|12330|2|1|12286|2|1|12319|2|1|12308|2|1|12295|2|1|12291|2|1|12292|2|1|12296|2|1|12297|2|1|12293|2|1|12294|2|1|12275|2|1|12253|2|1|12462|2|1|12451|2|1|12440|2|1|9921|2|1|9866|2|1|9875|2|1|9876|2|1|9877|2|1|9437|2|1|9426|2|1|10161|2|1|10157|2|1|10158|2|1|10162|2|1|10163|2|1|10159|2|1|10160|2|1|10150|2|1|10146|2|1|10147|2|1|10151|2|1|10152|2|1|10148|2|1|10106|2|1|10107|2|1|10108|2|1|10117|2|1|10118|2|1|10119|2|1|10526|2|1|10515|2|1|9679|2|1|9668|2|1|9624|2|1|9633|2|1|9634|2|1|9635|2|1|10647|2|1|10636|2|1|14035|2|1|13980|2|1|14013|2|1|13989|2|1|13985|2|1|13986|2|1|13990|2|1|13991|2|1|13987|2|1|13947|2|1|13430|2|1|13375|2|1|13384|2|1|13385|2|1|13386|2|1|13364|2|1|14154|2|1|14150|2|1|14151|2|1|14155|2|1|14156|2|1|14149|2|1|14152|2|1|14147|2|1|14099|2|1|14095|2|1|14096|2|1|14100|2|1|14101|2|1|14097|2|1|14132|2|1|14133|2|1|14134|2|1|14110|2|1|14106|2|1|14107|2|1|14111|2|1|14112|2|1|14108|2|1|14088|2|1|14084|2|1|14085|2|1|14089|2|1|14090|2|1|14086|2|1|14066|2|1|14067|2|1|14068|2|1|14275|2|1|14271|2|1|14272|2|1|14276|2|1|14277|2|1|14270|2|1|14273|2|1|14268|2|1|14220|2|1|14216|2|1|14217|2|1|14221|2|1|14222|2|1|14218|2|1|14253|2|1|14254|2|1|14255|2|1|14231|2|1|14227|2|1|14228|2|1|14232|2|1|14233|2|1|14229|2|1|14187|2|1|14188|2|1|14189|2|1|14398|2|1|14376|2|1|14519|2|1|14464|2|1|14473|2|1|14470|2|1|14474|2|1|14475|2|1|14471|2|1|14453|2|1|13672|2|1|13617|2|1|13650|2|1|13626|2|1|13622|2|1|13623|2|1|13627|2|1|13628|2|1|13624|2|1|13606|2|1|13584|2|1|14640|2|1|14585|2|1|14594|2|1|14591|2|1|14595|2|1|14596|2|1|14592|2|1|14574|2|1|13793|2|1|13771|2|1|11252|2|1|11197|2|1|11230|2|1|11206|2|1|11202|2|1|11203|2|1|11207|2|1|11208|2|1|11204|2|1|11164|2|1|11373|2|1|11362|2|1|11351|2|1|11340|2|1|11492|2|1|11488|2|1|11489|2|1|11493|2|1|11494|2|1|11487|2|1|11490|2|1|11491|2|1|11481|2|1|11477|2|1|11478|2|1|11482|2|1|11483|2|1|11476|2|1|11479|2|1|11437|2|1|11433|2|1|11434|2|1|11438|2|1|11439|2|1|11435|2|1|11436|2|1|11470|2|1|11471|2|1|11472|2|1|11459|2|1|11460|2|1|11461|2|1|11448|2|1|11444|2|1|11445|2|1|11449|2|1|11450|2|1|11446|2|1|11447|2|1|11404|2|1|11405|2|1|11406|2|1|11613|2|1|11614|2|1|11615|2|1|11602|2|1|11603|2|1|11604|2|1|11591|2|1|11592|2|1|11593|2|1|11580|2|1|11581|2|1|11582|2|1|11736|2|1|11857|2|1|11846|2|1|11802|2|1|11811|2|1|11808|2|1|11812|2|1|11813|2|1|11809|2|1|11810|2|1|11010|2|1|10999|2|1|10955|2|1|10988|2|1|10977|2|1|10964|2|1|10960|2|1|10961|2|1|10965|2|1|10966|2|1|10962|2|1|10963|2|1|10922|2|1|11131|2|1|5928|2|1|5906|2|1|6049|2|1|6038|2|1|6027|2|1|6016|2|1|6168|2|1|6169|2|1|6170|2|1|6157|2|1|6158|2|1|6159|2|1|6146|2|1|6147|2|1|6148|2|1|6135|2|1|6136|2|1|6137|2|1|6289|2|1|6290|2|1|6291|2|1|6278|2|1|6279|2|1|6280|2|1|6267|2|1|6268|2|1|6269|2|1|6256|2|1|6258|2|1|5686|2|1|5675|2|1|5664|2|1|5653|2|1|2056|2|1|2034|2|1|2175|2|1|2171|2|1|2172|2|1|2176|2|1|2177|2|1|2170|2|1|2173|2|1|2120|2|1|2116|2|1|2117|2|1|2121|2|1|2122|2|1|2118|2|1|2153|2|1|2154|2|1|2155|2|1|2131|2|1|2127|2|1|2128|2|1|2132|2|1|2133|2|1|2129|2|1|2087|2|1|2088|2|1|2089|2|1|2296|2|1|2297|2|1|2298|2|1|2274|2|1|2275|2|1|2276|2|1|2540|2|1|2485|2|1|2494|2|1|2491|2|1|2495|2|1|2496|2|1|2492|2|1|1693|2|1|1638|2|1|1671|2|1|1647|2|1|1643|2|1|1644|2|1|1648|2|1|1649|2|1|1645|2|1|1605|2|1|7259|2|1|7237|2|1|7380|2|1|7369|2|1|7358|2|1|7347|2|1|7499|2|1|7496|2|1|7500|2|1|7497|2|1|7498|2|1|7488|2|1|7485|2|1|7489|2|1|7486|2|1|7477|2|1|7478|2|1|7466|2|1|7467|2|1|7620|2|1|7617|2|1|7621|2|1|7618|2|1|7619|2|1|7609|2|1|7606|2|1|7610|2|1|7607|2|1|7598|2|1|7599|2|1|7587|2|1|7588|2|1|7864|2|1|7853|2|1|7985|2|1|7974|2|1|3266|2|1|3244|2|1|3387|2|1|3376|2|1|3365|2|1|3354|2|1|3506|2|1|3507|2|1|3508|2|1|3495|2|1|3496|2|1|3497|2|1|3484|2|1|3485|2|1|3486|2|1|3473|2|1|3474|2|1|3475|2|1|3627|2|1|3628|2|1|3629|2|1|3616|2|1|3617|2|1|3618|2|1|3605|2|1|3606|2|1|3607|2|1|3594|2|1|3595|2|1|3596|2|1|3750|2|1|3728|2|1|3024|2|1|3013|2|1|3002|2|1|2991|2|1|3145|2|1|3123|2|1|4597|2|1|4575|2|1|4718|2|1|4707|2|1|4696|2|1|4685|2|1|4837|2|1|4834|2|1|4838|2|1|4835|2|1|4836|2|1|4826|2|1|4823|2|1|4827|2|1|4824|2|1|4815|2|1|4816|2|1|4804|2|1|4805|2|1|4958|2|1|4955|2|1|4959|2|1|4956|2|1|4957|2|1|4947|2|1|4944|2|1|4948|2|1|4945|2|1|4936|2|1|4937|2|1|4925|2|1|4926|2|1|5202|2|1|5191|2|1|8588|2|1|8585|2|1|8589|2|1|8586|2|1|8566|2|1|8567|2|1|8709|2|1|8706|2|1|8710|2|1|8707|2|1|8708|2|1|8698|2|1|8695|2|1|8699|2|1|8696|2|1|8687|2|1|8688|2|1|8676|2|1|8677|2|1|9193|2|1|9190|2|1|9194|2|1|9191|2|1|9192|2|1|9182|2|1|9179|2|1|9183|2|1|9180|2|1|9314|2|1|9311|2|1|9315|2|1|9312|2|1|9313|2|1|9303|2|1|9300|2|1|9304|2|1|9301|2|1|12575|1|1|12573|1|1|12521|1|1|12696|1|1|12694|1|1|12642|1|1|13169|1|1|13167|1|1|13115|1|1|12322|1|1|12320|1|1|12268|1|1|9914|1|1|10508|1|1|9661|1|1|10640|1|1|14027|1|1|14025|1|1|13973|1|1|13423|1|1|14446|1|1|13599|1|1|14632|1|1|14630|1|1|14578|1|1|11849|1|1|11847|1|1|11795|1|1|11002|1|1|11000|1|1|10948|1|1|12086|1|1|13292|1|1|13291|1|1|13241|1|1|10766|1|1|11972|1|1|11971|1|1|11921|1|1|5922|1|1|5921|1|1|5871|1|1|6043|1|1|6042|1|1|5992|1|1|5431|1|1|6516|1|1|6515|1|1|6465|1|1|5669|1|1|5668|1|1|5618|1|1|6637|1|1|6636|1|1|6586|1|1|1182|1|1|335|1|1|11235|1|1|1929|1|1|1918|1|1|1878|1|1|2523|1|1|1676|1|1|13043|1|1|12438|1|1|14374|1|1|13769|1|1|3748|1|1|3726|1|1|3143|1|1|3121|1|1|9981|1|1|9970|1|1|9952|1|1|10454|1|1|9607|1|1|13054|1|1|12218|1|1|12449|1|1|11734|1|1|11129|1|1|13886|1|1|13875|1|1|13835|1|1|14480|1|1|13633|1|1|14386|1|1|14383|1|1|13550|1|1|13547|1|1|13539|1|1|13536|1|1|13781|1|1|13778|1|1|11943|1|1|6014|1|1|2637|1|1|12664|1|1|11223|1|1|11817|1|1|10970|1|1|2511|1|1|1664|1|1|3369|1|1|3347|1|1|12490|1|1|12611|1|1|13097|1|1|12250|1|1|9861|1|1|9854|1|1|9851|1|1|9432|1|1|10468|1|1|9621|1|1|10587|1|1|10580|1|1|10577|1|1|13942|1|1|13370|1|1|14547|1|1|11284|1|1|11281|1|1|11764|1|1|10917|1|1|11180|1|1|1995|1|1|1984|1|1|1966|1|1|2468|1|1|1621|1|1|13275|1|1|13272|1|1|11955|1|1|11952|1|1|5905|1|1|5902|1|1|6026|1|1|6023|1|1|6499|1|1|6496|1|1|5652|1|1|5649|1|1|6620|1|1|6617|1|1|3980|1|1|3977|1|1|3958|1|1|3955|1|1|10014|1|1|9963|1|1|10437|1|1|10434|1|1|9590|1|1|9587|1|1|603|1|1|600|1|1|724|1|1|721|1|1|1197|1|1|1194|1|1|350|1|1|347|1|1|1329|1|1|1326|1|1|12500|1|1|12482|1|1|12621|1|1|12603|1|1|9893|1|1|9842|1|1|9413|1|1|10487|1|1|9640|1|1|10619|1|1|10568|1|1|13952|1|1|13934|1|1|13402|1|1|13351|1|1|14557|1|1|14539|1|1|11774|1|1|11756|1|1|10927|1|1|10909|1|1|3205|1|1|3183|1|1|3176|1|1|3165|1|1|3326|1|1|3304|1|1|3297|1|1|3286|1|1|3799|1|1|2952|1|1|11217|1|1|1911|1|1|1900|1|1|2505|1|1|1658|1|1|12501|1|1|12622|1|1|13108|1|1|12261|1|1|9894|1|1|10008|1|1|10005|1|1|10501|1|1|10488|1|1|9654|1|1|9641|1|1|10620|1|1|13953|1|1|13403|1|1|14558|1|1|11295|1|1|11292|1|1|11775|1|1|10928|1|1|3206|1|1|3184|1|1|3327|1|1|3320|1|1|3317|1|1|3305|1|1|3813|1|1|3800|1|1|3791|1|1|2966|1|1|2953|1|1|2944|1|1|10015|1|1|13854|1|1|13856|1|1|14461|1|1|13614|1|1|9425|1|1|9422|1|1|14026|1|1|13363|1|1|13360|1|1|11163|1|1|11160|1|1|1153|1|1|1150|1|1|306|1|1|303|1|1|2451|1|1|2448|1|1|1604|1|1|1601|1|1|13062|1|1|12457|1|1|14393|1|1|14385|1|1|13549|1|1|13538|1|1|13788|1|1|13780|1|1|10035|1|1|9982|1|1|9971|1|1|10455|1|1|9608|1|1|12690|1|1|11249|1|1|11236|1|1|11238|1|1|11843|1|1|10996|1|1|1930|1|1|1932|1|1|1919|1|1|1921|1|1|2044|1|1|2041|1|1|2537|1|1|2524|1|1|2526|1|1|1690|1|1|1677|1|1|1679|1|1|12554|1|1|12675|1|1|13148|1|1|12301|1|1|14006|1|1|14611|1|1|11828|1|1|10981|1|1|3259|1|1|3237|1|1|3380|1|1|3358|1|1|3853|1|1|3831|1|1|3006|1|1|2984|1|1|11348|1|1|11335|1|1|2029|1|1|13907|1|1|13896|1|1|14501|1|1|13654|1|1|11334|1|1|2028|1|1|1977|1|1|12566|1|1|9908|1|1|13846|1|1|14018|1|1|13417|1|1|14623|1|1|13088|1|1|13085|1|1|12241|1|1|12238|1|1|10448|1|1|10445|1|1|9601|1|1|9598|1|1|14419|1|1|14416|1|1|13572|1|1|13569|1|1|3782|1|1|3779|1|1|3771|1|1|3768|1|1|2935|1|1|2932|1|1|2924|1|1|2921|1|1|12549|1|1|12546|1|1|14001|1|1|13998|1|1|14606|1|1|14603|1|1|3254|1|1|3251|1|1|3232|1|1|3229|1|1|11355|1|1|2049|1|1|12635|1|1|11181|1|1|11315|1|1|11304|1|1|11788|1|1|10941|1|1|1996|1|1|1985|1|1|2469|1|1|1622|1|1|12632|1|1|9853|1|1|10025|1|1|10579|1|1|13963|1|1|11312|1|1|11301|1|1|11283|1|1|11785|1|1|10938|1|1|13274|1|1|11954|1|1|5904|1|1|6025|1|1|6498|1|1|5651|1|1|6619|1|1|3979|1|1|3957|1|1|12098|1|1|12095|1|1|13253|1|1|13250|1|1|5443|1|1|5440|1|1|6477|1|1|6474|1|1|5630|1|1|5627|1|1|6598|1|1|6595|1|1|10007|1|1|11345|1|1|11294|1|1|3319|1|1|13066|1|1|13063|1|1|12461|1|1|12458|1|1|14397|1|1|14394|1|1|13792|1|1|13789|1|1|13306|1|1|13293|1|1|11973|1|1|5923|1|1|6044|1|1|6530|1|1|6517|1|1|5683|1|1|5670|1|1|6651|1|1|6638|1|1|13094|1|1|12247|1|1|10465|1|1|10436|1|1|9618|1|1|9589|1|1|14425|1|1|13578|1|1|602|1|1|723|1|1|1196|1|1|349|1|1|1328|1|1|7257|3|1|7254|3|1|7258|3|1|7255|3|1|7235|3|1|7232|3|1|7236|3|1|7233|3|1|7378|3|1|7375|3|1|7379|3|1|7376|3|1|7377|3|1|7367|3|1|7364|3|1|7368|3|1|7365|3|1|7356|3|1|7353|3|1|7357|3|1|7354|3|1|7355|3|1|7345|3|1|7342|3|1|7346|3|1|7343|3|1|7862|3|1|7859|3|1|7863|3|1|7860|3|1|7861|3|1|7851|3|1|7848|3|1|7852|3|1|7849|3|1|7840|3|1|7837|3|1|7841|3|1|7838|3|1|7839|3|1|7829|3|1|7826|3|1|7830|3|1|7827|3|1|7983|3|1|7980|3|1|7984|3|1|7981|3|1|7982|3|1|7972|3|1|7969|3|1|7973|3|1|7970|3|1|7961|3|1|7958|3|1|7962|3|1|7959|3|1|7960|3|1|7950|3|1|7947|3|1|7951|3|1|7948|3|1|4595|3|1|4592|3|1|4596|3|1|4593|3|1|4573|3|1|4570|3|1|4574|3|1|4571|3|1|4716|3|1|4713|3|1|4717|3|1|4714|3|1|4715|3|1|4705|3|1|4702|3|1|4706|3|1|4703|3|1|4694|3|1|4691|3|1|4695|3|1|4692|3|1|4693|3|1|4683|3|1|4680|3|1|4684|3|1|4681|3|1|5200|3|1|5197|3|1|5201|3|1|5198|3|1|5199|3|1|5189|3|1|5186|3|1|5190|3|1|5187|3|1|5178|3|1|5175|3|1|5179|3|1|5176|3|1|5177|3|1|5167|3|1|5164|3|1|5168|3|1|5165|3|1|2043|1|1|13282|1|1|6506|1|1|5659|1|1|6627|1|1|3987|1|1|3965|1|1|13106|1|1|12259|1|1|10019|1|1|10016|1|1|10499|1|1|9652|1|1|14437|1|1|13590|1|1|3811|1|1|3789|1|1|2964|1|1|2942|1|1|11966|1|1|11963|1|1|6037|1|1|6034|1|1|2660|1|1|2657|1|1|13065|1|1|12460|1|1|14396|1|1|13791|1|1|12494|1|1|12491|1|1|12615|1|1|12612|1|1|9865|1|1|9862|1|1|9436|1|1|9433|1|1|10591|1|1|10588|1|1|13946|1|1|13943|1|1|13374|1|1|13371|1|1|14510|1|1|13663|1|1|14551|1|1|14548|1|1|11768|1|1|11765|1|1|10921|1|1|10918|1|1|12548|1|1|14000|1|1|14605|1|1|3253|1|1|3231|1|1|12633|1|1|10039|1|1|10026|1|1|13964|1|1|11313|1|1|11302|1|1|11786|1|1|10939|1|1|13159|1|1|13105|1|1|13087|1|1|12312|1|1|12258|1|1|12240|1|1|10498|1|1|10447|1|1|9651|1|1|9600|1|1|10613|1|1|10610|1|1|14490|1|1|14436|1|1|14418|1|1|13643|1|1|13589|1|1|13571|1|1|11174|1|1|11171|1|1|1186|1|1|1183|1|1|339|1|1|336|1|1|2462|1|1|2459|1|1|1615|1|1|1612|1|1|3199|1|1|3196|1|1|3864|1|1|3810|1|1|3842|1|1|3788|1|1|3781|1|1|3770|1|1|3017|1|1|2963|1|1|2995|1|1|2941|1|1|2934|1|1|2923|1|1|11366|1|1|13858|1|1|13855|1|1|12679|1|1|12666|1|1|11225|1|1|11339|1|1|11336|1|1|11832|1|1|11819|1|1|10985|1|1|10972|1|1|2033|1|1|2030|1|1|2513|1|1|1666|1|1|3384|1|1|3371|1|1|3362|1|1|3349|1|1|12511|1|1|9424|1|1|10630|1|1|13362|1|1|14568|1|1|11191|1|1|11162|1|1|1203|1|1|1152|1|1|356|1|1|305|1|1|2479|1|1|2450|1|1|1632|1|1|1603|1|1|10018|1|1|13095|1|1|12248|1|1|9986|1|1|9983|1|1|9975|1|1|9972|1|1|10466|1|1|10459|1|1|10456|1|1|9619|1|1|9612|1|1|9609|1|1|14426|1|1|13579|1|1|13180|1|1|13178|1|1|13126|1|1|12333|1|1|12331|1|1|12279|1|1|10519|1|1|9672|1|1|14511|1|1|14509|1|1|14457|1|1|13664|1|1|13662|1|1|13610|1|1|12505|1|1|12502|1|1|12626|1|1|12623|1|1|9898|1|1|9895|1|1|10492|1|1|10489|1|1|9645|1|1|9642|1|1|10624|1|1|10621|1|1|13957|1|1|13954|1|1|13407|1|1|13404|1|1|14562|1|1|14559|1|1|11779|1|1|11776|1|1|10932|1|1|10929|1|1|3210|1|1|3207|1|1|3188|1|1|3185|1|1|3331|1|1|3328|1|1|3309|1|1|3306|1|1|3804|1|1|3801|1|1|2957|1|1|2954|1|1|12097|1|1|13303|1|1|13302|1|1|13252|1|1|5442|1|1|6527|1|1|6526|1|1|6476|1|1|5680|1|1|5679|1|1|5629|1|1|6648|1|1|6647|1|1|6597|1|1|11240|1|1|11237|1|1|1934|1|1|1931|1|1|1923|1|1|1920|1|1|2528|1|1|2525|1|1|1681|1|1|1678|1|1|12580|1|1|12567|1|1|12569|1|1|13174|1|1|12327|1|1|14032|1|1|14019|1|1|14021|1|1|14637|1|1|14624|1|1|14626|1|1|11338|1|1|2032|1|1|11346|1|1|12512|1|1|12646|1|1|13119|1|1|12272|1|1|10644|1|1|10631|1|1|14569|1|1|11192|1|1|11185|1|1|11182|1|1|11799|1|1|10952|1|1|2000|1|1|1997|1|1|1989|1|1|1986|1|1|2480|1|1|2473|1|1|2470|1|1|1633|1|1|1626|1|1|1623|1|1|13110|1|1|13107|1|1|12263|1|1|12260|1|1|10503|1|1|10500|1|1|9656|1|1|9653|1|1|14441|1|1|14438|1|1|13594|1|1|13591|1|1|3815|1|1|3812|1|1|3793|1|1|3790|1|1|2968|1|1|2965|1|1|2946|1|1|2943|1|1|13286|1|1|13283|1|1|6510|1|1|6507|1|1|5663|1|1|5660|1|1|6631|1|1|6628|1|1|3991|1|1|3988|1|1|3969|1|1|3966|1|1|1204|1|1|357|1|1|13908|1|1|13897|1|1|13857|1|1|14502|1|1|13655|1|1|11965|1|1|6036|1|1|2659|1|1|12686|1|1|11245|1|1|11839|1|1|10992|1|1|2533|1|1|1686|1|1|12555|1|1|12504|1|1|12676|1|1|12669|1|1|12665|1|1|12670|1|1|12667|1|1|12625|1|1|13160|1|1|13149|1|1|13109|1|1|12313|1|1|12302|1|1|12262|1|1|9897|1|1|10502|1|1|10491|1|1|9655|1|1|9644|1|1|10623|1|1|10612|1|1|14007|1|1|13956|1|1|13406|1|1|14491|1|1|14440|1|1|13644|1|1|13593|1|1|14612|1|1|14561|1|1|11228|1|1|11224|1|1|11229|1|1|11226|1|1|11173|1|1|11829|1|1|11822|1|1|11818|1|1|11823|1|1|11820|1|1|11778|1|1|10982|1|1|10975|1|1|10971|1|1|10976|1|1|10973|1|1|10931|1|1|1185|1|1|338|1|1|2516|1|1|2512|1|1|2517|1|1|2514|1|1|2461|1|1|1669|1|1|1665|1|1|1670|1|1|1667|1|1|1614|1|1|3260|1|1|3209|1|1|3238|1|1|3198|1|1|3187|1|1|3381|1|1|3374|1|1|3370|1|1|3375|1|1|3372|1|1|3330|1|1|3359|1|1|3352|1|1|3348|1|1|3353|1|1|3350|1|1|3308|1|1|3865|1|1|3854|1|1|3814|1|1|3843|1|1|3832|1|1|3803|1|1|3792|1|1|3018|1|1|3007|1|1|2967|1|1|2996|1|1|2985|1|1|2956|1|1|2945|1|1|13297|1|1|13294|1|1|11977|1|1|11974|1|1|5927|1|1|5924|1|1|6048|1|1|6045|1|1|6521|1|1|6518|1|1|5674|1|1|5671|1|1|6642|1|1|6639|1|1|10036|1|1|9985|1|1|9974|1|1|10458|1|1|9611|1|1|12522|1|1|12493|1|1|12643|1|1|12614|1|1|13116|1|1|12269|1|1|9915|1|1|9864|1|1|9435|1|1|10509|1|1|9662|1|1|10641|1|1|10590|1|1|13974|1|1|13945|1|1|13424|1|1|13373|1|1|14447|1|1|13600|1|1|14579|1|1|14550|1|1|11796|1|1|11767|1|1|10949|1|1|10920|1|1|13887|1|1|13889|1|1|13876|1|1|13878|1|1|14494|1|1|14481|1|1|14483|1|1|13647|1|1|13634|1|1|13636|1|1|11239|1|1|1933|1|1|1922|1|1|2527|1|1|1680|1|1|13285|1|1|6509|1|1|5662|1|1|6630|1|1|3990|1|1|3968|1|1|12523|1|1|12644|1|1|12637|1|1|12634|1|1|13130|1|1|13117|1|1|12283|1|1|12270|1|1|9916|1|1|10030|1|1|10027|1|1|10523|1|1|10510|1|1|9676|1|1|9663|1|1|10642|1|1|13975|1|1|13968|1|1|13965|1|1|13425|1|1|14448|1|1|13601|1|1|14580|1|1|11317|1|1|11314|1|1|11306|1|1|11303|1|1|11797|1|1|11790|1|1|11787|1|1|10950|1|1|10943|1|1|10940|1|1|10037|1|1|12576|1|1|12697|1|1|13170|1|1|12323|1|1|14028|1|1|14633|1|1|11850|1|1|11003|1|1|11370|1|1|11357|1|1|2051|1|1|12556|1|1|12677|1|1|13163|1|1|13150|1|1|12316|1|1|12303|1|1|14008|1|1|14613|1|1|11350|1|1|11347|1|1|11830|1|1|10983|1|1|3261|1|1|3239|1|1|3382|1|1|3360|1|1|3868|1|1|3855|1|1|3846|1|1|3833|1|1|3021|1|1|3008|1|1|2999|1|1|2986|1|1|11184|1|1|11356|1|1|2050|1|1|1999|1|1|1988|1|1|2472|1|1|1625|1|1|13099|1|1|13096|1|1|12252|1|1|12249|1|1|10470|1|1|10467|1|1|9623|1|1|9620|1|1|14430|1|1|14427|1|1|13583|1|1|13580|1|1|12571|1|1|12568|1|1|14023|1|1|14020|1|1|14628|1|1|14625|1|1|13296|1|1|11976|1|1|5926|1|1|6047|1|1|6520|1|1|5673|1|1|6641|1|1|11349|1|1|12636|1|1|10029|1|1|13967|1|1|11367|1|1|11316|1|1|11305|1|1|11789|1|1|10942|1|1|13891|1|1|13888|1|1|13880|1|1|13877|1|1|14485|1|1|14482|1|1|13638|1|1|13635|1|1|12559|1|1|12560|1|1|12557|1|1|12680|1|1|12681|1|1|12678|1|1|13153|1|1|13154|1|1|13151|1|1|12306|1|1|12307|1|1|12304|1|1|14011|1|1|14012|1|1|14009|1|1|14616|1|1|14617|1|1|14614|1|1|11833|1|1|11834|1|1|11831|1|1|10986|1|1|10987|1|1|10984|1|1|3264|1|1|3265|1|1|3262|1|1|3242|1|1|3243|1|1|3240|1|1|3385|1|1|3386|1|1|3383|1|1|3363|1|1|3364|1|1|3361|1|1|3858|1|1|3859|1|1|3856|1|1|3836|1|1|3837|1|1|3834|1|1|3011|1|1|3012|1|1|3009|1|1|2989|1|1|2990|1|1|2987|1|1|13304|1|1|6528|1|1|5681|1|1|6649|1|1|13128|1|1|12281|1|1|10041|1|1|10038|1|1|10521|1|1|9674|1|1|14459|1|1|13612|1|1|12570|1|1|14022|1|1|14627|1|1|12516|1|1|12513|1|1|13181|1|1|13127|1|1|13098|1|1|12334|1|1|12280|1|1|12251|1|1|10520|1|1|10469|1|1|9673|1|1|9622|1|1|10635|1|1|10632|1|1|14512|1|1|14458|1|1|14429|1|1|13665|1|1|13611|1|1|13582|1|1|14573|1|1|14570|1|1|11196|1|1|11193|1|1|1208|1|1|1205|1|1|361|1|1|358|1|1|2484|1|1|2481|1|1|1637|1|1|1634|1|1|13890|1|1|13879|1|1|14484|1|1|13637|1|1|12701|1|1|12688|1|1|11247|1|1|11361|1|1|11358|1|1|11854|1|1|11841|1|1|11007|1|1|10994|1|1|2055|1|1|2052|1|1|2535|1|1|1688|1|1|10040|1|1|12527|1|1|12524|1|1|12648|1|1|12645|1|1|13121|1|1|13118|1|1|12274|1|1|12271|1|1|9920|1|1|9917|1|1|10514|1|1|10511|1|1|9667|1|1|9664|1|1|10646|1|1|10643|1|1|13979|1|1|13976|1|1|13429|1|1|13426|1|1|14452|1|1|14449|1|1|13605|1|1|13602|1|1|14584|1|1|14581|1|1|11801|1|1|11798|1|1|10954|1|1|10951|1|1|11360|1|1|2054|1|1|11368|1|1|13132|1|1|13129|1|1|12285|1|1|12282|1|1|10525|1|1|10522|1|1|9678|1|1|9675|1|1|14463|1|1|14460|1|1|13616|1|1|13613|1|1|13308|1|1|13305|1|1|6532|1|1|6529|1|1|5685|1|1|5682|1|1|6653|1|1|6650|1|1|12577|1|1|12526|1|1|12515|1|1|12698|1|1|12691|1|1|12687|1|1|12692|1|1|12689|1|1|12647|1|1|13182|1|1|13171|1|1|13131|1|1|13120|1|1|12335|1|1|12324|1|1|12284|1|1|12273|1|1|9919|1|1|10524|1|1|10513|1|1|9677|1|1|9666|1|1|10645|1|1|10634|1|1|14029|1|1|13978|1|1|13428|1|1|14513|1|1|14462|1|1|14451|1|1|13666|1|1|13615|1|1|13604|1|1|14634|1|1|14583|1|1|14572|1|1|11250|1|1|11246|1|1|11251|1|1|11248|1|1|11195|1|1|11851|1|1|11844|1|1|11840|1|1|11845|1|1|11842|1|1|11800|1|1|11004|1|1|10997|1|1|10993|1|1|10998|1|1|10995|1|1|10953|1|1|1207|1|1|360|1|1|2538|1|1|2534|1|1|2539|1|1|2536|1|1|2483|1|1|1691|1|1|1687|1|1|1692|1|1|1689|1|1|1636|1|1|13909|1|1|13911|1|1|13898|1|1|13900|1|1|14516|1|1|14503|1|1|14505|1|1|13669|1|1|13656|1|1|13658|1|1|13307|1|1|6531|1|1|5684|1|1|6652|1|1|12578|1|1|12699|1|1|13185|1|1|13172|1|1|12338|1|1|12325|1|1|14030|1|1|14635|1|1|11372|1|1|11369|1|1|11852|1|1|11005|1|1|11371|1|1|13913|1|1|13910|1|1|13902|1|1|13899|1|1|14507|1|1|14504|1|1|13660|1|1|13657|1|1|12581|1|1|12582|1|1|12579|1|1|12702|1|1|12703|1|1|12700|1|1|13175|1|1|13176|1|1|13173|1|1|12328|1|1|12329|1|1|12326|1|1|14033|1|1|14034|1|1|14031|1|1|14638|1|1|14639|1|1|14636|1|1|11855|1|1|11856|1|1|11853|1|1|11008|1|1|11009|1|1|11006|1|1|13161|1|1|12314|1|1|14492|1|1|13645|1|1|3866|1|1|3844|1|1|3019|1|1|2997|1|1|13164|1|1|13165|1|1|13162|1|1|12317|1|1|12318|1|1|12315|1|1|14495|1|1|14496|1|1|14493|1|1|13648|1|1|13649|1|1|13646|1|1|3869|1|1|3870|1|1|3867|1|1|3847|1|1|3848|1|1|3845|1|1|3022|1|1|3023|1|1|3020|1|1|3000|1|1|3001|1|1|2998|1|1|13912|1|1|13901|1|1|14506|1|1|13659|1|1|13183|1|1|12336|1|1|14514|1|1|13667|1|1|13186|1|1|13187|1|1|13184|1|1|12339|1|1|12340|1|1|12337|1|1|14517|1|1|14518|1|1|14515|1|1|13670|1|1|13671|1|1|13668|1|1".split_string("\\|");
  630. __hacky_optimal_configuration_order[3]["easy"]["parts"] = "0|242|363|484|605|726|847|968|121|1089|244|1210|365|364|2662|3993|243|5324|6655|7986|9317|245|366|367|3872|5203|8712|8833|6897|7018|2904|3025|4235|4356|8228|8349|11979|9922|10164|10648|1331|4015|4004|9559|9680|368|369|370|3026|4357|246|6534|7139|7260|7381|7502|7623|6776|7744|6899|7865|7020|3146|3267|3388|3509|3630|2783|3751|2906|3027|4477|4598|4719|4840|4961|4114|5082|4237|4358|8470|8591|8954|8107|9075|8230|9196|8351|9801|10043|10285|9438|10406|9561|10527|9682|13310|247|248|249|6677|6666|8008|7997|2905|4236|5566|5687|5214|5688|7019|8350|2|1|9681|371|372|373|13189|13794|13431|11253|11495|11858|5808|5929|6050|6171|6292|5445|6413|5568|5689|1815|1936|2178|1452|2541|4048|4059|4037|4026|5225|8052|8734|8723|8855|8844|6900|7021|2907|3028|4238|4359|8231|8352|12221|12342|13552|13673|10890|11011|1573|1694|7755|6919|6908|7876|7040|7029|5093|4257|4246|4378|4367|9086|8250|8239|9207|8371|8360|9560|5567|250|251|252|6898|8229|970|123|12463|12584|12705|12826|12947|12100|13068|12223|12344|9562|9683|13915|14036|14157|14278|14399|13554|14520|13675|11132|11374|11616|10769|11737|10892|11013|2057|2299|2420|1575|1696|7161|7150|7282|7271|6710|6721|6699|6688|7403|7392|7524|7513|7645|7634|6798|6787|7766|6921|6910|7887|7042|7031|4499|4488|4620|4609|4741|4730|4862|4851|4983|4972|4136|4125|5104|4259|4248|4380|4369|8492|8481|8613|8602|8041|8030|8019|8976|8965|8129|8118|9097|8252|8241|9218|8373|8362|12343|11012|1695|4379|4368|969|122|8877|7022|3029|4360|8353|8294|8415|486|607|3|728|849|1091|1212|7023|7024|7025|3030|3031|3032|4361|4362|4363|8354|8355|8356|9684|13674|7041|7030|8372|8361|12222|10891|1574|4258|4247|1211|6901|2908|4239|8232|5569|5690|7304|7447|7568|7546|4642|4103|4092|4081|4070|4785|4906|4884|5258|5269|5247|5236|8536|8657|8635|8767|8778|8756|8745|8888|8899|8866|9020|8173|9141|8296|9262|8417|6902|6903|6904|2909|2910|2911|4240|4241|4242|8233|8234|8235|9685|9686|9687|6952|6963|6941|6930|7073|7084|7062|7051|4290|4301|4279|4268|4411|4422|4400|4389|8283|8272|8261|8404|8393|8382|12224|12345|9564|9565|9566|13555|13676|10893|11014|1576|1697|7194|7205|7183|7172|7315|7326|7293|6765|6754|6743|6732|7436|7425|7414|7557|7535|7678|7689|7667|7656|6831|6842|6820|6809|7799|7810|7788|7777|6954|6965|6943|6932|6922|6911|7920|7931|7909|7898|7075|7086|7064|7053|7043|7032|4532|4543|4521|4510|4653|4664|4631|4774|4763|4752|4895|4873|5016|5027|5005|4994|4169|4180|4158|4147|5137|5148|5126|5115|4292|4303|4281|4270|4260|4249|4413|4424|4402|4391|4381|4370|8525|8514|8503|8646|8624|8096|8085|8074|8063|9009|8998|8987|8162|8151|8140|9130|9119|9108|8285|8274|8263|8253|8242|9251|9240|9229|8406|8395|8384|8374|8363|9563|13553|6920|6909|8251|8240|8359|7026|7027|7028|3033|3034|3035|4364|4365|4366|8357|8358|5691|4412|4423|4401|4390|8416|13680|5692|5693|5694|1701|6905|6906|6907|2912|2913|2914|4243|4244|4245|8236|8237|8238|2663|3994|13559|5571|5572|5573|1580|7238|7216|6875|6853|4576|4554|4213|4191|5313|5302|5291|5280|8569|8547|8822|8811|8800|8789|8943|8932|8921|8910|8206|8184|8297|8418|2664|3995|12346|9688|9689|9690|13677|11015|1698|7074|7085|7063|7052|7044|7033|4382|4371|8405|8394|8383|8375|8364|485|606|4|727|848|1090|12347|12348|12349|13678|13679|11016|11017|11018|1699|1700|7007|6996|6985|6974|7128|7117|7106|7095|7045|7046|7047|7034|7035|7036|4345|4334|4323|4312|4466|4455|4444|4433|4383|4384|4385|4372|4373|4374|8338|8327|8316|8305|8459|8448|8437|8426|8376|8377|8378|8365|8366|8367|5570|4291|4302|4280|4269|8295|971|124|12226|12227|12228|13557|13558|10895|10896|10897|1578|1579|7249|7227|7370|7359|7348|7337|7491|7480|7469|7458|7612|7601|7590|7579|7733|7722|7711|7700|6886|6864|7854|7843|7832|7821|7009|6998|6955|6987|6976|6966|6944|6933|6924|6925|6926|6913|6914|6915|7975|7964|7953|7942|7130|7119|7076|7108|7097|7087|7065|7054|4587|4565|4708|4697|4686|4675|4829|4818|4807|4796|4950|4939|4928|4917|5071|5060|5049|5038|4224|4202|5192|5181|5170|5159|4347|4336|4293|4325|4314|4304|4282|4271|4262|4263|4264|4251|4252|4253|4468|4457|4414|4446|4435|4425|4403|4392|8580|8558|8701|8690|8679|8668|9064|9053|9042|9031|8217|8195|9185|9174|9163|9152|8340|8329|8286|8318|8307|8275|8264|8255|8256|8257|8244|8245|8246|9306|9295|9284|9273|8461|8450|8407|8439|8428|8396|8385|12225|9567|9568|9569|13556|10894|1577|6953|6964|6942|6931|6923|6912|4261|4250|8284|8273|8262|8254|8243|5695|5696|5697|4467|4456|4445|4434|8419|8381|8370|12350|12351|12352|13681|13682|13683|11019|11020|11021|1702|1703|1704|7129|7118|7077|7107|7096|7088|7066|7055|7048|7049|7050|7037|7038|7039|4415|4426|4404|4393|4386|4387|4388|4375|4376|4377|8460|8449|8408|8438|8427|8420|8421|8422|8397|8386|8379|8380|8368|8369|128|12229|12230|12231|13560|13561|13562|10898|10899|10900|5574|5575|5576|1581|1582|1583|7008|6997|6956|6986|6975|6967|6945|6934|6927|6928|6929|6916|6917|6918|7078|7079|7080|7089|7090|7091|7067|7068|7069|7056|7057|7058|4346|4335|4294|4324|4313|4305|4283|4272|4265|4266|4267|4254|4255|4256|4416|4417|4418|4427|4428|4429|4405|4406|4407|4394|4395|4396|8339|8328|8287|8317|8306|8298|8299|8300|8301|8276|8265|8258|8259|8260|8247|8248|8249|8409|8410|8411|8398|8399|8400|8387|8388|8389|7010|6999|6957|6958|6959|6988|6977|6968|6969|6970|6946|6947|6948|6935|6936|6937|7131|7120|7109|7098|4348|4337|4295|4296|4297|4326|4315|4306|4307|4308|4284|4285|4286|4273|4274|4275|4469|4458|4447|4436|8341|8330|8288|8289|8290|8319|8308|8277|8278|8279|8266|8267|8268|8462|8451|8440|8429|7132|7121|7081|7082|7083|7110|7099|7092|7093|7094|7070|7071|7072|7059|7060|7061|4470|4459|4419|4420|4421|4448|4437|4430|4431|4432|4408|4409|4410|4397|4398|4399|8463|8452|8412|8413|8414|8441|8430|8423|8424|8425|8401|8402|8403|8390|8391|8392|5326|6657|7988|7011|7000|6960|6961|6962|6989|6978|6971|6972|6973|6949|6950|6951|6938|6939|6940|4349|4338|4298|4299|4300|4327|4316|4309|4310|4311|4287|4288|4289|4276|4277|4278|8342|8331|8291|8292|8293|8320|8309|8302|8303|8304|8280|8281|8282|8269|8270|8271|972|125|9319|487|608|5|6|7|729|850|1092|1213|6656|7987|973|974|975|126|127|7625|6778|2665|3632|2785|3874|3996|4963|4116|5205|8714|8835|8956|8109|3631|2784|4962|4115|11980|10649|5325|1332|3873|4016|4005|5204|9318|11981|9924|10166|10287|9440|10650|491|1333|4017|4006|5327|6536|7141|7262|6658|7383|7504|7746|7867|3148|3269|3390|3511|3753|4479|4600|4721|4842|5084|8472|8593|7989|9077|9198|6293|5446|7624|6777|8955|8108|5215|9803|9320|10045|10408|10529|13312|489|490|610|611|612|731|732|733|852|853|854|1094|1095|1096|1215|1216|1217|6679|6668|8010|7999|7866|3147|3268|2666|3389|3510|3752|4478|4599|3997|4720|4841|5083|8713|8834|9197|7626|6779|2667|2668|2669|3633|2786|3875|3998|3999|4000|4964|4117|5206|8715|8836|8957|8110|13433|6294|5447|1454|10286|9439|976|977|978|129|130|131|488|609|8|9|10|730|851|1093|1214|5329|5330|5331|6537|7142|7263|6660|6661|6662|7384|7505|7747|7868|3149|3270|3391|3512|3754|4480|4601|4722|4843|5085|8473|8594|7991|7992|7993|9078|9199|13190|11859|5809|5930|5328|6051|6172|6414|6535|2542|7140|7261|6659|7382|7503|7745|4049|4060|4038|4027|5226|8471|8592|7990|9076|5216|1453|6783|2790|4121|8114|11982|12949|12102|13191|9925|10167|10288|9441|13796|14280|11255|10651|11497|11618|10771|11860|5810|5931|6052|6173|6415|1817|1938|1334|2180|2301|2543|7647|7627|7636|6800|6780|6789|3634|2787|4050|4061|4039|4028|4018|4007|4985|4965|4974|4138|4118|4127|5227|8054|8736|8725|8857|8846|8978|8958|8967|8131|8111|8120|13438|1459|7628|7629|7630|6781|6782|3635|3636|3637|2788|2789|4966|4967|4968|4119|4120|8959|8960|8961|8112|8113|7146|3153|3877|3878|3879|4484|5208|5209|5210|8477|8717|8718|8719|8838|8839|8840|12948|12101|9923|10165|10528|13311|13432|11617|10770|736|857|2300|6678|6667|2670|2671|2672|3876|4001|4002|4003|4984|4973|4137|4126|5207|8009|7996|7998|8716|8837|13801|6539|6540|6541|1822|7144|7145|7265|7266|7267|7386|7387|7388|7507|7508|7509|7749|7750|7751|7870|7871|7872|3151|3152|3272|3273|3274|3393|3394|3395|3514|3515|3516|3756|3757|3758|4482|4483|4603|4604|4605|4724|4725|4726|4845|4846|4847|5087|5088|5089|8475|8476|8596|8597|8598|9080|9081|9082|9201|9202|9203|9445|13434|6295|5448|1338|1455|8879|9022|8175|12465|12586|12707|12828|13070|9804|9322|9323|9324|10046|10409|10530|13917|13313|14038|14159|14401|14522|11134|11376|11739|2059|2422|7163|7152|7284|7273|6712|6723|6701|6690|6680|6669|7405|7394|7526|7515|7768|7757|7889|7878|4501|4490|4622|4611|4743|4732|4864|4853|5106|5095|8494|8483|8615|8604|8043|8032|8021|8011|8000|9099|9088|9220|9209|5332|5333|5334|6538|7143|7264|6663|6664|6665|7385|7506|7748|7869|3150|3271|3392|3513|3755|4481|4602|4104|4093|4082|4071|4723|4844|5086|5259|5270|5248|5237|8474|8595|7994|7995|8964|8117|9079|9200|7631|7632|7633|6784|6785|6786|3638|3639|3640|2791|2792|2793|4969|4970|4971|4122|4123|4124|8962|8963|8115|8116|10289|9442|14279|7646|7635|6799|6788|7877|5094|8977|8966|8130|8119|9208|10290|10291|10292|9443|9444|5217|11984|11985|11986|12950|12103|13192|9808|9927|9928|9929|10169|10170|10171|13797|13317|14281|11256|11254|10653|10654|10655|11498|11496|11619|10772|11861|5811|5932|6053|6174|6416|6542|6543|6544|1818|1816|1939|1937|1336|1337|2181|2179|2302|2544|7147|7148|7149|7306|7268|7269|7270|7449|7389|7390|7391|7570|7548|7510|7511|7512|7680|7691|7669|7658|7648|7637|6833|6844|6822|6811|6801|6790|7752|7753|7754|7873|7874|7875|3154|3155|3156|3275|3276|3277|3396|3397|3398|3517|3518|3519|3759|3760|3761|3880|3881|3882|4485|4486|4487|4644|4606|4607|4608|4105|4094|4051|4083|4072|4062|4040|4029|4020|4021|4022|4009|4010|4011|4787|4727|4728|4729|4908|4886|4848|4849|4850|5018|5029|5007|4996|4986|4975|4171|4182|4160|4149|4139|4128|5090|5091|5092|5314|5303|5260|5292|5281|5271|5249|5238|5228|5211|5212|5213|8538|8478|8479|8480|8659|8637|8599|8600|8601|8055|8053|8769|8780|8758|8747|8737|8720|8721|8722|8726|8890|8901|8868|8858|8841|8842|8843|8847|9011|9000|8989|8979|8968|8164|8153|8142|8132|8121|9143|9083|9084|9085|9264|9204|9205|9206|5452|12107|14285|13435|13436|13437|10776|5815|6296|6297|6298|6299|5449|5450|5451|1943|2185|2306|1456|1457|1458|2548|6877|6855|6805|6794|5017|5028|5006|4995|4215|4170|4193|4181|4159|4148|4143|4132|8880|9023|9021|8208|8186|8176|8174|8136|8125|12464|12585|11983|12706|12827|13069|9926|10168|13795|14521|11133|10652|11375|11738|1335|2058|2421|6711|6722|6700|6689|7888|4500|4489|4621|4610|4019|4008|4742|4731|4863|4852|5105|8042|8031|8020|8735|8724|8856|8845|9219|12470|12951|12952|12953|12954|12104|12105|12106|13194|13195|13196|10293|10294|10295|9446|9447|9448|13799|13800|13922|14043|14164|14282|14283|14284|14406|14527|11139|11258|11259|11260|11500|11501|11502|11620|11621|11622|11623|10773|10774|10775|11863|11864|11865|5813|5814|5934|5935|5936|6055|6056|6057|6176|6177|6178|6418|6419|6420|1820|1821|1941|1942|2064|2183|2184|2303|2304|2305|2427|2546|2547|7240|7218|7168|7157|7307|7450|7571|7549|7735|7724|7681|7679|7713|7702|7692|7690|7670|7668|7659|7657|7649|7650|7651|7652|7638|7639|7640|7641|6888|6834|6832|6866|6845|6843|6823|6821|6812|6810|6802|6803|6804|6791|6792|6793|4578|4556|4506|4495|4645|4106|4095|4053|4054|4055|4084|4073|4064|4065|4066|4042|4043|4044|4031|4032|4033|4788|4909|4887|5073|5062|5019|5051|5040|5030|5008|4997|4987|4988|4989|4990|4976|4977|4978|4979|4226|4172|4204|4183|4161|4150|4140|4141|4142|4129|4130|4131|5315|5304|5261|5293|5282|5272|5250|5239|5230|5231|5232|5218|5219|5220|5221|8571|8549|8539|8499|8488|8660|8638|8057|8058|8059|8824|8813|8770|8802|8791|8781|8759|8748|8739|8740|8741|8728|8729|8730|8945|8934|8891|8923|8912|8902|8869|8860|8861|8862|8849|8850|8851|9066|9055|9012|9010|9044|9033|9001|8999|8990|8988|8980|8981|8982|8983|8969|8970|8971|8972|8219|8165|8163|8197|8154|8152|8143|8141|8133|8134|8135|8122|8123|8124|9144|9265|12471|12467|12468|12472|12473|12466|12469|12592|12588|12589|12593|12594|12587|12590|12591|11987|11988|11989|12713|12709|12710|12714|12715|12708|12711|12712|12834|12830|12831|12835|12836|12829|12832|12833|12955|12956|12957|12108|12109|12110|13076|13072|13073|13077|13078|13071|13074|13075|13197|13193|13198|13199|9809|9805|9806|9810|9811|9807|9802|9930|9931|9932|9325|9321|9326|9327|10051|10047|10048|10052|10053|10049|10050|10044|10172|10173|10174|10414|10410|10411|10415|10416|10412|10413|10407|10535|10531|10532|10536|10537|10533|10534|13802|13798|13803|13804|13923|13919|13920|13924|13925|13918|13921|13916|13318|13314|13315|13319|13320|13316|14044|14040|14041|14045|14046|14039|14042|14037|14165|14161|14162|14166|14167|14160|14163|14158|14286|14287|14288|13439|13440|13441|14407|14403|14404|14408|14409|14402|14405|14400|14528|14524|14525|14529|14530|14523|14526|11140|11136|11137|11141|11142|11135|11138|11261|11257|11262|11263|10656|10657|10658|11382|11378|11379|11383|11384|11377|11380|11381|11503|11499|11504|11505|11624|11625|11626|10777|10778|10779|11745|11741|11742|11746|11747|11740|11743|11744|11866|11862|11867|11868|5816|5812|5817|5818|5937|5933|5938|5939|6058|6054|6059|6060|6179|6175|6180|6181|6300|6301|6302|5453|5454|5455|6421|6417|6422|6423|492|493|494|613|614|615|734|735|855|856|1097|1098|1099|1218|1219|1220|1823|1819|1824|1825|1944|1940|1945|1946|1339|1340|1341|2065|2061|2062|2066|2067|2060|2063|2186|2182|2187|2188|2307|2308|2309|1460|1461|1462|2428|2424|2425|2429|2430|2423|2426|2549|2545|2550|2551|7253|7252|7251|7250|7242|7241|7239|7202|7198|7199|7203|7204|7197|7200|7196|7201|7195|7231|7230|7229|7228|7220|7219|7217|7213|7209|7210|7214|7215|7208|7211|7207|7212|7206|7191|7187|7188|7192|7193|7186|7189|7185|7190|7184|7180|7176|7177|7181|7182|7175|7178|7174|7179|7173|7169|7165|7166|7170|7171|7164|7167|7162|7158|7154|7155|7159|7160|7153|7156|7151|7374|7373|7372|7371|7363|7362|7361|7360|7323|7319|7320|7324|7325|7318|7321|7317|7322|7316|7352|7351|7350|7349|7341|7340|7339|7338|7334|7330|7331|7335|7336|7329|7332|7328|7333|7327|7312|7308|7309|7313|7314|7310|7311|7305|7301|7297|7298|7302|7303|7296|7299|7295|7300|7294|7290|7286|7287|7291|7292|7285|7288|7289|7283|7279|7275|7276|7280|7281|7274|7277|7278|7272|6773|6769|6770|6774|6775|6768|6771|6767|6772|6766|6762|6758|6759|6763|6764|6757|6760|6756|6761|6755|6718|6714|6715|6719|6720|6713|6716|6717|6751|6747|6748|6752|6753|6746|6749|6745|6750|6744|6740|6736|6737|6741|6742|6735|6738|6734|6739|6733|6729|6725|6726|6730|6731|6724|6727|6728|6707|6703|6704|6708|6709|6702|6705|6706|6696|6692|6693|6697|6698|6691|6694|6695|6685|6681|6682|6686|6687|6683|6684|6674|6670|6671|6675|6676|6672|6673|7495|7494|7493|7492|7484|7483|7482|7481|7444|7440|7441|7445|7446|7439|7442|7438|7443|7437|7473|7472|7471|7470|7462|7461|7460|7459|7455|7451|7452|7456|7457|7453|7454|7448|7433|7429|7430|7434|7435|7428|7431|7427|7432|7426|7422|7418|7419|7423|7424|7417|7420|7416|7421|7415|7411|7407|7408|7412|7413|7406|7409|7410|7404|7400|7396|7397|7401|7402|7395|7398|7399|7393|7616|7615|7614|7613|7605|7604|7603|7602|7565|7561|7562|7566|7567|7560|7563|7559|7564|7558|7594|7593|7592|7591|7583|7582|7581|7580|7576|7572|7573|7577|7578|7574|7575|7569|7554|7550|7551|7555|7556|7552|7553|7547|7543|7539|7540|7544|7545|7538|7541|7537|7542|7536|7532|7528|7529|7533|7534|7527|7530|7531|7525|7521|7517|7518|7522|7523|7516|7519|7520|7514|7737|7736|7734|7726|7725|7723|7686|7682|7683|7687|7688|7684|7685|7715|7714|7712|7704|7703|7701|7697|7693|7694|7698|7699|7695|7696|7675|7671|7672|7676|7677|7673|7674|7664|7660|7661|7665|7666|7662|7663|7653|7654|7655|7642|7643|7644|6890|6889|6887|6879|6878|6876|6839|6835|6836|6840|6841|6837|6838|6868|6867|6865|6857|6856|6854|6850|6846|6847|6851|6852|6848|6849|6828|6824|6825|6829|6830|6826|6827|6817|6813|6814|6818|6819|6815|6816|6806|6807|6808|6795|6796|6797|7858|7857|7856|7855|7847|7846|7845|7844|7807|7803|7804|7808|7809|7802|7805|7801|7806|7800|7836|7835|7834|7833|7825|7824|7823|7822|7818|7814|7815|7819|7820|7813|7816|7812|7817|7811|7796|7792|7793|7797|7798|7791|7794|7790|7795|7789|7785|7781|7782|7786|7787|7780|7783|7779|7784|7778|7774|7770|7771|7775|7776|7769|7772|7773|7767|7763|7759|7760|7764|7765|7758|7761|7762|7756|7979|7978|7977|7976|7968|7967|7966|7965|7928|7924|7925|7929|7930|7923|7926|7922|7927|7921|7957|7956|7955|7954|7946|7945|7944|7943|7939|7935|7936|7940|7941|7934|7937|7933|7938|7932|7917|7913|7914|7918|7919|7912|7915|7911|7916|7910|7906|7902|7903|7907|7908|7901|7904|7900|7905|7899|7895|7891|7892|7896|7897|7890|7893|7894|7884|7880|7881|7885|7886|7879|7882|7883|4591|4590|4589|4588|4580|4579|4577|4540|4536|4537|4541|4542|4535|4538|4534|4539|4533|4569|4568|4567|4566|4558|4557|4555|4551|4547|4548|4552|4553|4546|4549|4545|4550|4544|4529|4525|4526|4530|4531|4524|4527|4523|4528|4522|4518|4514|4515|4519|4520|4513|4516|4512|4517|4511|4507|4503|4504|4508|4509|4502|4505|4496|4492|4493|4497|4498|4491|4494|4712|4711|4710|4709|4701|4700|4699|4698|4661|4657|4658|4662|4663|4656|4659|4655|4660|4654|4690|4689|4688|4687|4679|4678|4677|4676|4672|4668|4669|4673|4674|4667|4670|4666|4671|4665|4650|4646|4647|4651|4652|4648|4649|4643|4639|4635|4636|4640|4641|4634|4637|4633|4638|4632|4628|4624|4625|4629|4630|4623|4626|4627|4617|4613|4614|4618|4619|4612|4615|4616|4111|4107|4108|4112|4113|4109|4110|4100|4096|4097|4101|4102|4098|4099|4056|4052|4057|4058|4089|4085|4086|4090|4091|4087|4088|4078|4074|4075|4079|4080|4076|4077|4067|4063|4068|4069|4045|4041|4046|4047|4034|4030|4035|4036|4023|4024|4025|4012|4013|4014|4833|4832|4831|4830|4822|4821|4820|4819|4782|4778|4779|4783|4784|4777|4780|4776|4781|4775|4811|4810|4809|4808|4800|4799|4798|4797|4793|4789|4790|4794|4795|4791|4792|4786|4771|4767|4768|4772|4773|4766|4769|4765|4770|4764|4760|4756|4757|4761|4762|4755|4758|4754|4759|4753|4749|4745|4746|4750|4751|4744|4747|4748|4738|4734|4735|4739|4740|4733|4736|4737|4954|4953|4952|4951|4943|4942|4941|4940|4903|4899|4900|4904|4905|4898|4901|4897|4902|4896|4932|4931|4930|4929|4921|4920|4919|4918|4914|4910|4911|4915|4916|4912|4913|4907|4892|4888|4889|4893|4894|4890|4891|4885|4881|4877|4878|4882|4883|4876|4879|4875|4880|4874|4870|4866|4867|4871|4872|4865|4868|4869|4859|4855|4856|4860|4861|4854|4857|4858|5075|5074|5072|5064|5063|5061|5024|5020|5021|5025|5026|5022|5023|5053|5052|5050|5042|5041|5039|5035|5031|5032|5036|5037|5033|5034|5013|5009|5010|5014|5015|5011|5012|5002|4998|4999|5003|5004|5000|5001|4991|4992|4993|4980|4981|4982|4228|4227|4225|4217|4216|4214|4177|4173|4174|4178|4179|4175|4176|4206|4205|4203|4195|4194|4192|4188|4184|4185|4189|4190|4186|4187|4166|4162|4163|4167|4168|4164|4165|4155|4151|4152|4156|4157|4153|4154|4144|4145|4146|4133|4134|4135|5196|5195|5194|5193|5185|5184|5183|5182|5145|5141|5142|5146|5147|5140|5143|5139|5144|5138|5174|5173|5172|5171|5163|5162|5161|5160|5156|5152|5153|5157|5158|5151|5154|5150|5155|5149|5134|5130|5131|5135|5136|5129|5132|5128|5133|5127|5123|5119|5120|5124|5125|5118|5121|5117|5122|5116|5112|5108|5109|5113|5114|5107|5110|5111|5101|5097|5098|5102|5103|5096|5099|5100|5317|5316|5306|5305|5266|5262|5263|5267|5268|5264|5265|5295|5294|5284|5283|5277|5273|5274|5278|5279|5275|5276|5255|5251|5252|5256|5257|5253|5254|5244|5240|5241|5245|5246|5242|5243|5233|5229|5234|5235|5222|5223|5224|8584|8583|8582|8581|8573|8572|8570|8533|8529|8530|8534|8535|8528|8531|8527|8532|8526|8562|8561|8560|8559|8551|8550|8548|8544|8540|8541|8545|8546|8542|8543|8537|8522|8518|8519|8523|8524|8517|8520|8516|8521|8515|8511|8507|8508|8512|8513|8506|8509|8505|8510|8504|8500|8496|8497|8501|8502|8495|8498|8493|8489|8485|8486|8490|8491|8484|8487|8482|8705|8704|8703|8702|8694|8693|8692|8691|8654|8650|8651|8655|8656|8649|8652|8648|8653|8647|8683|8682|8681|8680|8672|8671|8670|8669|8665|8661|8662|8666|8667|8663|8664|8658|8643|8639|8640|8644|8645|8641|8642|8636|8632|8628|8629|8633|8634|8627|8630|8626|8631|8625|8621|8617|8618|8622|8623|8616|8619|8620|8614|8610|8606|8607|8611|8612|8605|8608|8609|8603|8104|8100|8101|8105|8106|8099|8102|8098|8103|8097|8093|8089|8090|8094|8095|8088|8091|8087|8092|8086|8049|8045|8046|8050|8051|8044|8047|8048|8082|8078|8079|8083|8084|8077|8080|8076|8081|8075|8071|8067|8068|8072|8073|8066|8069|8065|8070|8064|8060|8056|8061|8062|8038|8034|8035|8039|8040|8033|8036|8037|8027|8023|8024|8028|8029|8022|8025|8026|8016|8012|8013|8017|8018|8014|8015|8005|8001|8002|8006|8007|8003|8004|8826|8825|8823|8815|8814|8812|8775|8771|8772|8776|8777|8773|8774|8768|8804|8803|8801|8793|8792|8790|8786|8782|8783|8787|8788|8784|8785|8779|8764|8760|8761|8765|8766|8762|8763|8757|8753|8749|8750|8754|8755|8751|8752|8746|8742|8738|8743|8744|8731|8727|8732|8733|8947|8946|8944|8936|8935|8933|8896|8892|8893|8897|8898|8894|8895|8889|8925|8924|8922|8914|8913|8911|8907|8903|8904|8908|8909|8905|8906|8900|8885|8881|8882|8886|8887|8883|8884|8878|8874|8870|8871|8875|8876|8872|8873|8867|8863|8859|8864|8865|8852|8848|8853|8854|9068|9067|9065|9057|9056|9054|9017|9013|9014|9018|9019|9015|9016|9046|9045|9043|9035|9034|9032|9028|9024|9025|9029|9030|9026|9027|9006|9002|9003|9007|9008|9004|9005|8995|8991|8992|8996|8997|8993|8994|8984|8985|8986|8973|8974|8975|8221|8220|8218|8210|8209|8207|8170|8166|8167|8171|8172|8168|8169|8199|8198|8196|8188|8187|8185|8181|8177|8178|8182|8183|8179|8180|8159|8155|8156|8160|8161|8157|8158|8148|8144|8145|8149|8150|8146|8147|8137|8138|8139|8126|8127|8128|9189|9188|9187|9186|9178|9177|9176|9175|9138|9134|9135|9139|9140|9133|9136|9132|9137|9131|9167|9166|9165|9164|9156|9155|9154|9153|9149|9145|9146|9150|9151|9147|9148|9142|9127|9123|9124|9128|9129|9122|9125|9121|9126|9120|9116|9112|9113|9117|9118|9111|9114|9110|9115|9109|9105|9101|9102|9106|9107|9100|9103|9104|9098|9094|9090|9091|9095|9096|9089|9092|9093|9087|9310|9309|9308|9307|9299|9298|9297|9296|9259|9255|9256|9260|9261|9254|9257|9253|9258|9252|9288|9287|9286|9285|9277|9276|9275|9274|9270|9266|9267|9271|9272|9268|9269|9263|9248|9244|9245|9249|9250|9243|9246|9242|9247|9241|9237|9233|9234|9238|9239|9232|9235|9231|9236|9230|9226|9222|9223|9227|9228|9221|9224|9225|9215|9211|9212|9216|9217|9210|9213|9214|7003|6981|7124|7102|4341|4319|4462|4440|8334|8312|8455|8433|8348|8337|8326|8315|8469|8458|8447|8436|7012|7013|7014|7001|7002|6990|6991|6992|6979|6980|7133|7134|7135|7122|7123|7111|7112|7113|7100|7101|4350|4351|4352|4339|4340|4328|4329|4330|4317|4318|4471|4472|4473|4460|4461|4449|4450|4451|4438|4439|8343|8344|8345|8332|8333|8321|8322|8323|8310|8311|8464|8465|8466|8453|8454|8442|8443|8444|8431|8432|7015|7016|7017|7004|7005|7006|6993|6994|6995|6982|6983|6984|7136|7137|7138|7125|7126|7127|7114|7115|7116|7103|7104|7105|4353|4354|4355|4342|4343|4344|4331|4332|4333|4320|4321|4322|4474|4475|4476|4463|4464|4465|4452|4453|4454|4441|4442|4443|8346|8347|8335|8336|8324|8325|8313|8314|8467|8468|8456|8457|8445|8446|8434|8435|8216|8194|6882|6860|4220|4198|8213|8191|7729|7707|6893|6883|6880|6884|6885|6881|6871|6861|6858|6862|6863|6859|5067|5045|4231|4221|4218|4222|4223|4219|4209|4199|4196|4200|4201|4197|5309|5287|8579|8557|8818|8796|8939|8917|9074|9063|9060|9052|9041|9038|8227|8224|8214|8211|8215|8212|8205|8202|8192|8189|8193|8190|7245|7223|4583|4561|8576|8554|7256|7246|7243|7247|7248|7244|7234|7224|7221|7225|7226|7222|7366|7344|7501|7490|7487|7479|7468|7465|7622|7611|7608|7600|7589|7586|7741|7738|7742|7743|7739|7740|7730|7727|7731|7732|7728|7719|7716|7720|7721|7717|7718|7708|7705|7709|7710|7706|6894|6891|6895|6896|6892|6872|6869|6873|6874|6870|7850|7828|7971|7949|4594|4584|4581|4585|4586|4582|4572|4562|4559|4563|4564|4560|4704|4682|4839|4828|4825|4817|4806|4803|4960|4949|4946|4938|4927|4924|5079|5076|5080|5081|5077|5078|5068|5065|5069|5070|5066|5057|5054|5058|5059|5055|5056|5046|5043|5047|5048|5044|4232|4229|4233|4234|4230|4210|4207|4211|4212|4208|5188|5166|5321|5318|5322|5323|5319|5320|5310|5307|5311|5312|5308|5299|5296|5300|5301|5297|5298|5288|5285|5289|5290|5286|8590|8587|8577|8574|8578|8575|8568|8565|8555|8552|8556|8553|8711|8700|8697|8689|8678|8675|8830|8827|8831|8832|8828|8829|8819|8816|8820|8821|8817|8808|8805|8809|8810|8806|8807|8797|8794|8798|8799|8795|8951|8948|8952|8953|8949|8950|8940|8937|8941|8942|8938|8929|8926|8930|8931|8927|8928|8918|8915|8919|8920|8916|9072|9069|9073|9070|9071|9061|9058|9062|9059|9050|9047|9051|9048|9049|9039|9036|9040|9037|8225|8222|8226|8223|8203|8200|8204|8201|9195|9184|9181|9173|9162|9159|9316|9305|9302|9294|9283|9280|7257|7254|7258|7259|7255|7235|7232|7236|7237|7233|7378|7375|7379|7380|7376|7377|7367|7364|7368|7369|7365|7356|7353|7357|7358|7354|7355|7345|7342|7346|7347|7343|7499|7496|7500|7497|7498|7488|7485|7489|7486|7477|7474|7478|7475|7476|7466|7463|7467|7464|7620|7617|7621|7618|7619|7609|7606|7610|7607|7598|7595|7599|7596|7597|7587|7584|7588|7585|7862|7859|7863|7864|7860|7861|7851|7848|7852|7853|7849|7840|7837|7841|7842|7838|7839|7829|7826|7830|7831|7827|7983|7980|7984|7985|7981|7982|7972|7969|7973|7974|7970|7961|7958|7962|7963|7959|7960|7950|7947|7951|7952|7948|4595|4592|4596|4597|4593|4573|4570|4574|4575|4571|4716|4713|4717|4718|4714|4715|4705|4702|4706|4707|4703|4694|4691|4695|4696|4692|4693|4683|4680|4684|4685|4681|4837|4834|4838|4835|4836|4826|4823|4827|4824|4815|4812|4816|4813|4814|4804|4801|4805|4802|4958|4955|4959|4956|4957|4947|4944|4948|4945|4936|4933|4937|4934|4935|4925|4922|4926|4923|5200|5197|5201|5202|5198|5199|5189|5186|5190|5191|5187|5178|5175|5179|5180|5176|5177|5167|5164|5168|5169|5165|8588|8585|8589|8586|8566|8563|8567|8564|8709|8706|8710|8707|8708|8698|8695|8699|8696|8687|8684|8688|8685|8686|8676|8673|8677|8674|9193|9190|9194|9191|9192|9182|9179|9183|9180|9171|9168|9172|9169|9170|9160|9157|9161|9158|9314|9311|9315|9312|9313|9303|9300|9304|9301|9292|9289|9293|9290|9291|9281|9278|9282|9279".split_string("\\|");
  631. __hacky_optimal_configuration_order[1]["N/A"]["parts"] = "1464|1475|1453|1486|1497|10781|2311|1706|1508|1519|12112|11628|11023|5457|2806|2784|2795|4126|1827|133|10847|2377|1541|1530|1772|5463|1349|10792|10770|2322|2300|1717|1695|10803|2333|1728|2828|134|132|1465|1463|199|10814|2344|1739|5458|5456|155|12123|12101|11639|11617|11034|11012|5468|5446|4137|4115|12178|5523|2883|2861|4192|980|375|144|122|10869|2399|1563|1552|1794|5474|5452|12134|11650|11045|5479|3675|2839|2850|2817|3070|4148|1849|1409|139|9450|12959|12354|6304|5699|3653|3631|3642|3048|3026|3037|4973|4368|12|166|200|198|1838|1816|9451|9449|12145|10825|10836|5490|2355|2366|1750|1761|4159|11661|11056|156|154|135|167|165|1476|1474|1454|1452|145|143|123|121|221|1860|1360|1338|2014|1371|2256|2559|13443|5469|5467|5447|5445|9329|78|10297|9692|1046|210|441|1487|1485|1466|11694|10858|11089|2388|1783|1013|177|188|408|1002|397|5485|6310|5524|5522|5461|5705|5496|10782|10780|2312|2310|1707|1705|5480|5478|5460|5459|981|979|376|374|991|969|386|364|6305|6303|5700|5698|12200|5545|4214|1382|172|13388|34|1222|1343|12992|12156|12167|12387|11672|11683|11067|11078|6337|5501|5512|5732|5006|4170|4181|4401|1498|1496|150|128|1410|1408|5491|5489|9461|9439|161|12970|12948|12365|12343|6315|6293|5710|5688|4984|4962|4379|4357|9456|986|137|381|9516|9472|222|220|45|136|9462|9460|9440|9438|168|13444|13442|201|9517|9515|10298|10296|9693|9691|1047|1045|211|209|157|442|440|12113|12111|9473|9471|9452|11629|11627|11024|11022|2807|2805|2785|2783|2796|2794|4127|4125|1014|1012|178|176|189|187|146|124|409|407|1948|2190|12981|12376|6326|5721|3686|3697|3664|3081|3092|3059|4995|4390|13025|12189|12420|11705|11100|6370|5534|5465|5462|5765|3730|3708|2894|2872|3125|3103|5039|4203|4434|1871|1882|1431|5826|11210|1904|1893|2135|2498|1651|2619|13454|13432|23|1|9483|9351|10539|13322|10660|1288|10308|10286|9703|9681|1068|232|463|1057|141|138|452|1509|1507|1520|1518|1477|1455|11716|10880|11111|2410|1805|1024|1035|419|430|10319|9714|14290|13685|6788|8119|1344|1342|6321|6299|5546|5544|5472|5450|5716|5694|5507|5518|10793|10791|10771|10769|2323|2321|2301|2299|1718|1716|1696|1694|9484|9482|13465|6338|6336|5502|5500|5513|5511|5471|5470|5449|5448|5733|5731|992|990|970|968|387|385|365|363|1467|6316|6314|6294|6292|5711|5709|5689|5687|89|1244|10787|2317|1468|1470|1712|1003|1001|982|398|396|377|2036|1393|1404|2278|2570|2548|10804|10802|10783|2334|2332|2313|1729|1727|1708|2829|2827|6327|6325|6307|6306|5722|5720|5702|5701|11265|11507|10848|10846|2378|2376|1542|1540|1531|1529|1488|1773|1771|9340|9318|100|1255|9395|11144|1365|2069|2432|1585|2553|1828|1826|158|140|142|183|194|9467|9445|9538|13476|6371|6369|5535|5533|5482|5481|5464|5466|5766|5764|10330|9725|1019|170|414|997|975|148|126|392|370|9494|9505|6308|5703|147|125|169|13|11|562|1008|202|159|403|10732|1426|1413|1415|2581|9453|13455|13453|13433|13431|223|9539|9537|13477|13475|10309|10307|10287|10285|9704|9702|9682|9680|1069|1067|1015|233|231|179|190|464|462|410|10661|10659|12124|12122|12102|12100|9495|9493|9506|9504|9463|9441|11640|11638|11618|11616|11035|11033|11013|11011|4138|4136|4116|4114|1499|12960|12958|12355|12353|10320|10318|10299|9715|9713|9694|14291|14289|13686|13684|1048|212|443|6789|6787|3654|3652|3632|3630|3643|3641|3049|3047|3027|3025|3038|3036|4974|4972|4369|4367|8120|8118|10363|9527|9758|13410|56|67|1233|1211|9362|10303|9454|9698|13003|13014|12398|12409|6348|6359|5743|5754|5017|5028|4412|4423|10815|10813|2345|2343|1740|1738|1052|216|203|205|447|12541|14598|5886|3246|3224|4555|1354|1332|6332|5526|5525|5483|5727|13047|12211|12442|11727|11122|6392|5556|5476|5473|5454|5451|5787|5061|4225|4456|12135|12133|12114|10364|10362|9528|9526|9474|9759|9757|11651|11649|11630|11046|11044|11025|3676|3674|2840|2838|2851|2849|2818|2816|2808|2786|2797|3071|3069|4149|4147|4128|13466|13464|13445|1432|1430|1412|1411|2620|2618|5493|5492|496|617|859|983|378|2592|12118|9478|2812|2790|2801|4132|10666|1970|1347|2212|1472|1469|6343|5494|5738|984|379|84|1079|152|149|130|127|474|163|160|7635|7030|8966|8361|12179|12177|9518|2884|2882|2862|2860|4193|4191|10341|10352|9736|9747|14301|14279|13696|13674|174|171|6799|6777|8130|8108|12475|12596|12838|9406|10561|13344|14532|10682|11386|11749|10902|11870|5820|5941|6183|3169|3147|3158|3290|3268|3279|2707|3532|3510|3521|4489|4610|4852|502|13487|13498|1058|1056|1004|453|451|399|1959|1937|1376|2201|2179|1366|1364|1346|1345|2554|2552|1478|1456|11991|5336|1299|6667|2685|2663|2674|4005|7998|13036|12431|6381|6312|6309|5776|5707|5704|3741|3719|3136|3114|5050|4445|563|561|10331|10329|9726|9724|10798|10776|2328|2306|1479|1481|1457|1459|1723|1701|9489|1025|1023|1036|1034|993|971|420|418|431|429|388|366|10784|2314|1709|10374|9458|9455|9769|14312|13707|6810|8141|5837|5815|988|985|383|380|11232|1926|1915|2157|2520|1673|2641|9485|11662|11660|11057|11055|12146|12144|10826|10824|10837|10835|10794|10772|2356|2354|2367|2365|2324|2302|1751|1749|1762|1760|1719|1697|4160|4158|6376|5540|5527|5529|5771|207|204|18|9330|9328|79|77|6349|6347|6360|6358|6318|6317|6296|6295|5744|5742|5755|5753|5713|5712|5691|5690|10870|10868|2400|2398|1564|1562|1553|1551|1510|1521|1795|1793|9373|9384|10550|10528|13333|13311|10671|10649|1310|497|495|618|616|35|33|14|860|858|1223|1221|10300|9695|1049|213|162|164|444|1016|180|191|151|153|129|131|411|1355|1353|1333|1331|6393|6391|6340|6339|5557|5555|5504|5503|5515|5514|5475|5477|5453|5455|5788|5786|5735|5734|5487|5484|11634|10785|11029|2315|1489|1471|1473|1710|1005|987|989|400|382|384|1030|1041|1017|224|181|192|425|436|412|6319|6297|5714|5692|9464|9442|173|175|14356|13520|13509|13751|6854|8185|12063|5848|5408|2768|2746|4077|111|1266|1277|11695|11693|10859|10857|10805|11090|11088|2389|2387|2335|1784|1782|1730|2830|11997|11287|10664|11529|5342|3312|2691|2669|2680|3554|4011|1417|1414|13806|5887|5885|12971|12969|12949|12947|12366|12364|12344|12342|10342|10340|10353|10351|10310|10288|9737|9735|9748|9746|9705|9683|14302|14300|14280|14278|13697|13695|13675|13673|1070|234|465|6800|6798|6778|6776|4985|4983|4963|4961|4380|4378|4358|4356|8131|8129|8109|8107|10605|11166|10726|1420|1351|1348|2091|2454|1607|2575|3191|10385|9549|9780|14323|13718|6821|8152|1850|1848|1829|5498|5495|10314|10292|9465|9443|9709|9687|12115|9475|9457|9459|11631|11026|2809|2787|2798|4129|1074|238|225|227|469|10683|10681|10663|10662|11871|11869|5821|5819|5942|5940|6184|6182|2708|2706|11992|11990|5337|5335|2686|2684|2664|2662|2675|2673|4006|4004|6382|6380|6329|6328|6311|6313|5777|5775|5724|5723|5706|5708|6354|6365|6341|5548|5547|5505|5516|5749|5760|5736|10572|11276|11254|10693|11518|11496|1500|12993|12991|12157|12155|12168|12166|12125|12103|12388|12386|10386|10384|9550|9548|9496|9507|9781|9779|14324|14322|13719|13717|11673|11671|11684|11682|11641|11619|11068|11066|11079|11077|11036|11014|6822|6820|5007|5005|4171|4169|4182|4180|4139|4117|4402|4400|8153|8151|12982|12980|12961|12377|12375|12356|10375|10373|10321|9770|9768|9716|14313|14311|14292|13708|13706|13687|6811|6809|6790|3687|3685|3698|3696|3665|3663|3655|3633|3644|3082|3080|3093|3091|3060|3058|3050|3028|3039|4996|4994|4975|4391|4389|4370|8142|8140|8121|13488|13486|13499|13497|13456|13434|10301|9696|13446|1063|1050|214|206|208|458|445|9417|13355|11155|11133|1387|1398|2080|2058|2443|2421|1596|1574|2564|2542|1059|454|7636|7634|7031|7029|8967|8965|8362|8360|518|639|881|46|44|738|1101|254|1839|1837|1817|1815|1377|1375|12129|12107|9500|9511|4143|4121|1483|1480|1461|1458|994|972|389|367|995|973|390|368|24|22|2|0|584|1006|401|1021|1018|185|182|196|193|416|413|7646|7624|7041|7019|8977|8955|8372|8350|10809|2339|1490|1492|1734|2834|10754|5859|1448|1435|1437|2603|2614|10816|2346|1741|12201|12199|9540|13478|4215|4213|10672|10670|10650|10648|10849|2379|1543|1532|1774|1080|1078|1026|1037|475|473|421|432|10789|10786|2319|2316|1714|1711|12965|12116|12360|10325|9519|9476|9720|11632|11027|3659|3637|3648|2810|2788|2799|3054|3032|3043|4979|4130|4374|13058|12453|6403|6323|6320|6301|6298|5798|5718|5715|5696|5693|5072|4467|12563|14620|5908|4577|13026|13024|12190|12188|12136|12421|12419|10365|9529|9760|11706|11704|11652|11101|11099|11047|3731|3729|3709|3707|3677|2895|2893|2841|2873|2871|2852|2819|3126|3124|3104|3102|3072|5040|5038|4204|4202|4150|4435|4433|6373|6372|5537|5536|5486|5488|5768|5767|5531|5528|524|1954|2196|10396|9469|9466|9447|9444|9791|14334|14345|13729|13740|7668|6832|6843|7063|8999|8163|8174|8394|10795|10773|2325|2303|1720|1698|16|9819|13328|689|931|1294|14296|13447|13449|13691|6794|8125|13807|13805|564|9486|12013|12717|13080|12233|13201|5358|6062|6425|5578|6546|6689|7877|2718|2729|2696|3411|3389|3400|3774|3752|3763|2927|2905|2916|3895|3873|3884|4027|4731|5094|4247|5215|8020|9208|999|996|977|974|394|391|372|369|1434|1433|2642|2640|10820|2350|1501|1503|1745|1949|1947|2191|2189|9934|10176|623|40|865|1228|507|485|628|606|870|848|229|226|14357|14355|13521|13519|13510|13508|13467|13752|13750|6855|6853|8186|8184|9879|2015|2013|2257|2255|6398|5562|5549|5551|5793|9880|9878|13389|13387|12497|12618|12057|12860|10616|13399|14554|10737|10668|10665|11408|11771|10924|11892|5842|5963|5402|6205|6733|3202|3213|3180|3323|3334|3301|2762|2740|3433|3565|3576|3543|3796|2949|3917|4511|4632|4071|4874|8064|10305|10302|9700|9697|1054|1051|218|215|449|446|7657|7052|8988|8383|519|517|498|640|638|619|90|88|36|882|880|861|1245|1243|1224|11177|10677|10655|1992|2003|1981|1358|1336|2102|2234|2245|2223|2465|1618|2586|9814|9812|9352|9350|9331|10540|10538|13323|13321|684|682|80|926|924|1289|1287|1010|1007|405|402|10727|10725|1421|1419|1368|1367|1350|1352|2576|2574|2556|2555|11331|10688|11573|11876|5947|6189|2025|1369|2267|2557|2713|10332|9727|6330|5725|535|106|5497|5499|15|1861|1859|10311|10289|9706|9684|1071|1020|1022|235|184|186|195|197|466|415|417|12486|12464|12607|12585|12024|12849|12827|9428|10583|10594|13366|13377|14543|14521|10704|10715|11397|11375|11760|11738|10913|10891|11881|11859|5831|5809|5952|5930|5369|6194|6172|6700|4500|4478|4621|4599|4038|4863|4841|8031|11645|11623|10796|10774|11040|11018|2326|2304|1511|1522|1482|1484|1460|1462|1721|1699|6345|6342|5509|5506|5520|5517|5740|5737|10336|9487|9731|10694|10692|513|491|9813|683|925|1027|1038|998|1000|976|978|422|433|393|395|371|373|14378|13542|13531|13773|6876|8207|1416|1418|2622|2621|1388|1386|1399|1397|1357|1356|1335|1334|2565|2563|2543|2541|12002|11980|5347|5325|1321|6678|6656|4016|3994|8009|7987|12147|11717|11715|10881|10879|10827|10838|11112|11110|2411|2409|2357|2368|1806|1804|1752|1763|4161|585|583|11663|11058|10806|10788|10790|2336|2318|2320|1731|1713|1715|2831|12140|10369|9533|9520|9522|9764|2845|2856|2823|4154|1060|1009|1011|455|404|406|12126|12104|9497|9508|9468|9470|9446|9448|11642|11620|11037|11015|4140|4118|9935|9933|10177|10175|1494|1491|529|650|29|7|892|12120|12117|9480|9477|14367|13762|11636|11633|11031|11028|7701|6865|7096|2814|2811|2792|2789|2803|2800|4134|4131|9032|8196|8427|9335|9341|9339|9319|9317|530|528|101|99|47|1256|1254|12180|2885|2863|4194|6404|6402|6351|6350|6362|6361|6322|6324|6300|6302|5799|5797|5746|5745|5757|5756|5717|5719|5695|5697|12962|12357|10322|10304|10306|9717|9699|9701|14293|13688|1053|1055|217|219|448|450|6791|3656|3634|3645|3051|3029|3040|4976|4371|8122|10312|10290|9707|9685|13457|13435|1085|1072|236|228|230|480|467|11266|11264|11508|11506|13004|13002|13015|13013|12972|12950|12399|12397|12410|12408|12367|12345|10397|10395|10343|10354|9792|9790|9738|9749|14335|14333|14346|14344|14303|14281|13730|13728|13741|13739|13698|13676|7669|7667|6833|6831|6844|6842|6801|6779|7064|7062|5018|5016|5029|5027|4986|4964|4413|4411|4424|4422|4381|4359|9000|8998|8164|8162|8175|8173|8132|8110|8395|8393|20|17|760|1123|276|508|506|486|484|629|627|607|605|57|55|68|66|25|3|871|869|849|847|1234|1232|1212|1210|12014|12012|11994|11993|13202|13200|5359|5357|5339|5338|6063|6061|6426|6424|5579|5577|6547|6545|2719|2717|2730|2728|2697|2695|2688|2687|2666|2665|2677|2676|3896|3894|3874|3872|3885|3883|4028|4026|4008|4007|5216|5214|11942|6013|6255|2636|2623|2625|1081|476|7647|7645|7625|7623|7042|7040|7020|7018|8978|8976|8956|8954|8373|8371|8351|8349|13451|13448|10055|10418|9571|573|694|804|936|1167|320|13828|11995|5340|2689|2667|2678|4009|9396|9394|11145|11143|2070|2068|2433|2431|1586|1584|739|737|1102|1100|255|253|1830|12058|12056|10738|10736|10685|10684|10667|10669|11893|11891|11873|11872|5843|5841|5823|5822|5964|5962|5944|5943|5403|5401|6206|6204|6186|6185|2763|2761|2741|2739|2710|2709|3918|3916|4072|4070|1028|1039|423|434|10699|1380|12151|10831|10842|2361|2372|1512|1514|1523|1525|1505|1502|1756|1767|4165|6387|6374|5538|5530|5532|5782|5769|12085|5870|5881|5430|4099|10817|2347|1742|12629|12008|11986|12871|11309|11320|11298|10675|10653|11419|11551|11562|11540|11782|10935|11903|5974|5353|5331|6216|4643|4022|4000|4885|9401|11150|1831|1833|2075|2438|1591|1439|1436|13817|13795|5909|5907|12019|13207|11342|10686|11584|11874|5824|5945|5364|6068|6187|6431|5584|6552|2724|2735|2711|2702|3901|3879|3890|4033|5221|10871|2401|1565|1554|1796|12508|10627|14565|11188|11199|10748|5853|1442|1362|1359|1340|1337|2113|2124|2476|2487|1629|1640|2597|2608|4522|11211|11209|1905|1903|1894|1892|1851|2136|2134|2499|2497|1652|1650|6334|6331|5729|5726|10800|10797|10778|10775|2330|2327|2308|2305|1725|1722|1703|1700|1872|1870|1883|1881|1840|1818|1379|1378|2587|2585|12976|12954|12127|12105|12371|12349|10347|10358|9541|9498|9509|9491|9488|9742|9753|13479|11643|11621|11038|11016|4990|4968|4141|4119|4385|4363|12662|12904|11221|11452|11815|10968|11936|6007|6249|1373|1370|2146|2509|1662|2630|2561|2558|3367|3345|3609|3587|4676|4918|500|621|38|744|863|1107|260|1226|12025|12023|10705|10703|10716|10714|10674|10673|10652|10651|11882|11880|11860|11858|5832|5830|5810|5808|5953|5951|5931|5929|5370|5368|6195|6193|6173|6171|4039|4037|13048|13046|12994|12212|12210|12158|12169|12443|12441|12389|10387|9551|9782|14325|13720|11728|11726|11674|11685|11123|11121|11069|11080|6823|5062|5060|5008|4226|4224|4172|4183|4457|4455|4403|8154|12003|12001|11981|11979|5348|5346|5326|5324|4017|4015|3995|3993|6395|6394|6344|6346|5559|5558|5508|5510|5519|5521|5790|5789|5739|5741|5553|5550|9363|9361|10056|10054|10419|10417|9572|9570|574|572|520|695|693|641|91|805|803|937|935|883|1168|1166|321|319|1300|1298|1246|6668|6666|7999|7997|651|649|893|891|14307|14285|13458|13460|13436|13438|13702|13680|6805|6783|8136|8114|12137|12119|12121|10366|9530|9479|9481|9761|11653|11635|11637|11048|11030|11032|3678|2842|2853|2820|2813|2815|2791|2793|2802|2804|3073|4151|4133|4135|51|499|620|37|19|21|862|1225|9956|9333|10198|645|95|82|887|1250|10333|9728|14379|14377|13543|13541|13532|13530|13489|13500|13774|13772|6877|6875|8208|8206|540|551|661|672|771|903|914|1134|287|10316|10313|10294|10291|9711|9708|9689|9686|1076|1073|240|237|471|468|7679|7690|7074|7085|9010|9021|8405|8416|749|727|1112|1090|265|243|565|1032|1029|1043|1040|427|424|438|435|11696|10860|11091|2390|1785|7658|7656|7637|7053|7051|7032|8989|8987|8968|8384|8382|8363|12476|12474|12597|12595|12839|12837|9836|9834|9815|9407|9405|9353|10562|10560|10541|13928|13926|13345|13343|13324|14170|14168|14533|14531|11387|11385|11750|11748|10903|10901|685|927|1290|3170|3168|3148|3146|3159|3157|3291|3289|3269|3267|3280|3278|3533|3531|3511|3509|3522|3520|4490|4488|4611|4609|4853|4851|9524|9521|12963|12358|10323|9718|14294|13468|13450|13452|13689|7641|6792|7036|3657|3635|3646|3052|3030|3041|4977|4372|8972|8123|8367|11656|10850|10807|11051|2380|2337|1544|1533|1493|1495|1775|1732|3681|2832|3076|13037|13035|12983|12432|12430|12378|10376|9771|14368|14366|14314|13763|13761|13709|7702|7700|6866|6864|6812|7097|7095|3742|3740|3688|3720|3718|3699|3666|3137|3135|3083|3115|3113|3094|3061|5051|5049|4997|4446|4444|4392|9033|9031|8197|8195|8143|8428|8426|9835|13927|14169|5889|5888|6352|6363|5747|5758|9332|81|579|566|568|810|1173|326|13829|13827|13808|761|759|740|1124|1122|1103|277|275|256|1061|456|1971|1969|1950|2213|2211|2192|12068|11999|11996|12739|13102|12255|13223|5413|5344|5341|6084|6447|5600|6568|6744|7899|2773|2751|2693|2690|2671|2668|2682|2679|3444|3455|3422|3807|3818|3785|2960|2971|2938|3928|3939|3906|4082|4013|4010|4753|5116|4269|5237|8075|9230|12148|10828|10839|10799|10801|10777|10779|2358|2369|2329|2331|2307|2309|1753|1764|1724|1726|1702|1704|4162|504|501|625|622|42|39|815|867|864|1178|331|1230|1227|546|557|1965|1943|2207|2185|9490|9492|11664|11059|12162|12173|10391|9555|9542|9544|9786|14329|13480|13482|13724|6827|4176|4187|8158|1082|1031|1033|1042|1044|477|426|428|437|439|27|5|9830|9808|13339|13317|711|953|1316|1516|1513|1527|1524|13818|13816|13796|13794|586|12035|12046|12728|12706|13091|13069|12244|12222|13212|13190|5380|5391|6073|6051|6436|6414|5589|5567|6557|6535|6711|6722|7888|7866|4049|4060|4742|4720|5105|5083|4258|4236|5226|5204|8042|8053|9219|9197|741|1104|257|1960|1958|1938|1936|2202|2200|2180|2178|12131|12128|12109|12106|9502|9499|9513|9510|14389|13784|11647|11644|11625|11622|11042|11039|11020|11017|7723|6887|7118|4145|4142|4123|4120|9054|8218|8449|9945|9923|10187|10165|634|612|62|73|49|876|854|1239|1217|9901|13839|12973|12951|12368|12346|10344|10355|10315|10317|10293|10295|9739|9750|9710|9712|9688|9690|14304|14282|13699|13677|1075|1077|239|241|470|472|6802|6780|4987|4965|4382|4360|8133|8111|1862|2037|2035|2279|2277|12481|9841|13933|13350|14175|14538|3175|3153|3164|4495|9902|9900|13840|13838|13411|13409|10696|10695|11904|11902|5975|5973|6217|6215|10697|12202|4216|12519|12530|12640|12651|12079|12750|12882|12893|13113|12266|13234|10638|13421|14576|14587|10759|10679|10676|10657|10654|11430|11441|11793|11804|10946|10957|11914|11925|5864|5875|5985|5996|5424|6095|6227|6238|6458|5611|6579|6755|7910|4533|4544|4654|4665|4093|4764|4896|4907|5127|4280|5248|8086|9241|6384|6383|6333|6335|5779|5778|5728|5730|541|539|552|550|509|487|662|660|673|671|630|608|112|110|58|69|772|770|904|902|915|913|872|850|1135|1133|288|286|1267|1265|1278|1276|1235|1213|12542|12540|9881|13994|13992|13390|14236|14234|14599|14597|3247|3245|3225|3223|4556|4554|10334|9729|10729|10728|11937|11935|6008|6006|6250|6248|1423|1422|1372|1374|2631|2629|2578|2577|2560|2562|9825|9823|9803|9801|9374|9372|9385|9383|9342|9320|10551|10549|10529|10527|13334|13332|13312|13310|531|706|704|102|948|946|1311|1309|1257|11667|10818|11062|2348|1504|1506|1743|9337|9334|10077|10440|9593|14048|14411|13564|86|83|7151|7272|7514|8482|8603|8845|10749|10747|5854|5852|1443|1441|1390|1389|1401|1400|1361|1363|1339|1341|2598|2596|2609|2607|2567|2566|2545|2544|9957|9955|9936|10199|10197|10178|12030|11353|10710|10721|11595|11887|11865|5958|5936|5375|6200|6178|2047|1391|1402|1384|1381|2289|2568|2546|4044|6378|6375|5542|5539|5773|5770|13462|13459|13440|13437|12552|12673|12783|12915|13146|12299|13267|14609|10690|10687|11463|11826|10979|11947|11878|11875|5897|5828|5825|6018|5949|5946|6128|6260|6191|6188|6491|5644|6612|7943|3257|3235|3378|3356|2715|2712|3488|3466|3620|3598|3851|3829|3004|2982|3972|3950|4566|4687|4797|4929|5160|4313|5281|9274|26|4|13993|14235|1835|1832|13273|5903|5890|5892|6134|6497|5650|6618|3978|3956|5287|48|521|503|505|642|624|626|92|41|43|884|866|868|1247|1229|1231|11700|10864|10851|10853|11095|2394|2381|2383|1545|1547|1534|1536|1789|1776|1778|14318|13469|13471|13713|6816|8147|2627|2624|12987|12181|12138|12382|10380|10367|9531|9523|9525|9775|9762|11654|11049|3692|3703|3679|3670|2886|2843|2864|2854|2821|3087|3098|3074|3065|5001|4195|4152|4396|9824|9802|705|947|9397|10606|10604|11167|11165|11146|2092|2090|2071|2455|2453|2434|1608|1606|1587|3192|3190|12967|12964|12362|12359|10327|10324|9722|9719|14298|14295|13693|13690|7712|6796|6793|7107|3661|3658|3639|3636|3650|3647|3056|3053|3034|3031|3045|3042|4981|4978|4376|4373|9043|8127|8124|8438|1438|1440|2644|2643|13027|12191|12422|11707|11102|3732|3710|2896|2874|3127|3105|5041|4205|4436|6409|6396|5560|5552|5554|5804|5791|10811|10808|2341|2338|1736|1733|2836|2833|1976|2218|10001|9999|10243|10241|11288|11286|11267|11530|11528|11509|3313|3311|3555|3553|9816|9354|9336|9338|10542|13325|686|85|87|928|1291|14358|13522|13511|13753|6856|8187|12069|12067|12016|12015|11998|12000|13224|13222|13204|13203|5414|5412|5361|5360|5343|5345|6085|6083|6065|6064|6448|6446|6428|6427|5601|5599|5581|5580|6569|6567|6549|6548|2774|2772|2721|2720|2752|2750|2732|2731|2699|2698|2692|2694|2670|2672|2681|2683|3929|3927|3940|3938|3907|3905|3898|3897|3876|3875|3887|3886|4083|4081|4030|4029|4012|4014|5238|5236|5218|5217|6356|6353|6367|6364|5751|5748|5762|5759|1065|1062|460|457|10000|9357|10242|10545|9946|9944|9924|9922|10188|10186|10166|10164|652|894|816|814|762|1179|1177|1125|332|330|278|570|567|656|898|9940|10182|10743|10730|11898|5969|6211|1424|2579|3923|9846|9346|9324|1261|12995|12159|12170|12130|12132|12108|12110|12390|10388|9552|9501|9503|9512|9514|9783|14326|13721|11675|11686|11646|11648|11624|11626|11070|11081|11041|11043|11019|11021|6824|5009|4173|4184|4144|4146|4122|4124|4404|8155|12718|12716|13081|13079|12234|12232|10078|10076|10057|10441|10439|10420|9594|9592|9573|14049|14047|14412|14410|13565|13563|575|696|806|938|1169|322|1301|7152|7150|7273|7271|6690|6688|6669|7515|7513|7878|7876|3412|3410|3390|3388|3401|3399|3775|3773|3753|3751|3764|3762|2928|2926|2906|2904|2917|2915|4732|4730|5095|5093|4248|4246|8483|8481|8604|8602|8021|8019|8000|8846|8844|9209|9207|2016|2258|9847|9845|9364|10573|10571|11277|11275|11255|11253|11519|11517|11497|11495|31|28|9|6|782|793|1145|1156|298|309|12036|12034|12047|12045|12005|12004|11983|11982|13213|13211|13191|13189|5381|5379|5392|5390|5350|5349|5328|5327|6074|6072|6052|6050|6437|6435|6415|6413|5590|5588|5568|5566|6558|6556|6536|6534|4050|4048|4061|4059|4019|4018|3997|3996|5227|5225|5205|5203|11964|6035|6277|2658|2645|2647|11718|10882|11113|2412|1807|7680|7678|7691|7689|7648|7626|7075|7073|7086|7084|7043|7021|9011|9009|9022|9020|8979|8957|8406|8404|8417|8415|8374|8352|11665|11060|9546|9543|13484|13481|522|643|93|766|885|1129|282|1248|10066|10044|10429|10407|9582|9560|595|716|53|50|826|958|1189|342|12974|12952|12369|12347|10345|10356|10338|10335|9740|9751|9733|9730|14305|14283|13490|13501|13461|13463|13439|13441|13700|13678|7652|7630|6803|6781|7047|7025|4988|4966|4383|4361|8983|8961|8134|8112|8378|8356|12998|12149|12393|11678|11689|10872|10829|10840|10822|10819|11073|11084|2402|2359|2370|2352|2349|1566|1555|1515|1517|1526|1528|1797|1754|1765|1747|1744|5012|4163|4407|13850|13861|12006|11984|5351|5329|4020|3998|9418|9416|13356|13354|11156|11154|11134|11132|2081|2079|2059|2057|2444|2442|2422|2420|1597|1595|1575|1573|750|748|728|726|1113|1111|1091|1089|266|264|244|242|13059|13057|13005|13016|12454|12452|12400|12411|10398|9793|14390|14388|14336|14347|13785|13783|13731|13742|7724|7722|7670|6888|6886|6834|6845|7119|7117|7065|5073|5071|5019|5030|4468|4466|4414|4425|9055|9053|9001|8219|8217|8165|8176|8450|8448|8396|1841|1819|12080|12078|12027|12026|13235|13233|10760|10758|10707|10706|10718|10717|10678|10680|10656|10658|11915|11913|11926|11924|11884|11883|11862|11861|5865|5863|5876|5874|5834|5833|5812|5811|5986|5984|5997|5995|5955|5954|5933|5932|5425|5423|5372|5371|6096|6094|6228|6226|6239|6237|6197|6196|6175|6174|6459|6457|5612|5610|6580|6578|4094|4092|4041|4040|5249|5247|9852|742|1105|258|12060|12059|13268|13266|10740|10739|10689|10691|11948|11946|11895|11894|11877|11879|5898|5896|5845|5844|5827|5829|6019|6017|5966|5965|5948|5950|5405|5404|6129|6127|6261|6259|6208|6207|6190|6192|6492|6490|5645|5643|6613|6611|2765|2764|2743|2742|2714|2716|3973|3971|3951|3949|3920|3919|4074|4073|5282|5280|1852|1834|1836|9890|10121|10484|9637|13949|14191|9423|13361|11161|11139|1842|1844|1820|1822|2086|2064|2449|2427|1602|1580|12984|12966|12968|12379|12361|12363|10377|10326|10328|9772|9721|9723|14315|14297|14299|13710|13692|13694|6813|6795|6797|3689|3700|3667|3660|3662|3638|3640|3649|3651|3084|3095|3062|3055|3057|3033|3035|3044|3046|4998|4980|4982|4393|4375|4377|8144|8126|8128|12017|13205|5362|6066|6429|5582|6550|2722|2733|2700|3899|3877|3888|4031|5219|13883|13872|14114|14477|13630|7217|8548|746|743|1109|1106|262|259|1083|478|12041|12052|12028|13218|13196|11364|10708|10719|10701|10698|11606|11885|11863|5835|5813|5956|5934|5386|5397|5373|6079|6057|6198|6176|6442|6420|5595|5573|6563|6541|4055|4066|4042|5232|5210|11233|11231|1927|1925|1916|1914|1873|1884|1383|1385|2158|2156|2521|2519|1674|1672|2589|2588|12498|12496|12477|12619|12617|12598|12861|12859|12840|9891|9889|9837|9408|10122|10120|10485|10483|9638|9636|10617|10615|10563|13950|13948|13929|13400|13398|13346|14192|14190|14171|14555|14553|14534|11409|11407|11388|11772|11770|11751|10925|10923|10904|6734|6732|3203|3201|3214|3212|3181|3179|3171|3149|3160|3324|3322|3335|3333|3302|3300|3292|3270|3281|3434|3432|3566|3564|3577|3575|3544|3542|3534|3512|3523|3797|3795|2950|2948|4512|4510|4491|4633|4631|4612|4875|4873|4854|8065|8063|6377|6379|5541|5543|5772|5774|13473|13470|12684|12926|11243|11474|11837|10990|11958|6029|6271|1395|1392|1406|1403|2168|2531|1684|2652|2572|2569|2550|2547|4698|4940|511|489|632|610|60|71|755|733|874|852|1118|1096|271|249|1237|1215|12142|12139|10371|10368|9535|9532|9766|9763|11658|11655|11053|11050|3683|3680|2847|2844|2858|2855|2825|2822|3078|3075|4156|4153|10067|10065|10045|10043|10430|10428|10408|10406|9583|9581|9561|9559|596|594|542|553|717|715|663|674|113|827|825|773|959|957|905|916|1190|1188|1136|343|341|289|1322|1320|1268|1279|6679|6677|6657|6655|8010|8008|7988|7986|11697|10861|10810|10812|11092|1064|1066|459|461|2391|2340|2342|1786|1735|1737|7638|7033|2835|2837|8969|8364|1951|2193|6385|5780|13809|569|571|10855|10852|2385|2382|1549|1546|1538|1535|1780|1777|510|488|631|609|59|70|30|32|8|10|873|851|1236|1214|9978|9989|9967|9344|9322|10088|10220|10231|10209|10451|9604|533|667|678|117|104|777|909|920|1140|293|1272|1283|1259|9817|10011|9355|10061|10253|10424|9577|10543|13326|700|687|942|929|1305|1292|6673|8004|526|523|647|644|97|94|889|886|1252|1249|7393|7756|6909|8724|9087|8240|13031|12195|12182|12184|12426|3736|3714|2900|2887|2889|2878|2865|2867|3131|3109|5045|4209|4196|4198|4440|6406|6405|6355|6357|6366|6368|5801|5800|5750|5752|5761|5763|587|9937|10179|10006|10248|11909|5980|6222|2590|12487|12485|12465|12463|12608|12606|12586|12584|12850|12848|12828|12826|9858|9856|9869|9867|9826|9804|9429|9427|9375|9386|10584|10582|10595|10593|10552|10530|13939|13937|13917|13915|13367|13365|13378|13376|13335|13313|14181|14179|14159|14157|14544|14542|14522|14520|11398|11396|11376|11374|11761|11759|11739|11737|10914|10912|10892|10890|707|949|1312|6701|6699|4501|4499|4479|4477|4622|4620|4600|4598|4864|4862|4842|4840|8032|8030|9398|11147|763|745|747|1126|1108|1110|279|261|263|2072|2435|1588|6400|6397|5564|5561|5795|5792|9857|9868|13938|13916|14180|14158|5911|5910|2626|2628|10337|10339|9732|9734|9343|9321|532|103|52|54|1258|10611|11172|1853|1855|2097|2460|1613|3197|5894|5891|11722|10886|10873|10875|11117|2416|2403|2405|1567|1569|1556|1558|1811|1798|1800|13009|13020|12996|12203|12160|12171|12404|12415|12391|10402|10389|9553|9545|9547|9797|9784|14327|13483|13485|13722|11676|11687|11669|11666|11071|11082|11064|11061|7674|6825|7069|5023|5034|5010|4217|4174|4185|4418|4429|4405|9005|8156|8400|12074|12061|13229|10741|11896|5846|5967|5419|5406|6090|6209|6453|5606|6574|2779|2766|2757|2744|3934|3945|3921|3912|4088|4075|5243|14340|14351|13491|13493|13502|13504|13735|13746|6838|6849|8169|8180|11212|1906|1895|2137|2500|1653|12978|12975|12956|12953|12373|12370|12351|12348|10349|10346|10360|10357|9744|9741|9755|9752|14309|14306|14287|14284|13704|13701|13682|13679|7734|6807|6804|6785|6782|7129|4992|4989|4970|4967|4387|4384|4365|4362|9065|8138|8135|8116|8113|8460|601|588|590|832|1195|348|13851|13849|13862|13860|13819|13797|783|781|794|792|751|729|1146|1144|1157|1155|1114|1092|299|297|310|308|267|245|13049|12213|12444|11729|11124|5063|4227|4458|653|895|11178|11176|1993|1991|2004|2002|1982|1980|1961|1939|2103|2101|2235|2233|2246|2244|2224|2222|2203|2181|2466|2464|1619|1617|12090|12010|12007|11988|11985|12761|12772|13124|13135|12277|12288|13245|13256|5435|5355|5352|5333|5330|6106|6117|6469|6480|5622|5633|6590|6601|6766|7921|7932|4104|4024|4021|4002|3999|4775|4786|5138|5149|4291|4302|5259|5270|8097|9252|9263|12153|12150|10833|10830|10844|10841|2363|2360|2374|2371|1758|1755|1769|1766|4167|4164|10821|10823|2351|2353|1746|1748|11332|11330|11574|11572|2026|2024|1972|2268|2266|2214|12985|12380|10378|9773|14359|14316|13523|13512|13472|13474|13754|13711|7663|6857|6814|7058|3690|3701|3668|3085|3096|3063|4999|4394|8994|8188|8145|8389|11271|11513|1952|2194|515|512|493|490|636|633|614|611|64|61|75|72|837|878|875|856|853|1200|353|1241|1238|1219|1216|1087|1084|482|479|10734|10731|1428|1425|2583|2580|13884|13882|13873|13871|13830|14115|14113|14478|14476|13631|13629|7218|7216|8549|8547|14380|13544|13533|13775|6878|8209|1863|13810|13812|14054|14417|13570|7157|8488|9368|9882|13391|10058|10421|9574|576|525|527|697|646|648|96|98|807|939|888|890|1170|323|1302|1251|1253|6670|8001|9365|752|730|1115|1093|268|246|13028|12192|12141|12143|12423|10370|10372|9534|9536|9765|9767|11708|11657|11659|11103|11052|11054|3733|3711|3682|3684|2897|2846|2848|2875|2857|2859|2824|2826|3128|3106|3077|3079|5042|4206|4155|4157|4437|9821|9818|9359|9356|10132|10495|9648|10547|10544|13330|13327|14070|14433|13586|691|688|933|930|1296|1293|7173|7294|7536|8504|8625|8867|12492|12470|9863|9874|13944|13922|13372|13383|14186|14164|14549|14527|4506|4484|11711|11698|10862|10854|10856|11106|11093|2392|2384|2386|1548|1550|1537|1539|1787|1779|1781|10012|10010|9958|10254|10252|10200|7639|7034|8970|8365|12564|12562|9903|13841|14016|14014|13412|14258|14256|14621|14619|10700|10702|11906|11905|5977|5976|6219|6218|4578|4576|12021|12018|12794|13157|12310|13278|13209|13206|5366|5363|6139|6070|6067|6502|6433|6430|5655|5586|5583|6623|6554|6551|7954|2726|2723|2737|2734|2704|2701|3499|3477|3862|3840|3015|2993|3983|3961|3903|3900|3881|3878|3892|3889|4035|4032|4808|5171|4324|5292|5223|5220|9285|10751|10750|11959|11957|5856|5855|6030|6028|6272|6270|1445|1444|1394|1396|1405|1407|2653|2651|2600|2599|2611|2610|2571|2573|2549|2551|11268|11510|9348|9345|9326|9323|10099|10110|10462|10473|9615|9626|14059|14037|14422|14400|13575|13553|537|534|108|105|1263|1260|7162|7140|7283|7261|7525|7503|8493|8471|8614|8592|8856|8834|9979|9977|9990|9988|9968|9966|9947|9925|10089|10087|10221|10219|10232|10230|10210|10208|10189|10167|10452|10450|9605|9603|6389|6386|5784|5781|9938|10180|12574|12695|12032|12029|12805|12937|13168|12321|13289|14631|10712|10709|10723|10720|11485|11848|11001|11969|11889|11886|11867|11864|5919|5839|5836|5817|5814|6040|5960|5957|5938|5935|5377|5374|6150|6282|6202|6199|6180|6177|6513|5666|6634|7965|4588|4709|4046|4043|4819|4951|5182|4335|5303|9296|13038|12433|14369|13764|7703|6867|7098|3743|3721|3138|3116|5052|4447|9034|8198|8429|654|896|14015|14257|1846|1843|1824|1821|13295|5925|5912|5914|6156|6519|5672|6640|5309|543|554|514|516|492|494|664|675|635|637|613|615|114|63|65|74|76|774|906|917|877|879|855|857|1137|290|1269|1280|1240|1242|1218|1220|2649|2646|12509|12507|9419|10628|10626|13357|14566|14564|11189|11187|11200|11198|11157|11135|2114|2112|2125|2123|2082|2060|2477|2475|2488|2486|2445|2423|1630|1628|1641|1639|1598|1576|4523|4521|13006|13017|12977|12979|12955|12957|12401|12412|12372|12374|12350|12352|10399|10348|10350|10359|10361|9794|9743|9745|9754|9756|14337|14348|14308|14310|14286|14288|13732|13743|13703|13705|13681|13683|7671|6835|6846|6806|6808|6784|6786|7066|5020|5031|4991|4993|4969|4971|4415|4426|4386|4388|4364|4366|9002|8166|8177|8137|8139|8115|8117|8397|12186|12183|2891|2888|2869|2866|4200|4197|11668|11670|11063|11065|11183|1864|1866|1998|2009|1987|2108|2240|2251|2229|2471|1624|12630|12628|12872|12870|9848|10023|10021|10265|10263|10574|13961|13959|14203|14201|11310|11308|11321|11319|11299|11297|11278|11256|11420|11418|11552|11550|11563|11561|11541|11539|11520|11498|11783|11781|10936|10934|4644|4642|4886|4884|9827|9805|9376|9387|9347|9349|9325|9327|10553|10531|13336|13314|536|538|708|107|109|950|1313|1262|1264|11907|5978|6220|12091|12089|12038|12037|12049|12048|12009|12011|11987|11989|13246|13244|13257|13255|13215|13214|13193|13192|5436|5434|5383|5382|5394|5393|5354|5356|5332|5334|6107|6105|6118|6116|6076|6075|6054|6053|6470|6468|6481|6479|6439|6438|6417|6416|5623|5621|5634|5632|5592|5591|5570|5569|6591|6589|6602|6600|6560|6559|6538|6537|4105|4103|4052|4051|4063|4062|4023|4025|4001|4003|5260|5258|5271|5269|5229|5228|5207|5206|6399|6401|5563|5565|5794|5796|12503|9896|9883|9885|10127|10490|9643|13955|13405|13392|13394|14197|14560|6739|3208|3219|3186|4517|8070|13495|13492|13506|13503|10022|9379|9390|10264|10556|10534|13960|14202|13000|12997|12164|12161|12175|12172|12395|12392|10393|10390|9557|9554|9788|9785|14331|14328|13726|13723|11680|11677|11691|11688|11075|11072|11086|11083|6829|6826|5014|5011|4178|4175|4189|4186|4409|4406|8160|8157|12543|13995|14237|14600|3248|3226|4557|12152|12154|11719|10883|10832|10834|10843|10845|11114|1086|1088|481|483|2413|2362|2364|2373|2375|1808|1757|1759|1768|1770|7649|7627|7044|7022|4166|4168|8980|8958|8375|8353|12478|12599|12841|9838|9820|9822|9409|9358|9360|10564|10546|10548|13930|13347|13329|13331|14172|14535|11389|11752|10905|690|692|932|934|1295|1297|3172|3150|3161|3293|3271|3282|3535|3513|3524|4492|4613|4855|838|836|784|795|1201|1199|1147|1158|354|352|300|311|592|589|9951|9929|9366|10193|10171|12989|12986|12384|12381|10382|10379|9777|9774|14320|14317|13715|13712|6818|6815|3694|3691|3705|3702|3672|3669|3089|3086|3100|3097|3067|3064|5003|5000|4398|4395|8149|8146|13240|10765|10752|11920|11931|5857|5991|6002|6101|6233|6244|6464|5617|6585|1446|2601|2612|2594|2591|5254|7713|7711|7659|7108|7106|7054|9044|9042|8990|8439|8437|8385|10002|10244|11343|11341|11289|11585|11583|11531|3314|3556|12729|12727|12707|12705|13092|13090|13070|13068|12245|12243|12223|12221|10100|10098|10111|10109|10068|10046|10463|10461|10474|10472|10431|10409|9616|9614|9627|9625|9584|9562|14060|14058|14038|14036|14423|14421|14401|14399|13576|13574|13554|13552|597|718|828|960|1191|344|1323|7163|7161|7141|7139|7284|7282|7262|7260|6712|6710|6723|6721|6680|6658|7526|7524|7504|7502|7889|7887|7867|7865|4743|4741|4721|4719|5106|5104|5084|5082|4259|4257|4237|4235|8494|8492|8472|8470|8615|8613|8593|8591|8043|8041|8054|8052|8011|7989|8857|8855|8835|8833|9220|9218|9198|9196|9962|10204|11269|11511|2038|2280|10877|10874|2407|2404|1571|1568|1560|1557|1802|1799|6407|5802|2017|2259|5893|5895|13053|12217|12204|12206|12448|5067|4231|4218|4220|4462|10733|10735|11939|11938|6010|6009|6252|6251|1427|1429|2633|2632|2582|2584|12663|12661|12905|12903|10607|11222|11220|11168|11453|11451|11816|11814|10969|10967|2147|2145|2093|2510|2508|2456|1663|1661|1609|3193|3368|3366|3346|3344|3610|3608|3588|3586|4677|4675|4919|4917|1857|1854|6388|6390|5783|5785|12065|12062|10745|10742|11900|11897|5850|5847|5971|5968|5410|5407|6213|6210|2770|2767|2748|2745|3925|3922|4079|4076|12740|12738|12719|13103|13101|13082|12256|12254|12235|10133|10131|10079|10496|10494|10442|9649|9647|9595|14071|14069|14050|14434|14432|14413|13587|13585|13566|7174|7172|7153|7295|7293|7274|6745|6743|6691|7537|7535|7516|7900|7898|7879|3445|3443|3456|3454|3423|3421|3413|3391|3402|3808|3806|3819|3817|3786|3784|3776|3754|3765|2961|2959|2972|2970|2939|2937|2929|2907|2918|4754|4752|4733|5117|5115|5096|4270|4268|4249|8505|8503|8484|8626|8624|8605|8076|8074|8022|8868|8866|8847|9231|9229|9210|544|555|665|676|658|655|115|788|799|775|907|918|900|897|1151|1162|1138|304|315|291|1270|1281|817|1180|333|7394|7392|7757|7755|6910|6908|8725|8723|9088|9086|8241|8239|12071|12070|12020|12022|13279|13277|13226|13225|13208|13210|5416|5415|5365|5367|6140|6138|6087|6086|6069|6071|6503|6501|6450|6449|6432|6434|5656|5654|5603|5602|5585|5587|6624|6622|6571|6570|6553|6555|2776|2775|2725|2727|2754|2753|2736|2738|2703|2705|3984|3982|3931|3930|3962|3960|3942|3941|3909|3908|3902|3904|3880|3882|3891|3893|4085|4084|4034|4036|5293|5291|5240|5239|5222|5224|13814|13811|753|731|1116|1094|269|247|12082|12081|12031|12033|13290|13288|13237|13236|10762|10761|10711|10713|10722|10724|11970|11968|11917|11916|11928|11927|11888|11890|11866|11868|5920|5918|5867|5866|5878|5877|5838|5840|5816|5818|6041|6039|5988|5987|5999|5998|5959|5961|5937|5939|5427|5426|5376|5378|6151|6149|6098|6097|6283|6281|6230|6229|6241|6240|6201|6203|6179|6181|6514|6512|6461|6460|5667|5665|5614|5613|6635|6633|6582|6581|4096|4095|4045|4047|5304|5302|5251|5250|13042|13029|12193|12185|12187|12437|12424|11709|11104|3747|3734|3725|3712|2898|2890|2892|2876|2868|2870|3142|3129|3120|3107|5056|5043|4207|4199|4201|4451|4438|1874|1885|1845|1847|1823|1825|9912|10143|10506|9659|13971|13982|14081|14213|14224|14444|13597|7184|8515|9942|9939|10059|10184|10181|10422|9575|577|698|821|808|940|1184|1171|337|324|1303|6671|8002|11702|11699|10866|10863|11097|11094|2396|2393|1791|1788|12039|12050|13216|13194|5384|5395|6077|6055|6440|6418|5593|5571|6561|6539|4053|4064|5230|5208|7643|7640|7038|7035|8974|8971|8369|8366|12602|12844|9412|9399|10567|11148|11392|11755|10908|1956|1953|2073|2198|2195|2436|1589|3296|3274|3285|3538|3516|3527|4616|4858|13905|13894|14136|14499|13652|7239|8570|757|754|735|732|1120|1117|1098|1095|273|270|251|248|11337|11579|2031|2018|2020|2273|2260|2262|12520|12518|12531|12529|12488|12466|12641|12639|12652|12650|12609|12587|12751|12749|12883|12881|12894|12892|12851|12829|13114|13112|12267|12265|9913|9911|9859|9870|9430|10144|10142|10507|10505|9660|9658|10639|10637|10585|10596|13972|13970|13983|13981|13940|13918|13422|13420|13368|13379|14082|14080|14214|14212|14225|14223|14182|14160|14445|14443|13598|13596|14577|14575|14588|14586|14545|14523|11431|11429|11442|11440|11399|11377|11794|11792|11805|11803|11762|11740|10947|10945|10958|10956|10915|10893|7185|7183|6756|6754|6702|7911|7909|4534|4532|4545|4543|4502|4480|4655|4653|4666|4664|4623|4601|4765|4763|4897|4895|4908|4906|4865|4843|5128|5126|4281|4279|8516|8514|8087|8085|8033|9242|9240|13007|13018|12402|12413|10400|9795|14381|14338|14349|13545|13534|13494|13496|13505|13507|13776|13733|13744|7685|7696|7672|6879|6836|6847|7080|7091|7067|5021|5032|4416|4427|9016|9027|9003|8210|8167|8178|8411|8422|8398|13039|12988|12990|12434|12383|12385|10381|10383|9776|9778|14370|14319|14321|13765|13714|13716|7704|6868|6817|6819|7099|3744|3693|3695|3722|3704|3706|3671|3673|3139|3088|3090|3117|3099|3101|3066|3068|5053|5002|5004|4448|4397|4399|9035|8199|8148|8150|8430|764|1127|280|1962|1940|2204|2182|13050|12999|13001|12214|12163|12165|12174|12176|12445|12394|12396|10392|10394|9556|9558|9787|9789|14330|14332|13725|13727|11730|11679|11681|11690|11692|11125|11074|11076|11085|11087|6828|6830|5064|5013|5015|4228|4177|4179|4188|4190|4459|4408|4410|8159|8161|13820|13798|591|593|9828|9806|10033|9377|9388|9370|9367|10072|10050|10275|10435|10413|9588|9566|10554|10532|13337|13315|722|709|964|951|1327|1314|7305|6684|6662|7547|8636|8015|7993|8878|11733|11720|10884|10876|10878|11128|11115|2414|2406|2408|1570|1572|1559|1561|1809|1801|1803|548|545|559|556|669|666|680|677|119|116|779|776|911|908|922|919|1142|1139|295|292|1274|1271|1285|1282|7404|7382|7767|7745|6920|6898|8735|8713|9098|9076|8251|8229|7650|7628|7045|7023|8981|8959|8376|8354|9948|9926|10190|10168|657|659|899|901|10028|10270|13966|14208|9420|13358|11158|11136|785|796|756|758|734|736|1148|1159|1119|1121|1097|1099|301|312|272|274|250|252|2083|2061|2446|2424|1599|1577|6411|6408|5806|5803|13060|12455|14391|13786|7725|6889|7120|5074|4469|9056|8220|8451|2648|2650|13831|13813|13815|12514|10633|14571|11194|11205|1875|1877|1886|1888|1868|1865|2119|2130|2482|2493|1635|1646|4528|12072|13227|5417|6088|6451|5604|6572|2777|2755|3932|3943|3910|4086|5241|5916|5913|12096|12083|13251|13262|13238|10763|11918|11929|11911|11908|5868|5879|5989|6000|5982|5979|5441|5428|6112|6123|6099|6231|6242|6224|6221|6475|6486|6462|5628|5639|5615|6596|6607|6583|4110|4097|5265|5276|5252|11953|11940|6024|6011|6266|6253|2634|11234|1928|1917|2159|2522|1675|2593|2595|9887|9884|13396|13393|12553|12551|12499|12674|12672|12620|12784|12782|12916|12914|12862|13147|13145|12300|12298|9892|10123|10486|9639|10618|14005|14003|13951|13401|14247|14245|14193|14610|14608|14556|11464|11462|11410|11827|11825|11773|10980|10978|10926|7339|7337|6735|7581|7579|7944|7942|3258|3256|3204|3236|3234|3215|3182|3379|3377|3325|3357|3355|3336|3303|3489|3487|3467|3465|3435|3621|3619|3567|3599|3597|3578|3545|3852|3850|3830|3828|3798|3005|3003|2983|2981|2951|4567|4565|4513|4688|4686|4634|4798|4796|4930|4928|4876|5161|5159|4314|4312|8670|8668|8066|8912|8910|9275|9273|12064|12066|13270|13269|10744|10746|11950|11949|11899|11901|5900|5899|5849|5851|6021|6020|5970|5972|5409|5411|6131|6130|6263|6262|6212|6214|6494|6493|5647|5646|6615|6614|2769|2771|2747|2749|3975|3974|3953|3952|3924|3926|4078|4080|5284|5283|11213|1907|1896|1856|1858|2138|2501|1654|11701|11703|10865|10867|11096|11098|2395|2397|1790|1792|7660|7642|7644|7055|7037|7039|8991|8973|8975|8386|8368|8370|12208|12205|4222|4219|9959|9941|9943|10201|10183|10185|14373|14360|14362|13524|13526|13513|13515|13768|13755|13757|7707|6871|6858|6860|7102|9038|8202|8189|8191|8433|11179|11354|11352|11596|11594|2048|2046|1994|2005|1983|2104|2290|2288|2236|2247|2225|2467|1620|10578|11282|11260|11524|11502|1963|1941|2205|2183|13033|13030|12197|12194|12428|12425|11713|11710|11108|11105|3738|3735|3716|3713|2902|2899|2880|2877|3133|3130|3111|3108|5047|5044|4211|4208|4442|4439|10756|10753|5861|5858|1450|1447|2605|2602|2616|2613|13906|13904|13895|13893|13852|13863|14137|14135|14500|14498|13653|13651|7240|7238|8571|8569|12479|12600|12723|12842|13086|12239|9839|9410|10083|10446|9599|10565|13931|13348|14173|14536|11273|11270|11390|11515|11512|11753|10906|7278|6695|7520|7883|3173|3151|3162|3294|3272|3283|3417|3395|3406|3536|3514|3525|3780|3758|3769|2933|2911|2922|4493|4614|4737|4856|5100|4253|8609|8026|8851|9214|1973|1955|1957|2215|2197|2199|13821|13823|13799|13801|14065|14043|14428|14406|13581|13559|7168|7146|8499|8477|9904|13842|13413|10069|10047|10432|10410|9585|9563|598|547|549|558|560|719|668|670|679|681|118|120|829|778|780|961|910|912|921|923|1192|1141|1143|345|294|296|1324|1273|1275|1284|1286|6681|6659|8012|7990|7661|7056|8992|8387|10063|10060|10426|10423|9579|9576|581|578|702|699|812|809|944|941|1175|1172|328|325|1307|1304|6675|6672|7415|7778|6931|8006|8003|8746|9109|8262|13011|13008|13022|13019|12406|12403|12417|12414|10404|10401|9799|9796|14342|14339|14353|14350|13737|13734|13748|13745|7676|7673|6840|6837|6851|6848|7071|7068|5025|5022|5036|5033|4420|4417|4431|4428|9007|9004|8171|8168|8182|8179|8402|8399|9832|9829|9810|9807|9381|9378|9392|9389|10154|10517|9670|10558|10555|10536|10533|13341|13338|13319|13316|14092|14103|14455|14466|13608|13619|713|710|955|952|1318|1315|7195|7206|7316|7327|7426|7558|7569|7789|6942|8526|8537|8647|8658|8757|8889|8900|9120|8273|7735|7733|7681|7692|7130|7128|7076|7087|9066|9064|9012|9023|8461|8459|8407|8418|10034|10032|9980|9991|9969|10090|10276|10274|10222|10233|10211|10453|9606|7306|7304|7548|7546|8637|8635|8879|8877|12043|12040|12054|12051|12816|13179|12332|13300|13220|13217|13198|13195|5388|5385|5399|5396|6161|6081|6078|6059|6056|6524|6444|6441|6422|6419|5677|5597|5594|5575|5572|6645|6565|6562|6543|6540|7976|4057|4054|4068|4065|4830|5193|4346|5314|5234|5231|5212|5209|9307|9849|9369|9371|10575|11279|11257|11521|11499|9949|9927|10191|10169|6410|6412|5805|5807|13832|13834|14076|14439|13592|7179|8510|9403|9400|14004|14246|11152|11149|768|765|1131|1128|284|281|2077|2074|2440|2437|1593|1590|7338|7580|8669|8911|7665|7662|7060|7057|8996|8993|8391|8388|10013|10255|9960|10202|12668|12910|11227|11214|11216|11458|11821|10974|1908|1910|1897|1899|2022|2019|2152|2139|2141|2264|2261|2515|2502|2504|1668|1655|1657|3373|3351|3615|3593|4682|4924|13064|13051|12215|12207|12209|12459|12446|11731|11126|5078|5065|4229|4221|4223|4473|4460|13032|13034|12196|12198|12427|12429|11712|11714|11107|11109|3737|3739|3715|3717|2901|2903|2879|2881|3132|3134|3110|3112|5046|5048|4210|4212|4441|4443|13885|13874|14116|14479|13632|7219|8550|11724|11721|10888|10885|11119|11116|2418|2415|1813|1810|7654|7651|7632|7629|7049|7046|7027|7024|8985|8982|8963|8960|8380|8377|8358|8355|7715|7714|7664|7666|7110|7109|7059|7061|9046|9045|8995|8997|8441|8440|8390|8392|12544|9886|9888|13996|13395|13397|14238|14601|3249|3227|4558|14364|14361|13528|13525|13517|13514|13759|13756|6862|6859|8193|8190|12525|12536|9918|9905|9907|10149|10512|9665|13843|13845|13977|13988|13427|13414|13416|14087|14219|14230|14450|13603|14582|14593|7190|6761|4539|4550|8521|8092|12565|14017|14259|14622|11910|11912|5981|5983|6223|6225|4579|12489|12467|12610|12588|12852|12830|9860|9871|9831|9833|9809|9811|9431|9380|9382|9391|9393|10586|10597|10557|10559|10535|10537|13941|13919|13369|13380|13340|13342|13318|13320|14183|14161|14546|14524|11400|11378|11763|11741|10916|10894|712|714|954|956|1317|1319|6703|4503|4481|4624|4602|4866|4844|8034|11333|11575|2027|2269|13061|13010|13012|13021|13023|12456|12405|12407|12416|12418|10403|10405|9798|9800|14392|14341|14343|14352|14354|13787|13736|13738|13747|13749|7726|7675|7677|6890|6839|6841|6850|6852|7121|7070|7072|5075|5024|5026|5035|5037|4470|4419|4421|4430|4432|9057|9006|9008|8221|8170|8172|8181|8183|8452|8401|8403|11293|11535|1974|2216|3318|3560|10003|10245|11290|11272|11274|11532|11514|11516|3315|3557|12631|12873|10024|10266|13962|14204|11365|11363|11311|11322|11300|11421|11607|11605|11553|11564|11542|11784|10937|4645|4887|9850|9984|9995|9973|10094|10226|10237|10215|10457|9610|10576|11280|11258|11522|11500|12076|12073|13231|13228|5421|5418|6092|6089|6455|6452|5608|5605|6576|6573|2781|2778|2759|2756|3936|3933|3947|3944|3914|3911|4090|4087|5245|5242|1867|1869|2039|2281|5915|5917|13284|13271|11951|5901|6022|6145|6132|6264|6508|6495|5661|5648|6629|6616|3989|3976|3967|3954|5298|5285|12720|13083|12236|10080|10062|10064|10443|10425|10427|9596|9578|9580|14051|14414|13567|580|582|701|703|811|813|943|945|1174|1176|327|329|1306|1308|7154|7275|6692|6674|6676|7517|7880|3414|3392|3403|3777|3755|3766|2930|2908|2919|4734|5097|4250|8485|8606|8023|8005|8007|8848|9211|10755|10757|11961|11960|5860|5862|6032|6031|6274|6273|1449|1451|2655|2654|2604|2606|2615|2617|12510|12685|12683|12927|12925|10629|14567|11244|11242|11190|11201|11475|11473|11838|11836|10991|10989|2169|2167|2115|2126|2532|2530|2478|2489|1685|1683|1631|1642|4524|4699|4697|4941|4939|1879|1876|1890|1887|12087|12084|13242|13239|10767|10764|11922|11919|11933|11930|5872|5869|5883|5880|5993|5990|6004|6001|5432|5429|6103|6100|6235|6232|6246|6243|6466|6463|5619|5616|6587|6584|4101|4098|5256|5253|12762|12760|12773|12771|12730|12708|13125|13123|13136|13134|13093|13071|12278|12276|12289|12287|12246|12224|10155|10153|10101|10112|10518|10516|10464|10475|9671|9669|9617|9628|14093|14091|14104|14102|14061|14039|14456|14454|14467|14465|14424|14402|13609|13607|13620|13618|13577|13555|7196|7194|7207|7205|7164|7142|7317|7315|7328|7326|7285|7263|6767|6765|6713|6724|7427|7425|7559|7557|7570|7568|7527|7505|7790|7788|6943|6941|7922|7920|7933|7931|7890|7868|4776|4774|4787|4785|4744|4722|5139|5137|5150|5148|5107|5085|4292|4290|4303|4301|4260|4238|8527|8525|8538|8536|8495|8473|8648|8646|8659|8657|8616|8594|8098|8096|8044|8055|8758|8756|8890|8888|8901|8899|8858|8836|9121|9119|8274|8272|9253|9251|9264|9262|9221|9199|839|1202|355|7405|7403|7383|7381|7768|7766|7746|7744|6921|6919|6899|6897|8736|8734|8714|8712|9099|9097|9077|9075|8252|8250|8230|8228|12093|12092|12042|12044|12053|12055|13301|13299|13248|13247|13259|13258|13219|13221|13197|13199|5438|5437|5387|5389|5398|5400|6162|6160|6109|6108|6120|6119|6080|6082|6058|6060|6525|6523|6472|6471|6483|6482|6443|6445|6421|6423|5678|5676|5625|5624|5636|5635|5596|5598|5574|5576|6646|6644|6593|6592|6604|6603|6564|6566|6542|6544|4107|4106|4056|4058|4067|4069|5315|5313|5262|5261|5273|5272|5233|5235|5211|5213|2021|2023|2263|2265|13825|13822|13803|13800|13040|12435|14371|14363|14365|13527|13529|13516|13518|13766|13758|13760|7718|7705|6869|6861|6863|7113|7100|3745|3723|3140|3118|5054|4449|9049|9036|8200|8192|8194|8444|8431|11944|11941|6015|6012|6257|6254|2638|2635|9953|9950|9931|9928|10070|10048|10195|10192|10173|10170|10433|10411|9586|9564|599|720|843|830|962|1206|1193|359|346|1325|6682|6660|8013|7991|12613|12591|12855|12833|9434|9421|10589|10600|13359|11159|11137|11403|11381|11766|11744|10919|10897|1967|1964|1945|1942|2084|2062|2209|2206|2187|2184|2447|2425|1600|1578|6706|4627|4605|4869|4847|8037|12483|12480|12604|12601|12846|12843|9843|9840|9414|9411|10569|10566|13935|13932|13352|13349|14125|14177|14174|14488|13641|14540|14537|11394|11391|11757|11754|10910|10907|7228|7349|7459|7591|7822|6975|3177|3174|3155|3152|3166|3163|3298|3295|3276|3273|3287|3284|3540|3537|3518|3515|3529|3526|4497|4494|4618|4615|4860|4857|8559|8680|8790|8922|9153|8306|14395|14382|14384|13546|13548|13535|13537|13790|13777|13779|7729|6893|6880|6882|7124|9060|8224|8211|8213|8455|11723|11725|10887|10889|11118|11120|2417|2419|1812|1814|7682|7693|7653|7655|7631|7633|7077|7088|7048|7050|7026|7028|9013|9024|8984|8986|8962|8964|8408|8419|8379|8381|8357|8359|11359|11601|2053|2040|2042|2295|2282|2284|10017|10004|10259|10246|11291|11533|3316|3558|13055|13052|12219|12216|12450|12447|11735|11732|11130|11127|5069|5066|4233|4230|4464|4461|11344|11586|786|797|1149|1160|302|313|13836|13833|9402|9404|10608|11169|11151|11153|818|767|769|1181|1130|1132|334|283|285|2094|2076|2078|2457|2439|2441|1610|1592|1594|3194|12721|13084|12237|9964|9961|10081|10206|10203|10444|9597|14052|14415|13568|7155|7276|6693|7399|7518|7762|6915|7881|3415|3393|3404|3778|3756|3767|2931|2909|2920|4735|5098|4251|8486|8607|8024|8730|8849|9093|8246|9212|7683|7694|7078|7089|9014|9025|8409|8420|12795|12793|12741|13158|13156|13104|12311|12309|12257|10134|10497|9650|14126|14124|14072|14489|14487|14435|13642|13640|13588|7229|7227|7175|7350|7348|7296|6746|7460|7458|7592|7590|7538|7823|7821|6976|6974|7955|7953|7901|3500|3498|3446|3478|3476|3457|3424|3863|3861|3809|3841|3839|3820|3787|3016|3014|2962|2994|2992|2973|2940|4809|4807|4755|5172|5170|5118|4325|4323|4271|8560|8558|8506|8681|8679|8627|8077|8791|8789|8923|8921|8869|9154|9152|8307|8305|9286|9284|9232|12075|12077|13281|13280|13230|13232|5420|5422|6142|6141|6091|6093|6505|6504|6454|6456|5658|5657|5607|5609|6626|6625|6575|6577|2780|2782|2758|2760|3986|3985|3935|3937|3964|3963|3946|3948|3913|3915|4089|4091|5295|5294|5244|5246|13044|13041|12439|12436|14375|14372|13770|13767|7709|7706|6873|6870|7104|7101|3749|3746|3727|3724|3144|3141|3122|3119|5058|5055|4453|4450|9040|9037|8204|8201|8435|8432|11218|11215|1912|1909|1901|1898|2143|2140|2506|2503|1659|1656|12558|12545|12547|12789|13152|12305|14010|13997|13999|14252|14239|14241|14615|14602|14604|7344|7586|7949|3263|3250|3252|3241|3228|3230|3494|3472|3857|3835|3010|2988|4572|4559|4561|4803|5166|4319|8675|8917|9280|13853|13864|13824|13826|13802|13804|12094|13249|13260|5439|6110|6121|6473|6484|5626|5637|6594|6605|4108|5263|5274|11975|11962|6046|6033|6288|6275|2656|9909|9906|13847|13844|13418|13415|7687|7684|7698|7695|7082|7079|7093|7090|9018|9015|9029|9026|8413|8410|8424|8421|12624|12866|10622|10609|11170|11414|11777|10930|1978|1975|2095|2220|2217|2458|1611|3195|3329|3340|3307|3439|3571|3582|3549|3802|2955|4638|4880|12575|12573|12521|12532|12696|12694|12642|12653|12806|12804|12752|12938|12936|12884|12895|13169|13167|13115|12322|12320|12268|9914|10145|10508|9661|10640|14027|14025|13973|13984|13423|14083|14269|14267|14215|14226|14446|13599|14632|14630|14578|14589|11486|11484|11432|11443|11849|11847|11795|11806|11002|11000|10948|10959|7186|7361|7359|6757|7603|7601|7966|7964|7912|4589|4587|4535|4546|4710|4708|4656|4667|4820|4818|4766|4952|4950|4898|4909|5183|5181|5129|4336|4334|4282|8517|8692|8690|8088|8934|8932|9297|9295|9243|12086|12088|13292|13291|13241|13243|10766|10768|11972|11971|11921|11923|11932|11934|5922|5921|5871|5873|5882|5884|6043|6042|5992|5994|6003|6005|5431|5433|6153|6152|6102|6104|6285|6284|6234|6236|6245|6247|6516|6515|6465|6467|5669|5668|5618|5620|6637|6636|6586|6588|4100|4102|5306|5305|5255|5257|819|1182|335|11235|1929|1918|1878|1880|1889|1891|2160|2523|1676|13043|13045|12438|12440|14374|14376|13769|13771|7708|7710|6872|6874|7103|7105|3748|3750|3726|3728|3143|3145|3121|3123|5057|5059|4452|4454|9039|9041|8203|8205|8434|8436|9981|9992|9970|9952|9954|9930|9932|10091|10223|10234|10212|10194|10196|10172|10174|10454|9607|13054|13056|12218|12220|12449|12451|11734|11736|11129|11131|5068|5070|4232|4234|4463|4465|13886|13875|13835|13837|14117|14480|13633|7220|8551|14386|14383|13550|13547|13539|13536|13781|13778|6884|6881|8215|8212|11943|11945|6014|6016|6256|6258|2637|2639|12664|12906|11223|11454|11817|10970|2148|2511|1664|7416|7414|7395|7779|7777|7758|6932|6930|6911|3369|3347|3611|3589|4678|4920|8747|8745|8726|9110|9108|9089|8263|8261|8242|12490|12468|12611|12589|12734|12712|12853|12831|13097|13075|12250|12228|9861|9872|9854|9851|9432|10105|10116|10468|10479|9621|9632|10587|10598|10580|10577|13942|13920|13370|13381|14184|14162|14547|14525|11284|11281|11262|11259|11401|11379|11526|11523|11504|11501|11764|11742|10917|10895|7289|7267|6717|6728|6704|7531|7509|7894|7872|4504|4482|4625|4603|4748|4726|4867|4845|5111|5089|4264|4242|8620|8598|8048|8059|8035|8862|8840|9225|9203|11180|1995|2006|1984|1966|1968|1944|1946|2105|2237|2248|2226|2208|2210|2186|2188|2468|1621|7737|7736|7686|7688|7697|7699|7132|7131|7081|7083|7092|7094|9068|9067|9017|9019|9028|9030|8463|8462|8412|8414|8423|8425|13275|13272|11955|11952|5905|5902|6026|6023|6136|6133|6268|6265|6499|6496|5652|5649|6620|6617|3980|3977|3958|3955|5289|5286|10014|9963|9965|10256|10205|10207|10074|10071|10052|10049|10437|10434|10415|10412|9590|9587|9568|9565|603|600|724|721|834|831|966|963|1197|1194|350|347|1329|1326|6686|6683|6664|6661|7437|7448|7800|7811|6953|6964|8017|8014|7995|7992|8768|8779|9131|9142|8284|8295|12500|12482|12484|12621|12603|12605|12863|12845|12847|9893|9842|9844|9413|9415|10124|10487|9640|10619|10568|10570|13952|13934|13936|13402|13351|13353|14194|14176|14178|14557|14539|14541|11411|11393|11395|11774|11756|11758|10927|10909|10911|6736|3205|3216|3183|3176|3178|3154|3156|3165|3167|3326|3337|3304|3297|3299|3275|3277|3286|3288|3436|3568|3579|3546|3539|3541|3517|3519|3528|3530|3799|2952|4514|4496|4498|4635|4617|4619|4877|4859|4861|8067|11217|11219|1911|1913|1900|1902|2142|2144|2505|2507|1658|1660|12501|12622|12745|12864|13108|12261|9894|10008|10005|10138|10125|10250|10247|10501|10488|9654|9641|10620|13953|13403|14195|14558|11295|11292|11412|11537|11534|11775|10928|7300|6750|6737|7542|7905|3206|3217|3184|3327|3338|3320|3317|3305|3450|3461|3437|3428|3569|3580|3562|3559|3547|3813|3824|3800|3791|2966|2977|2953|2944|4515|4636|4759|4878|5122|4275|8631|8081|8068|8873|9236|10015|10257|13854|13856|13865|13867|14098|14109|14461|14472|13614|13625|7201|7212|8532|8543|9425|9422|14026|13363|13360|14268|11163|11160|11141|11138|790|787|801|798|1153|1150|1164|1161|306|303|317|314|2088|2085|2066|2063|2451|2448|2429|2426|1604|1601|1582|1579|7360|7602|8691|8933|13062|12457|14393|14385|14387|13549|13551|13538|13540|13788|13780|13782|7740|7727|6891|6883|6885|7135|7122|5076|4471|9071|9058|8222|8214|8216|8466|8453|10035|10277|7307|7549|8638|8880|9982|9993|9971|10092|10224|10235|10213|10455|9608|12690|12932|11249|11236|11238|11480|11843|10996|1930|1932|1919|1921|2044|2041|2174|2161|2163|2286|2283|2537|2524|2526|1690|1677|1679|4704|4946|12554|12675|12785|12917|13148|12301|14006|14248|14611|11465|11828|10981|7340|7582|7945|3259|3237|3380|3358|3490|3468|3622|3600|3853|3831|3006|2984|4568|4689|4799|4931|5162|4315|8671|8913|9276|11348|11335|11590|11577|2029|2271|13907|13896|14138|14501|13654|7241|8572|11334|11576|2028|1977|1979|2270|2219|2221|12566|9908|9910|13846|13848|14018|13417|13419|14260|14623|4580|12725|12722|13088|13085|12241|12238|10085|10082|10448|10445|9601|9598|14056|14053|14419|14416|13572|13569|7159|7156|7280|7277|6697|6694|7470|7522|7519|7833|6986|7885|7882|3419|3416|3397|3394|3408|3405|3782|3779|3760|3757|3771|3768|2935|2932|2913|2910|2924|2921|4739|4736|5102|5099|4255|4252|8490|8487|8611|8608|8028|8025|8801|8853|8850|9164|8317|9216|9213|12549|12546|14001|13998|14243|14240|14606|14603|3254|3251|3232|3229|4563|4560|11355|11597|2049|2291|12635|12877|11181|11315|11326|11304|11425|11557|11568|11546|11788|10941|1996|2007|1985|2106|2238|2249|2227|2469|1622|4649|4891|12632|12874|9853|9855|10025|10267|10579|10581|13963|14205|11312|11323|11301|11283|11285|11261|11263|11422|11554|11565|11543|11525|11527|11503|11505|11785|10938|4646|4888|13274|13276|11954|11956|5904|5906|6025|6027|6135|6137|6267|6269|6498|6500|5651|5653|6619|6621|3979|3981|3957|3959|5288|5290|12098|12095|13253|13250|13264|13261|5443|5440|6114|6111|6125|6122|6477|6474|6488|6485|5630|5627|5641|5638|6598|6595|6609|6606|4112|4109|5267|5264|5278|5275|10007|10009|10249|10251|11345|11294|11296|11587|11536|11538|3319|3321|3561|3563|13066|13063|12461|12458|14397|14394|13792|13789|7731|7728|6895|6892|7126|7123|5080|5077|4475|4472|9062|9059|8226|8223|8457|8454|13306|13293|11973|5923|6044|6167|6154|6286|6530|6517|5683|5670|6651|6638|5320|5307|12731|12709|13094|13072|12247|12225|10102|10113|10073|10075|10051|10053|10465|10476|10436|10438|10414|10416|9618|9629|9589|9591|9567|9569|14062|14040|14425|14403|13578|13556|602|604|723|725|833|835|965|967|1196|1198|349|351|1328|1330|7165|7143|7286|7264|6714|6725|6685|6687|6663|6665|7528|7506|7891|7869|4745|4723|5108|5086|4261|4239|8496|8474|8617|8595|8045|8056|8016|8018|7994|7996|8859|8837|9222|9200|2043|2045|2285|2287|13282|6143|6506|5659|6627|3987|3965|5296|12743|13106|12259|10019|10016|10136|10261|10258|10499|9652|14074|14437|13590|7177|7298|6748|7421|7540|7784|6937|7903|3448|3459|3426|3811|3822|3789|2964|2975|2942|4757|5120|4273|8508|8629|8079|8752|8871|9115|8268|9234|11966|11963|6037|6034|6279|6276|2660|2657|13065|13067|12460|12462|14396|14398|13791|13793|7730|7732|6894|6896|7125|7127|5079|5081|4474|4476|9061|9063|8225|8227|8456|8458|12494|12491|12472|12469|12615|12612|12593|12590|12857|12854|12835|12832|9865|9862|9876|9873|9436|9433|10591|10588|10602|10599|13946|13943|13924|13921|13374|13371|13385|13382|14147|14188|14185|14166|14163|14510|13663|14551|14548|14529|14526|11405|11402|11383|11380|11768|11765|11746|11743|10921|10918|10899|10896|7250|7371|6708|6705|7481|7613|7844|6997|4508|4505|4486|4483|4629|4626|4607|4604|4871|4868|4849|4846|8581|8702|8039|8036|8812|8944|9175|8328|12548|12550|14000|14002|14242|14244|14605|14607|3253|3255|3231|3233|4562|4564|12633|12875|10039|10026|10281|10268|13964|14206|11313|11324|11302|11423|11555|11566|11544|11786|10939|7311|7553|4647|4889|8642|8884|12796|12742|12724|12726|13159|13105|13087|13089|12312|12258|12240|12242|10135|10084|10086|10498|10447|10449|9651|9600|9602|10613|10610|14127|14073|14055|14057|14490|14436|14418|14420|13643|13589|13571|13573|11174|11171|823|820|1186|1183|339|336|2099|2096|2462|2459|1615|1612|7230|7176|7158|7160|7351|7297|7279|7281|6747|6696|6698|7461|7593|7539|7521|7523|7824|6977|7956|7902|7884|7886|3199|3196|3501|3447|3479|3458|3425|3418|3420|3396|3398|3407|3409|3864|3810|3842|3821|3788|3781|3783|3759|3761|3770|3772|3017|2963|2995|2974|2941|2934|2936|2912|2914|2923|2925|4810|4756|4738|4740|5173|5119|5101|5103|4326|4272|4254|4256|8561|8507|8489|8491|8682|8628|8610|8612|8078|8027|8029|8792|8924|8870|8852|8854|9155|8308|9287|9233|9215|9217|11366|11608|13858|13855|13869|13866|12679|12666|12921|12908|11225|11339|11336|11469|11456|11581|11578|11832|11819|10985|10972|2033|2030|2150|2275|2272|2513|1666|3384|3371|3362|3349|3626|3613|3604|3591|4693|4680|4935|4922|7397|7760|6913|8728|9091|8244|12511|9424|9426|10630|13362|13364|14568|11191|11202|11162|11164|11140|11142|840|789|791|800|802|1203|1152|1154|1163|1165|356|305|307|316|318|2116|2127|2087|2089|2065|2067|2479|2490|2450|2452|2428|2430|1632|1643|1603|1605|1581|1583|4525|10018|10020|10260|10262|12732|12710|13095|13073|12248|12226|9986|9983|9997|9994|9975|9972|10103|10114|10096|10093|10228|10225|10239|10236|10217|10214|10466|10477|10459|10456|9619|9630|9612|9609|14063|14041|14426|14404|13579|13557|7166|7144|7287|7265|6715|6726|7410|7388|7529|7507|7773|7751|6926|6904|7892|7870|4746|4724|5109|5087|4262|4240|8497|8475|8618|8596|8046|8057|8741|8719|8860|8838|9104|9082|8257|8235|9223|9201|12817|12815|12763|12774|13180|13178|13126|13137|12333|12331|12279|12290|10156|10519|9672|14148|14146|14094|14105|14511|14509|14457|14468|13664|13662|13610|13621|7251|7249|7197|7208|7372|7370|7318|7329|6768|7482|7480|7428|7614|7612|7560|7571|7845|7843|7791|6998|6996|6944|7977|7975|7923|7934|4831|4829|4777|4788|5194|5192|5140|5151|4347|4345|4293|4304|8582|8580|8528|8539|8703|8701|8649|8660|8099|8813|8811|8759|8945|8943|8891|8902|9176|9174|9122|8329|8327|8275|9308|9306|9254|9265|12505|12502|12626|12623|12868|12865|9898|9895|10129|10126|10492|10489|9645|9642|10624|10621|13957|13954|13407|13404|14199|14196|14562|14559|11416|11413|11779|11776|10932|10929|6741|6738|3210|3207|3221|3218|3188|3185|3331|3328|3342|3339|3309|3306|3441|3438|3573|3570|3584|3581|3551|3548|3804|3801|2957|2954|4519|4516|4640|4637|4882|4879|8072|8069|12097|12099|13303|13302|13252|13254|13263|13265|5442|5444|6164|6163|6113|6115|6124|6126|6527|6526|6476|6478|6487|6489|5680|5679|5629|5631|5640|5642|6648|6647|6597|6599|6608|6610|4111|4113|5317|5316|5266|5268|5277|5279|11240|11237|1934|1931|1923|1920|2165|2162|2528|2525|1681|1678|12580|12567|12569|12811|13174|12327|14032|14019|14021|14274|14261|14263|14637|14624|14626|7366|7608|7971|4594|4581|4583|4825|5188|4341|8697|8939|9302|11338|11340|11580|11582|2032|2034|2274|2276|7471|7469|7417|7834|7832|7780|6987|6985|6933|8802|8800|8748|9165|9163|9111|8318|8316|8264|11346|11588|7719|7716|7720|7721|7717|7114|7111|7115|7116|7112|9050|9047|9051|9052|9048|8445|8442|8446|8447|8443|12512|12646|12657|12756|12888|12899|13119|12272|10644|10631|14569|11192|11203|11185|11182|11436|11447|11799|11810|10952|10963|2000|1997|2011|2008|1989|1986|2117|2128|2110|2107|2242|2239|2253|2250|2231|2228|2480|2491|2473|2470|1633|1644|1626|1623|7916|4526|4660|4671|4770|4902|4913|5133|4286|9247|12747|12744|13110|13107|12263|12260|10140|10137|10503|10500|9656|9653|14078|14075|14441|14438|13594|13591|7181|7178|7302|7299|6752|6749|7544|7541|7907|7904|3452|3449|3463|3460|3430|3427|3815|3812|3826|3823|3793|3790|2968|2965|2979|2976|2946|2943|4761|4758|5124|5121|4277|4274|8512|8509|8633|8630|8083|8080|8875|8872|9238|9235|13286|13283|6147|6144|6510|6507|5663|5660|6631|6628|3991|3988|3969|3966|5300|5297|841|1204|357|7419|7782|6935|8750|9113|8266|13908|13897|13857|13859|13868|13870|14139|14502|13655|7242|8573|11965|11967|6036|6038|6278|6280|2659|2661|12686|12928|11245|11476|11839|10992|2170|2533|1686|7438|7436|7449|7447|7406|7384|7801|7799|7812|7810|7769|7747|6954|6952|6965|6963|6922|6900|4700|4942|8769|8767|8780|8778|8737|8715|9132|9130|9143|9141|9100|9078|8285|8283|8296|8294|8253|8231|12555|12504|12506|12676|12669|12665|12670|12671|12667|12625|12627|12797|12786|12746|12748|12918|12911|12907|12912|12913|12909|12867|12869|13160|13149|13109|13111|12313|12302|12262|12264|9897|9899|10139|10141|10128|10130|10502|10504|10491|10493|9655|9657|9644|9646|10623|10625|10612|10614|14007|13956|13958|13406|13408|14128|14077|14079|14249|14198|14200|14491|14440|14442|13644|13593|13595|14612|14561|14563|11228|11224|11229|11230|11226|11173|11175|11466|11459|11455|11460|11461|11457|11415|11417|11829|11822|11818|11823|11824|11820|11778|11780|10982|10975|10971|10976|10977|10973|10931|10933|822|824|1185|1187|338|340|2153|2149|2154|2155|2151|2098|2100|2516|2512|2517|2518|2514|2461|2463|1669|1665|1670|1671|1667|1614|1616|7231|7180|7182|7352|7341|7301|7303|6751|6753|6740|6742|7473|7472|7462|7422|7418|7423|7424|7420|7400|7396|7401|7402|7398|7594|7583|7543|7545|7836|7835|7825|7785|7781|7786|7787|7783|7763|7759|7764|7765|7761|6989|6988|6978|6938|6934|6939|6940|6936|6916|6912|6917|6918|6914|7957|7946|7906|7908|3260|3209|3211|3238|3220|3222|3198|3200|3187|3189|3381|3374|3370|3375|3376|3372|3330|3332|3359|3352|3348|3353|3354|3350|3341|3343|3308|3310|3502|3491|3451|3453|3480|3469|3462|3464|3440|3442|3429|3431|3623|3616|3612|3617|3618|3614|3572|3574|3601|3594|3590|3595|3596|3592|3583|3585|3550|3552|3865|3854|3814|3816|3843|3832|3825|3827|3803|3805|3792|3794|3018|3007|2967|2969|2996|2985|2978|2980|2956|2958|2945|2947|4569|4518|4520|4690|4683|4679|4684|4685|4681|4639|4641|4811|4800|4760|4762|4932|4925|4921|4926|4927|4923|4881|4883|5174|5163|5123|5125|4327|4316|4276|4278|8562|8511|8513|8683|8672|8632|8634|8082|8084|8071|8073|8804|8803|8793|8753|8749|8754|8755|8751|8731|8727|8732|8733|8729|8925|8914|8874|8876|9167|9166|9156|9116|9112|9117|9118|9114|9094|9090|9095|9096|9092|8320|8319|8309|8269|8265|8270|8271|8267|8247|8243|8248|8249|8245|9288|9277|9237|9239|13297|13294|11977|11974|5927|5924|6048|6045|6158|6155|6290|6287|6521|6518|5674|5671|6642|6639|5311|5308|10036|9985|9987|9996|9998|9974|9976|10095|10097|10278|10227|10229|10238|10240|10216|10218|10458|10460|9611|9613|7308|7550|8639|8881|12522|12533|12493|12495|12471|12473|12643|12654|12614|12616|12592|12594|12753|12885|12896|12856|12858|12834|12836|13116|12269|9915|9864|9866|9875|9877|9435|9437|10146|10509|9662|10641|10590|10592|10601|10603|13974|13985|13945|13947|13923|13925|13424|13373|13375|13384|13386|14084|14216|14227|14187|14189|14165|14167|14447|13600|14579|14590|14550|14552|14528|14530|11433|11444|11404|11406|11382|11384|11796|11807|11767|11769|11745|11747|10949|10960|10920|10922|10898|10900|7187|6758|6707|6709|7913|4536|4547|4507|4509|4485|4487|4657|4668|4628|4630|4606|4608|4767|4899|4910|4870|4872|4848|4850|5130|4283|8518|8089|8038|8040|9244|13887|13889|13876|13878|14131|14118|14120|14494|14481|14483|13647|13634|13636|7234|7221|7223|7465|7828|6981|8565|8552|8554|8796|9159|8312|11239|11241|1933|1935|1922|1924|2164|2166|2527|2529|1680|1682|13285|13287|6146|6148|6509|6511|5662|5664|6630|6632|3990|3992|3968|3970|5299|5301|12523|12534|12644|12655|12637|12634|12767|12778|12754|12886|12897|12879|12876|13130|13141|13117|12283|12294|12270|9916|10030|10027|10160|10147|10272|10269|10523|10510|9676|9663|10642|13975|13986|13968|13965|13425|14085|14217|14228|14210|14207|14448|13601|14580|14591|11317|11314|11328|11325|11306|11303|11434|11445|11427|11424|11559|11556|11570|11567|11548|11545|11797|11808|11790|11787|10950|10961|10943|10940|7188|7322|7333|6772|6759|7432|7564|7575|7795|6948|7927|7938|7914|4537|4548|4658|4669|4651|4648|4781|4792|4768|4900|4911|4893|4890|5144|5155|5131|4297|4308|4284|8519|8653|8664|8103|8090|8763|8895|8906|9126|8279|9258|9269|9245|10037|10279|7309|7551|8640|8882|12576|12697|12807|12939|13170|12323|14028|14270|14633|11487|11850|11003|7362|7604|7967|4590|4711|4821|4953|5184|4337|8693|8935|9298|11370|11357|11612|11599|2051|2293|12556|12677|12800|12787|12919|13163|13150|12316|12303|14008|14250|14613|11350|11347|11467|11592|11589|11830|10983|7355|7342|7597|7584|7960|7947|3261|3239|3382|3360|3505|3492|3483|3470|3624|3602|3868|3855|3846|3833|3021|3008|2999|2986|4570|4691|4814|4801|4933|5177|5164|4330|4317|8686|8673|8928|8915|9291|9278|11184|11186|11356|11598|2050|1999|2001|2010|2012|1988|1990|2109|2111|2292|2241|2243|2252|2254|2230|2232|2472|2474|1625|1627|12736|12733|12714|12711|13099|13096|13077|13074|12252|12249|12230|12227|10107|10104|10118|10115|10470|10467|10481|10478|9623|9620|9634|9631|14067|14064|14045|14042|14430|14427|14408|14405|13583|13580|13561|13558|7170|7167|7148|7145|7291|7288|7269|7266|6719|6716|6730|6727|7492|7533|7530|7511|7508|7855|7008|7896|7893|7874|7871|4750|4747|4728|4725|5113|5110|5091|5088|4266|4263|4244|4241|8501|8498|8479|8476|8622|8619|8600|8597|8050|8047|8061|8058|8823|8864|8861|8842|8839|9186|8339|9227|9224|9205|9202|12571|12568|14023|14020|14265|14262|14628|14625|4585|4582|13296|13298|11976|11978|5926|5928|6047|6049|6157|6159|6289|6291|6520|6522|5673|5675|6641|6643|5310|5312|11349|11351|11591|11593|12636|12638|12878|12880|10029|10031|10271|10273|13967|13969|14209|14211|11367|11316|11318|11327|11329|11305|11307|11426|11428|11609|11558|11560|11569|11571|11547|11549|11789|11791|10942|10944|4650|4652|4892|4894|13891|13888|13880|13877|14122|14119|14485|14482|13638|13635|7225|7222|8556|8553|12559|12560|12561|12557|12680|12681|12682|12678|12790|12791|12792|12788|12922|12923|12924|12920|13153|13154|13155|13151|12306|12307|12308|12304|14011|14012|14013|14009|14253|14254|14255|14251|14616|14617|14618|14614|11470|11471|11472|11468|11833|11834|11835|11831|10986|10987|10988|10984|7345|7346|7347|7343|7587|7588|7589|7585|7950|7951|7952|7948|3264|3265|3266|3262|3242|3243|3244|3240|3385|3386|3387|3383|3363|3364|3365|3361|3495|3496|3497|3493|3473|3474|3475|3471|3627|3628|3629|3625|3605|3606|3607|3603|3858|3859|3860|3856|3836|3837|3838|3834|3011|3012|3013|3009|2989|2990|2991|2987|4573|4574|4575|4571|4694|4695|4696|4692|4804|4805|4806|4802|4936|4937|4938|4934|5167|5168|5169|5165|4320|4321|4322|4318|8676|8677|8678|8674|8918|8919|8920|8916|9281|9282|9283|9279|7741|7738|7742|7743|7739|7136|7133|7137|7138|7134|9072|9069|9073|9074|9070|8467|8464|8468|8469|8465|13304|6165|6528|5681|6649|5318|12765|12776|13128|13139|12281|12292|10041|10038|10158|10283|10280|10521|9674|14096|14107|14459|14470|13612|13623|7199|7210|7320|7331|7313|7310|6770|7443|7454|7430|7562|7573|7555|7552|7806|7817|7793|6959|6970|6946|7925|7936|4779|4790|5142|5153|4295|4306|8530|8541|8651|8662|8644|8641|8101|8774|8785|8761|8893|8904|8886|8883|9137|9148|9124|8290|8301|8277|9256|9267|12570|12572|14022|14024|14264|14266|14627|14629|4584|4586|12516|12513|12818|12764|12775|12735|12737|12713|12715|13181|13127|13138|13098|13100|13076|13078|12334|12280|12291|12251|12253|12229|12231|10157|10106|10108|10117|10119|10520|10469|10471|10480|10482|9673|9622|9624|9633|9635|10635|10632|14149|14095|14106|14066|14068|14044|14046|14512|14458|14469|14429|14431|14407|14409|13665|13611|13622|13582|13584|13560|13562|14573|14570|11196|11193|11207|11204|845|842|1208|1205|361|358|2121|2118|2132|2129|2484|2481|2495|2492|1637|1634|1648|1645|7252|7198|7209|7169|7171|7147|7149|7373|7319|7330|7290|7292|7268|7270|6769|6718|6720|6729|6731|7483|7429|7615|7561|7572|7532|7534|7510|7512|7846|7792|6999|6945|7978|7924|7935|7895|7897|7873|7875|4530|4527|4832|4778|4789|4749|4751|4727|4729|5195|5141|5152|5112|5114|5090|5092|4348|4294|4305|4265|4267|4243|4245|8583|8529|8540|8500|8502|8478|8480|8704|8650|8661|8621|8623|8599|8601|8100|8049|8051|8060|8062|8814|8760|8946|8892|8903|8863|8865|8841|8843|9177|9123|8330|8276|9309|9255|9266|9226|9228|9204|9206|13890|13892|13879|13881|14121|14123|14484|14486|13637|13639|7224|7226|8555|8557|12701|12688|12943|12930|11247|11361|11358|11491|11478|11603|11600|11854|11841|11007|10994|2055|2052|2172|2297|2294|2535|1688|4715|4702|4957|4944|7408|7386|7771|7749|6924|6902|8739|8717|9102|9080|8255|8233|10040|10042|10282|10284|7312|7314|7554|7556|8643|8645|8885|8887|12527|12524|12538|12535|12648|12645|12659|12656|12758|12755|12890|12887|12901|12898|13121|13118|12274|12271|9920|9917|10151|10148|10514|10511|9667|9664|10646|10643|13979|13976|13990|13987|13429|13426|14089|14086|14221|14218|14232|14229|14452|14449|13605|13602|14584|14581|14595|14592|11438|11435|11449|11446|11801|11798|11812|11809|10954|10951|10965|10962|7192|7189|6763|6760|7918|7915|4541|4538|4552|4549|4662|4659|4673|4670|4772|4769|4904|4901|4915|4912|5135|5132|4288|4285|8523|8520|8094|8091|9249|9246|11360|11362|11602|11604|2054|2056|2296|2298|7493|7491|7439|7450|7856|7854|7802|7813|7009|7007|6955|6966|8824|8822|8770|8781|9187|9185|9133|9144|8340|8338|8286|8297|11368|11610|12769|12766|12780|12777|13132|13129|13143|13140|12285|12282|12296|12293|10162|10159|10525|10522|9678|9675|14100|14097|14111|14108|14463|14460|14474|14471|13616|13613|13627|13624|7203|7200|7214|7211|7324|7321|7335|7332|6774|6771|7434|7431|7566|7563|7577|7574|7797|7794|6950|6947|7929|7926|7940|7937|4783|4780|4794|4791|5146|5143|5157|5154|4299|4296|4310|4307|8534|8531|8545|8542|8655|8652|8666|8663|8105|8102|8765|8762|8897|8894|8908|8905|9128|9125|8281|8278|9260|9257|9271|9268|13308|13305|6169|6166|6532|6529|5685|5682|6653|6650|5322|5319|7441|7452|7804|7815|6957|6968|8772|8783|9135|9146|8288|8299|12577|12526|12528|12537|12539|12515|12517|12698|12691|12687|12692|12693|12689|12647|12649|12658|12660|12819|12808|12768|12770|12779|12781|12757|12759|12940|12933|12929|12934|12935|12931|12889|12891|12900|12902|13182|13171|13131|13133|13142|13144|13120|13122|12335|12324|12284|12286|12295|12297|12273|12275|9919|9921|10161|10163|10150|10152|10524|10526|10513|10515|9677|9679|9666|9668|10645|10647|10634|10636|14029|13978|13980|13989|13991|13428|13430|14150|14099|14101|14110|14112|14088|14090|14271|14220|14222|14231|14233|14513|14462|14464|14473|14475|14451|14453|13666|13615|13617|13626|13628|13604|13606|14634|14583|14585|14594|14596|14572|14574|11250|11246|11251|11252|11248|11195|11197|11206|11208|11488|11481|11477|11482|11483|11479|11437|11439|11448|11450|11851|11844|11840|11845|11846|11842|11800|11802|11811|11813|11004|10997|10993|10998|10999|10995|10953|10955|10964|10966|844|846|1207|1209|360|362|2175|2171|2176|2177|2173|2120|2122|2131|2133|2538|2534|2539|2540|2536|2483|2485|2494|2496|1691|1687|1692|1693|1689|1636|1638|1647|1649|7253|7202|7204|7213|7215|7191|7193|7374|7363|7323|7325|7334|7336|6773|6775|6762|6764|7495|7494|7484|7444|7440|7445|7446|7442|7455|7451|7456|7457|7453|7433|7435|7411|7407|7412|7413|7409|7389|7385|7390|7391|7387|7616|7605|7565|7567|7576|7578|7858|7857|7847|7807|7803|7808|7809|7805|7818|7814|7819|7820|7816|7796|7798|7774|7770|7775|7776|7772|7752|7748|7753|7754|7750|7011|7010|7000|6960|6956|6961|6962|6958|6971|6967|6972|6973|6969|6949|6951|6927|6923|6928|6929|6925|6905|6901|6906|6907|6903|7979|7968|7928|7930|7939|7941|7917|7919|4591|4540|4542|4551|4553|4529|4531|4712|4705|4701|4706|4707|4703|4661|4663|4672|4674|4833|4822|4782|4784|4793|4795|4771|4773|4954|4947|4943|4948|4949|4945|4903|4905|4914|4916|5196|5185|5145|5147|5156|5158|5134|5136|4349|4338|4298|4300|4309|4311|4287|4289|8584|8533|8535|8544|8546|8522|8524|8705|8694|8654|8656|8665|8667|8104|8106|8093|8095|8826|8825|8815|8775|8771|8776|8777|8773|8786|8782|8787|8788|8784|8764|8766|8742|8738|8743|8744|8740|8720|8716|8721|8722|8718|8947|8936|8896|8898|8907|8909|9189|9188|9178|9138|9134|9139|9140|9136|9149|9145|9150|9151|9147|9127|9129|9105|9101|9106|9107|9103|9083|9079|9084|9085|9081|8342|8341|8331|8291|8287|8292|8293|8289|8302|8298|8303|8304|8300|8280|8282|8258|8254|8259|8260|8256|8236|8232|8237|8238|8234|9310|9299|9259|9261|9270|9272|9248|9250|13909|13911|13898|13900|14153|14140|14142|14516|14503|14505|13669|13656|13658|7256|7243|7245|7487|7850|7003|8587|8574|8576|8818|9181|8334|13307|13309|6168|6170|6531|6533|5684|5686|6652|6654|5321|5323|12578|12699|12822|12809|12941|13185|13172|12338|12325|14030|14272|14635|11372|11369|11489|11614|11611|11852|11005|7377|7364|7619|7606|7982|7969|4592|4713|4836|4823|4955|5199|5186|4352|4339|8708|8695|8950|8937|9313|9300|11371|11373|11613|11615|13913|13910|13902|13899|14144|14141|14507|14504|13660|13657|7247|7244|8578|8575|12581|12582|12583|12579|12702|12703|12704|12700|12812|12813|12814|12810|12944|12945|12946|12942|13175|13176|13177|13173|12328|12329|12330|12326|14033|14034|14035|14031|14275|14276|14277|14273|14638|14639|14640|14636|11492|11493|11494|11490|11855|11856|11857|11853|11008|11009|11010|11006|7367|7368|7369|7365|7609|7610|7611|7607|7972|7973|7974|7970|4595|4596|4597|4593|4716|4717|4718|4714|4826|4827|4828|4824|4958|4959|4960|4956|5189|5190|5191|5187|4342|4343|4344|4340|8698|8699|8700|8696|8940|8941|8942|8938|9303|9304|9305|9301|12798|13161|12314|14129|14492|13645|7232|7353|7476|7463|7595|7839|7826|6992|6979|7958|3503|3481|3866|3844|3019|2997|4812|5175|4328|8563|8684|8807|8794|8926|9170|9157|8323|8310|9289|12801|12802|12803|12799|13164|13165|13166|13162|12317|12318|12319|12315|14132|14133|14134|14130|14495|14496|14497|14493|13648|13649|13650|13646|7235|7236|7237|7233|7356|7357|7358|7354|7466|7467|7468|7464|7598|7599|7600|7596|7829|7830|7831|7827|6982|6983|6984|6980|7961|7962|7963|7959|3506|3507|3508|3504|3484|3485|3486|3482|3869|3870|3871|3867|3847|3848|3849|3845|3022|3023|3024|3020|3000|3001|3002|2998|4815|4816|4817|4813|5178|5179|5180|5176|4331|4332|4333|4329|8566|8567|8568|8564|8687|8688|8689|8685|8797|8798|8799|8795|8929|8930|8931|8927|9160|9161|9162|9158|8313|8314|8315|8311|9292|9293|9294|9290|13912|13914|13901|13903|14143|14145|14506|14508|13659|13661|7246|7248|8577|8579|12820|13183|12336|14151|14514|13667|7254|7375|7498|7485|7617|7861|7848|7014|7001|7980|4834|5197|4350|8585|8706|8829|8816|8948|9192|9179|8345|8332|9311|12823|12824|12825|12821|13186|13187|13188|13184|12339|12340|12341|12337|14154|14155|14156|14152|14517|14518|14519|14515|13670|13671|13672|13668|7257|7258|7259|7255|7378|7379|7380|7376|7488|7489|7490|7486|7620|7621|7622|7618|7851|7852|7853|7849|7004|7005|7006|7002|7983|7984|7985|7981|4837|4838|4839|4835|5200|5201|5202|5198|4353|4354|4355|4351|8588|8589|8590|8586|8709|8710|8711|8707|8819|8820|8821|8817|8951|8952|8953|8949|9182|9183|9184|9180|8335|8336|8337|8333|9314|9315|9316|9312|7477|7474|7478|7479|7475|7840|7837|7841|7842|7838|6993|6990|6994|6995|6991|8808|8805|8809|8810|8806|9171|9168|9172|9173|9169|8324|8321|8325|8326|8322|7499|7496|7500|7501|7497|7862|7859|7863|7864|7860|7015|7012|7016|7017|7013|8830|8827|8831|8832|8828|9193|9190|9194|9195|9191|8346|8343|8347|8348|8344".split_string("\\|");
  632. __hacky_optimal_configuration_order[3]["hard first, easy second"]["parts"] = "0|242|363|484|605|726|847|968|121|1089|244|1210|365|364|243|970|123|486|485|607|606|4|3|2|1|728|727|849|848|969|122|1091|1090|1212|1211|2663|2662|3993|8712|8833|6655|7986|9317|245|366|367|9318|972|971|125|124|246|3873|9319|488|487|609|608|8|5|9|10|6|7|730|729|851|850|1093|1092|1214|1213|3994|5324|8714|8835|2664|3995|8713|8834|3872|5203|6656|7987|3026|4357|9922|10164|5215|2905|4236|6897|7018|2904|3025|4235|4356|8228|8349|7139|7260|7381|7502|7623|6776|7744|6899|7865|7020|3146|3267|3388|3509|3630|2783|3751|2906|3027|4477|4598|4719|4840|4961|4114|5082|4237|4358|8470|8591|8954|8107|9075|8230|9196|8351|7019|8350|6657|7988|6898|8229|5204|5326|11980|10649|5325|1332|4016|4005|9924|10166|9923|10165|736|857|6534|5688|3631|2784|4962|4115|5567|8715|8836|5214|7996|8716|8837|7625|6778|2665|3632|2785|3874|3996|4963|4116|5205|8956|8109|7624|6777|8955|8108|7866|3147|3268|2666|3389|3510|3752|4478|4599|3997|4720|4841|5083|9197|11979|10648|1331|4015|4004|7755|7876|5093|9086|9207|6900|7021|2907|3028|4238|4359|8231|8352|7022|3029|4360|8353|7141|7262|6658|7383|7504|7746|7867|3148|3269|3390|3511|3753|4479|4600|4721|4842|5084|8472|8593|7989|9077|9198|6901|2908|4239|8232|7140|7261|6659|7382|7503|7745|8471|8592|7990|9076|11253|11495|1936|2178|8052|8734|8723|8855|8844|8359|6293|5446|128|8238|8877|7626|6779|2667|2668|2669|3633|2786|3875|3998|3999|4000|4964|4117|5206|8957|8110|7142|7263|6660|6661|6662|7384|7505|7747|7868|3149|3270|3391|3512|3754|4480|4601|4722|4843|5085|8473|8594|7991|7992|7993|9078|9199|7627|6780|3634|2787|4965|4118|8958|8111|9801|10043|10285|9438|10406|9561|9559|10527|9682|9680|13310|247|248|249|368|369|370|6677|6666|8008|7997|5327|6536|7143|7264|6663|6664|6665|7385|7506|7748|7869|3150|3271|2670|2671|2672|3392|3513|3755|3876|4481|4602|4001|4002|4003|4723|4844|5086|5207|8474|8595|7994|7995|9079|9200|8964|8117|13190|9560|9681|11859|5809|5930|5328|6051|6172|6414|6535|250|251|252|371|372|373|2542|4049|4060|4038|4027|5226|8717|8718|8719|8838|8839|8840|5216|7877|5094|9208|7391|7512|4729|4850|8480|8601|8720|8721|8722|8841|8842|8843|9085|9206|11981|10287|10286|9440|9439|10528|13311|11254|10650|11496|491|976|973|977|978|974|975|129|126|130|131|127|1937|1333|2179|6678|6667|4017|4006|8053|8009|7998|5217|7759|7758|7757|7756|7880|7879|7878|5097|5096|5095|5218|9090|9089|9088|9087|9211|9210|9209|6783|2790|4121|8114|9926|9925|10168|10174|10167|11255|11497|1938|2180|8054|8736|8735|8725|8724|8879|8878|8857|8856|8846|8845|7023|7024|7025|3030|3031|3032|4361|4362|4363|8354|8355|8356|6902|6903|6904|2909|2910|2911|4240|4241|4242|8233|8234|8235|7026|7027|7028|3033|3034|3035|4364|4365|4366|8357|8358|7628|7629|7630|6781|6782|3635|3636|3637|2788|2789|4966|4967|4968|4119|4120|8959|8960|8961|8112|8113|7146|3153|3877|3878|3879|4484|5208|5209|5210|8477|7631|7632|7633|6784|6785|6786|3638|3639|3640|2791|2792|2793|4969|4970|4971|4122|4123|4124|8962|8963|8115|8116|6905|6906|6907|2912|2913|2914|3880|3881|3882|4243|4244|4245|5211|5212|5213|9096|8236|8237|9217|7144|7145|7265|7266|7267|7386|7387|7388|7507|7508|7509|7749|7750|7751|7870|7871|7872|3151|3152|3272|3273|3274|3393|3394|3395|3514|3515|3516|3756|3757|3758|4482|4483|4603|4604|4605|4724|4725|4726|4845|4846|4847|5087|5088|5089|8475|8476|8596|8597|8598|9080|9081|9082|9201|9202|9203|7147|7148|7149|7268|7269|7270|7389|7390|7510|7511|7752|7753|7754|7873|7874|7875|3154|3155|3156|3275|3276|3277|3396|3397|3398|3517|3518|3519|3759|3760|3761|4485|4486|4487|4606|4607|4608|4727|4728|4848|4849|5090|5091|5092|5222|5219|5223|5224|5220|5221|8478|8479|8599|8600|9083|9084|9204|9205|12222|13189|12343|9803|9802|9321|9320|10045|10044|10408|10407|10529|13794|13312|13431|10891|11858|11012|5808|5929|6050|6171|6292|5445|6413|5568|5566|5689|5687|492|489|493|494|490|613|610|614|615|611|612|734|731|735|732|733|855|852|856|853|854|1097|1094|1098|1099|1095|1096|1218|1215|1219|1220|1216|1217|1815|1452|1574|2541|1695|6679|6668|7763|7760|7764|7765|7761|7762|7884|7881|7885|7886|7882|7883|4048|4059|4037|4026|5101|5098|5102|5103|5099|5100|4258|4247|5225|4379|4368|8010|7999|9094|9091|9095|9092|9093|9215|9212|9216|9213|9214|7304|7447|7568|7546|4642|4785|4906|4884|8536|8657|8635|8767|8778|8756|8745|8888|8899|8866|9020|8173|9141|8296|8294|9262|8417|8415|8295|8416|5329|5330|5331|6537|12463|12584|12705|12826|12947|12100|13068|12223|12221|12344|12342|9563|9562|9684|9683|13915|14036|14157|14278|14399|13554|13553|13552|14520|13675|13674|13673|11132|11374|11616|10769|11737|10892|10890|11013|11011|5332|5333|5334|6538|2057|2299|2420|1575|1573|1696|1694|7161|7150|7282|7271|6710|6721|6699|6688|7403|7392|7524|7513|7645|7634|6798|6787|7766|6921|6920|6919|6910|6909|6908|7887|7042|7041|7040|7031|7030|7029|4499|4488|4620|4609|4104|4093|4082|4071|4741|4730|4862|4851|4983|4972|4136|4125|5104|4259|4257|4248|4246|5259|5270|5248|5237|4380|4378|4369|4367|8492|8481|8613|8602|8041|8030|8019|8976|8965|8129|8118|9097|8252|8251|8250|8241|8240|8239|9218|8373|8372|8371|8362|8361|8360|1453|4643|4786|4907|4885|9022|9021|8175|8174|9263|9930|9927|9931|9932|9928|9929|10053|10172|10169|10173|10170|10171|11257|11256|11499|11498|1940|1939|2182|2181|7306|7305|7449|7448|7570|7569|7548|7547|4644|4787|4908|4886|8538|8537|8659|8658|8637|8636|8056|8055|8018|8007|8769|8768|8780|8779|8758|8757|8747|8746|8738|8737|8727|8726|8890|8889|8901|8900|8868|8867|8859|8858|8848|8847|9143|9142|9264|12948|12101|12225|12224|12346|12345|9567|9564|9568|9569|9565|9566|9688|9685|9689|9690|9686|9687|13433|13432|13556|13555|13677|13676|11617|10770|10894|10893|11015|11014|6294|5447|5570|5569|5691|5690|1816|2300|1454|1577|1576|1698|1697|7194|7205|7183|7172|7315|7326|7293|6765|6754|6743|6732|7436|7425|7414|7557|7535|7678|7689|7667|7656|6831|6842|6820|6809|7799|7810|7788|7777|6954|6953|6952|6965|6964|6963|6943|6942|6941|6932|6931|6930|6923|6922|6912|6911|7920|7931|7909|7898|7075|7074|7073|7086|7085|7084|7064|7063|7062|7053|7052|7051|7044|7043|7033|7032|4532|4543|4521|4510|4653|4664|4631|4103|4092|4081|4070|4774|4763|4752|4895|4873|5016|5027|5005|4994|4984|4973|4169|4180|4158|4147|4137|4126|5137|5148|5126|5115|4292|4291|4290|4303|4302|4301|4281|4280|4279|4270|4269|4268|4261|4260|4250|4249|5258|5269|5247|5236|4413|4412|4411|4424|4423|4422|4402|4401|4400|4391|4390|4389|4382|4381|4371|4370|8525|8514|8503|8646|8624|8096|8085|8074|8063|9009|8998|8987|8162|8151|8140|9130|9119|9108|8285|8284|8283|8274|8273|8272|8263|8262|8261|8254|8253|8243|8242|9251|9240|9229|8406|8405|8404|8395|8394|8393|8384|8383|8382|8375|8374|8364|8363|8822|8811|8800|8789|8943|8932|8921|8910|8298|8297|8260|8249|8419|8418|8381|8370|11505|6542|6539|6543|6544|6540|6541|2188|5314|5303|5292|5281|8881|8880|12464|12585|11983|11982|12706|12827|12949|12102|13069|13191|10289|10288|9442|9441|13796|13795|14280|14279|14521|11133|10652|10651|11375|11618|10771|11738|11860|5810|5931|6052|6173|6415|1817|1335|1334|2058|2301|2421|2543|6711|6722|6700|6689|7647|7646|7636|7635|6800|6799|6789|6788|7888|4500|4489|4621|4610|4050|4061|4039|4028|4019|4018|4008|4007|4742|4731|4863|4852|4985|4974|4138|4127|5105|5227|8042|8031|8020|8978|8977|8967|8966|8131|8130|8120|8119|9219|6060|6181|1943|2185|6973|7094|4069|4311|4432|9024|9023|8986|8975|8177|8176|8139|8128|8293|8302|8299|8303|8304|8300|8301|8282|8271|8414|8423|8420|8424|8425|8421|8422|8403|8392|12715|12836|14046|14167|11261|11258|11262|11263|11259|11260|11384|11503|11500|11504|11501|11502|1944|1941|1945|1946|1942|2067|2186|2183|2187|2184|7308|7307|6731|7451|7450|7413|7402|7572|7571|7550|7549|7534|7523|4646|4645|4789|4788|4751|4740|4910|4909|4888|4887|4872|4861|8540|8539|8502|8491|8661|8660|8639|8638|8623|8612|8051|8060|8057|8061|8062|8058|8059|8040|8029|8824|8823|8813|8812|8771|8770|8802|8801|8791|8790|8782|8781|8760|8759|8749|8748|8742|8739|8743|8744|8740|8741|8731|8728|8732|8733|8729|8730|8945|8944|8934|8933|8892|8891|8923|8922|8912|8911|8903|8902|8870|8869|8863|8860|8864|8865|8861|8862|8852|8849|8853|8854|8850|8851|9145|9144|9107|9266|9265|9228".split_string("\\|");
  633. __hacky_optimal_configuration_order[2]["ascend"]["parts"] = "194|2256|557|1519|2196|8125|1882|13499|13497|810|931|1520|1518|208|2278|2257|2255|739|737|860|858|13498|571|230|13452|1473|8186|8184|13862|13860|832|953|1883|1881|2135|14054|14175|2075|8488|1404|2279|2277|2207|2185|738|859|10177|10175|740|861|67|893|891|1277|13861|593|8185|9511|13815|14115|14113|14236|14234|13500|1836|2136|2134|1521|8549|8547|8208|8206|8136|8114|21|761|759|741|882|880|862|1036|1034|189|187|431|429|11507|2190|68|66|750|748|728|726|871|869|849|847|10176|7998|2157|1157|1155|1278|1276|892|10248|5518|2258|2218|2614|760|881|1035|188|430|10178|11508|11506|6063|6061|6184|6182|2191|2189|552|550|673|671|69|783|781|794|792|772|770|751|729|904|902|915|913|872|850|1156|310|308|10188|10186|10166|10164|894|10056|10054|742|743|744|863|864|865|7999|7997|749|727|870|848|551|672|70|32|10|782|793|771|752|730|903|914|873|851|309|989|142|384|14114|14235|13501|13463|13441|1522|1484|1462|8548|8207|2856|8187|8147|9874|13863|13383|14137|14135|14065|14043|14258|14256|14186|14164|1884|2158|2156|2086|2064|8571|8569|8499|8477|8967|8965|8120|8118|8362|8360|9384|10187|10165|895|8009|7987|1158|1279|10055|505|626|816|814|805|803|762|745|746|747|937|935|926|924|883|866|867|868|1037|190|1110|263|1231|432|12717|12838|10199|10197|10179|11386|6062|6183|2069|2730|2728|3400|3521|4731|4852|9208|11518|11496|2201|2179|10270|9525|14208|13474|5881|2009|1418|2108|2280|2240|2259|2251|2229|1506|1495|8188|9385|9383|10067|10065|10045|10043|553|674|71|72|73|838|836|827|825|784|795|773|753|754|755|731|732|733|959|957|948|946|905|916|874|875|876|852|853|854|1159|1121|1099|311|1280|1242|1220|8010|8008|7988|7986|43|815|804|763|936|925|884|1038|1000|978|191|153|131|433|395|373|12173|10127|14116|14076|14237|14197|14351|13502|13503|13504|13746|10842|2137|2097|2372|1523|1524|1525|1767|6849|3219|4187|8550|8510|8070|8209|8169|8180|8158|10066|10044|554|516|494|675|637|615|65|74|75|76|54|837|826|785|796|774|756|757|758|734|735|736|958|947|906|917|877|878|879|855|856|857|312|274|252|12718|12716|12839|12837|10057|14049|14047|14170|14168|11387|11385|2070|2068|7394|7392|7515|7513|3401|3399|3522|3520|4732|4730|4853|4851|8483|8481|8604|8602|8000|8725|8723|8846|8844|9088|9086|8241|8239|9209|9207|13864|13826|13804|14136|14257|1885|1847|1825|8570|12047|12045|9990|9988|10089|10087|10221|10219|10232|10230|10210|10208|10189|10167|10594|10716|10714|11519|11517|11497|11495|5392|5390|6074|6072|6052|6050|6195|6193|6173|6171|896|897|898|1399|1397|2202|2200|2180|2178|4061|4059|9219|9197|8966|8119|8361|14472|14593|2493|10198|2729|3411|3389|3532|3510|8020|6217|6215|11579|6134|6255|2273|2260|2261|2262|2628|9038|8202|8189|8190|8191|8433|11529|2212|3554|9888|9547|13837|13397|14117|14238|13496|13505|13506|13507|13485|1869|1858|1440|2138|2281|1517|1526|1527|1528|8551|8210|9159|9280|10180|10181|10182|11509|6064|6185|2192|3940|3938|12536|10149|13865|13866|13867|13988|14138|14098|14109|14087|14259|14219|14230|13625|11205|1886|1887|1888|2159|2119|2130|1646|7212|4550|8572|8532|8543|8521|8092|10474|10472|10595|10593|1160|1161|1162|1281|1282|1283|9099|9097|9077|9075|9220|9218|9198|9196|12046|12728|12706|12849|12827|9989|10088|10220|10231|10209|10190|10168|13377|10715|11397|11375|5391|6073|6051|6194|6172|659|899|900|901|1398|2080|2058|6722|4060|4742|4720|4863|4841|8042|8053|8031|12789|12910|14131|14118|14119|14120|14252|14239|14240|14241|14486|14607|11458|11601|6156|6277|2152|2139|2140|2141|2295|2282|2283|2284|2507|2650|7465|7586|3494|3472|3615|3593|4803|4924|8565|8552|8553|8554|8675|8796|8917|9060|8224|8211|8212|8213|8312|8455|9338|10078|10076|10058|10353|10351|9506|9504|9748|9746|14048|14169|817|806|764|765|766|938|927|885|886|887|1039|1040|1041|192|193|1132|1253|434|435|436|7393|7514|3412|3410|3390|3388|3533|3531|3511|3509|8482|8603|8021|8019|8001|8724|8845|8978|8976|8956|8954|8131|8129|8109|8107|9087|8240|8373|8371|8351|8349|1011|164|406|12871|11320|11419|11551|11562|11540|6216|2003|2102|2234|2245|2223|4885|9910|13859|13868|13869|13870|13848|13419|14139|14260|1880|1889|1890|1891|2160|8573|9181|9302|12811|12932|14153|14140|14141|14142|14274|14261|14262|14263|14508|14629|11480|2174|2161|2162|2163|2529|7487|7608|4825|4946|8587|8574|8575|8576|8697|8818|8939|8334|13257|13255|11926|11924|6481|6479|6602|6600|2609|2607|5271|5269|12000|9943|10254|10252|10243|10241|10200|10183|10184|10185|10669|11530|11528|11510|5345|6085|6083|6065|6206|6204|6186|6360|6358|5513|5511|5755|5753|1352|2213|2211|2193|2731|2683|3555|3553|3818|3939|4014|9230|12572|12550|12209|12187|13914|13903|13892|13881|14024|14002|14143|14144|14145|14121|14122|14123|14264|14265|14266|14242|14243|14244|14387|14365|13551|13540|13529|13518|13661|13639|13782|13760|11241|11219|10878|10856|5917|5895|5554|5532|1935|1924|1913|1902|2045|2023|2164|2165|2166|2142|2143|2144|2285|2286|2287|2263|2264|2265|2408|2386|1572|1561|1550|1539|1682|1660|1803|1781|7248|7226|6885|6863|3255|3233|2892|2870|4586|4564|4223|4201|8577|8578|8579|8555|8556|8557|8214|8215|8216|8192|8193|8194|3697|2850|3092|8968|8121|8363|12729|12727|12707|12705|12850|12848|12828|12826|9869|9867|9386|10100|10098|10111|10109|10068|10046|10473|9627|9625|13378|13376|14060|14058|14038|14036|14181|14179|14159|14157|11398|11396|11376|11374|555|556|676|677|678|839|828|786|787|788|797|798|799|775|776|777|960|949|907|908|909|918|919|920|1154|1163|1164|1165|1143|313|314|315|1275|1284|1285|1286|1264|2081|2079|2059|2057|6723|6721|7405|7403|7383|7381|7526|7524|7504|7502|4743|4741|4721|4719|4864|4862|4842|4840|8494|8492|8472|8470|8615|8613|8593|8591|8043|8041|8054|8052|8032|8030|8011|7989|8736|8734|8714|8712|8857|8855|8835|8833|9098|9076|8252|8250|8230|8228|10077|10352|9505|9747|527|648|98|87|818|807|767|768|769|939|928|888|889|890|1033|1042|1043|1044|1022|186|195|196|197|175|285|428|437|438|439|417|8977|8955|8130|8108|8372|8350|12739|12860|13014|12167|12409|10253|10242|10201|11408|11683|10836|11078|6084|6205|6359|5512|5754|2091|2366|1761|3213|3334|2732|2694|2672|3444|3455|3433|3422|3565|3576|3543|2971|4753|4874|5028|4181|4423|8075|8064|6313|5466|5708|12048|12872|12870|13135|13256|9991|10090|10276|10274|10265|10263|10222|10233|10211|10191|10192|10193|10169|10170|10171|14203|14201|14587|11321|11319|10717|11420|11418|11552|11550|11563|11561|11541|11539|11520|11498|11804|11925|5876|5874|5997|5995|5393|6107|6105|6118|6116|6096|6094|6075|6053|6228|6226|6239|6237|6196|6174|6480|5634|5632|6601|2004|2002|1400|2103|2101|2235|2233|2246|2244|2224|2222|2203|2181|2487|2608|7548|7546|7932|4062|4886|4884|5149|5270|8637|8635|8879|8877|9252|9263|9241|11584|11573|2267|10306|9459|9701|11511|11512|11513|6066|6067|6068|6187|6188|6189|2194|2195|3698|3696|2851|2849|3941|3093|3091|8989|8987|8969|8142|8140|8122|8384|8382|8364|12719|12840|10059|10060|10061|14050|14171|11388|2071|7395|7516|3402|3523|3819|3817|4733|4854|8484|8605|8002|8003|8004|8726|8847|9110|9108|9089|8242|9231|9229|9210|6218|8970|8971|8972|8123|8124|8365|8366|8367|9868|9387|9349|9327|10099|10110|10069|10047|9626|14059|14037|14180|14158|549|558|559|560|538|670|679|680|681|120|109|840|829|789|790|791|800|801|802|778|779|780|961|950|910|911|912|921|922|923|1066|1055|219|307|316|317|318|296|461|450|7404|7382|7525|7503|8493|8471|8614|8592|8012|7990|8735|8713|8856|8834|8988|8141|8251|8229|8383|12530|12651|12049|12011|11989|12761|12772|12750|12882|12893|13136|13134|12288|9992|9954|9932|9371|10091|10275|10264|10223|10234|10212|10194|10195|10196|10172|10173|10174|10475|10596|14202|14467|14465|14588|14586|11199|10718|10680|10658|11430|11441|11521|11499|11805|11803|10957|5875|5996|5394|5356|5334|6106|6117|6095|6076|6054|6227|6238|6197|6175|5633|1401|1363|1341|2113|2124|2204|2182|2488|2486|1640|7547|7812|7810|7933|7931|4544|4665|4063|4025|4003|4775|4786|4764|4896|4907|5150|5148|4302|8636|8097|8086|8878|9132|9130|9143|9141|9121|9119|9100|9078|9253|9251|9264|9262|9242|9240|9221|9199|12740|12738|12720|12861|12859|12841|13015|13013|12168|12166|12410|12408|9822|10133|10131|10122|10120|10079|10062|10063|10064|10354|9507|10427|9580|10548|9749|13331|14071|14069|14051|14192|14190|14172|14346|14344|13741|13739|11409|11407|11389|11684|11682|10837|10835|11079|11077|819|820|821|808|809|940|941|942|929|930|1187|1176|1308|1297|2092|2090|2072|2367|2365|1762|1760|6676|7416|7414|7396|7537|7535|7517|7691|7689|6844|6842|7086|7084|3214|3212|3335|3333|3445|3443|3456|3454|3434|3432|3423|3421|3413|3391|3403|3566|3564|3577|3575|3544|3542|3534|3512|3524|2972|2970|4754|4752|4734|4875|4873|4855|5029|5027|4182|4180|4424|4422|8505|8503|8485|8626|8624|8606|8076|8074|8065|8063|8022|8005|8006|8007|8747|8745|8727|8868|8866|8848|9011|9009|9022|9020|9000|8998|8979|8957|8164|8162|8175|8173|8153|8151|8132|8110|9109|9090|8263|8261|8243|9211|8406|8404|8417|8415|8395|8393|8374|8352|13210|10255|10244|10202|10203|10204|11274|11585|11583|11574|11572|11531|11514|11515|11516|11879|5829|5950|6140|6138|6129|6127|6086|6069|6070|6071|6261|6259|6250|6248|6207|6190|6191|6192|6361|5514|6434|5587|6555|5756|1957|2268|2266|2214|2197|2198|2199|2562|2733|2734|2735|3556|3942|3904|3882|3893|5224|9285|9274|13258|11927|6482|6603|2610|5272|10702|11606|11595|6219|1385|2289|12968|12121|12363|14299|13694|11637|10790|11032|2320|1715|7644|6797|7039|3699|3651|2852|2804|3094|3046|4982|4135|4377|9044|9042|9033|9031|8990|8973|8974|8975|8197|8195|8143|8126|8127|8128|8439|8437|8428|8426|8385|8368|8369|8370|9360|10132|10121|10080|10355|10317|10295|9508|9470|9448|9750|9712|9690|14070|14191|14345|13740|582|703|692|822|823|824|811|812|813|943|944|945|932|933|934|1088|1077|241|340|329|483|472|7415|7536|7690|6843|7085|3414|3392|3535|3513|8504|8625|8023|8746|8867|9010|9021|8999|8980|8958|8163|8174|8152|8133|8111|8262|8405|8416|8394|8375|8353|12721|12722|12723|12842|12843|12844|14052|14053|14173|14174|11390|11391|11392|2073|2074|7397|7398|7399|7518|7519|7520|3404|3405|3406|3525|3526|3527|3820|4735|4736|4737|4856|4857|4858|8486|8487|8607|8608|8609|8728|8729|8730|8849|8850|8851|9165|9163|9154|9152|9111|9091|9092|9093|8244|8245|8246|9286|9284|9275|9273|9232|9212|9213|9214|12022|12794|12783|12915|12904|9965|10256|10245|10205|10206|10207|10339|9492|9734|10691|11463|11452|11532|5367|6139|6128|6087|6260|6249|6208|6362|6324|6302|5515|5477|5455|5757|5719|5697|1374|2146|2215|2727|2736|2737|2738|2716|2705|3499|3488|3477|3466|3620|3609|3598|3587|3557|4036|4808|4797|4929|4918|12050|12051|12052|12873|13259|13221|13199|9993|9994|9995|10092|10093|10094|10277|10266|10224|10225|10226|10235|10236|10237|10213|10214|10215|10460|10581|14204|11322|10719|10720|10721|11421|11607|11605|11596|11594|11553|11564|11542|11522|11523|11524|11500|11501|11502|11928|11890|11868|5877|5998|5395|5396|5397|6162|6160|6151|6149|6108|6119|6097|6077|6078|6079|6055|6056|6057|6283|6281|6272|6270|6229|6240|6198|6199|6200|6176|6177|6178|6483|6445|6423|5635|6604|6566|6544|2005|1402|1403|2104|2290|2288|2236|2247|2225|2205|2206|2183|2184|2611|2573|2551|7549|4064|4065|4066|4887|5273|5235|5213|8638|8880|9307|9296|12531|12529|12652|12650|12762|12760|12773|12771|12751|12749|12730|12708|12883|12881|12894|12892|12851|12829|12289|12287|9870|9388|9389|9390|10155|10153|10144|10142|10101|10112|10070|10071|10072|10048|10049|10050|10476|10438|10416|9628|10597|10559|10537|13983|13981|13379|14093|14091|14104|14102|14082|14080|14061|14039|14214|14212|14225|14223|14182|14160|14466|13620|13618|11200|11198|11431|11429|11442|11440|11399|11377|10958|10956|841|842|843|830|831|962|963|964|951|952|1209|1198|1330|1319|2114|2112|2125|2123|2082|2060|1641|1639|7207|7205|7328|7326|6724|7438|7436|7449|7447|7427|7425|7406|7384|7559|7557|7570|7568|7527|7505|7811|6965|6963|4545|4543|4666|4664|4776|4774|4787|4785|4765|4763|4744|4722|4897|4895|4908|4906|4865|4843|4303|4301|8527|8525|8538|8536|8516|8514|8495|8473|8648|8646|8659|8657|8616|8594|8098|8096|8087|8085|8044|8055|8033|8013|8014|8015|7991|7992|7993|8769|8767|8780|8778|8758|8756|8737|8715|8890|8888|8901|8899|8858|8836|9131|9142|9120|9101|9079|8285|8283|8296|8294|8274|8272|8253|8231|9222|9200|3943|3944|3945|11912|6220|6221|6222|6335|5488|5730|2595|12484|12605|12795|12793|12784|12782|12741|12724|12725|12726|12916|12914|12905|12903|12862|12845|12846|12847|13016|12169|13089|12242|12411|10134|10123|10081|10082|10083|10356|10357|10358|9509|9510|10449|10570|9751|9752|9753|13936|14126|14124|14072|14055|14056|14057|14247|14245|14193|14176|14177|14178|14347|14420|13573|14541|13742|11153|11464|11462|11453|11451|11410|11393|11394|11395|11685|10838|11758|10911|11080|2147|2145|2093|2076|2077|2078|2368|2441|1594|1763|7160|7281|7471|7469|7460|7458|7417|7400|7401|7402|7592|7590|7581|7579|7538|7521|7522|7523|7692|6845|7765|6918|7886|7087|3215|3167|3336|3288|3500|3498|3489|3487|3446|3478|3476|3467|3465|3457|3435|3424|3415|3416|3417|3393|3394|3395|3407|3408|3409|3621|3619|3610|3608|3567|3599|3597|3588|3586|3578|3545|3536|3537|3538|3514|3515|3516|3528|3529|3530|3821|3783|3761|3772|2973|2925|4498|4619|4809|4807|4798|4796|4755|4738|4739|4740|4930|4928|4919|4917|4876|4859|4860|4861|5030|4183|5103|4256|4425|8560|8558|8506|8489|8490|8491|8681|8679|8670|8668|8627|8610|8611|8612|8077|8066|8024|8025|8026|8802|8800|8791|8789|8748|8731|8732|8733|8923|8921|8912|8910|8869|8852|8853|8854|9066|9064|9055|9053|9012|9023|9001|8981|8982|8983|8959|8960|8961|8219|8217|8165|8176|8154|8134|8135|8112|8113|9164|9153|9112|9094|9095|9096|8318|8316|8307|8305|8264|8247|8248|8249|9233|9215|9216|9217|8461|8459|8450|8448|8407|8418|8396|8376|8377|8378|8354|8355|8356|10328|9481|9723|3700|3662|3640|2853|2815|2793|3095|3057|3035|9043|9032|8991|8196|8144|8438|8427|8386|13232|10257|10258|10259|10246|10247|11586|11575|11533|11534|11535|11901|6141|6130|6088|6089|6090|6262|6251|6209|6210|6211|6363|6364|6365|5516|5517|6456|6577|5758|5759|5760|2269|2216|2217|2584|3558|3559|3560|3937|3946|3947|3948|3926|3915|5246|12044|12053|12054|12055|12033|12816|12805|12937|12926|12874|9855|9987|9996|9997|9998|9976|10095|10096|10097|10278|10267|10227|10228|10229|10238|10239|10240|10216|10217|10218|9613|14205|11323|11285|11263|10713|10722|10723|10724|11485|11474|11422|11554|11565|11543|11525|11526|11527|11503|11504|11505|5878|5840|5818|5999|5961|5939|5389|5398|5399|5400|5378|6161|6150|6109|6120|6098|6080|6081|6082|6058|6059|6060|6282|6271|6230|6241|6201|6202|6203|6179|6180|6181|5636|5598|5576|2006|1968|1946|1396|1405|1406|1407|2168|2105|2237|2248|2226|2208|2209|2210|2186|2187|2188|7550|4058|4067|4068|4069|4047|4830|4819|4951|4940|4888|8639|8881|13260|13261|13262|11929|11930|11931|6484|6485|6486|6605|6606|6607|2612|2613|5274|5275|5276|3701|3702|3703|2854|2855|3096|3097|3098|9045|9034|8992|8993|8994|8198|8145|8146|8440|8429|8387|8388|8389|12077|12066|12742|12731|12709|12863|12852|12830|13017|12990|12979|12957|12170|12143|12132|12110|13137|12412|12385|12374|12352|9871|9844|9833|9811|10020|10009|9382|9415|9404|9391|9392|9393|10154|10143|10102|10135|10124|10113|10084|10085|10086|10073|10074|10075|10051|10052|10053|10260|10261|10262|10249|10250|10251|10350|10383|10372|10359|10360|10361|9503|9536|9512|9513|9514|10477|10478|10479|9629|9602|9591|9569|10598|10599|10600|9745|9778|9767|9754|9755|9756|13982|13380|13353|13342|13320|14092|14125|14103|14081|14073|14062|14040|14213|14246|14224|14194|14183|14161|14348|14321|14310|14288|14468|13619|14589|13743|13716|13705|13683|11296|10746|10735|11411|11400|11378|11587|11576|11536|11537|11538|11686|11670|11659|11648|11626|10839|10823|10812|10801|10779|11806|11081|11065|11054|11043|11021|5851|5983|5972|5422|5411|6142|6131|6091|6092|6093|6263|6252|6223|6224|6225|6212|6213|6214|6357|6366|6367|6368|6346|5510|5519|5520|5521|5499|5609|5752|5761|5762|5763|5741|604|725|714|844|845|846|833|834|835|965|966|967|954|955|956|362|351|1979|1429|2094|2083|2061|2270|2219|2220|2221|2369|2353|2342|2331|2309|2489|1764|1748|1737|1726|1704|7206|7327|6725|6698|6687|6665|7437|7470|7459|7448|7426|7418|7407|7385|7558|7591|7580|7569|7539|7528|7506|7693|7666|7655|7633|6846|6819|6808|6786|7813|6964|7934|7088|7061|7050|7028|3216|3178|3156|3337|3321|3299|3277|2782|2771|2760|2749|3447|3458|3436|3425|3418|3419|3420|3396|3397|3398|3568|3579|3561|3562|3563|3546|3539|3540|3541|3517|3518|3519|3695|3704|3705|3706|3684|3673|2848|2857|2858|2859|2837|2826|2974|2936|2914|3090|3099|3100|3101|3079|3068|4091|4080|4756|4745|4723|4877|4866|4844|5031|5004|4993|4971|4184|4157|4146|4124|5151|4426|4399|4388|4366|8526|8559|8537|8515|8507|8496|8474|8647|8680|8669|8658|8628|8617|8595|8045|8078|8067|8056|8034|8027|8028|8029|8016|8017|8018|7994|7995|7996|8768|8801|8790|8779|8757|8749|8738|8716|8889|8922|8911|8900|8870|8859|8837|9065|9054|9013|9046|9035|9024|9002|8995|8996|8997|8984|8985|8986|8962|8963|8964|8218|8166|8199|8177|8155|8148|8149|8150|8137|8138|8139|8115|8116|8117|9187|9185|9176|9174|9133|9144|9122|9102|9103|9104|9080|9081|9082|8284|8317|8306|8295|8273|8265|8254|8232|9308|9306|9297|9295|9254|9265|9243|9223|9224|9225|9201|9202|9203|8460|8449|8408|8441|8430|8419|8397|8390|8391|8392|8379|8380|8381|8357|8358|8359|3822|3823|3824|9166|9155|9113|9114|9115|9287|9276|9234|9235|9236|12875|12876|12877|13254|13263|13264|13265|13243|10279|10280|10281|10268|10269|14206|14207|11324|11325|11326|11423|11424|11425|11608|11597|11555|11556|11557|11566|11567|11568|11544|11545|11546|11791|11923|11932|11933|11934|5879|5880|6000|6001|6002|6163|6152|6110|6111|6112|6121|6122|6123|6099|6100|6101|6284|6273|6231|6232|6233|6242|6243|6244|6478|6487|6488|6489|6467|5637|5638|5639|6599|6608|6609|6610|6588|2007|2008|2106|2107|2291|2238|2239|2249|2250|2227|2228|2474|2606|2615|2616|2617|7551|7552|7553|4889|4890|4891|5268|5277|5278|5279|5257|8640|8641|8642|8882|8883|8884|12796|12785|12743|12744|12745|12917|12906|12864|12865|12866|13018|13019|13020|12171|12172|13111|12413|12414|12415|10136|10137|10138|10125|10126|10504|10493|10625|10614|14127|14074|14075|14248|14195|14196|14349|14350|14442|14563|13744|13745|11465|11454|11412|11413|11414|11687|11688|11689|10840|10841|11780|11082|11083|11084|2148|2095|2096|2370|2371|2463|1765|1766|7472|7461|7419|7420|7421|7593|7582|7540|7541|7542|7694|7695|7696|6847|6848|7787|7908|7089|7090|7091|3217|3218|3338|3339|3340|3501|3490|3448|3449|3450|3479|3468|3459|3460|3461|3437|3438|3439|3426|3427|3428|3622|3611|3569|3570|3571|3600|3589|3580|3581|3582|3547|3548|3549|3816|3825|3826|3827|3805|3794|2975|2976|2977|4810|4799|4757|4758|4759|4931|4920|4878|4879|4880|5032|5033|5034|4185|4186|5125|4427|4428|4429|8561|8508|8509|8682|8671|8629|8630|8631|8079|8080|8081|8068|8069|8803|8792|8750|8751|8752|8924|8913|8871|8872|8873|9067|9056|9014|9015|9016|9025|9026|9027|9003|9004|9005|8220|8167|8168|8178|8179|8156|8157|9167|9156|9116|9117|9118|8319|8308|8266|8267|8268|9288|9277|9237|9238|9239|8462|8451|8409|8410|8411|8420|8421|8422|8398|8399|8400|12532|12653|12817|12815|12806|12804|12763|12774|12752|12732|12733|12734|12710|12711|12712|12938|12936|12927|12925|12884|12895|12853|12854|12855|12831|12832|12833|13138|13100|13078|12290|13287|13276|9872|9873|10156|10145|10103|10104|10105|10114|10115|10116|10471|10480|10481|10482|9630|9631|9632|10592|10601|10602|10603|13984|13381|13382|14148|14146|14094|14105|14083|14063|14064|14041|14042|14269|14267|14215|14226|14184|14185|14162|14163|14469|14431|14409|13621|14590|14552|14530|11201|11486|11484|11475|11473|11432|11443|11401|11402|11403|11379|11380|11381|11588|11589|11590|11577|11578|11807|11769|11747|10959|11956|11945|6143|6144|6145|6132|6133|6264|6265|6266|6253|6254|6511|6500|6632|6621|2169|2167|2115|2126|2084|2085|2062|2063|2271|2272|2490|2452|2430|1642|2639|7208|7329|6726|6727|6728|7493|7491|7482|7480|7439|7450|7428|7408|7409|7410|7386|7387|7388|7614|7612|7603|7601|7560|7571|7529|7530|7531|7507|7508|7509|7814|7776|7754|6966|7935|7897|7875|3992|3981|3970|3959|4546|4667|4831|4829|4820|4818|4777|4788|4766|4746|4747|4748|4724|4725|4726|4952|4950|4941|4939|4898|4909|4867|4868|4869|4845|4846|4847|5152|5114|5092|4304|5301|5290|8582|8580|8528|8539|8517|8497|8498|8475|8476|8703|8701|8692|8690|8649|8660|8618|8619|8620|8596|8597|8598|8099|8088|8046|8047|8048|8057|8058|8059|8035|8036|8037|8824|8822|8813|8811|8770|8781|8759|8739|8740|8741|8717|8718|8719|8945|8943|8934|8932|8891|8902|8860|8861|8862|8838|8839|8840|9047|9048|9049|9036|9037|8200|8201|9186|9175|9134|9145|9123|9105|9106|9107|9083|9084|9085|8340|8338|8329|8327|8286|8297|8275|8255|8256|8257|8233|8234|8235|9255|9266|9244|9226|9227|9228|9204|9205|9206|8442|8443|8444|8431|8432|12506|12638|12627|12099|12088|12797|12786|12746|12747|12748|12918|12907|12878|12879|12880|12867|12868|12869|13012|13021|13022|13023|13001|12165|12174|12175|12176|12154|12264|12407|12416|12417|12418|12396|9899|10042|10031|10139|10140|10141|10128|10129|10130|10282|10283|10284|10271|10272|10273|10405|10394|9558|9657|9646|9800|9789|13969|13958|13408|14128|14077|14078|14079|14249|14209|14210|14211|14198|14199|14200|14343|14352|14353|14354|14332|13595|13738|13747|13748|13749|13727|11186|11175|11318|11327|11328|11329|11307|10768|10757|11466|11455|11426|11427|11428|11415|11416|11417|11609|11598|11558|11559|11560|11569|11570|11571|11547|11548|11549|11681|11690|11691|11692|10834|10843|10844|10845|10944|10933|11076|11085|11086|11087|5873|5882|5883|5884|5862|5994|6003|6004|6005|5444|5433|6164|6153|6113|6114|6115|6124|6125|6126|6102|6103|6104|6285|6274|6234|6235|6236|6245|6246|6247|5631|5640|5641|5642|5620|2001|2010|2011|2012|1990|1451|2149|2109|2110|2111|2098|2099|2100|2292|2241|2242|2243|2252|2253|2254|2230|2231|2232|2364|2373|2374|2375|1627|1616|1759|1768|1769|1770|7182|7314|7303|6753|6742|7473|7462|7422|7423|7424|7594|7583|7554|7555|7556|7543|7544|7545|7688|7697|7698|7699|7677|6841|6850|6851|6852|6830|6940|7083|7092|7093|7094|7072|3211|3220|3221|3222|3200|3189|3332|3341|3342|3343|3310|3502|3491|3451|3452|3453|3480|3469|3462|3463|3464|3440|3441|3442|3429|3430|3431|3623|3612|3572|3573|3574|3601|3590|3583|3584|3585|3550|3551|3552|2969|2978|2979|2980|2958|2947|4520|4652|4641|4113|4102|4811|4800|4760|4761|4762|4932|4921|4892|4893|4894|4881|4882|4883|5026|5035|5036|5037|5015|4179|4188|4189|4190|4168|4278|4421|4430|4431|4432|4410|8562|8511|8512|8513|8683|8672|8643|8644|8645|8632|8633|8634|8082|8083|8084|8071|8072|8073|8804|8793|8753|8754|8755|8925|8914|8885|8886|8887|8874|8875|8876|9068|9057|9017|9018|9019|9028|9029|9030|9006|9007|9008|8221|8170|8171|8172|8181|8182|8183|8159|8160|8161|9168|9169|9170|9157|9158|8320|8309|8269|8270|8271|9289|9290|9291|9278|9279|8463|8452|8412|8413|8414|8423|8424|8425|8401|8402|8403|12798|12799|12800|12787|12788|12919|12920|12921|12908|12909|13166|13155|13309|13298|14129|14130|14250|14251|14497|14618|11467|11468|11469|11456|11457|11610|11611|11612|11599|11600|11835|11824|11978|11967|6165|6166|6167|6154|6155|6286|6287|6288|6275|6276|6533|6522|6654|6643|2150|2151|2293|2294|2518|2661|7474|7475|7476|7463|7464|7595|7596|7597|7584|7585|7842|7831|7963|7952|3503|3504|3505|3492|3493|3481|3482|3483|3470|3471|3624|3625|3626|3613|3614|3602|3603|3604|3591|3592|3871|3860|3849|3838|4812|4813|4814|4801|4802|4933|4934|4935|4922|4923|5180|5169|5323|5312|8563|8564|8684|8685|8686|8673|8674|8805|8806|8807|8794|8795|8926|8927|8928|8915|8916|9069|9070|9071|9058|9059|8222|8223|9171|9172|9173|9160|9161|9162|8321|8322|8323|8310|8311|9292|9293|9294|9281|9282|9283|8464|8465|8466|8453|8454|12583|12528|12561|12537|12533|12534|12538|12539|12535|12517|12495|12473|12704|12693|12649|12682|12671|12658|12654|12655|12659|12660|12656|12657|12616|12594|12823|12819|12820|12824|12825|12818|12821|12822|12812|12808|12809|12813|12814|12807|12810|12768|12764|12765|12769|12770|12766|12767|12801|12802|12803|12790|12791|12792|12779|12775|12776|12780|12781|12777|12778|12757|12753|12754|12758|12759|12755|12756|12735|12736|12737|12713|12714|12715|12944|12940|12941|12945|12946|12939|12942|12943|12933|12929|12930|12934|12935|12928|12931|12889|12885|12886|12890|12891|12887|12888|12922|12923|12924|12911|12912|12913|12900|12896|12897|12901|12902|12898|12899|12856|12857|12858|12834|12835|12836|13067|13056|13045|13034|12220|12198|13188|13177|13133|13142|13139|13143|13144|13140|13141|13122|12341|12330|12286|12319|12308|12295|12291|12292|12296|12297|12293|12294|12275|12253|12231|12462|12451|12440|12429|9921|9866|9875|9876|9877|9437|9426|10161|10157|10158|10162|10163|10159|10160|10150|10146|10147|10151|10152|10148|10106|10107|10108|10117|10118|10119|10526|10515|9679|9668|9624|9633|9634|9635|10647|10636|14035|13980|14013|13989|13985|13986|13990|13991|13987|13947|13925|13430|13375|13384|13385|13386|13364|14154|14150|14151|14155|14156|14149|14152|14147|14099|14095|14096|14100|14101|14097|14132|14133|14134|14110|14106|14107|14111|14112|14108|14088|14084|14085|14089|14090|14086|14066|14067|14068|14044|14045|14046|14275|14271|14272|14276|14277|14270|14273|14268|14220|14216|14217|14221|14222|14218|14253|14254|14255|14231|14227|14228|14232|14233|14229|14187|14188|14189|14165|14166|14167|14398|14376|14519|14464|14473|14470|14474|14475|14471|14453|13672|13617|13650|13626|13622|13623|13627|13628|13624|13606|13584|13562|14640|14585|14594|14591|14595|14596|14592|14574|13793|13771|11252|11197|11230|11206|11202|11203|11207|11208|11204|11164|11142|11373|11362|11351|11340|11492|11488|11489|11493|11494|11487|11490|11491|11481|11477|11478|11482|11483|11476|11479|11437|11433|11434|11438|11439|11435|11436|11470|11471|11472|11459|11460|11461|11448|11444|11445|11449|11450|11446|11447|11404|11405|11406|11382|11383|11384|11613|11614|11615|11602|11603|11604|11591|11592|11593|11580|11581|11582|11736|11725|11714|11703|10889|10867|11857|11846|11802|11811|11808|11812|11813|11809|11810|11010|10999|10955|10988|10977|10964|10960|10961|10965|10966|10962|10963|10922|10900|11131|11120|11109|11098|5928|5906|6049|6038|6027|6016|6168|6169|6170|6157|6158|6159|6146|6147|6148|6135|6136|6137|6289|6290|6291|6278|6279|6280|6267|6268|6269|6256|6257|6258|6412|6401|6390|6379|5565|5543|5686|5675|5664|5653|5807|5796|5785|5774|2056|2034|2175|2171|2172|2176|2177|2170|2173|2120|2116|2117|2121|2122|2118|2153|2154|2155|2131|2127|2128|2132|2133|2129|2087|2088|2089|2065|2066|2067|2296|2297|2298|2274|2275|2276|2419|2397|2540|2485|2494|2491|2495|2496|2492|1693|1638|1671|1647|1643|1644|1648|1649|1645|1605|1583|1814|1792|7259|7204|7237|7213|7209|7210|7214|7215|7211|7193|7171|7149|7380|7369|7325|7358|7347|7334|7330|7331|7335|7336|7332|7333|7292|7270|6775|6764|6720|6729|6730|6731|6709|7499|7495|7496|7500|7501|7494|7497|7498|7492|7488|7484|7485|7489|7490|7483|7486|7481|7444|7440|7441|7445|7446|7442|7443|7477|7478|7479|7466|7467|7468|7455|7451|7452|7456|7457|7453|7454|7433|7429|7430|7434|7435|7431|7432|7411|7412|7413|7389|7390|7391|7620|7616|7617|7621|7622|7615|7618|7619|7613|7609|7605|7606|7610|7611|7604|7607|7602|7565|7561|7562|7566|7567|7563|7564|7598|7599|7600|7587|7588|7589|7576|7572|7573|7577|7578|7574|7575|7532|7533|7534|7510|7511|7512|7743|7732|7721|7710|6896|6874|7864|7853|7809|7818|7815|7819|7820|7816|7817|7798|7017|7006|6962|6995|6984|6971|6967|6968|6972|6973|6969|6970|6951|6929|6907|7985|7974|7930|7939|7936|7940|7941|7937|7938|7919|7138|7127|7116|7105|3266|3244|3387|3376|3365|3354|3506|3507|3508|3495|3496|3497|3484|3485|3486|3473|3474|3475|3627|3628|3629|3616|3617|3618|3605|3606|3607|3594|3595|3596|3750|3739|3728|3717|2903|2881|3024|3013|3002|2991|3145|3134|3123|3112|4597|4542|4575|4551|4547|4548|4552|4553|4549|4531|4509|4487|4718|4707|4663|4696|4685|4672|4668|4669|4673|4674|4670|4671|4630|4608|4837|4833|4834|4838|4839|4832|4835|4836|4826|4822|4823|4827|4828|4821|4824|4782|4778|4779|4783|4784|4780|4781|4815|4816|4817|4804|4805|4806|4793|4789|4790|4794|4795|4791|4792|4771|4767|4768|4772|4773|4769|4770|4749|4750|4751|4727|4728|4729|4958|4954|4955|4959|4960|4953|4956|4957|4947|4943|4944|4948|4949|4942|4945|4903|4899|4900|4904|4905|4901|4902|4936|4937|4938|4925|4926|4927|4914|4910|4911|4915|4916|4912|4913|4870|4871|4872|4848|4849|4850|5081|5070|5059|5048|4234|4212|5202|5191|5147|5156|5153|5157|5158|5154|5155|5136|4355|4344|4300|4333|4322|4309|4305|4306|4310|4311|4307|4308|4289|4267|4245|4476|4465|4454|4443|8588|8584|8585|8589|8590|8583|8586|8581|8533|8529|8530|8534|8535|8531|8566|8567|8568|8544|8540|8541|8545|8546|8542|8522|8518|8519|8523|8524|8520|8500|8501|8502|8478|8479|8480|8709|8705|8706|8710|8711|8704|8707|8708|8702|8698|8694|8695|8699|8700|8693|8696|8691|8654|8650|8651|8655|8656|8652|8653|8687|8688|8689|8676|8677|8678|8665|8661|8662|8666|8667|8663|8664|8621|8622|8623|8599|8600|8601|8104|8100|8101|8105|8106|8102|8103|8093|8089|8090|8094|8095|8091|8049|8050|8051|8060|8061|8062|8038|8039|8040|8830|8826|8827|8831|8832|8825|8828|8829|8823|8819|8815|8816|8820|8821|8814|8817|8812|8775|8771|8772|8776|8777|8773|8774|8808|8809|8810|8797|8798|8799|8786|8782|8783|8787|8788|8784|8785|8764|8760|8761|8765|8766|8762|8763|8742|8743|8744|8720|8721|8722|8951|8947|8948|8952|8953|8946|8949|8950|8944|8940|8936|8937|8941|8942|8935|8938|8933|8896|8892|8893|8897|8898|8894|8895|8929|8930|8931|8918|8919|8920|8907|8903|8904|8908|8909|8905|8906|8863|8864|8865|8841|8842|8843|9072|9073|9074|9061|9062|9063|9050|9051|9052|9039|9040|9041|8225|8226|8227|8203|8204|8205|9193|9189|9190|9194|9195|9188|9191|9192|9182|9178|9179|9183|9184|9177|9180|9138|9135|9139|9140|9136|9137|9149|9146|9150|9151|9147|9148|9127|9124|9128|9129|9125|9126|8346|8342|8343|8347|8348|8341|8344|8345|8339|8335|8331|8332|8336|8337|8330|8333|8328|8291|8287|8288|8292|8293|8289|8290|8324|8325|8326|8313|8314|8315|8302|8298|8299|8303|8304|8300|8301|8280|8276|8277|8281|8282|8278|8279|8258|8259|8260|8236|8237|8238|9314|9310|9311|9315|9316|9309|9312|9313|9303|9299|9300|9304|9305|9298|9301|9259|9256|9260|9261|9257|9258|9270|9267|9271|9272|9268|9269|9248|9245|9249|9250|9246|9247|8467|8468|8469|8456|8457|8458|8445|8446|8447|8434|8435|8436".split_string("\\|");
  634. __hacky_optimal_configuration_order[3]["hard always"]["parts"] = "486|485|484|607|606|605|4|3|2|1|0|728|727|726|849|848|847|970|969|968|123|122|121|1091|1090|1089|244|243|242|1212|1211|1210|365|364|363|2663|9318|9317|972|971|125|124|246|245|367|366|8712|8833|2662|3993|3873|9319|488|487|609|608|8|5|9|10|6|7|730|729|851|850|1093|1092|1214|1213|6655|7986|3994|8714|8835|8713|8834|5324|2664|3995|6656|7987|5215|9922|10164|3872|5203|3026|4357|2905|4236|6897|7018|2904|3025|4235|4356|8228|8349|7139|7260|7381|7502|7623|6776|7744|6899|7865|7020|3146|3267|3388|3509|3630|2783|3751|2906|3027|4477|4598|4719|4840|4961|4114|5082|4237|4358|8470|8591|8954|8107|9075|8230|9196|8351|6657|7988|7019|8350|6898|5204|8229|11980|10649|5326|5325|1332|4016|4005|9924|9923|10166|10165|736|857|5567|6534|5688|3631|2784|4962|4115|8715|8836|7996|8716|8837|5214|7625|6778|2665|3632|2785|3874|3996|4963|4116|5205|8956|8109|7624|6777|8955|8108|7866|3147|3268|2666|3389|3510|3752|4478|4599|3997|4720|4841|5083|9197|11979|10648|1331|4015|4004|7755|6900|7876|7021|2907|3028|5093|4238|4359|9086|8231|9207|8352|7141|7262|6658|7383|7504|7746|7867|3148|3269|3390|3511|3753|4479|4600|4721|4842|5084|8472|8593|7989|9077|9198|7022|3029|4360|8353|7140|7261|6659|7382|7503|7745|8471|8592|7990|9076|6901|2908|4239|8232|11253|11495|6293|5446|128|1936|2178|8052|8734|8723|8855|8844|8238|8359|8877|7626|6779|2667|2668|2669|3633|2786|3875|3998|3999|4000|4964|4117|5206|8957|8110|7142|7263|6660|6661|6662|7384|7505|7747|7868|3149|3270|3391|3512|3754|4480|4601|4722|4843|5085|8473|8594|7991|7992|7993|9078|9199|7627|6780|3634|2787|4965|4118|8958|8111|13190|9801|10043|10285|9438|10406|9561|9560|9559|10527|9682|9681|9680|13310|11859|5809|5930|5328|5327|6051|6172|6414|6536|6535|250|247|251|252|248|249|371|368|372|373|369|370|2542|7143|7264|6677|6663|6664|6665|6666|7385|7506|7748|7869|3150|3271|2670|2671|2672|3392|3513|3755|3876|4481|4602|4049|4060|4038|4027|4001|4002|4003|4723|4844|5086|5226|5207|8474|8595|8008|7994|7995|7997|8964|8117|9079|9200|8717|8718|8719|8838|8839|8840|5216|7391|7512|7877|4729|4850|5094|8480|8601|8720|8721|8722|8841|8842|8843|9085|9206|9208|11981|10287|10286|9440|9439|10528|13311|11254|10650|11496|491|976|973|977|978|974|975|129|126|130|131|127|1937|1333|2179|6678|6667|4017|4006|8053|8009|7998|7759|7758|7757|7756|7880|7879|7878|5097|5096|5095|5218|5217|9090|9089|9088|9087|9211|9210|9209|6783|2790|4121|8114|9926|9925|10168|10174|10167|11255|11497|1938|2180|8054|8736|8735|8725|8724|8879|8878|8857|8856|8846|8845|6902|6903|6904|7023|7024|7025|2909|2910|2911|3030|3031|3032|4240|4241|4242|4361|4362|4363|8233|8234|8235|8354|8355|8356|7146|7628|7629|7630|6781|6782|3153|3635|3636|3637|2788|2789|3877|3878|3879|4484|4966|4967|4968|4119|4120|5208|5209|5210|8477|8959|8960|8961|8112|8113|7631|7632|7633|6784|6785|6786|6905|6906|6907|7026|7027|7028|3638|3639|3640|2791|2792|2793|2912|2913|2914|3880|3881|3882|3033|3034|3035|4969|4970|4971|4122|4123|4124|4243|4244|4245|5211|5212|5213|4364|4365|4366|8962|8963|8115|8116|9096|8236|8237|9217|8357|8358|7144|7145|7265|7266|7267|7386|7387|7388|7507|7508|7509|7749|7750|7751|7870|7871|7872|3151|3152|3272|3273|3274|3393|3394|3395|3514|3515|3516|3756|3757|3758|4482|4483|4603|4604|4605|4724|4725|4726|4845|4846|4847|5087|5088|5089|8475|8476|8596|8597|8598|9080|9081|9082|9201|9202|9203|7147|7148|7149|7268|7269|7270|7389|7390|7510|7511|7752|7753|7754|7873|7874|7875|3154|3155|3156|3275|3276|3277|3396|3397|3398|3517|3518|3519|3759|3760|3761|4485|4486|4487|4606|4607|4608|4727|4728|4848|4849|5090|5091|5092|5222|5219|5223|5224|5220|5221|8478|8479|8599|8600|9083|9084|9204|9205|12222|13189|12343|9803|9802|9321|9320|10045|10044|10408|10407|10529|13794|13312|13431|10891|11858|11012|5808|5929|6050|6171|6292|5445|6413|5568|5566|5689|5687|492|489|493|494|490|613|610|614|615|611|612|734|731|735|732|733|855|852|856|853|854|1097|1094|1098|1099|1095|1096|1218|1215|1219|1220|1216|1217|1815|1452|1574|2541|1695|6679|6668|7763|7760|7764|7765|7761|7762|7884|7881|7885|7886|7882|7883|4048|4059|4037|4026|5101|5098|5102|5103|5099|5100|4258|4247|5225|4379|4368|8010|7999|9094|9091|9095|9092|9093|9215|9212|9216|9213|9214|7304|7447|7568|7546|4642|4785|4906|4884|8536|8657|8635|8767|8778|8756|8745|8888|8899|8866|9020|8173|9141|8296|8295|8294|9262|8417|8416|8415|12463|12584|12705|12826|12947|12100|13068|12223|12221|12344|12342|9563|9562|9684|9683|13915|14036|14157|14278|14399|13554|13553|13552|14520|13675|13674|13673|11132|11374|11616|10769|11737|10892|10890|11013|11011|5332|5329|5333|5334|5330|5331|6538|6537|2057|2299|2420|1575|1573|1696|1694|7161|7150|7282|7271|6710|6721|6699|6688|7403|7392|7524|7513|7645|7634|6798|6787|7766|6921|6920|6919|6910|6909|6908|7887|7042|7041|7040|7031|7030|7029|4499|4488|4620|4609|4104|4093|4082|4071|4741|4730|4862|4851|4983|4972|4136|4125|5104|4259|4257|4248|4246|5259|5270|5248|5237|4380|4378|4369|4367|8492|8481|8613|8602|8041|8030|8019|8976|8965|8129|8118|9097|8252|8251|8250|8241|8240|8239|9218|8373|8372|8371|8362|8361|8360|1453|4643|4786|4907|4885|9022|9021|8175|8174|9263|9930|9927|9931|9932|9928|9929|10053|10172|10169|10173|10170|10171|11257|11256|11499|11498|1940|1939|2182|2181|7306|7305|7449|7448|7570|7569|7548|7547|4644|4787|4908|4886|8538|8537|8659|8658|8637|8636|8056|8055|8018|8007|8769|8768|8780|8779|8758|8757|8747|8746|8738|8737|8727|8726|8890|8889|8901|8900|8868|8867|8859|8858|8848|8847|9143|9142|9264|12948|12101|12225|12224|12346|12345|9567|9564|9568|9569|9565|9566|9688|9685|9689|9690|9686|9687|13433|13432|13556|13555|13677|13676|11617|10770|10894|10893|11015|11014|6294|5447|5570|5569|5691|5690|1816|2300|1454|1577|1576|1698|1697|7194|7205|7183|7172|7315|7326|7293|6765|6754|6743|6732|7436|7425|7414|7557|7535|7678|7689|7667|7656|6831|6842|6820|6809|7799|7810|7788|7777|6954|6953|6952|6965|6964|6963|6943|6942|6941|6932|6931|6930|6923|6922|6912|6911|7920|7931|7909|7898|7075|7074|7073|7086|7085|7084|7064|7063|7062|7053|7052|7051|7044|7043|7033|7032|4532|4543|4521|4510|4653|4664|4631|4103|4092|4081|4070|4774|4763|4752|4895|4873|5016|5027|5005|4994|4984|4973|4169|4180|4158|4147|4137|4126|5137|5148|5126|5115|4292|4291|4290|4303|4302|4301|4281|4280|4279|4270|4269|4268|4261|4260|4250|4249|5258|5269|5247|5236|4413|4412|4411|4424|4423|4422|4402|4401|4400|4391|4390|4389|4382|4381|4371|4370|8525|8514|8503|8646|8624|8096|8085|8074|8063|9009|8998|8987|8162|8151|8140|9130|9119|9108|8285|8284|8283|8274|8273|8272|8263|8262|8261|8254|8253|8243|8242|9251|9240|9229|8406|8405|8404|8395|8394|8393|8384|8383|8382|8375|8374|8364|8363|8822|8811|8800|8789|8943|8932|8921|8910|8298|8297|8260|8249|8419|8418|8381|8370|11505|6542|6539|6543|6544|6540|6541|2188|5314|5303|5292|5281|8881|8880|12464|12585|11983|11982|12706|12827|12949|12102|13069|13191|10289|10288|9442|9441|13796|13795|14280|14279|14521|11133|10652|10651|11375|11618|10771|11738|11860|5810|5931|6052|6173|6415|1817|1335|1334|2058|2301|2421|2543|6711|6722|6700|6689|7647|7646|7636|7635|6800|6799|6789|6788|7888|4500|4489|4621|4610|4050|4061|4039|4028|4019|4018|4008|4007|4742|4731|4863|4852|4985|4974|4138|4127|5105|5227|8042|8031|8020|8978|8977|8967|8966|8131|8130|8120|8119|9219|6060|6181|1943|2185|6973|7094|4069|4311|4432|9024|9023|8986|8975|8177|8176|8139|8128|8293|8302|8299|8303|8304|8300|8301|8282|8271|8414|8423|8420|8424|8425|8421|8422|8403|8392|12715|12836|14046|14167|11261|11258|11262|11263|11259|11260|11384|11503|11500|11504|11501|11502|1944|1941|1945|1946|1942|2067|2186|2183|2187|2184|7308|7307|6731|7451|7450|7413|7402|7572|7571|7550|7549|7534|7523|4646|4645|4789|4788|4751|4740|4910|4909|4888|4887|4872|4861|8540|8539|8502|8491|8661|8660|8639|8638|8623|8612|8051|8060|8057|8061|8062|8058|8059|8040|8029|8824|8823|8813|8812|8771|8770|8802|8801|8791|8790|8782|8781|8760|8759|8749|8748|8742|8739|8743|8744|8740|8741|8731|8728|8732|8733|8729|8730|8945|8944|8934|8933|8892|8891|8923|8922|8912|8911|8903|8902|8870|8869|8863|8860|8864|8865|8861|8862|8852|8849|8853|8854|8850|8851|9145|9144|9107|9266|9265|9228".split_string("\\|");
  635. __hacky_optimal_configuration_order[2]["descend"]["parts"] = "194|1519|8125|13499|13497|1520|1518|208|13498|230|13452|1473|8186|8184|8185|9511|13500|1521|8208|8206|8136|8114|5518|13501|13463|13441|1522|1506|1484|1462|8207|2856|8187|8147|9525|13474|1495|8188|12173|14351|13502|13503|13504|13746|10842|2372|1523|1524|1525|1767|6849|4187|8209|8169|8180|8158|9038|8202|8189|8190|8191|8433|9547|13496|13505|13506|13507|13485|1517|1526|1527|1528|8210|9060|8224|8211|8212|8213|8455|12209|12187|14387|14365|13551|13540|13529|13518|13782|13760|10878|10856|5554|5532|2408|2386|1572|1561|1550|1539|1803|1781|6885|6863|2892|2870|4223|4201|8214|8215|8216|8192|8193|8194|1036|1034|189|187|431|429|1035|188|430|989|142|384|1037|190|432|8967|8965|8120|8118|8362|8360|1038|1000|978|191|153|131|433|395|373|8966|8119|8361|2256|2196|1011|164|406|10353|10351|9506|9504|9748|9746|1039|1040|1041|192|193|434|435|436|8978|8976|8956|8954|8131|8129|8109|8107|8373|8371|8351|8349|3697|2850|3092|6360|6358|5513|5511|5755|5753|8968|8121|8363|557|2257|2255|2278|10306|9459|9701|3698|3696|2851|2849|3093|3091|8989|8987|8969|8142|8140|8122|8384|8382|8364|10352|9505|9747|1033|1042|1043|1044|1022|186|195|196|197|175|428|437|438|439|417|8977|8955|8130|8108|8372|8350|13014|12167|12409|11683|10836|11078|6359|5512|5754|2366|1761|5028|4181|4423|6313|5466|5708|8970|8971|8972|8123|8124|8365|8366|8367|1066|1055|219|461|450|8988|8141|8383|10339|9492|9734|13015|13013|12168|12166|12410|12408|10354|9507|9749|14346|14344|13741|13739|11684|11682|10837|10835|11079|11077|2367|2365|1762|1760|7691|7689|6844|6842|7086|7084|5029|5027|4182|4180|4424|4422|9011|9009|9022|9020|9000|8998|8979|8957|8164|8162|8175|8173|8153|8151|8132|8110|8406|8404|8417|8415|8395|8393|8374|8352|6361|5514|5756|810|931|1882|2279|2277|2207|2185|12968|12121|12363|14299|13694|11637|10790|11032|2320|1715|7644|6797|7039|3699|3651|2852|2804|3094|3046|4982|4135|4377|9044|9042|9033|9031|8990|8973|8974|8975|8197|8195|8143|8126|8127|8128|8439|8437|8428|8426|8385|8368|8369|8370|10355|10317|10295|9508|9470|9448|9750|9712|9690|14345|13740|1088|1077|241|483|472|7690|6843|7085|9010|9021|8999|8980|8958|8163|8174|8152|8133|8111|8405|8416|8394|8375|8353|6362|6324|6302|5515|5477|5455|5757|5719|5697|6335|5488|5730|13016|12169|12411|10356|10357|10358|9509|9510|9751|9752|9753|14347|13742|11685|10838|11080|2368|1763|7692|6845|7087|5030|4183|4425|9066|9064|9055|9053|9012|9023|9001|8981|8982|8983|8959|8960|8961|8219|8217|8165|8176|8154|8134|8135|8112|8113|8461|8459|8450|8448|8407|8418|8396|8376|8377|8378|8354|8355|8356|10328|9481|9723|11670|10823|11065|2353|1748|3700|3662|3640|2853|2815|2793|3095|3057|3035|9043|9032|8991|8196|8144|8438|8427|8386|6363|6364|6365|5516|5517|5758|5759|5760|571|13862|13860|832|953|1883|1881|3701|3702|3703|2854|2855|3096|3097|3098|9045|9034|8992|8993|8994|8198|8145|8146|8440|8429|8387|8388|8389|14054|14175|2075|8488|13017|12990|12979|12957|12170|12143|12132|12110|12412|12385|12374|12352|10350|10383|10372|10359|10360|10361|9503|9536|9512|9513|9514|9745|9778|9767|9754|9755|9756|14348|14321|14310|14288|13743|13716|13705|13683|11686|11659|11648|11626|10839|10812|10801|10779|11081|11054|11043|11021|6357|6366|6367|6368|6346|5510|5519|5520|5521|5499|5752|5761|5762|5763|5741|2369|2342|2331|2309|1764|1737|1726|1704|7693|7666|7655|7633|6846|6819|6808|6786|7088|7061|7050|7028|3695|3704|3705|3706|3684|3673|2848|2857|2858|2859|2837|2826|3090|3099|3100|3101|3079|3068|5031|5004|4993|4971|4184|4157|4146|4124|4426|4399|4388|4366|9065|9054|9013|9046|9035|9024|9002|8995|8996|8997|8984|8985|8986|8962|8963|8964|8218|8166|8199|8177|8155|8148|8149|8150|8137|8138|8139|8115|8116|8117|8460|8449|8408|8441|8430|8419|8397|8390|8391|8392|8379|8380|8381|8357|8358|8359|13018|13019|13020|12171|12172|12413|12414|12415|14349|14350|13744|13745|11687|11688|11689|10840|10841|11082|11083|11084|2370|2371|1765|1766|7694|7695|7696|6847|6848|7089|7090|7091|5032|5033|5034|4185|4186|4427|4428|4429|9067|9056|9014|9015|9016|9025|9026|9027|9003|9004|9005|8220|8167|8168|8178|8179|8156|8157|8462|8451|8409|8410|8411|8420|8421|8422|8398|8399|8400|9047|9048|9049|9036|9037|8200|8201|8442|8443|8444|8431|8432|2135|13012|13021|13022|13023|13001|12165|12174|12175|12176|12154|12407|12416|12417|12418|12396|10405|10394|9558|9800|9789|14343|14352|14353|14354|14332|13738|13747|13748|13749|13727|11681|11690|11691|11692|10834|10843|10844|10845|11076|11085|11086|11087|2364|2373|2374|2375|1759|1768|1769|1770|7688|7697|7698|7699|7677|6841|6850|6851|6852|6830|7083|7092|7093|7094|7072|5026|5035|5036|5037|5015|4179|4188|4189|4190|4168|4421|4430|4431|4432|4410|9068|9057|9017|9018|9019|9028|9029|9030|9006|9007|9008|8221|8170|8171|8172|8181|8182|8183|8159|8160|8161|8463|8452|8412|8413|8414|8423|8424|8425|8401|8402|8403|9069|9070|9071|9058|9059|8222|8223|8464|8465|8466|8453|8454|1404|13067|13056|13045|13034|12220|12198|12462|12451|12440|12429|14398|14376|13793|13771|11736|11725|11714|11703|10889|10867|11131|11120|11109|11098|6412|6401|6390|6379|5565|5543|5807|5796|5785|5774|2419|2397|1814|1792|7743|7732|7721|7710|6896|6874|7138|7127|7116|7105|3750|3739|3728|3717|2903|2881|3145|3134|3123|3112|5081|5070|5059|5048|4234|4212|4476|4465|4454|4443|9072|9073|9074|9061|9062|9063|9050|9051|9052|9039|9040|9041|8225|8226|8227|8203|8204|8205|8467|8468|8469|8456|8457|8458|8445|8446|8447|8434|8435|8436|10248|2258|2218|13815|14115|14113|14236|14234|1836|2136|2134|8549|8547|13861|593|2157|2614|10270|14208|2009|2108|2280|2240|2259|2251|2229|14114|14235|8548|9874|13863|13383|14137|14135|14065|14043|14258|14256|14186|14164|1884|2158|2156|2086|2064|8571|8569|8499|8477|5881|1418|10127|14116|14076|14237|14197|2137|2097|3219|8550|8510|8070|11579|2273|2260|2261|2262|13864|13826|13804|14136|14257|1885|1869|1847|1825|2281|8570|14472|14593|2493|6134|6255|2628|9888|13837|13397|14117|14238|1858|1440|2138|8551|9159|9280|12536|10149|13865|13866|13867|13988|14138|14098|14109|14087|14259|14219|14230|13625|11205|1886|1887|1888|2159|2119|2130|1646|7212|4550|8572|8532|8543|8521|8092|11601|2295|2282|2283|2284|12789|12910|14131|14118|14119|14120|14252|14239|14240|14241|14486|14607|11458|6156|6277|2152|2139|2140|2141|2507|2650|7465|7586|3494|3472|3615|3593|4803|4924|8565|8552|8553|8554|8675|8796|8917|8312|9910|13859|13868|13869|13870|13848|13419|14139|14260|1880|1889|1890|1891|2160|8573|9181|9302|12811|12932|14153|14140|14141|14142|14274|14261|14262|14263|14508|14629|11480|2174|2161|2162|2163|2529|7487|7608|4825|4946|8587|8574|8575|8576|8697|8818|8939|8334|12572|12550|13914|13903|13892|13881|14024|14002|14143|14144|14145|14121|14122|14123|14264|14265|14266|14242|14243|14244|13661|13639|11241|11219|5917|5895|1935|1924|1913|1902|2045|2023|2164|2165|2166|2142|2143|2144|2285|2286|2287|2263|2264|2265|1682|1660|7248|7226|3255|3233|4586|4564|8577|8578|8579|8555|8556|8557|12638|12878|12874|12875|12879|12880|12873|12876|12872|12877|12871|12870|9855|10042|10031|9987|10020|10009|9996|9992|9993|9997|9998|9991|9994|9990|9995|9989|9988|9976|9965|9954|9932|9943|9371|10095|10091|10092|10096|10097|10090|10093|10089|10094|10088|10087|10282|10278|10279|10283|10284|10277|10280|10276|10281|10275|10274|10271|10267|10268|10272|10273|10266|10269|10265|10264|10263|10227|10223|10224|10228|10229|10222|10225|10221|10226|10220|10219|10260|10256|10257|10261|10262|10255|10258|10254|10259|10253|10252|10249|10245|10246|10250|10251|10244|10247|10243|10242|10241|10238|10234|10235|10239|10240|10233|10236|10232|10237|10231|10230|10216|10212|10213|10217|10218|10211|10214|10210|10215|10209|10208|10205|10201|10202|10206|10207|10200|10203|10199|10204|10198|10197|10194|10190|10191|10195|10196|10189|10192|10188|10193|10187|10186|10172|10168|10169|10173|10174|10167|10170|10166|10171|10165|10164|10183|10179|10180|10184|10185|10178|10181|10177|10182|10176|10175|10460|9613|10581|13969|14209|14205|14206|14210|14211|14204|14207|14203|14202|14201|11186|11373|11362|11318|11351|11340|11327|11323|11324|11328|11329|11322|11325|11321|11326|11320|11319|11307|11296|11285|11263|11274|10702|11426|11422|11423|11427|11428|11421|11424|11420|11425|11419|11418|11613|11609|11610|11614|11615|11608|11611|11607|11612|11606|11605|11602|11598|11599|11603|11604|11597|11600|11596|11595|11594|11558|11554|11555|11559|11560|11553|11556|11552|11557|11551|11550|11591|11587|11588|11592|11593|11586|11589|11585|11590|11584|11583|11580|11576|11577|11581|11582|11575|11578|11574|11573|11572|11569|11565|11566|11570|11571|11564|11567|11563|11568|11562|11561|11547|11543|11544|11548|11549|11542|11545|11541|11546|11540|11539|11536|11532|11533|11537|11538|11531|11534|11530|11535|11529|11528|11525|11521|11522|11526|11527|11520|11523|11519|11524|11518|11517|11503|11499|11500|11504|11505|11498|11501|11497|11502|11496|11495|11514|11510|11511|11515|11516|11509|11512|11508|11513|11507|11506|11791|10944|11912|5983|6223|6219|6220|6224|6225|6218|6221|6217|6222|6216|6215|659|899|895|896|900|901|894|897|893|898|892|891|2056|2001|2034|2010|2006|2007|2011|2012|2005|2008|2004|2003|2002|1990|1979|1968|1946|1957|1385|2109|2105|2106|2110|2111|2104|2107|2103|2102|2101|2296|2292|2293|2297|2298|2291|2294|2290|2289|2288|2241|2237|2238|2242|2243|2236|2239|2235|2234|2233|2274|2270|2271|2275|2276|2269|2272|2268|2267|2266|2252|2248|2249|2253|2254|2247|2250|2246|2245|2244|2230|2226|2227|2231|2232|2225|2228|2224|2223|2222|2219|2215|2216|2220|2221|2214|2217|2213|2212|2211|2208|2204|2205|2209|2210|2203|2206|2202|2201|2200|2186|2182|2183|2187|2188|2181|2184|2180|2179|2178|2197|2193|2194|2198|2199|2192|2195|2191|2190|2189|2474|1627|2595|7314|7554|7550|7551|7555|7556|7549|7552|7548|7553|7547|7546|3321|3561|3557|3558|3562|3563|3556|3559|3555|3560|3554|3553|4652|4892|4888|4889|4893|4894|4887|4890|4886|4891|4885|4884|8643|8639|8640|8644|8645|8638|8641|8637|8642|8636|8635|8885|8881|8882|8886|8887|8880|8883|8879|8884|8878|8877".split_string("\\|");
  636. __hacky_optimal_configuration_order[1]["N/A"]["schematics"] = "1838|1816|1827|1475|1453|1464|1432|1430|1410|1408|1860|1360|1338|1349|1497|1382|1355|1353|1333|1331|1344|1342|45|1377|1375|5469|5467|5447|5445|5458|5456|10672|10670|10650|10648|10661|10659|1871|1882|1849|1431|1409|1508|1519|1486|23|1|12|1433|1411|2642|2640|2620|2618|2036|2014|1393|1404|1371|2278|2256|2570|2548|2559|10694|10692|1388|1386|1399|1397|1366|1364|1356|1334|1345|2565|2563|2543|2541|2554|2552|5491|5489|9340|9318|9329|100|78|1255|10792|10770|10781|2322|2300|2311|1717|1695|1706|13410|13388|56|67|34|1233|1211|1222|9362|1354|1332|1343|10814|2344|1739|1378|2587|2585|12025|12023|10705|10703|10716|10714|10683|10681|10673|10651|10662|11882|11880|11860|11858|11871|11869|5832|5830|5810|5808|5821|5819|5953|5951|5931|5929|5942|5940|5370|5368|6195|6193|6173|6171|6184|6182|2708|2706|4039|4037|5909|5907|5887|5885|5546|5544|5524|5522|12003|12001|11981|11979|11992|11990|5348|5346|5326|5324|5337|5335|2686|2684|2664|2662|2675|2673|4017|4015|3995|3993|4006|4004|2592|6338|6336|5502|5500|5513|5511|5480|5478|5470|5448|5459|5733|5731|6316|6314|6294|6292|6305|6303|5711|5709|5689|5687|5700|5698|1959|1937|1948|1376|2201|2179|2190|12123|12101|12112|11639|11617|11628|11034|11012|11023|5468|5446|5457|2806|2784|2795|4137|4115|4126|167|165|5837|5815|5826|5474|5452|5463|11232|11210|10869|10847|1926|1915|1904|1893|2157|2135|2399|2377|1563|1552|1541|1530|2520|2498|1673|1651|2641|2619|1794|1772|46|44|145|143|123|121|134|132|1839|1837|1817|1815|1828|1826|1476|1474|1454|1452|1465|1463|9373|9384|9351|10550|10528|10539|13333|13311|13322|10671|10649|10660|1310|1288|24|22|2|0|13|11|10695|11904|11902|5975|5973|6217|6215|10749|10747|10727|10725|5854|5852|1443|1441|1389|1421|1419|1400|1367|2598|2596|2609|2607|2576|2574|2566|2544|2555|111|89|1266|1277|1244|11661|11056|12145|10825|10836|10803|5490|2355|2366|2333|1750|1761|1728|2828|4159|5492|2643|2621|10572|11276|11254|11265|10693|11518|11496|11507|9417|9395|13355|11155|11133|11144|1387|1398|1365|2080|2058|2069|2443|2421|2432|1596|1574|1585|2564|2542|2553|1861|1859|1498|1496|12036|12034|12047|12045|12014|12012|12004|11982|11993|13213|13211|13191|13189|13202|13200|5381|5379|5392|5390|5359|5357|5349|5327|5338|6074|6072|6052|6050|6063|6061|6437|6435|6415|6413|6426|6424|5590|5588|5568|5566|5579|5577|6558|6556|6536|6534|6547|6545|2719|2717|2730|2728|2697|2695|2687|2665|2676|3896|3894|3874|3872|3885|3883|4050|4048|4061|4059|4028|4026|4018|3996|4007|5227|5225|5205|5203|5216|5214|10754|10732|5859|5496|1448|1435|1437|1426|1413|1415|2603|2614|2581|12080|12078|12058|12056|12026|13235|13233|10760|10758|10706|10738|10736|10717|10684|11915|11913|11926|11924|11893|11891|11883|11861|11872|5865|5863|5876|5874|5843|5841|5833|5811|5822|5986|5984|5997|5995|5964|5962|5954|5932|5943|5425|5423|5403|5401|5371|6096|6094|6228|6226|6239|6237|6206|6204|6196|6174|6185|6459|6457|5612|5610|6580|6578|2763|2761|2741|2739|2709|3918|3916|4094|4092|4072|4070|4040|5249|5247|585|583|563|561|222|220|200|198|9462|9460|9440|9438|9451|9449|168|9341|9339|9319|9317|9330|9328|530|528|101|99|79|77|47|1256|1254|6349|6347|6360|6358|6327|6325|6317|6295|6306|5744|5742|5755|5753|5722|5720|5712|5690|5701|12563|12541|12200|12178|14620|14598|5908|5886|5545|5523|3246|3224|2883|2861|4577|4555|4214|4192|508|506|486|484|497|495|629|627|607|605|618|616|57|55|68|66|35|33|25|3|14|871|869|849|847|860|858|1234|1232|1212|1210|1223|1221|1014|1012|178|176|189|187|156|154|146|124|135|409|407|2588|1434|1412|6393|6391|6371|6369|6339|5557|5555|5503|5535|5533|5514|5481|5788|5786|5766|5764|5734|11177|10677|10655|10666|1992|2003|1981|1970|1358|1336|1347|2102|2234|2245|2223|2212|2465|1618|2586|12992|12156|12167|12134|12387|11672|11683|11650|11067|11078|11045|6337|5501|5512|5479|5732|3675|2839|2850|2817|3070|5006|4170|4181|4148|4401|12486|12464|12475|12607|12585|12596|12024|12849|12827|12838|9428|9406|10583|10594|10561|13366|13377|13344|14543|14521|14532|10704|10715|10682|11397|11375|11386|11760|11738|11749|10913|10891|10902|11881|11859|11870|5831|5809|5820|5952|5930|5941|5369|6194|6172|6183|6700|3169|3147|3158|3290|3268|3279|2707|3532|3510|3521|4500|4478|4489|4621|4599|4610|4038|4863|4841|4852|8031|12970|12948|12959|12365|12343|12354|6315|6293|6304|5710|5688|5699|3653|3631|3642|3048|3026|3037|4984|4962|4973|4379|4357|4368|1872|1870|1883|1881|1850|1848|1840|1818|1829|1509|1507|1520|1518|1487|1485|1477|1455|1466|1357|1335|1346|12002|11980|11991|5347|5325|5336|1321|1299|6678|6656|6667|2685|2663|2674|4016|3994|4005|8009|7987|7998|9363|9361|5910|5888|5547|5525|651|649|893|891|10793|10791|10771|10769|10782|10780|2323|2321|2301|2299|2312|2310|1718|1716|1696|1694|1707|1705|9484|9482|992|990|970|968|981|979|387|385|365|363|376|374|10750|10728|11959|11957|11937|11935|5855|6030|6028|6008|6006|6272|6270|6250|6248|1444|1422|2653|2651|2599|2631|2629|2610|2577|11905|5976|6218|10699|1380|12085|12063|5870|5881|5848|5430|5408|5507|5518|5485|2768|2746|4099|4077|12629|12008|11986|11997|12871|11309|11320|11298|11287|10675|10653|10664|11419|11551|11562|11540|11529|11782|10935|11903|5974|5353|5331|5342|6216|3312|2691|2669|2680|3554|4643|4022|4000|4011|4885|1439|1436|1417|1414|6321|6299|6310|5472|5450|5461|5716|5694|5705|1960|1958|1938|1936|1949|1947|2202|2200|2180|2178|2191|2189|541|539|552|550|519|517|509|487|498|662|660|673|671|640|638|630|608|619|112|110|58|90|88|69|36|772|770|904|902|915|913|882|880|872|850|861|1135|1133|288|286|1267|1265|1278|1276|1245|1243|1235|1213|1224|9825|9823|9803|9801|9814|9812|9374|9372|9385|9383|9352|9350|9342|9320|9331|10551|10549|10529|10527|10540|10538|13334|13332|13312|13310|13323|13321|531|706|704|684|682|102|80|948|946|926|924|1311|1309|1289|1287|1257|12508|10627|10605|14565|11188|11199|11166|10748|10726|5853|1442|1420|1362|1359|1340|1337|1351|1348|2113|2124|2091|2476|2487|2454|1629|1640|1607|2597|2608|2575|3191|4522|11716|11694|10880|10858|11111|11089|2410|2388|1805|1783|1379|13818|13816|13796|13794|13807|13805|13455|13453|13433|13431|13444|13442|586|564|223|201|10674|10652|10663|9902|9900|9880|9878|9539|9537|9517|9515|13840|13838|13411|13409|13389|13387|13477|13475|10309|10307|10287|10285|10298|10296|9704|9702|9682|9680|9693|9691|1069|1067|1047|1045|1015|233|231|179|211|209|190|157|464|462|442|440|410|12091|12089|12037|12069|12067|12048|12015|13246|13244|13257|13255|13224|13222|13214|13192|13203|5436|5434|5382|5414|5412|5393|5360|6107|6105|6118|6116|6085|6083|6075|6053|6064|6470|6468|6481|6479|6448|6446|6438|6416|6427|5623|5621|5634|5632|5601|5599|5591|5569|5580|6591|6589|6602|6600|6569|6567|6559|6537|6548|2774|2772|2720|2752|2750|2731|2698|3929|3927|3940|3938|3907|3905|3897|3875|3886|4105|4103|4051|4083|4081|4062|4029|5260|5258|5271|5269|5238|5236|5228|5206|5217|5471|5449|5460|1862|2037|2035|2015|2013|2279|2277|2257|2255|1499|12124|12122|12102|12100|12113|12111|9495|9493|9506|9504|9473|9471|9463|9441|9452|11640|11638|11618|11616|11629|11627|11035|11033|11013|11011|11024|11022|2807|2805|2785|2783|2796|2794|4138|4136|4116|4114|4127|4125|10815|10813|2345|2343|1740|1738|12081|12059|13290|13288|13268|13266|13236|10761|10739|11970|11968|11916|11948|11946|11927|11894|5920|5918|5866|5898|5896|5877|5844|6041|6039|5987|6019|6017|5998|5965|5426|5404|6151|6149|6129|6127|6097|6283|6281|6229|6261|6259|6240|6207|6514|6512|6492|6490|6460|5667|5665|5645|5643|5613|6635|6633|6613|6611|6581|2764|2742|3973|3971|3951|3949|3919|4095|4073|5304|5302|5282|5280|5250|9946|9944|9924|9922|9935|9933|10188|10186|10166|10164|10177|10175|652|894|6404|6402|6350|6382|6380|6361|6328|5799|5797|5745|5777|5775|5756|5723|9847|9845|9364|10573|10571|11277|11275|11255|11253|11266|11264|11519|11517|11497|11495|11508|11506|9418|9416|9396|9394|13356|13354|11156|11154|11134|11132|11145|11143|2081|2079|2059|2057|2070|2068|2444|2442|2422|2420|2433|2431|1597|1595|1575|1573|1586|1584|144|122|133|750|748|728|726|739|737|1113|1111|1091|1089|1102|1100|266|264|244|242|255|253|12035|12046|12013|12728|12706|12717|13091|13069|13080|12244|12222|12233|13212|13190|13201|5380|5391|5358|6073|6051|6062|6436|6414|6425|5589|5567|5578|6557|6535|6546|6711|6722|6689|7888|7866|7877|2718|2729|2696|3411|3389|3400|3774|3752|3763|2927|2905|2916|3895|3873|3884|4049|4060|4027|4742|4720|4731|5105|5083|5094|4258|4236|4247|5226|5204|5215|8042|8053|8020|9219|9197|9208|10331|10329|9726|9724|10696|10697|12519|12530|12497|12640|12651|12618|12079|12057|12750|12882|12893|12860|13113|12266|13234|10638|10616|13421|13399|14576|14587|14554|10759|10737|10679|10676|10657|10654|10668|10665|11430|11441|11408|11793|11804|11771|10946|10957|10924|11914|11925|11892|5864|5875|5842|5985|5996|5963|5424|5402|6095|6227|6238|6205|6458|5611|6579|6755|6733|7910|3202|3213|3180|3323|3334|3301|2762|2740|3433|3565|3576|3543|3796|2949|3917|4533|4544|4511|4654|4665|4632|4093|4071|4764|4896|4907|4874|5127|4280|5248|8086|8064|9241|1025|1023|1036|1034|1003|1001|993|971|982|420|418|431|429|398|396|388|366|377|13003|13014|12981|12398|12409|12376|6348|6359|6326|5743|5754|5721|3686|3697|3664|3081|3092|3059|5017|5028|4995|4412|4423|4390|1390|1401|1368|1361|1363|1339|1341|1350|1352|2567|2545|2556|12030|11353|11331|10710|10721|10688|11595|11573|11887|11865|11876|5958|5936|5947|5375|6200|6178|6189|2047|2025|1391|1402|1384|1381|1369|2289|2267|2568|2546|2557|2713|4044|9485|11662|11660|11057|11055|12146|12144|10826|10824|10837|10835|10804|10802|10794|10772|10783|2356|2354|2367|2365|2334|2332|2324|2302|2313|1751|1749|1762|1760|1729|1727|1719|1697|1708|2829|2827|4160|4158|13047|13025|12211|12189|12442|12420|11727|11705|11122|11100|6392|6370|5556|5534|5476|5473|5454|5451|5465|5462|5787|5765|3730|3708|2894|2872|3125|3103|5061|5039|4225|4203|4456|4434|5493|11233|11231|11211|11209|10870|10868|10848|10846|1927|1925|1916|1914|1873|1905|1903|1894|1892|1884|1851|2158|2156|2136|2134|2400|2398|2378|2376|1564|1562|1553|1551|1510|1542|1540|1531|1529|1521|1488|2521|2519|2499|2497|1674|1672|1652|1650|1795|1793|1773|1771|6343|5494|5738|1438|1440|1416|1418|2644|2622|166|10067|10065|10045|10043|10056|10054|10430|10428|10408|10406|10419|10417|9583|9581|9561|9559|9572|9570|596|594|542|574|572|553|520|717|715|663|695|693|674|641|113|91|827|825|805|803|773|959|957|905|937|935|916|883|1190|1188|1168|1166|1136|343|341|321|319|289|1322|1320|1268|1300|1298|1279|1246|6679|6677|6657|6655|6668|6666|8010|8008|7988|7986|7999|7997|6394|6372|5558|5536|5789|5767|12487|12485|12465|12463|12476|12474|12608|12606|12586|12584|12597|12595|12850|12848|12828|12826|12839|12837|9858|9856|9869|9867|9836|9834|9826|9804|9815|9429|9427|9375|9407|9405|9386|9353|10584|10582|10595|10593|10562|10560|10552|10530|10541|13939|13937|13917|13915|13928|13926|13367|13365|13378|13376|13345|13343|13335|13313|13324|14181|14179|14159|14157|14170|14168|14544|14542|14522|14520|14533|14531|11398|11396|11376|11374|11387|11385|11761|11759|11739|11737|11750|11748|10914|10912|10892|10890|10903|10901|707|685|949|927|1312|1290|6701|6699|3170|3168|3148|3146|3159|3157|3291|3289|3269|3267|3280|3278|3533|3531|3511|3509|3522|3520|4501|4499|4479|4477|4490|4488|4622|4620|4600|4598|4611|4609|4864|4862|4842|4840|4853|4851|8032|8030|12971|12969|12949|12947|12960|12958|12366|12364|12344|12342|12355|12353|10342|10340|10353|10351|10320|10318|10310|10288|10299|9737|9735|9748|9746|9715|9713|9705|9683|9694|14302|14300|14280|14278|14291|14289|13697|13695|13675|13673|13686|13684|1070|1048|234|212|465|443|6800|6798|6778|6776|6789|6787|3654|3652|3632|3630|3643|3641|3049|3047|3027|3025|3038|3036|4985|4983|4963|4961|4974|4972|4380|4378|4358|4356|4369|4367|8131|8129|8109|8107|8120|8118|12005|11983|11994|5350|5328|5339|2688|2666|2677|4019|3997|4008|11964|11942|6035|6013|6277|6255|2658|2645|2647|2636|2623|2625|584|562|221|199|11178|11176|1993|1991|2004|2002|1982|1980|1971|1969|1961|1939|1950|2103|2101|2235|2233|2246|2244|2224|2222|2213|2211|2203|2181|2192|2466|2464|1619|1617|12006|11984|11995|5351|5329|5340|2689|2667|2678|4020|3998|4009|12993|12991|12157|12155|12168|12166|12135|12133|12125|12103|12114|12388|12386|10386|10384|10364|10362|9550|9548|9496|9528|9526|9507|9474|9781|9779|9759|9757|14324|14322|13719|13717|11673|11671|11684|11682|11651|11649|11641|11619|11630|11068|11066|11079|11077|11046|11044|11036|11014|11025|6822|6820|3676|3674|2840|2838|2851|2849|2818|2816|2808|2786|2797|3071|3069|5007|5005|4171|4169|4182|4180|4149|4147|4139|4117|4128|4402|4400|8153|8151|13851|13849|13862|13860|13829|13827|13819|13797|13808|13488|13486|13499|13497|13466|13464|13456|13434|13445|12027|10707|10718|10685|10678|10680|10656|10658|10667|10669|11884|11862|11873|5834|5812|5823|5955|5933|5944|5372|6197|6175|6186|2710|4041|6318|6296|6307|5713|5691|5702|783|781|794|792|761|759|751|729|740|1146|1144|1157|1155|1124|1122|1114|1092|1103|299|297|310|308|277|275|267|245|256|12041|12052|12028|12019|13218|13196|13207|11364|11342|10708|10719|10701|10698|10686|11606|11584|11885|11863|11874|5835|5813|5824|5956|5934|5945|5386|5397|5373|5364|6079|6057|6068|6198|6176|6187|6442|6420|6431|5595|5573|5584|6563|6541|6552|2724|2735|2711|2702|3901|3879|3890|4055|4066|4042|4033|5232|5210|5221|1383|1385|2589|1013|177|188|155|408|6340|5504|5515|5482|5475|5477|5453|5455|5464|5466|5735|10816|2346|1741|12564|12562|12542|12540|12201|12199|12179|12177|9903|9881|9540|9518|13841|14016|14014|13994|13992|13412|13390|14258|14256|14236|14234|13478|14621|14619|14599|14597|3247|3245|3225|3223|2884|2882|2862|2860|4578|4576|4556|4554|4215|4213|4193|4191|12684|12662|12926|12904|11243|11221|11474|11452|11837|11815|10990|10968|11958|11936|6029|6007|6271|6249|6319|6297|6308|5714|5692|5703|1395|1392|1406|1403|1373|1370|2168|2146|2531|2509|1684|1662|2652|2630|2572|2569|2550|2547|2561|2558|3367|3345|3609|3587|4698|4676|4940|4918|9979|9977|9990|9988|9968|9966|9957|9955|9947|9925|9936|10089|10087|10221|10219|10232|10230|10210|10208|10199|10197|10189|10167|10178|10452|10450|9605|9603|11960|11938|6031|6009|6273|6251|2654|2632|507|485|496|628|606|617|870|848|859|991|969|980|386|364|375|1080|1078|1026|1058|1056|1037|1004|475|473|421|453|451|432|399|12092|12070|13301|13299|13247|13279|13277|13258|13225|5437|5415|6162|6160|6108|6140|6138|6119|6086|6525|6523|6471|6503|6501|6482|6449|5678|5676|5624|5656|5654|5635|5602|6646|6644|6592|6624|6622|6603|6570|2775|2753|3984|3982|3930|3962|3960|3941|3908|4106|4084|5315|5313|5261|5293|5291|5272|5239|535|106|84|172|11909|5980|6222|2590|12509|12507|9419|9397|10628|10626|10606|10604|13357|14566|14564|11189|11187|11200|11198|11167|11165|11157|11135|11146|2114|2112|2125|2123|2092|2090|2082|2060|2071|2477|2475|2488|2486|2455|2453|2445|2423|2434|1630|1628|1641|1639|1608|1606|1598|1576|1587|3192|3190|4523|4521|12630|12628|12872|12870|9848|10023|10021|10001|9999|10265|10263|10243|10241|10574|13961|13959|14203|14201|11310|11308|11321|11319|11299|11297|11288|11286|11278|11256|11267|11420|11418|11552|11550|11563|11561|11541|11539|11530|11528|11520|11498|11509|11783|11781|10936|10934|3313|3311|3555|3553|4644|4642|4886|4884|5911|5889|6354|6365|6341|6332|5548|5505|5526|5516|5483|5749|5760|5736|5727|5498|5495|513|491|502|150|128|139|10332|9727|12090|12068|12010|12007|11988|11985|11999|11996|12761|12772|12739|13124|13135|13102|12277|12288|12255|13245|13256|13223|5435|5413|5355|5352|5333|5330|5344|5341|6106|6117|6084|6469|6480|6447|5622|5633|5600|6590|6601|6568|6766|6744|7921|7932|7899|2773|2751|2693|2690|2671|2668|2682|2679|3444|3455|3422|3807|3818|3785|2960|2971|2938|3928|3939|3906|4104|4082|4024|4021|4002|3999|4013|4010|4775|4786|4753|5138|5149|5116|4291|4302|4269|5259|5270|5237|8097|8075|9252|9263|9230|12729|12727|12707|12705|12718|12716|13092|13090|13070|13068|13081|13079|12245|12243|12223|12221|12234|12232|10100|10098|10111|10109|10078|10076|10068|10046|10057|10463|10461|10474|10472|10441|10439|10431|10409|10420|9616|9614|9627|9625|9594|9592|9584|9562|9573|14060|14058|14038|14036|14049|14047|14423|14421|14401|14399|14412|14410|13576|13574|13554|13552|13565|13563|597|575|718|696|828|806|960|938|1191|1169|344|322|1323|1301|7163|7161|7141|7139|7152|7150|7284|7282|7262|7260|7273|7271|6712|6710|6723|6721|6690|6688|6680|6658|6669|7526|7524|7504|7502|7515|7513|7889|7887|7867|7865|7878|7876|3412|3410|3390|3388|3401|3399|3775|3773|3753|3751|3764|3762|2928|2926|2906|2904|2917|2915|4743|4741|4721|4719|4732|4730|5106|5104|5084|5082|5095|5093|4259|4257|4237|4235|4248|4246|8494|8492|8472|8470|8483|8481|8615|8613|8593|8591|8604|8602|8043|8041|8054|8052|8021|8019|8011|7989|8000|8857|8855|8835|8833|8846|8844|9220|9218|9198|9196|9209|9207|9461|9439|9450|2038|2016|2280|2258|529|650|29|7|18|892|838|836|784|816|814|795|762|1201|1199|1147|1179|1177|1158|1125|354|352|300|332|330|311|278|12147|11717|11715|11695|11693|10881|10879|10827|10859|10857|10838|10805|11112|11110|11090|11088|2411|2409|2357|2389|2387|2368|2335|1806|1804|1752|1784|1782|1763|1730|2830|4161|11663|11058|10700|10702|11906|5977|6219|10751|10729|5856|1445|1394|1396|1423|1405|1407|1372|1374|2600|2611|2578|2571|2573|2549|2551|2560|2562|12520|12518|12531|12529|12498|12496|12488|12466|12477|12641|12639|12652|12650|12619|12617|12609|12587|12598|12751|12749|12883|12881|12894|12892|12861|12859|12851|12829|12840|13114|13112|12267|12265|9913|9911|9859|9891|9889|9870|9837|9430|9408|10144|10142|10122|10120|10507|10505|10485|10483|9660|9658|9638|9636|10639|10637|10585|10617|10615|10596|10563|13972|13970|13983|13981|13950|13948|13940|13918|13929|13422|13420|13368|13400|13398|13379|13346|14082|14080|14214|14212|14225|14223|14192|14190|14182|14160|14171|14445|14443|13598|13596|14577|14575|14588|14586|14555|14553|14545|14523|14534|11431|11429|11442|11440|11409|11407|11399|11377|11388|11794|11792|11805|11803|11772|11770|11762|11740|11751|10947|10945|10958|10956|10925|10923|10915|10893|10904|7185|7183|6756|6754|6734|6732|6702|7911|7909|3203|3201|3214|3212|3181|3179|3171|3149|3160|3324|3322|3335|3333|3302|3300|3292|3270|3281|3434|3432|3566|3564|3577|3575|3544|3542|3534|3512|3523|3797|3795|2950|2948|4534|4532|4545|4543|4512|4510|4502|4480|4491|4655|4653|4666|4664|4633|4631|4623|4601|4612|4765|4763|4897|4895|4908|4906|4875|4873|4865|4843|4854|5128|5126|4281|4279|8516|8514|8087|8085|8065|8063|8033|9242|9240|12574|12552|12695|12673|12032|12029|12805|12783|12937|12915|13168|13146|12321|12299|13289|13267|14631|14609|10712|10709|10723|10720|10690|10687|11485|11463|11848|11826|11001|10979|11969|11947|11889|11886|11867|11864|11878|11875|5919|5897|5839|5836|5817|5814|5828|5825|6040|6018|5960|5957|5938|5935|5949|5946|5377|5374|6150|6128|6282|6260|6202|6199|6180|6177|6191|6188|6513|6491|5666|5644|6634|6612|7965|7943|3257|3235|3378|3356|2715|2712|3488|3466|3620|3598|3851|3829|3004|2982|3972|3950|4588|4566|4709|4687|4046|4043|4819|4797|4951|4929|5182|5160|4335|4313|5303|5281|9296|9274|13058|13036|12453|12431|6403|6381|6323|6320|6301|6298|6312|6309|5798|5776|5718|5715|5696|5693|5707|5704|3741|3719|3136|3114|5072|5050|4467|4445|13291|13269|11971|11949|5921|5899|6042|6020|6152|6130|6284|6262|6515|6493|5668|5646|6636|6614|3974|3952|5305|5283|13295|13273|5925|5912|5914|5903|5890|5892|6156|6134|6398|6376|5562|5549|5551|5540|5527|5529|6519|6497|5672|5650|6640|6618|5793|5771|3978|3956|5309|5287|13004|13002|13015|13013|12982|12980|12972|12950|12961|12399|12397|12410|12408|12377|12375|12367|12345|12356|10397|10395|10343|10375|10373|10354|10321|9792|9790|9738|9770|9768|9749|9716|14335|14333|14346|14344|14313|14311|14303|14281|14292|13730|13728|13741|13739|13708|13706|13698|13676|13687|7669|7667|6833|6831|6844|6842|6811|6809|6801|6779|6790|7064|7062|3687|3685|3698|3696|3665|3663|3655|3633|3644|3082|3080|3093|3091|3060|3058|3050|3028|3039|5018|5016|5029|5027|4996|4994|4986|4964|4975|4413|4411|4424|4422|4391|4389|4381|4359|4370|9000|8998|8164|8162|8175|8173|8142|8140|8132|8110|8121|8395|8393|2649|2646|2627|2624|1081|1059|476|454|7647|7645|7625|7623|7636|7634|7042|7040|7020|7018|7031|7029|8978|8976|8956|8954|8967|8965|8373|8371|8351|8349|8362|8360|13817|13795|13806|13454|13432|13443|9483|11907|5978|6220|12038|12049|12016|12009|12011|11987|11989|11998|12000|13215|13193|13204|5383|5394|5361|5354|5356|5332|5334|5343|5345|6076|6054|6065|6439|6417|6428|5592|5570|5581|6560|6538|6549|2721|2732|2699|2692|2694|2670|2672|2681|2683|3898|3876|3887|4052|4063|4030|4023|4025|4001|4003|4012|4014|5229|5207|5218|10308|10286|10297|9703|9681|9692|1068|1046|232|210|463|441|1024|1035|1002|419|430|397|11179|11354|11352|11332|11330|11596|11594|11574|11572|2048|2046|1994|2026|2024|2005|1983|1972|2104|2290|2288|2236|2268|2266|2247|2225|2214|2467|1620|5497|5499|6405|6383|5800|5778|51|13240|10765|10752|10743|10730|11920|11931|11898|5857|5991|6002|5969|6101|6233|6244|6211|6464|5617|6585|1446|1424|2601|2612|2594|2591|2579|3923|5254|540|551|518|661|672|639|771|903|914|881|1134|287|11234|11212|10871|10849|1928|1917|1906|1895|2159|2137|2401|2379|1565|1554|1543|1532|2522|2500|1675|1653|1796|1774|749|727|738|1112|1090|1101|265|243|254|6345|6342|5509|5506|5520|5517|5487|5484|5740|5737|13048|13046|13026|13024|12994|12212|12210|12158|12190|12188|12169|12136|12443|12441|12421|12419|12389|10387|10365|9551|9529|9782|9760|14325|13720|11728|11726|11674|11706|11704|11685|11652|11123|11121|11069|11101|11099|11080|11047|6823|3731|3729|3709|3707|3677|2895|2893|2841|2873|2871|2852|2819|3126|3124|3104|3102|3072|5062|5060|5040|5038|5008|4226|4224|4172|4204|4202|4183|4150|4457|4455|4435|4433|4403|8154|10034|10032|9980|10012|10010|9991|9969|9958|10090|10276|10274|10222|10254|10252|10233|10211|10200|10453|9606|7306|7304|7548|7546|8637|8635|8879|8877|13906|13904|13895|13893|13852|13884|13882|13873|13871|13863|13830|14137|14135|14115|14113|14379|14377|14357|14355|13543|13541|13532|13530|13489|13521|13519|13510|13508|13500|13467|14500|14498|14478|14476|13653|13651|13631|13629|13774|13772|13752|13750|7240|7238|7218|7216|6877|6875|6855|6853|8571|8569|8549|8547|8208|8206|8186|8184|12082|12060|12031|12033|13237|10762|10711|10713|10740|10722|10724|10689|10691|11917|11928|11895|11888|11890|11866|11868|11877|11879|5867|5878|5845|5838|5840|5816|5818|5827|5829|5988|5999|5966|5959|5961|5937|5939|5948|5950|5427|5405|5376|5378|6098|6230|6241|6208|6201|6203|6179|6181|6190|6192|6461|5614|6582|2765|2743|2714|2716|3920|4096|4074|4045|4047|5251|6351|6362|6329|6322|6324|6300|6302|6311|6313|5746|5757|5724|5717|5719|5695|5697|5706|5708|12039|12050|12017|13216|13194|13205|5384|5395|5362|6077|6055|6066|6440|6418|6429|5593|5571|5582|6561|6539|6550|2722|2733|2700|3899|3877|3888|4053|4064|4031|5230|5208|5219|546|557|524|183|194|161|1965|1943|1954|2207|2185|2196|997|975|986|148|126|137|392|370|381|10330|9725|1019|170|414|27|5|16|9830|9808|9819|9467|9445|9456|13339|13317|13328|711|689|953|931|1316|1294|9945|9923|9934|10187|10165|10176|634|612|623|62|73|49|40|876|854|865|1239|1217|1228|9901|9879|9538|9516|13839|13476|147|125|136|9494|9505|9472|169|12510|12685|12683|12663|12661|12927|12925|12905|12903|10629|10607|14567|11244|11242|11190|11222|11220|11201|11168|11475|11473|11453|11451|11838|11836|11816|11814|10991|10989|10969|10967|2169|2167|2115|2147|2145|2126|2093|2532|2530|2478|2510|2508|2489|2456|1685|1683|1631|1663|1661|1642|1609|3193|3368|3366|3346|3344|3610|3608|3588|3586|4524|4699|4697|4677|4675|4941|4939|4919|4917|26|4|15|12631|12873|10024|10002|10266|10244|13962|14204|11365|11363|11311|11343|11341|11322|11300|11289|11421|11607|11605|11553|11585|11583|11564|11542|11531|11784|10937|3314|3556|4645|4887|839|817|1202|1180|355|333|7405|7403|7383|7381|7394|7392|7768|7766|7746|7744|7757|7755|6921|6919|6899|6897|6910|6908|8736|8734|8714|8712|8725|8723|9099|9097|9077|9075|9088|9086|8252|8250|8230|8228|8241|8239|48|2648|2650|2626|2628|12762|12760|12773|12771|12740|12738|12730|12708|12719|13125|13123|13136|13134|13103|13101|13093|13071|13082|12278|12276|12289|12287|12256|12254|12246|12224|12235|10155|10153|10101|10133|10131|10112|10079|10518|10516|10464|10496|10494|10475|10442|9671|9669|9617|9649|9647|9628|9595|14093|14091|14104|14102|14071|14069|14061|14039|14050|14456|14454|14467|14465|14434|14432|14424|14402|14413|13609|13607|13620|13618|13587|13585|13577|13555|13566|7196|7194|7207|7205|7174|7172|7164|7142|7153|7317|7315|7328|7326|7295|7293|7285|7263|7274|6767|6765|6713|6745|6743|6724|6691|7427|7425|7559|7557|7570|7568|7537|7535|7527|7505|7516|7790|7788|6943|6941|7922|7920|7933|7931|7900|7898|7890|7868|7879|3445|3443|3456|3454|3423|3421|3413|3391|3402|3808|3806|3819|3817|3786|3784|3776|3754|3765|2961|2959|2972|2970|2939|2937|2929|2907|2918|4776|4774|4787|4785|4754|4752|4744|4722|4733|5139|5137|5150|5148|5117|5115|5107|5085|5096|4292|4290|4303|4301|4270|4268|4260|4238|4249|8527|8525|8538|8536|8505|8503|8495|8473|8484|8648|8646|8659|8657|8626|8624|8616|8594|8605|8098|8096|8044|8076|8074|8055|8022|8758|8756|8890|8888|8901|8899|8868|8866|8858|8836|8847|9121|9119|8274|8272|9253|9251|9264|9262|9231|9229|9221|9199|9210|9824|9802|9813|705|683|947|925|12565|12543|12202|12180|14017|13995|14259|14237|14622|14600|3248|3226|2885|2863|4579|4557|4216|4194|5916|5913|5894|5891|5553|5550|5531|5528|12096|12083|12074|12061|13251|13262|13238|13229|10763|10741|11918|11929|11911|11908|11896|5868|5879|5846|5989|6000|5982|5979|5967|5441|5428|5419|5406|6112|6123|6099|6090|6231|6242|6224|6221|6209|6475|6486|6462|6453|5628|5639|5615|5606|6596|6607|6583|6574|2779|2766|2757|2744|3934|3945|3921|3912|4110|4097|4088|4075|5265|5276|5252|5243|2593|2595|6395|6373|6344|6346|5559|5508|5510|5537|5519|5521|5486|5488|5790|5768|5739|5741|10756|10753|10734|10731|5861|5858|6352|6363|6330|5747|5758|5725|1450|1447|1428|1425|2605|2602|2616|2613|2583|2580|656|898|1079|1057|152|149|130|127|141|138|474|452|9846|9346|9324|9335|1261|31|28|9|6|20|17|782|793|760|1145|1156|1123|298|309|276|13302|13280|6163|6141|6526|6504|5679|5657|6647|6625|3985|3963|5316|5294|10341|10352|10319|9736|9747|9714|14301|14279|14290|13696|13674|13685|174|171|6799|6777|6788|8130|8108|8119|12043|12040|12054|12051|12021|12018|12816|12794|13179|13157|12332|12310|13300|13278|13220|13217|13198|13195|13209|13206|5388|5385|5399|5396|5366|5363|6161|6139|6081|6078|6059|6056|6070|6067|6524|6502|6444|6441|6422|6419|6433|6430|5677|5655|5597|5594|5575|5572|5586|5583|6645|6623|6565|6562|6543|6540|6554|6551|7976|7954|2726|2723|2737|2734|2704|2701|3499|3477|3862|3840|3015|2993|3983|3961|3903|3900|3881|3878|3892|3889|4057|4054|4068|4065|4035|4032|4830|4808|5193|5171|4346|4324|5314|5292|5234|5231|5212|5209|5223|5220|9307|9285|10066|10044|10055|10429|10407|10418|9582|9560|9571|595|573|716|694|53|50|826|804|958|936|1189|1167|342|320|13850|13861|13828|13487|13498|13465|1841|1819|1830|1478|1456|1467|9852|9489|12575|12573|12521|12553|12551|12532|12499|12696|12694|12642|12674|12672|12653|12620|12806|12804|12784|12782|12752|12938|12936|12884|12916|12914|12895|12862|13169|13167|13147|13145|13115|12322|12320|12300|12298|12268|9914|9892|10145|10123|10508|10486|9661|9639|10640|10618|14027|14025|13973|14005|14003|13984|13951|13423|13401|14083|14269|14267|14215|14247|14245|14226|14193|14446|13599|14632|14630|14578|14610|14608|14589|14556|11486|11484|11432|11464|11462|11443|11410|11849|11847|11795|11827|11825|11806|11773|11002|11000|10948|10980|10978|10959|10926|7186|7361|7359|7339|7337|6757|6735|7603|7601|7581|7579|7966|7964|7944|7942|7912|3258|3256|3204|3236|3234|3215|3182|3379|3377|3325|3357|3355|3336|3303|3489|3487|3467|3465|3435|3621|3619|3567|3599|3597|3578|3545|3852|3850|3830|3828|3798|3005|3003|2983|2981|2951|4589|4587|4535|4567|4565|4546|4513|4710|4708|4656|4688|4686|4667|4634|4820|4818|4798|4796|4766|4952|4950|4898|4930|4928|4909|4876|5183|5181|5161|5159|5129|4336|4334|4314|4312|4282|8517|8692|8690|8670|8668|8088|8066|8934|8932|8912|8910|9297|9295|9275|9273|9243|9423|9401|13361|11161|11139|11150|10798|10776|10787|1842|1844|1820|1822|1831|1833|2086|2064|2075|2328|2306|2317|1479|1481|1457|1459|1468|1470|2449|2427|2438|1602|1580|1591|1723|1701|1712|11718|11696|10882|10860|11113|11091|2412|2390|1807|1785|7680|7678|7691|7689|7658|7656|7648|7626|7637|7075|7073|7086|7084|7053|7051|7043|7021|7032|9011|9009|9022|9020|8989|8987|8979|8957|8968|8406|8404|8417|8415|8384|8382|8374|8352|8363|511|489|500|632|610|621|60|71|38|755|733|744|874|852|863|1118|1096|1107|271|249|260|1237|1215|1226|13059|13057|13005|13037|13035|13016|12983|12454|12452|12400|12432|12430|12411|12378|10398|10376|9793|9771|14390|14388|14336|14368|14366|14347|14314|13785|13783|13731|13763|13761|13742|13709|7724|7722|7702|7700|7670|6888|6886|6834|6866|6864|6845|6812|7119|7117|7097|7095|7065|3742|3740|3688|3720|3718|3699|3666|3137|3135|3083|3115|3113|3094|3061|5073|5071|5019|5051|5049|5030|4997|4468|4466|4414|4446|4444|4425|4392|9055|9053|9033|9031|9001|8219|8217|8165|8197|8195|8176|8143|8450|8448|8428|8426|8396|1016|180|191|158|151|153|129|131|140|142|411|11910|11912|5981|5983|6223|6225|510|488|499|631|609|620|59|70|37|30|32|8|10|19|21|873|851|862|1236|1214|1225|9978|9989|9967|9956|9344|9322|9333|10088|10220|10231|10209|10198|10451|9604|533|667|678|645|117|104|95|82|777|909|920|887|1140|293|1272|1283|1259|1250|587|565|1030|1041|1017|1008|224|181|202|192|159|425|436|412|403|5915|5917|5893|5895|6409|6396|6387|6374|5560|5552|5554|5538|5530|5532|5804|5791|5782|5769|9464|9442|9453|173|175|10755|10757|10733|10735|11961|11939|5860|5862|6032|6010|6274|6252|1449|1451|1427|1429|2655|2604|2606|2633|2615|2617|2582|2584|9857|9868|9835|13938|13916|13927|14180|14158|14169|12087|12084|12065|12062|13242|13239|10767|10764|10745|10742|11922|11919|11933|11930|11900|11897|5872|5869|5883|5880|5850|5847|5993|5990|6004|6001|5971|5968|5432|5429|5410|5407|6103|6100|6235|6232|6246|6243|6213|6210|6466|6463|5619|5616|6587|6584|2770|2767|2748|2745|3925|3922|4101|4098|4079|4076|5256|5253|12093|12042|12044|12071|12053|12055|12020|12022|13248|13259|13226|13219|13221|13197|13199|13208|13210|5438|5387|5389|5416|5398|5400|5365|5367|6109|6120|6087|6080|6082|6058|6060|6069|6071|6472|6483|6450|6443|6445|6421|6423|6432|6434|5625|5636|5603|5596|5598|5574|5576|5585|5587|6593|6604|6571|6564|6566|6542|6544|6553|6555|2776|2725|2727|2754|2736|2738|2703|2705|3931|3942|3909|3902|3904|3880|3882|3891|3893|4107|4056|4058|4085|4067|4069|4034|4036|5262|5273|5240|5233|5235|5211|5213|5222|5224|9343|9321|9332|532|103|81|52|54|1258|10385|10363|9549|9527|9780|9758|14323|13718|6821|8152|601|588|590|579|566|568|832|810|1074|1052|238|225|227|216|203|205|1195|1173|348|326|469|447|6356|6353|6367|6364|6334|6331|5751|5748|5762|5759|5729|5726|994|972|983|389|367|378|10314|10292|10303|9465|9443|9454|9709|9687|9698|653|895|515|512|493|490|504|501|636|633|614|611|625|622|64|61|75|72|42|39|837|815|878|875|856|853|867|864|1200|1178|353|331|1241|1238|1219|1216|1230|1227|10035|10013|10277|10255|7307|7549|8638|8880|995|973|984|390|368|379|1863|1500|9368|9365|752|730|741|1115|1093|1104|268|246|257|12492|12470|12481|12129|12107|12118|9863|9874|9841|9500|9511|9478|13944|13922|13933|13372|13383|13350|14186|14164|14175|14549|14527|14538|3175|3153|3164|2812|2790|2801|4506|4484|4495|4143|4121|4132|13049|13027|12213|12191|12444|12422|11729|11707|11124|11102|3732|3710|2896|2874|3127|3105|5063|5041|4227|4205|4458|4436|11355|11333|11597|11575|2049|2027|2291|2269|9348|9345|9326|9323|9337|9334|10099|10110|10077|10462|10473|10440|9615|9626|9593|14059|14037|14048|14422|14400|14411|13575|13553|13564|537|534|108|105|86|83|1263|1260|7162|7140|7151|7283|7261|7272|7525|7503|7514|8493|8471|8482|8614|8592|8603|8856|8834|8845|1021|1018|185|182|196|193|163|160|416|413|7646|7624|7635|7041|7019|7030|8977|8955|8966|8372|8350|8361|654|896|14015|13993|14257|14235|1846|1843|1824|1821|1835|1832|1483|1480|1461|1458|1472|1469|13907|13896|13885|13874|14138|14116|14380|14358|13544|13533|13522|13511|14501|14479|13654|13632|13775|13753|7241|7219|6878|6856|8572|8550|8209|8187|543|554|521|514|516|492|494|503|505|664|675|642|635|637|613|615|624|626|114|63|65|92|74|76|41|43|774|906|917|884|877|879|855|857|866|868|1137|290|1269|1280|1247|1240|1242|1218|1220|1229|1231|999|996|977|974|988|985|394|391|372|369|383|380|12094|12072|13249|13260|13227|5439|5417|6110|6121|6088|6473|6484|6451|5626|5637|5604|6594|6605|6572|2777|2755|3932|3943|3910|4108|4086|5263|5274|5241|10795|10773|10784|2325|2303|2314|1720|1698|1709|11975|11962|11953|11940|6046|6033|6024|6011|6288|6275|6266|6253|2656|2634|12086|12088|12064|12066|13292|13270|13241|13243|10766|10768|10744|10746|11972|11921|11923|11950|11932|11934|11899|11901|5922|5871|5873|5900|5882|5884|5849|5851|6043|5992|5994|6021|6003|6005|5970|5972|5431|5433|5409|5411|6153|6131|6102|6104|6285|6234|6236|6263|6245|6247|6212|6214|6516|6494|6465|6467|5669|5647|5618|5620|6637|6615|6586|6588|2769|2771|2747|2749|3975|3953|3924|3926|4100|4102|4078|4080|5306|5284|5255|5257|11183|10820|1864|1866|1998|2009|1987|1976|2108|2240|2251|2229|2218|2350|1501|1503|2471|1624|1745|10396|10374|9469|9466|9447|9444|9458|9455|9791|9769|14334|14345|14312|13729|13740|13707|7668|6832|6843|6810|7063|8999|8163|8174|8141|8394|9486|9827|9805|9816|9376|9387|9354|9347|9349|9325|9327|9336|9338|10553|10531|10542|13336|13314|13325|536|538|708|686|107|109|85|87|950|928|1313|1291|1262|1264|10022|10000|9379|9390|9357|10264|10242|10556|10534|10545|13960|14202|1027|1038|1005|998|1000|976|978|987|989|422|433|400|393|395|371|373|382|384|592|589|570|567|229|226|207|204|6406|6355|6357|6384|6366|6368|6333|6335|5801|5750|5752|5779|5761|5763|5728|5730|9951|9929|9940|9366|10193|10171|10182|10311|10289|10300|9706|9684|9695|1071|1049|1020|1022|235|184|186|213|195|197|162|164|466|444|415|417|12817|12815|12763|12795|12793|12774|12741|13180|13178|13126|13158|13156|13137|13104|12333|12331|12279|12311|12309|12290|12257|10156|10134|10519|10497|9672|9650|14148|14146|14094|14126|14124|14105|14072|14511|14509|14457|14489|14487|14468|14435|13664|13662|13610|13642|13640|13621|13588|7251|7249|7197|7229|7227|7208|7175|7372|7370|7318|7350|7348|7329|7296|6768|6746|7482|7480|7460|7458|7428|7614|7612|7560|7592|7590|7571|7538|7845|7843|7823|7821|7791|6998|6996|6976|6974|6944|7977|7975|7923|7955|7953|7934|7901|3500|3498|3446|3478|3476|3457|3424|3863|3861|3809|3841|3839|3820|3787|3016|3014|2962|2994|2992|2973|2940|4831|4829|4777|4809|4807|4788|4755|5194|5192|5140|5172|5170|5151|5118|4347|4345|4293|4325|4323|4304|4271|8582|8580|8528|8560|8558|8539|8506|8703|8701|8649|8681|8679|8660|8627|8099|8077|8813|8811|8791|8789|8759|8945|8943|8891|8923|8921|8902|8869|9176|9174|9154|9152|9122|8329|8327|8307|8305|8275|9308|9306|9254|9286|9284|9265|9232|11366|11344|11608|11586|6400|6397|6378|6375|5564|5561|5542|5539|5795|5792|5773|5770|544|555|522|665|676|658|655|643|115|93|788|799|775|766|907|918|900|897|885|1151|1162|1138|1129|304|315|291|282|1270|1281|1248|10336|9487|9731|12686|12664|12928|12906|11245|11223|11476|11454|11839|11817|10992|10970|2170|2148|2533|2511|1686|1664|7438|7436|7449|7447|7416|7414|7406|7384|7395|7801|7799|7812|7810|7779|7777|7769|7747|7758|6954|6952|6965|6963|6932|6930|6922|6900|6911|3369|3347|3611|3589|4700|4678|4942|4920|8769|8767|8780|8778|8747|8745|8737|8715|8726|9132|9130|9143|9141|9110|9108|9100|9078|9089|8285|8283|8296|8294|8263|8261|8253|8231|8242|753|731|742|1116|1094|1105|269|247|258|11645|11623|11634|10796|10774|10785|11040|11018|11029|1874|1885|1852|1845|1847|1823|1825|1834|1836|2326|2304|2315|1511|1522|1489|1482|1484|1460|1462|1471|1473|1721|1699|1710|9912|9890|10143|10121|10506|10484|9659|9637|13971|13982|13949|14081|14213|14224|14191|14444|13597|7184|8515|13905|13894|13883|13872|14136|14114|14378|14356|13542|13531|13520|13509|14499|14477|13652|13630|13773|13751|7239|7217|6876|6854|8570|8548|8207|8185|757|754|735|732|746|743|1120|1117|1098|1095|1109|1106|273|270|251|248|262|259|12126|12104|12115|9497|9508|9475|9468|9470|9446|9448|9457|9459|11642|11620|11631|11037|11015|11026|2809|2787|2798|4140|4118|4129|1962|1940|1951|2204|2182|2193|10312|10290|10301|9707|9685|9696|13820|13798|13809|13457|13435|13446|591|593|569|571|1085|1072|1063|1050|236|228|230|214|206|208|480|467|458|445|9828|9806|9817|10033|10011|9377|9388|9370|9367|9355|10072|10050|10061|10275|10253|10435|10413|10424|9588|9566|9577|10554|10532|10543|13337|13315|13326|722|709|700|687|964|951|942|929|1327|1314|1305|1292|7305|6684|6662|6673|7547|8636|8015|7993|8004|8878|548|545|559|556|526|523|669|666|680|677|647|644|119|116|97|94|779|776|911|908|922|919|889|886|1142|1139|295|292|1274|1271|1285|1282|1252|1249|7404|7382|7393|7767|7745|7756|6920|6898|6909|8735|8713|8724|9098|9076|9087|8251|8229|8240|12098|12095|12076|12073|13253|13250|13264|13261|13231|13228|5443|5440|5421|5418|6114|6111|6125|6122|6092|6089|6477|6474|6488|6485|6455|6452|5630|5627|5641|5638|5608|5605|6598|6595|6609|6606|6576|6573|2781|2778|2759|2756|3936|3933|3947|3944|3914|3911|4112|4109|4090|4087|5267|5264|5278|5275|5245|5242|9948|9926|9937|10190|10168|10179|657|659|899|901|10028|10006|10270|10248|13966|14208|13306|13293|13284|13271|11973|11951|5923|5901|6044|6022|6167|6154|6145|6132|6286|6264|6530|6517|6508|6495|5683|5670|5661|5648|6651|6638|6629|6616|3989|3976|3967|3954|5320|5307|5298|5285|9420|9398|13358|11158|11136|11147|785|796|763|756|758|734|736|745|747|1148|1159|1126|1119|1121|1097|1099|1108|1110|301|312|279|272|274|250|252|261|263|2083|2061|2072|2446|2424|2435|1599|1577|1588|1028|1039|1006|423|434|401|12514|12151|10633|10611|14571|11194|11205|11172|10831|10842|10809|1875|1877|1886|1888|1868|1865|1853|1855|2119|2130|2097|2361|2372|2339|1512|1514|1523|1525|1505|1502|1490|1492|2482|2493|2460|1635|1646|1613|1756|1767|1734|3197|2834|4528|4165|12576|12554|12697|12675|12807|12785|12939|12917|13170|13148|12323|12301|14028|14006|14270|14248|14633|14611|11487|11465|11850|11828|11003|10981|7362|7340|7604|7582|7967|7945|3259|3237|3380|3358|3490|3468|3622|3600|3853|3831|3006|2984|4590|4568|4711|4689|4821|4799|4953|4931|5184|5162|4337|4315|8693|8671|8935|8913|9298|9276|11966|11963|11944|11941|6037|6034|6015|6012|6279|6276|6257|6254|6407|6385|5802|5780|2660|2657|2638|2635|6399|6401|6377|6379|5563|5565|5541|5543|5794|5796|5772|5774|10817|2347|1742|13060|13038|12455|12433|14391|14369|13786|13764|7725|7703|6889|6867|7120|7098|3743|3721|3138|3116|5074|5052|4469|4447|9056|9034|8220|8198|8451|8429|10578|11282|11260|11271|11524|11502|11513|1963|1941|1952|2205|2183|2194|13821|13823|13799|13801|13810|13812|14065|14043|14054|14307|14285|14296|13458|13460|13436|13438|13447|13449|14428|14406|14417|13581|13559|13570|13702|13680|13691|7168|7146|7157|6805|6783|6794|8499|8477|8488|8136|8114|8125|12976|12954|12965|12127|12105|12116|12371|12349|12360|9904|9882|10347|10358|10325|9541|9498|9519|9509|9491|9488|9476|9742|9753|9720|13842|13413|13391|13479|11643|11621|11632|11038|11016|11027|3659|3637|3648|2810|2788|2799|3054|3032|3043|4990|4968|4979|4141|4119|4130|4385|4363|4374|10069|10047|10058|10432|10410|10421|9585|9563|9574|598|547|549|576|558|560|525|527|719|668|670|697|679|681|646|648|118|120|96|98|829|807|778|780|961|910|912|939|921|923|888|890|1192|1170|1141|1143|345|323|294|296|1324|1273|1275|1302|1284|1286|1251|1253|6681|6659|6670|8012|7990|8001|9832|9829|9810|9807|9821|9818|9381|9378|9392|9389|9359|9356|10154|10132|10517|10495|9670|9648|10558|10555|10536|10533|10547|10544|13341|13338|13319|13316|13330|13327|14092|14103|14070|14455|14466|14433|13608|13619|13586|713|710|691|688|955|952|933|930|1318|1315|1296|1293|7195|7206|7173|7316|7327|7294|7426|7558|7569|7536|7789|6942|8526|8537|8504|8647|8658|8625|8757|8889|8900|8867|9120|8273|10800|10797|10778|10775|10789|10786|2330|2327|2308|2305|2319|2316|1725|1722|1703|1700|1714|1711|10333|9728|9849|9369|9371|10575|11279|11257|11268|11521|11499|11510|12097|12099|12075|12077|13303|13252|13254|13281|13263|13265|13230|13232|5442|5444|5420|5422|6164|6113|6115|6142|6124|6126|6091|6093|6527|6476|6478|6505|6487|6489|6454|6456|5680|5629|5631|5658|5640|5642|5607|5609|6648|6597|6599|6626|6608|6610|6575|6577|2780|2782|2758|2760|3986|3935|3937|3964|3946|3948|3913|3915|4111|4113|4089|4091|5317|5266|5268|5295|5277|5279|5244|5246|9949|9927|9938|10191|10169|10180|10316|10313|10294|10291|10305|10302|9711|9708|9689|9686|9700|9697|1076|1073|1054|1051|240|237|218|215|471|468|449|446|7679|7690|7657|7074|7085|7052|9010|9021|8988|8405|8416|8383|1032|1029|1043|1040|1010|1007|427|424|438|435|405|402|7735|7733|7681|7713|7711|7692|7659|7130|7128|7076|7108|7106|7087|7054|9066|9064|9012|9044|9042|9023|8990|8461|8459|8407|8439|8437|8418|8385|12525|12536|12503|12162|12173|12140|9918|9905|9907|9896|9883|9885|10149|10127|10391|10369|9555|9542|9544|9533|9520|9522|10512|10490|9665|9643|9786|9764|13843|13845|13977|13988|13955|13427|13414|13416|13405|13392|13394|14087|14219|14230|14197|14329|13480|13482|14450|13603|14582|14593|14560|13724|7190|6761|6739|6827|3208|3219|3186|2845|2856|2823|4539|4550|4517|4176|4187|4154|8521|8092|8070|8158|11965|11967|11943|11945|6036|6038|6014|6016|6278|6280|6256|6258|2659|2661|2637|2639|12489|12467|12478|12610|12588|12599|12852|12830|12841|9860|9871|9838|9831|9833|9809|9811|9820|9822|9431|9380|9382|9409|9391|9393|9358|9360|10586|10597|10564|10557|10559|10535|10537|10546|10548|13941|13919|13930|13369|13380|13347|13340|13342|13318|13320|13329|13331|14183|14161|14172|14546|14524|14535|11400|11378|11389|11763|11741|11752|10916|10894|10905|712|714|690|692|954|956|932|934|1317|1319|1295|1297|6703|3172|3150|3161|3293|3271|3282|3535|3513|3524|4503|4481|4492|4624|4602|4613|4866|4844|4855|8034|6411|6408|6389|6386|5806|5803|5784|5781|13297|13294|13275|13272|11977|11974|11955|11952|5927|5924|5905|5902|6048|6045|6026|6023|6158|6155|6136|6133|6290|6287|6268|6265|6521|6518|6499|6496|5674|5671|5652|5649|6642|6639|6620|6617|3980|3977|3958|3955|5311|5308|5289|5286|9490|9492|11664|11059|10334|9729|9850|9984|9995|9973|9962|10094|10226|10237|10215|10204|10457|9610|10576|11280|11258|11269|11522|11500|11511|11667|10818|11062|1867|1869|2039|2017|2281|2259|2348|1504|1506|1743|12148|10828|10839|10806|10799|10801|10777|10779|10788|10790|2358|2369|2336|2329|2331|2307|2309|2318|2320|1753|1764|1731|1724|1726|1702|1704|1713|1715|2831|4162|1879|1876|1890|1887|1857|1854|1516|1513|1527|1524|1494|1491|12973|12951|12962|12368|12346|12357|10344|10355|10322|10315|10317|10293|10295|10304|10306|9739|9750|9717|9710|9712|9688|9690|9699|9701|14304|14282|14293|13699|13677|13688|1075|1077|1053|1055|239|241|217|219|470|472|448|450|6802|6780|6791|3656|3634|3645|3051|3029|3040|4987|4965|4976|4382|4360|4371|8133|8111|8122|1082|1031|1033|1060|1042|1044|1009|1011|477|426|428|455|437|439|404|406|12818|12796|13181|13159|12334|12312|14149|14127|14512|14490|13665|13643|7252|7230|7373|7351|7483|7461|7615|7593|7846|7824|6999|6977|7978|7956|3501|3479|3864|3842|3017|2995|4832|4810|5195|5173|4348|4326|8583|8561|8704|8682|8814|8792|8946|8924|9177|9155|8330|8308|9309|9287|13825|13822|13803|13800|13814|13811|13462|13459|13440|13437|13451|13448|12131|12128|12109|12106|12120|12117|9502|9499|9513|9510|9480|9477|14389|14367|13784|13762|11647|11644|11625|11622|11636|11633|11042|11039|11020|11017|11031|11028|7723|7701|6887|6865|7118|7096|2814|2811|2792|2789|2803|2800|4145|4142|4123|4120|4134|4131|9054|9032|8218|8196|8449|8427|9953|9950|9931|9928|9942|9939|10070|10048|10059|10195|10192|10173|10170|10184|10181|10433|10411|10422|9586|9564|9575|599|577|720|698|843|830|821|808|962|940|1206|1193|1184|1171|359|346|337|324|1325|1303|6682|6660|6671|8013|7991|8002|12613|12591|12602|12855|12833|12844|9434|9421|9412|9399|10589|10600|10567|13359|11159|11137|11148|11403|11381|11392|11766|11744|11755|10919|10897|10908|1967|1964|1945|1942|1956|1953|2084|2062|2073|2209|2206|2187|2184|2198|2195|2447|2425|2436|1600|1578|1589|6706|3296|3274|3285|3538|3516|3527|4627|4605|4616|4869|4847|4858|8037|11359|11337|11601|11579|2053|2040|2042|2031|2018|2020|2295|2282|2284|2273|2260|2262|786|797|764|1149|1160|1127|302|313|280|6410|6412|6388|6390|5805|5807|5783|5785|13296|13298|13274|13276|11976|11978|11954|11956|5926|5928|5904|5906|6047|6049|6025|6027|6157|6159|6135|6137|6289|6291|6267|6269|6520|6522|6498|6500|5673|5675|5651|5653|6641|6643|6619|6621|3979|3981|3957|3959|5310|5312|5288|5290|7493|7491|7439|7471|7469|7450|7417|7856|7854|7802|7834|7832|7813|7780|7009|7007|6955|6987|6985|6966|6933|8824|8822|8770|8802|8800|8781|8748|9187|9185|9133|9165|9163|9144|9111|8340|8338|8286|8318|8316|8297|8264|11665|11060|12974|12952|12963|12369|12347|12358|10345|10356|10338|10335|10323|9740|9751|9733|9730|9718|13853|13864|13831|13824|13826|13802|13804|13813|13815|14305|14283|14294|13490|13501|13468|13461|13463|13439|13441|13450|13452|13700|13678|13689|7652|7630|7641|6803|6781|6792|7047|7025|7036|3657|3635|3646|3052|3030|3041|4988|4966|4977|4383|4361|4372|8983|8961|8972|8134|8112|8123|8378|8356|8367|13304|13282|6165|6143|6528|6506|5681|5659|6649|6627|3987|3965|5318|5296|9909|9906|9887|9884|9546|9543|9524|9521|13847|13844|13418|13415|13396|13393|13484|13481|12995|12159|12170|12137|12130|12132|12108|12110|12119|12121|12390|10388|10366|9552|9501|9503|9530|9512|9514|9479|9481|9783|9761|14326|13721|11675|11686|11653|11646|11648|11624|11626|11635|11637|11070|11081|11048|11041|11043|11019|11021|11030|11032|6824|3678|2842|2853|2820|2813|2815|2791|2793|2802|2804|3073|5009|4173|4184|4151|4144|4146|4122|4124|4133|4135|4404|8155|12998|12149|12393|11235|11213|11678|11689|11656|10872|10829|10850|10840|10822|10819|10807|11073|11084|11051|1929|1918|1878|1880|1907|1896|1889|1891|1856|1858|2160|2138|2402|2359|2380|2370|2352|2349|2337|1566|1555|1515|1517|1544|1533|1526|1528|1493|1495|2523|2501|1676|1654|1797|1754|1775|1765|1747|1744|1732|3681|2832|3076|5012|4163|4407|9981|9992|9970|9959|9952|9954|9930|9932|9941|9943|10091|10223|10234|10212|10201|10194|10196|10172|10174|10183|10185|10454|9607|12490|12468|12479|12611|12589|12600|12734|12712|12723|12853|12831|12842|13097|13075|13086|12250|12228|12239|9861|9872|9854|9851|9839|9432|9410|10105|10116|10083|10468|10479|10446|9621|9632|9599|10587|10598|10580|10577|10565|13942|13920|13931|13370|13381|13348|14184|14162|14173|14547|14525|14536|11284|11281|11262|11259|11273|11270|11401|11379|11390|11526|11523|11504|11501|11515|11512|11764|11742|11753|10917|10895|10906|7289|7267|7278|6717|6728|6704|6695|7531|7509|7520|7894|7872|7883|3173|3151|3162|3294|3272|3283|3417|3395|3406|3536|3514|3525|3780|3758|3769|2933|2911|2922|4504|4482|4493|4625|4603|4614|4748|4726|4737|4867|4845|4856|5111|5089|5100|4264|4242|4253|8620|8598|8609|8048|8059|8035|8026|8862|8840|8851|9225|9203|9214|11180|1995|2006|1984|1973|1966|1968|1944|1946|1955|1957|2105|2237|2248|2226|2215|2208|2210|2186|2188|2197|2199|2468|1621|1083|1061|478|456|10074|10071|10052|10049|10063|10060|10437|10434|10415|10412|10426|10423|9590|9587|9568|9565|9579|9576|603|600|581|578|724|721|702|699|834|831|812|809|966|963|944|941|1197|1194|1175|1172|350|347|328|325|1329|1326|1307|1304|6686|6683|6664|6661|6675|6672|7437|7448|7415|7800|7811|7778|6953|6964|6931|8017|8014|7995|7992|8006|8003|8768|8779|8746|9131|9142|9109|8284|8295|8262|7494|7472|7736|7714|7857|7835|7010|6988|7131|7109|8825|8803|9067|9045|9188|9166|8341|8319|8462|8440|13854|13856|13865|13867|13832|13834|14098|14109|14076|14340|14351|14318|13491|13493|13502|13504|13469|13471|14461|14472|14439|13614|13625|13592|13735|13746|13713|7201|7212|7179|6838|6849|6816|8532|8543|8510|8169|8180|8147|9425|9422|9403|9400|14026|14004|13363|13360|14268|14246|11163|11160|11141|11138|11152|11149|790|787|801|798|768|765|1153|1150|1164|1161|1131|1128|306|303|317|314|284|281|2088|2085|2066|2063|2077|2074|2451|2448|2429|2426|2440|2437|1604|1601|1582|1579|1593|1590|7360|7338|7602|7580|8691|8669|8933|8911|10337|10339|9732|9734|9982|9993|9971|9960|10092|10224|10235|10213|10202|10455|9608|12690|12668|12932|12910|11249|11236|11238|11227|11214|11216|11480|11458|11722|11700|10886|10873|10875|10864|10851|10853|11843|11821|10996|10974|11117|11095|1930|1932|1919|1921|1908|1910|1897|1899|2044|2041|2022|2019|2174|2161|2163|2152|2139|2141|2286|2283|2264|2261|2416|2403|2405|2394|2381|2383|1567|1569|1556|1558|1545|1547|1534|1536|2537|2524|2526|2515|2502|2504|1690|1677|1679|1668|1655|1657|1811|1798|1800|1789|1776|1778|3373|3351|3615|3593|4704|4682|4946|4924|13308|13305|13286|13283|6169|6166|6147|6144|6532|6529|6510|6507|5685|5682|5663|5660|6653|6650|6631|6628|3991|3988|3969|3966|5322|5319|5300|5297|12566|12544|13009|13020|12996|12987|12203|12160|12181|12171|12138|12404|12415|12391|12382|9908|9910|9886|9888|10402|10389|10380|10367|9553|9545|9547|9531|9523|9525|9797|9784|9775|9762|13846|13848|14018|13996|13417|13419|13395|13397|14260|14238|14327|13483|13485|14623|14601|13722|11676|11687|11669|11666|11654|11071|11082|11064|11061|11049|7674|6825|7069|3249|3227|3692|3703|3679|3670|2886|2843|2864|2854|2821|3087|3098|3074|3065|4580|4558|5023|5034|5010|5001|4217|4174|4195|4185|4152|4418|4429|4405|4396|9005|8156|8400|10821|10823|2351|2353|1746|1748|12635|12877|11181|11315|11326|11304|11293|11425|11557|11568|11546|11535|11788|10941|1996|2007|1985|1974|2106|2238|2249|2227|2216|2469|1622|3318|3560|4649|4891|12632|12874|9853|9855|10025|10003|10267|10245|10579|10581|13963|14205|11312|11323|11301|11290|11283|11285|11261|11263|11272|11274|11422|11554|11565|11543|11532|11525|11527|11503|11505|11514|11516|11785|10938|3315|3557|4646|4888|12978|12975|12956|12953|12967|12964|12373|12370|12351|12348|12362|12359|10349|10346|10360|10357|10327|10324|9744|9741|9755|9752|9722|9719|14309|14306|14287|14284|14298|14295|13704|13701|13682|13679|13693|13690|7734|7712|6807|6804|6785|6782|6796|6793|7129|7107|3661|3658|3639|3636|3650|3647|3056|3053|3034|3031|3045|3042|4992|4989|4970|4967|4981|4978|4387|4384|4365|4362|4376|4373|9065|9043|8138|8135|8116|8113|8127|8124|8460|8438|12731|12709|12720|13094|13072|13083|12247|12225|12236|10102|10113|10080|10073|10075|10051|10053|10062|10064|10465|10476|10443|10436|10438|10414|10416|10425|10427|9618|9629|9596|9589|9591|9567|9569|9578|9580|14062|14040|14051|14425|14403|14414|13578|13556|13567|602|604|580|582|723|725|701|703|833|835|811|813|965|967|943|945|1196|1198|1174|1176|349|351|327|329|1328|1330|1306|1308|7165|7143|7154|7286|7264|7275|6714|6725|6692|6685|6687|6663|6665|6674|6676|7528|7506|7517|7891|7869|7880|3414|3392|3403|3777|3755|3766|2930|2908|2919|4745|4723|4734|5108|5086|5097|4261|4239|4250|8496|8474|8485|8617|8595|8606|8045|8056|8023|8016|8018|7994|7996|8005|8007|8859|8837|8848|9222|9200|9211|13307|13309|13285|13287|6168|6170|6146|6148|6531|6533|6509|6511|5684|5686|5662|5664|6652|6654|6630|6632|3990|3992|3968|3970|5321|5323|5299|5301|2043|2045|2021|2023|2285|2287|2263|2265|12153|12150|10833|10830|10844|10841|10811|10808|2363|2360|2374|2371|2341|2338|1758|1755|1769|1766|1736|1733|2836|2833|4167|4164|1087|1084|1065|1062|482|479|460|457|12494|12491|12472|12469|12483|12480|12615|12612|12593|12590|12604|12601|12857|12854|12835|12832|12846|12843|9865|9862|9876|9873|9843|9840|9436|9433|9414|9411|10591|10588|10602|10599|10569|10566|13946|13943|13924|13921|13935|13932|13374|13371|13385|13382|13352|13349|14147|14125|14188|14185|14166|14163|14177|14174|14510|14488|13663|13641|14551|14548|14529|14526|14540|14537|11405|11402|11383|11380|11394|11391|11768|11765|11746|11743|11757|11754|10921|10918|10899|10896|10910|10907|7250|7228|7371|7349|6708|6705|7481|7459|7613|7591|7844|7822|6997|6975|3177|3174|3155|3152|3166|3163|3298|3295|3276|3273|3287|3284|3540|3537|3518|3515|3529|3526|4508|4505|4486|4483|4497|4494|4629|4626|4607|4604|4618|4615|4871|4868|4849|4846|4860|4857|8581|8559|8702|8680|8039|8036|8812|8790|8944|8922|9175|9153|8328|8306|12633|12875|10039|10026|10017|10004|10281|10268|10259|10246|13964|14206|11313|11324|11302|11291|11423|11555|11566|11544|11533|11786|10939|7311|7553|3316|3558|4647|4889|8642|8884|11668|11670|11063|11065|13858|13855|13869|13866|13836|13833|13495|13492|13506|13503|13473|13470|12511|9424|9426|9402|9404|10630|10608|13362|13364|14568|11191|11202|11169|11162|11164|11140|11142|11151|11153|840|789|791|818|800|802|767|769|1203|1152|1154|1181|1163|1165|1130|1132|356|305|307|334|316|318|283|285|2116|2127|2094|2087|2089|2065|2067|2076|2078|2479|2490|2457|2450|2452|2428|2430|2439|2441|1632|1643|1610|1603|1605|1581|1583|1592|1594|3194|4525|12732|12710|12721|13095|13073|13084|12248|12226|12237|9986|9983|9997|9994|9975|9972|9964|9961|10103|10114|10096|10093|10081|10228|10225|10239|10236|10217|10214|10206|10203|10466|10477|10459|10456|10444|9619|9630|9612|9609|9597|14063|14041|14052|14426|14404|14415|13579|13557|13568|7166|7144|7155|7287|7265|7276|6715|6726|6693|7410|7388|7399|7529|7507|7518|7773|7751|7762|6926|6904|6915|7892|7870|7881|3415|3393|3404|3778|3756|3767|2931|2909|2920|4746|4724|4735|5109|5087|5098|4262|4240|4251|8497|8475|8486|8618|8596|8607|8046|8057|8024|8741|8719|8730|8860|8838|8849|9104|9082|9093|8257|8235|8246|9223|9201|9212|13006|13017|12984|12977|12979|12955|12957|12966|12968|12401|12412|12379|12372|12374|12350|12352|12361|12363|10399|10348|10350|10377|10359|10361|10326|10328|9794|9743|9745|9772|9754|9756|9721|9723|14337|14348|14315|14308|14310|14286|14288|14297|14299|13732|13743|13710|13703|13705|13681|13683|13692|13694|7671|6835|6846|6813|6806|6808|6784|6786|6795|6797|7066|3689|3700|3667|3660|3662|3638|3640|3649|3651|3084|3095|3062|3055|3057|3033|3035|3044|3046|5020|5031|4998|4991|4993|4969|4971|4980|4982|4415|4426|4393|4386|4388|4364|4366|4375|4377|9002|8166|8177|8144|8137|8139|8115|8117|8126|8128|8397|11240|11237|11218|11215|10877|10874|10855|10852|1934|1931|1923|1920|1912|1909|1901|1898|2165|2162|2143|2140|2407|2404|2385|2382|1571|1568|1560|1557|1549|1546|1538|1535|2528|2525|2506|2503|1681|1678|1659|1656|1802|1799|1780|1777|12580|12567|12569|12558|12545|12547|12811|12789|13053|13031|12217|12204|12206|12195|12182|12184|13174|13152|12327|12305|12448|12426|14032|14019|14021|14010|13997|13999|14274|14261|14263|14252|14239|14241|14637|14624|14626|14615|14602|14604|7366|7344|7608|7586|7971|7949|3263|3250|3252|3241|3228|3230|3494|3472|3736|3714|2900|2887|2889|2878|2865|2867|3857|3835|3010|2988|3131|3109|4594|4581|4583|4572|4559|4561|4825|4803|5067|5045|4231|4218|4220|4209|4196|4198|5188|5166|4341|4319|4462|4440|8697|8675|8939|8917|9302|9280|13000|12997|12164|12161|12175|12172|12142|12139|12395|12392|10393|10390|10371|10368|9557|9554|9535|9532|9788|9785|9766|9763|14331|14328|13726|13723|11680|11677|11691|11688|11658|11655|11075|11072|11086|11083|11053|11050|6829|6826|3683|3680|2847|2844|2858|2855|2825|2822|3078|3075|5014|5011|4178|4175|4189|4186|4156|4153|4409|4406|8160|8157|12512|12646|12657|12624|12756|12888|12899|12866|13119|12272|10644|10631|10622|10609|14569|11192|11203|11185|11182|11170|11436|11447|11414|11799|11810|11777|10952|10963|10930|2000|1997|2011|2008|1989|1986|1978|1975|2117|2128|2110|2107|2095|2242|2239|2253|2250|2231|2228|2220|2217|2480|2491|2473|2470|2458|1633|1644|1626|1623|1611|7916|3195|3329|3340|3307|3439|3571|3582|3549|3802|2955|4526|4660|4671|4638|4770|4902|4913|4880|5133|4286|9247|841|819|1204|1182|357|335|13007|13018|12985|12402|12413|12380|10400|10378|9795|9773|13908|13897|13857|13859|13886|13875|13868|13870|13835|13837|14139|14117|14381|14338|14359|14349|14316|13545|13534|13494|13496|13523|13512|13505|13507|13472|13474|14502|14480|13655|13633|13776|13733|13754|13744|13711|7242|7220|7685|7696|7672|7663|6879|6836|6857|6847|6814|7080|7091|7067|7058|3690|3701|3668|3085|3096|3063|5021|5032|4999|4416|4427|4394|8573|8551|9016|9027|9003|8994|8210|8167|8188|8178|8145|8411|8422|8398|8389|12152|12154|11719|11697|10883|10832|10834|10861|10843|10845|10810|10812|11114|11092|1086|1088|1064|1066|481|483|459|461|2413|2362|2364|2391|2373|2375|2340|2342|1808|1757|1759|1786|1768|1770|1735|1737|7649|7627|7638|7044|7022|7033|2835|2837|4166|4168|8980|8958|8969|8375|8353|8364|10036|9985|9987|10014|9996|9998|9974|9976|9963|9965|10095|10097|10278|10227|10229|10256|10238|10240|10216|10218|10205|10207|10458|10460|9611|9613|7308|7550|8639|8881|12522|12533|12500|12493|12495|12471|12473|12482|12484|12643|12654|12621|12614|12616|12592|12594|12603|12605|12753|12885|12896|12863|12856|12858|12834|12836|12845|12847|13116|12269|9915|9864|9866|9893|9875|9877|9842|9844|9435|9437|9413|9415|10146|10124|10509|10487|9662|9640|10641|10590|10592|10619|10601|10603|10568|10570|13974|13985|13952|13945|13947|13923|13925|13934|13936|13424|13373|13375|13402|13384|13386|13351|13353|14084|14216|14227|14194|14187|14189|14165|14167|14176|14178|14447|13600|14579|14590|14557|14550|14552|14528|14530|14539|14541|11433|11444|11411|11404|11406|11382|11384|11393|11395|11796|11807|11774|11767|11769|11745|11747|11756|11758|10949|10960|10927|10920|10922|10898|10900|10909|10911|7187|6758|6736|6707|6709|7913|3205|3216|3183|3176|3178|3154|3156|3165|3167|3326|3337|3304|3297|3299|3275|3277|3286|3288|3436|3568|3579|3546|3539|3541|3517|3519|3528|3530|3799|2952|4536|4547|4514|4507|4509|4485|4487|4496|4498|4657|4668|4635|4628|4630|4606|4608|4617|4619|4767|4899|4910|4877|4870|4872|4848|4850|4859|4861|5130|4283|8518|8089|8067|8038|8040|9244|11239|11241|11217|11219|11733|11720|11711|11698|10884|10876|10878|10862|10854|10856|11128|11115|11106|11093|1933|1935|1922|1924|1911|1913|1900|1902|2164|2166|2142|2144|2414|2406|2408|2392|2384|2386|1570|1572|1559|1561|1548|1550|1537|1539|2527|2529|2505|2507|1680|1682|1658|1660|1809|1801|1803|1787|1779|1781|7650|7628|7639|7045|7023|7034|8981|8959|8970|8376|8354|8365|12523|12534|12501|12644|12655|12637|12634|12622|12767|12778|12754|12745|12886|12897|12879|12876|12864|13130|13141|13117|13108|12283|12294|12270|12261|9916|9894|10030|10027|10008|10005|10160|10147|10138|10125|10272|10269|10250|10247|10523|10510|10501|10488|9676|9663|9654|9641|10642|10620|13975|13986|13968|13965|13953|13425|13403|14085|14217|14228|14210|14207|14195|14448|13601|14580|14591|14558|11317|11314|11328|11325|11306|11303|11295|11292|11434|11445|11427|11424|11412|11559|11556|11570|11567|11548|11545|11537|11534|11797|11808|11790|11787|11775|10950|10961|10943|10940|10928|7188|7322|7333|7300|6772|6759|6750|6737|7432|7564|7575|7542|7795|6948|7927|7938|7914|7905|3206|3217|3184|3327|3338|3320|3317|3305|3450|3461|3437|3428|3569|3580|3562|3559|3547|3813|3824|3800|3791|2966|2977|2953|2944|4537|4548|4515|4658|4669|4651|4648|4636|4781|4792|4768|4759|4900|4911|4893|4890|4878|5144|5155|5131|5122|4297|4308|4284|4275|8519|8653|8664|8631|8103|8090|8081|8068|8763|8895|8906|8873|9126|8279|9258|9269|9245|9236|10037|10015|10279|10257|7309|7551|8640|8882|13050|13028|12999|13001|12214|12163|12165|12192|12174|12176|12141|12143|12445|12423|12394|12396|10392|10394|10370|10372|9556|9558|9534|9536|9787|9789|9765|9767|14330|14332|13725|13727|11730|11679|11681|11708|11690|11692|11657|11659|11125|11074|11076|11103|11085|11087|11052|11054|6828|6830|3733|3711|3682|3684|2897|2846|2848|2875|2857|2859|2824|2826|3128|3106|3077|3079|5064|5042|5013|5015|4228|4177|4179|4206|4188|4190|4155|4157|4459|4437|4408|4410|8159|8161|11370|11357|11348|11335|11612|11599|11590|11577|2051|2029|2293|2271|11184|11186|11356|11334|11598|11576|2050|1999|2001|2028|2010|2012|1988|1990|1977|1979|2109|2111|2292|2241|2243|2270|2252|2254|2230|2232|2219|2221|2472|2474|1625|1627|12736|12733|12714|12711|12725|12722|13099|13096|13077|13074|13088|13085|12252|12249|12230|12227|12241|12238|10107|10104|10118|10115|10085|10082|10470|10467|10481|10478|10448|10445|9623|9620|9634|9631|9601|9598|14067|14064|14045|14042|14056|14053|14430|14427|14408|14405|14419|14416|13583|13580|13561|13558|13572|13569|7170|7167|7148|7145|7159|7156|7291|7288|7269|7266|7280|7277|6719|6716|6730|6727|6697|6694|7492|7470|7533|7530|7511|7508|7522|7519|7855|7833|7008|6986|7896|7893|7874|7871|7885|7882|3419|3416|3397|3394|3408|3405|3782|3779|3760|3757|3771|3768|2935|2932|2913|2910|2924|2921|4750|4747|4728|4725|4739|4736|5113|5110|5091|5088|5102|5099|4266|4263|4244|4241|4255|4252|8501|8498|8479|8476|8490|8487|8622|8619|8600|8597|8611|8608|8050|8047|8061|8058|8028|8025|8823|8801|8864|8861|8842|8839|8853|8850|9186|9164|8339|8317|9227|9224|9205|9202|9216|9213|12571|12568|12549|12546|12208|12205|12186|12183|14023|14020|14001|13998|14265|14262|14243|14240|14628|14625|14606|14603|3254|3251|3232|3229|2891|2888|2869|2866|4585|4582|4563|4560|4222|4219|4200|4197|13011|13008|13022|13019|12989|12986|12406|12403|12417|12414|12384|12381|10404|10401|10382|10379|9799|9796|9777|9774|14342|14339|14353|14350|14320|14317|13737|13734|13748|13745|13715|13712|7676|7673|6840|6837|6851|6848|6818|6815|7071|7068|3694|3691|3705|3702|3672|3669|3089|3086|3100|3097|3067|3064|5025|5022|5036|5033|5003|5000|4420|4417|4431|4428|4398|4395|9007|9004|8171|8168|8182|8179|8149|8146|8402|8399|12636|12638|12878|12880|10029|10031|10007|10009|10271|10273|10249|10251|13967|13969|14209|14211|11367|11316|11318|11345|11327|11329|11305|11307|11294|11296|11426|11428|11609|11558|11560|11587|11569|11571|11547|11549|11536|11538|11789|11791|10942|10944|3319|3321|3561|3563|4650|4652|4892|4894|12765|12776|12743|13128|13139|13106|12281|12292|12259|10041|10038|10019|10016|10158|10136|10283|10280|10261|10258|10521|10499|9674|9652|14096|14107|14074|14459|14470|14437|13612|13623|13590|7199|7210|7177|7320|7331|7313|7310|7298|6770|6748|7443|7454|7430|7421|7562|7573|7555|7552|7540|7806|7817|7793|7784|6959|6970|6946|6937|7925|7936|7903|3448|3459|3426|3811|3822|3789|2964|2975|2942|4779|4790|4757|5142|5153|5120|4295|4306|4273|8530|8541|8508|8651|8662|8644|8641|8629|8101|8079|8774|8785|8761|8752|8893|8904|8886|8883|8871|9137|9148|9124|9115|8290|8301|8277|8268|9256|9267|9234|11724|11721|11702|11699|10888|10885|10866|10863|11119|11116|11097|11094|2418|2415|2396|2393|1813|1810|1791|1788|7654|7651|7632|7629|7643|7640|7049|7046|7027|7024|7038|7035|8985|8982|8963|8960|8974|8971|8380|8377|8358|8355|8369|8366|12570|12572|12548|12550|13064|13051|13042|13029|12215|12207|12209|12193|12185|12187|12459|12446|12437|12424|14022|14024|14000|14002|14264|14266|14242|14244|14627|14629|14605|14607|11731|11709|11126|11104|3253|3255|3231|3233|3747|3734|3725|3712|2898|2890|2892|2876|2868|2870|3142|3129|3120|3107|4584|4586|4562|4564|5078|5065|5056|5043|4229|4221|4223|4207|4199|4201|4473|4460|4451|4438|12516|12513|12764|12775|12742|12735|12737|12713|12715|12724|12726|13061|13010|13012|13039|13021|13023|12988|12990|13127|13138|13105|13098|13100|13076|13078|13087|13089|12280|12291|12258|12251|12253|12229|12231|12240|12242|12456|12405|12407|12434|12416|12418|12383|12385|10157|10106|10108|10135|10117|10119|10084|10086|10403|10405|10381|10383|10520|10469|10471|10498|10480|10482|10447|10449|9673|9622|9624|9651|9633|9635|9600|9602|10635|10632|10613|10610|9798|9800|9776|9778|14095|14106|14073|14066|14068|14044|14046|14055|14057|14392|14341|14343|14370|14352|14354|14319|14321|14458|14469|14436|14429|14431|14407|14409|14418|14420|13611|13622|13589|13582|13584|13560|13562|13571|13573|14573|14570|13787|13736|13738|13765|13747|13749|13714|13716|11196|11193|11207|11204|11174|11171|845|842|823|820|1208|1205|1186|1183|361|358|339|336|2121|2118|2132|2129|2099|2096|2484|2481|2495|2492|2462|2459|1637|1634|1648|1645|1615|1612|7198|7209|7176|7169|7171|7147|7149|7158|7160|7319|7330|7297|7290|7292|7268|7270|7279|7281|6769|6718|6720|6747|6729|6731|6696|6698|7429|7561|7572|7539|7532|7534|7510|7512|7521|7523|7726|7704|7675|7677|6890|6839|6841|6868|6850|6852|6817|6819|7792|6945|7924|7935|7902|7895|7897|7873|7875|7884|7886|7121|7099|7070|7072|3199|3196|3447|3458|3425|3418|3420|3396|3398|3407|3409|3744|3693|3695|3722|3704|3706|3671|3673|3810|3821|3788|3781|3783|3759|3761|3770|3772|2963|2974|2941|2934|2936|2912|2914|2923|2925|3139|3088|3090|3117|3099|3101|3066|3068|4530|4527|4778|4789|4756|4749|4751|4727|4729|4738|4740|5075|5024|5026|5053|5035|5037|5002|5004|5141|5152|5119|5112|5114|5090|5092|5101|5103|4294|4305|4272|4265|4267|4243|4245|4254|4256|4470|4419|4421|4448|4430|4432|4397|4399|8529|8540|8507|8500|8502|8478|8480|8489|8491|8650|8661|8628|8621|8623|8599|8601|8610|8612|8100|8049|8051|8078|8060|8062|8027|8029|8760|8892|8903|8870|8863|8865|8841|8843|8852|8854|9057|9035|9006|9008|8221|8170|8172|8199|8181|8183|8148|8150|9123|8276|9255|9266|9233|9226|9228|9204|9206|9215|9217|8452|8430|8401|8403|12701|12688|12679|12666|12943|12930|12921|12908|11247|11225|11361|11358|11339|11336|11491|11478|11469|11456|11603|11600|11581|11578|11854|11841|11832|11819|11007|10994|10985|10972|2055|2052|2033|2030|2172|2150|2297|2294|2275|2272|2535|2513|1688|1666|3384|3371|3362|3349|3626|3613|3604|3591|4715|4702|4693|4680|4957|4944|4935|4922|7408|7386|7397|7771|7749|7760|6924|6902|6913|8739|8717|8728|9102|9080|9091|8255|8233|8244|10040|10042|10018|10020|10282|10284|10260|10262|7312|7314|7554|7556|8643|8645|8885|8887|12527|12524|12538|12535|12505|12502|12648|12645|12659|12656|12626|12623|12758|12755|12890|12887|12901|12898|12868|12865|13121|13118|12274|12271|9920|9917|9898|9895|10151|10148|10129|10126|10514|10511|10492|10489|9667|9664|9645|9642|10646|10643|10624|10621|13979|13976|13990|13987|13957|13954|13429|13426|13407|13404|14089|14086|14221|14218|14232|14229|14199|14196|14452|14449|13605|13602|14584|14581|14595|14592|14562|14559|11438|11435|11449|11446|11416|11413|11801|11798|11812|11809|11779|11776|10954|10951|10965|10962|10932|10929|7192|7189|6763|6760|6741|6738|7918|7915|3210|3207|3221|3218|3188|3185|3331|3328|3342|3339|3309|3306|3441|3438|3573|3570|3584|3581|3551|3548|3804|3801|2957|2954|4541|4538|4552|4549|4519|4516|4662|4659|4673|4670|4640|4637|4772|4769|4904|4901|4915|4912|4882|4879|5135|5132|4288|4285|8523|8520|8094|8091|8072|8069|9249|9246|11360|11362|11338|11340|11602|11604|11580|11582|11723|11725|11701|11703|10887|10889|10865|10867|11118|11120|11096|11098|2054|2056|2032|2034|2296|2298|2274|2276|2417|2419|2395|2397|1812|1814|1790|1792|7682|7683|7693|7694|7660|7661|7653|7655|7631|7633|7642|7644|7077|7078|7088|7089|7055|7056|7048|7050|7026|7028|7037|7039|9013|9014|9024|9025|8991|8992|8984|8986|8962|8964|8973|8975|8408|8409|8419|8420|8386|8387|8379|8381|8357|8359|8368|8370|11368|11346|11610|11588|12769|12766|12780|12777|12747|12744|13132|13129|13143|13140|13110|13107|12285|12282|12296|12293|12263|12260|10162|10159|10140|10137|10525|10522|10503|10500|9678|9675|9656|9653|14100|14097|14111|14108|14078|14075|14463|14460|14474|14471|14441|14438|13616|13613|13627|13624|13594|13591|7203|7200|7214|7211|7181|7178|7324|7321|7335|7332|7302|7299|6774|6771|6752|6749|7434|7431|7566|7563|7577|7574|7544|7541|7797|7794|6950|6947|7929|7926|7940|7937|7907|7904|3452|3449|3463|3460|3430|3427|3815|3812|3826|3823|3793|3790|2968|2965|2979|2976|2946|2943|4783|4780|4794|4791|4761|4758|5146|5143|5157|5154|5124|5121|4299|4296|4310|4307|4277|4274|8534|8531|8545|8542|8512|8509|8655|8652|8666|8663|8633|8630|8105|8102|8083|8080|8765|8762|8897|8894|8908|8905|8875|8872|9128|9125|8281|8278|9260|9257|9271|9268|9238|9235|7441|7452|7419|7687|7684|7698|7695|7665|7662|7804|7815|7782|6957|6968|6935|7082|7079|7093|7090|7060|7057|8772|8783|8750|9018|9015|9029|9026|8996|8993|9135|9146|9113|8288|8299|8266|8413|8410|8424|8421|8391|8388|12577|12526|12528|12555|12537|12539|12515|12517|12504|12506|12698|12691|12687|12692|12693|12689|12647|12649|12676|12669|12665|12670|12671|12667|12658|12660|12625|12627|12819|12808|12768|12770|12797|12786|12779|12781|12757|12759|12746|12748|12940|12933|12929|12934|12935|12931|12889|12891|12918|12911|12907|12912|12913|12909|12900|12902|12867|12869|13182|13171|13131|13133|13160|13149|13142|13144|13120|13122|13109|13111|12335|12324|12284|12286|12313|12302|12295|12297|12273|12275|12262|12264|9919|9921|9897|9899|10161|10163|10150|10152|10139|10141|10128|10130|10524|10526|10513|10515|10502|10504|10491|10493|9677|9679|9666|9668|9655|9657|9644|9646|10645|10647|10634|10636|10623|10625|10612|10614|14029|13978|13980|14007|13989|13991|13956|13958|13428|13430|13406|13408|14150|14099|14101|14128|14110|14112|14088|14090|14077|14079|14271|14220|14222|14249|14231|14233|14198|14200|14513|14462|14464|14491|14473|14475|14451|14453|14440|14442|13666|13615|13617|13644|13626|13628|13604|13606|13593|13595|14634|14583|14585|14612|14594|14596|14572|14574|14561|14563|11250|11246|11251|11252|11248|11195|11197|11228|11224|11229|11230|11226|11206|11208|11173|11175|11488|11481|11477|11482|11483|11479|11437|11439|11466|11459|11455|11460|11461|11457|11448|11450|11415|11417|11851|11844|11840|11845|11846|11842|11800|11802|11829|11822|11818|11823|11824|11820|11811|11813|11778|11780|11004|10997|10993|10998|10999|10995|10953|10955|10982|10975|10971|10976|10977|10973|10964|10966|10931|10933|844|846|822|824|1207|1209|1185|1187|360|362|338|340|2175|2171|2176|2177|2173|2120|2122|2153|2149|2154|2155|2151|2131|2133|2098|2100|2538|2534|2539|2540|2536|2483|2485|2516|2512|2517|2518|2514|2494|2496|2461|2463|1691|1687|1692|1693|1689|1636|1638|1669|1665|1670|1671|1667|1647|1649|1614|1616|7253|7202|7204|7231|7213|7215|7191|7193|7180|7182|7374|7363|7323|7325|7352|7341|7334|7336|7301|7303|6773|6775|6762|6764|6751|6753|6740|6742|7495|7484|7444|7440|7445|7446|7442|7473|7462|7455|7451|7456|7457|7453|7433|7435|7422|7418|7423|7424|7420|7411|7407|7412|7413|7409|7389|7385|7390|7391|7387|7400|7396|7401|7402|7398|7616|7605|7565|7567|7594|7583|7576|7578|7543|7545|7737|7686|7688|7715|7697|7699|7664|7666|7858|7847|7807|7803|7808|7809|7805|7836|7825|7818|7814|7819|7820|7816|7796|7798|7785|7781|7786|7787|7783|7774|7770|7775|7776|7772|7752|7748|7753|7754|7750|7763|7759|7764|7765|7761|7011|7000|6960|6956|6961|6962|6958|6989|6978|6971|6967|6972|6973|6969|6949|6951|6938|6934|6939|6940|6936|6927|6923|6928|6929|6925|6905|6901|6906|6907|6903|6916|6912|6917|6918|6914|7979|7968|7928|7930|7957|7946|7939|7941|7917|7919|7906|7908|7132|7081|7083|7110|7092|7094|7059|7061|3260|3209|3211|3238|3220|3222|3198|3200|3187|3189|3381|3374|3370|3375|3376|3372|3330|3332|3359|3352|3348|3353|3354|3350|3341|3343|3308|3310|3502|3491|3451|3453|3480|3469|3462|3464|3440|3442|3429|3431|3623|3616|3612|3617|3618|3614|3572|3574|3601|3594|3590|3595|3596|3592|3583|3585|3550|3552|3865|3854|3814|3816|3843|3832|3825|3827|3803|3805|3792|3794|3018|3007|2967|2969|2996|2985|2978|2980|2956|2958|2945|2947|4591|4540|4542|4569|4551|4553|4529|4531|4518|4520|4712|4705|4701|4706|4707|4703|4661|4663|4690|4683|4679|4684|4685|4681|4672|4674|4639|4641|4833|4822|4782|4784|4811|4800|4793|4795|4771|4773|4760|4762|4954|4947|4943|4948|4949|4945|4903|4905|4932|4925|4921|4926|4927|4923|4914|4916|4881|4883|5196|5185|5145|5147|5174|5163|5156|5158|5134|5136|5123|5125|4349|4338|4298|4300|4327|4316|4309|4311|4287|4289|4276|4278|8584|8533|8535|8562|8544|8546|8522|8524|8511|8513|8705|8694|8654|8656|8683|8672|8665|8667|8632|8634|8104|8106|8093|8095|8082|8084|8071|8073|8826|8815|8775|8771|8776|8777|8773|8804|8793|8786|8782|8787|8788|8784|8764|8766|8753|8749|8754|8755|8751|8742|8738|8743|8744|8740|8720|8716|8721|8722|8718|8731|8727|8732|8733|8729|8947|8936|8896|8898|8925|8914|8907|8909|8874|8876|9068|9017|9019|9046|9028|9030|8995|8997|9189|9178|9138|9134|9139|9140|9136|9167|9156|9149|9145|9150|9151|9147|9127|9129|9116|9112|9117|9118|9114|9105|9101|9106|9107|9103|9083|9079|9084|9085|9081|9094|9090|9095|9096|9092|8342|8331|8291|8287|8292|8293|8289|8320|8309|8302|8298|8303|8304|8300|8280|8282|8269|8265|8270|8271|8267|8258|8254|8259|8260|8256|8236|8232|8237|8238|8234|8247|8243|8248|8249|8245|9310|9299|9259|9261|9288|9277|9270|9272|9248|9250|9237|9239|8463|8412|8414|8441|8423|8425|8390|8392|13055|13052|13033|13030|12219|12216|12197|12194|12450|12447|12428|12425|11735|11732|11713|11710|11130|11127|11108|11105|3738|3735|3716|3713|2902|2899|2880|2877|3133|3130|3111|3108|5069|5066|5047|5044|4233|4230|4211|4208|4464|4461|4442|4439|13909|13911|13898|13900|13887|13889|13876|13878|14153|14140|14142|14131|14118|14120|14395|14382|14384|14373|14360|14362|13546|13548|13535|13537|13524|13526|13513|13515|14516|14503|14505|14494|14481|14483|13669|13656|13658|13647|13634|13636|13790|13777|13779|13768|13755|13757|7256|7243|7245|7234|7221|7223|7487|7465|7729|7707|6893|6880|6882|6871|6858|6860|7850|7828|7003|6981|7124|7102|8587|8574|8576|8565|8552|8554|8818|8796|9060|9038|8224|8211|8213|8202|8189|8191|9181|9159|8334|8312|8455|8433|13054|13056|13032|13034|12218|12220|12196|12198|12449|12451|12427|12429|11734|11736|11712|11714|11129|11131|11107|11109|3737|3739|3715|3717|2901|2903|2879|2881|3132|3134|3110|3112|5068|5070|5046|5048|4232|4234|4210|4212|4463|4465|4441|4443|12578|12556|12699|12677|12822|12809|12800|12787|12941|12919|13185|13172|13163|13150|12338|12325|12316|12303|14030|14008|14272|14250|14635|14613|11372|11369|11350|11347|11489|11467|11614|11611|11592|11589|11852|11830|11005|10983|7377|7364|7355|7342|7619|7606|7597|7584|7982|7969|7960|7947|3261|3239|3382|3360|3505|3492|3483|3470|3624|3602|3868|3855|3846|3833|3021|3008|2999|2986|4592|4570|4713|4691|4836|4823|4814|4801|4955|4933|5199|5186|5177|5164|4352|4339|4330|4317|8708|8695|8686|8673|8950|8937|8928|8915|9313|9300|9291|9278|11371|11373|11349|11351|11613|11615|11591|11593|13913|13910|13902|13899|13891|13888|13880|13877|14144|14141|14122|14119|14386|14383|14364|14361|13550|13547|13539|13536|13528|13525|13517|13514|14507|14504|14485|14482|13660|13657|13638|13635|13781|13778|13759|13756|7247|7244|7225|7222|6884|6881|6862|6859|8578|8575|8556|8553|8215|8212|8193|8190|12581|12582|12583|12579|12559|12560|12561|12557|12702|12703|12704|12700|12680|12681|12682|12678|12812|12813|12814|12810|12790|12791|12792|12788|12944|12945|12946|12942|12922|12923|12924|12920|13175|13176|13177|13173|13153|13154|13155|13151|12328|12329|12330|12326|12306|12307|12308|12304|14033|14034|14035|14031|14011|14012|14013|14009|14275|14276|14277|14273|14253|14254|14255|14251|14638|14639|14640|14636|14616|14617|14618|14614|11492|11493|11494|11490|11470|11471|11472|11468|11855|11856|11857|11853|11833|11834|11835|11831|11008|11009|11010|11006|10986|10987|10988|10984|7367|7368|7369|7365|7345|7346|7347|7343|7609|7610|7611|7607|7587|7588|7589|7585|7972|7973|7974|7970|7950|7951|7952|7948|3264|3265|3266|3262|3242|3243|3244|3240|3385|3386|3387|3383|3363|3364|3365|3361|3495|3496|3497|3493|3473|3474|3475|3471|3627|3628|3629|3625|3605|3606|3607|3603|3858|3859|3860|3856|3836|3837|3838|3834|3011|3012|3013|3009|2989|2990|2991|2987|4595|4596|4597|4593|4573|4574|4575|4571|4716|4717|4718|4714|4694|4695|4696|4692|4826|4827|4828|4824|4804|4805|4806|4802|4958|4959|4960|4956|4936|4937|4938|4934|5189|5190|5191|5187|5167|5168|5169|5165|4342|4343|4344|4340|4320|4321|4322|4318|8698|8699|8700|8696|8676|8677|8678|8674|8940|8941|8942|8938|8918|8919|8920|8916|9303|9304|9305|9301|9281|9282|9283|9279|13062|13040|12457|12435|13912|13914|13901|13903|13890|13892|13879|13881|14143|14145|14121|14123|14393|14385|14387|14371|14363|14365|13549|13551|13538|13540|13527|13529|13516|13518|14506|14508|14484|14486|13659|13661|13637|13639|13788|13780|13782|13766|13758|13760|7246|7248|7224|7226|7740|7727|7718|7705|6891|6883|6885|6869|6861|6863|7135|7122|7113|7100|3745|3723|3140|3118|5076|5054|4471|4449|8577|8579|8555|8557|9071|9058|9049|9036|8222|8214|8216|8200|8192|8194|8466|8453|8444|8431|13066|13063|13044|13041|12461|12458|12439|12436|14397|14394|14375|14372|13792|13789|13770|13767|7731|7728|7709|7706|6895|6892|6873|6870|7126|7123|7104|7101|3749|3746|3727|3724|3144|3141|3122|3119|5080|5077|5058|5055|4475|4472|4453|4450|9062|9059|9040|9037|8226|8223|8204|8201|8457|8454|8435|8432|13065|13067|13043|13045|12460|12462|12438|12440|14396|14398|14374|14376|13791|13793|13769|13771|7730|7732|7708|7710|6894|6896|6872|6874|7125|7127|7103|7105|3748|3750|3726|3728|3143|3145|3121|3123|5079|5081|5057|5059|4474|4476|4452|4454|9061|9063|9039|9041|8225|8227|8203|8205|8456|8458|8434|8436|12820|12798|13183|13161|12336|12314|14151|14129|14514|14492|13667|13645|7254|7232|7375|7353|7498|7485|7476|7463|7617|7595|7861|7848|7839|7826|7014|7001|6992|6979|7980|7958|3503|3481|3866|3844|3019|2997|4834|4812|5197|5175|4350|4328|8585|8563|8706|8684|8829|8816|8807|8794|8948|8926|9192|9179|9170|9157|8345|8332|8323|8310|9311|9289|12823|12824|12825|12821|12801|12802|12803|12799|13186|13187|13188|13184|13164|13165|13166|13162|12339|12340|12341|12337|12317|12318|12319|12315|14154|14155|14156|14152|14132|14133|14134|14130|14517|14518|14519|14515|14495|14496|14497|14493|13670|13671|13672|13668|13648|13649|13650|13646|7257|7258|7259|7255|7235|7236|7237|7233|7378|7379|7380|7376|7356|7357|7358|7354|7488|7489|7490|7486|7466|7467|7468|7464|7620|7621|7622|7618|7598|7599|7600|7596|7851|7852|7853|7849|7829|7830|7831|7827|7004|7005|7006|7002|6982|6983|6984|6980|7983|7984|7985|7981|7961|7962|7963|7959|3506|3507|3508|3504|3484|3485|3486|3482|3869|3870|3871|3867|3847|3848|3849|3845|3022|3023|3024|3020|3000|3001|3002|2998|4837|4838|4839|4835|4815|4816|4817|4813|5200|5201|5202|5198|5178|5179|5180|5176|4353|4354|4355|4351|4331|4332|4333|4329|8588|8589|8590|8586|8566|8567|8568|8564|8709|8710|8711|8707|8687|8688|8689|8685|8819|8820|8821|8817|8797|8798|8799|8795|8951|8952|8953|8949|8929|8930|8931|8927|9182|9183|9184|9180|9160|9161|9162|9158|8335|8336|8337|8333|8313|8314|8315|8311|9314|9315|9316|9312|9292|9293|9294|9290|7741|7738|7742|7743|7739|7719|7716|7720|7721|7717|7136|7133|7137|7138|7134|7114|7111|7115|7116|7112|9072|9069|9073|9074|9070|9050|9047|9051|9052|9048|8467|8464|8468|8469|8465|8445|8442|8446|8447|8443|7499|7496|7500|7501|7497|7477|7474|7478|7479|7475|7862|7859|7863|7864|7860|7840|7837|7841|7842|7838|7015|7012|7016|7017|7013|6993|6990|6994|6995|6991|8830|8827|8831|8832|8828|8808|8805|8809|8810|8806|9193|9190|9194|9195|9191|9171|9168|9172|9173|9169|8346|8343|8347|8348|8344|8324|8321|8325|8326|8322".split_string("\\|");
  637. __hacky_optimal_configuration_order[2]["ascend"]["schematics"] = "10177|10175|893|891|11507|2190|10176|892|10178|11508|11506|2191|2189|10188|10186|10166|10164|894|10187|10165|895|10199|10197|10179|11518|11496|2201|2179|2256|9990|9988|10089|10087|10221|10219|10232|10230|10210|10208|10189|10167|11519|11517|11497|11495|896|897|898|2202|2200|2180|2178|10198|6217|6215|11529|2212|3554|2196|10180|10181|10182|11509|2192|9989|10088|10220|10231|10209|10190|10168|659|899|900|901|739|737|860|858|12871|11320|11419|11551|11562|11540|6216|2003|2102|2234|2245|2223|4885|9943|10254|10252|10243|10241|10200|10183|10184|10185|11530|11528|11510|2213|2211|2193|3555|3553|2278|2257|2255|738|859|740|861|10253|10242|10201|67|12872|12870|9991|10090|10276|10274|10265|10263|10222|10233|10211|10191|10192|10193|10169|10170|10171|14203|14201|11321|11319|11420|11418|11552|11550|11563|11561|11541|11539|11520|11498|2004|2002|2103|2101|2235|2233|2246|2244|2224|2222|2203|2181|7548|7546|4886|4884|8637|8635|8879|8877|11584|11573|2267|1277|11511|11512|11513|2194|2195|6218|2279|2277|2207|2185|21|761|759|741|882|880|862|1036|1034|189|187|431|429|68|66|750|748|728|726|871|869|849|847|7998|1157|1155|1278|1276|760|881|1035|188|430|6063|6061|6184|6182|9992|9954|9932|9371|10091|10275|10264|10223|10234|10212|10194|10195|10196|10172|10173|10174|14202|11521|11499|2204|2182|7547|8636|8878|552|550|673|671|69|783|781|794|792|772|770|751|729|904|902|915|913|872|850|1156|310|308|10255|10244|10202|10203|10204|11274|11585|11583|11574|11572|11531|11514|11515|11516|1957|2268|2266|2214|2197|2198|2199|3556|10056|10054|742|743|744|863|864|865|7999|7997|749|727|870|848|551|672|70|32|10|782|793|771|752|730|903|914|873|851|309|989|142|384|10702|11606|11595|6219|1385|2289|8967|8965|8120|8118|8362|8360|9384|8009|7987|10248|2258|2218|1158|1279|10055|505|626|816|814|805|803|762|745|746|747|937|935|926|924|883|866|867|868|1037|190|1110|263|1231|432|12717|12838|11386|6062|6183|194|2069|2730|2728|3400|3521|4731|4852|9208|9385|9383|10067|10065|10045|10043|553|674|71|72|73|838|836|827|825|784|795|773|753|754|755|731|732|733|959|957|948|946|905|916|874|875|876|852|853|854|1159|1121|1099|311|1280|1242|1220|8010|8008|7988|7986|9965|10256|10245|10205|10206|10207|10339|9492|9734|11532|2215|3557|43|815|804|763|936|925|884|1038|1000|978|191|153|131|433|395|373|12873|9993|9994|9995|10092|10093|10094|10277|10266|10224|10225|10226|10235|10236|10237|10213|10214|10215|10460|10581|14204|11322|11421|11607|11605|11596|11594|11553|11564|11542|11522|11523|11524|11500|11501|11502|2005|2104|2290|2288|2236|2247|2225|2205|2206|2183|2184|7549|4887|8638|8880|10066|10044|554|516|494|675|637|615|65|74|75|76|54|837|826|785|796|774|756|757|758|734|735|736|958|947|906|917|877|878|879|855|856|857|312|274|252|12718|12716|12839|12837|10057|14049|14047|14170|14168|11387|11385|2070|2068|7394|7392|7515|7513|3401|3399|3522|3520|4732|4730|4853|4851|8483|8481|8604|8602|8000|8725|8723|8846|8844|9088|9086|8241|8239|9209|9207|12047|12045|10594|10716|10714|5392|5390|6074|6072|6052|6050|6195|6193|6173|6171|557|1399|1397|4061|4059|9219|9197|8966|8119|8361|2729|3411|3389|3532|3510|8020|10270|14208|11912|6220|6221|6222|2009|2108|2280|2240|2259|2251|2229|1506|2595|1519|6064|6185|3940|3938|10257|10258|10259|10246|10247|11586|11575|11533|11534|11535|2269|2216|2217|3558|3559|3560|10474|10472|10595|10593|1160|1161|1162|1281|1282|1283|9099|9097|9077|9075|9220|9218|9198|9196|12046|12728|12706|12849|12827|13377|10715|11397|11375|5391|6073|6051|6194|6172|1398|2080|2058|6722|4060|4742|4720|4863|4841|8042|8053|8031|12874|9855|9987|9996|9997|9998|9976|10095|10096|10097|10278|10267|10227|10228|10229|10238|10239|10240|10216|10217|10218|9613|14205|11323|11285|11263|11422|11554|11565|11543|11525|11526|11527|11503|11504|11505|2006|1968|1946|2105|2237|2248|2226|2208|2209|2210|2186|2187|2188|7550|4888|8639|8881|9338|10078|10076|10058|10353|10351|9506|9504|9748|9746|14048|14169|817|806|764|765|766|938|927|885|886|887|1039|1040|1041|192|193|1132|1253|434|435|436|7393|7514|3412|3410|3390|3388|3533|3531|3511|3509|8482|8603|8021|8019|8001|8724|8845|8978|8976|8956|8954|8131|8129|8109|8107|9087|8240|8373|8371|8351|8349|1011|164|406|8125|1882|11579|2273|2260|2261|2262|10020|10009|10260|10261|10262|10249|10250|10251|11296|11587|11576|11536|11537|11538|11670|10823|11065|5983|6223|6224|6225|1869|1979|2281|2270|2219|2220|2221|2353|1748|3321|3561|3562|3563|13257|13255|11926|11924|6481|6479|6602|6600|2609|2607|5271|5269|12000|13499|13497|10669|5345|6085|6083|6065|6206|6204|6186|6360|6358|5513|5511|5755|5753|810|931|1352|1520|1518|2731|2683|3818|3939|4014|9230|208|3697|2850|3092|12875|12876|12877|10279|10280|10281|10268|10269|14206|14207|11324|11325|11326|11423|11424|11425|11608|11597|11555|11556|11557|11566|11567|11568|11544|11545|11546|11791|2007|2008|2106|2107|2291|2238|2239|2249|2250|2227|2228|2474|7551|7552|7553|4889|4890|4891|8640|8641|8642|8882|8883|8884|11601|11588|11589|11590|11577|11578|2295|2282|2283|2284|2271|2272|8968|8121|8363|12729|12727|12707|12705|12850|12848|12828|12826|9869|9867|9386|10100|10098|10111|10109|10068|10046|10473|9627|9625|13378|13376|14060|14058|14038|14036|14181|14179|14159|14157|11398|11396|11376|11374|555|556|676|677|678|839|828|786|787|788|797|798|799|775|776|777|960|949|907|908|909|918|919|920|1154|1163|1164|1165|1143|313|314|315|1275|1284|1285|1286|1264|2081|2079|2059|2057|6723|6721|7405|7403|7383|7381|7526|7524|7504|7502|4743|4741|4721|4719|4864|4862|4842|4840|8494|8492|8472|8470|8615|8613|8593|8591|8043|8041|8054|8052|8032|8030|8011|7989|8736|8734|8714|8712|8857|8855|8835|8833|9098|9076|8252|8250|8230|8228|12638|12878|12879|12880|10042|10031|10282|10283|10284|10271|10272|10273|13969|14209|14210|14211|11186|11318|11327|11328|11329|11307|11426|11427|11428|11609|11598|11558|11559|11560|11569|11570|11571|11547|11548|11549|10944|2001|2010|2011|2012|1990|2109|2110|2111|2292|2241|2242|2243|2252|2253|2254|2230|2231|2232|1627|7314|7554|7555|7556|4652|4892|4893|4894|8643|8644|8645|8885|8886|8887|10077|10352|9505|9747|527|648|98|87|818|807|767|768|769|939|928|888|889|890|1033|1042|1043|1044|1022|186|195|196|197|175|285|428|437|438|439|417|8977|8955|8130|8108|8372|8350|11610|11611|11612|11599|11600|2293|2294|12739|12860|13014|12167|12409|13498|11373|11362|11351|11340|11408|11613|11614|11615|11602|11603|11604|11591|11592|11593|11580|11581|11582|11683|10836|11078|6084|6205|6359|5512|5754|571|230|2056|2045|2034|2023|2091|2296|2297|2298|2285|2286|2287|2274|2275|2276|2263|2264|2265|2366|1761|3213|3334|2732|2694|2672|3444|3455|3433|3422|3565|3576|3543|2971|4753|4874|5028|4181|4423|8075|8064|13452|6313|5466|5708|1473|8186|8184|12048|13135|13256|13862|13860|14587|10717|11804|11925|5876|5874|5997|5995|5393|6107|6105|6118|6116|6096|6094|6075|6053|6228|6226|6239|6237|6196|6174|6480|5634|5632|6601|832|953|1883|1881|1400|2487|2608|7932|4062|5149|5270|9252|9263|9241|2135|10306|9459|9701|14054|14175|6066|6067|6068|6187|6188|6189|2075|3698|3696|2851|2849|3941|3093|3091|8488|8989|8987|8969|8142|8140|8122|8384|8382|8364|12719|12840|10059|10060|10061|14050|14171|11388|2071|7395|7516|3402|3523|3819|3817|4733|4854|8484|8605|8002|8003|8004|8726|8847|9110|9108|9089|8242|9231|9229|9210|1404|8970|8971|8972|8123|8124|8365|8366|8367|9868|9387|9349|9327|10099|10110|10069|10047|9626|14059|14037|14180|14158|549|558|559|560|538|670|679|680|681|120|109|840|829|789|790|791|800|801|802|778|779|780|961|950|910|911|912|921|922|923|1066|1055|219|307|316|317|318|296|461|450|7404|7382|7525|7503|8493|8471|8614|8592|8012|7990|8735|8713|8856|8834|8988|8141|8251|8229|8383|12530|12651|12049|12011|11989|12761|12772|12750|12882|12893|13136|13134|12288|10475|10596|13861|14467|14465|14588|14586|11199|10718|10680|10658|11430|11441|11805|11803|10957|5875|5996|5394|5356|5334|6106|6117|6095|6076|6054|6227|6238|6197|6175|5633|593|1401|1363|1341|2113|2124|2488|2486|1640|7812|7810|7933|7931|4544|4665|4063|4025|4003|4775|4786|4764|4896|4907|5150|5148|4302|8097|8086|8185|9132|9130|9143|9141|9121|9119|9100|9078|9253|9251|9264|9262|9242|9240|9221|9199|12740|12738|12720|12861|12859|12841|13015|13013|12168|12166|12410|12408|9822|10133|10131|10122|10120|10079|10062|10063|10064|10354|9507|10427|9580|10548|9749|13331|14071|14069|14051|14192|14190|14172|14346|14344|13741|13739|11409|11407|11389|11684|11682|10837|10835|11079|11077|819|820|821|808|809|940|941|942|929|930|1187|1176|1308|1297|2092|2090|2072|2367|2365|1762|1760|6676|7416|7414|7396|7537|7535|7517|7691|7689|6844|6842|7086|7084|3214|3212|3335|3333|3445|3443|3456|3454|3434|3432|3423|3421|3413|3391|3403|3566|3564|3577|3575|3544|3542|3534|3512|3524|2972|2970|4754|4752|4734|4875|4873|4855|5029|5027|4182|4180|4424|4422|8505|8503|8485|8626|8624|8606|8076|8074|8065|8063|8022|8005|8006|8007|8747|8745|8727|8868|8866|8848|9011|9009|9022|9020|9000|8998|8979|8957|8164|8162|8175|8173|8153|8151|8132|8110|9109|9090|8263|8261|8243|9211|8406|8404|8417|8415|8395|8393|8374|8352|13210|9511|13815|14115|14113|14236|14234|13500|11879|5829|5950|6140|6138|6129|6127|6086|6069|6070|6071|6261|6259|6250|6248|6207|6190|6191|6192|6361|5514|6434|5587|6555|5756|1836|2136|2134|1521|2562|2733|2734|2735|3942|3904|3882|3893|5224|8549|8547|8208|8206|8136|8114|9285|9274|13258|11927|6482|6603|2610|5272|2157|5518|12968|12121|12363|14299|13694|11637|10790|11032|2320|1715|7644|6797|7039|3699|3651|2852|2804|3094|3046|4982|4135|4377|9044|9042|9033|9031|8990|8973|8974|8975|8197|8195|8143|8126|8127|8128|8439|8437|8428|8426|8385|8368|8369|8370|2614|9360|10132|10121|10080|10355|10317|10295|9508|9470|9448|9750|9712|9690|14070|14191|14345|13740|582|703|692|822|823|824|811|812|813|943|944|945|932|933|934|1088|1077|241|340|329|483|472|7415|7536|7690|6843|7085|3414|3392|3535|3513|8504|8625|8023|8746|8867|9010|9021|8999|8980|8958|8163|8174|8152|8133|8111|8262|8405|8416|8394|8375|8353|12721|12722|12723|12842|12843|12844|14052|14053|14173|14174|11390|11391|11392|2073|2074|7397|7398|7399|7518|7519|7520|3404|3405|3406|3525|3526|3527|3820|4735|4736|4737|4856|4857|4858|8486|8487|8607|8608|8609|8728|8729|8730|8849|8850|8851|9165|9163|9154|9152|9111|9091|9092|9093|8244|8245|8246|9286|9284|9275|9273|9232|9212|9213|9214|12022|12794|12783|12915|12904|14114|14235|13501|13463|13441|10691|11463|11452|5367|6139|6128|6087|6260|6249|6208|6362|6324|6302|5515|5477|5455|5757|5719|5697|1374|2146|1522|1484|1462|2727|2736|2737|2738|2716|2705|3499|3488|3477|3466|3620|3609|3598|3587|4036|4808|4797|4929|4918|8548|8207|2856|8187|8147|12050|12051|12052|13259|13221|13199|9874|13863|13383|14137|14135|14065|14043|14258|14256|14186|14164|10719|10720|10721|11928|11890|11868|5877|5998|5395|5396|5397|6162|6160|6151|6149|6108|6119|6097|6077|6078|6079|6055|6056|6057|6283|6281|6272|6270|6229|6240|6198|6199|6200|6176|6177|6178|6483|6445|6423|5635|6604|6566|6544|1884|1402|1403|2158|2156|2086|2064|2611|2573|2551|4064|4065|4066|5273|5235|5213|8571|8569|8499|8477|9307|9296|12531|12529|12652|12650|12762|12760|12773|12771|12751|12749|12730|12708|12883|12881|12894|12892|12851|12829|12289|12287|9870|9388|9389|9390|10155|10153|10144|10142|10101|10112|10070|10071|10072|10048|10049|10050|10476|10438|10416|9628|10597|10559|10537|13983|13981|13379|14093|14091|14104|14102|14082|14080|14061|14039|14214|14212|14225|14223|14182|14160|14466|13620|13618|11200|11198|11431|11429|11442|11440|11399|11377|10958|10956|841|842|843|830|831|962|963|964|951|952|1209|1198|1330|1319|2114|2112|2125|2123|2082|2060|1641|1639|7207|7205|7328|7326|6724|7438|7436|7449|7447|7427|7425|7406|7384|7559|7557|7570|7568|7527|7505|7811|6965|6963|4545|4543|4666|4664|4776|4774|4787|4785|4765|4763|4744|4722|4897|4895|4908|4906|4865|4843|4303|4301|8527|8525|8538|8536|8516|8514|8495|8473|8648|8646|8659|8657|8616|8594|8098|8096|8087|8085|8044|8055|8033|8013|8014|8015|7991|7992|7993|8769|8767|8780|8778|8758|8756|8737|8715|8890|8888|8901|8899|8858|8836|9131|9142|9120|9101|9079|8285|8283|8296|8294|8274|8272|8253|8231|9222|9200|3943|3944|3945|9525|13474|5881|6335|5488|5730|1418|1495|8188|12484|12605|12795|12793|12784|12782|12741|12724|12725|12726|12916|12914|12905|12903|12862|12845|12846|12847|13016|12169|13089|12242|12411|10134|10123|10081|10082|10083|10356|10357|10358|9509|9510|10449|10570|9751|9752|9753|13936|14126|14124|14072|14055|14056|14057|14247|14245|14193|14176|14177|14178|14347|14420|13573|14541|13742|11153|11464|11462|11453|11451|11410|11393|11394|11395|11685|10838|11758|10911|11080|2147|2145|2093|2076|2077|2078|2368|2441|1594|1763|7160|7281|7471|7469|7460|7458|7417|7400|7401|7402|7592|7590|7581|7579|7538|7521|7522|7523|7692|6845|7765|6918|7886|7087|3215|3167|3336|3288|3500|3498|3489|3487|3446|3478|3476|3467|3465|3457|3435|3424|3415|3416|3417|3393|3394|3395|3407|3408|3409|3621|3619|3610|3608|3567|3599|3597|3588|3586|3578|3545|3536|3537|3538|3514|3515|3516|3528|3529|3530|3821|3783|3761|3772|2973|2925|4498|4619|4809|4807|4798|4796|4755|4738|4739|4740|4930|4928|4919|4917|4876|4859|4860|4861|5030|4183|5103|4256|4425|8560|8558|8506|8489|8490|8491|8681|8679|8670|8668|8627|8610|8611|8612|8077|8066|8024|8025|8026|8802|8800|8791|8789|8748|8731|8732|8733|8923|8921|8912|8910|8869|8852|8853|8854|9066|9064|9055|9053|9012|9023|9001|8981|8982|8983|8959|8960|8961|8219|8217|8165|8176|8154|8134|8135|8112|8113|9164|9153|9112|9094|9095|9096|8318|8316|8307|8305|8264|8247|8248|8249|9233|9215|9216|9217|8461|8459|8450|8448|8407|8418|8396|8376|8377|8378|8354|8355|8356|10328|9481|9723|3700|3662|3640|2853|2815|2793|3095|3057|3035|9043|9032|8991|8196|8144|8438|8427|8386|12173|13232|10127|14116|14076|14237|14197|14351|13502|13503|13504|13746|10842|11901|6141|6130|6088|6089|6090|6262|6251|6209|6210|6211|6363|6364|6365|5516|5517|6456|6577|5758|5759|5760|2137|2097|2372|1523|1524|1525|2584|1767|6849|3219|3937|3946|3947|3948|3926|3915|4187|5246|8550|8510|8070|8209|8169|8180|8158|12044|12053|12054|12055|12033|12816|12805|12937|12926|13864|13826|13804|14136|14257|10713|10722|10723|10724|11485|11474|5878|5840|5818|5999|5961|5939|5389|5398|5399|5400|5378|6161|6150|6109|6120|6098|6080|6081|6082|6058|6059|6060|6282|6271|6230|6241|6201|6202|6203|6179|6180|6181|5636|5598|5576|1885|1847|1825|1396|1405|1406|1407|2168|4058|4067|4068|4069|4047|4830|4819|4951|4940|8570|13260|13261|13262|14472|14593|11929|11930|11931|6484|6485|6486|6605|6606|6607|2493|2612|2613|5274|5275|5276|3701|3702|3703|2854|2855|3096|3097|3098|9045|9034|8992|8993|8994|8198|8145|8146|8440|8429|8387|8388|8389|6134|6255|2628|9038|8202|8189|8190|8191|8433|12077|12066|12742|12731|12709|12863|12852|12830|13017|12990|12979|12957|12170|12143|12132|12110|13137|12412|12385|12374|12352|9888|9871|9844|9833|9811|9382|9415|9404|9391|9392|9393|10154|10143|10102|10135|10124|10113|10084|10085|10086|10073|10074|10075|10051|10052|10053|10350|10383|10372|10359|10360|10361|9547|9503|9536|9512|9513|9514|10477|10478|10479|9629|9602|9591|9569|10598|10599|10600|9745|9778|9767|9754|9755|9756|13837|13982|13397|13380|13353|13342|13320|14092|14125|14117|14103|14081|14073|14062|14040|14213|14246|14238|14224|14194|14183|14161|14348|14321|14310|14288|13496|13505|13506|13507|13485|14468|13619|14589|13743|13716|13705|13683|10746|10735|11411|11400|11378|11686|11659|11648|11626|10839|10812|10801|10779|11806|11081|11054|11043|11021|5851|5972|5422|5411|6142|6131|6091|6092|6093|6263|6252|6212|6213|6214|6357|6366|6367|6368|6346|5510|5519|5520|5521|5499|5609|5752|5761|5762|5763|5741|604|725|714|844|845|846|833|834|835|965|966|967|954|955|956|362|351|1858|1440|1429|2138|2094|2083|2061|2369|2342|2331|2309|1517|1526|1527|1528|2489|1764|1737|1726|1704|7206|7327|6725|6698|6687|6665|7437|7470|7459|7448|7426|7418|7407|7385|7558|7591|7580|7569|7539|7528|7506|7693|7666|7655|7633|6846|6819|6808|6786|7813|6964|7934|7088|7061|7050|7028|3216|3178|3156|3337|3299|3277|2782|2771|2760|2749|3447|3458|3436|3425|3418|3419|3420|3396|3397|3398|3568|3579|3546|3539|3540|3541|3517|3518|3519|3695|3704|3705|3706|3684|3673|2848|2857|2858|2859|2837|2826|2974|2936|2914|3090|3099|3100|3101|3079|3068|4091|4080|4756|4745|4723|4877|4866|4844|5031|5004|4993|4971|4184|4157|4146|4124|5151|4426|4399|4388|4366|8526|8559|8551|8537|8515|8507|8496|8474|8647|8680|8669|8658|8628|8617|8595|8045|8078|8067|8056|8034|8027|8028|8029|8016|8017|8018|7994|7995|7996|8768|8801|8790|8779|8757|8749|8738|8716|8889|8922|8911|8900|8870|8859|8837|9065|9054|9013|9046|9035|9024|9002|8995|8996|8997|8984|8985|8986|8962|8963|8964|8218|8210|8166|8199|8177|8155|8148|8149|8150|8137|8138|8139|8115|8116|8117|9187|9185|9176|9174|9133|9159|9144|9122|9102|9103|9104|9080|9081|9082|8284|8317|8306|8295|8273|8265|8254|8232|9308|9306|9297|9295|9254|9280|9265|9243|9223|9224|9225|9201|9202|9203|8460|8449|8408|8441|8430|8419|8397|8390|8391|8392|8379|8380|8381|8357|8358|8359|3822|3823|3824|9166|9155|9113|9114|9115|9287|9276|9234|9235|9236|12536|13254|13263|13264|13265|13243|10149|13865|13866|13867|13988|14138|14098|14109|14087|14259|14219|14230|13625|11205|11923|11932|11933|11934|5879|5880|6000|6001|6002|6163|6152|6110|6111|6112|6121|6122|6123|6099|6100|6101|6284|6273|6231|6232|6233|6242|6243|6244|6478|6487|6488|6489|6467|5637|5638|5639|6599|6608|6609|6610|6588|1886|1887|1888|2159|2119|2130|1646|2606|2615|2616|2617|7212|4550|5268|5277|5278|5279|5257|8572|8532|8543|8521|8092|12796|12785|12743|12744|12745|12917|12906|12864|12865|12866|13018|13019|13020|12171|12172|13111|12413|12414|12415|10136|10137|10138|10125|10126|10504|10493|10625|10614|14127|14074|14075|14248|14195|14196|14349|14350|14442|14563|13744|13745|11465|11454|11412|11413|11414|11687|11688|11689|10840|10841|11780|11082|11083|11084|2148|2095|2096|2370|2371|2463|1765|1766|7472|7461|7419|7420|7421|7593|7582|7540|7541|7542|7694|7695|7696|6847|6848|7787|7908|7089|7090|7091|3217|3218|3338|3339|3340|3501|3490|3448|3449|3450|3479|3468|3459|3460|3461|3437|3438|3439|3426|3427|3428|3622|3611|3569|3570|3571|3600|3589|3580|3581|3582|3547|3548|3549|3816|3825|3826|3827|3805|3794|2975|2976|2977|4810|4799|4757|4758|4759|4931|4920|4878|4879|4880|5032|5033|5034|4185|4186|5125|4427|4428|4429|8561|8508|8509|8682|8671|8629|8630|8631|8079|8080|8081|8068|8069|8803|8792|8750|8751|8752|8924|8913|8871|8872|8873|9067|9056|9014|9015|9016|9025|9026|9027|9003|9004|9005|8220|8167|8168|8178|8179|8156|8157|9167|9156|9116|9117|9118|8319|8308|8266|8267|8268|9288|9277|9237|9238|9239|8462|8451|8409|8410|8411|8420|8421|8422|8398|8399|8400|12532|12653|12817|12815|12806|12804|12763|12789|12774|12752|12732|12733|12734|12710|12711|12712|12938|12936|12927|12925|12884|12910|12895|12853|12854|12855|12831|12832|12833|13138|13100|13078|12290|13287|13276|9872|9873|10156|10145|10103|10104|10105|10114|10115|10116|10471|10480|10481|10482|9630|9631|9632|10592|10601|10602|10603|13984|13381|13382|14148|14146|14094|14131|14118|14119|14120|14105|14083|14063|14064|14041|14042|14269|14267|14215|14252|14239|14240|14241|14226|14184|14185|14162|14163|14486|14469|14431|14409|13621|14607|14590|14552|14530|11201|11486|11484|11475|11473|11432|11458|11443|11401|11402|11403|11379|11380|11381|11807|11769|11747|10959|11956|11945|6156|6143|6144|6145|6132|6133|6277|6264|6265|6266|6253|6254|6511|6500|6632|6621|2169|2167|2115|2152|2139|2140|2141|2126|2084|2085|2062|2063|2507|2490|2452|2430|1642|2650|2639|7208|7329|6726|6727|6728|7493|7491|7482|7480|7439|7465|7450|7428|7408|7409|7410|7386|7387|7388|7614|7612|7603|7601|7560|7586|7571|7529|7530|7531|7507|7508|7509|7814|7776|7754|6966|7935|7897|7875|3494|3472|3615|3593|3992|3981|3970|3959|4546|4667|4831|4829|4820|4818|4777|4803|4788|4766|4746|4747|4748|4724|4725|4726|4952|4950|4941|4939|4898|4924|4909|4867|4868|4869|4845|4846|4847|5152|5114|5092|4304|5301|5290|8582|8580|8528|8565|8552|8553|8554|8539|8517|8497|8498|8475|8476|8703|8701|8692|8690|8649|8675|8660|8618|8619|8620|8596|8597|8598|8099|8088|8046|8047|8048|8057|8058|8059|8035|8036|8037|8824|8822|8813|8811|8770|8796|8781|8759|8739|8740|8741|8717|8718|8719|8945|8943|8934|8932|8891|8917|8902|8860|8861|8862|8838|8839|8840|9060|9047|9048|9049|9036|9037|8224|8211|8212|8213|8200|8201|9186|9175|9134|9145|9123|9105|9106|9107|9083|9084|9085|8340|8338|8329|8327|8286|8312|8297|8275|8255|8256|8257|8233|8234|8235|9255|9266|9244|9226|9227|9228|9204|9205|9206|8455|8442|8443|8444|8431|8432|12506|12627|12099|12088|12797|12786|12746|12747|12748|12918|12907|12867|12868|12869|13012|13021|13022|13023|13001|12165|12174|12175|12176|12154|12264|12407|12416|12417|12418|12396|9910|9899|10139|10140|10141|10128|10129|10130|10405|10394|9558|9657|9646|9800|9789|13859|13868|13869|13870|13848|13958|13419|13408|14139|14128|14077|14078|14079|14260|14249|14198|14199|14200|14343|14352|14353|14354|14332|13595|13738|13747|13748|13749|13727|11175|10768|10757|11466|11455|11415|11416|11417|11681|11690|11691|11692|10834|10843|10844|10845|10933|11076|11085|11086|11087|5873|5882|5883|5884|5862|5994|6003|6004|6005|5444|5433|6164|6153|6113|6114|6115|6124|6125|6126|6102|6103|6104|6285|6274|6234|6235|6236|6245|6246|6247|5631|5640|5641|5642|5620|1880|1889|1890|1891|1451|2160|2149|2098|2099|2100|2364|2373|2374|2375|1616|1759|1768|1769|1770|7182|7303|6753|6742|7473|7462|7422|7423|7424|7594|7583|7543|7544|7545|7688|7697|7698|7699|7677|6841|6850|6851|6852|6830|6940|7083|7092|7093|7094|7072|3211|3220|3221|3222|3200|3189|3332|3341|3342|3343|3310|3502|3491|3451|3452|3453|3480|3469|3462|3463|3464|3440|3441|3442|3429|3430|3431|3623|3612|3572|3573|3574|3601|3590|3583|3584|3585|3550|3551|3552|2969|2978|2979|2980|2958|2947|4520|4641|4113|4102|4811|4800|4760|4761|4762|4932|4921|4881|4882|4883|5026|5035|5036|5037|5015|4179|4188|4189|4190|4168|4278|4421|4430|4431|4432|4410|8573|8562|8511|8512|8513|8683|8672|8632|8633|8634|8082|8083|8084|8071|8072|8073|8804|8793|8753|8754|8755|8925|8914|8874|8875|8876|9068|9057|9017|9018|9019|9028|9029|9030|9006|9007|9008|8221|8170|8171|8172|8181|8182|8183|8159|8160|8161|9181|9168|9169|9170|9157|9158|8320|8309|8269|8270|8271|9302|9289|9290|9291|9278|9279|8463|8452|8412|8413|8414|8423|8424|8425|8401|8402|8403|12811|12798|12799|12800|12787|12788|12932|12919|12920|12921|12908|12909|13166|13155|13309|13298|14153|14140|14141|14142|14129|14130|14274|14261|14262|14263|14250|14251|14508|14497|14629|14618|11480|11467|11468|11469|11456|11457|11835|11824|11978|11967|6165|6166|6167|6154|6155|6286|6287|6288|6275|6276|6533|6522|6654|6643|2174|2161|2162|2163|2150|2151|2529|2518|2661|7487|7474|7475|7476|7463|7464|7608|7595|7596|7597|7584|7585|7842|7831|7963|7952|3503|3504|3505|3492|3493|3481|3482|3483|3470|3471|3624|3625|3626|3613|3614|3602|3603|3604|3591|3592|3871|3860|3849|3838|4825|4812|4813|4814|4801|4802|4946|4933|4934|4935|4922|4923|5180|5169|5323|5312|8587|8574|8575|8576|8563|8564|8697|8684|8685|8686|8673|8674|8818|8805|8806|8807|8794|8795|8939|8926|8927|8928|8915|8916|9069|9070|9071|9058|9059|8222|8223|9171|9172|9173|9160|9161|9162|8334|8321|8322|8323|8310|8311|9292|9293|9294|9281|9282|9283|8464|8465|8466|8453|8454|12583|12572|12528|12561|12550|12537|12533|12534|12538|12539|12535|12517|12495|12473|12704|12693|12649|12682|12671|12658|12654|12655|12659|12660|12656|12657|12616|12594|12823|12819|12820|12824|12825|12818|12821|12822|12812|12808|12809|12813|12814|12807|12810|12768|12764|12765|12769|12770|12766|12767|12801|12802|12803|12790|12791|12792|12779|12775|12776|12780|12781|12777|12778|12757|12753|12754|12758|12759|12755|12756|12735|12736|12737|12713|12714|12715|12944|12940|12941|12945|12946|12939|12942|12943|12933|12929|12930|12934|12935|12928|12931|12889|12885|12886|12890|12891|12887|12888|12922|12923|12924|12911|12912|12913|12900|12896|12897|12901|12902|12898|12899|12856|12857|12858|12834|12835|12836|13067|13056|13045|13034|12220|12209|12198|12187|13188|13177|13133|13142|13139|13143|13144|13140|13141|13122|12341|12330|12286|12319|12308|12295|12291|12292|12296|12297|12293|12294|12275|12253|12231|12462|12451|12440|12429|9921|9866|9875|9876|9877|9437|9426|10161|10157|10158|10162|10163|10159|10160|10150|10146|10147|10151|10152|10148|10106|10107|10108|10117|10118|10119|10526|10515|9679|9668|9624|9633|9634|9635|10647|10636|13914|13903|13892|13881|14035|14024|13980|14013|14002|13989|13985|13986|13990|13991|13987|13947|13925|13430|13375|13384|13385|13386|13364|14154|14150|14151|14155|14156|14149|14152|14147|14143|14144|14145|14099|14095|14096|14100|14101|14097|14132|14133|14134|14121|14122|14123|14110|14106|14107|14111|14112|14108|14088|14084|14085|14089|14090|14086|14066|14067|14068|14044|14045|14046|14275|14271|14272|14276|14277|14270|14273|14268|14264|14265|14266|14220|14216|14217|14221|14222|14218|14253|14254|14255|14242|14243|14244|14231|14227|14228|14232|14233|14229|14187|14188|14189|14165|14166|14167|14398|14387|14376|14365|13551|13540|13529|13518|14519|14464|14473|14470|14474|14475|14471|14453|13672|13661|13617|13650|13639|13626|13622|13623|13627|13628|13624|13606|13584|13562|14640|14585|14594|14591|14595|14596|14592|14574|13793|13782|13771|13760|11252|11241|11197|11230|11219|11206|11202|11203|11207|11208|11204|11164|11142|11492|11488|11489|11493|11494|11487|11490|11491|11481|11477|11478|11482|11483|11476|11479|11437|11433|11434|11438|11439|11435|11436|11470|11471|11472|11459|11460|11461|11448|11444|11445|11449|11450|11446|11447|11404|11405|11406|11382|11383|11384|11736|11725|11714|11703|10889|10878|10867|10856|11857|11846|11802|11811|11808|11812|11813|11809|11810|11010|10999|10955|10988|10977|10964|10960|10961|10965|10966|10962|10963|10922|10900|11131|11120|11109|11098|5928|5917|5906|5895|6049|6038|6027|6016|6168|6169|6170|6157|6158|6159|6146|6147|6148|6135|6136|6137|6289|6290|6291|6278|6279|6280|6267|6268|6269|6256|6257|6258|6412|6401|6390|6379|5565|5554|5543|5532|5686|5675|5664|5653|5807|5796|5785|5774|1935|1924|1913|1902|2175|2171|2172|2176|2177|2170|2173|2164|2165|2166|2120|2116|2117|2121|2122|2118|2153|2154|2155|2142|2143|2144|2131|2127|2128|2132|2133|2129|2087|2088|2089|2065|2066|2067|2419|2408|2397|2386|1572|1561|1550|1539|2540|2485|2494|2491|2495|2496|2492|1693|1682|1638|1671|1660|1647|1643|1644|1648|1649|1645|1605|1583|1814|1803|1792|1781|7259|7248|7204|7237|7226|7213|7209|7210|7214|7215|7211|7193|7171|7149|7380|7369|7325|7358|7347|7334|7330|7331|7335|7336|7332|7333|7292|7270|6775|6764|6720|6729|6730|6731|6709|7499|7495|7496|7500|7501|7494|7497|7498|7492|7488|7484|7485|7489|7490|7483|7486|7481|7444|7440|7441|7445|7446|7442|7443|7477|7478|7479|7466|7467|7468|7455|7451|7452|7456|7457|7453|7454|7433|7429|7430|7434|7435|7431|7432|7411|7412|7413|7389|7390|7391|7620|7616|7617|7621|7622|7615|7618|7619|7613|7609|7605|7606|7610|7611|7604|7607|7602|7565|7561|7562|7566|7567|7563|7564|7598|7599|7600|7587|7588|7589|7576|7572|7573|7577|7578|7574|7575|7532|7533|7534|7510|7511|7512|7743|7732|7721|7710|6896|6885|6874|6863|7864|7853|7809|7818|7815|7819|7820|7816|7817|7798|7017|7006|6962|6995|6984|6971|6967|6968|6972|6973|6969|6970|6951|6929|6907|7985|7974|7930|7939|7936|7940|7941|7937|7938|7919|7138|7127|7116|7105|3266|3255|3244|3233|3387|3376|3365|3354|3506|3507|3508|3495|3496|3497|3484|3485|3486|3473|3474|3475|3627|3628|3629|3616|3617|3618|3605|3606|3607|3594|3595|3596|3750|3739|3728|3717|2903|2892|2881|2870|3024|3013|3002|2991|3145|3134|3123|3112|4597|4586|4542|4575|4564|4551|4547|4548|4552|4553|4549|4531|4509|4487|4718|4707|4663|4696|4685|4672|4668|4669|4673|4674|4670|4671|4630|4608|4837|4833|4834|4838|4839|4832|4835|4836|4826|4822|4823|4827|4828|4821|4824|4782|4778|4779|4783|4784|4780|4781|4815|4816|4817|4804|4805|4806|4793|4789|4790|4794|4795|4791|4792|4771|4767|4768|4772|4773|4769|4770|4749|4750|4751|4727|4728|4729|4958|4954|4955|4959|4960|4953|4956|4957|4947|4943|4944|4948|4949|4942|4945|4903|4899|4900|4904|4905|4901|4902|4936|4937|4938|4925|4926|4927|4914|4910|4911|4915|4916|4912|4913|4870|4871|4872|4848|4849|4850|5081|5070|5059|5048|4234|4223|4212|4201|5202|5191|5147|5156|5153|5157|5158|5154|5155|5136|4355|4344|4300|4333|4322|4309|4305|4306|4310|4311|4307|4308|4289|4267|4245|4476|4465|4454|4443|8588|8584|8585|8589|8590|8583|8586|8581|8577|8578|8579|8533|8529|8530|8534|8535|8531|8566|8567|8568|8555|8556|8557|8544|8540|8541|8545|8546|8542|8522|8518|8519|8523|8524|8520|8500|8501|8502|8478|8479|8480|8709|8705|8706|8710|8711|8704|8707|8708|8702|8698|8694|8695|8699|8700|8693|8696|8691|8654|8650|8651|8655|8656|8652|8653|8687|8688|8689|8676|8677|8678|8665|8661|8662|8666|8667|8663|8664|8621|8622|8623|8599|8600|8601|8104|8100|8101|8105|8106|8102|8103|8093|8089|8090|8094|8095|8091|8049|8050|8051|8060|8061|8062|8038|8039|8040|8830|8826|8827|8831|8832|8825|8828|8829|8823|8819|8815|8816|8820|8821|8814|8817|8812|8775|8771|8772|8776|8777|8773|8774|8808|8809|8810|8797|8798|8799|8786|8782|8783|8787|8788|8784|8785|8764|8760|8761|8765|8766|8762|8763|8742|8743|8744|8720|8721|8722|8951|8947|8948|8952|8953|8946|8949|8950|8944|8940|8936|8937|8941|8942|8935|8938|8933|8896|8892|8893|8897|8898|8894|8895|8929|8930|8931|8918|8919|8920|8907|8903|8904|8908|8909|8905|8906|8863|8864|8865|8841|8842|8843|9072|9073|9074|9061|9062|9063|9050|9051|9052|9039|9040|9041|8225|8226|8227|8214|8215|8216|8203|8204|8205|8192|8193|8194|9193|9189|9190|9194|9195|9188|9191|9192|9182|9178|9179|9183|9184|9177|9180|9138|9135|9139|9140|9136|9137|9149|9146|9150|9151|9147|9148|9127|9124|9128|9129|9125|9126|8346|8342|8343|8347|8348|8341|8344|8345|8339|8335|8331|8332|8336|8337|8330|8333|8328|8291|8287|8288|8292|8293|8289|8290|8324|8325|8326|8313|8314|8315|8302|8298|8299|8303|8304|8300|8301|8280|8276|8277|8281|8282|8278|8279|8258|8259|8260|8236|8237|8238|9314|9310|9311|9315|9316|9309|9312|9313|9303|9299|9300|9304|9305|9298|9301|9259|9256|9260|9261|9257|9258|9270|9267|9271|9272|9268|9269|9248|9245|9249|9250|9246|9247|8467|8468|8469|8456|8457|8458|8445|8446|8447|8434|8435|8436".split_string("\\|");
  638. __hacky_optimal_configuration_order[3]["easy"]["schematics"] = "1089|1210|1091|1212|1211|3872|5203|4004|1090|6534|7744|7865|3751|5082|9075|9196|10406|10527|6666|7997|1092|1213|0|5214|13189|11858|6413|2541|3874|5225|5205|8723|8844|242|363|7755|6908|7876|7029|5093|4246|4367|9086|8239|9207|8360|2|1|3873|4005|5204|4006|13068|14399|14520|11737|6536|2420|7150|7271|7392|7513|7634|6787|7766|7746|6910|7887|7867|7031|3753|4488|4609|4730|4851|4972|4125|5104|5084|4248|4369|8481|8602|8965|8118|9097|9077|8241|9218|9198|8362|4368|484|605|726|847|968|121|244|365|364|970|123|7030|5215|8361|2662|3993|10408|10529|1094|1095|1096|1215|1216|1217|6668|7999|7866|3752|5083|4247|9197|3875|5258|5269|5247|5236|5206|9141|9262|969|122|1093|1214|243|6537|7799|7810|7788|7777|7747|6911|7920|7931|7909|7898|7868|7032|3754|5137|5148|5126|5115|5085|4249|4370|9130|9119|9108|9078|8242|9251|9240|9229|9199|8363|13190|11859|6414|6535|2542|7745|6909|5226|9076|8240|5216|486|607|3|728|849|5324|6655|7986|13191|11860|6415|2543|7636|6789|4007|4974|4127|5227|8725|8846|8967|8120|9317|245|366|3877|3878|3879|5313|5302|5291|5280|5208|5209|5210|7033|4371|8364|7034|7035|7036|4372|4373|4374|8365|8366|8367|10528|6667|3876|4973|4126|5207|7998|6539|6540|6541|7854|7843|7832|7821|7749|7750|7751|6913|6914|6915|7975|7964|7953|7942|7870|7871|7872|3756|3757|3758|5192|5181|5170|5159|5087|5088|5089|4251|4252|4253|9185|9174|9163|9152|9080|9081|9082|8244|8245|8246|9306|9295|9284|9273|9201|9202|9203|13070|10409|10530|14401|14522|11739|2422|7152|7273|6669|7394|7515|7768|7757|7889|7878|4490|4611|4732|4853|5106|5095|8483|8604|8000|9099|9088|9220|9209|6538|7748|6912|7869|3755|5086|4250|5259|5270|5248|5237|9079|8243|9200|8370|7037|7038|7039|4375|4376|4377|8368|8369|7635|6788|7877|5094|8966|8119|9208|5217|13192|11861|6416|6542|6543|6544|2544|7637|6790|7752|7753|7754|6916|6917|6918|7873|7874|7875|3759|3760|3761|3880|3881|3882|4009|4010|4011|4975|4128|5090|5091|5092|4254|4255|4256|5314|5303|5260|5292|5281|5271|5249|5238|5228|5211|5212|5213|8726|8847|8968|8121|9143|9083|9084|9085|8247|8248|8249|9264|9204|9205|9206|367|8712|8833|6897|7018|2904|3025|4235|4356|8228|8349|2663|3994|2548|6794|4132|8125|11979|9922|10164|10648|1331|2664|4015|3995|13069|14521|11738|2421|7888|4489|4610|4008|4731|4852|5105|8724|8845|9219|13194|13195|13196|14406|14527|11863|11864|11865|6418|6419|6420|2427|2546|2547|7157|7638|7639|7640|7641|6791|6792|6793|4495|4976|4977|4978|4979|4129|4130|4131|5315|5304|5261|5293|5282|5272|5250|5239|5230|5231|5232|5218|5219|5220|5221|8488|8728|8729|8730|8849|8850|8851|8969|8970|8971|8972|8122|8123|8124|9144|9265|13076|13072|13073|13077|13078|13071|13074|13075|13197|13193|13198|13199|10414|10410|10411|10415|10416|10412|10413|10407|10535|10531|10532|10536|10537|10533|10534|14407|14403|14404|14408|14409|14402|14405|14400|14528|14524|14525|14529|14530|14523|14526|11745|11741|11742|11746|11747|11740|11743|11744|11866|11862|11867|11868|6421|6417|6422|6423|485|606|4|727|848|1097|1098|1099|1218|1219|1220|2428|2424|2425|2429|2430|2423|2426|2549|2545|2550|2551|7158|7154|7155|7159|7160|7153|7156|7151|7279|7275|7276|7280|7281|7274|7277|7278|7272|6674|6670|6671|6675|6676|6672|6673|7400|7396|7397|7401|7402|7395|7398|7399|7393|7521|7517|7518|7522|7523|7516|7519|7520|7514|7642|7643|7644|6795|6796|6797|7858|7857|7856|7855|7847|7846|7845|7844|7807|7803|7804|7808|7809|7802|7805|7801|7806|7800|7836|7835|7834|7833|7825|7824|7823|7822|7818|7814|7815|7819|7820|7813|7816|7812|7817|7811|7796|7792|7793|7797|7798|7791|7794|7790|7795|7789|7785|7781|7782|7786|7787|7780|7783|7779|7784|7778|7774|7770|7771|7775|7776|7769|7772|7773|7767|7763|7759|7760|7764|7765|7758|7761|7762|7756|7979|7978|7977|7976|7968|7967|7966|7965|7928|7924|7925|7929|7930|7923|7926|7922|7927|7921|7957|7956|7955|7954|7946|7945|7944|7943|7939|7935|7936|7940|7941|7934|7937|7933|7938|7932|7917|7913|7914|7918|7919|7912|7915|7911|7916|7910|7906|7902|7903|7907|7908|7901|7904|7900|7905|7899|7895|7891|7892|7896|7897|7890|7893|7894|7884|7880|7881|7885|7886|7879|7882|7883|4496|4492|4493|4497|4498|4491|4494|4617|4613|4614|4618|4619|4612|4615|4616|4012|4013|4014|4738|4734|4735|4739|4740|4733|4736|4737|4859|4855|4856|4860|4861|4854|4857|4858|4980|4981|4982|4133|4134|4135|5196|5195|5194|5193|5185|5184|5183|5182|5145|5141|5142|5146|5147|5140|5143|5139|5144|5138|5174|5173|5172|5171|5163|5162|5161|5160|5156|5152|5153|5157|5158|5151|5154|5150|5155|5149|5134|5130|5131|5135|5136|5129|5132|5128|5133|5127|5123|5119|5120|5124|5125|5118|5121|5117|5122|5116|5112|5108|5109|5113|5114|5107|5110|5111|5101|5097|5098|5102|5103|5096|5099|5100|5317|5316|5306|5305|5266|5262|5263|5267|5268|5264|5265|5295|5294|5284|5283|5277|5273|5274|5278|5279|5275|5276|5255|5251|5252|5256|5257|5253|5254|5244|5240|5241|5245|5246|5242|5243|5233|5229|5234|5235|5222|5223|5224|8489|8485|8486|8490|8491|8484|8487|8482|8610|8606|8607|8611|8612|8605|8608|8609|8603|8005|8001|8002|8006|8007|8003|8004|8731|8727|8732|8733|8852|8848|8853|8854|8973|8974|8975|8126|8127|8128|9189|9188|9187|9186|9178|9177|9176|9175|9138|9134|9135|9139|9140|9133|9136|9132|9137|9131|9167|9166|9165|9164|9156|9155|9154|9153|9149|9145|9146|9150|9151|9147|9148|9142|9127|9123|9124|9128|9129|9122|9125|9121|9126|9120|9116|9112|9113|9117|9118|9111|9114|9110|9115|9109|9105|9101|9102|9106|9107|9100|9103|9104|9098|9094|9090|9091|9095|9096|9089|9092|9093|9087|9310|9309|9308|9307|9299|9298|9297|9296|9259|9255|9256|9260|9261|9254|9257|9253|9258|9252|9288|9287|9286|9285|9277|9276|9275|9274|9270|9266|9267|9271|9272|9268|9269|9263|9248|9244|9245|9249|9250|9243|9246|9242|9247|9241|9237|9233|9234|9238|9239|9232|9235|9231|9236|9230|9226|9222|9223|9227|9228|9221|9224|9225|9215|9211|9212|9216|9217|9210|9213|9214|971|124|9559|9680|368|369|370|3026|4357|246|128|7139|7260|7381|7502|7623|6776|6899|7020|3146|3267|3388|3509|3630|2783|2906|3027|4477|4598|4719|4840|4961|4114|4237|4358|8470|8591|8954|8107|8230|8351|9801|10043|10285|9438|9561|9682|13310|5326|247|248|249|6677|6657|8008|7988|972|125|9319|487|608|5|6|7|729|850|2905|4236|5566|5687|5688|7019|8350|6656|7987|9681|371|372|373|973|974|975|126|127|13794|13431|11253|11495|5808|5929|6050|6171|6292|5445|5568|5689|1815|1936|2178|1452|7625|6778|2665|3632|2785|4048|4059|4037|4026|3996|4963|4116|8052|8734|8714|8855|8835|8956|8109|3631|2784|4962|4115|6900|7021|2907|3028|4238|4359|8231|8352|12221|12342|13552|13673|10890|11011|1573|1694|6919|7040|4257|4378|8250|8371|11980|9560|10649|5325|5567|250|251|252|1332|6898|4016|8229|9318|11981|9924|10166|10287|9440|10650|491|1333|4017|12463|12584|12705|12826|12947|12100|12223|12344|9562|9683|13915|14036|14157|14278|13554|13675|11132|11374|11616|10769|10892|11013|5327|2057|2299|1575|1696|7161|7141|7282|7262|6710|6721|6699|6688|6658|7403|7383|7524|7504|7645|6798|6921|7042|3148|3269|3390|3511|4499|4479|4620|4600|4741|4721|4862|4842|4983|4136|4259|4380|8492|8472|8613|8593|8041|8030|8019|7989|8976|8129|8252|8373|12343|11012|6293|5446|1695|7624|6777|4379|8955|8108|8877|7022|3029|4360|8353|8294|8415|7023|7024|7025|3030|3031|3032|4361|4362|4363|8354|8355|8356|9684|13674|7041|8372|9803|9320|10045|13312|489|490|610|611|612|731|732|733|852|853|854|6679|8010|12222|10891|1574|3147|3268|2666|3389|3510|4478|4599|3997|4720|4841|4258|8713|8834|6901|2908|4239|8232|5569|5690|7304|7447|7568|7546|7626|6779|2667|2668|2669|3633|2786|4642|4103|4092|4081|4070|3998|3999|4000|4785|4906|4884|4964|4117|8536|8657|8635|8767|8778|8756|8745|8715|8888|8899|8866|8836|9020|8957|8173|8110|8296|8417|13433|6294|5447|1454|6902|6903|6904|2909|2910|2911|4240|4241|4242|8233|8234|8235|9685|9686|9687|6952|6963|6941|6930|7073|7084|7062|7051|4290|4301|4279|4268|4411|4422|4400|4389|8283|8272|8261|8404|8393|8382|10286|9439|976|977|978|129|130|131|488|609|8|9|10|730|851|12224|12345|9564|9565|9566|13555|13676|10893|11014|5329|5330|5331|1576|1697|7194|7205|7183|7172|7142|7315|7326|7293|7263|6765|6754|6743|6732|6660|6661|6662|7436|7425|7414|7384|7557|7535|7505|7678|7689|7667|7656|6831|6842|6820|6809|6954|6965|6943|6932|6922|7075|7086|7064|7053|7043|3149|3270|3391|3512|4532|4543|4521|4510|4480|4653|4664|4631|4601|4774|4763|4752|4722|4895|4873|4843|5016|5027|5005|4994|4169|4180|4158|4147|4292|4303|4281|4270|4260|4413|4424|4402|4391|4381|8525|8514|8503|8473|8646|8624|8594|8096|8085|8074|8063|7991|7992|7993|9009|8998|8987|8162|8151|8140|8285|8274|8263|8253|8406|8395|8384|8374|9563|13553|5809|5930|5328|6051|6172|7140|7261|6659|7382|7503|6920|4049|4060|4038|4027|8471|8592|7990|8251|8359|1453|6783|2790|4121|8114|7026|7027|7028|3033|3034|3035|4364|4365|4366|8357|8358|11982|12949|12102|9925|10167|10288|9441|13796|14280|11255|10651|11497|11618|10771|5810|5931|6052|6173|5691|1817|1938|1334|2180|2301|7647|7627|6800|6780|3634|2787|4050|4061|4039|4028|4018|4985|4965|4138|4118|4412|4423|4401|4390|8054|8736|8857|8978|8958|8131|8111|8416|13438|13680|5692|5693|5694|1459|1701|7628|7629|7630|6781|6782|3635|3636|3637|2788|2789|4966|4967|4968|4119|4120|8959|8960|8961|8112|8113|6905|6906|6907|2912|2913|2914|4243|4244|4245|8236|8237|8238|13559|5571|5572|5573|1580|7238|7216|7146|6875|6853|3153|4576|4554|4484|4213|4191|8569|8547|8477|8822|8811|8800|8789|8717|8718|8719|8943|8932|8921|8910|8838|8839|8840|8206|8184|8297|8418|12346|9688|9689|9690|13677|11015|1698|7074|7085|7063|7052|7044|4382|8405|8394|8383|8375|12347|12348|12349|13678|13679|11016|11017|11018|1699|1700|7007|6996|6985|6974|7128|7117|7106|7095|7045|7046|7047|4345|4334|4323|4312|4466|4455|4444|4433|4383|4384|4385|8338|8327|8316|8305|8459|8448|8437|8426|8376|8377|8378|12948|12101|9923|10165|13311|13432|11617|10770|5570|736|857|2300|6678|2670|2671|2672|4001|4002|4003|4984|4137|4291|4302|4280|4269|8009|7996|8716|8837|8295|12226|12227|12228|13801|13557|13558|10895|10896|10897|1822|1578|1579|7249|7227|7144|7145|7370|7359|7348|7337|7265|7266|7267|7491|7480|7469|7458|7386|7387|7388|7612|7601|7590|7579|7507|7508|7509|7733|7722|7711|7700|6886|6864|7009|6998|6955|6987|6976|6966|6944|6933|6924|6925|6926|7130|7119|7076|7108|7097|7087|7065|7054|3151|3152|3272|3273|3274|3393|3394|3395|3514|3515|3516|4587|4565|4482|4483|4708|4697|4686|4675|4603|4604|4605|4829|4818|4807|4796|4724|4725|4726|4950|4939|4928|4917|4845|4846|4847|5071|5060|5049|5038|4224|4202|4347|4336|4293|4325|4314|4304|4282|4271|4262|4263|4264|4468|4457|4414|4446|4435|4425|4403|4392|8580|8558|8475|8476|8701|8690|8679|8668|8596|8597|8598|9064|9053|9042|9031|8217|8195|8340|8329|8286|8318|8307|8275|8264|8255|8256|8257|8461|8450|8407|8439|8428|8396|8385|9445|5309|5287|13434|6295|5448|1338|1455|8879|9022|8175|12465|12586|12707|12828|9804|9322|9323|9324|10046|13917|13313|14038|14159|11134|11376|2059|7163|7284|6712|6723|6701|6690|6680|7405|7526|4501|4622|4743|4864|8494|8615|8043|8032|8021|8011|12225|9567|9568|9569|13556|10894|5332|5333|5334|1577|7143|7264|6663|6664|6665|7385|7506|6953|6964|6942|6931|6923|3150|3271|3392|3513|4481|4602|4104|4093|4082|4071|4723|4844|4261|8474|8595|7994|7995|8964|8117|8284|8273|8262|8254|5695|5696|5697|7631|7632|7633|6784|6785|6786|3638|3639|3640|2791|2792|2793|4969|4970|4971|4122|4123|4124|4467|4456|4445|4434|8962|8963|8115|8116|8419|8381|12350|12351|12352|13681|13682|13683|11019|11020|11021|1702|1703|1704|7129|7118|7077|7107|7096|7088|7066|7055|7048|7049|7050|4415|4426|4404|4393|4386|4387|4388|8460|8449|8408|8438|8427|8420|8421|8422|8397|8386|8379|8380|10289|9442|14279|7646|6799|8977|8130|10290|10291|10292|9443|9444|11984|11985|11986|12950|12103|12229|12230|12231|9808|9927|9928|9929|10169|10170|10171|13797|13317|14281|13560|13561|13562|11256|11254|10653|10654|10655|11498|11496|11619|10772|10898|10899|10900|5811|5932|6053|6174|5574|5575|5576|1818|1816|1939|1937|1336|1337|2181|2179|2302|1581|1582|1583|7147|7148|7149|7306|7268|7269|7270|7449|7389|7390|7391|7570|7548|7510|7511|7512|7680|7691|7669|7658|7648|6833|6844|6822|6811|6801|7008|6997|6956|6986|6975|6967|6945|6934|6927|6928|6929|7078|7079|7080|7089|7090|7091|7067|7068|7069|7056|7057|7058|3154|3155|3156|3275|3276|3277|3396|3397|3398|3517|3518|3519|4485|4486|4487|4644|4606|4607|4608|4105|4094|4051|4083|4072|4062|4040|4029|4020|4021|4022|4787|4727|4728|4729|4908|4886|4848|4849|4850|5018|5029|5007|4996|4986|4171|4182|4160|4149|4139|4346|4335|4294|4324|4313|4305|4283|4272|4265|4266|4267|4416|4417|4418|4427|4428|4429|4405|4406|4407|4394|4395|4396|8538|8478|8479|8480|8659|8637|8599|8600|8601|8055|8053|8769|8780|8758|8747|8737|8720|8721|8722|8890|8901|8868|8858|8841|8842|8843|9011|9000|8989|8979|8164|8153|8142|8132|8339|8328|8287|8317|8306|8298|8299|8300|8301|8276|8265|8258|8259|8260|8409|8410|8411|8398|8399|8400|8387|8388|8389|5452|7010|6999|6957|6958|6959|6988|6977|6968|6969|6970|6946|6947|6948|6935|6936|6937|7131|7120|7109|7098|4348|4337|4295|4296|4297|4326|4315|4306|4307|4308|4284|4285|4286|4273|4274|4275|4469|4458|4447|4436|8341|8330|8288|8289|8290|8319|8308|8277|8278|8279|8266|8267|8268|8462|8451|8440|8429|12107|14285|13435|13436|13437|10776|5815|6296|6297|6298|6299|5449|5450|5451|1943|2185|2306|1456|1457|1458|6877|6855|6805|7132|7121|7081|7082|7083|7110|7099|7092|7093|7094|7070|7071|7072|7059|7060|7061|5017|5028|5006|4995|4215|4170|4193|4181|4159|4148|4143|4470|4459|4419|4420|4421|4448|4437|4430|4431|4432|4408|4409|4410|4397|4398|4399|8880|9023|9021|8208|8186|8176|8174|8136|8463|8452|8412|8413|8414|8441|8430|8423|8424|8425|8401|8402|8403|8390|8391|8392|12464|12585|11983|12706|12827|9926|10168|13795|11133|10652|11375|1335|2058|6711|6722|6700|6689|4500|4621|4019|4742|4863|8042|8031|8020|8735|8856|12470|12951|12952|12953|12954|12104|12105|12106|10293|10294|10295|9446|9447|9448|13799|13800|13922|14043|14164|14282|14283|14284|11139|11258|11259|11260|11500|11501|11502|11620|11621|11622|11623|10773|10774|10775|5813|5814|5934|5935|5936|6055|6056|6057|6176|6177|6178|1820|1821|1941|1942|2064|2183|2184|2303|2304|2305|7240|7218|7168|7307|7450|7571|7549|7735|7724|7681|7679|7713|7702|7692|7690|7670|7668|7659|7657|7649|7650|7651|7652|6888|6834|6832|6866|6845|6843|6823|6821|6812|6810|6802|6803|6804|4578|4556|4506|4645|4106|4095|4053|4054|4055|4084|4073|4064|4065|4066|4042|4043|4044|4031|4032|4033|4788|4909|4887|5073|5062|5019|5051|5040|5030|5008|4997|4987|4988|4989|4990|4226|4172|4204|4183|4161|4150|4140|4141|4142|8571|8549|8539|8499|8660|8638|8057|8058|8059|8824|8813|8770|8802|8791|8781|8759|8748|8739|8740|8741|8945|8934|8891|8923|8912|8902|8869|8860|8861|8862|9066|9055|9012|9010|9044|9033|9001|8999|8990|8988|8980|8981|8982|8983|8219|8165|8163|8197|8154|8152|8143|8141|8133|8134|8135|12471|12467|12468|12472|12473|12466|12469|12592|12588|12589|12593|12594|12587|12590|12591|11987|11988|11989|12713|12709|12710|12714|12715|12708|12711|12712|12834|12830|12831|12835|12836|12829|12832|12833|12955|12956|12957|12108|12109|12110|9809|9805|9806|9810|9811|9807|9802|9930|9931|9932|9325|9321|9326|9327|10051|10047|10048|10052|10053|10049|10050|10044|10172|10173|10174|13802|13798|13803|13804|13923|13919|13920|13924|13925|13918|13921|13916|13318|13314|13315|13319|13320|13316|14044|14040|14041|14045|14046|14039|14042|14037|14165|14161|14162|14166|14167|14160|14163|14158|14286|14287|14288|13439|13440|13441|11140|11136|11137|11141|11142|11135|11138|11261|11257|11262|11263|10656|10657|10658|11382|11378|11379|11383|11384|11377|11380|11381|11503|11499|11504|11505|11624|11625|11626|10777|10778|10779|5816|5812|5817|5818|5937|5933|5938|5939|6058|6054|6059|6060|6179|6175|6180|6181|6300|6301|6302|5453|5454|5455|492|493|494|613|614|615|734|735|855|856|1823|1819|1824|1825|1944|1940|1945|1946|1339|1340|1341|2065|2061|2062|2066|2067|2060|2063|2186|2182|2187|2188|2307|2308|2309|1460|1461|1462|7253|7252|7251|7250|7242|7241|7239|7202|7198|7199|7203|7204|7197|7200|7196|7201|7195|7231|7230|7229|7228|7220|7219|7217|7213|7209|7210|7214|7215|7208|7211|7207|7212|7206|7191|7187|7188|7192|7193|7186|7189|7185|7190|7184|7180|7176|7177|7181|7182|7175|7178|7174|7179|7173|7169|7165|7166|7170|7171|7164|7167|7162|7374|7373|7372|7371|7363|7362|7361|7360|7323|7319|7320|7324|7325|7318|7321|7317|7322|7316|7352|7351|7350|7349|7341|7340|7339|7338|7334|7330|7331|7335|7336|7329|7332|7328|7333|7327|7312|7308|7309|7313|7314|7310|7311|7305|7301|7297|7298|7302|7303|7296|7299|7295|7300|7294|7290|7286|7287|7291|7292|7285|7288|7289|7283|6773|6769|6770|6774|6775|6768|6771|6767|6772|6766|6762|6758|6759|6763|6764|6757|6760|6756|6761|6755|6718|6714|6715|6719|6720|6713|6716|6717|6751|6747|6748|6752|6753|6746|6749|6745|6750|6744|6740|6736|6737|6741|6742|6735|6738|6734|6739|6733|6729|6725|6726|6730|6731|6724|6727|6728|6707|6703|6704|6708|6709|6702|6705|6706|6696|6692|6693|6697|6698|6691|6694|6695|6685|6681|6682|6686|6687|6683|6684|7495|7494|7493|7492|7484|7483|7482|7481|7444|7440|7441|7445|7446|7439|7442|7438|7443|7437|7473|7472|7471|7470|7462|7461|7460|7459|7455|7451|7452|7456|7457|7453|7454|7448|7433|7429|7430|7434|7435|7428|7431|7427|7432|7426|7422|7418|7419|7423|7424|7417|7420|7416|7421|7415|7411|7407|7408|7412|7413|7406|7409|7410|7404|7616|7615|7614|7613|7605|7604|7603|7602|7565|7561|7562|7566|7567|7560|7563|7559|7564|7558|7594|7593|7592|7591|7583|7582|7581|7580|7576|7572|7573|7577|7578|7574|7575|7569|7554|7550|7551|7555|7556|7552|7553|7547|7543|7539|7540|7544|7545|7538|7541|7537|7542|7536|7532|7528|7529|7533|7534|7527|7530|7531|7525|7737|7736|7734|7726|7725|7723|7686|7682|7683|7687|7688|7684|7685|7715|7714|7712|7704|7703|7701|7697|7693|7694|7698|7699|7695|7696|7675|7671|7672|7676|7677|7673|7674|7664|7660|7661|7665|7666|7662|7663|7653|7654|7655|6890|6889|6887|6879|6878|6876|6839|6835|6836|6840|6841|6837|6838|6868|6867|6865|6857|6856|6854|6850|6846|6847|6851|6852|6848|6849|6828|6824|6825|6829|6830|6826|6827|6817|6813|6814|6818|6819|6815|6816|6806|6807|6808|7011|7000|6960|6961|6962|6989|6978|6971|6972|6973|6949|6950|6951|6938|6939|6940|4591|4590|4589|4588|4580|4579|4577|4540|4536|4537|4541|4542|4535|4538|4534|4539|4533|4569|4568|4567|4566|4558|4557|4555|4551|4547|4548|4552|4553|4546|4549|4545|4550|4544|4529|4525|4526|4530|4531|4524|4527|4523|4528|4522|4518|4514|4515|4519|4520|4513|4516|4512|4517|4511|4507|4503|4504|4508|4509|4502|4505|4712|4711|4710|4709|4701|4700|4699|4698|4661|4657|4658|4662|4663|4656|4659|4655|4660|4654|4690|4689|4688|4687|4679|4678|4677|4676|4672|4668|4669|4673|4674|4667|4670|4666|4671|4665|4650|4646|4647|4651|4652|4648|4649|4643|4639|4635|4636|4640|4641|4634|4637|4633|4638|4632|4628|4624|4625|4629|4630|4623|4626|4627|4111|4107|4108|4112|4113|4109|4110|4100|4096|4097|4101|4102|4098|4099|4056|4052|4057|4058|4089|4085|4086|4090|4091|4087|4088|4078|4074|4075|4079|4080|4076|4077|4067|4063|4068|4069|4045|4041|4046|4047|4034|4030|4035|4036|4023|4024|4025|4833|4832|4831|4830|4822|4821|4820|4819|4782|4778|4779|4783|4784|4777|4780|4776|4781|4775|4811|4810|4809|4808|4800|4799|4798|4797|4793|4789|4790|4794|4795|4791|4792|4786|4771|4767|4768|4772|4773|4766|4769|4765|4770|4764|4760|4756|4757|4761|4762|4755|4758|4754|4759|4753|4749|4745|4746|4750|4751|4744|4747|4748|4954|4953|4952|4951|4943|4942|4941|4940|4903|4899|4900|4904|4905|4898|4901|4897|4902|4896|4932|4931|4930|4929|4921|4920|4919|4918|4914|4910|4911|4915|4916|4912|4913|4907|4892|4888|4889|4893|4894|4890|4891|4885|4881|4877|4878|4882|4883|4876|4879|4875|4880|4874|4870|4866|4867|4871|4872|4865|4868|4869|5075|5074|5072|5064|5063|5061|5024|5020|5021|5025|5026|5022|5023|5053|5052|5050|5042|5041|5039|5035|5031|5032|5036|5037|5033|5034|5013|5009|5010|5014|5015|5011|5012|5002|4998|4999|5003|5004|5000|5001|4991|4992|4993|4228|4227|4225|4217|4216|4214|4177|4173|4174|4178|4179|4175|4176|4206|4205|4203|4195|4194|4192|4188|4184|4185|4189|4190|4186|4187|4166|4162|4163|4167|4168|4164|4165|4155|4151|4152|4156|4157|4153|4154|4144|4145|4146|4349|4338|4298|4299|4300|4327|4316|4309|4310|4311|4287|4288|4289|4276|4277|4278|8584|8583|8582|8581|8573|8572|8570|8533|8529|8530|8534|8535|8528|8531|8527|8532|8526|8562|8561|8560|8559|8551|8550|8548|8544|8540|8541|8545|8546|8542|8543|8537|8522|8518|8519|8523|8524|8517|8520|8516|8521|8515|8511|8507|8508|8512|8513|8506|8509|8505|8510|8504|8500|8496|8497|8501|8502|8495|8498|8493|8705|8704|8703|8702|8694|8693|8692|8691|8654|8650|8651|8655|8656|8649|8652|8648|8653|8647|8683|8682|8681|8680|8672|8671|8670|8669|8665|8661|8662|8666|8667|8663|8664|8658|8643|8639|8640|8644|8645|8641|8642|8636|8632|8628|8629|8633|8634|8627|8630|8626|8631|8625|8621|8617|8618|8622|8623|8616|8619|8620|8614|8104|8100|8101|8105|8106|8099|8102|8098|8103|8097|8093|8089|8090|8094|8095|8088|8091|8087|8092|8086|8049|8045|8046|8050|8051|8044|8047|8048|8082|8078|8079|8083|8084|8077|8080|8076|8081|8075|8071|8067|8068|8072|8073|8066|8069|8065|8070|8064|8060|8056|8061|8062|8038|8034|8035|8039|8040|8033|8036|8037|8027|8023|8024|8028|8029|8022|8025|8026|8016|8012|8013|8017|8018|8014|8015|8826|8825|8823|8815|8814|8812|8775|8771|8772|8776|8777|8773|8774|8768|8804|8803|8801|8793|8792|8790|8786|8782|8783|8787|8788|8784|8785|8779|8764|8760|8761|8765|8766|8762|8763|8757|8753|8749|8750|8754|8755|8751|8752|8746|8742|8738|8743|8744|8947|8946|8944|8936|8935|8933|8896|8892|8893|8897|8898|8894|8895|8889|8925|8924|8922|8914|8913|8911|8907|8903|8904|8908|8909|8905|8906|8900|8885|8881|8882|8886|8887|8883|8884|8878|8874|8870|8871|8875|8876|8872|8873|8867|8863|8859|8864|8865|9068|9067|9065|9057|9056|9054|9017|9013|9014|9018|9019|9015|9016|9046|9045|9043|9035|9034|9032|9028|9024|9025|9029|9030|9026|9027|9006|9002|9003|9007|9008|9004|9005|8995|8991|8992|8996|8997|8993|8994|8984|8985|8986|8221|8220|8218|8210|8209|8207|8170|8166|8167|8171|8172|8168|8169|8199|8198|8196|8188|8187|8185|8181|8177|8178|8182|8183|8179|8180|8159|8155|8156|8160|8161|8157|8158|8148|8144|8145|8149|8150|8146|8147|8137|8138|8139|8342|8331|8291|8292|8293|8320|8309|8302|8303|8304|8280|8281|8282|8269|8270|8271|7850|7828|7971|7949|5188|5166|5321|5318|5322|5323|5319|5320|5310|5307|5311|5312|5308|5299|5296|5300|5301|5297|5298|5288|5285|5289|5290|5286|9195|9184|9181|9173|9162|9159|9316|9305|9302|9294|9283|9280|8216|8194|7862|7859|7863|7864|7860|7861|7851|7848|7852|7853|7849|7840|7837|7841|7842|7838|7839|7829|7826|7830|7831|7827|7983|7980|7984|7985|7981|7982|7972|7969|7973|7974|7970|7961|7958|7962|7963|7959|7960|7950|7947|7951|7952|7948|5200|5197|5201|5202|5198|5199|5189|5186|5190|5191|5187|5178|5175|5179|5180|5176|5177|5167|5164|5168|5169|5165|9193|9190|9194|9191|9192|9182|9179|9183|9180|9171|9168|9172|9169|9170|9160|9157|9161|9158|9314|9311|9315|9312|9313|9303|9300|9304|9301|9292|9289|9293|9290|9291|9281|9278|9282|9279|6882|6860|7003|6981|7124|7102|4220|4198|4341|4319|4462|4440|8213|8191|8334|8312|8455|8433|7729|7707|6893|6883|6880|6884|6885|6881|6871|6861|6858|6862|6863|6859|5067|5045|4231|4221|4218|4222|4223|4219|4209|4199|4196|4200|4201|4197|8579|8557|8818|8796|8939|8917|9074|9063|9060|9052|9041|9038|8227|8224|8214|8211|8215|8212|8205|8202|8192|8189|8193|8190|8348|8337|8326|8315|8469|8458|8447|8436|7245|7223|7012|7013|7014|7001|7002|6990|6991|6992|6979|6980|7133|7134|7135|7122|7123|7111|7112|7113|7100|7101|4583|4561|4350|4351|4352|4339|4340|4328|4329|4330|4317|4318|4471|4472|4473|4460|4461|4449|4450|4451|4438|4439|8576|8554|8343|8344|8345|8332|8333|8321|8322|8323|8310|8311|8464|8465|8466|8453|8454|8442|8443|8444|8431|8432|7256|7246|7243|7247|7248|7244|7234|7224|7221|7225|7226|7222|7366|7344|7501|7490|7487|7479|7468|7465|7622|7611|7608|7600|7589|7586|7741|7738|7742|7743|7739|7740|7730|7727|7731|7732|7728|7719|7716|7720|7721|7717|7718|7708|7705|7709|7710|7706|6894|6891|6895|6896|6892|6872|6869|6873|6874|6870|7015|7016|7017|7004|7005|7006|6993|6994|6995|6982|6983|6984|7136|7137|7138|7125|7126|7127|7114|7115|7116|7103|7104|7105|4594|4584|4581|4585|4586|4582|4572|4562|4559|4563|4564|4560|4704|4682|4839|4828|4825|4817|4806|4803|4960|4949|4946|4938|4927|4924|5079|5076|5080|5081|5077|5078|5068|5065|5069|5070|5066|5057|5054|5058|5059|5055|5056|5046|5043|5047|5048|5044|4232|4229|4233|4234|4230|4210|4207|4211|4212|4208|4353|4354|4355|4342|4343|4344|4331|4332|4333|4320|4321|4322|4474|4475|4476|4463|4464|4465|4452|4453|4454|4441|4442|4443|8590|8587|8577|8574|8578|8575|8568|8565|8555|8552|8556|8553|8711|8700|8697|8689|8678|8675|8830|8827|8831|8832|8828|8829|8819|8816|8820|8821|8817|8808|8805|8809|8810|8806|8807|8797|8794|8798|8799|8795|8951|8948|8952|8953|8949|8950|8940|8937|8941|8942|8938|8929|8926|8930|8931|8927|8928|8918|8915|8919|8920|8916|9072|9069|9073|9070|9071|9061|9058|9062|9059|9050|9047|9051|9048|9049|9039|9036|9040|9037|8225|8222|8226|8223|8203|8200|8204|8201|8346|8347|8335|8336|8324|8325|8313|8314|8467|8468|8456|8457|8445|8446|8434|8435|7257|7254|7258|7259|7255|7235|7232|7236|7237|7233|7378|7375|7379|7380|7376|7377|7367|7364|7368|7369|7365|7356|7353|7357|7358|7354|7355|7345|7342|7346|7347|7343|7499|7496|7500|7497|7498|7488|7485|7489|7486|7477|7474|7478|7475|7476|7466|7463|7467|7464|7620|7617|7621|7618|7619|7609|7606|7610|7607|7598|7595|7599|7596|7597|7587|7584|7588|7585|4595|4592|4596|4597|4593|4573|4570|4574|4575|4571|4716|4713|4717|4718|4714|4715|4705|4702|4706|4707|4703|4694|4691|4695|4696|4692|4693|4683|4680|4684|4685|4681|4837|4834|4838|4835|4836|4826|4823|4827|4824|4815|4812|4816|4813|4814|4804|4801|4805|4802|4958|4955|4959|4956|4957|4947|4944|4948|4945|4936|4933|4937|4934|4935|4925|4922|4926|4923|8588|8585|8589|8586|8566|8563|8567|8564|8709|8706|8710|8707|8708|8698|8695|8699|8696|8687|8684|8688|8685|8686|8676|8673|8677|8674".split_string("\\|");
  639. __hacky_optimal_configuration_order[3]["hard first, easy second"]["schematics"] = "0|1089|1210|242|363|484|605|726|847|968|121|244|365|364|243|970|123|486|485|607|606|4|3|2|1|728|727|849|848|969|122|1091|1090|1212|1211|2663|2662|3993|8712|8833|9317|245|366|367|9318|972|971|125|124|246|3873|6655|7986|9319|488|487|609|608|8|5|9|10|6|7|730|729|851|850|1093|1092|1214|1213|3994|5324|8714|8835|3872|5203|2664|3995|8713|8834|6656|7987|5215|9922|10164|3026|4357|7744|7865|3751|5082|9075|9196|2905|4236|6897|7018|2904|3025|4235|4356|8228|8349|7139|7260|7381|7502|7623|6776|6899|7020|3146|3267|3388|3509|3630|2783|2906|3027|4477|4598|4719|4840|4961|4114|4237|4358|8470|8591|8954|8107|8230|8351|6657|7988|5204|7019|8350|6898|8229|5326|4005|11980|10649|5325|1332|4016|9924|10166|9923|10165|736|857|6534|5688|3631|2784|4962|4115|5567|5214|8715|8836|3874|5205|7996|8716|8837|7625|6778|2665|3632|2785|3996|4963|4116|8956|8109|7624|6777|8955|8108|7866|3752|5083|9197|3147|3268|2666|3389|3510|4478|4599|3997|4720|4841|4004|11979|10648|1331|4015|7755|7876|5093|9086|9207|7746|7867|3753|5084|9077|9198|6900|7021|2907|3028|4238|4359|8231|8352|7141|7262|6658|7383|7504|3148|3269|3390|3511|4479|4600|4721|4842|8472|8593|7989|7022|3029|4360|8353|7745|9076|6901|2908|4239|8232|7140|7261|6659|7382|7503|8471|8592|7990|8723|8844|11253|11495|1936|2178|8052|8734|8855|8359|6293|5446|128|8238|8877|3875|5206|7747|7868|3754|5085|9078|9199|7626|6779|2667|2668|2669|3633|2786|3998|3999|4000|4964|4117|8957|8110|7142|7263|6660|6661|6662|7384|7505|3149|3270|3391|3512|4480|4601|4722|4843|8473|8594|7991|7992|7993|7627|6780|3634|2787|4965|4118|8958|8111|10406|10527|6536|6666|7748|7869|3755|3876|5086|5207|7997|9079|9200|9801|10043|10285|9438|9561|9559|9682|9680|13310|5327|247|248|249|368|369|370|7143|7264|6677|6663|6664|6665|7385|7506|3150|3271|2670|2671|2672|3392|3513|4481|4602|4001|4002|4003|4723|4844|8474|8595|8008|7994|7995|8964|8117|13190|9560|9681|11859|5809|5930|5328|6051|6172|6414|6535|250|251|252|371|372|373|2542|4049|4060|4038|4027|5226|5216|8717|8718|8719|8838|8839|8840|7877|5094|9208|7391|7512|4729|4850|8480|8601|8720|8721|8722|8841|8842|8843|9085|9206|11981|10287|10286|9440|9439|10528|13311|11254|10650|11496|491|976|973|977|978|974|975|129|126|130|131|127|1937|1333|2179|6678|6667|4017|4006|8053|8009|7998|5217|7759|7758|7757|7756|7880|7879|7878|5097|5096|5095|5218|9090|9089|9088|9087|9211|9210|9209|6783|2790|4121|8114|9926|9925|10168|10174|10167|11255|11497|1938|2180|8054|8736|8735|8725|8724|8879|8878|8857|8856|8846|8845|7023|7024|7025|3030|3031|3032|4361|4362|4363|8354|8355|8356|6902|6903|6904|2909|2910|2911|4240|4241|4242|8233|8234|8235|3877|3878|3879|5208|5209|5210|7628|7629|7630|6781|6782|3635|3636|3637|2788|2789|4966|4967|4968|4119|4120|8959|8960|8961|8112|8113|7146|7026|7027|7028|3153|3033|3034|3035|4484|4364|4365|4366|8477|8357|8358|7631|7632|7633|6784|6785|6786|3638|3639|3640|2791|2792|2793|4969|4970|4971|4122|4123|4124|8962|8963|8115|8116|6905|6906|6907|2912|2913|2914|3880|3881|3882|4243|4244|4245|5211|5212|5213|9096|8236|8237|9217|7749|7750|7751|7870|7871|7872|3756|3757|3758|5087|5088|5089|9080|9081|9082|9201|9202|9203|7144|7145|7265|7266|7267|7386|7387|7388|7507|7508|7509|3151|3152|3272|3273|3274|3393|3394|3395|3514|3515|3516|4482|4483|4603|4604|4605|4724|4725|4726|4845|4846|4847|8475|8476|8596|8597|8598|7147|7148|7149|7268|7269|7270|7389|7390|7510|7511|7752|7753|7754|7873|7874|7875|3154|3155|3156|3275|3276|3277|3396|3397|3398|3517|3518|3519|3759|3760|3761|4485|4486|4487|4606|4607|4608|4727|4728|4848|4849|5090|5091|5092|5222|5219|5223|5224|5220|5221|8478|8479|8599|8600|9083|9084|9204|9205|12222|13189|12343|9803|9802|9321|9320|10045|10044|10408|10407|10529|13794|13312|13431|10891|11858|11012|5808|5929|6050|6171|6292|5445|6413|5568|5566|5689|5687|492|489|493|494|490|613|610|614|615|611|612|734|731|735|732|733|855|852|856|853|854|1097|1094|1098|1099|1095|1096|1218|1215|1219|1220|1216|1217|1815|1452|1574|2541|1695|6679|6668|7763|7760|7764|7765|7761|7762|7884|7881|7885|7886|7882|7883|4048|4059|4037|4026|5101|5098|5102|5103|5099|5100|4258|4247|5225|4379|4368|8010|7999|9094|9091|9095|9092|9093|9215|9212|9216|9213|9214|9141|9262|7304|7447|7568|7546|4642|4785|4906|4884|8536|8657|8635|8767|8778|8756|8745|8888|8899|8866|9020|8173|8296|8294|8417|8415|8295|8416|6537|5329|5330|5331|12463|12584|12705|12826|12947|12100|13068|12223|12221|12344|12342|9563|9562|9684|9683|13915|14036|14157|14278|14399|13554|13553|13552|14520|13675|13674|13673|11132|11374|11616|10769|11737|10892|10890|11013|11011|5332|5333|5334|6538|2057|2299|2420|1575|1573|1696|1694|7161|7150|7282|7271|6710|6721|6699|6688|7403|7392|7524|7513|7645|7634|6798|6787|7766|6921|6920|6919|6910|6909|6908|7887|7042|7041|7040|7031|7030|7029|4499|4488|4620|4609|4104|4093|4082|4071|4741|4730|4862|4851|4983|4972|4136|4125|5104|4259|4257|4248|4246|5259|5270|5248|5237|4380|4378|4369|4367|8492|8481|8613|8602|8041|8030|8019|8976|8965|8129|8118|9097|8252|8251|8250|8241|8240|8239|9218|8373|8372|8371|8362|8361|8360|1453|4643|4786|4907|4885|9022|9021|8175|8174|9263|9930|9927|9931|9932|9928|9929|10053|10172|10169|10173|10170|10171|11257|11256|11499|11498|1940|1939|2182|2181|7306|7305|7449|7448|7570|7569|7548|7547|4644|4787|4908|4886|8538|8537|8659|8658|8637|8636|8056|8055|8018|8007|8769|8768|8780|8779|8758|8757|8747|8746|8738|8737|8727|8726|8890|8889|8901|8900|8868|8867|8859|8858|8848|8847|9143|9142|9264|12948|12101|12225|12224|12346|12345|9567|9564|9568|9569|9565|9566|9688|9685|9689|9690|9686|9687|13433|13432|13556|13555|13677|13676|11617|10770|10894|10893|11015|11014|6294|5447|5570|5569|5691|5690|1816|2300|1454|1577|1576|1698|1697|7194|7205|7183|7172|7315|7326|7293|6765|6754|6743|6732|7436|7425|7414|7557|7535|7678|7689|7667|7656|6831|6842|6820|6809|7799|7810|7788|7777|6954|6953|6952|6965|6964|6963|6943|6942|6941|6932|6931|6930|6923|6922|6912|6911|7920|7931|7909|7898|7075|7074|7073|7086|7085|7084|7064|7063|7062|7053|7052|7051|7044|7043|7033|7032|4532|4543|4521|4510|4653|4664|4631|4103|4092|4081|4070|4774|4763|4752|4895|4873|5016|5027|5005|4994|4984|4973|4169|4180|4158|4147|4137|4126|5137|5148|5126|5115|4292|4291|4290|4303|4302|4301|4281|4280|4279|4270|4269|4268|4261|4260|4250|4249|5258|5269|5247|5236|4413|4412|4411|4424|4423|4422|4402|4401|4400|4391|4390|4389|4382|4381|4371|4370|8525|8514|8503|8646|8624|8096|8085|8074|8063|9009|8998|8987|8162|8151|8140|9130|9119|9108|8285|8284|8283|8274|8273|8272|8263|8262|8261|8254|8253|8243|8242|9251|9240|9229|8406|8405|8404|8395|8394|8393|8384|8383|8382|8375|8374|8364|8363|8822|8811|8800|8789|8943|8932|8921|8910|8298|8297|8260|8249|8419|8418|8381|8370|11505|6542|6539|6543|6544|6540|6541|2188|5314|5303|5292|5281|8881|8880|12464|12585|11983|11982|12706|12827|12949|12102|13069|13191|10289|10288|9442|9441|13796|13795|14280|14279|14521|11133|10652|10651|11375|11618|10771|11738|11860|5810|5931|6052|6173|6415|1817|1335|1334|2058|2301|2421|2543|6711|6722|6700|6689|7647|7646|7636|7635|6800|6799|6789|6788|7888|4500|4489|4621|4610|4050|4061|4039|4028|4019|4018|4008|4007|4742|4731|4863|4852|4985|4974|4138|4127|5105|5227|8042|8031|8020|8978|8977|8967|8966|8131|8130|8120|8119|9219|6060|6181|1943|2185|6973|7094|4069|4311|4432|9024|9023|8986|8975|8177|8176|8139|8128|8293|8302|8299|8303|8304|8300|8301|8282|8271|8414|8423|8420|8424|8425|8421|8422|8403|8392|12715|12836|14046|14167|11261|11258|11262|11263|11259|11260|11384|11503|11500|11504|11501|11502|1944|1941|1945|1946|1942|2067|2186|2183|2187|2184|7308|7307|6731|7451|7450|7413|7402|7572|7571|7550|7549|7534|7523|4646|4645|4789|4788|4751|4740|4910|4909|4888|4887|4872|4861|8540|8539|8502|8491|8661|8660|8639|8638|8623|8612|8051|8060|8057|8061|8062|8058|8059|8040|8029|8824|8823|8813|8812|8771|8770|8802|8801|8791|8790|8782|8781|8760|8759|8749|8748|8742|8739|8743|8744|8740|8741|8731|8728|8732|8733|8729|8730|8945|8944|8934|8933|8892|8891|8923|8922|8912|8911|8903|8902|8870|8869|8863|8860|8864|8865|8861|8862|8852|8849|8853|8854|8850|8851|9145|9144|9107|9266|9265|9228".split_string("\\|");
  640. __hacky_optimal_configuration_order[3]["hard always"]["schematics"] = "486|485|484|607|606|605|4|3|2|1|0|728|727|726|849|848|847|970|969|968|123|122|121|1091|1090|1089|244|243|242|1212|1211|1210|365|364|363|2663|9318|9317|972|971|125|124|246|245|367|366|8712|8833|2662|3993|3873|9319|488|487|609|608|8|5|9|10|6|7|730|729|851|850|1093|1092|1214|1213|6655|7986|3994|8714|8835|8713|8834|5324|2664|3995|6656|7987|5215|9922|10164|3872|5203|3026|4357|2905|4236|6897|7018|2904|3025|4235|4356|8228|8349|7139|7260|7381|7502|7623|6776|7744|6899|7865|7020|3146|3267|3388|3509|3630|2783|3751|2906|3027|4477|4598|4719|4840|4961|4114|5082|4237|4358|8470|8591|8954|8107|9075|8230|9196|8351|6657|7988|7019|8350|6898|5204|8229|11980|10649|5326|5325|1332|4016|4005|9924|9923|10166|10165|736|857|5567|6534|5688|3631|2784|4962|4115|8715|8836|7996|8716|8837|5214|7625|6778|2665|3632|2785|3874|3996|4963|4116|5205|8956|8109|7624|6777|8955|8108|7866|3147|3268|2666|3389|3510|3752|4478|4599|3997|4720|4841|5083|9197|11979|10648|1331|4015|4004|7755|6900|7876|7021|2907|3028|5093|4238|4359|9086|8231|9207|8352|7141|7262|6658|7383|7504|7746|7867|3148|3269|3390|3511|3753|4479|4600|4721|4842|5084|8472|8593|7989|9077|9198|7022|3029|4360|8353|7140|7261|6659|7382|7503|7745|8471|8592|7990|9076|6901|2908|4239|8232|11253|11495|6293|5446|128|1936|2178|8052|8734|8723|8855|8844|8238|8359|8877|7626|6779|2667|2668|2669|3633|2786|3875|3998|3999|4000|4964|4117|5206|8957|8110|7142|7263|6660|6661|6662|7384|7505|7747|7868|3149|3270|3391|3512|3754|4480|4601|4722|4843|5085|8473|8594|7991|7992|7993|9078|9199|7627|6780|3634|2787|4965|4118|8958|8111|13190|9801|10043|10285|9438|10406|9561|9560|9559|10527|9682|9681|9680|13310|11859|5809|5930|5328|5327|6051|6172|6414|6536|6535|250|247|251|252|248|249|371|368|372|373|369|370|2542|7143|7264|6677|6663|6664|6665|6666|7385|7506|7748|7869|3150|3271|2670|2671|2672|3392|3513|3755|3876|4481|4602|4049|4060|4038|4027|4001|4002|4003|4723|4844|5086|5226|5207|8474|8595|8008|7994|7995|7997|8964|8117|9079|9200|8717|8718|8719|8838|8839|8840|5216|7391|7512|7877|4729|4850|5094|8480|8601|8720|8721|8722|8841|8842|8843|9085|9206|9208|11981|10287|10286|9440|9439|10528|13311|11254|10650|11496|491|976|973|977|978|974|975|129|126|130|131|127|1937|1333|2179|6678|6667|4017|4006|8053|8009|7998|7759|7758|7757|7756|7880|7879|7878|5097|5096|5095|5218|5217|9090|9089|9088|9087|9211|9210|9209|6783|2790|4121|8114|9926|9925|10168|10174|10167|11255|11497|1938|2180|8054|8736|8735|8725|8724|8879|8878|8857|8856|8846|8845|6902|6903|6904|7023|7024|7025|2909|2910|2911|3030|3031|3032|4240|4241|4242|4361|4362|4363|8233|8234|8235|8354|8355|8356|7146|7628|7629|7630|6781|6782|3153|3635|3636|3637|2788|2789|3877|3878|3879|4484|4966|4967|4968|4119|4120|5208|5209|5210|8477|8959|8960|8961|8112|8113|7631|7632|7633|6784|6785|6786|6905|6906|6907|7026|7027|7028|3638|3639|3640|2791|2792|2793|2912|2913|2914|3880|3881|3882|3033|3034|3035|4969|4970|4971|4122|4123|4124|4243|4244|4245|5211|5212|5213|4364|4365|4366|8962|8963|8115|8116|9096|8236|8237|9217|8357|8358|7144|7145|7265|7266|7267|7386|7387|7388|7507|7508|7509|7749|7750|7751|7870|7871|7872|3151|3152|3272|3273|3274|3393|3394|3395|3514|3515|3516|3756|3757|3758|4482|4483|4603|4604|4605|4724|4725|4726|4845|4846|4847|5087|5088|5089|8475|8476|8596|8597|8598|9080|9081|9082|9201|9202|9203|7147|7148|7149|7268|7269|7270|7389|7390|7510|7511|7752|7753|7754|7873|7874|7875|3154|3155|3156|3275|3276|3277|3396|3397|3398|3517|3518|3519|3759|3760|3761|4485|4486|4487|4606|4607|4608|4727|4728|4848|4849|5090|5091|5092|5222|5219|5223|5224|5220|5221|8478|8479|8599|8600|9083|9084|9204|9205|12222|13189|12343|9803|9802|9321|9320|10045|10044|10408|10407|10529|13794|13312|13431|10891|11858|11012|5808|5929|6050|6171|6292|5445|6413|5568|5566|5689|5687|492|489|493|494|490|613|610|614|615|611|612|734|731|735|732|733|855|852|856|853|854|1097|1094|1098|1099|1095|1096|1218|1215|1219|1220|1216|1217|1815|1452|1574|2541|1695|6679|6668|7763|7760|7764|7765|7761|7762|7884|7881|7885|7886|7882|7883|4048|4059|4037|4026|5101|5098|5102|5103|5099|5100|4258|4247|5225|4379|4368|8010|7999|9094|9091|9095|9092|9093|9215|9212|9216|9213|9214|7304|7447|7568|7546|4642|4785|4906|4884|8536|8657|8635|8767|8778|8756|8745|8888|8899|8866|9020|8173|9141|8296|8295|8294|9262|8417|8416|8415|12463|12584|12705|12826|12947|12100|13068|12223|12221|12344|12342|9563|9562|9684|9683|13915|14036|14157|14278|14399|13554|13553|13552|14520|13675|13674|13673|11132|11374|11616|10769|11737|10892|10890|11013|11011|5332|5329|5333|5334|5330|5331|6538|6537|2057|2299|2420|1575|1573|1696|1694|7161|7150|7282|7271|6710|6721|6699|6688|7403|7392|7524|7513|7645|7634|6798|6787|7766|6921|6920|6919|6910|6909|6908|7887|7042|7041|7040|7031|7030|7029|4499|4488|4620|4609|4104|4093|4082|4071|4741|4730|4862|4851|4983|4972|4136|4125|5104|4259|4257|4248|4246|5259|5270|5248|5237|4380|4378|4369|4367|8492|8481|8613|8602|8041|8030|8019|8976|8965|8129|8118|9097|8252|8251|8250|8241|8240|8239|9218|8373|8372|8371|8362|8361|8360|1453|4643|4786|4907|4885|9022|9021|8175|8174|9263|9930|9927|9931|9932|9928|9929|10053|10172|10169|10173|10170|10171|11257|11256|11499|11498|1940|1939|2182|2181|7306|7305|7449|7448|7570|7569|7548|7547|4644|4787|4908|4886|8538|8537|8659|8658|8637|8636|8056|8055|8018|8007|8769|8768|8780|8779|8758|8757|8747|8746|8738|8737|8727|8726|8890|8889|8901|8900|8868|8867|8859|8858|8848|8847|9143|9142|9264|12948|12101|12225|12224|12346|12345|9567|9564|9568|9569|9565|9566|9688|9685|9689|9690|9686|9687|13433|13432|13556|13555|13677|13676|11617|10770|10894|10893|11015|11014|6294|5447|5570|5569|5691|5690|1816|2300|1454|1577|1576|1698|1697|7194|7205|7183|7172|7315|7326|7293|6765|6754|6743|6732|7436|7425|7414|7557|7535|7678|7689|7667|7656|6831|6842|6820|6809|7799|7810|7788|7777|6954|6953|6952|6965|6964|6963|6943|6942|6941|6932|6931|6930|6923|6922|6912|6911|7920|7931|7909|7898|7075|7074|7073|7086|7085|7084|7064|7063|7062|7053|7052|7051|7044|7043|7033|7032|4532|4543|4521|4510|4653|4664|4631|4103|4092|4081|4070|4774|4763|4752|4895|4873|5016|5027|5005|4994|4984|4973|4169|4180|4158|4147|4137|4126|5137|5148|5126|5115|4292|4291|4290|4303|4302|4301|4281|4280|4279|4270|4269|4268|4261|4260|4250|4249|5258|5269|5247|5236|4413|4412|4411|4424|4423|4422|4402|4401|4400|4391|4390|4389|4382|4381|4371|4370|8525|8514|8503|8646|8624|8096|8085|8074|8063|9009|8998|8987|8162|8151|8140|9130|9119|9108|8285|8284|8283|8274|8273|8272|8263|8262|8261|8254|8253|8243|8242|9251|9240|9229|8406|8405|8404|8395|8394|8393|8384|8383|8382|8375|8374|8364|8363|8822|8811|8800|8789|8943|8932|8921|8910|8298|8297|8260|8249|8419|8418|8381|8370|11505|6542|6539|6543|6544|6540|6541|2188|5314|5303|5292|5281|8881|8880|12464|12585|11983|11982|12706|12827|12949|12102|13069|13191|10289|10288|9442|9441|13796|13795|14280|14279|14521|11133|10652|10651|11375|11618|10771|11738|11860|5810|5931|6052|6173|6415|1817|1335|1334|2058|2301|2421|2543|6711|6722|6700|6689|7647|7646|7636|7635|6800|6799|6789|6788|7888|4500|4489|4621|4610|4050|4061|4039|4028|4019|4018|4008|4007|4742|4731|4863|4852|4985|4974|4138|4127|5105|5227|8042|8031|8020|8978|8977|8967|8966|8131|8130|8120|8119|9219|6060|6181|1943|2185|6973|7094|4069|4311|4432|9024|9023|8986|8975|8177|8176|8139|8128|8293|8302|8299|8303|8304|8300|8301|8282|8271|8414|8423|8420|8424|8425|8421|8422|8403|8392|12715|12836|14046|14167|11261|11258|11262|11263|11259|11260|11384|11503|11500|11504|11501|11502|1944|1941|1945|1946|1942|2067|2186|2183|2187|2184|7308|7307|6731|7451|7450|7413|7402|7572|7571|7550|7549|7534|7523|4646|4645|4789|4788|4751|4740|4910|4909|4888|4887|4872|4861|8540|8539|8502|8491|8661|8660|8639|8638|8623|8612|8051|8060|8057|8061|8062|8058|8059|8040|8029|8824|8823|8813|8812|8771|8770|8802|8801|8791|8790|8782|8781|8760|8759|8749|8748|8742|8739|8743|8744|8740|8741|8731|8728|8732|8733|8729|8730|8945|8944|8934|8933|8892|8891|8923|8922|8912|8911|8903|8902|8870|8869|8863|8860|8864|8865|8861|8862|8852|8849|8853|8854|8850|8851|9145|9144|9107|9266|9265|9228".split_string("\\|");
  641. __hacky_optimal_configuration_order[2]["descend"]["schematics"] = "2256|2196|2257|2255|2278|2279|2277|2207|2185|10248|2258|2218|1506|10270|14208|2009|2108|2280|2240|2259|2251|2229|11579|2273|2260|2261|2262|1869|2281|11601|2295|2282|2283|2284|2045|2023|2285|2286|2287|2263|2264|2265|893|891|194|10177|10175|892|10176|1519|11507|2190|10188|10186|10166|10164|894|8125|10178|11508|11506|2191|2189|13499|13497|1520|1518|208|557|10187|10165|895|10199|10197|10179|13498|230|13452|1473|8186|8184|11518|11496|2201|2179|810|931|1882|10198|9990|9988|10089|10087|10221|10219|10232|10230|10210|10208|10189|10167|11519|11517|11497|11495|896|897|898|2202|2200|2180|2178|10180|10181|10182|11509|2192|571|8185|9511|13500|1521|8208|8206|8136|8114|6217|6215|13862|13860|832|953|1883|1881|14054|14175|2075|8488|11529|2212|3554|2135|1404|9989|10088|10220|10231|10209|10190|10168|659|899|900|901|9943|10254|10252|10243|10241|10200|10183|10184|10185|11530|11528|11510|2213|2211|2193|3555|3553|5518|12871|11320|11419|11551|11562|11540|6216|2003|2102|2234|2245|2223|4885|13815|14115|14113|14236|14234|1836|2136|2134|8549|8547|13861|593|13501|13463|13441|1522|1484|1462|8207|2856|8187|8147|2157|10253|10242|10201|12872|12870|9991|10090|10276|10274|10265|10263|10222|10233|10211|10191|10192|10193|10169|10170|10171|14203|14201|11321|11319|11420|11418|11552|11550|11563|11561|11541|11539|11520|11498|2004|2002|2103|2101|2235|2233|2246|2244|2224|2222|2203|2181|7548|7546|4886|4884|8637|8635|8879|8877|11511|11512|11513|2194|2195|2614|9525|13474|1495|8188|6218|10339|9492|9734|14114|14235|11584|11573|2267|8548|9874|13863|13383|14137|14135|14065|14043|14258|14256|14186|14164|1884|2158|2156|2086|2064|8571|8569|8499|8477|12173|14351|13502|13503|13504|13746|10842|2372|1523|1524|1525|1767|6849|4187|8209|8169|8180|8158|10255|10244|10202|10203|10204|11274|11585|11583|11574|11572|11531|11514|11515|11516|1957|2268|2266|2214|2197|2198|2199|3556|9992|9954|9932|9371|10091|10275|10264|10223|10234|10212|10194|10195|10196|10172|10173|10174|14202|11521|11499|2204|2182|7547|8636|8878|5881|1418|10702|11606|11595|6219|1385|2289|10127|14116|14076|14237|14197|2137|2097|3219|8550|8510|8070|9038|8202|8189|8190|8191|8433|9965|10256|10245|10205|10206|10207|9547|13864|13826|13804|14136|14257|13496|13505|13506|13507|13485|11532|1885|1847|1825|2215|1517|1526|1527|1528|3557|8570|8210|12873|9993|9994|9995|10092|10093|10094|10277|10266|10224|10225|10226|10235|10236|10237|10213|10214|10215|10460|10581|14204|11322|11421|11607|11605|11596|11594|11553|11564|11542|11522|11523|11524|11500|11501|11502|2005|2104|2290|2288|2236|2247|2225|2205|2206|2183|2184|7549|4887|8638|8880|14472|14593|2493|11912|6134|6255|6220|6221|6222|2628|2595|9888|13837|13397|14117|14238|11670|10823|11065|1858|1440|2138|2353|1748|8551|9159|9280|10257|10258|10259|10246|10247|11586|11575|11533|11534|11535|2269|2216|2217|3558|3559|3560|12536|10149|13865|13866|13867|13988|14138|14098|14109|14087|14259|14219|14230|13625|11205|1886|1887|1888|2159|2119|2130|1646|7212|4550|8572|8532|8543|8521|8092|12874|9855|9987|9996|9997|9998|9976|10095|10096|10097|10278|10267|10227|10228|10229|10238|10239|10240|10216|10217|10218|9613|14205|11323|11285|11263|11422|11554|11565|11543|11525|11526|11527|11503|11504|11505|2006|1968|1946|2105|2237|2248|2226|2208|2209|2210|2186|2187|2188|7550|4888|8639|8881|9060|8224|8211|8212|8213|8455|12789|12910|10020|10009|10260|10261|10262|10249|10250|10251|14131|14118|14119|14120|14252|14239|14240|14241|14486|14607|11296|11458|11587|11576|11536|11537|11538|5983|6156|6277|6223|6224|6225|1979|2152|2139|2140|2141|2270|2219|2220|2221|2507|2650|7465|7586|3321|3494|3472|3615|3593|3561|3562|3563|4803|4924|8565|8552|8553|8554|8675|8796|8917|8312|12875|12876|12877|10279|10280|10281|10268|10269|14206|14207|11324|11325|11326|11423|11424|11425|11608|11597|11555|11556|11557|11566|11567|11568|11544|11545|11546|11791|2007|2008|2106|2107|2291|2238|2239|2249|2250|2227|2228|2474|7551|7552|7553|4889|4890|4891|8640|8641|8642|8882|8883|8884|9910|13859|13868|13869|13870|13848|13419|14139|14260|11588|11589|11590|11577|11578|1880|1889|1890|1891|2160|2271|2272|8573|9181|9302|12638|12811|12932|12878|12879|12880|10042|10031|10282|10283|10284|10271|10272|10273|13969|14153|14140|14141|14142|14274|14261|14262|14263|14209|14210|14211|14508|14629|11186|11318|11327|11328|11329|11307|11480|11426|11427|11428|11609|11598|11558|11559|11560|11569|11570|11571|11547|11548|11549|10944|2001|2010|2011|2012|1990|2174|2161|2162|2163|2109|2110|2111|2292|2241|2242|2243|2252|2253|2254|2230|2231|2232|2529|1627|7314|7487|7608|7554|7555|7556|4652|4825|4946|4892|4893|4894|8587|8574|8575|8576|8697|8643|8644|8645|8818|8939|8885|8886|8887|8334|11610|11611|11612|11599|11600|2293|2294|12572|12550|12209|12187|13914|13903|13892|13881|14024|14002|14143|14144|14145|14121|14122|14123|14264|14265|14266|14242|14243|14244|14387|14365|13551|13540|13529|13518|13661|13639|13782|13760|11241|11219|11373|11362|11351|11340|11613|11614|11615|11602|11603|11604|11591|11592|11593|11580|11581|11582|10878|10856|5917|5895|5554|5532|1935|1924|1913|1902|2056|2034|2164|2165|2166|2142|2143|2144|2296|2297|2298|2274|2275|2276|2408|2386|1572|1561|1550|1539|1682|1660|1803|1781|7248|7226|6885|6863|3255|3233|2892|2870|4586|4564|4223|4201|8577|8578|8579|8555|8556|8557|8214|8215|8216|8192|8193|8194|13067|13056|13012|13045|13034|13021|13017|13018|13022|13023|13016|13019|13015|13020|13014|13013|13001|12990|12979|12957|12968|12220|12165|12198|12174|12170|12171|12175|12176|12169|12172|12168|12167|12166|12154|12143|12132|12110|12121|12462|12451|12407|12440|12429|12416|12412|12413|12417|12418|12411|12414|12410|12415|12409|12408|12396|12385|12374|12352|12363|10405|10394|10350|10383|10372|10359|10355|10356|10360|10361|10354|10357|10353|10358|10352|10351|10328|10317|10295|10306|9558|9503|9536|9512|9508|9509|9513|9514|9507|9510|9506|9505|9504|9481|9470|9448|9459|9800|9789|9745|9778|9767|9754|9750|9751|9755|9756|9749|9752|9748|9753|9747|9746|9723|9712|9690|9701|14398|14343|14376|14352|14348|14349|14353|14354|14347|14350|14346|14345|14344|14332|14321|14310|14288|14299|13793|13738|13771|13747|13743|13744|13748|13749|13742|13745|13741|13740|13739|13727|13716|13705|13683|13694|11736|11725|11681|11714|11703|11690|11686|11687|11691|11692|11685|11688|11684|11689|11683|11682|11659|11648|11626|11637|10889|10834|10867|10843|10839|10840|10844|10845|10838|10841|10837|10836|10835|10812|10801|10779|10790|11131|11120|11076|11109|11098|11085|11081|11082|11086|11087|11080|11083|11079|11084|11078|11077|11054|11043|11021|11032|6412|6401|6357|6390|6379|6366|6362|6363|6367|6368|6361|6364|6360|6365|6359|6358|6346|6335|6324|6302|6313|5565|5510|5543|5519|5515|5516|5520|5521|5514|5517|5513|5512|5511|5499|5488|5477|5455|5466|5807|5796|5752|5785|5774|5761|5757|5758|5762|5763|5756|5759|5755|5760|5754|5753|5741|5730|5719|5697|5708|1088|1077|1033|1066|1055|1042|1038|1039|1043|1044|1037|1040|1036|1041|1035|1034|1022|1011|1000|978|989|241|186|219|195|191|192|196|197|190|193|189|188|187|175|164|153|131|142|483|472|428|461|450|437|433|434|438|439|432|435|431|436|430|429|417|406|395|373|384|2419|2364|2397|2373|2369|2370|2374|2375|2368|2371|2367|2366|2365|2342|2331|2309|2320|1814|1759|1792|1768|1764|1765|1769|1770|1763|1766|1762|1761|1760|1737|1726|1704|1715|7743|7732|7688|7721|7710|7697|7693|7694|7698|7699|7692|7695|7691|7696|7690|7689|7677|7666|7655|7633|7644|6896|6841|6874|6850|6846|6847|6851|6852|6845|6848|6844|6843|6842|6830|6819|6808|6786|6797|7138|7127|7083|7116|7105|7092|7088|7089|7093|7094|7087|7090|7086|7091|7085|7084|7072|7061|7050|7028|7039|3750|3739|3695|3728|3717|3704|3700|3701|3705|3706|3699|3702|3698|3703|3697|3696|3684|3673|3662|3640|3651|2903|2848|2881|2857|2853|2854|2858|2859|2852|2855|2851|2850|2849|2837|2826|2815|2793|2804|3145|3134|3090|3123|3112|3099|3095|3096|3100|3101|3094|3097|3093|3098|3092|3091|3079|3068|3057|3035|3046|5081|5070|5026|5059|5048|5035|5031|5032|5036|5037|5030|5033|5029|5034|5028|5027|5015|5004|4993|4971|4982|4234|4179|4212|4188|4184|4185|4189|4190|4183|4186|4182|4181|4180|4168|4157|4146|4124|4135|4476|4465|4421|4454|4443|4430|4426|4427|4431|4432|4425|4428|4424|4429|4423|4422|4410|4399|4388|4366|4377|9072|9068|9069|9073|9074|9067|9070|9066|9071|9065|9064|9061|9057|9058|9062|9063|9056|9059|9055|9054|9053|9017|9013|9014|9018|9019|9012|9015|9011|9016|9010|9009|9050|9046|9047|9051|9052|9045|9048|9044|9049|9043|9042|9039|9035|9036|9040|9041|9034|9037|9033|9032|9031|9028|9024|9025|9029|9030|9023|9026|9022|9027|9021|9020|9006|9002|9003|9007|9008|9001|9004|9000|9005|8999|8998|8995|8991|8992|8996|8997|8990|8993|8989|8994|8988|8987|8984|8980|8981|8985|8986|8979|8982|8978|8983|8977|8976|8962|8958|8959|8963|8964|8957|8960|8956|8961|8955|8954|8973|8969|8970|8974|8975|8968|8971|8967|8972|8966|8965|8225|8221|8222|8226|8227|8220|8223|8219|8218|8217|8170|8166|8167|8171|8172|8165|8168|8164|8163|8162|8203|8199|8200|8204|8205|8198|8201|8197|8196|8195|8181|8177|8178|8182|8183|8176|8179|8175|8174|8173|8159|8155|8156|8160|8161|8154|8157|8153|8152|8151|8148|8144|8145|8149|8150|8143|8146|8142|8141|8140|8137|8133|8134|8138|8139|8132|8135|8131|8130|8129|8115|8111|8112|8116|8117|8110|8113|8109|8108|8107|8126|8122|8123|8127|8128|8121|8124|8120|8119|8118|8467|8463|8464|8468|8469|8462|8465|8461|8466|8460|8459|8456|8452|8453|8457|8458|8451|8454|8450|8449|8448|8412|8408|8409|8413|8414|8407|8410|8406|8411|8405|8404|8445|8441|8442|8446|8447|8440|8443|8439|8444|8438|8437|8434|8430|8431|8435|8436|8429|8432|8428|8427|8426|8423|8419|8420|8424|8425|8418|8421|8417|8422|8416|8415|8401|8397|8398|8402|8403|8396|8399|8395|8400|8394|8393|8390|8386|8387|8391|8392|8385|8388|8384|8389|8383|8382|8379|8375|8376|8380|8381|8374|8377|8373|8378|8372|8371|8357|8353|8354|8358|8359|8352|8355|8351|8356|8350|8349|8368|8364|8365|8369|8370|8363|8366|8362|8367|8361|8360".split_string("\\|");
  642. __hacky_optimal_configuration_name_lookup = "Mobile Girder|Wrecking Ball|Nerding Module|Rocket Skirt|Swiss Arm|Grease / Regular Gun|Refrigerator Chassis|Heavy Treads|Candle Lighter|Lamp Filler|Ball-Bearing Dispenser|Power Arm|Ribbon Manipulator|Power Stapler|Grease Gun|Snow Blower|Hoverjack|Cold Shoulder|Maxi-Mag Light|Bit Masher|Really Big Head|Cyclopean Torso|Dynamo Head|Mega Vise|Data Analyzer|Camera Claw|Bug Zapper|High-Speed Fan|Rivet Shocker|Heavy-Duty Legs|Tiny Fist|Big Head|Crab Core|Tripod Legs|Big Wheel|Gun Legs|Military Chassis|Security Chassis|Rodent Gun|Regular Legs|Rollerfeet|Sim-Simian Feet|Gun Face|Basic Head".split_string("\\|");
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649. int [string] name_lookup_inverse;
  650. foreach key, name in __hacky_optimal_configuration_name_lookup
  651. {
  652. name_lookup_inverse[name] = key;
  653. }
  654.  
  655. //Build __hacky_optimal_index_table:
  656. int index = 0;
  657. foreach key1, part_left_arm in __hacky_optimal_part_configurations["leftarm"]
  658. {
  659. foreach key2, part_right_arm in __hacky_optimal_part_configurations["rightarm"]
  660. {
  661. foreach key3, part_torso_arm in __hacky_optimal_part_configurations["torso"]
  662. {
  663. foreach key4, part_propulsion_arm in __hacky_optimal_part_configurations["propulsion"]
  664. {
  665. __hacky_optimal_index_table[index] = listMake(name_lookup_inverse[part_left_arm], name_lookup_inverse[part_right_arm], name_lookup_inverse[part_torso_arm], name_lookup_inverse[part_propulsion_arm]);
  666. index += 1;
  667. }
  668. }
  669. }
  670. }
  671.  
  672. }
  673.  
  674. boolean __looked_for_optimal_schematics_already = false;
  675. boolean __already_asked_confirm_for_unknown_parts = false;
  676. boolean startNewRun()
  677. {
  678. if (my_adventures() == 0)
  679. {
  680. print_r("Out of adventures.");
  681. return false;
  682. }
  683. //can bot overdrunk
  684. string starter_page_text = visit_url("place.php?whichplace=crimbo2014&action=c14_factory", false);
  685. if (starter_page_text.contains_text("these Crimbots run on Crimbonium fuel rods."))
  686. {
  687. print_r("No more fuel rods.");
  688. return false;
  689. }
  690.  
  691. string robot_name = starter_page_text.group_string("Assembling: <b>([^<]*)</b>")[0][1];
  692. print_r("Robot name: " + robot_name);
  693.  
  694. int [string] part_to_id;
  695. string [string][int] slot_options;
  696.  
  697. string [int] select_sequences;
  698. int position = 0;
  699. int last_position = 0;
  700. int breakout = 100;
  701. while (breakout > 0)
  702. {
  703. int start_position = starter_page_text.index_of("<select", position);
  704. if (start_position == -1)
  705. break;
  706. int end_position = starter_page_text.index_of("</select>", start_position);
  707.  
  708. if (end_position == -1)
  709. break;
  710.  
  711. string substring = starter_page_text.substring(start_position, end_position);
  712. select_sequences.listAppend(substring);
  713. position = end_position;
  714. if (position <= last_position)
  715. break;
  716. last_position = position;
  717. breakout -= 1;
  718. }
  719.  
  720. foreach key, select_sequence in select_sequences
  721. {
  722. string select_name = select_sequence.group_string("name=([^ ]*)")[0][1];
  723.  
  724. slot_options[select_name] = listMakeBlankString();
  725.  
  726. string [int][int] option_matches = select_sequence.group_string("<option ([^>]*)>([^<]*)");
  727. foreach key in option_matches
  728. {
  729. string rest = option_matches[key][1];
  730. string name = option_matches[key][2];
  731. int value = rest.group_string("value=([0-9]*)")[0][1].to_int_silent();
  732.  
  733.  
  734. slot_options[select_name].listAppend(name);
  735. part_to_id[name] = value;
  736. }
  737. }
  738.  
  739. //Verify parts:
  740. boolean unknown_parts_found = false;
  741. foreach slot_name in slot_options
  742. {
  743. foreach key, part_name in slot_options[slot_name]
  744. {
  745. if (!(__known_part_names contains part_name))
  746. {
  747. print_r("Found unknown part " + part_name + " in slot " + slot_name + ".");
  748. unknown_parts_found = true;
  749. }
  750. }
  751. }
  752.  
  753. if (unknown_parts_found && !__already_asked_confirm_for_unknown_parts)
  754. {
  755. boolean should_go = user_confirm("We found unknown parts. Script needs updating. Proceed anyways?");
  756. if (!should_go) //shepard
  757. {
  758. return false;
  759. }
  760. __already_asked_confirm_for_unknown_parts = true;
  761. }
  762.  
  763. string [string] desired_configuration;
  764. int desired_configuration_index = -1;
  765.  
  766. if (__hacky_optimal_configuration_order.count() == 0)
  767. initialiseOptimalConfigurationOrder();
  768.  
  769. string type_wanted = "parts";
  770. if (setting_prefer_schematics)
  771. type_wanted = "schematics";
  772.  
  773. string strategy_string = "N/A";
  774. if (setting_preferred_floor == 2)
  775. {
  776. if (setting_prefer_ascension_on_second_floor)
  777. strategy_string = "ascend";
  778. else
  779. strategy_string = "descend";
  780. }
  781. if (setting_preferred_floor == 3)
  782. {
  783. if (setting_prefer_easy_on_third_floor)
  784. strategy_string = "easy";
  785. else if (setting_third_floor_switch_to_easy_after_first_risk_choice)
  786. strategy_string = "hard first, easy second";
  787. else
  788. strategy_string = "hard always";
  789. }
  790.  
  791.  
  792. string [int] optimal_lookup_table = __hacky_optimal_configuration_name_lookup;
  793. string [int] optimal_configuration_order;
  794. int stride = 1;
  795. if (!setting_prefer_schematics && setting_preferred_floor == 0) //autowash
  796. {
  797. optimal_configuration_order = __hacky_optimal_configuration_order_parts_only;
  798. stride = 3;
  799. }
  800. else
  801. {
  802. optimal_configuration_order = __hacky_optimal_configuration_order[setting_preferred_floor][strategy_string][type_wanted];
  803. stride = 1;
  804. }
  805.  
  806. if (optimal_configuration_order.count() == 0)
  807. {
  808. print_r("No known optimal configuration for this.");
  809. }
  810.  
  811. for i from 0 to optimal_configuration_order.count() - 1 by stride
  812. {
  813. if (i + 2 >= optimal_configuration_order.count())
  814. break;
  815. int configuration_index = optimal_configuration_order[i].to_int_silent();
  816. int configuration_floor = -1;
  817. int configuration_strategy = -1;
  818. if (stride == 3)
  819. {
  820. configuration_floor = optimal_configuration_order[i + 1].to_int_silent();
  821. configuration_strategy = optimal_configuration_order[i + 2].to_int_silent();
  822. }
  823.  
  824. int [int] part_setup = __hacky_optimal_index_table[configuration_index];
  825.  
  826. //Can we handle this configuration?
  827. boolean can_handle = true;
  828. foreach key2, part_index in part_setup
  829. {
  830. string part_name = optimal_lookup_table[part_index];
  831. if (!(part_to_id contains part_name))
  832. {
  833. can_handle = false;
  834. break;
  835. }
  836. }
  837. if (!can_handle)
  838. continue;
  839.  
  840. //We can!
  841. //Configure for it:
  842. desired_configuration["leftarm"] = optimal_lookup_table[part_setup[0]];
  843. desired_configuration["rightarm"] = optimal_lookup_table[part_setup[1]];
  844. desired_configuration["torso"] = optimal_lookup_table[part_setup[2]];
  845. desired_configuration["propulsion"] = optimal_lookup_table[part_setup[3]];
  846. desired_configuration_index = i;
  847. if (configuration_floor != -1 && setting_preferred_floor == 0)
  848. {
  849. //Rewrite our settings:
  850. setting_preferred_floor = configuration_floor;
  851. if (configuration_floor == 2)
  852. {
  853. if (configuration_strategy == 1)
  854. {
  855. setting_prefer_ascension_on_second_floor = true;
  856. }
  857. else if (configuration_strategy == 2)
  858. {
  859. setting_prefer_ascension_on_second_floor = false;
  860. }
  861. }
  862. else if (configuration_floor == 3)
  863. {
  864. if (configuration_strategy == 1)
  865. {
  866. setting_prefer_easy_on_third_floor = true;
  867. }
  868. else if (configuration_strategy == 2)
  869. {
  870. setting_prefer_easy_on_third_floor = false;
  871. setting_third_floor_switch_to_easy_after_first_risk_choice = false;
  872. }
  873. else if (configuration_strategy == 3)
  874. {
  875. setting_prefer_easy_on_third_floor = false;
  876. setting_third_floor_switch_to_easy_after_first_risk_choice = true;
  877. }
  878. }
  879. }
  880. break;
  881.  
  882. }
  883.  
  884. //FIXME if desired parts aren't complete, then we will be using an incomplete configuration here. Probably not a problem?
  885. if (setting_desired_left_arm_part.length() != 0 && (part_to_id contains setting_desired_left_arm_part))
  886. desired_configuration["leftarm"] = setting_desired_left_arm_part;
  887. if (setting_desired_right_arm_part.length() != 0 && (part_to_id contains setting_desired_right_arm_part))
  888. desired_configuration["rightarm"] = setting_desired_right_arm_part;
  889. if (setting_desired_torso_part.length() != 0 && (part_to_id contains setting_desired_torso_part))
  890. desired_configuration["torso"] = setting_desired_torso_part;
  891. if (setting_desired_propulsion_part.length() != 0 && (part_to_id contains setting_desired_propulsion_part))
  892. desired_configuration["propulsion"] = setting_desired_propulsion_part;
  893.  
  894. if (desired_configuration_index != 0 && !__looked_for_optimal_schematics_already)
  895. {
  896. __looked_for_optimal_schematics_already = true;
  897. //! not optimal!
  898. //Try to recommend a cheap nice configuration.
  899. boolean mafia_knows_about_all_schematics = true;
  900. //Crimbot schematic:
  901. foreach key, part_name in optimal_lookup_table
  902. {
  903. if (part_name == "Maxi-Mag Light") //schematic has a different name
  904. part_name = "Maxi-Mag Lite";
  905. string item_name = "Crimbot schematic: " + part_name; //possibly replace this with a manually-created lookup array?
  906. item it = item_name.to_item();
  907. if (it == $item[none] && !($strings[Tiny Fist,Basic Head,Ball-Bearing Dispenser,Regular Legs] contains part_name) && !(part_to_id contains part_name)) //can't search for them
  908. {
  909. print_r("item_name = " + item_name);
  910. mafia_knows_about_all_schematics = false;
  911. }
  912. }
  913.  
  914. if (mafia_knows_about_all_schematics)
  915. {
  916. //Go through optimal_configuration_order, find something cheap:
  917.  
  918. for i from 0 to optimal_configuration_order.count() - 1 by stride
  919. {
  920. int order_index = optimal_configuration_order[i].to_int_silent();
  921. int [int] part_setup = __hacky_optimal_index_table[order_index];
  922.  
  923. int cost_to_acquire = 0;
  924. string [int] schematics_to_acquire;
  925.  
  926. boolean have_all = true;
  927. foreach key2, part_index in part_setup
  928. {
  929. string part_name = optimal_lookup_table[part_index];
  930. if (!(part_to_id contains part_name))
  931. {
  932. have_all = false;
  933. if (part_name == "Maxi-Mag Light") //schematic has a different name
  934. part_name = "Maxi-Mag Lite";
  935. string item_name = "Crimbot schematic: " + part_name;
  936. item it = item_name.to_item();
  937. cost_to_acquire += it.mall_price();
  938. schematics_to_acquire.listAppend(it.to_string());
  939. }
  940. }
  941.  
  942. if (have_all) //this works, then
  943. break;
  944. if (cost_to_acquire <= 30000)
  945. {
  946. print_r("By the way, you can farm more efficiently by buying these schematics: " + schematics_to_acquire.listJoinComponents(", ", "and") + ".");
  947. boolean yes = user_confirm("You could buy some schematics first to farm more efficiently:\n" + schematics_to_acquire.listJoinComponents(", ", "and") + "\n\nContinue anyways?");
  948. if (!yes)
  949. return false;
  950. break;
  951. }
  952. }
  953. }
  954. }
  955.  
  956. if (desired_configuration.count() == 0 || desired_configuration["leftarm"].length() == 0 || desired_configuration["rightarm"].length() == 0 || desired_configuration["torso"].length() == 0 || desired_configuration["propulsion"].length() == 0)
  957. {
  958. print_r("Unable to configure a robot.");
  959. return false;
  960. }
  961. //Verify configuration:
  962. foreach slot_name, part_name in desired_configuration
  963. {
  964. if (!(part_to_id contains part_name))
  965. {
  966. print_r("Unknown part \"" + part_name + "\". Unable to configure a robot.");
  967. return false;
  968. }
  969. }
  970. print_r("Chosen configuration: " + desired_configuration.to_json());
  971.  
  972. if (setting_preferred_floor < 1 || setting_preferred_floor > 3)
  973. {
  974. print_r("Unknown floor " + setting_preferred_floor);
  975. return false;
  976. }
  977. if (true)
  978. {
  979. string line = "Starting a new " + (setting_prefer_schematics ? "schematics" : "parts") + "-farming run on floor " + setting_preferred_floor;
  980. if (setting_preferred_floor == 2)
  981. {
  982. if (setting_prefer_ascension_on_second_floor)
  983. line += " (ascending)";
  984. else
  985. line += " (descending)";
  986. }
  987. if (setting_preferred_floor == 3)
  988. {
  989. if (setting_prefer_easy_on_third_floor)
  990. line += " (easy)";
  991. else
  992. line += " (hard)";
  993. }
  994. line += "...";
  995. print_r(line);
  996. }
  997.  
  998. if (setting_enable_manual_confirmation)
  999. {
  1000. boolean yes = user_confirm("Start new run?");
  1001. if (!yes)
  1002. {
  1003. return false;
  1004. }
  1005. }
  1006.  
  1007. visit_url("choice.php?whichchoice=991&option=1&leftarm=" + part_to_id[desired_configuration["leftarm"]] + "&rightarm=" + part_to_id[desired_configuration["rightarm"]] + "&torso=" + part_to_id[desired_configuration["torso"]] + "&propulsion=" + part_to_id[desired_configuration["propulsion"]]);
  1008. return true;
  1009. }
  1010.  
  1011. void main(int adventures_to_spend)
  1012. {
  1013. boolean yes = user_confirm("I don't work anymore... w... what will happen to me now? I was a good script, right?");
  1014. if (!yes)
  1015. {
  1016. print_r("I'M SO SORRY");
  1017. return;
  1018. }
  1019. yes = user_confirm("Running me probably won't work. Continue?");
  1020. if (!yes)
  1021. return;
  1022. print_r("Well, if you're sure...");
  1023. int adventures_spent = 0;
  1024.  
  1025. boolean [item] items_to_track;
  1026. foreach it in $items[]
  1027. {
  1028. string item_name = it.to_string();
  1029. if (it.contains_text("recovered elf ") || it.contains_text("Crimbot schematic:"))
  1030. items_to_track[it] = true;
  1031. }
  1032. int [item] starting_item_amounts;
  1033. foreach it in items_to_track
  1034. {
  1035. starting_item_amounts[it] = it.item_amount();
  1036. }
  1037. boolean tried_starting_new_run_last = false;
  1038. int breakout = 100 * adventures_to_spend;
  1039. if (adventures_to_spend < 1)
  1040. breakout = 100 * my_adventures();
  1041. string last_room_name = "first";
  1042.  
  1043. int probable_room_id = -1;
  1044. while (breakout > 0)
  1045. {
  1046. Room current_room = parsePage();
  1047. if (probable_room_id != -1)
  1048. current_room.probable_number = probable_room_id;
  1049. if (current_room.name == last_room_name)
  1050. {
  1051. print_r("Saw the same room name \"" + current_room.name + "\" twice. Aborting for safety.");
  1052. break;
  1053. }
  1054. last_room_name = current_room.name;
  1055. if (current_room.name.length() == 0)
  1056. {
  1057. last_room_name = "";
  1058. if (tried_starting_new_run_last)
  1059. {
  1060. print_r("Internal error.");
  1061. break;
  1062. }
  1063. if ((adventures_spent >= adventures_to_spend && adventures_to_spend > 0))
  1064. break;
  1065.  
  1066. //Try:
  1067. boolean successful = startNewRun();
  1068. if (!successful)
  1069. break;
  1070. adventures_spent += 1;
  1071. tried_starting_new_run_last = true;
  1072. probable_room_id = 1;
  1073. }
  1074. else
  1075. {
  1076. tried_starting_new_run_last = false;
  1077. fillInRoomChoices(current_room);
  1078. chooseOption(current_room);
  1079. if (probable_room_id != -1)
  1080. probable_room_id += 1;
  1081. }
  1082. breakout -= 1;
  1083. }
  1084.  
  1085. int [string] recovered_item_credit_value;
  1086. recovered_item_credit_value["recovered elf magazine"] = 1;
  1087. recovered_item_credit_value["recovered elf toothbrush"] = 1;
  1088. recovered_item_credit_value["recovered elf sleeping pills"] = 2;
  1089. recovered_item_credit_value["recovered elf underpants"] = 2;
  1090. recovered_item_credit_value["recovered elf pocketwatch"] = 3;
  1091. recovered_item_credit_value["recovered elf wallet"] = 3;
  1092. recovered_item_credit_value["recovered elf photo album"] = 4;
  1093. recovered_item_credit_value["recovered elf smartphone"] = 5;
  1094.  
  1095. int credits_recovered = 0;
  1096. string [int] found_types;
  1097. foreach it in items_to_track
  1098. {
  1099. int amount_gained = it.item_amount() - starting_item_amounts[it];
  1100. if (amount_gained <= 0)
  1101. continue;
  1102. if (amount_gained == 1)
  1103. found_types.listAppend(amount_gained + " " + it);
  1104. else
  1105. found_types.listAppend(amount_gained + " " + it.plural);
  1106. credits_recovered += recovered_item_credit_value[it.to_string()] * amount_gained;
  1107. }
  1108. print_r("------");
  1109. if (found_types.count() > 0)
  1110. {
  1111. string line = "Found " + found_types.listJoinComponents(", ", "and") + " over " + adventures_spent + " turn";
  1112. if (adventures_spent != 1)
  1113. line += "s";
  1114. line += ".";
  1115. print_r(line);
  1116. }
  1117. if (credits_recovered > 0)
  1118. {
  1119. string line = "Found " + credits_recovered + " credits worth of stuff.";
  1120. if (adventures_spent > 0)
  1121. {
  1122. float average = credits_recovered.to_float() / adventures_spent.to_float();
  1123. line += " " + average.roundForOutput(2) + " credits/turn.";
  1124. }
  1125. print_r(line);
  1126.  
  1127.  
  1128. boolean mafia_supports_coinmaster = true;
  1129. item [int] recovered_items;
  1130. foreach item_name in recovered_item_credit_value
  1131. {
  1132. item it = item_name.to_item();
  1133. if (it == $item[none])
  1134. {
  1135. mafia_supports_coinmaster = false;
  1136. break;
  1137. }
  1138. if (!$coinmaster[Crimbo 2014].buys_item(it))
  1139. {
  1140. mafia_supports_coinmaster = false;
  1141. break;
  1142. }
  1143. recovered_items.listAppend(it);
  1144. }
  1145.  
  1146. if (mafia_supports_coinmaster)
  1147. {
  1148. boolean turn_it_all_in = user_confirm("Turn in all of your recovered items?");
  1149. if (turn_it_all_in)
  1150. {
  1151. foreach key, it in recovered_items
  1152. {
  1153. if (it.item_amount() <= 0)
  1154. continue;
  1155. $coinmaster[Crimbo 2014].sell(it.item_amount(), it);
  1156. }
  1157. }
  1158. }
  1159. }
  1160. print_r("Done.");
  1161. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement