Guest User

Untitled

a guest
Jul 4th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 269.96 KB | None | 0 0
  1. package server.model.players.packets;
  2.  
  3. import server.Config;
  4. import server.Connection;
  5. import server.Server;
  6. import server.model.players.Client;
  7. import server.model.players.PacketType;
  8. import server.model.players.PlayerHandler;
  9. import server.util.Misc;
  10.  
  11.  
  12. import java.io.*;
  13.  
  14. /**
  15. * Commands
  16. **/
  17. public class Commands implements PacketType
  18. {
  19.  
  20.  
  21. @Override
  22. public void processPacket(Client c, int packetType, int packetSize)
  23. {
  24. String playerCommand = c.getInStream().readString();
  25. if (!playerCommand.startsWith("/"))
  26. {
  27. c.getPA().writeCommandLog(playerCommand);
  28. }
  29. if (playerCommand.startsWith("/") && playerCommand.length() > 1) {
  30. if (c.clanId >= 0) {
  31. System.out.println(playerCommand);
  32. playerCommand = playerCommand.substring(1);
  33. Server.clanChat.playerMessageToClan(c.playerId, playerCommand, c.clanId);
  34. } else {
  35. if (c.clanId != -1)
  36. c.clanId = -1;
  37. c.sendMessage("You are not in a clan.");
  38. }
  39. return;
  40. }
  41. if (Config.SERVER_DEBUG)
  42. Misc.println(c.playerName+" playerCommand: "+playerCommand);
  43.  
  44. if (c.playerRights >= 0)
  45. playerCommands(c, playerCommand);
  46. if (c.playerRights == 1 || c.playerRights == 2 || c.playerRights == 3)
  47. moderatorCommands(c, playerCommand);
  48. if (c.playerRights == 2 || c.playerRights == 3)
  49. administratorCommands(c, playerCommand);
  50. if (c.playerRights == 3)
  51. ownerCommands(c, playerCommand);
  52. if (c.playerRights == 4)
  53. DonatorCommands(c, playerCommand);
  54.  
  55. }
  56.  
  57.  
  58. public void playerCommands(Client c, String playerCommand)
  59. {
  60. if (playerCommand.startsWith("yell") && c.isDonator == 0) {
  61. c.sendMessage("Only donators can use this command!");
  62. }
  63. if (playerCommand.equalsIgnoreCase("players")) {
  64. c.sendMessage("There are currently "+PlayerHandler.getPlayerCount()+ " players online.");
  65. }
  66. if (playerCommand.startsWith("changepassword") && playerCommand.length() > 15) {
  67. c.playerPass = playerCommand.substring(15);
  68. c.sendMessage("Your password is now: " + c.playerPass);
  69. }
  70.  
  71. if (playerCommand.startsWith("smsk")) {
  72. c.startAnimation(8525);
  73. c.gfx0(1515);
  74. }
  75.  
  76. if (playerCommand.startsWith("sit") && c.sit == false) {
  77. if(c.inWild()) {
  78. c.sendMessage("You cannot do this in wildy");
  79. return;
  80. }
  81. c.sit = true;
  82. if(c.playerRights == 1) {
  83. c.startAnimation(4113);
  84. }
  85. if(c.playerRights == 2 || c.playerRights == 3) {
  86. c.startAnimation(4117);
  87. }
  88. if(c.isDonator == 0) {
  89. c.startAnimation(4115);
  90. }
  91. if(c.playerRights == 4) {
  92. c.startAnimation(4116);
  93. }
  94. }
  95.  
  96. if (playerCommand.startsWith("unsit") && c.sit == true) {
  97. if(c.inWild()) {
  98. c.sendMessage("You cannot do this in wildy");
  99. return;
  100. }
  101. c.sit = false;
  102. c.startAnimation(4191);
  103. }
  104.  
  105. if (playerCommand.startsWith("qpsk")) {
  106. c.startAnimation(4945);
  107. c.gfx0(816);
  108. }
  109. if (playerCommand.startsWith("ep") || playerCommand.startsWith("Ep") || playerCommand.startsWith("EP") || playerCommand.startsWith("eP")) {
  110. c.sendMessage("EP: "+ c.earningPotential+"");
  111. }
  112.  
  113. if (playerCommand.startsWith("yell")) {
  114. for (int j = 0; j < Server.playerHandler.players.length; j++) {
  115. if (Server.playerHandler.players[j] != null) {
  116. Client c2 = (Client)Server.playerHandler.players[j];
  117. if (c.playerRights == 0){
  118.  
  119. c.sendMessage("You must be a donator to use this command!");
  120. }
  121. if (c.playerRights == 1){
  122.  
  123. c2.sendMessage("<col=255>[Mod]</col><img=1>"+ Misc.optimizeText(c.playerName) +": "
  124. + Misc.optimizeText(playerCommand.substring(5)) +"");
  125. }else if (c.playerRights == 2){
  126.  
  127. c2.sendMessage("<col=255>[Admin]</col><img=2>"+ Misc.optimizeText(c.playerName) +": "
  128. + Misc.optimizeText(playerCommand.substring(5)) +"");
  129. }else if (c.playerRights == 3){
  130. c2.sendMessage("<shad=15695415>[Owner]</col><img=2>"+ Misc.optimizeText(c.playerName) +": "
  131. + Misc.optimizeText(playerCommand.substring(5)) +"");
  132. }else if (c.playerRights == 4){
  133. c2.sendMessage("<shad=6081134>[Donator]</col><img=0>"+ Misc.optimizeText(c.playerName) +": "
  134. + Misc.optimizeText(playerCommand.substring(5)) +"");
  135. }
  136. }
  137. }
  138. }
  139.  
  140.  
  141. }
  142.  
  143. public void moderatorCommands(Client c, String playerCommand)
  144. {
  145. if(playerCommand.startsWith("jail")) {
  146. try {
  147. String playerToBan = playerCommand.substring(5);
  148. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  149. if(Server.playerHandler.players[i] != null) {
  150. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
  151. Client c2 = (Client)Server.playerHandler.players[i];
  152. c2.teleportToX = 3102;
  153. c2.teleportToY = 9516;
  154. c2.Jail = true;
  155. c2.sendMessage("You have been jailed by "+c.playerName+"");
  156. c.sendMessage("Successfully Jailed "+c2.playerName+".");
  157. }
  158. }
  159. }
  160. } catch(Exception e) {
  161. c.sendMessage("Player Must Be Offline.");
  162. }
  163. }
  164. if (playerCommand.startsWith("mute")) {
  165. try {
  166. String playerToBan = playerCommand.substring(5);
  167. Connection.addNameToMuteList(playerToBan);
  168. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  169. if(Server.playerHandler.players[i] != null) {
  170. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
  171. Client c2 = (Client)Server.playerHandler.players[i];
  172. c2.sendMessage("You have been muted by: " + c.playerName);
  173. c2.sendMessage(" " +c2.playerName+ " Got Muted By " + c.playerName+ ".");
  174. break;
  175. }
  176. }
  177. }
  178. } catch(Exception e) {
  179. c.sendMessage("Player Must Be Offline.");
  180. }
  181. }
  182. if (playerCommand.startsWith("unmute")) {
  183. try {
  184. String playerToBan = playerCommand.substring(7);
  185. Connection.unMuteUser(playerToBan);
  186. } catch(Exception e) {
  187. c.sendMessage("Player Must Be Offline.");
  188.  
  189. }
  190. }
  191. if (playerCommand.startsWith("checkbank")) {
  192. String[] args = playerCommand.split(" ");
  193. for(int i = 0; i < Config.MAX_PLAYERS; i++)
  194. {
  195. Client o = (Client) Server.playerHandler.players[i];
  196. if(Server.playerHandler.players[i] != null)
  197. {
  198. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(args[1]))
  199. {
  200. c.getPA().otherBank(c, o);
  201. break;
  202. }
  203. }
  204. }
  205. }
  206. if (playerCommand.startsWith("kick") && playerCommand.charAt(4) == ' ') {
  207. try {
  208. String playerToBan = playerCommand.substring(5);
  209. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  210. if(Server.playerHandler.players[i] != null) {
  211. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
  212. Server.playerHandler.players[i].disconnected = true;
  213. }
  214. }
  215. }
  216. } catch(Exception e) {
  217. c.sendMessage("Player Must Be Offline.");
  218. }
  219. }
  220. if(playerCommand.startsWith("unjail")) {
  221. try {
  222. String playerToBan = playerCommand.substring(7);
  223. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  224. if(Server.playerHandler.players[i] != null) {
  225. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
  226. Client c2 = (Client)Server.playerHandler.players[i];
  227. c2.teleportToX = 3086;
  228. c2.teleportToY = 3493;
  229. c2.monkeyk0ed = 0;
  230. c2.Jail = false;
  231. c2.sendMessage("You have been unjailed by "+c.playerName+".");
  232. c.sendMessage("Successfully unjailed "+c2.playerName+".");
  233. }
  234. }
  235. }
  236. } catch(Exception e) {
  237. c.sendMessage("Player Must Be Offline.");
  238. }
  239. }
  240.  
  241. }
  242.  
  243. public void administratorCommands(Client c, String playerCommand)
  244. {
  245.  
  246. if (playerCommand.startsWith("ipmute")) {
  247. try {
  248. String playerToBan = playerCommand.substring(7);
  249. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  250. if(Server.playerHandler.players[i] != null) {
  251. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
  252. Connection.addIpToMuteList(Server.playerHandler.players[i].connectedFrom);
  253. c.sendMessage("You have IP Muted the user: "+Server.playerHandler.players[i].playerName);
  254. Client c2 = (Client)Server.playerHandler.players[i];
  255. c2.sendMessage("You have been muted by: " + c.playerName);
  256. c2.sendMessage(" " +c2.playerName+ " Got IpMuted By " + c.playerName+ ".");
  257. break;
  258. }
  259. }
  260. }
  261. } catch(Exception e) {
  262. c.sendMessage("Player Must Be Offline.");
  263. }
  264. }
  265.  
  266. if (playerCommand.equalsIgnoreCase("master")) {
  267. for (int i = 0; i < 21; i++) {
  268. c.playerLevel[i] = 99;
  269. c.playerXP[i] = c.getPA().getXPForLevel(100);
  270. c.getPA().refreshSkill(i);
  271. }
  272. c.getPA().requestUpdates();
  273. }
  274.  
  275. if (playerCommand.startsWith("object")) {
  276. String[] args = playerCommand.split(" ");
  277. c.getPA().object(Integer.parseInt(args[1]), c.absX, c.absY, 0, 10);
  278. }
  279.  
  280. if (playerCommand.equalsIgnoreCase("mypos")) {
  281. c.sendMessage("X: "+c.absX+" Y: "+c.absY+" H: "+c.heightLevel);
  282. }
  283.  
  284. if (playerCommand.startsWith("interface")) {
  285. String[] args = playerCommand.split(" ");
  286. c.getPA().showInterface(Integer.parseInt(args[1]));
  287. }
  288.  
  289. if (playerCommand.startsWith("gfx")) {
  290. String[] args = playerCommand.split(" ");
  291. c.gfx0(Integer.parseInt(args[1]));
  292. }
  293. if (playerCommand.startsWith("tele")) {
  294. String[] arg = playerCommand.split(" ");
  295. if (arg.length > 3)
  296. c.getPA().movePlayer(Integer.parseInt(arg[1]),Integer.parseInt(arg[2]),Integer.parseInt(arg[3]));
  297. else if (arg.length == 3)
  298. c.getPA().movePlayer(Integer.parseInt(arg[1]),Integer.parseInt(arg[2]),c.heightLevel);
  299. }
  300.  
  301. if (playerCommand.startsWith("xteletome")) {
  302. try {
  303. String playerToTele = playerCommand.substring(10);
  304. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  305. if(Server.playerHandler.players[i] != null) {
  306. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToTele)) {
  307. Client c2 = (Client)Server.playerHandler.players[i];
  308. c2.sendMessage("You have been teleported to " + c.playerName);
  309. c2.getPA().movePlayer(c.getX(), c.getY(), c.heightLevel);
  310. break;
  311. }
  312. }
  313. }
  314. } catch(Exception e) {
  315. c.sendMessage("Player Must Be Offline.");
  316. }
  317. }
  318.  
  319. if (playerCommand.startsWith("ban") && playerCommand.charAt(3) == ' ') {
  320. try {
  321. String playerToBan = playerCommand.substring(4);
  322. Connection.addNameToBanList(playerToBan);
  323. Connection.addNameToFile(playerToBan);
  324. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  325. if(Server.playerHandler.players[i] != null) {
  326. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
  327. Server.playerHandler.players[i].disconnected = true;
  328. Client c2 = (Client)Server.playerHandler.players[i];
  329. c2.sendMessage(" " +c2.playerName+ " Got Banned By " + c.playerName+ ".");
  330. }
  331. }
  332. }
  333. } catch(Exception e) {
  334. c.sendMessage("Player Must Be Offline.");
  335. }
  336. }
  337. if (playerCommand.startsWith("xteleto")) {
  338. String name = playerCommand.substring(8);
  339. for (int i = 0; i < Config.MAX_PLAYERS; i++) {
  340. if (Server.playerHandler.players[i] != null) {
  341. if (Server.playerHandler.players[i].playerName.equalsIgnoreCase(name)) {
  342. c.getPA().movePlayer(Server.playerHandler.players[i].getX(), Server.playerHandler.players[i].getY(), Server.playerHandler.players[i].heightLevel);
  343. }
  344. }
  345. }
  346. }
  347. if (playerCommand.equalsIgnoreCase("bank")) {
  348. c.getPA().openUpBank();
  349. }
  350. if (playerCommand.startsWith("unipmute")) {
  351. try {
  352. String playerToBan = playerCommand.substring(9);
  353. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  354. if(Server.playerHandler.players[i] != null) {
  355. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
  356. Connection.unIPMuteUser(Server.playerHandler.players[i].connectedFrom);
  357. c.sendMessage("You have Un Ip-Muted the user: "+Server.playerHandler.players[i].playerName);
  358. break;
  359. }
  360. }
  361. }
  362. } catch(Exception e) {
  363. c.sendMessage("Player Must Be Offline.");
  364. }
  365. }
  366. if (playerCommand.startsWith("ipban")) {
  367. try {
  368. String playerToBan = playerCommand.substring(6);
  369. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  370. if(Server.playerHandler.players[i] != null) {
  371. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToBan)) {
  372. Connection.addIpToBanList(Server.playerHandler.players[i].connectedFrom);
  373. Connection.addIpToFile(Server.playerHandler.players[i].connectedFrom);
  374. c.sendMessage("You have IP banned the user: "+Server.playerHandler.players[i].playerName+" with the host: "+Server.playerHandler.players[i].connectedFrom);
  375. Client c2 = (Client)Server.playerHandler.players[i];
  376. Server.playerHandler.players[i].disconnected = true;
  377. c2.sendMessage(" " +c2.playerName+ " Got IpBanned By " + c.playerName+ ".");
  378. }
  379. }
  380. }
  381. } catch(Exception e) {
  382. c.sendMessage("Player Must Be Offline.");
  383. }
  384. }
  385. if (playerCommand.startsWith("unban")) {
  386. try {
  387. String playerToBan = playerCommand.substring(6);
  388. Connection.removeNameFromBanList(playerToBan);
  389. c.sendMessage(playerToBan + " has been unbanned.");
  390. } catch(Exception e) {
  391. c.sendMessage("Player Must Be Offline.");
  392. }
  393. }
  394.  
  395. }
  396.  
  397. public void ownerCommands(Client c, String playerCommand)
  398. {
  399.  
  400. if (playerCommand.startsWith("update")) {
  401. String[] args = playerCommand.split(" ");
  402. int a = Integer.parseInt(args[1]);
  403. PlayerHandler.updateSeconds = a;
  404. PlayerHandler.updateAnnounced = false;
  405. PlayerHandler.updateRunning = true;
  406. PlayerHandler.updateStartTime = System.currentTimeMillis();
  407. }
  408.  
  409. if(playerCommand.startsWith("npc")) {
  410. try {
  411. int newNPC = Integer.parseInt(playerCommand.substring(4));
  412. if(newNPC > 0) {
  413. Server.npcHandler.spawnNpc(c, newNPC, c.absX, c.absY, 0, 0, 120, 7, 70, 70, false, false);
  414. c.sendMessage("You spawn a Npc.");
  415. } else {
  416. c.sendMessage("No such NPC.");
  417. }
  418. } catch(Exception e) {
  419.  
  420. }
  421. }
  422.  
  423. if (playerCommand.startsWith("anim")) {
  424. String[] args = playerCommand.split(" ");
  425. c.startAnimation(Integer.parseInt(args[1]));
  426. c.getPA().requestUpdates();
  427. }
  428.  
  429. if (playerCommand.startsWith("spec")) {
  430. c.specAmount = 500.0;
  431. }
  432.  
  433. if (playerCommand.startsWith("giveadmin")) {
  434. try {
  435. String playerToAdmin = playerCommand.substring(10);
  436. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  437. if(Server.playerHandler.players[i] != null) {
  438. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToAdmin)) {
  439. Client c2 = (Client)Server.playerHandler.players[i];
  440. c2.sendMessage("You have been given admin status by " + c.playerName);
  441. c2.playerRights = 2;
  442. c2.logout();
  443. break;
  444. }
  445. }
  446. }
  447. } catch(Exception e) {
  448. c.sendMessage("Player Must Be Offline.");
  449. }
  450. }
  451.  
  452. if (playerCommand.startsWith("givemod")) {
  453. try {
  454. String playerToMod = playerCommand.substring(8);
  455. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  456. if(Server.playerHandler.players[i] != null) {
  457. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToMod)) {
  458. Client c2 = (Client)Server.playerHandler.players[i];
  459. c2.sendMessage("You have been given mod status by " + c.playerName);
  460. c2.playerRights = 1;
  461. c2.logout();
  462. break;
  463. }
  464. }
  465. }
  466. } catch(Exception e) {
  467. c.sendMessage("Player Must Be Offline.");
  468. }
  469. }
  470.  
  471. if (playerCommand.startsWith("pnpc"))
  472. {
  473. try {
  474. int newNPC = Integer.parseInt(playerCommand.substring(5));
  475. if (newNPC <= 200000 && newNPC >= 0) {
  476. c.npcId2 = newNPC;
  477. c.isNpc = true;
  478. c.updateRequired = true;
  479. c.setAppearanceUpdateRequired(true);
  480. }
  481. else {
  482. c.sendMessage("No such P-NPC.");
  483. }
  484. } catch(Exception e) {
  485. c.sendMessage("Wrong Syntax! Use as ::pnpc #");
  486. }
  487. }
  488.  
  489.  
  490. if (playerCommand.startsWith("givedonor")) {
  491. try {
  492. String playerToMod = playerCommand.substring(10);
  493. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  494. if(Server.playerHandler.players[i] != null) {
  495. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToMod)) {
  496. Client c2 = (Client)Server.playerHandler.players[i];
  497. c2.sendMessage("You have been given donator status by " + c.playerName);
  498. c2.playerRights = 4;
  499. c2.isDonator = 1;
  500. c2.logout();
  501. break;
  502. }
  503. }
  504. }
  505. } catch(Exception e) {
  506. c.sendMessage("Player Must Be Offline.");
  507. }
  508. }
  509.  
  510.  
  511. if (playerCommand.startsWith("demote")) {
  512. try {
  513. String playerToDemote = playerCommand.substring(7);
  514. for(int i = 0; i < Config.MAX_PLAYERS; i++) {
  515. if(Server.playerHandler.players[i] != null) {
  516. if(Server.playerHandler.players[i].playerName.equalsIgnoreCase(playerToDemote)) {
  517. Client c2 = (Client)Server.playerHandler.players[i];
  518. c2.sendMessage("You have been demoted by " + c.playerName);
  519. c2.playerRights = 0;
  520. c2.logout();
  521. break;
  522. }
  523. }
  524. }
  525. } catch(Exception e) {
  526. c.sendMessage("Player Must Be Offline.");
  527. }
  528. }
  529.  
  530. Map<String, String> _id = new HashMap<String, String>();
  531.  
  532. _id.put("Dwarf remains", "0");
  533. _id.put("Tool kit", "1");
  534. _id.put("Cannonball", "2");
  535. _id.put("Nulodion's notes", "3");
  536. _id.put("Ammo mould", "4");
  537. _id.put("Instruction manual", "5");
  538. _id.put("Cannon base", "6");
  539. _id.put("Cannon base", "7");
  540. _id.put("Cannon stand", "8");
  541. _id.put("Cannon stand", "9");
  542. _id.put("Cannon barrels", "10");
  543. _id.put("Cannon barrels", "11");
  544. _id.put("Cannon furnace", "12");
  545. _id.put("Cannon furnace", "13");
  546. _id.put("Railing", "14");
  547. _id.put("Holy table napkin", "15");
  548. _id.put("Magic whistle", "16");
  549. _id.put("Grail bell", "17");
  550. _id.put("Magic gold feather", "18");
  551. _id.put("Holy grail", "19");
  552. _id.put("Cog", "20");
  553. _id.put("Cog", "21");
  554. _id.put("Cog", "22");
  555. _id.put("Cog", "23");
  556. _id.put("Rat poison", "24");
  557. _id.put("Red vine worm", "25");
  558. _id.put("Fishing trophy", "26");
  559. _id.put("Fishing pass", "27");
  560. _id.put("Insect repellent", "28");
  561. _id.put("Insect repellent", "29");
  562. _id.put("Bucket of wax", "30");
  563. _id.put("Bucket of wax", "31");
  564. _id.put("Lit black candle", "32");
  565. _id.put("Lit candle", "33");
  566. _id.put("Lit candle", "34");
  567. _id.put("Excalibur", "35");
  568. _id.put("Candle", "36");
  569. _id.put("Candle", "37");
  570. _id.put("Black candle", "38");
  571. _id.put("Bronze arrowtips", "39");
  572. _id.put("Iron arrowtips", "40");
  573. _id.put("Steel arrowtips", "41");
  574. _id.put("Mithril arrowtips", "42");
  575. _id.put("Adamant arrowtips", "43");
  576. _id.put("Rune arrowtips", "44");
  577. _id.put("Opal bolttips", "45");
  578. _id.put("Pearl bolttips", "46");
  579. _id.put("Barb bolttips", "47");
  580. _id.put("Longbow (u)", "48");
  581. _id.put("Longbow (u)", "49");
  582. _id.put("Shortbow (u)", "50");
  583. _id.put("Shortbow (u)", "51");
  584. _id.put("Arrow shaft", "52");
  585. _id.put("Headless arrow", "53");
  586. _id.put("Oak shortbow (u)", "54");
  587. _id.put("Oak shortbow (u)", "55");
  588. _id.put("Oak longbow (u)", "56");
  589. _id.put("Oak longbow (u)", "57");
  590. _id.put("Willow longbow (u)", "58");
  591. _id.put("Willow longbow (u)", "59");
  592. _id.put("Willow shortbow (u)", "60");
  593. _id.put("Willow shortbow (u)", "61");
  594. _id.put("Maple longbow (u)", "62");
  595. _id.put("Maple longbow (u)", "63");
  596. _id.put("Maple shortbow (u)", "64");
  597. _id.put("Maple shortbow (u)", "65");
  598. _id.put("Yew longbow (u)", "66");
  599. _id.put("Yew longbow (u)", "67");
  600. _id.put("Yew shortbow (u)", "68");
  601. _id.put("Yew shortbow (u)", "69");
  602. _id.put("Magic longbow (u)", "70");
  603. _id.put("Magic longbow (u)", "71");
  604. _id.put("Magic shortbow (u)", "72");
  605. _id.put("Magic shortbow (u)", "73");
  606. _id.put("Khazard helmet", "74");
  607. _id.put("Khazard armour", "75");
  608. _id.put("Khazard cell keys", "76");
  609. _id.put("Khali brew", "77");
  610. _id.put("Ice arrows", "78");
  611. _id.put("Lever", "83");
  612. _id.put("Staff of armadyl", "84");
  613. _id.put("Shiny key", "85");
  614. _id.put("Pendant of lucien", "86");
  615. _id.put("Armadyl pendant", "87");
  616. _id.put("Boots of lightness", "88");
  617. _id.put("Boots of lightness", "89");
  618. _id.put("Child's blanket", "90");
  619. _id.put("Unfinished potion", "91");
  620. _id.put("Unfinished potion", "92");
  621. _id.put("Unfinished potion", "93");
  622. _id.put("Unfinished potion", "94");
  623. _id.put("Unfinished potion", "95");
  624. _id.put("Unfinished potion", "96");
  625. _id.put("Unfinished potion", "97");
  626. _id.put("Unfinished potion", "98");
  627. _id.put("Unfinished potion", "99");
  628. _id.put("Unfinished potion", "100");
  629. _id.put("Unfinished potion", "101");
  630. _id.put("Unfinished potion", "102");
  631. _id.put("Unfinished potion", "103");
  632. _id.put("Unfinished potion", "104");
  633. _id.put("Unfinished potion", "105");
  634. _id.put("Unfinished potion", "106");
  635. _id.put("Unfinished potion", "107");
  636. _id.put("Unfinished potion", "108");
  637. _id.put("Unfinished potion", "109");
  638. _id.put("Unfinished potion", "110");
  639. _id.put("Unfinished potion", "111");
  640. _id.put("Unfinished potion", "112");
  641. _id.put("Strength potion(4)", "113");
  642. _id.put("Strength potion(4)", "114");
  643. _id.put("Strength potion(3)", "115");
  644. _id.put("Strength potion(3)", "116");
  645. _id.put("Strength potion(2)", "117");
  646. _id.put("Strength potion(2)", "118");
  647. _id.put("Strength potion(1)", "119");
  648. _id.put("Strength potion(1)", "120");
  649. _id.put("Attack potion(3)", "121");
  650. _id.put("Attack potion(3)", "122");
  651. _id.put("Attack potion(2)", "123");
  652. _id.put("Attack potion(2)", "124");
  653. _id.put("Attack potion(1)", "125");
  654. _id.put("Attack potion(1)", "126");
  655. _id.put("Restore potion(3)", "127");
  656. _id.put("Restore potion(3)", "128");
  657. _id.put("Restore potion(2)", "129");
  658. _id.put("Restore potion(2)", "130");
  659. _id.put("Restore potion(1)", "131");
  660. _id.put("Restore potion(1)", "132");
  661. _id.put("Defence potion(3)", "133");
  662. _id.put("Defence potion(3)", "134");
  663. _id.put("Defence potion(2)", "135");
  664. _id.put("Defence potion(2)", "136");
  665. _id.put("Defence potion(1)", "137");
  666. _id.put("Defence potion(1)", "138");
  667. _id.put("Prayer potion(3)", "139");
  668. _id.put("Prayer potion(3)", "140");
  669. _id.put("Prayer potion(2)", "141");
  670. _id.put("Prayer potion(2)", "142");
  671. _id.put("Prayer potion(1)", "143");
  672. _id.put("Prayer potion(1)", "144");
  673. _id.put("Super attack(3)", "145");
  674. _id.put("Super attack(3)", "146");
  675. _id.put("Super attack(2)", "147");
  676. _id.put("Super attack(2)", "148");
  677. _id.put("Super attack(1)", "149");
  678. _id.put("Super attack(1)", "150");
  679. _id.put("Fishing potion(3)", "151");
  680. _id.put("Fishing potion(3)", "152");
  681. _id.put("Fishing potion(2)", "153");
  682. _id.put("Fishing potion(2)", "154");
  683. _id.put("Fishing potion(1)", "155");
  684. _id.put("Fishing potion(1)", "156");
  685. _id.put("Super strength(3)", "157");
  686. _id.put("Super strength(3)", "158");
  687. _id.put("Super strength(2)", "159");
  688. _id.put("Super strength(2)", "160");
  689. _id.put("Super strength(1)", "161");
  690. _id.put("Super strength(1)", "162");
  691. _id.put("Super defence(3)", "163");
  692. _id.put("Super defence(3)", "164");
  693. _id.put("Super defence(2)", "165");
  694. _id.put("Super defence(2)", "166");
  695. _id.put("Super defence(1)", "167");
  696. _id.put("Super defence(1)", "168");
  697. _id.put("Ranging potion(3)", "169");
  698. _id.put("Ranging potion(3)", "170");
  699. _id.put("Ranging potion(2)", "171");
  700. _id.put("Ranging potion(2)", "172");
  701. _id.put("Ranging potion(1)", "173");
  702. _id.put("Ranging potion(1)", "174");
  703. _id.put("Antipoison(3)", "175");
  704. _id.put("Antipoison(3)", "176");
  705. _id.put("Antipoison(2)", "177");
  706. _id.put("Antipoison(2)", "178");
  707. _id.put("Antipoison(1)", "179");
  708. _id.put("Antipoison(1)", "180");
  709. _id.put("Superantipoison(3)", "181");
  710. _id.put("Superantipoison(3)", "182");
  711. _id.put("Superantipoison(2)", "183");
  712. _id.put("Superantipoison(2)", "184");
  713. _id.put("Superantipoison(1)", "185");
  714. _id.put("Superantipoison(1)", "186");
  715. _id.put("Weapon poison", "187");
  716. _id.put("Weapon poison", "188");
  717. _id.put("Zamorak brew(3)", "189");
  718. _id.put("Zamorak brew(3)", "190");
  719. _id.put("Zamorak brew(2)", "191");
  720. _id.put("Zamorak brew(2)", "192");
  721. _id.put("Zamorak brew(1)", "193");
  722. _id.put("Zamorak brew(1)", "194");
  723. _id.put("Potion", "195");
  724. _id.put("Potion", "196");
  725. _id.put("Poison chalice", "197");
  726. _id.put("Poison chalice", "198");
  727. _id.put("Herb", "199");
  728. _id.put("Herb", "200");
  729. _id.put("Herb", "201");
  730. _id.put("Herb", "202");
  731. _id.put("Herb", "203");
  732. _id.put("Herb", "204");
  733. _id.put("Herb", "205");
  734. _id.put("Herb", "206");
  735. _id.put("Herb", "207");
  736. _id.put("Herb", "208");
  737. _id.put("Herb", "209");
  738. _id.put("Herb", "210");
  739. _id.put("Herb", "211");
  740. _id.put("Herb", "212");
  741. _id.put("Herb", "213");
  742. _id.put("Herb", "214");
  743. _id.put("Herb", "215");
  744. _id.put("Herb", "216");
  745. _id.put("Herb", "217");
  746. _id.put("Herb", "218");
  747. _id.put("Herb", "219");
  748. _id.put("Herb", "220");
  749. _id.put("Eye of newt", "221");
  750. _id.put("Eye of newt", "222");
  751. _id.put("Red spiders' eggs", "223");
  752. _id.put("Red spiders' eggs", "224");
  753. _id.put("Limpwurt root", "225");
  754. _id.put("Limpwurt root", "226");
  755. _id.put("Vial of water", "227");
  756. _id.put("Vial of water", "228");
  757. _id.put("Vial", "229");
  758. _id.put("Vial", "230");
  759. _id.put("Snape grass", "231");
  760. _id.put("Snape grass", "232");
  761. _id.put("Pestle and mortar", "233");
  762. _id.put("Pestle and mortar", "234");
  763. _id.put("Unicorn horn dust", "235");
  764. _id.put("Unicorn horn dust", "236");
  765. _id.put("Unicorn horn", "237");
  766. _id.put("Unicorn horn", "238");
  767. _id.put("White berries", "239");
  768. _id.put("White berries", "240");
  769. _id.put("Dragon scale dust", "241");
  770. _id.put("Dragon scale dust", "242");
  771. _id.put("Blue dragon scale", "243");
  772. _id.put("Blue dragon scale", "244");
  773. _id.put("Wine of zamorak", "245");
  774. _id.put("Wine of zamorak", "246");
  775. _id.put("Jangerberries", "247");
  776. _id.put("Jangerberries", "248");
  777. _id.put("Guam leaf", "249");
  778. _id.put("Guam leaf", "250");
  779. _id.put("Marrentill", "251");
  780. _id.put("Marrentill", "252");
  781. _id.put("Tarromin", "253");
  782. _id.put("Tarromin", "254");
  783. _id.put("Harralander", "255");
  784. _id.put("Harralander", "256");
  785. _id.put("Ranarr weed", "257");
  786. _id.put("Ranarr weed", "258");
  787. _id.put("Irit leaf", "259");
  788. _id.put("Irit leaf", "260");
  789. _id.put("Avantoe", "261");
  790. _id.put("Avantoe", "262");
  791. _id.put("Kwuarm", "263");
  792. _id.put("Kwuarm", "264");
  793. _id.put("Cadantine", "265");
  794. _id.put("Cadantine", "266");
  795. _id.put("Dwarf weed", "267");
  796. _id.put("Dwarf weed", "268");
  797. _id.put("Torstol", "269");
  798. _id.put("Torstol", "270");
  799. _id.put("Pressure gauge", "271");
  800. _id.put("Fish food", "272");
  801. _id.put("Poison", "273");
  802. _id.put("Poisoned fish food", "274");
  803. _id.put("Key", "275");
  804. _id.put("Rubber tube", "276");
  805. _id.put("Oil can", "277");
  806. _id.put("Cattleprod", "278");
  807. _id.put("Sheep feed", "279");
  808. _id.put("Sheep bones (1)", "280");
  809. _id.put("Sheep bones (2)", "281");
  810. _id.put("Sheep bones (3)", "282");
  811. _id.put("Sheep bones (4)", "283");
  812. _id.put("Plague jacket", "284");
  813. _id.put("Plague trousers", "285");
  814. _id.put("Orange goblin mail", "286");
  815. _id.put("Blue goblin mail", "287");
  816. _id.put("Goblin mail", "288");
  817. _id.put("Goblin mail", "289");
  818. _id.put("Research package", "290");
  819. _id.put("Notes", "291");
  820. _id.put("Book on baxtorian", "292");
  821. _id.put("A key", "293");
  822. _id.put("Glarial's pebble", "294");
  823. _id.put("Glarial's amulet", "295");
  824. _id.put("Glarial's urn", "296");
  825. _id.put("Glarial's urn", "297");
  826. _id.put("A key", "298");
  827. _id.put("Mithril seeds", "299");
  828. _id.put("Rat's tail", "300");
  829. _id.put("Lobster pot", "301");
  830. _id.put("Lobster pot", "302");
  831. _id.put("Small fishing net", "303");
  832. _id.put("Small fishing net", "304");
  833. _id.put("Big fishing net", "305");
  834. _id.put("Big fishing net", "306");
  835. _id.put("Fishing rod", "307");
  836. _id.put("Fishing rod", "308");
  837. _id.put("Fly fishing rod", "309");
  838. _id.put("Fly fishing rod", "310");
  839. _id.put("Harpoon", "311");
  840. _id.put("Harpoon", "312");
  841. _id.put("Fishing bait", "313");
  842. _id.put("Feather", "314");
  843. _id.put("Shrimps", "315");
  844. _id.put("Shrimps", "316");
  845. _id.put("Raw shrimps", "317");
  846. _id.put("Raw shrimps", "318");
  847. _id.put("Anchovies", "319");
  848. _id.put("Anchovies", "320");
  849. _id.put("Raw anchovies", "321");
  850. _id.put("Raw anchovies", "322");
  851. _id.put("Burnt fish", "323");
  852. _id.put("Burnt fish", "324");
  853. _id.put("Sardine", "325");
  854. _id.put("Sardine", "326");
  855. _id.put("Raw sardine", "327");
  856. _id.put("Raw sardine", "328");
  857. _id.put("Salmon", "329");
  858. _id.put("Salmon", "330");
  859. _id.put("Raw salmon", "331");
  860. _id.put("Raw salmon", "332");
  861. _id.put("Trout", "333");
  862. _id.put("Trout", "334");
  863. _id.put("Raw trout", "335");
  864. _id.put("Raw trout", "336");
  865. _id.put("Giant carp", "337");
  866. _id.put("Raw giant carp", "338");
  867. _id.put("Cod", "339");
  868. _id.put("Cod", "340");
  869. _id.put("Raw cod", "341");
  870. _id.put("Raw cod", "342");
  871. _id.put("Burnt fish", "343");
  872. _id.put("Burnt fish", "344");
  873. _id.put("Raw herring", "345");
  874. _id.put("Raw herring", "346");
  875. _id.put("Herring", "347");
  876. _id.put("Herring", "348");
  877. _id.put("Raw pike", "349");
  878. _id.put("Raw pike", "350");
  879. _id.put("Pike", "351");
  880. _id.put("Pike", "352");
  881. _id.put("Raw mackerel", "353");
  882. _id.put("Raw mackerel", "354");
  883. _id.put("Mackerel", "355");
  884. _id.put("Mackerel", "356");
  885. _id.put("Burnt fish", "357");
  886. _id.put("Burnt fish", "358");
  887. _id.put("Raw tuna", "359");
  888. _id.put("Raw tuna", "360");
  889. _id.put("Tuna", "361");
  890. _id.put("Tuna", "362");
  891. _id.put("Raw bass", "363");
  892. _id.put("Raw bass", "364");
  893. _id.put("Bass", "365");
  894. _id.put("Bass", "366");
  895. _id.put("Burnt fish", "367");
  896. _id.put("Burnt fish", "368");
  897. _id.put("Burnt fish", "369");
  898. _id.put("Burnt fish", "370");
  899. _id.put("Raw swordfish", "371");
  900. _id.put("Raw swordfish", "372");
  901. _id.put("Swordfish", "373");
  902. _id.put("Swordfish", "374");
  903. _id.put("Burnt swordfish", "375");
  904. _id.put("Burnt swordfish", "376");
  905. _id.put("Raw lobster", "377");
  906. _id.put("Raw lobster", "378");
  907. _id.put("Lobster", "379");
  908. _id.put("Lobster", "380");
  909. _id.put("Burnt lobster", "381");
  910. _id.put("Burnt lobster", "382");
  911. _id.put("Raw shark", "383");
  912. _id.put("Raw shark", "384");
  913. _id.put("Shark", "385");
  914. _id.put("Shark", "386");
  915. _id.put("Burnt shark", "387");
  916. _id.put("Burnt shark", "388");
  917. _id.put("Raw manta ray", "389");
  918. _id.put("Raw manta ray", "390");
  919. _id.put("Manta ray", "391");
  920. _id.put("Manta ray", "392");
  921. _id.put("Burnt manta ray", "393");
  922. _id.put("Burnt manta ray", "394");
  923. _id.put("Raw sea turtle", "395");
  924. _id.put("Raw sea turtle", "396");
  925. _id.put("Sea turtle", "397");
  926. _id.put("Sea turtle", "398");
  927. _id.put("Burnt sea turtle", "399");
  928. _id.put("Burnt sea turtle", "400");
  929. _id.put("Seaweed", "401");
  930. _id.put("Seaweed", "402");
  931. _id.put("Edible seaweed", "403");
  932. _id.put("Edible seaweed", "404");
  933. _id.put("Casket", "405");
  934. _id.put("Casket", "406");
  935. _id.put("Oyster", "407");
  936. _id.put("Oyster", "408");
  937. _id.put("Empty oyster", "409");
  938. _id.put("Empty oyster", "410");
  939. _id.put("Oyster pearl", "411");
  940. _id.put("Oyster pearl", "412");
  941. _id.put("Oyster pearls", "413");
  942. _id.put("Oyster pearls", "414");
  943. _id.put("Ethenea", "415");
  944. _id.put("Liquid honey", "416");
  945. _id.put("Sulphuric broline", "417");
  946. _id.put("Plague sample", "418");
  947. _id.put("Touch paper", "419");
  948. _id.put("Distillator", "420");
  949. _id.put("Lathas' amulet", "421");
  950. _id.put("Bird feed", "422");
  951. _id.put("Key", "423");
  952. _id.put("Pigeon cage", "424");
  953. _id.put("Pigeon cage", "425");
  954. _id.put("Priest gown", "426");
  955. _id.put("Priest gown", "427");
  956. _id.put("Priest gown", "428");
  957. _id.put("Priest gown", "429");
  958. _id.put("Doctors' gown", "430");
  959. _id.put("Karamjan rum", "431");
  960. _id.put("Chest key", "432");
  961. _id.put("Pirate message", "433");
  962. _id.put("Clay", "434");
  963. _id.put("Clay", "435");
  964. _id.put("Copper ore", "436");
  965. _id.put("Copper ore", "437");
  966. _id.put("Tin ore", "438");
  967. _id.put("Tin ore", "439");
  968. _id.put("Iron ore", "440");
  969. _id.put("Iron ore", "441");
  970. _id.put("Silver ore", "442");
  971. _id.put("Silver ore", "443");
  972. _id.put("Gold ore", "444");
  973. _id.put("Gold ore", "445");
  974. _id.put("'perfect' gold ore", "446");
  975. _id.put("Mithril ore", "447");
  976. _id.put("Mithril ore", "448");
  977. _id.put("Adamantite ore", "449");
  978. _id.put("Adamantite ore", "450");
  979. _id.put("Runite ore", "451");
  980. _id.put("Runite ore", "452");
  981. _id.put("Coal", "453");
  982. _id.put("Coal", "454");
  983. _id.put("Barcrawl card", "455");
  984. _id.put("Scorpion cage", "456");
  985. _id.put("Scorpion cage", "457");
  986. _id.put("Scorpion cage", "458");
  987. _id.put("Scorpion cage", "459");
  988. _id.put("Scorpion cage", "460");
  989. _id.put("Scorpion cage", "461");
  990. _id.put("Scorpion cage", "462");
  991. _id.put("Scorpion cage", "463");
  992. _id.put("Strange fruit", "464");
  993. _id.put("Strange fruit", "465");
  994. _id.put("Pickaxe handle", "466");
  995. _id.put("Pickaxe handle", "467");
  996. _id.put("Broken pickaxe", "468");
  997. _id.put("Broken pickaxe", "469");
  998. _id.put("Broken pickaxe", "470");
  999. _id.put("Broken pickaxe", "471");
  1000. _id.put("Broken pickaxe", "472");
  1001. _id.put("Broken pickaxe", "473");
  1002. _id.put("Broken pickaxe", "474");
  1003. _id.put("Broken pickaxe", "475");
  1004. _id.put("Broken pickaxe", "476");
  1005. _id.put("Broken pickaxe", "477");
  1006. _id.put("Broken pickaxe", "478");
  1007. _id.put("Broken pickaxe", "479");
  1008. _id.put("Bronze pick head", "480");
  1009. _id.put("Bronze pick head", "481");
  1010. _id.put("Iron pick head", "482");
  1011. _id.put("Iron pick head", "483");
  1012. _id.put("Steel pick head", "484");
  1013. _id.put("Steel pick head", "485");
  1014. _id.put("Mithril pick head", "486");
  1015. _id.put("Mithril pick head", "487");
  1016. _id.put("Adamant pick head", "488");
  1017. _id.put("Adamant pick head", "489");
  1018. _id.put("Rune pick head", "490");
  1019. _id.put("Rune pick head", "491");
  1020. _id.put("Axe handle", "492");
  1021. _id.put("Axe handle", "493");
  1022. _id.put("Broken axe", "494");
  1023. _id.put("Broken axe", "495");
  1024. _id.put("Broken axe", "496");
  1025. _id.put("Broken axe", "497");
  1026. _id.put("Broken axe", "498");
  1027. _id.put("Broken axe", "499");
  1028. _id.put("Broken axe", "500");
  1029. _id.put("Broken axe", "501");
  1030. _id.put("Broken axe", "502");
  1031. _id.put("Broken axe", "503");
  1032. _id.put("Broken axe", "504");
  1033. _id.put("Broken axe", "505");
  1034. _id.put("Broken axe", "506");
  1035. _id.put("Broken axe", "507");
  1036. _id.put("Bronze axe head", "508");
  1037. _id.put("Bronze axe head", "509");
  1038. _id.put("Iron axe head", "510");
  1039. _id.put("Iron axe head", "511");
  1040. _id.put("Steel axe head", "512");
  1041. _id.put("Steel axe head", "513");
  1042. _id.put("Black axe head", "514");
  1043. _id.put("Black axe head", "515");
  1044. _id.put("Mithril axe head", "516");
  1045. _id.put("Mithril axe head", "517");
  1046. _id.put("Adamant axe head", "518");
  1047. _id.put("Adamant axe head", "519");
  1048. _id.put("Rune axe head", "520");
  1049. _id.put("Rune axe head", "521");
  1050. _id.put("Enchanted beef", "522");
  1051. _id.put("Enchanted rat", "523");
  1052. _id.put("Enchanted bear", "524");
  1053. _id.put("Enchanted chicken", "525");
  1054. _id.put("Bones", "526");
  1055. _id.put("Bones", "527");
  1056. _id.put("Burnt bones", "528");
  1057. _id.put("Burnt bones", "529");
  1058. _id.put("Bat bones", "530");
  1059. _id.put("Bat bones", "531");
  1060. _id.put("Big bones", "532");
  1061. _id.put("Big bones", "533");
  1062. _id.put("Babydragon bones", "534");
  1063. _id.put("Babydragon bones", "535");
  1064. _id.put("Dragon bones", "536");
  1065. _id.put("Dragon bones", "537");
  1066. _id.put("Druid's robe", "538");
  1067. _id.put("Druid's robe", "539");
  1068. _id.put("Druid's robe", "540");
  1069. _id.put("Druid's robe", "541");
  1070. _id.put("Monk's robe", "542");
  1071. _id.put("Monk's robe", "543");
  1072. _id.put("Monk's robe", "544");
  1073. _id.put("Monk's robe", "545");
  1074. _id.put("Shade robe", "546");
  1075. _id.put("Shade robe", "547");
  1076. _id.put("Shade robe", "548");
  1077. _id.put("Shade robe", "549");
  1078. _id.put("Newcomer map", "550");
  1079. _id.put("Newcomer map", "551");
  1080. _id.put("Ghostspeak amulet", "552");
  1081. _id.put("Skull", "553");
  1082. _id.put("Fire rune", "554");
  1083. _id.put("Water rune", "555");
  1084. _id.put("Air rune", "556");
  1085. _id.put("Earth rune", "557");
  1086. _id.put("Mind rune", "558");
  1087. _id.put("Body rune", "559");
  1088. _id.put("Death rune", "560");
  1089. _id.put("Nature rune", "561");
  1090. _id.put("Chaos rune", "562");
  1091. _id.put("Law rune", "563");
  1092. _id.put("Cosmic rune", "564");
  1093. _id.put("Blood rune", "565");
  1094. _id.put("Soul rune", "566");
  1095. _id.put("Unpowered orb", "567");
  1096. _id.put("Unpowered orb", "568");
  1097. _id.put("Fire orb", "569");
  1098. _id.put("Fire orb", "570");
  1099. _id.put("Water orb", "571");
  1100. _id.put("Water orb", "572");
  1101. _id.put("Air orb", "573");
  1102. _id.put("Air orb", "574");
  1103. _id.put("Earth orb", "575");
  1104. _id.put("Earth orb", "576");
  1105. _id.put("Wizard robe", "577");
  1106. _id.put("Wizard robe", "578");
  1107. _id.put("Wizard hat", "579");
  1108. _id.put("Wizard hat", "580");
  1109. _id.put("Black robe", "581");
  1110. _id.put("Black robe", "582");
  1111. _id.put("Bailing bucket", "583");
  1112. _id.put("Bailing bucket", "584");
  1113. _id.put("Bailing bucket", "585");
  1114. _id.put("Bailing bucket", "586");
  1115. _id.put("Orb of protection", "587");
  1116. _id.put("Orbs of protection", "588");
  1117. _id.put("Gnome amulet", "589");
  1118. _id.put("Tinderbox", "590");
  1119. _id.put("Tinderbox", "591");
  1120. _id.put("Ashes", "592");
  1121. _id.put("Ashes", "593");
  1122. _id.put("Torch", "594");
  1123. _id.put("Torch", "595");
  1124. _id.put("Torch", "596");
  1125. _id.put("Torch", "597");
  1126. _id.put("Bronze fire arrows", "598");
  1127. _id.put("Double helix", "599");
  1128. _id.put("Astrology book", "600");
  1129. _id.put("Keep key", "601");
  1130. _id.put("Lens mould", "602");
  1131. _id.put("Lens", "603");
  1132. _id.put("Bone shard", "604");
  1133. _id.put("Bone key", "605");
  1134. _id.put("Stone-plaque", "606");
  1135. _id.put("Tattered scroll", "607");
  1136. _id.put("Crumpled scroll", "608");
  1137. _id.put("Rashiliyia corpse", "609");
  1138. _id.put("Zadimus corpse", "610");
  1139. _id.put("Locating crystal", "611");
  1140. _id.put("Locating crystal", "612");
  1141. _id.put("Locating crystal", "613");
  1142. _id.put("Locating crystal", "614");
  1143. _id.put("Locating crystal", "615");
  1144. _id.put("Beads of the dead", "616");
  1145. _id.put("Coins", "617");
  1146. _id.put("Bone beads", "618");
  1147. _id.put("Paramaya ticket", "619");
  1148. _id.put("Paramaya ticket", "620");
  1149. _id.put("Ship ticket", "621");
  1150. _id.put("Ship ticket", "622");
  1151. _id.put("Sword pommel", "623");
  1152. _id.put("Bervirius notes", "624");
  1153. _id.put("Wampum belt", "625");
  1154. _id.put("Boots", "626");
  1155. _id.put("Boots", "627");
  1156. _id.put("Boots", "628");
  1157. _id.put("Boots", "629");
  1158. _id.put("Boots", "630");
  1159. _id.put("Boots", "631");
  1160. _id.put("Boots", "632");
  1161. _id.put("Boots", "633");
  1162. _id.put("Boots", "634");
  1163. _id.put("Boots", "635");
  1164. _id.put("Robe top", "636");
  1165. _id.put("Robe top", "637");
  1166. _id.put("Robe top", "638");
  1167. _id.put("Robe top", "639");
  1168. _id.put("Robe top", "640");
  1169. _id.put("Robe top", "641");
  1170. _id.put("Robe top", "642");
  1171. _id.put("Robe top", "643");
  1172. _id.put("Robe top", "644");
  1173. _id.put("Robe top", "645");
  1174. _id.put("Robe bottoms", "646");
  1175. _id.put("Robe bottoms", "647");
  1176. _id.put("Robe bottoms", "648");
  1177. _id.put("Robe bottoms", "649");
  1178. _id.put("Robe bottoms", "650");
  1179. _id.put("Robe bottoms", "651");
  1180. _id.put("Robe bottoms", "652");
  1181. _id.put("Robe bottoms", "653");
  1182. _id.put("Robe bottoms", "654");
  1183. _id.put("Robe bottoms", "655");
  1184. _id.put("Hat", "656");
  1185. _id.put("Hat", "657");
  1186. _id.put("Hat", "658");
  1187. _id.put("Hat", "659");
  1188. _id.put("Hat", "660");
  1189. _id.put("Hat", "661");
  1190. _id.put("Hat", "662");
  1191. _id.put("Hat", "663");
  1192. _id.put("Hat", "664");
  1193. _id.put("Hat", "665");
  1194. _id.put("Portrait", "666");
  1195. _id.put("Blurite sword", "667");
  1196. _id.put("Blurite ore", "668");
  1197. _id.put("Specimen jar", "669");
  1198. _id.put("Specimen brush", "670");
  1199. _id.put("Rock sample 1", "671");
  1200. _id.put("Rock sample 2", "672");
  1201. _id.put("Rock sample 3", "673");
  1202. _id.put("Rock sample", "674");
  1203. _id.put("Rock pick", "675");
  1204. _id.put("Trowel", "676");
  1205. _id.put("Panning tray", "677");
  1206. _id.put("Panning tray", "678");
  1207. _id.put("Panning tray", "679");
  1208. _id.put("Nuggets", "680");
  1209. _id.put("Zaros talisman", "681");
  1210. _id.put("Unstamped letter", "682");
  1211. _id.put("Stamped letter", "683");
  1212. _id.put("Belt buckle", "684");
  1213. _id.put("Old boot", "685");
  1214. _id.put("Rusty sword", "686");
  1215. _id.put("Broken arrow", "687");
  1216. _id.put("Buttons", "688");
  1217. _id.put("Broken staff", "689");
  1218. _id.put("Broken glass", "690");
  1219. _id.put("Level 1 certificate", "691");
  1220. _id.put("Level 2 certificate", "692");
  1221. _id.put("Level 3 certificate", "693");
  1222. _id.put("Ceramic remains", "694");
  1223. _id.put("Old tooth", "695");
  1224. _id.put("Invitation letter", "696");
  1225. _id.put("Damaged armour", "697");
  1226. _id.put("Broken armour", "698");
  1227. _id.put("Stone tablet", "699");
  1228. _id.put("Chemical powder", "700");
  1229. _id.put("Ammonium nitrate", "701");
  1230. _id.put("Unidentified liquid", "702");
  1231. _id.put("Nitroglycerin", "703");
  1232. _id.put("Ground charcoal", "704");
  1233. _id.put("Mixed chemicals", "705");
  1234. _id.put("Mixed chemicals", "706");
  1235. _id.put("Chemical compound", "707");
  1236. _id.put("Arcenia root", "708");
  1237. _id.put("Chest key", "709");
  1238. _id.put("Vase", "710");
  1239. _id.put("Book on chemicals", "711");
  1240. _id.put("Cup of tea", "712");
  1241. _id.put("Enjifern", "713");
  1242. _id.put("Radimus notes", "714");
  1243. _id.put("Radimus notes", "715");
  1244. _id.put("Bull roarer", "716");
  1245. _id.put("Scrawled note", "717");
  1246. _id.put("A scribbled note", "718");
  1247. _id.put("Scrumpled note", "719");
  1248. _id.put("Sketch", "720");
  1249. _id.put("Gold bowl", "721");
  1250. _id.put("Blessed gold bowl", "722");
  1251. _id.put("Golden bowl", "723");
  1252. _id.put("Golden bowl", "724");
  1253. _id.put("Golden bowl", "725");
  1254. _id.put("Golden bowl", "726");
  1255. _id.put("Hollow reed", "727");
  1256. _id.put("Hollow reed", "728");
  1257. _id.put("Shamans tome", "729");
  1258. _id.put("Book of binding", "730");
  1259. _id.put("Enchanted vial", "731");
  1260. _id.put("Holy water", "732");
  1261. _id.put("Smashed glass", "733");
  1262. _id.put("Smashed glass", "734");
  1263. _id.put("Yommi tree seeds", "735");
  1264. _id.put("Yommi tree seeds", "736");
  1265. _id.put("Snakeweed mixture", "737");
  1266. _id.put("Ardrigal mixture", "738");
  1267. _id.put("Bravery potion", "739");
  1268. _id.put("Blue hat", "740");
  1269. _id.put("Chunk of crystal", "741");
  1270. _id.put("Hunk of crystal", "742");
  1271. _id.put("Lump of crystal", "743");
  1272. _id.put("Heart crystal", "744");
  1273. _id.put("Heart crystal", "745");
  1274. _id.put("Dark dagger", "746");
  1275. _id.put("Glowing dagger", "747");
  1276. _id.put("Holy force", "748");
  1277. _id.put("Yommi totem", "749");
  1278. _id.put("Gilded totem", "750");
  1279. _id.put("Gnomeball", "751");
  1280. _id.put("Gnomeball", "752");
  1281. _id.put("Cadava berries", "753");
  1282. _id.put("Cadava berries", "754");
  1283. _id.put("Message", "755");
  1284. _id.put("Cadava potion", "756");
  1285. _id.put("Book", "757");
  1286. _id.put("Key", "758");
  1287. _id.put("Key", "759");
  1288. _id.put("Key", "760");
  1289. _id.put("Scroll", "761");
  1290. _id.put("Scroll", "762");
  1291. _id.put("Broken shield", "763");
  1292. _id.put("Broken shield", "764");
  1293. _id.put("Broken shield", "765");
  1294. _id.put("Broken shield", "766");
  1295. _id.put("Phoenix crossbow", "767");
  1296. _id.put("Phoenix crossbow", "768");
  1297. _id.put("Certificate", "769");
  1298. _id.put("Certificate", "770");
  1299. _id.put("Dramen branch", "771");
  1300. _id.put("Dramen staff", "772");
  1301. _id.put("'perfect' ring", "773");
  1302. _id.put("'perfect' necklace", "774");
  1303. _id.put("Cooking gauntlets", "775");
  1304. _id.put("Goldsmith gauntlet", "776");
  1305. _id.put("Chaos gauntlets", "777");
  1306. _id.put("Steel gauntlets", "778");
  1307. _id.put("Crest part", "779");
  1308. _id.put("Crest part", "780");
  1309. _id.put("Crest part", "781");
  1310. _id.put("Family crest", "782");
  1311. _id.put("Bark sample", "783");
  1312. _id.put("Translation book", "784");
  1313. _id.put("Glough's journal", "785");
  1314. _id.put("Hazelmere's scroll", "786");
  1315. _id.put("Lumber order", "787");
  1316. _id.put("Glough's key", "788");
  1317. _id.put("Twigs", "789");
  1318. _id.put("Twigs", "790");
  1319. _id.put("Twigs", "791");
  1320. _id.put("Twigs", "792");
  1321. _id.put("Daconia rock", "793");
  1322. _id.put("Invasion plans", "794");
  1323. _id.put("War ship", "795");
  1324. _id.put("Exploding vial", "796");
  1325. _id.put("Herb bowl", "797");
  1326. _id.put("Grinder", "798");
  1327. _id.put("Bronze thrownaxe", "800");
  1328. _id.put("Iron thrownaxe", "801");
  1329. _id.put("Steel thrownaxe", "802");
  1330. _id.put("Mithril thrownaxe", "803");
  1331. _id.put("Adamnt thrownaxe", "804");
  1332. _id.put("Rune thrownaxe", "805");
  1333. _id.put("Bronze dart", "806");
  1334. _id.put("Iron dart", "807");
  1335. _id.put("Steel dart", "808");
  1336. _id.put("Mithril dart", "809");
  1337. _id.put("Adamant dart", "810");
  1338. _id.put("Rune dart", "811");
  1339. _id.put("Bronze dart(p)", "812");
  1340. _id.put("Iron dart(p)", "813");
  1341. _id.put("Steel dart(p)", "814");
  1342. _id.put("Mithril dart(p)", "815");
  1343. _id.put("Adamant dart(p)", "816");
  1344. _id.put("Rune dart(p)", "817");
  1345. _id.put("Poisoned dart(p)", "818");
  1346. _id.put("Bronze dart tip", "819");
  1347. _id.put("Iron dart tip", "820");
  1348. _id.put("Steel dart tip", "821");
  1349. _id.put("Mithril dart tip", "822");
  1350. _id.put("Adamant dart tip", "823");
  1351. _id.put("Rune dart tip", "824");
  1352. _id.put("Bronze javelin", "825");
  1353. _id.put("Iron javelin", "826");
  1354. _id.put("Steel javelin", "827");
  1355. _id.put("Mithril javelin", "828");
  1356. _id.put("Adamant javelin", "829");
  1357. _id.put("Rune javelin", "830");
  1358. _id.put("Bronze javelin(p)", "831");
  1359. _id.put("Iron javelin(p)", "832");
  1360. _id.put("Steel javelin(p)", "833");
  1361. _id.put("Mithril javelin(p)", "834");
  1362. _id.put("Adamant javelin(p)", "835");
  1363. _id.put("Rune javelin(p)", "836");
  1364. _id.put("Crossbow", "837");
  1365. _id.put("Crossbow", "838");
  1366. _id.put("Longbow", "839");
  1367. _id.put("Longbow", "840");
  1368. _id.put("Shortbow", "841");
  1369. _id.put("Shortbow", "842");
  1370. _id.put("Oak shortbow", "843");
  1371. _id.put("Oak shortbow", "844");
  1372. _id.put("Oak longbow", "845");
  1373. _id.put("Oak longbow", "846");
  1374. _id.put("Willow longbow", "847");
  1375. _id.put("Willow longbow", "848");
  1376. _id.put("Willow shortbow", "849");
  1377. _id.put("Willow shortbow", "850");
  1378. _id.put("Maple longbow", "851");
  1379. _id.put("Maple longbow", "852");
  1380. _id.put("Maple shortbow", "853");
  1381. _id.put("Maple shortbow", "854");
  1382. _id.put("Yew longbow", "855");
  1383. _id.put("Yew longbow", "856");
  1384. _id.put("Yew shortbow", "857");
  1385. _id.put("Yew shortbow", "858");
  1386. _id.put("Magic longbow", "859");
  1387. _id.put("Magic longbow", "860");
  1388. _id.put("Magic shortbow", "861");
  1389. _id.put("Magic shortbow", "862");
  1390. _id.put("Iron knife", "863");
  1391. _id.put("Bronze knife", "864");
  1392. _id.put("Steel knife", "865");
  1393. _id.put("Mithril knife", "866");
  1394. _id.put("Adamant knife", "867");
  1395. _id.put("Rune knife", "868");
  1396. _id.put("Black knife", "869");
  1397. _id.put("Bronze knife(p)", "870");
  1398. _id.put("Iron knife(p)", "871");
  1399. _id.put("Steel knife(p)", "872");
  1400. _id.put("Mithril knife(p)", "873");
  1401. _id.put("Black knife(p)", "874");
  1402. _id.put("Adamant knife(p)", "875");
  1403. _id.put("Rune knife(p)", "876");
  1404. _id.put("Bolts", "877");
  1405. _id.put("Bolts(p)", "878");
  1406. _id.put("Opal bolts", "879");
  1407. _id.put("Pearl bolts", "880");
  1408. _id.put("Barbed bolts", "881");
  1409. _id.put("Bronze arrow", "882");
  1410. _id.put("Bronze arrow(p)", "883");
  1411. _id.put("Iron arrow", "884");
  1412. _id.put("Iron arrow(p)", "885");
  1413. _id.put("Steel arrow", "886");
  1414. _id.put("Steel arrow(p)", "887");
  1415. _id.put("Mithril arrow", "888");
  1416. _id.put("Mithril arrow(p)", "889");
  1417. _id.put("Adamant arrow", "890");
  1418. _id.put("Adamant arrow(p)", "891");
  1419. _id.put("Rune arrow", "892");
  1420. _id.put("Rune arrow(p)", "893");
  1421. _id.put("Bronze fire arrows", "942");
  1422. _id.put("Worm", "943");
  1423. _id.put("Worm", "944");
  1424. _id.put("Throwing rope", "945");
  1425. _id.put("Knife", "946");
  1426. _id.put("Knife", "947");
  1427. _id.put("Bear fur", "948");
  1428. _id.put("Bear fur", "949");
  1429. _id.put("Silk", "950");
  1430. _id.put("Silk", "951");
  1431. _id.put("Spade", "952");
  1432. _id.put("Spade", "953");
  1433. _id.put("Rope", "954");
  1434. _id.put("Rope", "955");
  1435. _id.put("Flier", "956");
  1436. _id.put("Flier", "957");
  1437. _id.put("Grey wolf fur", "958");
  1438. _id.put("Grey wolf fur", "959");
  1439. _id.put("Plank", "960");
  1440. _id.put("Plank", "961");
  1441. _id.put("Christmas cracker", "962");
  1442. _id.put("Christmas cracker", "963");
  1443. _id.put("Skull", "964");
  1444. _id.put("Skull", "965");
  1445. _id.put("Tile", "966");
  1446. _id.put("Tile", "967");
  1447. _id.put("Rock", "968");
  1448. _id.put("Rock", "969");
  1449. _id.put("Papyrus", "970");
  1450. _id.put("Papyrus", "971");
  1451. _id.put("Papyrus", "972");
  1452. _id.put("Charcoal", "973");
  1453. _id.put("Charcoal", "974");
  1454. _id.put("Machete", "975");
  1455. _id.put("Machete", "976");
  1456. _id.put("Cooking pot", "977");
  1457. _id.put("Cooking pot", "978");
  1458. _id.put("Whoopsie", "980");
  1459. _id.put("Disk of returning", "981");
  1460. _id.put("Disk of returning", "982");
  1461. _id.put("Brass key", "983");
  1462. _id.put("Brass key", "984");
  1463. _id.put("Half of a key", "985");
  1464. _id.put("Half of a key", "986");
  1465. _id.put("Half of a key", "987");
  1466. _id.put("Half of a key", "988");
  1467. _id.put("Crystal key", "989");
  1468. _id.put("Crystal key", "990");
  1469. _id.put("Muddy key", "991");
  1470. _id.put("Muddy key", "992");
  1471. _id.put("Sinister key", "993");
  1472. _id.put("Sinister key", "994");
  1473. _id.put("Coins", "995");
  1474. _id.put("White apron", "1005");
  1475. _id.put("White apron", "1006");
  1476. _id.put("Cape", "1007");
  1477. _id.put("Cape", "1008");
  1478. _id.put("Brass necklace", "1009");
  1479. _id.put("Brass necklace", "1010");
  1480. _id.put("Blue skirt", "1011");
  1481. _id.put("Blue skirt", "1012");
  1482. _id.put("Pink skirt", "1013");
  1483. _id.put("Pink skirt", "1014");
  1484. _id.put("Black skirt", "1015");
  1485. _id.put("Black skirt", "1016");
  1486. _id.put("Wizard hat", "1017");
  1487. _id.put("Wizard hat", "1018");
  1488. _id.put("Cape", "1019");
  1489. _id.put("Cape", "1020");
  1490. _id.put("Cape", "1021");
  1491. _id.put("Cape", "1022");
  1492. _id.put("Cape", "1023");
  1493. _id.put("Cape", "1024");
  1494. _id.put("Eye patch", "1025");
  1495. _id.put("Eye patch", "1026");
  1496. _id.put("Cape", "1027");
  1497. _id.put("Cape", "1028");
  1498. _id.put("Cape", "1029");
  1499. _id.put("Cape", "1030");
  1500. _id.put("Cape", "1031");
  1501. _id.put("Cape", "1032");
  1502. _id.put("Zamorak robe", "1033");
  1503. _id.put("Zamorak robe", "1034");
  1504. _id.put("Zamorak robe", "1035");
  1505. _id.put("Zamorak robe", "1036");
  1506. _id.put("Bunny ears", "1037");
  1507. _id.put("Red partyhat", "1038");
  1508. _id.put("Red partyhat", "1039");
  1509. _id.put("Yellow partyhat", "1040");
  1510. _id.put("Yellow partyhat", "1041");
  1511. _id.put("Blue partyhat", "1042");
  1512. _id.put("Blue partyhat", "1043");
  1513. _id.put("Green partyhat", "1044");
  1514. _id.put("Green partyhat", "1045");
  1515. _id.put("Purple partyhat", "1046");
  1516. _id.put("Purple partyhat", "1047");
  1517. _id.put("White partyhat", "1048");
  1518. _id.put("White partyhat", "1049");
  1519. _id.put("Santa hat", "1050");
  1520. _id.put("Santa hat", "1051");
  1521. _id.put("Cape of legends", "1052");
  1522. _id.put("Green h'ween mask", "1053");
  1523. _id.put("Green h'ween mask", "1054");
  1524. _id.put("Blue h'ween mask", "1055");
  1525. _id.put("Blue h'ween mask", "1056");
  1526. _id.put("Red h'ween mask", "1057");
  1527. _id.put("Red h'ween mask", "1058");
  1528. _id.put("Leather gloves", "1059");
  1529. _id.put("Leather gloves", "1060");
  1530. _id.put("Leather boots", "1061");
  1531. _id.put("Leather boots", "1062");
  1532. _id.put("Leather vambraces", "1063");
  1533. _id.put("Leather vambraces", "1064");
  1534. _id.put("Green d'hide vamb", "1065");
  1535. _id.put("Green d'hide vamb", "1066");
  1536. _id.put("Iron platelegs", "1067");
  1537. _id.put("Iron platelegs", "1068");
  1538. _id.put("Steel platelegs", "1069");
  1539. _id.put("Steel platelegs", "1070");
  1540. _id.put("Mithril platelegs", "1071");
  1541. _id.put("Mithril platelegs", "1072");
  1542. _id.put("Adamant platelegs", "1073");
  1543. _id.put("Adamant platelegs", "1074");
  1544. _id.put("Bronze platelegs", "1075");
  1545. _id.put("Bronze platelegs", "1076");
  1546. _id.put("Black platelegs", "1077");
  1547. _id.put("Black platelegs", "1078");
  1548. _id.put("Rune platelegs", "1079");
  1549. _id.put("Rune platelegs", "1080");
  1550. _id.put("Iron plateskirt", "1081");
  1551. _id.put("Iron plateskirt", "1082");
  1552. _id.put("Steel plateskirt", "1083");
  1553. _id.put("Steel plateskirt", "1084");
  1554. _id.put("Mithril plateskirt", "1085");
  1555. _id.put("Mithril plateskirt", "1086");
  1556. _id.put("Bronze plateskirt", "1087");
  1557. _id.put("Bronze plateskirt", "1088");
  1558. _id.put("Black plateskirt", "1089");
  1559. _id.put("Black plateskirt", "1090");
  1560. _id.put("Adamant plateskirt", "1091");
  1561. _id.put("Adamant plateskirt", "1092");
  1562. _id.put("Rune plateskirt", "1093");
  1563. _id.put("Rune plateskirt", "1094");
  1564. _id.put("Leather chaps", "1095");
  1565. _id.put("Leather chaps", "1096");
  1566. _id.put("Studded chaps", "1097");
  1567. _id.put("Studded chaps", "1098");
  1568. _id.put("Green d'hide chaps", "1099");
  1569. _id.put("Green d'hide chaps", "1100");
  1570. _id.put("Iron chainbody", "1101");
  1571. _id.put("Iron chainbody", "1102");
  1572. _id.put("Bronze chainbody", "1103");
  1573. _id.put("Bronze chainbody", "1104");
  1574. _id.put("Steel chainbody", "1105");
  1575. _id.put("Steel chainbody", "1106");
  1576. _id.put("Black chainbody", "1107");
  1577. _id.put("Black chainbody", "1108");
  1578. _id.put("Mithril chainbody", "1109");
  1579. _id.put("Mithril chainbody", "1110");
  1580. _id.put("Adamant chainbody", "1111");
  1581. _id.put("Adamant chainbody", "1112");
  1582. _id.put("Rune chainbody", "1113");
  1583. _id.put("Rune chainbody", "1114");
  1584. _id.put("Iron platebody", "1115");
  1585. _id.put("Iron platebody", "1116");
  1586. _id.put("Bronze platebody", "1117");
  1587. _id.put("Bronze platebody", "1118");
  1588. _id.put("Steel platebody", "1119");
  1589. _id.put("Steel platebody", "1120");
  1590. _id.put("Mithril platebody", "1121");
  1591. _id.put("Mithril platebody", "1122");
  1592. _id.put("Adamant platebody", "1123");
  1593. _id.put("Adamant platebody", "1124");
  1594. _id.put("Black platebody", "1125");
  1595. _id.put("Black platebody", "1126");
  1596. _id.put("Rune platebody", "1127");
  1597. _id.put("Rune platebody", "1128");
  1598. _id.put("Leather body", "1129");
  1599. _id.put("Leather body", "1130");
  1600. _id.put("Hardleather body", "1131");
  1601. _id.put("Hardleather body", "1132");
  1602. _id.put("Studded body", "1133");
  1603. _id.put("Studded body", "1134");
  1604. _id.put("Green d'hide body", "1135");
  1605. _id.put("Green d'hide body", "1136");
  1606. _id.put("Iron med helm", "1137");
  1607. _id.put("Iron med helm", "1138");
  1608. _id.put("Bronze med helm", "1139");
  1609. _id.put("Bronze med helm", "1140");
  1610. _id.put("Steel med helm", "1141");
  1611. _id.put("Steel med helm", "1142");
  1612. _id.put("Mithril med helm", "1143");
  1613. _id.put("Mithril med helm", "1144");
  1614. _id.put("Adamant med helm", "1145");
  1615. _id.put("Adamant med helm", "1146");
  1616. _id.put("Rune med helm", "1147");
  1617. _id.put("Rune med helm", "1148");
  1618. _id.put("Dragon med helm", "1149");
  1619. _id.put("Dragon med helm", "1150");
  1620. _id.put("Black med helm", "1151");
  1621. _id.put("Black med helm", "1152");
  1622. _id.put("Iron full helm", "1153");
  1623. _id.put("Iron full helm", "1154");
  1624. _id.put("Bronze full helm", "1155");
  1625. _id.put("Bronze full helm", "1156");
  1626. _id.put("Steel full helm", "1157");
  1627. _id.put("Steel full helm", "1158");
  1628. _id.put("Mithril full helm", "1159");
  1629. _id.put("Mithril full helm", "1160");
  1630. _id.put("Adamant full helm", "1161");
  1631. _id.put("Adamant full helm", "1162");
  1632. _id.put("Rune full helm", "1163");
  1633. _id.put("Rune full helm", "1164");
  1634. _id.put("Black full helm", "1165");
  1635. _id.put("Black full helm", "1166");
  1636. _id.put("Leather cowl", "1167");
  1637. _id.put("Leather cowl", "1168");
  1638. _id.put("Coif", "1169");
  1639. _id.put("Coif", "1170");
  1640. _id.put("Wooden shield", "1171");
  1641. _id.put("Wooden shield", "1172");
  1642. _id.put("Bronze sq shield", "1173");
  1643. _id.put("Bronze sq shield", "1174");
  1644. _id.put("Iron sq shield", "1175");
  1645. _id.put("Iron sq shield", "1176");
  1646. _id.put("Steel sq shield", "1177");
  1647. _id.put("Steel sq shield", "1178");
  1648. _id.put("Black sq shield", "1179");
  1649. _id.put("Black sq shield", "1180");
  1650. _id.put("Mithril sq shield", "1181");
  1651. _id.put("Mithril sq shield", "1182");
  1652. _id.put("Adamant sq shield", "1183");
  1653. _id.put("Adamant sq shield", "1184");
  1654. _id.put("Rune sq shield", "1185");
  1655. _id.put("Rune sq shield", "1186");
  1656. _id.put("Dragon sq shield", "1187");
  1657. _id.put("Dragon sq shield", "1188");
  1658. _id.put("Bronze kiteshield", "1189");
  1659. _id.put("Bronze kiteshield", "1190");
  1660. _id.put("Iron kiteshield", "1191");
  1661. _id.put("Iron kiteshield", "1192");
  1662. _id.put("Steel kiteshield", "1193");
  1663. _id.put("Steel kiteshield", "1194");
  1664. _id.put("Black kiteshield", "1195");
  1665. _id.put("Black kiteshield", "1196");
  1666. _id.put("Mithril kiteshield", "1197");
  1667. _id.put("Mithril kiteshield", "1198");
  1668. _id.put("Adamant kiteshield", "1199");
  1669. _id.put("Adamant kiteshield", "1200");
  1670. _id.put("Rune kiteshield", "1201");
  1671. _id.put("Rune kiteshield", "1202");
  1672. _id.put("Iron dagger", "1203");
  1673. _id.put("Iron dagger", "1204");
  1674. _id.put("Bronze dagger", "1205");
  1675. _id.put("Bronze dagger", "1206");
  1676. _id.put("Steel dagger", "1207");
  1677. _id.put("Steel dagger", "1208");
  1678. _id.put("Mithril dagger", "1209");
  1679. _id.put("Mithril dagger", "1210");
  1680. _id.put("Adamant dagger", "1211");
  1681. _id.put("Adamant dagger", "1212");
  1682. _id.put("Rune dagger", "1213");
  1683. _id.put("Rune dagger", "1214");
  1684. _id.put("Dragon dagger", "1215");
  1685. _id.put("Dragon dagger", "1216");
  1686. _id.put("Black dagger", "1217");
  1687. _id.put("Black dagger", "1218");
  1688. _id.put("Iron dagger(p)", "1219");
  1689. _id.put("Iron dagger(p)", "1220");
  1690. _id.put("Bronze dagger(p)", "1221");
  1691. _id.put("Bronze dagger(p)", "1222");
  1692. _id.put("Steel dagger(p)", "1223");
  1693. _id.put("Steel dagger(p)", "1224");
  1694. _id.put("Mithril dagger(p)", "1225");
  1695. _id.put("Mithril dagger(p)", "1226");
  1696. _id.put("Adamant dagger(p)", "1227");
  1697. _id.put("Adamant dagger(p)", "1228");
  1698. _id.put("Rune dagger(p)", "1229");
  1699. _id.put("Rune dagger(p)", "1230");
  1700. _id.put("Dragon dagger(p)", "1231");
  1701. _id.put("Dragon dagger(p)", "1232");
  1702. _id.put("Black dagger(p)", "1233");
  1703. _id.put("Black dagger(p)", "1234");
  1704. _id.put("Poisoned dagger(p)", "1235");
  1705. _id.put("Poisoned dagger(p)", "1236");
  1706. _id.put("Bronze spear", "1237");
  1707. _id.put("Bronze spear", "1238");
  1708. _id.put("Iron spear", "1239");
  1709. _id.put("Iron spear", "1240");
  1710. _id.put("Steel spear", "1241");
  1711. _id.put("Steel spear", "1242");
  1712. _id.put("Mithril spear", "1243");
  1713. _id.put("Mithril spear", "1244");
  1714. _id.put("Adamant spear", "1245");
  1715. _id.put("Adamant spear", "1246");
  1716. _id.put("Rune spear", "1247");
  1717. _id.put("Rune spear", "1248");
  1718. _id.put("Dragon spear", "1249");
  1719. _id.put("Dragon spear", "1250");
  1720. _id.put("Bronze spear(p)", "1251");
  1721. _id.put("Bronze spear(p)", "1252");
  1722. _id.put("Iron spear(p)", "1253");
  1723. _id.put("Iron spear(p)", "1254");
  1724. _id.put("Steel spear(p)", "1255");
  1725. _id.put("Steel spear(p)", "1256");
  1726. _id.put("Mithril spear(p)", "1257");
  1727. _id.put("Mithril spear(p)", "1258");
  1728. _id.put("Adamant spear(p)", "1259");
  1729. _id.put("Adamant spear(p)", "1260");
  1730. _id.put("Rune spear(p)", "1261");
  1731. _id.put("Rune spear(p)", "1262");
  1732. _id.put("Dragon spear(p)", "1263");
  1733. _id.put("Dragon spear(p)", "1264");
  1734. _id.put("Bronze pickaxe", "1265");
  1735. _id.put("Bronze pickaxe", "1266");
  1736. _id.put("Iron pickaxe", "1267");
  1737. _id.put("Iron pickaxe", "1268");
  1738. _id.put("Steel pickaxe", "1269");
  1739. _id.put("Steel pickaxe", "1270");
  1740. _id.put("Adamant pickaxe", "1271");
  1741. _id.put("Adamant pickaxe", "1272");
  1742. _id.put("Mithril pickaxe", "1273");
  1743. _id.put("Mithril pickaxe", "1274");
  1744. _id.put("Rune pickaxe", "1275");
  1745. _id.put("Rune pickaxe", "1276");
  1746. _id.put("Bronze sword", "1277");
  1747. _id.put("Bronze sword", "1278");
  1748. _id.put("Iron sword", "1279");
  1749. _id.put("Iron sword", "1280");
  1750. _id.put("Steel sword", "1281");
  1751. _id.put("Steel sword", "1282");
  1752. _id.put("Black sword", "1283");
  1753. _id.put("Black sword", "1284");
  1754. _id.put("Mithril sword", "1285");
  1755. _id.put("Mithril sword", "1286");
  1756. _id.put("Adamant sword", "1287");
  1757. _id.put("Adamant sword", "1288");
  1758. _id.put("Rune sword", "1289");
  1759. _id.put("Rune sword", "1290");
  1760. _id.put("Bronze longsword", "1291");
  1761. _id.put("Bronze longsword", "1292");
  1762. _id.put("Iron longsword", "1293");
  1763. _id.put("Iron longsword", "1294");
  1764. _id.put("Steel longsword", "1295");
  1765. _id.put("Steel longsword", "1296");
  1766. _id.put("Black longsword", "1297");
  1767. _id.put("Black longsword", "1298");
  1768. _id.put("Mithril longsword", "1299");
  1769. _id.put("Mithril longsword", "1300");
  1770. _id.put("Adamant longsword", "1301");
  1771. _id.put("Adamant longsword", "1302");
  1772. _id.put("Rune longsword", "1303");
  1773. _id.put("Rune longsword", "1304");
  1774. _id.put("Dragon longsword", "1305");
  1775. _id.put("Dragon longsword", "1306");
  1776. _id.put("Bronze 2h sword", "1307");
  1777. _id.put("Bronze 2h sword", "1308");
  1778. _id.put("Iron 2h sword", "1309");
  1779. _id.put("Iron 2h sword", "1310");
  1780. _id.put("Steel 2h sword", "1311");
  1781. _id.put("Steel 2h sword", "1312");
  1782. _id.put("Black 2h sword", "1313");
  1783. _id.put("Black 2h sword", "1314");
  1784. _id.put("Mithril 2h sword", "1315");
  1785. _id.put("Mithril 2h sword", "1316");
  1786. _id.put("Adamant 2h sword", "1317");
  1787. _id.put("Adamant 2h sword", "1318");
  1788. _id.put("Rune 2h sword", "1319");
  1789. _id.put("Rune 2h sword", "1320");
  1790. _id.put("Bronze scimitar", "1321");
  1791. _id.put("Bronze scimitar", "1322");
  1792. _id.put("Iron scimitar", "1323");
  1793. _id.put("Iron scimitar", "1324");
  1794. _id.put("Steel scimitar", "1325");
  1795. _id.put("Steel scimitar", "1326");
  1796. _id.put("Black scimitar", "1327");
  1797. _id.put("Black scimitar", "1328");
  1798. _id.put("Mithril scimitar", "1329");
  1799. _id.put("Mithril scimitar", "1330");
  1800. _id.put("Adamant scimitar", "1331");
  1801. _id.put("Adamant scimitar", "1332");
  1802. _id.put("Rune scimitar", "1333");
  1803. _id.put("Rune scimitar", "1334");
  1804. _id.put("Iron warhammer", "1335");
  1805. _id.put("Iron warhammer", "1336");
  1806. _id.put("Bronze warhammer", "1337");
  1807. _id.put("Bronze warhammer", "1338");
  1808. _id.put("Steel warhammer", "1339");
  1809. _id.put("Steel warhammer", "1340");
  1810. _id.put("Black warhammer", "1341");
  1811. _id.put("Black warhammer", "1342");
  1812. _id.put("Mithril warhammer", "1343");
  1813. _id.put("Mithril warhammer", "1344");
  1814. _id.put("Addy warhammer", "1345");
  1815. _id.put("Addy warhammer", "1346");
  1816. _id.put("Rune warhammer", "1347");
  1817. _id.put("Rune warhammer", "1348");
  1818. _id.put("Iron axe", "1349");
  1819. _id.put("Iron axe", "1350");
  1820. _id.put("Bronze axe", "1351");
  1821. _id.put("Bronze axe", "1352");
  1822. _id.put("Steel axe", "1353");
  1823. _id.put("Steel axe", "1354");
  1824. _id.put("Mithril axe", "1355");
  1825. _id.put("Mithril axe", "1356");
  1826. _id.put("Adamant axe", "1357");
  1827. _id.put("Adamant axe", "1358");
  1828. _id.put("Rune axe", "1359");
  1829. _id.put("Rune axe", "1360");
  1830. _id.put("Black axe", "1361");
  1831. _id.put("Black axe", "1362");
  1832. _id.put("Iron battleaxe", "1363");
  1833. _id.put("Iron battleaxe", "1364");
  1834. _id.put("Steel battleaxe", "1365");
  1835. _id.put("Steel battleaxe", "1366");
  1836. _id.put("Black battleaxe", "1367");
  1837. _id.put("Black battleaxe", "1368");
  1838. _id.put("Mithril battleaxe", "1369");
  1839. _id.put("Mithril battleaxe", "1370");
  1840. _id.put("Adamant battleaxe", "1371");
  1841. _id.put("Adamant battleaxe", "1372");
  1842. _id.put("Rune battleaxe", "1373");
  1843. _id.put("Rune battleaxe", "1374");
  1844. _id.put("Bronze battleaxe", "1375");
  1845. _id.put("Bronze battleaxe", "1376");
  1846. _id.put("Dragon battleaxe", "1377");
  1847. _id.put("Dragon battleaxe", "1378");
  1848. _id.put("Staff", "1379");
  1849. _id.put("Staff", "1380");
  1850. _id.put("Staff of air", "1381");
  1851. _id.put("Staff of air", "1382");
  1852. _id.put("Staff of water", "1383");
  1853. _id.put("Staff of water", "1384");
  1854. _id.put("Staff of earth", "1385");
  1855. _id.put("Staff of earth", "1386");
  1856. _id.put("Staff of fire", "1387");
  1857. _id.put("Staff of fire", "1388");
  1858. _id.put("Magic staff", "1389");
  1859. _id.put("Magic staff", "1390");
  1860. _id.put("Battlestaff", "1391");
  1861. _id.put("Battlestaff", "1392");
  1862. _id.put("Fire battlestaff", "1393");
  1863. _id.put("Fire battlestaff", "1394");
  1864. _id.put("Water battlestaff", "1395");
  1865. _id.put("Water battlestaff", "1396");
  1866. _id.put("Air battlestaff", "1397");
  1867. _id.put("Air battlestaff", "1398");
  1868. _id.put("Earth battlestaff", "1399");
  1869. _id.put("Earth battlestaff", "1400");
  1870. _id.put("Mystic fire staff", "1401");
  1871. _id.put("Mystic fire staff", "1402");
  1872. _id.put("Mystic water staff", "1403");
  1873. _id.put("Mystic water staff", "1404");
  1874. _id.put("Mystic air staff", "1405");
  1875. _id.put("Mystic air staff", "1406");
  1876. _id.put("Mystic earth staff", "1407");
  1877. _id.put("Mystic earth staff", "1408");
  1878. _id.put("Iban's staff", "1409");
  1879. _id.put("Iban's staff", "1410");
  1880. _id.put("Farmer's fork", "1411");
  1881. _id.put("Farmer's fork", "1412");
  1882. _id.put("Halberd", "1413");
  1883. _id.put("Halberd", "1414");
  1884. _id.put("Warhammer", "1415");
  1885. _id.put("Warhammer", "1416");
  1886. _id.put("Javelin", "1417");
  1887. _id.put("Javelin", "1418");
  1888. _id.put("Scythe", "1419");
  1889. _id.put("Iron mace", "1420");
  1890. _id.put("Iron mace", "1421");
  1891. _id.put("Bronze mace", "1422");
  1892. _id.put("Bronze mace", "1423");
  1893. _id.put("Steel mace", "1424");
  1894. _id.put("Steel mace", "1425");
  1895. _id.put("Black mace", "1426");
  1896. _id.put("Black mace", "1427");
  1897. _id.put("Mithril mace", "1428");
  1898. _id.put("Mithril mace", "1429");
  1899. _id.put("Adamant mace", "1430");
  1900. _id.put("Adamant mace", "1431");
  1901. _id.put("Rune mace", "1432");
  1902. _id.put("Rune mace", "1433");
  1903. _id.put("Dragon mace", "1434");
  1904. _id.put("Dragon mace", "1435");
  1905. _id.put("Rune essence", "1436");
  1906. _id.put("Rune essence", "1437");
  1907. _id.put("Air talisman", "1438");
  1908. _id.put("Air talisman", "1439");
  1909. _id.put("Earth talisman", "1440");
  1910. _id.put("Earth talisman", "1441");
  1911. _id.put("Fire talisman", "1442");
  1912. _id.put("Fire talisman", "1443");
  1913. _id.put("Water talisman", "1444");
  1914. _id.put("Water talisman", "1445");
  1915. _id.put("Body talisman", "1446");
  1916. _id.put("Body talisman", "1447");
  1917. _id.put("Mind talisman", "1448");
  1918. _id.put("Mind talisman", "1449");
  1919. _id.put("Blood talisman", "1450");
  1920. _id.put("Blood talisman", "1451");
  1921. _id.put("Chaos talisman", "1452");
  1922. _id.put("Chaos talisman", "1453");
  1923. _id.put("Cosmic talisman", "1454");
  1924. _id.put("Cosmic talisman", "1455");
  1925. _id.put("Death talisman", "1456");
  1926. _id.put("Death talisman", "1457");
  1927. _id.put("Law talisman", "1458");
  1928. _id.put("Rotten net", "1459");
  1929. _id.put("Soul talisman", "1460");
  1930. _id.put("Soul talisman", "1461");
  1931. _id.put("Nature talisman", "1462");
  1932. _id.put("Nature talisman", "1463");
  1933. _id.put("Archery ticket", "1464");
  1934. _id.put("Weapon poison", "1465");
  1935. _id.put("Sea slug", "1466");
  1936. _id.put("Damp sticks", "1467");
  1937. _id.put("Dry sticks", "1468");
  1938. _id.put("Broken glass", "1469");
  1939. _id.put("Red bead", "1470");
  1940. _id.put("Red bead", "1471");
  1941. _id.put("Yellow bead", "1472");
  1942. _id.put("Yellow bead", "1473");
  1943. _id.put("Black bead", "1474");
  1944. _id.put("Black bead", "1475");
  1945. _id.put("White bead", "1476");
  1946. _id.put("White bead", "1477");
  1947. _id.put("Amulet of accuracy", "1478");
  1948. _id.put("Amulet of accuracy", "1479");
  1949. _id.put("Rock", "1480");
  1950. _id.put("Orb of light", "1481");
  1951. _id.put("Orb of light", "1482");
  1952. _id.put("Orb of light", "1483");
  1953. _id.put("Orb of light", "1484");
  1954. _id.put("Damp cloth", "1485");
  1955. _id.put("Piece of railing", "1486");
  1956. _id.put("Unicorn horn", "1487");
  1957. _id.put("Paladin's badge", "1488");
  1958. _id.put("Paladin's badge", "1489");
  1959. _id.put("Paladin's badge", "1490");
  1960. _id.put("Witch's cat", "1491");
  1961. _id.put("Doll of iban", "1492");
  1962. _id.put("Old journal", "1493");
  1963. _id.put("History of iban", "1494");
  1964. _id.put("Klank's gauntlets", "1495");
  1965. _id.put("Iban's dove", "1496");
  1966. _id.put("Amulet of othanian", "1497");
  1967. _id.put("Amulet of doomion", "1498");
  1968. _id.put("Amulet of holthion", "1499");
  1969. _id.put("Iban's shadow", "1500");
  1970. _id.put("Dwarf brew", "1501");
  1971. _id.put("Iban's ashes", "1502");
  1972. _id.put("Warrant", "1503");
  1973. _id.put("Hangover cure", "1504");
  1974. _id.put("A magic scroll", "1505");
  1975. _id.put("Gas mask", "1506");
  1976. _id.put("A small key", "1507");
  1977. _id.put("A scruffy note", "1508");
  1978. _id.put("Book", "1509");
  1979. _id.put("Picture", "1510");
  1980. _id.put("Logs", "1511");
  1981. _id.put("Logs", "1512");
  1982. _id.put("Magic logs", "1513");
  1983. _id.put("Magic logs", "1514");
  1984. _id.put("Yew logs", "1515");
  1985. _id.put("Yew logs", "1516");
  1986. _id.put("Maple logs", "1517");
  1987. _id.put("Maple logs", "1518");
  1988. _id.put("Willow logs", "1519");
  1989. _id.put("Willow logs", "1520");
  1990. _id.put("Oak logs", "1521");
  1991. _id.put("Oak logs", "1522");
  1992. _id.put("Lockpick", "1523");
  1993. _id.put("Lockpick", "1524");
  1994. _id.put("Herb", "1525");
  1995. _id.put("Snake weed", "1526");
  1996. _id.put("Herb", "1527");
  1997. _id.put("Ardrigal", "1528");
  1998. _id.put("Herb", "1529");
  1999. _id.put("Sito foil", "1530");
  2000. _id.put("Herb", "1531");
  2001. _id.put("Volencia moss", "1532");
  2002. _id.put("Herb", "1533");
  2003. _id.put("Rogue's purse", "1534");
  2004. _id.put("Map part", "1535");
  2005. _id.put("Map part", "1536");
  2006. _id.put("Map part", "1537");
  2007. _id.put("Crandor map", "1538");
  2008. _id.put("Steel nails", "1539");
  2009. _id.put("Anti-dragon shield", "1540");
  2010. _id.put("Anti-dragon shield", "1541");
  2011. _id.put("Maze key", "1542");
  2012. _id.put("Key", "1543");
  2013. _id.put("Key", "1544");
  2014. _id.put("Key", "1545");
  2015. _id.put("Key", "1546");
  2016. _id.put("Key", "1547");
  2017. _id.put("Key", "1548");
  2018. _id.put("Stake", "1549");
  2019. _id.put("Garlic", "1550");
  2020. _id.put("Garlic", "1551");
  2021. _id.put("Seasoned sardine", "1552");
  2022. _id.put("Seasoned sardine", "1553");
  2023. _id.put("Fluffs' kitten", "1554");
  2024. _id.put("Pet kitten", "1555");
  2025. _id.put("Pet kitten", "1556");
  2026. _id.put("Pet kitten", "1557");
  2027. _id.put("Pet kitten", "1558");
  2028. _id.put("Pet kitten", "1559");
  2029. _id.put("Pet kitten", "1560");
  2030. _id.put("Pet cat", "1561");
  2031. _id.put("Pet cat", "1562");
  2032. _id.put("Pet cat", "1563");
  2033. _id.put("Pet cat", "1564");
  2034. _id.put("Pet cat", "1565");
  2035. _id.put("Pet cat", "1566");
  2036. _id.put("Pet cat", "1567");
  2037. _id.put("Pet cat", "1568");
  2038. _id.put("Pet cat", "1569");
  2039. _id.put("Pet cat", "1570");
  2040. _id.put("Pet cat", "1571");
  2041. _id.put("Pet cat", "1572");
  2042. _id.put("Doogle leaves", "1573");
  2043. _id.put("Doogle leaves", "1574");
  2044. _id.put("Cat training medal", "1575");
  2045. _id.put("Cat training medal", "1576");
  2046. _id.put("Pete's candlestick", "1577");
  2047. _id.put("Pete's candlestick", "1578");
  2048. _id.put("Thieves' armband", "1579");
  2049. _id.put("Ice gloves", "1580");
  2050. _id.put("Blamish snail slime", "1581");
  2051. _id.put("Blamish oil", "1582");
  2052. _id.put("Fire feather", "1583");
  2053. _id.put("Id papers", "1584");
  2054. _id.put("Oily fishing rod", "1585");
  2055. _id.put("Miscellaneous key", "1586");
  2056. _id.put("Miscellaneous key", "1587");
  2057. _id.put("Grips' keyring", "1588");
  2058. _id.put("Pretty girl", "1589");
  2059. _id.put("Dusty key", "1590");
  2060. _id.put("Jail key", "1591");
  2061. _id.put("Ring mould", "1592");
  2062. _id.put("Ring mould", "1593");
  2063. _id.put("Unholy mould", "1594");
  2064. _id.put("Amulet mould", "1595");
  2065. _id.put("Amulet mould", "1596");
  2066. _id.put("Necklace mould", "1597");
  2067. _id.put("Necklace mould", "1598");
  2068. _id.put("Holy mould", "1599");
  2069. _id.put("Holy mould", "1600");
  2070. _id.put("Diamond", "1601");
  2071. _id.put("Diamond", "1602");
  2072. _id.put("Ruby", "1603");
  2073. _id.put("Ruby", "1604");
  2074. _id.put("Emerald", "1605");
  2075. _id.put("Emerald", "1606");
  2076. _id.put("Sapphire", "1607");
  2077. _id.put("Sapphire", "1608");
  2078. _id.put("Opal", "1609");
  2079. _id.put("Opal", "1610");
  2080. _id.put("Jade", "1611");
  2081. _id.put("Jade", "1612");
  2082. _id.put("Red topaz", "1613");
  2083. _id.put("Red topaz", "1614");
  2084. _id.put("Dragonstone", "1615");
  2085. _id.put("Dragonstone", "1616");
  2086. _id.put("Uncut diamond", "1617");
  2087. _id.put("Uncut diamond", "1618");
  2088. _id.put("Uncut ruby", "1619");
  2089. _id.put("Uncut ruby", "1620");
  2090. _id.put("Uncut emerald", "1621");
  2091. _id.put("Uncut emerald", "1622");
  2092. _id.put("Uncut sapphire", "1623");
  2093. _id.put("Uncut sapphire", "1624");
  2094. _id.put("Uncut opal", "1625");
  2095. _id.put("Uncut opal", "1626");
  2096. _id.put("Uncut jade", "1627");
  2097. _id.put("Uncut jade", "1628");
  2098. _id.put("Uncut red topaz", "1629");
  2099. _id.put("Uncut red topaz", "1630");
  2100. _id.put("Uncut dragonstone", "1631");
  2101. _id.put("Uncut dragonstone", "1632");
  2102. _id.put("Crushed gemstone", "1633");
  2103. _id.put("Crushed gemstone", "1634");
  2104. _id.put("Gold ring", "1635");
  2105. _id.put("Gold ring", "1636");
  2106. _id.put("Sapphire ring", "1637");
  2107. _id.put("Sapphire ring", "1638");
  2108. _id.put("Emerald ring", "1639");
  2109. _id.put("Emerald ring", "1640");
  2110. _id.put("Ruby ring", "1641");
  2111. _id.put("Ruby ring", "1642");
  2112. _id.put("Diamond ring", "1643");
  2113. _id.put("Diamond ring", "1644");
  2114. _id.put("Dragonstone ring", "1645");
  2115. _id.put("Dragonstone ring", "1646");
  2116. _id.put("Whoopsie", "1648");
  2117. _id.put("Sapphire ring", "1649");
  2118. _id.put("Emerald ring", "1650");
  2119. _id.put("Ruby ring", "1651");
  2120. _id.put("Diamond ring", "1652");
  2121. _id.put("Dragonstone ring", "1653");
  2122. _id.put("Gold necklace", "1654");
  2123. _id.put("Gold necklace", "1655");
  2124. _id.put("Sapphire necklace", "1656");
  2125. _id.put("Sapphire necklace", "1657");
  2126. _id.put("Emerald necklace", "1658");
  2127. _id.put("Emerald necklace", "1659");
  2128. _id.put("Ruby necklace", "1660");
  2129. _id.put("Ruby necklace", "1661");
  2130. _id.put("Diamond necklace", "1662");
  2131. _id.put("Diamond necklace", "1663");
  2132. _id.put("Dragon necklace", "1664");
  2133. _id.put("Dragon necklace", "1665");
  2134. _id.put("Whoopsie", "1667");
  2135. _id.put("Sapphire necklace", "1668");
  2136. _id.put("Emerald necklace", "1669");
  2137. _id.put("Ruby necklace", "1670");
  2138. _id.put("Diamond necklace", "1671");
  2139. _id.put("Dragon necklace", "1672");
  2140. _id.put("Gold amulet", "1673");
  2141. _id.put("Gold amulet", "1674");
  2142. _id.put("Sapphire amulet", "1675");
  2143. _id.put("Sapphire amulet", "1676");
  2144. _id.put("Emerald amulet", "1677");
  2145. _id.put("Emerald amulet", "1678");
  2146. _id.put("Ruby amulet", "1679");
  2147. _id.put("Ruby amulet", "1680");
  2148. _id.put("Diamond amulet", "1681");
  2149. _id.put("Diamond amulet", "1682");
  2150. _id.put("Dragonstone ammy", "1683");
  2151. _id.put("Dragonstone ammy", "1684");
  2152. _id.put("Whoopsie", "1686");
  2153. _id.put("Sapphire amulet", "1687");
  2154. _id.put("Emerald amulet", "1688");
  2155. _id.put("Ruby amulet", "1689");
  2156. _id.put("Diamond amulet", "1690");
  2157. _id.put("Dragonstone ammy", "1691");
  2158. _id.put("Gold amulet", "1692");
  2159. _id.put("Gold amulet", "1693");
  2160. _id.put("Sapphire amulet", "1694");
  2161. _id.put("Sapphire amulet", "1695");
  2162. _id.put("Emerald amulet", "1696");
  2163. _id.put("Emerald amulet", "1697");
  2164. _id.put("Ruby amulet", "1698");
  2165. _id.put("Ruby amulet", "1699");
  2166. _id.put("Diamond amulet", "1700");
  2167. _id.put("Diamond amulet", "1701");
  2168. _id.put("Dragonstone ammy", "1702");
  2169. _id.put("Dragonstone ammy", "1703");
  2170. _id.put("Amulet of glory", "1704");
  2171. _id.put("Amulet of glory", "1705");
  2172. _id.put("Amulet of glory(1)", "1706");
  2173. _id.put("Amulet of glory(1)", "1707");
  2174. _id.put("Amulet of glory(2)", "1708");
  2175. _id.put("Amulet of glory(2)", "1709");
  2176. _id.put("Amulet of glory(3)", "1710");
  2177. _id.put("Amulet of glory(3)", "1711");
  2178. _id.put("Amulet of glory(4)", "1712");
  2179. _id.put("Amulet of glory(4)", "1713");
  2180. _id.put("Unstrung symbol", "1714");
  2181. _id.put("Unstrung symbol", "1715");
  2182. _id.put("Unblessed symbol", "1716");
  2183. _id.put("Unblessed symbol", "1717");
  2184. _id.put("Holy symbol", "1718");
  2185. _id.put("Holy symbol", "1719");
  2186. _id.put("Unstrung emblem", "1720");
  2187. _id.put("Unstrung emblem", "1721");
  2188. _id.put("Unpowered symbol", "1722");
  2189. _id.put("Unpowered symbol", "1723");
  2190. _id.put("Unholy symbol", "1724");
  2191. _id.put("Amulet of strength", "1725");
  2192. _id.put("Amulet of strength", "1726");
  2193. _id.put("Amulet of magic", "1727");
  2194. _id.put("Amulet of magic", "1728");
  2195. _id.put("Amulet of defence", "1729");
  2196. _id.put("Amulet of defence", "1730");
  2197. _id.put("Amulet of power", "1731");
  2198. _id.put("Amulet of power", "1732");
  2199. _id.put("Needle", "1733");
  2200. _id.put("Thread", "1734");
  2201. _id.put("Shears", "1735");
  2202. _id.put("Shears", "1736");
  2203. _id.put("Wool", "1737");
  2204. _id.put("Wool", "1738");
  2205. _id.put("Cowhide", "1739");
  2206. _id.put("Cowhide", "1740");
  2207. _id.put("Leather", "1741");
  2208. _id.put("Leather", "1742");
  2209. _id.put("Hard leather", "1743");
  2210. _id.put("Hard leather", "1744");
  2211. _id.put("Green d-leather", "1745");
  2212. _id.put("Green d-leather", "1746");
  2213. _id.put("Black dragonhide", "1747");
  2214. _id.put("Black dragonhide", "1748");
  2215. _id.put("Red dragonhide", "1749");
  2216. _id.put("Red dragonhide", "1750");
  2217. _id.put("Blue dragonhide", "1751");
  2218. _id.put("Blue dragonhide", "1752");
  2219. _id.put("Green dragonhide", "1753");
  2220. _id.put("Green dragonhide", "1754");
  2221. _id.put("Chisel", "1755");
  2222. _id.put("Chisel", "1756");
  2223. _id.put("Brown apron", "1757");
  2224. _id.put("Brown apron", "1758");
  2225. _id.put("Ball of wool", "1759");
  2226. _id.put("Ball of wool", "1760");
  2227. _id.put("Soft clay", "1761");
  2228. _id.put("Soft clay", "1762");
  2229. _id.put("Red dye", "1763");
  2230. _id.put("Red dye", "1764");
  2231. _id.put("Yellow dye", "1765");
  2232. _id.put("Yellow dye", "1766");
  2233. _id.put("Blue dye", "1767");
  2234. _id.put("Blue dye", "1768");
  2235. _id.put("Orange dye", "1769");
  2236. _id.put("Orange dye", "1770");
  2237. _id.put("Green dye", "1771");
  2238. _id.put("Green dye", "1772");
  2239. _id.put("Purple dye", "1773");
  2240. _id.put("Purple dye", "1774");
  2241. _id.put("Molten glass", "1775");
  2242. _id.put("Molten glass", "1776");
  2243. _id.put("Bow string", "1777");
  2244. _id.put("Bow string", "1778");
  2245. _id.put("Flax", "1779");
  2246. _id.put("Flax", "1780");
  2247. _id.put("Soda ash", "1781");
  2248. _id.put("Soda ash", "1782");
  2249. _id.put("Bucket of sand", "1783");
  2250. _id.put("Bucket of sand", "1784");
  2251. _id.put("Glassblowing pipe", "1785");
  2252. _id.put("Glassblowing pipe", "1786");
  2253. _id.put("Unfired pot", "1787");
  2254. _id.put("Unfired pot", "1788");
  2255. _id.put("Unfired pie dish", "1789");
  2256. _id.put("Unfired pie dish", "1790");
  2257. _id.put("Unfired bowl", "1791");
  2258. _id.put("Unfired bowl", "1792");
  2259. _id.put("Woad leaf", "1793");
  2260. _id.put("Bronze wire", "1794");
  2261. _id.put("Bronze wire", "1795");
  2262. _id.put("Silver necklace", "1796");
  2263. _id.put("Silver necklace", "1797");
  2264. _id.put("Silver cup", "1798");
  2265. _id.put("Silver cup", "1799");
  2266. _id.put("Silver bottle", "1800");
  2267. _id.put("Silver bottle", "1801");
  2268. _id.put("Silver book", "1802");
  2269. _id.put("Silver book", "1803");
  2270. _id.put("Silver needle", "1804");
  2271. _id.put("Silver needle", "1805");
  2272. _id.put("Silver pot", "1806");
  2273. _id.put("Silver pot", "1807");
  2274. _id.put("Criminal's thread", "1808");
  2275. _id.put("Criminal's thread", "1809");
  2276. _id.put("Criminal's thread", "1810");
  2277. _id.put("Flypaper", "1811");
  2278. _id.put("Pungent pot", "1812");
  2279. _id.put("Criminal's dagger", "1813");
  2280. _id.put("Criminal's dagger", "1814");
  2281. _id.put("Killer's print", "1815");
  2282. _id.put("Anna's print", "1816");
  2283. _id.put("Bob's print", "1817");
  2284. _id.put("Carol's print", "1818");
  2285. _id.put("David's print", "1819");
  2286. _id.put("Elizabeth's print", "1820");
  2287. _id.put("Frank's print", "1821");
  2288. _id.put("Unknown print", "1822");
  2289. _id.put("Waterskin(4)", "1823");
  2290. _id.put("Waterskin(4)", "1824");
  2291. _id.put("Waterskin(3)", "1825");
  2292. _id.put("Waterskin(3)", "1826");
  2293. _id.put("Waterskin(2)", "1827");
  2294. _id.put("Waterskin(2)", "1828");
  2295. _id.put("Waterskin(1)", "1829");
  2296. _id.put("Waterskin(1)", "1830");
  2297. _id.put("Waterskin(0)", "1831");
  2298. _id.put("Waterskin(0)", "1832");
  2299. _id.put("Desert shirt", "1833");
  2300. _id.put("Desert shirt", "1834");
  2301. _id.put("Desert robe", "1835");
  2302. _id.put("Desert robe", "1836");
  2303. _id.put("Desert boots", "1837");
  2304. _id.put("Desert boots", "1838");
  2305. _id.put("Metal key", "1839");
  2306. _id.put("Cell door key", "1840");
  2307. _id.put("Barrel", "1841");
  2308. _id.put("Ana in a barrel", "1842");
  2309. _id.put("Wrought iron key", "1843");
  2310. _id.put("Slave shirt", "1844");
  2311. _id.put("Slave robe", "1845");
  2312. _id.put("Slave boots", "1846");
  2313. _id.put("Scrumpled paper", "1847");
  2314. _id.put("Shantay disclaimer", "1848");
  2315. _id.put("Prototype dart", "1849");
  2316. _id.put("Technical plans", "1850");
  2317. _id.put("Tenti pineapple", "1851");
  2318. _id.put("Bedabin key", "1852");
  2319. _id.put("Prototype dart tip", "1853");
  2320. _id.put("Shantay pass", "1854");
  2321. _id.put("Rock", "1855");
  2322. _id.put("Guide book", "1856");
  2323. _id.put("Totem", "1857");
  2324. _id.put("Address label", "1858");
  2325. _id.put("Raw ugthanki meat", "1859");
  2326. _id.put("Raw ugthanki meat", "1860");
  2327. _id.put("Ugthanki meat", "1861");
  2328. _id.put("Ugthanki meat", "1862");
  2329. _id.put("Pitta dough", "1863");
  2330. _id.put("Pitta dough", "1864");
  2331. _id.put("Pitta bread", "1865");
  2332. _id.put("Pitta bread", "1866");
  2333. _id.put("Burnt pitta bread", "1867");
  2334. _id.put("Burnt pitta bread", "1868");
  2335. _id.put("Chopped tomato", "1869");
  2336. _id.put("Chopped tomato", "1870");
  2337. _id.put("Chopped onion", "1871");
  2338. _id.put("Chopped onion", "1872");
  2339. _id.put("Chopped ugthanki", "1873");
  2340. _id.put("Chopped ugthanki", "1874");
  2341. _id.put("Onion & tomato", "1875");
  2342. _id.put("Onion & tomato", "1876");
  2343. _id.put("Ugthanki & onion", "1877");
  2344. _id.put("Ugthanki & onion", "1878");
  2345. _id.put("Ugthanki & tomato", "1879");
  2346. _id.put("Ugthanki & tomato", "1880");
  2347. _id.put("Kebab mix", "1881");
  2348. _id.put("Kebab mix", "1882");
  2349. _id.put("Ugthanki kebab", "1883");
  2350. _id.put("Ugthanki kebab", "1884");
  2351. _id.put("Ugthanki kebab", "1885");
  2352. _id.put("Ugthanki kebab", "1886");
  2353. _id.put("Cake tin", "1887");
  2354. _id.put("Cake tin", "1888");
  2355. _id.put("Uncooked cake", "1889");
  2356. _id.put("Uncooked cake", "1890");
  2357. _id.put("Cake", "1891");
  2358. _id.put("Cake", "1892");
  2359. _id.put("2/3 cake", "1893");
  2360. _id.put("2/3 cake", "1894");
  2361. _id.put("Slice of cake", "1895");
  2362. _id.put("Slice of cake", "1896");
  2363. _id.put("Chocolate cake", "1897");
  2364. _id.put("Chocolate cake", "1898");
  2365. _id.put("2/3 chocolate cake", "1899");
  2366. _id.put("2/3 chocolate cake", "1900");
  2367. _id.put("Chocolate slice", "1901");
  2368. _id.put("Chocolate slice", "1902");
  2369. _id.put("Burnt cake", "1903");
  2370. _id.put("Burnt cake", "1904");
  2371. _id.put("Asgarnian ale", "1905");
  2372. _id.put("Asgarnian ale", "1906");
  2373. _id.put("Wizard's mind bomb", "1907");
  2374. _id.put("Wizard's mind bomb", "1908");
  2375. _id.put("Greenman's ale", "1909");
  2376. _id.put("Greenman's ale", "1910");
  2377. _id.put("Dragon bitter", "1911");
  2378. _id.put("Dragon bitter", "1912");
  2379. _id.put("Dwarven stout", "1913");
  2380. _id.put("Dwarven stout", "1914");
  2381. _id.put("Grog", "1915");
  2382. _id.put("Grog", "1916");
  2383. _id.put("Beer", "1917");
  2384. _id.put("Beer", "1918");
  2385. _id.put("Beer glass", "1919");
  2386. _id.put("Beer glass", "1920");
  2387. _id.put("Bowl of water", "1921");
  2388. _id.put("Bowl of water", "1922");
  2389. _id.put("Bowl", "1923");
  2390. _id.put("Bowl", "1924");
  2391. _id.put("Bucket", "1925");
  2392. _id.put("Bucket", "1926");
  2393. _id.put("Bucket of milk", "1927");
  2394. _id.put("Bucket of milk", "1928");
  2395. _id.put("Bucket of water", "1929");
  2396. _id.put("Bucket of water", "1930");
  2397. _id.put("Pot", "1931");
  2398. _id.put("Pot", "1932");
  2399. _id.put("Pot of flour", "1933");
  2400. _id.put("Pot of flour", "1934");
  2401. _id.put("Jug", "1935");
  2402. _id.put("Jug", "1936");
  2403. _id.put("Jug of water", "1937");
  2404. _id.put("Jug of water", "1938");
  2405. _id.put("Swamp tar", "1939");
  2406. _id.put("Raw swamp paste", "1940");
  2407. _id.put("Swamp paste", "1941");
  2408. _id.put("Potato", "1942");
  2409. _id.put("Potato", "1943");
  2410. _id.put("Egg", "1944");
  2411. _id.put("Egg", "1945");
  2412. _id.put("Flour", "1946");
  2413. _id.put("Grain", "1947");
  2414. _id.put("Grain", "1948");
  2415. _id.put("Chef's hat", "1949");
  2416. _id.put("Chef's hat", "1950");
  2417. _id.put("Redberries", "1951");
  2418. _id.put("Redberries", "1952");
  2419. _id.put("Pastry dough", "1953");
  2420. _id.put("Pastry dough", "1954");
  2421. _id.put("Cooking apple", "1955");
  2422. _id.put("Cooking apple", "1956");
  2423. _id.put("Onion", "1957");
  2424. _id.put("Onion", "1958");
  2425. _id.put("Pumpkin", "1959");
  2426. _id.put("Pumpkin", "1960");
  2427. _id.put("Easter egg", "1961");
  2428. _id.put("Easter egg", "1962");
  2429. _id.put("Banana", "1963");
  2430. _id.put("Banana", "1964");
  2431. _id.put("Cabbage", "1965");
  2432. _id.put("Cabbage", "1966");
  2433. _id.put("Cabbage", "1967");
  2434. _id.put("Cabbage", "1968");
  2435. _id.put("Spinach roll", "1969");
  2436. _id.put("Spinach roll", "1970");
  2437. _id.put("Kebab", "1971");
  2438. _id.put("Kebab", "1972");
  2439. _id.put("Chocolate bar", "1973");
  2440. _id.put("Chocolate bar", "1974");
  2441. _id.put("Chocolate dust", "1975");
  2442. _id.put("Chocolate dust", "1976");
  2443. _id.put("Chocolatey milk", "1977");
  2444. _id.put("Cup of tea", "1978");
  2445. _id.put("Cup of tea", "1979");
  2446. _id.put("Empty cup", "1980");
  2447. _id.put("Empty cup", "1981");
  2448. _id.put("Tomato", "1982");
  2449. _id.put("Tomato", "1983");
  2450. _id.put("Rotten apple", "1984");
  2451. _id.put("Cheese", "1985");
  2452. _id.put("Cheese", "1986");
  2453. _id.put("Grapes", "1987");
  2454. _id.put("Grapes", "1988");
  2455. _id.put("Half full wine jug", "1989");
  2456. _id.put("Half full wine jug", "1990");
  2457. _id.put("Jug of bad wine", "1991");
  2458. _id.put("Jug of bad wine", "1992");
  2459. _id.put("Jug of wine", "1993");
  2460. _id.put("Jug of wine", "1994");
  2461. _id.put("Unfermented wine", "1995");
  2462. _id.put("Unfermented wine", "1996");
  2463. _id.put("Incomplete stew", "1997");
  2464. _id.put("Incomplete stew", "1998");
  2465. _id.put("Incomplete stew", "1999");
  2466. _id.put("Incomplete stew", "2000");
  2467. _id.put("Uncooked stew", "2001");
  2468. _id.put("Uncooked stew", "2002");
  2469. _id.put("Stew", "2003");
  2470. _id.put("Stew", "2004");
  2471. _id.put("Burnt stew", "2005");
  2472. _id.put("Burnt stew", "2006");
  2473. _id.put("Spice", "2007");
  2474. _id.put("Spice", "2008");
  2475. _id.put("Uncooked curry", "2009");
  2476. _id.put("Uncooked curry", "2010");
  2477. _id.put("Curry", "2011");
  2478. _id.put("Curry", "2012");
  2479. _id.put("Burnt curry", "2013");
  2480. _id.put("Burnt curry", "2014");
  2481. _id.put("Vodka", "2015");
  2482. _id.put("Vodka", "2016");
  2483. _id.put("Whisky", "2017");
  2484. _id.put("Whisky", "2018");
  2485. _id.put("Gin", "2019");
  2486. _id.put("Gin", "2020");
  2487. _id.put("Brandy", "2021");
  2488. _id.put("Brandy", "2022");
  2489. _id.put("Cocktail guide", "2023");
  2490. _id.put("Cocktail guide", "2024");
  2491. _id.put("Cocktail shaker", "2025");
  2492. _id.put("Cocktail glass", "2026");
  2493. _id.put("Cocktail glass", "2027");
  2494. _id.put("Blurberry special", "2028");
  2495. _id.put("Blurberry special", "2029");
  2496. _id.put("Choc saturday", "2030");
  2497. _id.put("Choc saturday", "2031");
  2498. _id.put("Drunk dragon", "2032");
  2499. _id.put("Drunk dragon", "2033");
  2500. _id.put("Fruit blast", "2034");
  2501. _id.put("Fruit blast", "2035");
  2502. _id.put("Pineapple punch", "2036");
  2503. _id.put("Pineapple punch", "2037");
  2504. _id.put("Short green guy", "2038");
  2505. _id.put("Short green guy", "2039");
  2506. _id.put("Wizard blizzard", "2040");
  2507. _id.put("Wizard blizzard", "2041");
  2508. _id.put("Unfinished cocktail", "2042");
  2509. _id.put("Unfinished cocktail", "2043");
  2510. _id.put("Unfinished cocktail", "2044");
  2511. _id.put("Unfinished cocktail", "2045");
  2512. _id.put("Unfinished cocktail", "2046");
  2513. _id.put("Unfinished cocktail", "2047");
  2514. _id.put("Pineapple punch", "2048");
  2515. _id.put("Pineapple punch", "2049");
  2516. _id.put("Unfinished cocktail", "2050");
  2517. _id.put("Unfinished cocktail", "2051");
  2518. _id.put("Unfinished cocktail", "2052");
  2519. _id.put("Unfinished cocktail", "2053");
  2520. _id.put("Wizard blizzard", "2054");
  2521. _id.put("Wizard blizzard", "2055");
  2522. _id.put("Unfinished cocktail", "2056");
  2523. _id.put("Unfinished cocktail", "2057");
  2524. _id.put("Unfinished cocktail", "2058");
  2525. _id.put("Unfinished cocktail", "2059");
  2526. _id.put("Unfinished cocktail", "2060");
  2527. _id.put("Unfinished cocktail", "2061");
  2528. _id.put("Unfinished cocktail", "2062");
  2529. _id.put("Unfinished cocktail", "2063");
  2530. _id.put("Blurberry special", "2064");
  2531. _id.put("Blurberry special", "2065");
  2532. _id.put("Unfinished cocktail", "2066");
  2533. _id.put("Unfinished cocktail", "2067");
  2534. _id.put("Unfinished cocktail", "2068");
  2535. _id.put("Unfinished cocktail", "2069");
  2536. _id.put("Unfinished cocktail", "2070");
  2537. _id.put("Unfinished cocktail", "2071");
  2538. _id.put("Unfinished cocktail", "2072");
  2539. _id.put("Unfinished cocktail", "2073");
  2540. _id.put("Choc saturday", "2074");
  2541. _id.put("Choc saturday", "2075");
  2542. _id.put("Unfinished cocktail", "2076");
  2543. _id.put("Unfinished cocktail", "2077");
  2544. _id.put("Unfinished cocktail", "2078");
  2545. _id.put("Unfinished cocktail", "2079");
  2546. _id.put("Short green guy", "2080");
  2547. _id.put("Short green guy", "2081");
  2548. _id.put("Unfinished cocktail", "2082");
  2549. _id.put("Unfinished cocktail", "2083");
  2550. _id.put("Fruit blast", "2084");
  2551. _id.put("Fruit blast", "2085");
  2552. _id.put("Unfinished cocktail", "2086");
  2553. _id.put("Unfinished cocktail", "2087");
  2554. _id.put("Unfinished cocktail", "2088");
  2555. _id.put("Unfinished cocktail", "2089");
  2556. _id.put("Unfinished cocktail", "2090");
  2557. _id.put("Unfinished cocktail", "2091");
  2558. _id.put("Drunk dragon", "2092");
  2559. _id.put("Drunk dragon", "2093");
  2560. _id.put("Odd cocktail", "2094");
  2561. _id.put("Odd cocktail", "2095");
  2562. _id.put("Odd cocktail", "2096");
  2563. _id.put("Odd cocktail", "2097");
  2564. _id.put("Odd cocktail", "2098");
  2565. _id.put("Odd cocktail", "2099");
  2566. _id.put("Odd cocktail", "2100");
  2567. _id.put("Odd cocktail", "2101");
  2568. _id.put("Lemon", "2102");
  2569. _id.put("Lemon", "2103");
  2570. _id.put("Lemon chunks", "2104");
  2571. _id.put("Lemon chunks", "2105");
  2572. _id.put("Lemon slices", "2106");
  2573. _id.put("Lemon slices", "2107");
  2574. _id.put("Orange", "2108");
  2575. _id.put("Orange", "2109");
  2576. _id.put("Orange chunks", "2110");
  2577. _id.put("Orange chunks", "2111");
  2578. _id.put("Orange slices", "2112");
  2579. _id.put("Orange slices", "2113");
  2580. _id.put("Pineapple", "2114");
  2581. _id.put("Pineapple", "2115");
  2582. _id.put("Pineapple chunks", "2116");
  2583. _id.put("Pineapple chunks", "2117");
  2584. _id.put("Pineapple ring", "2118");
  2585. _id.put("Pineapple ring", "2119");
  2586. _id.put("Lime", "2120");
  2587. _id.put("Lime", "2121");
  2588. _id.put("Lime chunks", "2122");
  2589. _id.put("Lime chunks", "2123");
  2590. _id.put("Lime slices", "2124");
  2591. _id.put("Lime slices", "2125");
  2592. _id.put("Dwellberries", "2126");
  2593. _id.put("Dwellberries", "2127");
  2594. _id.put("Equa leaves", "2128");
  2595. _id.put("Equa leaves", "2129");
  2596. _id.put("Pot of cream", "2130");
  2597. _id.put("Pot of cream", "2131");
  2598. _id.put("Raw beef", "2132");
  2599. _id.put("Raw beef", "2133");
  2600. _id.put("Raw rat meat", "2134");
  2601. _id.put("Raw rat meat", "2135");
  2602. _id.put("Raw bear meat", "2136");
  2603. _id.put("Raw bear meat", "2137");
  2604. _id.put("Raw chicken", "2138");
  2605. _id.put("Raw chicken", "2139");
  2606. _id.put("Cooked chicken", "2140");
  2607. _id.put("Cooked chicken", "2141");
  2608. _id.put("Cooked meat", "2142");
  2609. _id.put("Cooked meat", "2143");
  2610. _id.put("Burnt chicken", "2144");
  2611. _id.put("Burnt chicken", "2145");
  2612. _id.put("Burnt meat", "2146");
  2613. _id.put("Burnt meat", "2147");
  2614. _id.put("Raw lava eel", "2148");
  2615. _id.put("Lava eel", "2149");
  2616. _id.put("Swamp toad", "2150");
  2617. _id.put("Swamp toad", "2151");
  2618. _id.put("Toad's legs", "2152");
  2619. _id.put("Toad's legs", "2153");
  2620. _id.put("Equa toad's legs", "2154");
  2621. _id.put("Equa toad's legs", "2155");
  2622. _id.put("Spicy toad's legs", "2156");
  2623. _id.put("Spicy toad's legs", "2157");
  2624. _id.put("Seasoned legs", "2158");
  2625. _id.put("Seasoned legs", "2159");
  2626. _id.put("Spicy worm", "2160");
  2627. _id.put("Spicy worm", "2161");
  2628. _id.put("King worm", "2162");
  2629. _id.put("King worm", "2163");
  2630. _id.put("Batta tin", "2164");
  2631. _id.put("Crunchy tray", "2165");
  2632. _id.put("Gnomebowl mould", "2166");
  2633. _id.put("Gianne's cook book", "2167");
  2634. _id.put("Gianne's cook book", "2168");
  2635. _id.put("Gnome spice", "2169");
  2636. _id.put("Gnome spice", "2170");
  2637. _id.put("Gianne dough", "2171");
  2638. _id.put("Gianne dough", "2172");
  2639. _id.put("Odd gnomebowl", "2173");
  2640. _id.put("Odd gnomebowl", "2174");
  2641. _id.put("Burnt gnomebowl", "2175");
  2642. _id.put("Burnt gnomebowl", "2176");
  2643. _id.put("Half baked bowl", "2177");
  2644. _id.put("Raw gnomebowl", "2178");
  2645. _id.put("Unfinished bowl", "2179");
  2646. _id.put("Unfinished bowl", "2180");
  2647. _id.put("Unfinished bowl", "2181");
  2648. _id.put("Unfinished bowl", "2182");
  2649. _id.put("Unfinished bowl", "2183");
  2650. _id.put("Unfinished bowl", "2184");
  2651. _id.put("Chocolate bomb", "2185");
  2652. _id.put("Chocolate bomb", "2186");
  2653. _id.put("Tangled toad's legs", "2187");
  2654. _id.put("Tangled toad's legs", "2188");
  2655. _id.put("Unfinished bowl", "2189");
  2656. _id.put("Unfinished bowl", "2190");
  2657. _id.put("Worm hole", "2191");
  2658. _id.put("Worm hole", "2192");
  2659. _id.put("Unfinished bowl", "2193");
  2660. _id.put("Unfinished bowl", "2194");
  2661. _id.put("Veg ball", "2195");
  2662. _id.put("Veg ball", "2196");
  2663. _id.put("Odd crunchies", "2197");
  2664. _id.put("Odd crunchies", "2198");
  2665. _id.put("Burnt crunchies", "2199");
  2666. _id.put("Burnt crunchies", "2200");
  2667. _id.put("Half baked crunchy", "2201");
  2668. _id.put("Raw crunchies", "2202");
  2669. _id.put("Unfinished crunchy", "2203");
  2670. _id.put("Unfinished crunchy", "2204");
  2671. _id.put("Worm crunchies", "2205");
  2672. _id.put("Worm crunchies", "2206");
  2673. _id.put("Unfinished crunchy", "2207");
  2674. _id.put("Unfinished crunchy", "2208");
  2675. _id.put("Chocchip crunchies", "2209");
  2676. _id.put("Chocchip crunchies", "2210");
  2677. _id.put("Unfinished crunchy", "2211");
  2678. _id.put("Unfinished crunchy", "2212");
  2679. _id.put("Spicy crunchies", "2213");
  2680. _id.put("Spicy crunchies", "2214");
  2681. _id.put("Unfinished crunchy", "2215");
  2682. _id.put("Unfinished crunchy", "2216");
  2683. _id.put("Toad crunchies", "2217");
  2684. _id.put("Toad crunchies", "2218");
  2685. _id.put("Worm batta", "2219");
  2686. _id.put("Worm batta", "2220");
  2687. _id.put("Toad batta", "2221");
  2688. _id.put("Toad batta", "2222");
  2689. _id.put("Cheese+tom batta", "2223");
  2690. _id.put("Cheese+tom batta", "2224");
  2691. _id.put("Fruit batta", "2225");
  2692. _id.put("Fruit batta", "2226");
  2693. _id.put("Vegetable batta", "2227");
  2694. _id.put("Vegetable batta", "2228");
  2695. _id.put("Chocolate bomb", "2229");
  2696. _id.put("Chocolate bomb", "2230");
  2697. _id.put("Tangled toad's legs", "2231");
  2698. _id.put("Tangled toad's legs", "2232");
  2699. _id.put("Worm hole", "2233");
  2700. _id.put("Worm hole", "2234");
  2701. _id.put("Veg ball", "2235");
  2702. _id.put("Veg ball", "2236");
  2703. _id.put("Worm crunchies", "2237");
  2704. _id.put("Worm crunchies", "2238");
  2705. _id.put("Chocchip crunchies", "2239");
  2706. _id.put("Chocchip crunchies", "2240");
  2707. _id.put("Spicy crunchies", "2241");
  2708. _id.put("Spicy crunchies", "2242");
  2709. _id.put("Toad crunchies", "2243");
  2710. _id.put("Toad crunchies", "2244");
  2711. _id.put("Odd batta", "2245");
  2712. _id.put("Odd batta", "2246");
  2713. _id.put("Burnt batta", "2247");
  2714. _id.put("Burnt batta", "2248");
  2715. _id.put("Half baked batta", "2249");
  2716. _id.put("Raw batta", "2250");
  2717. _id.put("Unfinished batta", "2251");
  2718. _id.put("Unfinished batta", "2252");
  2719. _id.put("Worm batta", "2253");
  2720. _id.put("Worm batta", "2254");
  2721. _id.put("Toad batta", "2255");
  2722. _id.put("Toad batta", "2256");
  2723. _id.put("Unfinished batta", "2257");
  2724. _id.put("Unfinished batta", "2258");
  2725. _id.put("Cheese+tom batta", "2259");
  2726. _id.put("Cheese+tom batta", "2260");
  2727. _id.put("Unfinished batta", "2261");
  2728. _id.put("Unfinished batta", "2262");
  2729. _id.put("Unfinished batta", "2263");
  2730. _id.put("Unfinished batta", "2264");
  2731. _id.put("Unfinished batta", "2265");
  2732. _id.put("Unfinished batta", "2266");
  2733. _id.put("Unfinished batta", "2267");
  2734. _id.put("Unfinished batta", "2268");
  2735. _id.put("Unfinished batta", "2269");
  2736. _id.put("Unfinished batta", "2270");
  2737. _id.put("Unfinished batta", "2271");
  2738. _id.put("Unfinished batta", "2272");
  2739. _id.put("Unfinished batta", "2273");
  2740. _id.put("Unfinished batta", "2274");
  2741. _id.put("Unfinished batta", "2275");
  2742. _id.put("Unfinished batta", "2276");
  2743. _id.put("Fruit batta", "2277");
  2744. _id.put("Fruit batta", "2278");
  2745. _id.put("Unfinished batta", "2279");
  2746. _id.put("Unfinished batta", "2280");
  2747. _id.put("Vegetable batta", "2281");
  2748. _id.put("Vegetable batta", "2282");
  2749. _id.put("Pizza base", "2283");
  2750. _id.put("Pizza base", "2284");
  2751. _id.put("Incomplete pizza", "2285");
  2752. _id.put("Incomplete pizza", "2286");
  2753. _id.put("Uncooked pizza", "2287");
  2754. _id.put("Uncooked pizza", "2288");
  2755. _id.put("Plain pizza", "2289");
  2756. _id.put("Plain pizza", "2290");
  2757. _id.put("1/2 plain pizza", "2291");
  2758. _id.put("1/2 plain pizza", "2292");
  2759. _id.put("Meat pizza", "2293");
  2760. _id.put("Meat pizza", "2294");
  2761. _id.put("1/2 meat pizza", "2295");
  2762. _id.put("1/2 meat pizza", "2296");
  2763. _id.put("Anchovy pizza", "2297");
  2764. _id.put("Anchovy pizza", "2298");
  2765. _id.put("1/2 anchovy pizza", "2299");
  2766. _id.put("1/2 anchovy pizza", "2300");
  2767. _id.put("Pineapple pizza", "2301");
  2768. _id.put("Pineapple pizza", "2302");
  2769. _id.put("1/2pineapple pizza", "2303");
  2770. _id.put("1/2pineapple pizza", "2304");
  2771. _id.put("Burnt pizza", "2305");
  2772. _id.put("Burnt pizza", "2306");
  2773. _id.put("Bread dough", "2307");
  2774. _id.put("Bread dough", "2308");
  2775. _id.put("Bread", "2309");
  2776. _id.put("Bread", "2310");
  2777. _id.put("Burnt bread", "2311");
  2778. _id.put("Burnt bread", "2312");
  2779. _id.put("Pie dish", "2313");
  2780. _id.put("Pie dish", "2314");
  2781. _id.put("Pie shell", "2315");
  2782. _id.put("Pie shell", "2316");
  2783. _id.put("Uncooked apple pie", "2317");
  2784. _id.put("Uncooked apple pie", "2318");
  2785. _id.put("Uncooked meat pie", "2319");
  2786. _id.put("Uncooked meat pie", "2320");
  2787. _id.put("Uncooked berry pie", "2321");
  2788. _id.put("Uncooked berry pie", "2322");
  2789. _id.put("Apple pie", "2323");
  2790. _id.put("Apple pie", "2324");
  2791. _id.put("Redberry pie", "2325");
  2792. _id.put("Redberry pie", "2326");
  2793. _id.put("Meat pie", "2327");
  2794. _id.put("Meat pie", "2328");
  2795. _id.put("Burnt pie", "2329");
  2796. _id.put("Burnt pie", "2330");
  2797. _id.put("Half a meat pie", "2331");
  2798. _id.put("Half a meat pie", "2332");
  2799. _id.put("Half a redberry pie", "2333");
  2800. _id.put("Half a redberry pie", "2334");
  2801. _id.put("Half an apple pie", "2335");
  2802. _id.put("Half an apple pie", "2336");
  2803. _id.put("Raw oomlie", "2337");
  2804. _id.put("Raw oomlie", "2338");
  2805. _id.put("Palm leaf", "2339");
  2806. _id.put("Palm leaf", "2340");
  2807. _id.put("Wrapped oomlie", "2341");
  2808. _id.put("Wrapped oomlie", "2342");
  2809. _id.put("Cooked oomlie wrap", "2343");
  2810. _id.put("Cooked oomlie wrap", "2344");
  2811. _id.put("Burnt oomlie wrap", "2345");
  2812. _id.put("Burnt oomlie wrap", "2346");
  2813. _id.put("Hammer", "2347");
  2814. _id.put("Hammer", "2348");
  2815. _id.put("Bronze bar", "2349");
  2816. _id.put("Bronze bar", "2350");
  2817. _id.put("Iron bar", "2351");
  2818. _id.put("Iron bar", "2352");
  2819. _id.put("Steel bar", "2353");
  2820. _id.put("Steel bar", "2354");
  2821. _id.put("Silver bar", "2355");
  2822. _id.put("Silver bar", "2356");
  2823. _id.put("Gold bar", "2357");
  2824. _id.put("Gold bar", "2358");
  2825. _id.put("Mithril bar", "2359");
  2826. _id.put("Mithril bar", "2360");
  2827. _id.put("Adamantite bar", "2361");
  2828. _id.put("Adamantite bar", "2362");
  2829. _id.put("Runite bar", "2363");
  2830. _id.put("Runite bar", "2364");
  2831. _id.put("'perfect' gold bar", "2365");
  2832. _id.put("Shield left half", "2366");
  2833. _id.put("Shield left half", "2367");
  2834. _id.put("Shield right half", "2368");
  2835. _id.put("Shield right half", "2369");
  2836. _id.put("Steel studs", "2370");
  2837. _id.put("Steel studs", "2371");
  2838. _id.put("Ogre relic", "2372");
  2839. _id.put("Relic part 1", "2373");
  2840. _id.put("Relic part 2", "2374");
  2841. _id.put("Relic part 3", "2375");
  2842. _id.put("Skavid map", "2376");
  2843. _id.put("Ogre tooth", "2377");
  2844. _id.put("Toban's key", "2378");
  2845. _id.put("Rock cake", "2379");
  2846. _id.put("Crystal", "2380");
  2847. _id.put("Crystal", "2381");
  2848. _id.put("Crystal", "2382");
  2849. _id.put("Crystal", "2383");
  2850. _id.put("Finger nails", "2384");
  2851. _id.put("Old robe", "2385");
  2852. _id.put("Unusual armour", "2386");
  2853. _id.put("Damaged dagger", "2387");
  2854. _id.put("Tattered eye patch", "2388");
  2855. _id.put("Vial", "2389");
  2856. _id.put("Vial", "2390");
  2857. _id.put("Ground bat bones", "2391");
  2858. _id.put("Ground bat bones", "2392");
  2859. _id.put("Gold", "2393");
  2860. _id.put("Potion", "2394");
  2861. _id.put("Magic ogre potion", "2395");
  2862. _id.put("Spell scroll", "2396");
  2863. _id.put("Shaman robe", "2397");
  2864. _id.put("Nightshade", "2398");
  2865. _id.put("Key", "2399");
  2866. _id.put("Key", "2400");
  2867. _id.put("Key", "2401");
  2868. _id.put("Silverlight", "2402");
  2869. _id.put("Hazeel scroll", "2403");
  2870. _id.put("Chest key", "2404");
  2871. _id.put("Carnillean armour", "2405");
  2872. _id.put("Hazeel's mark", "2406");
  2873. _id.put("Ball", "2407");
  2874. _id.put("Diary", "2408");
  2875. _id.put("Door key", "2409");
  2876. _id.put("Magnet", "2410");
  2877. _id.put("Key", "2411");
  2878. _id.put("Saradomin cape", "2412");
  2879. _id.put("Guthix cape", "2413");
  2880. _id.put("Zamorak cape", "2414");
  2881. _id.put("Saradomin staff", "2415");
  2882. _id.put("Guthix staff", "2416");
  2883. _id.put("Zamorak staff", "2417");
  2884. _id.put("Bronze key", "2418");
  2885. _id.put("Wig", "2419");
  2886. _id.put("Brass monkey", "2420");
  2887. _id.put("Wig", "2421");
  2888. _id.put("Blue partyhat", "2422");
  2889. _id.put("Key print", "2423");
  2890. _id.put("Paste", "2424");
  2891. _id.put("Orbital knife", "2425");
  2892. _id.put("Burnt oomlie", "2426");
  2893. _id.put("Burnt oomlie", "2427");
  2894. _id.put("Attack potion(4)", "2428");
  2895. _id.put("Attack potion(4)", "2429");
  2896. _id.put("Restore potion(4)", "2430");
  2897. _id.put("Restore potion(4)", "2431");
  2898. _id.put("Defence potion(4)", "2432");
  2899. _id.put("Defence potion(4)", "2433");
  2900. _id.put("Prayer potion(4)", "2434");
  2901. _id.put("Prayer potion(4)", "2435");
  2902. _id.put("Super attack(4)", "2436");
  2903. _id.put("Super attack(4)", "2437");
  2904. _id.put("Fishing potion(4)", "2438");
  2905. _id.put("Fishing potion(4)", "2439");
  2906. _id.put("Super strength(4)", "2440");
  2907. _id.put("Super strength(4)", "2441");
  2908. _id.put("Super defence(4)", "2442");
  2909. _id.put("Super defence(4)", "2443");
  2910. _id.put("Ranging potion(4)", "2444");
  2911. _id.put("Ranging potion(4)", "2445");
  2912. _id.put("Antipoison(4)", "2446");
  2913. _id.put("Antipoison(4)", "2447");
  2914. _id.put("Superantipoison(4)", "2448");
  2915. _id.put("Superantipoison(4)", "2449");
  2916. _id.put("Zamorak brew(4)", "2450");
  2917. _id.put("Zamorak brew(4)", "2451");
  2918. _id.put("Antifire potion(4)", "2452");
  2919. _id.put("Antifire potion(4)", "2453");
  2920. _id.put("Antifire potion(3)", "2454");
  2921. _id.put("Antifire potion(3)", "2455");
  2922. _id.put("Antifire potion(2)", "2456");
  2923. _id.put("Antifire potion(2)", "2457");
  2924. _id.put("Antifire potion(1)", "2458");
  2925. _id.put("Antifire potion(1)", "2459");
  2926. _id.put("Flowers", "2460");
  2927. _id.put("Flowers", "2461");
  2928. _id.put("Flowers", "2462");
  2929. _id.put("Flowers", "2463");
  2930. _id.put("Flowers", "2464");
  2931. _id.put("Flowers", "2465");
  2932. _id.put("Flowers", "2466");
  2933. _id.put("Flowers", "2467");
  2934. _id.put("Flowers", "2468");
  2935. _id.put("Flowers", "2469");
  2936. _id.put("Flowers", "2470");
  2937. _id.put("Flowers", "2471");
  2938. _id.put("Flowers", "2472");
  2939. _id.put("Flowers", "2473");
  2940. _id.put("Flowers", "2474");
  2941. _id.put("Flowers", "2475");
  2942. _id.put("Flowers", "2476");
  2943. _id.put("Flowers", "2477");
  2944. _id.put("Fish food", "2478");
  2945. _id.put("Poison", "2479");
  2946. _id.put("Firestarter", "2480");
  2947. _id.put("Lantadyme", "2481");
  2948. _id.put("Lantadyme", "2482");
  2949. _id.put("Unfinished potion", "2483");
  2950. _id.put("Unfinished potion", "2484");
  2951. _id.put("Herb", "2485");
  2952. _id.put("Herb", "2486");
  2953. _id.put("Blue d'hide vamb", "2487");
  2954. _id.put("Blue d'hide vamb", "2488");
  2955. _id.put("Red d'hide vamb", "2489");
  2956. _id.put("Red d'hide vamb", "2490");
  2957. _id.put("Black d'hide vamb", "2491");
  2958. _id.put("Black d'hide vamb", "2492");
  2959. _id.put("Blue d'hide chaps", "2493");
  2960. _id.put("Blue d'hide chaps", "2494");
  2961. _id.put("Red d'hide chaps", "2495");
  2962. _id.put("Red d'hide chaps", "2496");
  2963. _id.put("Black d'hide chaps", "2497");
  2964. _id.put("Black d'hide chaps", "2498");
  2965. _id.put("Blue d'hide body", "2499");
  2966. _id.put("Blue d'hide body", "2500");
  2967. _id.put("Red d'hide body", "2501");
  2968. _id.put("Red d'hide body", "2502");
  2969. _id.put("Black d'hide body", "2503");
  2970. _id.put("Black d'hide body", "2504");
  2971. _id.put("Blue d-leather", "2505");
  2972. _id.put("Blue d-leather", "2506");
  2973. _id.put("Red dragon leather", "2507");
  2974. _id.put("Red dragon leather", "2508");
  2975. _id.put("Black d-leather", "2509");
  2976. _id.put("Black d-leather", "2510");
  2977. _id.put("Logs", "2511");
  2978. _id.put("Box of delights", "2512");
  2979. _id.put("Waste disposal", "2513");
  2980. _id.put("Raw shrimps", "2514");
  2981. _id.put("Raw shrimps", "2515");
  2982. _id.put("Pot of flour", "2516");
  2983. _id.put("Pot of flour", "2517");
  2984. _id.put("Rotten tomato", "2518");
  2985. _id.put("Rotten tomato", "2519");
  2986. _id.put("Toy horsey", "2520");
  2987. _id.put("Toy horsey", "2521");
  2988. _id.put("Toy horsey", "2522");
  2989. _id.put("Toy horsey", "2523");
  2990. _id.put("Toy horsey", "2524");
  2991. _id.put("Toy horsey", "2525");
  2992. _id.put("Toy horsey", "2526");
  2993. _id.put("Toy horsey", "2527");
  2994. _id.put("Lamp", "2528");
  2995. _id.put("Orb of light", "2529");
  2996. _id.put("Bones", "2530");
  2997. _id.put("Bones", "2531");
  2998. _id.put("Iron fire arrows", "2532");
  2999. _id.put("Iron fire arrows", "2533");
  3000. _id.put("Steel fire arrows", "2534");
  3001. _id.put("Steel fire arrows", "2535");
  3002. _id.put("Mithril fire arrows", "2536");
  3003. _id.put("Mithril fire arrows", "2537");
  3004. _id.put("Addy fire arrows", "2538");
  3005. _id.put("Addy fire arrows", "2539");
  3006. _id.put("Rune fire arrows", "2540");
  3007. _id.put("Rune fire arrows", "2541");
  3008. _id.put("Ring of recoil", "2550");
  3009. _id.put("Ring of recoil", "2551");
  3010. _id.put("Ring of dueling(8)", "2552");
  3011. _id.put("Ring of dueling(8)", "2553");
  3012. _id.put("Ring of dueling(7)", "2554");
  3013. _id.put("Ring of dueling(7)", "2555");
  3014. _id.put("Ring of dueling(6)", "2556");
  3015. _id.put("Ring of dueling(6)", "2557");
  3016. _id.put("Ring of dueling(5)", "2558");
  3017. _id.put("Ring of dueling(5)", "2559");
  3018. _id.put("Ring of dueling(4)", "2560");
  3019. _id.put("Ring of dueling(4)", "2561");
  3020. _id.put("Ring of dueling(3)", "2562");
  3021. _id.put("Ring of dueling(3)", "2563");
  3022. _id.put("Ring of dueling(2)", "2564");
  3023. _id.put("Ring of dueling(2)", "2565");
  3024. _id.put("Ring of dueling(1)", "2566");
  3025. _id.put("Ring of dueling(1)", "2567");
  3026. _id.put("Ring of forging", "2568");
  3027. _id.put("Ring of forging", "2569");
  3028. _id.put("Ring of life", "2570");
  3029. _id.put("Ring of life", "2571");
  3030. _id.put("Ring of wealth", "2572");
  3031. _id.put("Ring of wealth", "2573");
  3032. _id.put("Sextant", "2574");
  3033. _id.put("Watch", "2575");
  3034. _id.put("Chart", "2576");
  3035. _id.put("Ranger boots", "2577");
  3036. _id.put("Ranger boots", "2578");
  3037. _id.put("Wizard boots", "2579");
  3038. _id.put("Wizard boots", "2580");
  3039. _id.put("Robin hood hat", "2581");
  3040. _id.put("Robin hood hat", "2582");
  3041. _id.put("Black platebody (t)", "2583");
  3042. _id.put("Black platebody (t)", "2584");
  3043. _id.put("Black platelegs (t)", "2585");
  3044. _id.put("Black platelegs (t)", "2586");
  3045. _id.put("Black full helm (t)", "2587");
  3046. _id.put("Black full helm (t)", "2588");
  3047. _id.put("Black kiteshield (t)", "2589");
  3048. _id.put("Black kiteshield (t)", "2590");
  3049. _id.put("Black platebody (g)", "2591");
  3050. _id.put("Black platebody (g)", "2592");
  3051. _id.put("Black platelegs (g)", "2593");
  3052. _id.put("Black platelegs (g)", "2594");
  3053. _id.put("Black full helm (g)", "2595");
  3054. _id.put("Black full helm (g)", "2596");
  3055. _id.put("Black kiteshield (g)", "2597");
  3056. _id.put("Black kiteshield (g)", "2598");
  3057. _id.put("Adam platebody (t)", "2599");
  3058. _id.put("Adam platebody (t)", "2600");
  3059. _id.put("Adam platelegs (t)", "2601");
  3060. _id.put("Adam platelegs (t)", "2602");
  3061. _id.put("Adam kiteshield (t)", "2603");
  3062. _id.put("Adam kiteshield (t)", "2604");
  3063. _id.put("Adam full helm (t)", "2605");
  3064. _id.put("Adam full helm (t)", "2606");
  3065. _id.put("Adam platebody (g)", "2607");
  3066. _id.put("Adam platebody (g)", "2608");
  3067. _id.put("Adam platelegs (g)", "2609");
  3068. _id.put("Adam platelegs (g)", "2610");
  3069. _id.put("Adam kiteshield (g)", "2611");
  3070. _id.put("Adam kiteshield (g)", "2612");
  3071. _id.put("Adam full helm (g)", "2613");
  3072. _id.put("Adam full helm (g)", "2614");
  3073. _id.put("Rune platebody (g)", "2615");
  3074. _id.put("Rune platebody (g)", "2616");
  3075. _id.put("Rune platelegs (g)", "2617");
  3076. _id.put("Rune platelegs (g)", "2618");
  3077. _id.put("Rune full helm (g)", "2619");
  3078. _id.put("Rune full helm (g)", "2620");
  3079. _id.put("Rune kiteshield (g)", "2621");
  3080. _id.put("Rune kiteshield (g)", "2622");
  3081. _id.put("Rune platebody (t)", "2623");
  3082. _id.put("Rune platebody (t)", "2624");
  3083. _id.put("Rune platelegs (t)", "2625");
  3084. _id.put("Rune platelegs (t)", "2626");
  3085. _id.put("Rune full helm (t)", "2627");
  3086. _id.put("Rune full helm (t)", "2628");
  3087. _id.put("Rune kiteshield (t)", "2629");
  3088. _id.put("Rune kiteshield (t)", "2630");
  3089. _id.put("Highwayman mask", "2631");
  3090. _id.put("Highwayman mask", "2632");
  3091. _id.put("Blue beret", "2633");
  3092. _id.put("Blue beret", "2634");
  3093. _id.put("Black beret", "2635");
  3094. _id.put("Black beret", "2636");
  3095. _id.put("White beret", "2637");
  3096. _id.put("White beret", "2638");
  3097. _id.put("Tan cavalier", "2639");
  3098. _id.put("Tan cavalier", "2640");
  3099. _id.put("Dark cavalier", "2641");
  3100. _id.put("Dark cavalier", "2642");
  3101. _id.put("Black cavalier", "2643");
  3102. _id.put("Black cavalier", "2644");
  3103. _id.put("Red headband", "2645");
  3104. _id.put("Red headband", "2646");
  3105. _id.put("Black headband", "2647");
  3106. _id.put("Black headband", "2648");
  3107. _id.put("Brown headband", "2649");
  3108. _id.put("Brown headband", "2650");
  3109. _id.put("Pirate's hat", "2651");
  3110. _id.put("Pirate's hat", "2652");
  3111. _id.put("Zamorak platebody", "2653");
  3112. _id.put("Zamorak platebody", "2654");
  3113. _id.put("Zamorak platelegs", "2655");
  3114. _id.put("Zamorak platelegs", "2656");
  3115. _id.put("Zamorak full helm", "2657");
  3116. _id.put("Zamorak full helm", "2658");
  3117. _id.put("Zamorak kiteshield", "2659");
  3118. _id.put("Zamorak kiteshield", "2660");
  3119. _id.put("Saradomin plate", "2661");
  3120. _id.put("Saradomin plate", "2662");
  3121. _id.put("Saradomin legs", "2663");
  3122. _id.put("Saradomin legs", "2664");
  3123. _id.put("Saradomin full", "2665");
  3124. _id.put("Saradomin full", "2666");
  3125. _id.put("Saradomin kite", "2667");
  3126. _id.put("Saradomin kite", "2668");
  3127. _id.put("Guthix platebody", "2669");
  3128. _id.put("Guthix platebody", "2670");
  3129. _id.put("Guthix platelegs", "2671");
  3130. _id.put("Guthix platelegs", "2672");
  3131. _id.put("Guthix full helm", "2673");
  3132. _id.put("Guthix full helm", "2674");
  3133. _id.put("Guthix kiteshield", "2675");
  3134. _id.put("Guthix kiteshield", "2676");
  3135. _id.put("Clue scroll", "2677");
  3136. _id.put("Clue scroll", "2678");
  3137. _id.put("Clue scroll", "2679");
  3138. _id.put("Clue scroll", "2680");
  3139. _id.put("Clue scroll", "2681");
  3140. _id.put("Clue scroll", "2682");
  3141. _id.put("Clue scroll", "2683");
  3142. _id.put("Clue scroll", "2684");
  3143. _id.put("Clue scroll", "2685");
  3144. _id.put("Clue scroll", "2686");
  3145. _id.put("Clue scroll", "2687");
  3146. _id.put("Clue scroll", "2688");
  3147. _id.put("Clue scroll", "2689");
  3148. _id.put("Clue scroll", "2690");
  3149. _id.put("Clue scroll", "2691");
  3150. _id.put("Clue scroll", "2692");
  3151. _id.put("Clue scroll", "2693");
  3152. _id.put("Clue scroll", "2694");
  3153. _id.put("Clue scroll", "2695");
  3154. _id.put("Clue scroll", "2696");
  3155. _id.put("Clue scroll", "2697");
  3156. _id.put("Clue scroll", "2698");
  3157. _id.put("Clue scroll", "2699");
  3158. _id.put("Clue scroll", "2700");
  3159. _id.put("Clue scroll", "2701");
  3160. _id.put("Clue scroll", "2702");
  3161. _id.put("Clue scroll", "2703");
  3162. _id.put("Clue scroll", "2704");
  3163. _id.put("Clue scroll", "2705");
  3164. _id.put("Clue scroll", "2706");
  3165. _id.put("Clue scroll", "2707");
  3166. _id.put("Clue scroll", "2708");
  3167. _id.put("Clue scroll", "2709");
  3168. _id.put("Clue scroll", "2710");
  3169. _id.put("Clue scroll", "2711");
  3170. _id.put("Clue scroll", "2712");
  3171. _id.put("Clue scroll", "2713");
  3172. _id.put("Casket", "2714");
  3173. _id.put("Casket", "2715");
  3174. _id.put("Clue scroll", "2716");
  3175. _id.put("Casket", "2717");
  3176. _id.put("Casket", "2718");
  3177. _id.put("Clue scroll", "2719");
  3178. _id.put("Casket", "2720");
  3179. _id.put("Casket", "2721");
  3180. _id.put("Clue scroll", "2722");
  3181. _id.put("Clue scroll", "2723");
  3182. _id.put("Casket", "2724");
  3183. _id.put("Clue scroll", "2725");
  3184. _id.put("Casket", "2726");
  3185. _id.put("Clue scroll", "2727");
  3186. _id.put("Casket", "2728");
  3187. _id.put("Clue scroll", "2729");
  3188. _id.put("Casket", "2730");
  3189. _id.put("Clue scroll", "2731");
  3190. _id.put("Casket", "2732");
  3191. _id.put("Clue scroll", "2733");
  3192. _id.put("Casket", "2734");
  3193. _id.put("Clue scroll", "2735");
  3194. _id.put("Casket", "2736");
  3195. _id.put("Clue scroll", "2737");
  3196. _id.put("Casket", "2738");
  3197. _id.put("Clue scroll", "2739");
  3198. _id.put("Casket", "2740");
  3199. _id.put("Clue scroll", "2741");
  3200. _id.put("Casket", "2742");
  3201. _id.put("Clue scroll", "2743");
  3202. _id.put("Casket", "2744");
  3203. _id.put("Clue scroll", "2745");
  3204. _id.put("Casket", "2746");
  3205. _id.put("Clue scroll", "2747");
  3206. _id.put("Casket", "2748");
  3207. _id.put("Sliding piece", "2749");
  3208. _id.put("Sliding piece", "2750");
  3209. _id.put("Sliding piece", "2751");
  3210. _id.put("Sliding piece", "2752");
  3211. _id.put("Sliding piece", "2753");
  3212. _id.put("Sliding piece", "2754");
  3213. _id.put("Sliding piece", "2755");
  3214. _id.put("Sliding piece", "2756");
  3215. _id.put("Sliding piece", "2757");
  3216. _id.put("Sliding piece", "2758");
  3217. _id.put("Sliding piece", "2759");
  3218. _id.put("Sliding piece", "2760");
  3219. _id.put("Sliding piece", "2761");
  3220. _id.put("Sliding piece", "2762");
  3221. _id.put("Sliding piece", "2763");
  3222. _id.put("Sliding piece", "2764");
  3223. _id.put("Sliding piece", "2765");
  3224. _id.put("Sliding piece", "2766");
  3225. _id.put("Sliding piece", "2767");
  3226. _id.put("Sliding piece", "2768");
  3227. _id.put("Sliding piece", "2769");
  3228. _id.put("Sliding piece", "2770");
  3229. _id.put("Sliding piece", "2771");
  3230. _id.put("Sliding piece", "2772");
  3231. _id.put("Clue scroll", "2773");
  3232. _id.put("Clue scroll", "2774");
  3233. _id.put("Casket", "2775");
  3234. _id.put("Clue scroll", "2776");
  3235. _id.put("Casket", "2777");
  3236. _id.put("Clue scroll", "2778");
  3237. _id.put("Casket", "2779");
  3238. _id.put("Clue scroll", "2780");
  3239. _id.put("Casket", "2781");
  3240. _id.put("Clue scroll", "2782");
  3241. _id.put("Clue scroll", "2783");
  3242. _id.put("Casket", "2784");
  3243. _id.put("Clue scroll", "2785");
  3244. _id.put("Clue scroll", "2786");
  3245. _id.put("Casket", "2787");
  3246. _id.put("Clue scroll", "2788");
  3247. _id.put("Casket", "2789");
  3248. _id.put("Clue scroll", "2790");
  3249. _id.put("Casket", "2791");
  3250. _id.put("Clue scroll", "2792");
  3251. _id.put("Clue scroll", "2793");
  3252. _id.put("Clue scroll", "2794");
  3253. _id.put("Puzzle box", "2795");
  3254. _id.put("Clue scroll", "2796");
  3255. _id.put("Clue scroll", "2797");
  3256. _id.put("Puzzle box", "2798");
  3257. _id.put("Clue scroll", "2799");
  3258. _id.put("Puzzle box", "2800");
  3259. _id.put("Clue scroll", "2801");
  3260. _id.put("Casket", "2802");
  3261. _id.put("Clue scroll", "2803");
  3262. _id.put("Casket", "2804");
  3263. _id.put("Clue scroll", "2805");
  3264. _id.put("Casket", "2806");
  3265. _id.put("Clue scroll", "2807");
  3266. _id.put("Casket", "2808");
  3267. _id.put("Clue scroll", "2809");
  3268. _id.put("Casket", "2810");
  3269. _id.put("Clue scroll", "2811");
  3270. _id.put("Casket", "2812");
  3271. _id.put("Clue scroll", "2813");
  3272. _id.put("Casket", "2814");
  3273. _id.put("Clue scroll", "2815");
  3274. _id.put("Casket", "2816");
  3275. _id.put("Clue scroll", "2817");
  3276. _id.put("Casket", "2818");
  3277. _id.put("Clue scroll", "2819");
  3278. _id.put("Casket", "2820");
  3279. _id.put("Clue scroll", "2821");
  3280. _id.put("Casket", "2822");
  3281. _id.put("Clue scroll", "2823");
  3282. _id.put("Casket", "2824");
  3283. _id.put("Clue scroll", "2825");
  3284. _id.put("Casket", "2826");
  3285. _id.put("Clue scroll", "2827");
  3286. _id.put("Casket", "2828");
  3287. _id.put("Clue scroll", "2829");
  3288. _id.put("Casket", "2830");
  3289. _id.put("Clue scroll", "2831");
  3290. _id.put("Key", "2832");
  3291. _id.put("Clue scroll", "2833");
  3292. _id.put("Key", "2834");
  3293. _id.put("Clue scroll", "2835");
  3294. _id.put("Key", "2836");
  3295. _id.put("Clue scroll", "2837");
  3296. _id.put("Key", "2838");
  3297. _id.put("Clue scroll", "2839");
  3298. _id.put("Key", "2840");
  3299. _id.put("Clue scroll", "2841");
  3300. _id.put("Challenge scroll", "2842");
  3301. _id.put("Clue scroll", "2843");
  3302. _id.put("Challenge scroll", "2844");
  3303. _id.put("Clue scroll", "2845");
  3304. _id.put("Challenge scroll", "2846");
  3305. _id.put("Clue scroll", "2847");
  3306. _id.put("Clue scroll", "2848");
  3307. _id.put("Clue scroll", "2849");
  3308. _id.put("Challenge scroll", "2850");
  3309. _id.put("Clue scroll", "2851");
  3310. _id.put("Challenge scroll", "2852");
  3311. _id.put("Clue scroll", "2853");
  3312. _id.put("Challenge scroll", "2854");
  3313. _id.put("Clue scroll", "2855");
  3314. _id.put("Clue scroll", "2856");
  3315. _id.put("Clue scroll", "2857");
  3316. _id.put("Clue scroll", "2858");
  3317. _id.put("Wolf bones", "2859");
  3318. _id.put("Wolf bones", "2860");
  3319. _id.put("Wolfbone arrowtips", "2861");
  3320. _id.put("Achey tree logs", "2862");
  3321. _id.put("Achey tree logs", "2863");
  3322. _id.put("Ogre arrow shaft", "2864");
  3323. _id.put("Flighted ogre arrow", "2865");
  3324. _id.put("Ogre arrow", "2866");
  3325. _id.put("Ogre bellows", "2871");
  3326. _id.put("Ogre bellows (3)", "2872");
  3327. _id.put("Ogre bellows (2)", "2873");
  3328. _id.put("Ogre bellows (1)", "2874");
  3329. _id.put("Bloated toad", "2875");
  3330. _id.put("Raw chompy", "2876");
  3331. _id.put("Raw chompy", "2877");
  3332. _id.put("Cooked chompy", "2878");
  3333. _id.put("Cooked chompy", "2879");
  3334. _id.put("Ruined chompy", "2880");
  3335. _id.put("Ruined chompy", "2881");
  3336. _id.put("Seasoned chompy", "2882");
  3337. _id.put("Ogre bow", "2883");
  3338. _id.put("Whoopsie", "2885");
  3339. _id.put("Battered book", "2886");
  3340. _id.put("Battered key", "2887");
  3341. _id.put("A stone bowl", "2888");
  3342. _id.put("A stone bowl", "2889");
  3343. _id.put("Elemental shield", "2890");
  3344. _id.put("Elemental shield", "2891");
  3345. _id.put("Elemental ore", "2892");
  3346. _id.put("Elemental metal", "2893");
  3347. _id.put("Boots", "2894");
  3348. _id.put("Boots", "2895");
  3349. _id.put("Robe top", "2896");
  3350. _id.put("Robe top", "2897");
  3351. _id.put("Robe bottoms", "2898");
  3352. _id.put("Robe bottoms", "2899");
  3353. _id.put("Hat", "2900");
  3354. _id.put("Hat", "2901");
  3355. _id.put("Gloves", "2902");
  3356. _id.put("Gloves", "2903");
  3357. _id.put("Boots", "2904");
  3358. _id.put("Boots", "2905");
  3359. _id.put("Robe top", "2906");
  3360. _id.put("Robe top", "2907");
  3361. _id.put("Robe bottoms", "2908");
  3362. _id.put("Robe bottoms", "2909");
  3363. _id.put("Hat", "2910");
  3364. _id.put("Hat", "2911");
  3365. _id.put("Gloves", "2912");
  3366. _id.put("Gloves", "2913");
  3367. _id.put("Boots", "2914");
  3368. _id.put("Boots", "2915");
  3369. _id.put("Robe top", "2916");
  3370. _id.put("Robe top", "2917");
  3371. _id.put("Robe bottoms", "2918");
  3372. _id.put("Robe bottoms", "2919");
  3373. _id.put("Hat", "2920");
  3374. _id.put("Hat", "2921");
  3375. _id.put("Gloves", "2922");
  3376. _id.put("Gloves", "2923");
  3377. _id.put("Boots", "2924");
  3378. _id.put("Boots", "2925");
  3379. _id.put("Robe top", "2926");
  3380. _id.put("Robe top", "2927");
  3381. _id.put("Robe bottoms", "2928");
  3382. _id.put("Robe bottoms", "2929");
  3383. _id.put("Hat", "2930");
  3384. _id.put("Hat", "2931");
  3385. _id.put("Gloves", "2932");
  3386. _id.put("Gloves", "2933");
  3387. _id.put("Boots", "2934");
  3388. _id.put("Boots", "2935");
  3389. _id.put("Robe top", "2936");
  3390. _id.put("Robe top", "2937");
  3391. _id.put("Robe bottoms", "2938");
  3392. _id.put("Robe bottoms", "2939");
  3393. _id.put("Hat", "2940");
  3394. _id.put("Hat", "2941");
  3395. _id.put("Gloves", "2942");
  3396. _id.put("Gloves", "2943");
  3397. _id.put("Golden key", "2944");
  3398. _id.put("Iron key", "2945");
  3399. _id.put("Golden tinderbox", "2946");
  3400. _id.put("Golden candle", "2947");
  3401. _id.put("Golden pot", "2948");
  3402. _id.put("Golden hammer", "2949");
  3403. _id.put("Golden feather", "2950");
  3404. _id.put("Golden needle", "2951");
  3405. _id.put("Wolfbane", "2952");
  3406. _id.put("Bucket of water", "2953");
  3407. _id.put("Bucket of water", "2954");
  3408. _id.put("Moonlight mead", "2955");
  3409. _id.put("Moonlight mead", "2956");
  3410. _id.put("Druid pouch", "2957");
  3411. _id.put("Druid pouch", "2958");
  3412. _id.put("Rotten food", "2959");
  3413. _id.put("Rotten food", "2960");
  3414. _id.put("Silver sickle", "2961");
  3415. _id.put("Silver sickle", "2962");
  3416. _id.put("Silver sickle(", "2963");
  3417. _id.put("Washing bowl", "2964");
  3418. _id.put("Washing bowl", "2965");
  3419. _id.put("Mirror", "2966");
  3420. _id.put("Journal", "2967");
  3421. _id.put("Druidic spell", "2968");
  3422. _id.put("A used spell", "2969");
  3423. _id.put("Mort myre fungi", "2970");
  3424. _id.put("Mort myre fungi", "2971");
  3425. _id.put("Mort myre stem", "2972");
  3426. _id.put("Mort myre stem", "2973");
  3427. _id.put("Mort myre pear", "2974");
  3428. _id.put("Mort myre pear", "2975");
  3429. _id.put("Sickle mould", "2976");
  3430. _id.put("Sickle mould", "2977");
  3431. _id.put("Chompy bird hat", "2978");
  3432. _id.put("Chompy bird hat", "2979");
  3433. _id.put("Chompy bird hat", "2980");
  3434. _id.put("Chompy bird hat", "2981");
  3435. _id.put("Chompy bird hat", "2982");
  3436. _id.put("Chompy bird hat", "2983");
  3437. _id.put("Chompy bird hat", "2984");
  3438. _id.put("Chompy bird hat", "2985");
  3439. _id.put("Chompy bird hat", "2986");
  3440. _id.put("Chompy bird hat", "2987");
  3441. _id.put("Chompy bird hat", "2988");
  3442. _id.put("Chompy bird hat", "2989");
  3443. _id.put("Chompy bird hat", "2990");
  3444. _id.put("Chompy bird hat", "2991");
  3445. _id.put("Chompy bird hat", "2992");
  3446. _id.put("Chompy bird hat", "2993");
  3447. _id.put("Chompy bird hat", "2994");
  3448. _id.put("Chompy bird hat", "2995");
  3449. _id.put("Agility arena ticket", "2996");
  3450. _id.put("Pirate's hook", "2997");
  3451. _id.put("Toadflax", "2998");
  3452. _id.put("Toadflax", "2999");
  3453. _id.put("Snapdragon", "3000");
  3454. _id.put("Snapdragon", "3001");
  3455. _id.put("Unfinished potion", "3002");
  3456. _id.put("Unfinished potion", "3003");
  3457. _id.put("Unfinished potion", "3004");
  3458. _id.put("Unfinished potion", "3005");
  3459. _id.put("Firework", "3006");
  3460. _id.put("Firework", "3007");
  3461. _id.put("Energy potion(4)", "3008");
  3462. _id.put("Energy potion(4)", "3009");
  3463. _id.put("Energy potion(3)", "3010");
  3464. _id.put("Energy potion(3)", "3011");
  3465. _id.put("Energy potion(2)", "3012");
  3466. _id.put("Energy potion(2)", "3013");
  3467. _id.put("Energy potion(1)", "3014");
  3468. _id.put("Energy potion(1)", "3015");
  3469. _id.put("Super energy(4)", "3016");
  3470. _id.put("Super energy(4)", "3017");
  3471. _id.put("Super energy(3)", "3018");
  3472. _id.put("Super energy(3)", "3019");
  3473. _id.put("Super energy(2)", "3020");
  3474. _id.put("Super energy(2)", "3021");
  3475. _id.put("Super energy(1)", "3022");
  3476. _id.put("Super energy(1)", "3023");
  3477. _id.put("Super restore(4)", "3024");
  3478. _id.put("Super restore(4)", "3025");
  3479. _id.put("Super restore(3)", "3026");
  3480. _id.put("Super restore(3)", "3027");
  3481. _id.put("Super restore(2)", "3028");
  3482. _id.put("Super restore(2)", "3029");
  3483. _id.put("Super restore(1)", "3030");
  3484. _id.put("Super restore(1)", "3031");
  3485. _id.put("Agility potion(4)", "3032");
  3486. _id.put("Agility potion(4)", "3033");
  3487. _id.put("Agility potion(3)", "3034");
  3488. _id.put("Agility potion(3)", "3035");
  3489. _id.put("Agility potion(2)", "3036");
  3490. _id.put("Agility potion(2)", "3037");
  3491. _id.put("Agility potion(1)", "3038");
  3492. _id.put("Agility potion(1)", "3039");
  3493. _id.put("Magic potion(4)", "3040");
  3494. _id.put("Magic potion(4)", "3041");
  3495. _id.put("Magic potion(3)", "3042");
  3496. _id.put("Magic potion(3)", "3043");
  3497. _id.put("Magic potion(2)", "3044");
  3498. _id.put("Magic potion(2)", "3045");
  3499. _id.put("Magic potion(1)", "3046");
  3500. _id.put("Magic potion(1)", "3047");
  3501. _id.put("Pirate's hook", "3048");
  3502. _id.put("Herb", "3049");
  3503. _id.put("Herb", "3050");
  3504. _id.put("Herb", "3051");
  3505. _id.put("Herb", "3052");
  3506. _id.put("Lava battlestaff", "3053");
  3507. _id.put("Mystic lava staff", "3054");
  3508. _id.put("Lava battlestaff", "3055");
  3509. _id.put("Mystic lava staff", "3056");
  3510. _id.put("Mime mask", "3057");
  3511. _id.put("Mime top", "3058");
  3512. _id.put("Mime legs", "3059");
  3513. _id.put("Mime gloves", "3060");
  3514. _id.put("Mime boots", "3061");
  3515. _id.put("Strange box", "3062");
  3516. _id.put("Whoopsie", "3064");
  3517. _id.put("Whoopsie", "3066");
  3518. _id.put("Whoopsie", "3068");
  3519. _id.put("Whoopsie", "3070");
  3520. _id.put("Whoopsie", "3072");
  3521. _id.put("Whoopsie", "3074");
  3522. _id.put("Whoopsie", "3076");
  3523. _id.put("Whoopsie", "3078");
  3524. _id.put("Whoopsie", "3080");
  3525. _id.put("Whoopsie", "3082");
  3526. _id.put("Whoopsie", "3084");
  3527. _id.put("Whoopsie", "3086");
  3528. _id.put("Whoopsie", "3088");
  3529. _id.put("Whoopsie", "3090");
  3530. _id.put("Whoopsie", "3092");
  3531. _id.put("Black dart", "3093");
  3532. _id.put("Black dart(p)", "3094");
  3533. _id.put("Bronze claws", "3095");
  3534. _id.put("Iron claws", "3096");
  3535. _id.put("Steel claws", "3097");
  3536. _id.put("Black claws", "3098");
  3537. _id.put("Mithril claws", "3099");
  3538. _id.put("Adamant claws", "3100");
  3539. _id.put("Rune claws", "3101");
  3540. _id.put("Combination", "3102");
  3541. _id.put("Iou", "3103");
  3542. _id.put("Secret way map", "3104");
  3543. _id.put("Climbing boots", "3105");
  3544. _id.put("Climbing boots", "3106");
  3545. _id.put("Spiked boots", "3107");
  3546. _id.put("Spiked boots", "3108");
  3547. _id.put("Stone ball", "3109");
  3548. _id.put("Stone ball", "3110");
  3549. _id.put("Stone ball", "3111");
  3550. _id.put("Stone ball", "3112");
  3551. _id.put("Stone ball", "3113");
  3552. _id.put("Certificate", "3114");
  3553. _id.put("Bronze claws", "3115");
  3554. _id.put("Iron claws", "3116");
  3555. _id.put("Steel claws", "3117");
  3556. _id.put("Black claws", "3118");
  3557. _id.put("Mithril claws", "3119");
  3558. _id.put("Adamant claws", "3120");
  3559. _id.put("Rune claws", "3121");
  3560. _id.put("Granite shield", "3122");
  3561. _id.put("Shaikahan bones", "3123");
  3562. _id.put("Shaikahan bones", "3124");
  3563. _id.put("Jogre bones", "3125");
  3564. _id.put("Jogre bones", "3126");
  3565. _id.put("Burnt jogre bones", "3127");
  3566. _id.put("Pasty jogre bones", "3128");
  3567. _id.put("Pasty jogre bones", "3129");
  3568. _id.put("Marinated j' bones", "3130");
  3569. _id.put("Pasty jogre bones", "3131");
  3570. _id.put("Pasty jogre bones", "3132");
  3571. _id.put("Marinated j' bones", "3133");
  3572. _id.put("Granite shield", "3134");
  3573. _id.put("Prison key", "3135");
  3574. _id.put("Cell key 1", "3136");
  3575. _id.put("Cell key 2", "3137");
  3576. _id.put("Potato cactus", "3138");
  3577. _id.put("Potato cactus", "3139");
  3578. _id.put("Dragon chainbody", "3140");
  3579. _id.put("Dragon chainbody", "3141");
  3580. _id.put("Raw karambwan", "3142");
  3581. _id.put("Raw karambwan", "3143");
  3582. _id.put("Cooked karambwan", "3144");
  3583. _id.put("Cooked karambwan", "3145");
  3584. _id.put("Cooked karambwan", "3146");
  3585. _id.put("Cooked karambwan", "3147");
  3586. _id.put("Burnt karambwan", "3148");
  3587. _id.put("Burnt karambwan", "3149");
  3588. _id.put("Raw karambwanji", "3150");
  3589. _id.put("Karambwanji", "3151");
  3590. _id.put("Karambwan paste", "3152");
  3591. _id.put("Karambwan paste", "3153");
  3592. _id.put("Karambwan paste", "3154");
  3593. _id.put("Karambwanji paste", "3155");
  3594. _id.put("Karambwanji paste", "3156");
  3595. _id.put("Karambwan vessel", "3157");
  3596. _id.put("Karambwan vessel", "3158");
  3597. _id.put("Karambwan vessel", "3159");
  3598. _id.put("Karambwan vessel", "3160");
  3599. _id.put("Crafting manual", "3161");
  3600. _id.put("Sliced banana", "3162");
  3601. _id.put("Sliced banana", "3163");
  3602. _id.put("Karamjan rum", "3164");
  3603. _id.put("Karamjan rum", "3165");
  3604. _id.put("Monkey corpse", "3166");
  3605. _id.put("Monkey skin", "3167");
  3606. _id.put("Seaweed sandwich", "3168");
  3607. _id.put("Stuffed monkey", "3169");
  3608. _id.put("Bronze spear(kp)", "3170");
  3609. _id.put("Iron spear(kp)", "3171");
  3610. _id.put("Steel spear(kp)", "3172");
  3611. _id.put("Mithril spear(kp)", "3173");
  3612. _id.put("Adamant spear(kp)", "3174");
  3613. _id.put("Rune spear(kp)", "3175");
  3614. _id.put("Dragon spear(kp)", "3176");
  3615. _id.put("Banana left", "3177");
  3616. _id.put("Banana left", "3178");
  3617. _id.put("Monkey bones", "3179");
  3618. _id.put("Monkey bones", "3180");
  3619. _id.put("Monkey bones", "3181");
  3620. _id.put("Monkey bones", "3182");
  3621. _id.put("Monkey bones", "3183");
  3622. _id.put("Monkey bones", "3184");
  3623. _id.put("Monkey bones", "3185");
  3624. _id.put("Monkey bones", "3186");
  3625. _id.put("Bones", "3187");
  3626. _id.put("Cleaning cloth", "3188");
  3627. _id.put("Cleaning cloth", "3189");
  3628. _id.put("Bronze halberd", "3190");
  3629. _id.put("Bronze halberd", "3191");
  3630. _id.put("Iron halberd", "3192");
  3631. _id.put("Iron halberd", "3193");
  3632. _id.put("Steel halberd", "3194");
  3633. _id.put("Steel halberd", "3195");
  3634. _id.put("Black halberd", "3196");
  3635. _id.put("Black halberd", "3197");
  3636. _id.put("Mithril halberd", "3198");
  3637. _id.put("Mithril halberd", "3199");
  3638. _id.put("Adamant halberd", "3200");
  3639. _id.put("Adamant halberd", "3201");
  3640. _id.put("Rune halberd", "3202");
  3641. _id.put("Rune halberd", "3203");
  3642. _id.put("Dragon halberd", "3204");
  3643. _id.put("Dragon halberd", "3205");
  3644. _id.put("King's message", "3206");
  3645. _id.put("Iorwerths message", "3207");
  3646. _id.put("Crystal pendant", "3208");
  3647. _id.put("Sulphur", "3209");
  3648. _id.put("Sulphur", "3210");
  3649. _id.put("Limestone", "3211");
  3650. _id.put("Limestone", "3212");
  3651. _id.put("Quicklime", "3213");
  3652. _id.put("Pot of quicklime", "3214");
  3653. _id.put("Ground sulphur", "3215");
  3654. _id.put("Barrel", "3216");
  3655. _id.put("Barrel", "3217");
  3656. _id.put("Barrel bomb", "3218");
  3657. _id.put("Barrel bomb", "3219");
  3658. _id.put("Barrel of coal-tar", "3220");
  3659. _id.put("Barrel of naphtha", "3221");
  3660. _id.put("Naphtha mix", "3222");
  3661. _id.put("Naphtha mix", "3223");
  3662. _id.put("Cloth", "3224");
  3663. _id.put("Cloth", "3225");
  3664. _id.put("Raw rabbit", "3226");
  3665. _id.put("Raw rabbit", "3227");
  3666. _id.put("Cooked rabbit", "3228");
  3667. _id.put("Cooked rabbit", "3229");
  3668. _id.put("Big book of bangs", "3230");
  3669. _id.put("Symbol1", "3231");
  3670. _id.put("Symbol1", "3232");
  3671. _id.put("Symbol2", "3233");
  3672. _id.put("Symbol2", "3234");
  3673. _id.put("Symbol3", "3235");
  3674. _id.put("Symbol3", "3236");
  3675. _id.put("Symbol4", "3237");
  3676. _id.put("Symbol4", "3238");
  3677. _id.put("Bark", "3239");
  3678. _id.put("Bark", "3240");
  3679. _id.put("Man", "3241");
  3680. _id.put("Whoopsie", "3242");
  3681. _id.put("Farmer", "3243");
  3682. _id.put("Whoopsie", "3244");
  3683. _id.put("Warrior woman", "3245");
  3684. _id.put("Whoopsie", "3246");
  3685. _id.put("Rogue", "3247");
  3686. _id.put("Whoopsie", "3248");
  3687. _id.put("Guard", "3249");
  3688. _id.put("Whoopsie", "3250");
  3689. _id.put("Knight of ardougne", "3251");
  3690. _id.put("Whoopsie", "3252");
  3691. _id.put("Watchman", "3253");
  3692. _id.put("Whoopsie", "3254");
  3693. _id.put("Paladin", "3255");
  3694. _id.put("Whoopsie", "3256");
  3695. _id.put("Gnome", "3257");
  3696. _id.put("Whoopsie", "3258");
  3697. _id.put("Hero", "3259");
  3698. _id.put("Whoopsie", "3260");
  3699. _id.put("Goutweed", "3261");
  3700. _id.put("Troll thistle", "3262");
  3701. _id.put("Dried thistle", "3263");
  3702. _id.put("Ground thistle", "3264");
  3703. _id.put("Troll potion", "3265");
  3704. _id.put("Drunk parrot", "3266");
  3705. _id.put("Dirty robe", "3267");
  3706. _id.put("Fake man", "3268");
  3707. _id.put("Storeroom key", "3269");
  3708. _id.put("Alco-chunks", "3270");
  3709. _id.put("Whoopsie", "3272");
  3710. _id.put("Vampire dust", "3325");
  3711. _id.put("Vampire dust", "3326");
  3712. _id.put("Myre snelm", "3327");
  3713. _id.put("Myre snelm", "3328");
  3714. _id.put("Blood'n'tar snelm", "3329");
  3715. _id.put("Blood'n'tar snelm", "3330");
  3716. _id.put("Ochre snelm", "3331");
  3717. _id.put("Ochre snelm", "3332");
  3718. _id.put("Bruise blue snelm", "3333");
  3719. _id.put("Bruise blue snelm", "3334");
  3720. _id.put("Broken bark snelm", "3335");
  3721. _id.put("Broken bark snelm", "3336");
  3722. _id.put("Myre snelm", "3337");
  3723. _id.put("Myre snelm", "3338");
  3724. _id.put("Blood'n'tar snelm", "3339");
  3725. _id.put("Blood'n'tar snelm", "3340");
  3726. _id.put("Ochre snelm", "3341");
  3727. _id.put("Ochre snelm", "3342");
  3728. _id.put("Bruise blue snelm", "3343");
  3729. _id.put("Bruise blue snelm", "3344");
  3730. _id.put("Blamish myre shell", "3345");
  3731. _id.put("Blamish myre shell", "3346");
  3732. _id.put("Blamish red shell", "3347");
  3733. _id.put("Blamish red shell", "3348");
  3734. _id.put("Blamish ochre shell", "3349");
  3735. _id.put("Blamish ochre shell", "3350");
  3736. _id.put("Blamish blue shell", "3351");
  3737. _id.put("Blamish blue shell", "3352");
  3738. _id.put("Blamish bark shell", "3353");
  3739. _id.put("Blamish bark shell", "3354");
  3740. _id.put("Blamish myre shell", "3355");
  3741. _id.put("Blamish myre shell", "3356");
  3742. _id.put("Blamish red shell", "3357");
  3743. _id.put("Blamish red shell", "3358");
  3744. _id.put("Blamish ochre shell", "3359");
  3745. _id.put("Blamish ochre shell", "3360");
  3746. _id.put("Blamish blue shell", "3361");
  3747. _id.put("Blamish blue shell", "3362");
  3748. _id.put("Thin snail", "3363");
  3749. _id.put("Thin snail", "3364");
  3750. _id.put("Lean snail", "3365");
  3751. _id.put("Lean snail", "3366");
  3752. _id.put("Fat snail", "3367");
  3753. _id.put("Fat snail", "3368");
  3754. _id.put("Thin snail meat", "3369");
  3755. _id.put("Thin snail meat", "3370");
  3756. _id.put("Lean snail meat", "3371");
  3757. _id.put("Lean snail meat", "3372");
  3758. _id.put("Fat snail meat", "3373");
  3759. _id.put("Fat snail meat", "3374");
  3760. _id.put("Burnt snail", "3375");
  3761. _id.put("Burnt snail", "3376");
  3762. _id.put("Sample bottle", "3377");
  3763. _id.put("Sample bottle", "3378");
  3764. _id.put("Slimy eel", "3379");
  3765. _id.put("Slimy eel", "3380");
  3766. _id.put("Cooked slimy eel", "3381");
  3767. _id.put("Cooked slimy eel", "3382");
  3768. _id.put("Burnt eel", "3383");
  3769. _id.put("Burnt eel", "3384");
  3770. _id.put("Splitbark helm", "3385");
  3771. _id.put("Splitbark helm", "3386");
  3772. _id.put("Splitbark body", "3387");
  3773. _id.put("Splitbark body", "3388");
  3774. _id.put("Splitbark legs", "3389");
  3775. _id.put("Splitbark legs", "3390");
  3776. _id.put("Splitbark gauntlets", "3391");
  3777. _id.put("Splitbark gauntlets", "3392");
  3778. _id.put("Splitbark greaves", "3393");
  3779. _id.put("Splitbark greaves", "3394");
  3780. _id.put("Diary", "3395");
  3781. _id.put("Loar remains", "3396");
  3782. _id.put("Loar remains", "3397");
  3783. _id.put("Phrin remains", "3398");
  3784. _id.put("Phrin remains", "3399");
  3785. _id.put("Riyl remains", "3400");
  3786. _id.put("Riyl remains", "3401");
  3787. _id.put("Asyn remains", "3402");
  3788. _id.put("Asyn remains", "3403");
  3789. _id.put("Fiyr remains", "3404");
  3790. _id.put("Fiyr remains", "3405");
  3791. _id.put("Unfinished potion", "3406");
  3792. _id.put("Unfinished potion", "3407");
  3793. _id.put("Serum 207 (4)", "3408");
  3794. _id.put("Serum 207 (4)", "3409");
  3795. _id.put("Serum 207 (3)", "3410");
  3796. _id.put("Serum 207 (3)", "3411");
  3797. _id.put("Serum 207 (2)", "3412");
  3798. _id.put("Serum 207 (2)", "3413");
  3799. _id.put("Serum 207 (1)", "3414");
  3800. _id.put("Serum 207 (1)", "3415");
  3801. _id.put("Serum 207(p) (4)", "3416");
  3802. _id.put("Serum 207(p) (3)", "3417");
  3803. _id.put("Serum 207(p) (2)", "3418");
  3804. _id.put("Serum 207(p) (1)", "3419");
  3805. _id.put("Limestone brick", "3420");
  3806. _id.put("Limestone brick", "3421");
  3807. _id.put("Olive oil(4)", "3422");
  3808. _id.put("Olive oil(4)", "3423");
  3809. _id.put("Olive oil(3)", "3424");
  3810. _id.put("Olive oil(3)", "3425");
  3811. _id.put("Olive oil(2)", "3426");
  3812. _id.put("Olive oil(2)", "3427");
  3813. _id.put("Olive oil(1)", "3428");
  3814. _id.put("Olive oil(1)", "3429");
  3815. _id.put("Sacred oil(4)", "3430");
  3816. _id.put("Sacred oil(4)", "3431");
  3817. _id.put("Sacred oil(3)", "3432");
  3818. _id.put("Sacred oil(3)", "3433");
  3819. _id.put("Sacred oil(2)", "3434");
  3820. _id.put("Sacred oil(2)", "3435");
  3821. _id.put("Sacred oil(1)", "3436");
  3822. _id.put("Sacred oil(1)", "3437");
  3823. _id.put("Pyre logs", "3438");
  3824. _id.put("Pyre logs", "3439");
  3825. _id.put("Oak pyre logs", "3440");
  3826. _id.put("Oak pyre logs", "3441");
  3827. _id.put("Willow pyre logs", "3442");
  3828. _id.put("Willow pyre logs", "3443");
  3829. _id.put("Maple pyre logs", "3444");
  3830. _id.put("Maple pyre logs", "3445");
  3831. _id.put("Yew pyre logs", "3446");
  3832. _id.put("Yew pyre logs", "3447");
  3833. _id.put("Magic pyre logs", "3448");
  3834. _id.put("Magic pyre logs", "3449");
  3835. _id.put("Bronze key red", "3450");
  3836. _id.put("Bronze key brown", "3451");
  3837. _id.put("Bronze key crimson", "3452");
  3838. _id.put("Bronze key black", "3453");
  3839. _id.put("Bronze key purple", "3454");
  3840. _id.put("Steel key red", "3455");
  3841. _id.put("Steel key brown", "3456");
  3842. _id.put("Steel key crimson", "3457");
  3843. _id.put("Steel key black", "3458");
  3844. _id.put("Steel key purple", "3459");
  3845. _id.put("Black key red", "3460");
  3846. _id.put("Black key brown", "3461");
  3847. _id.put("Black key crimson", "3462");
  3848. _id.put("Black key black", "3463");
  3849. _id.put("Black key purple", "3464");
  3850. _id.put("Silver key red", "3465");
  3851. _id.put("Silver key brown", "3466");
  3852. _id.put("Silver key crimson", "3467");
  3853. _id.put("Silver key black", "3468");
  3854. _id.put("Silver key purple", "3469");
  3855. _id.put("Fine cloth", "3470");
  3856. _id.put("Fine cloth", "3471");
  3857. _id.put("Black plateskirt (t)", "3472");
  3858. _id.put("Black plateskirt (g)", "3473");
  3859. _id.put("Adam plateskirt (t)", "3474");
  3860. _id.put("Adam plateskirt (g)", "3475");
  3861. _id.put("Rune plateskirt (g)", "3476");
  3862. _id.put("Rune plateskirt (t)", "3477");
  3863. _id.put("Zamorak plateskirt", "3478");
  3864. _id.put("Saradomin skirt", "3479");
  3865. _id.put("Guthix plateskirt", "3480");
  3866. _id.put("Gilded platebody", "3481");
  3867. _id.put("Gilded platebody", "3482");
  3868. _id.put("Gilded platelegs", "3483");
  3869. _id.put("Gilded platelegs", "3484");
  3870. _id.put("Gilded plateskirt", "3485");
  3871. _id.put("Gilded full helm", "3486");
  3872. _id.put("Gilded full helm", "3487");
  3873. _id.put("Gilded kiteshield", "3488");
  3874. _id.put("Gilded kiteshield", "3489");
  3875. _id.put("Clue scroll", "3490");
  3876. _id.put("Clue scroll", "3491");
  3877. _id.put("Clue scroll", "3492");
  3878. _id.put("Clue scroll", "3493");
  3879. _id.put("Clue scroll", "3494");
  3880. _id.put("Clue scroll", "3495");
  3881. _id.put("Clue scroll", "3496");
  3882. _id.put("Clue scroll", "3497");
  3883. _id.put("Clue scroll", "3498");
  3884. _id.put("Clue scroll", "3499");
  3885. _id.put("Clue scroll", "3500");
  3886. _id.put("Clue scroll", "3501");
  3887. _id.put("Clue scroll", "3502");
  3888. _id.put("Clue scroll", "3503");
  3889. _id.put("Clue scroll", "3504");
  3890. _id.put("Clue scroll", "3505");
  3891. _id.put("Clue scroll", "3506");
  3892. _id.put("Clue scroll", "3507");
  3893. _id.put("Clue scroll", "3508");
  3894. _id.put("Clue scroll", "3509");
  3895. _id.put("Clue scroll", "3510");
  3896. _id.put("Casket", "3511");
  3897. _id.put("Clue scroll", "3512");
  3898. _id.put("Clue scroll", "3513");
  3899. _id.put("Clue scroll", "3514");
  3900. _id.put("Clue scroll", "3515");
  3901. _id.put("Clue scroll", "3516");
  3902. _id.put("Casket", "3517");
  3903. _id.put("Clue scroll", "3518");
  3904. _id.put("Casket", "3519");
  3905. _id.put("Clue scroll", "3520");
  3906. _id.put("Casket", "3521");
  3907. _id.put("Clue scroll", "3522");
  3908. _id.put("Casket", "3523");
  3909. _id.put("Clue scroll", "3524");
  3910. _id.put("Clue scroll", "3525");
  3911. _id.put("Clue scroll", "3526");
  3912. _id.put("Casket", "3527");
  3913. _id.put("Clue scroll", "3528");
  3914. _id.put("Casket", "3529");
  3915. _id.put("Clue scroll", "3530");
  3916. _id.put("Casket", "3531");
  3917. _id.put("Clue scroll", "3532");
  3918. _id.put("Casket", "3533");
  3919. _id.put("Clue scroll", "3534");
  3920. _id.put("Casket", "3535");
  3921. _id.put("Clue scroll", "3536");
  3922. _id.put("Casket", "3537");
  3923. _id.put("Clue scroll", "3538");
  3924. _id.put("Casket", "3539");
  3925. _id.put("Clue scroll", "3540");
  3926. _id.put("Casket", "3541");
  3927. _id.put("Clue scroll", "3542");
  3928. _id.put("Casket", "3543");
  3929. _id.put("Clue scroll", "3544");
  3930. _id.put("Casket", "3545");
  3931. _id.put("Clue scroll", "3546");
  3932. _id.put("Casket", "3547");
  3933. _id.put("Clue scroll", "3548");
  3934. _id.put("Casket", "3549");
  3935. _id.put("Clue scroll", "3550");
  3936. _id.put("Casket", "3551");
  3937. _id.put("Clue scroll", "3552");
  3938. _id.put("Casket", "3553");
  3939. _id.put("Clue scroll", "3554");
  3940. _id.put("Casket", "3555");
  3941. _id.put("Clue scroll", "3556");
  3942. _id.put("Casket", "3557");
  3943. _id.put("Clue scroll", "3558");
  3944. _id.put("Casket", "3559");
  3945. _id.put("Clue scroll", "3560");
  3946. _id.put("Casket", "3561");
  3947. _id.put("Clue scroll", "3562");
  3948. _id.put("Casket", "3563");
  3949. _id.put("Clue scroll", "3564");
  3950. _id.put("Puzzle box", "3565");
  3951. _id.put("Clue scroll", "3566");
  3952. _id.put("Puzzle box", "3567");
  3953. _id.put("Clue scroll", "3568");
  3954. _id.put("Puzzle box", "3569");
  3955. _id.put("Clue scroll", "3570");
  3956. _id.put("Puzzle box", "3571");
  3957. _id.put("Clue scroll", "3572");
  3958. _id.put("Clue scroll", "3573");
  3959. _id.put("Clue scroll", "3574");
  3960. _id.put("Clue scroll", "3575");
  3961. _id.put("Puzzle box", "3576");
  3962. _id.put("Clue scroll", "3577");
  3963. _id.put("Puzzle box", "3578");
  3964. _id.put("Clue scroll", "3579");
  3965. _id.put("Clue scroll", "3580");
  3966. _id.put("Casket", "3581");
  3967. _id.put("Clue scroll", "3582");
  3968. _id.put("Casket", "3583");
  3969. _id.put("Clue scroll", "3584");
  3970. _id.put("Casket", "3585");
  3971. _id.put("Clue scroll", "3586");
  3972. _id.put("Casket", "3587");
  3973. _id.put("Clue scroll", "3588");
  3974. _id.put("Casket", "3589");
  3975. _id.put("Clue scroll", "3590");
  3976. _id.put("Casket", "3591");
  3977. _id.put("Clue scroll", "3592");
  3978. _id.put("Casket", "3593");
  3979. _id.put("Clue scroll", "3594");
  3980. _id.put("Casket", "3595");
  3981. _id.put("Clue scroll", "3596");
  3982. _id.put("Casket", "3597");
  3983. _id.put("Clue scroll", "3598");
  3984. _id.put("Clue scroll", "3599");
  3985. _id.put("Casket", "3600");
  3986. _id.put("Clue scroll", "3601");
  3987. _id.put("Clue scroll", "3602");
  3988. _id.put("Casket", "3603");
  3989. _id.put("Clue scroll", "3604");
  3990. _id.put("Clue scroll", "3605");
  3991. _id.put("Key", "3606");
  3992. _id.put("Clue scroll", "3607");
  3993. _id.put("Key", "3608");
  3994. _id.put("Clue scroll", "3609");
  3995. _id.put("Clue scroll", "3610");
  3996. _id.put("Clue scroll", "3611");
  3997. _id.put("Clue scroll", "3612");
  3998. _id.put("Clue scroll", "3613");
  3999. _id.put("Clue scroll", "3614");
  4000. _id.put("Clue scroll", "3615");
  4001. _id.put("Clue scroll", "3616");
  4002. _id.put("Clue scroll", "3617");
  4003. _id.put("Clue scroll", "3618");
  4004. _id.put("Sliding piece", "3619");
  4005. _id.put("Sliding piece", "3620");
  4006. _id.put("Sliding piece", "3621");
  4007. _id.put("Sliding piece", "3622");
  4008. _id.put("Sliding piece", "3623");
  4009. _id.put("Sliding piece", "3624");
  4010. _id.put("Sliding piece", "3625");
  4011. _id.put("Sliding piece", "3626");
  4012. _id.put("Sliding piece", "3627");
  4013. _id.put("Sliding piece", "3628");
  4014. _id.put("Sliding piece", "3629");
  4015. _id.put("Sliding piece", "3630");
  4016. _id.put("Sliding piece", "3631");
  4017. _id.put("Sliding piece", "3632");
  4018. _id.put("Sliding piece", "3633");
  4019. _id.put("Sliding piece", "3634");
  4020. _id.put("Sliding piece", "3635");
  4021. _id.put("Sliding piece", "3636");
  4022. _id.put("Sliding piece", "3637");
  4023. _id.put("Sliding piece", "3638");
  4024. _id.put("Sliding piece", "3639");
  4025. _id.put("Sliding piece", "3640");
  4026. _id.put("Sliding piece", "3641");
  4027. _id.put("Sliding piece", "3642");
  4028. _id.put("Sliding piece", "3643");
  4029. _id.put("Sliding piece", "3644");
  4030. _id.put("Sliding piece", "3645");
  4031. _id.put("Sliding piece", "3646");
  4032. _id.put("Sliding piece", "3647");
  4033. _id.put("Sliding piece", "3648");
  4034. _id.put("Sliding piece", "3649");
  4035. _id.put("Sliding piece", "3650");
  4036. _id.put("Sliding piece", "3651");
  4037. _id.put("Sliding piece", "3652");
  4038. _id.put("Sliding piece", "3653");
  4039. _id.put("Sliding piece", "3654");
  4040. _id.put("Sliding piece", "3655");
  4041. _id.put("Sliding piece", "3656");
  4042. _id.put("Sliding piece", "3657");
  4043. _id.put("Sliding piece", "3658");
  4044. _id.put("Sliding piece", "3659");
  4045. _id.put("Sliding piece", "3660");
  4046. _id.put("Sliding piece", "3661");
  4047. _id.put("Sliding piece", "3662");
  4048. _id.put("Sliding piece", "3663");
  4049. _id.put("Sliding piece", "3664");
  4050. _id.put("Sliding piece", "3665");
  4051. _id.put("Sliding piece", "3666");
  4052. _id.put("Lifeboat", "3667");
  4053. _id.put("Black plateskirt (t)", "3668");
  4054. _id.put("Black plateskirt (g)", "3669");
  4055. _id.put("Adam plateskirt (t)", "3670");
  4056. _id.put("Adam plateskirt (g)", "3671");
  4057. _id.put("Rune plateskirt (g)", "3672");
  4058. _id.put("Rune plateskirt (t)", "3673");
  4059. _id.put("Zamorak plateskirt", "3674");
  4060. _id.put("Saradomin skirt", "3675");
  4061. _id.put("Guthix plateskirt", "3676");
  4062. _id.put("Gilded plateskirt", "3677");
  4063. _id.put("Flamtaer hammer", "3678");
  4064. _id.put("Flamtaer hammer", "3679");
  4065. _id.put("Shoe", "3680");
  4066. _id.put("Shoe", "3681");
  4067. _id.put("Shoe", "3682");
  4068. _id.put("Shoe", "3683");
  4069. _id.put("Shoe", "3684");
  4070. _id.put("Shoe.", "3685");
  4071. _id.put("Fremennik", "3686");
  4072. _id.put("Whoopsie", "3687");
  4073. _id.put("Unstrung lyre", "3688");
  4074. _id.put("Lyre", "3689");
  4075. _id.put("Enchanted lyre", "3690");
  4076. _id.put("Enchanted lyre(1)", "3691");
  4077. _id.put("Branch", "3692");
  4078. _id.put("Golden fleece", "3693");
  4079. _id.put("Golden wool", "3694");
  4080. _id.put("Pet rock", "3695");
  4081. _id.put("Hunters' talisman", "3696");
  4082. _id.put("Hunters' talisman", "3697");
  4083. _id.put("Exotic flower", "3698");
  4084. _id.put("Fremennik ballad", "3699");
  4085. _id.put("Sturdy boots", "3700");
  4086. _id.put("Hunters map", "3701");
  4087. _id.put("Custom bow string", "3702");
  4088. _id.put("Unusual fish", "3703");
  4089. _id.put("Sea fishing map", "3704");
  4090. _id.put("Weather forecast", "3705");
  4091. _id.put("Champions token", "3706");
  4092. _id.put("Legendary cocktail", "3707");
  4093. _id.put("Fiscal statement", "3708");
  4094. _id.put("Promissory note", "3709");
  4095. _id.put("Warriors' contract", "3710");
  4096. _id.put("Keg of beer", "3711");
  4097. _id.put("Low alcohol keg", "3712");
  4098. _id.put("Strange object", "3713");
  4099. _id.put("Lit strange object", "3714");
  4100. _id.put("Red disk", "3715");
  4101. _id.put("Red disk", "3716");
  4102. _id.put("Magnet", "3718");
  4103. _id.put("Blue thread", "3719");
  4104. _id.put("Small pick", "3720");
  4105. _id.put("Toy ship", "3721");
  4106. _id.put("Full bucket", "3722");
  4107. _id.put("4/5ths full bucket", "3723");
  4108. _id.put("3/5ths full bucket", "3724");
  4109. _id.put("2/5ths full bucket", "3725");
  4110. _id.put("1/5ths full bucket", "3726");
  4111. _id.put("Empty bucket", "3727");
  4112. _id.put("Frozen bucket", "3728");
  4113. _id.put("Full jug", "3729");
  4114. _id.put("2/3rds full jug", "3730");
  4115. _id.put("1/3rds full jug", "3731");
  4116. _id.put("Empty jug", "3732");
  4117. _id.put("Frozen jug", "3733");
  4118. _id.put("Vase", "3734");
  4119. _id.put("Vase of water", "3735");
  4120. _id.put("Frozen vase", "3736");
  4121. _id.put("Vase lid", "3737");
  4122. _id.put("Sealed vase", "3738");
  4123. _id.put("Sealed vase", "3739");
  4124. _id.put("Sealed vase", "3740");
  4125. _id.put("Frozen key", "3741");
  4126. _id.put("Red herring", "3742");
  4127. _id.put("Red disk", "3743");
  4128. _id.put("Wooden disk", "3744");
  4129. _id.put("Seer's key", "3745");
  4130. _id.put("Sticky red goop", "3746");
  4131. _id.put("Sticky red goop", "3747");
  4132. _id.put("Fremennik helm", "3748");
  4133. _id.put("Archer helm", "3749");
  4134. _id.put("Archer helm", "3750");
  4135. _id.put("Berserker helm", "3751");
  4136. _id.put("Berserker helm", "3752");
  4137. _id.put("Warrior helm", "3753");
  4138. _id.put("Warrior helm", "3754");
  4139. _id.put("Farseer helm", "3755");
  4140. _id.put("Farseer helm", "3756");
  4141. _id.put("Fremennik blade", "3757");
  4142. _id.put("Fremennik shield", "3758");
  4143. _id.put("Fremennik cloak", "3759");
  4144. _id.put("Fremennik cloak", "3760");
  4145. _id.put("Fremennik cloak", "3761");
  4146. _id.put("Fremennik cloak", "3762");
  4147. _id.put("Fremennik cloak", "3763");
  4148. _id.put("Fremennik cloak", "3764");
  4149. _id.put("Fremennik cloak", "3765");
  4150. _id.put("Fremennik cloak", "3766");
  4151. _id.put("Fremennik shirt", "3767");
  4152. _id.put("Fremennik shirt", "3768");
  4153. _id.put("Fremennik shirt", "3769");
  4154. _id.put("Fremennik shirt", "3770");
  4155. _id.put("Fremennik shirt", "3771");
  4156. _id.put("Fremennik shirt", "3772");
  4157. _id.put("Fremennik shirt", "3773");
  4158. _id.put("Fremennik shirt", "3774");
  4159. _id.put("Fremennik shirt", "3775");
  4160. _id.put("Fremennik shirt", "3776");
  4161. _id.put("Fremennik cloak", "3777");
  4162. _id.put("Fremennik cloak", "3778");
  4163. _id.put("Fremennik cloak", "3779");
  4164. _id.put("Fremennik cloak", "3780");
  4165. _id.put("Fremennik cloak", "3781");
  4166. _id.put("Fremennik cloak", "3782");
  4167. _id.put("Fremennik cloak", "3783");
  4168. _id.put("Fremennik cloak", "3784");
  4169. _id.put("Fremennik cloak", "3785");
  4170. _id.put("Fremennik cloak", "3786");
  4171. _id.put("Fremennik cloak", "3787");
  4172. _id.put("Fremennik cloak", "3788");
  4173. _id.put("Fremennik cloak", "3789");
  4174. _id.put("Fremennik cloak", "3790");
  4175. _id.put("Fremennik boots", "3791");
  4176. _id.put("Fremennik boots", "3792");
  4177. _id.put("Fremennik robe", "3793");
  4178. _id.put("Fremennik robe", "3794");
  4179. _id.put("Fremennik skirt", "3795");
  4180. _id.put("Fremennik skirt", "3796");
  4181. _id.put("Fremennik hat", "3797");
  4182. _id.put("Fremennik hat", "3798");
  4183. _id.put("Gloves", "3799");
  4184. _id.put("Gloves", "3800");
  4185. _id.put("Keg of beer", "3801");
  4186. _id.put("Keg of beer", "3802");
  4187. _id.put("Beer", "3803");
  4188. _id.put("Beer", "3804");
  4189. _id.put("Tankard", "3805");
  4190. _id.put("Tankard", "3806");
  4191. _id.put("Torn page 1(s)", "3827");
  4192. _id.put("Torn page 2(s)", "3828");
  4193. _id.put("Torn page 3(s)", "3829");
  4194. _id.put("Torn page 4(s)", "3830");
  4195. _id.put("Torn page 1(z)", "3831");
  4196. _id.put("Torn page 2(z)", "3832");
  4197. _id.put("Torn page 3(z)", "3833");
  4198. _id.put("Torn page 4(z)", "3834");
  4199. _id.put("Torn page 1(g)", "3835");
  4200. _id.put("Torn page 2(g)", "3836");
  4201. _id.put("Torn page 3(g)", "3837");
  4202. _id.put("Torn page 4(g)", "3838");
  4203. _id.put("Damaged book", "3839");
  4204. _id.put("Holy book", "3840");
  4205. _id.put("Damaged book", "3841");
  4206. _id.put("Unholy book", "3842");
  4207. _id.put("Damaged book", "3843");
  4208. _id.put("Book of balance", "3844");
  4209. _id.put("Journal", "3845");
  4210. _id.put("Diary", "3846");
  4211. _id.put("Manual", "3847");
  4212. _id.put("Lighthouse key", "3848");
  4213. _id.put("Rusty casket", "3849");
  4214. _id.put("Whoopsie", "3851");
  4215. _id.put("Unholy symbol", "3852");
  4216. _id.put("Games necklace(8)", "3853");
  4217. _id.put("Games necklace(8)", "3854");
  4218. _id.put("Games necklace(7)", "3855");
  4219. _id.put("Games necklace(7)", "3856");
  4220. _id.put("Games necklace(6)", "3857");
  4221. _id.put("Games necklace(6)", "3858");
  4222. _id.put("Games necklace(5)", "3859");
  4223. _id.put("Games necklace(5)", "3860");
  4224. _id.put("Games necklace(4)", "3861");
  4225. _id.put("Games necklace(4)", "3862");
  4226. _id.put("Games necklace(3)", "3863");
  4227. _id.put("Games necklace(3)", "3864");
  4228. _id.put("Games necklace(2)", "3865");
  4229. _id.put("Games necklace(2)", "3866");
  4230. _id.put("Games necklace(1)", "3867");
  4231. _id.put("Games necklace(1)", "3868");
  4232. _id.put("Board game piece", "3869");
  4233. _id.put("Board game piece", "3870");
  4234. _id.put("Board game piece", "3871");
  4235. _id.put("Board game piece", "3872");
  4236. _id.put("Board game piece", "3873");
  4237. _id.put("Board game piece", "3874");
  4238. _id.put("Board game piece", "3875");
  4239. _id.put("Board game piece", "3876");
  4240. _id.put("Board game piece", "3877");
  4241. _id.put("Board game piece", "3878");
  4242. _id.put("Board game piece", "3879");
  4243. _id.put("Board game piece", "3880");
  4244. _id.put("Board game piece", "3881");
  4245. _id.put("Board game piece", "3882");
  4246. _id.put("Board game piece", "3883");
  4247. _id.put("Board game piece", "3884");
  4248. _id.put("Board game piece", "3885");
  4249. _id.put("Board game piece", "3886");
  4250. _id.put("Board game piece", "3887");
  4251. _id.put("Board game piece", "3888");
  4252. _id.put("Board game piece", "3889");
  4253. _id.put("Board game piece", "3890");
  4254. _id.put("Board game piece", "3891");
  4255. _id.put("Board game piece", "3892");
  4256. _id.put("Stool", "3893");
  4257. _id.put("Awful anthem", "3894");
  4258. _id.put("Good anthem", "3895");
  4259. _id.put("Treaty", "3896");
  4260. _id.put("Giant nib", "3897");
  4261. _id.put("Giant pen", "3898");
  4262. _id.put("Iron sickle", "3899");
  4263. _id.put("Iron sickle", "3900");
  4264. _id.put("Ghrim's book", "3901");
  4265. _id.put("Sliding button", "3902");
  4266. _id.put("Sliding button", "3903");
  4267. _id.put("Sliding button", "3904");
  4268. _id.put("Whoopsie", "3905");
  4269. _id.put("Sliding button", "3906");
  4270. _id.put("Whoopsie", "3907");
  4271. _id.put("Sliding button", "3908");
  4272. _id.put("Whoopsie", "3909");
  4273. _id.put("Sliding button", "3910");
  4274. _id.put("Whoopsie", "3911");
  4275. _id.put("Sliding button", "3912");
  4276. _id.put("Whoopsie", "3913");
  4277. _id.put("Sliding button", "3914");
  4278. _id.put("Whoopsie", "3915");
  4279. _id.put("Sliding button", "3916");
  4280. _id.put("Whoopsie", "3917");
  4281. _id.put("Sliding button", "3918");
  4282. _id.put("Whoopsie", "3919");
  4283. _id.put("Sliding button", "3920");
  4284. _id.put("Whoopsie", "3921");
  4285. _id.put("Sliding button", "3922");
  4286. _id.put("Whoopsie", "3923");
  4287. _id.put("Sliding button", "3924");
  4288. _id.put("Whoopsie", "3925");
  4289. _id.put("Sliding button", "3926");
  4290. _id.put("Whoopsie", "3927");
  4291. _id.put("Sliding button", "3928");
  4292. _id.put("Whoopsie", "3929");
  4293. _id.put("Sliding button", "3930");
  4294. _id.put("Whoopsie", "3931");
  4295. _id.put("Sliding button", "3932");
  4296. _id.put("Whoopsie", "3933");
  4297. _id.put("Sliding button", "3934");
  4298. _id.put("Whoopsie", "3935");
  4299. _id.put("Sliding button", "3936");
  4300. _id.put("Whoopsie", "3937");
  4301. _id.put("Sliding button", "3938");
  4302. _id.put("Whoopsie", "3939");
  4303. _id.put("Sliding button", "3940");
  4304. _id.put("Whoopsie", "3941");
  4305. _id.put("Sliding button", "3942");
  4306. _id.put("Whoopsie", "3943");
  4307. _id.put("Sliding button", "3944");
  4308. _id.put("Whoopsie", "3945");
  4309. _id.put("Sliding button", "3946");
  4310. _id.put("Whoopsie", "3947");
  4311. _id.put("Sliding button", "3948");
  4312. _id.put("Whoopsie", "3949");
  4313. _id.put("Sliding button", "3950");
  4314. _id.put("Whoopsie", "3951");
  4315. _id.put("Sliding button", "3952");
  4316. _id.put("Whoopsie", "3953");
  4317. _id.put("Sliding button", "3954");
  4318. _id.put("Whoopsie", "3955");
  4319. _id.put("Sliding button", "3956");
  4320. _id.put("Whoopsie", "3957");
  4321. _id.put("Sliding button", "3958");
  4322. _id.put("Whoopsie", "3959");
  4323. _id.put("Sliding button", "3960");
  4324. _id.put("Whoopsie", "3961");
  4325. _id.put("Sliding button", "3962");
  4326. _id.put("Whoopsie", "3963");
  4327. _id.put("Sliding button", "3964");
  4328. _id.put("Whoopsie", "3965");
  4329. _id.put("Sliding button", "3966");
  4330. _id.put("Whoopsie", "3967");
  4331. _id.put("Sliding button", "3968");
  4332. _id.put("Whoopsie", "3969");
  4333. _id.put("Sliding button", "3970");
  4334. _id.put("Whoopsie", "3971");
  4335. _id.put("Sliding button", "3972");
  4336. _id.put("Whoopsie", "3973");
  4337. _id.put("Sliding button", "3974");
  4338. _id.put("Whoopsie", "3975");
  4339. _id.put("Sliding button", "3976");
  4340. _id.put("Whoopsie", "3977");
  4341. _id.put("Sliding button", "3978");
  4342. _id.put("Whoopsie", "3979");
  4343. _id.put("Sliding button", "3980");
  4344. _id.put("Whoopsie", "3981");
  4345. _id.put("Sliding button", "3982");
  4346. _id.put("Whoopsie", "3983");
  4347. _id.put("Sliding button", "3984");
  4348. _id.put("Whoopsie", "3985");
  4349. _id.put("Sliding button", "3986");
  4350. _id.put("Whoopsie", "3987");
  4351. _id.put("Sliding button", "3988");
  4352. _id.put("Whoopsie", "3989");
  4353. _id.put("Sliding button", "3990");
  4354. _id.put("Whoopsie", "3991");
  4355. _id.put("Sliding button", "3992");
  4356. _id.put("Whoopsie", "3993");
  4357. _id.put("Sliding button", "3994");
  4358. _id.put("Whoopsie", "3995");
  4359. _id.put("Sliding button", "3996");
  4360. _id.put("Whoopsie", "3997");
  4361. _id.put("Sliding button", "3998");
  4362. _id.put("Whoopsie", "3999");
  4363. _id.put("Iodine", "4000");
  4364. _id.put("Shrine", "4001");
  4365. _id.put("Spare controls", "4002");
  4366. _id.put("Spare controls", "4003");
  4367. _id.put("Gnome royal seal", "4004");
  4368. _id.put("Narnode's orders", "4005");
  4369. _id.put("Monkey dentures", "4006");
  4370. _id.put("Enchanted bar", "4007");
  4371. _id.put("Eye of gnome", "4008");
  4372. _id.put("Eye of gnome", "4009");
  4373. _id.put("Monkey magic", "4010");
  4374. _id.put("Monkey magic", "4011");
  4375. _id.put("Monkey nuts", "4012");
  4376. _id.put("Monkey nuts", "4013");
  4377. _id.put("Monkey bar", "4014");
  4378. _id.put("Monkey bar", "4015");
  4379. _id.put("Banana stew", "4016");
  4380. _id.put("Banana stew", "4017");
  4381. _id.put("Monkey wrench", "4018");
  4382. _id.put("Monkey wrench", "4019");
  4383. _id.put("M'amulet mould", "4020");
  4384. _id.put("M'speak amulet", "4021");
  4385. _id.put("M'speak amulet", "4022");
  4386. _id.put("Monkey talisman", "4023");
  4387. _id.put("Monkey greegree", "4024");
  4388. _id.put("Monkey greegree", "4025");
  4389. _id.put("Monkey greegree", "4026");
  4390. _id.put("Monkey greegree", "4027");
  4391. _id.put("Monkey greegree", "4028");
  4392. _id.put("Monkey greegree", "4029");
  4393. _id.put("Monkey greegree", "4030");
  4394. _id.put("Monkey greegree", "4031");
  4395. _id.put("Dummy", "4032");
  4396. _id.put("Monkey", "4033");
  4397. _id.put("Monkey skull", "4034");
  4398. _id.put("10th squad sigil", "4035");
  4399. _id.put("Whoopsie", "4036");
  4400. _id.put("Saradomin banner", "4037");
  4401. _id.put("Saradomin banner", "4038");
  4402. _id.put("Zamorak banner", "4039");
  4403. _id.put("Zamorak banner", "4040");
  4404. _id.put("Hooded cloak", "4041");
  4405. _id.put("Hooded cloak", "4042");
  4406. _id.put("Rock", "4043");
  4407. _id.put("Rock", "4044");
  4408. _id.put("Explosive potion", "4045");
  4409. _id.put("Explosive potion", "4046");
  4410. _id.put("Climbing rope", "4047");
  4411. _id.put("Climbing rope", "4048");
  4412. _id.put("Bandages", "4049");
  4413. _id.put("Bandages", "4050");
  4414. _id.put("Toolbox", "4051");
  4415. _id.put("Toolbox", "4052");
  4416. _id.put("Barricade", "4053");
  4417. _id.put("Barricade", "4054");
  4418. _id.put("Castlewars manual", "4055");
  4419. _id.put("Castle wars ticket", "4067");
  4420. _id.put("Decorative sword", "4068");
  4421. _id.put("Decorative armour", "4069");
  4422. _id.put("Decorative armour", "4070");
  4423. _id.put("Decorative helm", "4071");
  4424. _id.put("Decorative shield", "4072");
  4425. _id.put("Damp tinderbox", "4073");
  4426. _id.put("Damp tinderbox", "4074");
  4427. _id.put("Glowing fungus", "4075");
  4428. _id.put("Nezikchened's mum", "4076");
  4429. _id.put("Crystal-mine key", "4077");
  4430. _id.put("Zealot's key", "4078");
  4431. _id.put("Yo-yo", "4079");
  4432. _id.put("Salve amulet", "4081");
  4433. _id.put("Salve shard", "4082");
  4434. _id.put("Sled", "4083");
  4435. _id.put("Sled", "4084");
  4436. _id.put("Wax", "4085");
  4437. _id.put("Trollweiss", "4086");
  4438. _id.put("Dragon platelegs", "4087");
  4439. _id.put("Dragon platelegs", "4088");
  4440. _id.put("Mystic hat", "4089");
  4441. _id.put("Mystic hat", "4090");
  4442. _id.put("Mystic robe top", "4091");
  4443. _id.put("Mystic robe top", "4092");
  4444. _id.put("Mystic robe bottom", "4093");
  4445. _id.put("Mystic robe bottom", "4094");
  4446. _id.put("Mystic gloves", "4095");
  4447. _id.put("Mystic gloves", "4096");
  4448. _id.put("Mystic boots", "4097");
  4449. _id.put("Mystic boots", "4098");
  4450. _id.put("Mystic hat", "4099");
  4451. _id.put("Mystic hat", "4100");
  4452. _id.put("Mystic robe top", "4101");
  4453. _id.put("Mystic robe top", "4102");
  4454. _id.put("Mystic robe bottom", "4103");
  4455. _id.put("Mystic robe bottom", "4104");
  4456. _id.put("Mystic gloves", "4105");
  4457. _id.put("Mystic gloves", "4106");
  4458. _id.put("Mystic boots", "4107");
  4459. _id.put("Mystic boots", "4108");
  4460. _id.put("Mystic hat", "4109");
  4461. _id.put("Mystic hat", "4110");
  4462. _id.put("Mystic robe top", "4111");
  4463. _id.put("Mystic robe top", "4112");
  4464. _id.put("Mystic robe bottom", "4113");
  4465. _id.put("Mystic robe bottom", "4114");
  4466. _id.put("Mystic gloves", "4115");
  4467. _id.put("Mystic gloves", "4116");
  4468. _id.put("Mystic boots", "4117");
  4469. _id.put("Mystic boots", "4118");
  4470. _id.put("Bronze boots", "4119");
  4471. _id.put("Bronze boots", "4120");
  4472. _id.put("Iron boots", "4121");
  4473. _id.put("Iron boots", "4122");
  4474. _id.put("Steel boots", "4123");
  4475. _id.put("Steel boots", "4124");
  4476. _id.put("Black boots", "4125");
  4477. _id.put("Black boots", "4126");
  4478. _id.put("Mithril boots", "4127");
  4479. _id.put("Mithril boots", "4128");
  4480. _id.put("Adamant boots", "4129");
  4481. _id.put("Adamant boots", "4130");
  4482. _id.put("Rune boots", "4131");
  4483. _id.put("Rune boots", "4132");
  4484. _id.put("Crawling hand", "4133");
  4485. _id.put("Cave crawler", "4134");
  4486. _id.put("Banshee", "4135");
  4487. _id.put("Rockslug", "4136");
  4488. _id.put("Cockatrice", "4137");
  4489. _id.put("Pyrefiend", "4138");
  4490. _id.put("Basilisk", "4139");
  4491. _id.put("Infernal mage", "4140");
  4492. _id.put("Bloodveld", "4141");
  4493. _id.put("Jelly", "4142");
  4494. _id.put("Turoth", "4143");
  4495. _id.put("Aberrant specter", "4144");
  4496. _id.put("Dust devil", "4145");
  4497. _id.put("Kurask", "4146");
  4498. _id.put("Gargoyle", "4147");
  4499. _id.put("Nechryael", "4148");
  4500. _id.put("Abyssal demon", "4149");
  4501. _id.put("Broad arrows", "4150");
  4502. _id.put("Abyssal whip", "4151");
  4503. _id.put("Abyssal whip", "4152");
  4504. _id.put("Granite maul", "4153");
  4505. _id.put("Granite maul", "4154");
  4506. _id.put("Enchanted gem", "4155");
  4507. _id.put("Mirror shield", "4156");
  4508. _id.put("Mirror shield", "4157");
  4509. _id.put("Leaf-bladed spear", "4158");
  4510. _id.put("Leaf-bladed spear", "4159");
  4511. _id.put("Broad arrows", "4160");
  4512. _id.put("Bag of salt", "4161");
  4513. _id.put("Rock hammer", "4162");
  4514. _id.put("Rock hammer", "4163");
  4515. _id.put("Facemask", "4164");
  4516. _id.put("Facemask", "4165");
  4517. _id.put("Earmuffs", "4166");
  4518. _id.put("Earmuffs", "4167");
  4519. _id.put("Nose peg", "4168");
  4520. _id.put("Nose peg", "4169");
  4521. _id.put("Slayer's staff", "4170");
  4522. _id.put("Slayer's staff", "4171");
  4523. _id.put("Broad arrows", "4172");
  4524. _id.put("Broad arrows", "4173");
  4525. _id.put("Broad arrows", "4174");
  4526. _id.put("Broad arrows", "4175");
  4527. _id.put("Wolfbane lever", "4177");
  4528. _id.put("Olive stuffer", "4178");
  4529. _id.put("Stick", "4179");
  4530. _id.put("Coconut bunch", "4180");
  4531. _id.put("Mouth grip", "4181");
  4532. _id.put("Elven sheep", "4182");
  4533. _id.put("Star amulet", "4183");
  4534. _id.put("Cavern key", "4184");
  4535. _id.put("Tower key", "4185");
  4536. _id.put("Shed key", "4186");
  4537. _id.put("Marble amulet", "4187");
  4538. _id.put("Obsidian amulet", "4188");
  4539. _id.put("Garden cane", "4189");
  4540. _id.put("Garden brush", "4190");
  4541. _id.put("Extended brush", "4191");
  4542. _id.put("Extended brush", "4192");
  4543. _id.put("Extended brush", "4193");
  4544. _id.put("Torso", "4194");
  4545. _id.put("Arms", "4195");
  4546. _id.put("Legs", "4196");
  4547. _id.put("Decapitated head", "4197");
  4548. _id.put("Decapitated head", "4198");
  4549. _id.put("Pickled brain", "4199");
  4550. _id.put("Conductor mould", "4200");
  4551. _id.put("Conductor", "4201");
  4552. _id.put("Ring of charos", "4202");
  4553. _id.put("Journal", "4203");
  4554. _id.put("Letter", "4204");
  4555. _id.put("Consecration seed", "4205");
  4556. _id.put("Consecration seed", "4206");
  4557. _id.put("Crystal seed", "4207");
  4558. _id.put("Crystal seed", "4208");
  4559. _id.put("Cadarn lineage", "4209");
  4560. _id.put("Cadarn lineage", "4210");
  4561. _id.put("Elf crystal", "4211");
  4562. _id.put("New crystal bow", "4212");
  4563. _id.put("New crystal bow", "4213");
  4564. _id.put("Crystal bow full", "4214");
  4565. _id.put("Crystal bow 9/10", "4215");
  4566. _id.put("Crystal bow 8/10", "4216");
  4567. _id.put("Crystal bow 7/10", "4217");
  4568. _id.put("Crystal bow 6/10", "4218");
  4569. _id.put("Crystal bow 5/10", "4219");
  4570. _id.put("Crystal bow 4/10", "4220");
  4571. _id.put("Crystal bow 3/10", "4221");
  4572. _id.put("Crystal bow 2/10", "4222");
  4573. _id.put("Crystal bow 1/10", "4223");
  4574. _id.put("New crystal shield", "4224");
  4575. _id.put("Crystal shield full", "4225");
  4576. _id.put("Crystal shield 9/10", "4226");
  4577. _id.put("Crystal shield 8/10", "4227");
  4578. _id.put("Crystal shield 7/10", "4228");
  4579. _id.put("Crystal shield 6/10", "4229");
  4580. _id.put("Crystal shield 5/10", "4230");
  4581. _id.put("Crystal shield 4/10", "4231");
  4582. _id.put("Crystal shield 3/10", "4232");
  4583. _id.put("Crystal shield 2/10", "4233");
  4584. _id.put("Crystal shield 1/10", "4234");
  4585. _id.put("New crystal shield", "4235");
  4586. _id.put("Oak longbow", "4236");
  4587. _id.put("Nettle-water", "4237");
  4588. _id.put("Puddle of slime", "4238");
  4589. _id.put("Nettle tea", "4239");
  4590. _id.put("Nettle tea", "4240");
  4591. _id.put("Nettles", "4241");
  4592. _id.put("Cup of tea", "4242");
  4593. _id.put("Cup of tea", "4243");
  4594. _id.put("Porcelain cup", "4244");
  4595. _id.put("Cup of tea", "4245");
  4596. _id.put("Cup of tea", "4246");
  4597. _id.put("Mystical robes", "4247");
  4598. _id.put("Book of haricanto", "4248");
  4599. _id.put("Translation manual", "4249");
  4600.  
  4601.  
  4602. _id.put("Ectophial", "4251");
  4603. _id.put("Ectophial", "4252");
  4604. _id.put("Model ship", "4253");
  4605. _id.put("Model ship", "4254");
  4606. _id.put("Bonemeal", "4255");
  4607. _id.put("Bonemeal", "4256");
  4608. _id.put("Bonemeal", "4257");
  4609. _id.put("Bonemeal", "4258");
  4610. _id.put("Bonemeal", "4259");
  4611. _id.put("Bonemeal", "4260");
  4612. _id.put("Bonemeal", "4261");
  4613. _id.put("Bonemeal", "4262");
  4614. _id.put("Bonemeal", "4263");
  4615. _id.put("Bonemeal", "4264");
  4616. _id.put("Bonemeal", "4265");
  4617. _id.put("Bonemeal", "4266");
  4618. _id.put("Bonemeal", "4267");
  4619. _id.put("Bonemeal", "4268");
  4620. _id.put("Bonemeal", "4269");
  4621. _id.put("Bonemeal", "4270");
  4622. _id.put("Bonemeal", "4271");
  4623. _id.put("Bone key", "4272");
  4624. _id.put("Chest key", "4273");
  4625. _id.put("Map scrap", "4274");
  4626. _id.put("Map scrap", "4275");
  4627. _id.put("Map scrap", "4276");
  4628. _id.put("Treasure map", "4277");
  4629. _id.put("Ecto-token", "4278");
  4630. _id.put("Whoopsie", "4280");
  4631. _id.put("Whoopsie", "4282");
  4632. _id.put("Petition form", "4283");
  4633. _id.put("Bedsheet", "4284");
  4634. _id.put("Bedsheet", "4285");
  4635. _id.put("Bucket of slime", "4286");
  4636. _id.put("Raw beef", "4287");
  4637. _id.put("Raw beef", "4288");
  4638. _id.put("Raw chicken", "4289");
  4639. _id.put("Raw chicken", "4290");
  4640. _id.put("Cooked chicken", "4291");
  4641. _id.put("Cooked chicken", "4292");
  4642. _id.put("Cooked meat", "4293");
  4643. _id.put("Cooked meat", "4294");
  4644. _id.put("Female ham", "4295");
  4645. _id.put("Whoopsie", "4296");
  4646. _id.put("Male ham", "4297");
  4647. _id.put("Ham shirt", "4298");
  4648. _id.put("Ham shirt", "4299");
  4649. _id.put("Ham robe", "4300");
  4650. _id.put("Ham robe", "4301");
  4651. _id.put("Ham hood", "4302");
  4652. _id.put("Ham hood", "4303");
  4653. _id.put("Ham cloak", "4304");
  4654. _id.put("Ham cloak", "4305");
  4655. _id.put("H.a.m logo", "4306");
  4656. _id.put("H.a.m logo", "4307");
  4657. _id.put("Gloves", "4308");
  4658. _id.put("Gloves", "4309");
  4659. _id.put("Boots", "4310");
  4660. _id.put("Boots", "4311");
  4661. _id.put("Whoopsie", "4312");
  4662. _id.put("Crystal of seren", "4313");
  4663. _id.put("Crystal of seren", "4314");
  4664. _id.put("Team-1 cape", "4315");
  4665. _id.put("Team-1 cape", "4316");
  4666. _id.put("Team-2 cape", "4317");
  4667. _id.put("Team-2 cape", "4318");
  4668. _id.put("Team-3 cape", "4319");
  4669. _id.put("Team-3 cape", "4320");
  4670. _id.put("Team-4 cape", "4321");
  4671. _id.put("Team-4 cape", "4322");
  4672. _id.put("Team-5 cape", "4323");
  4673. _id.put("Team-5 cape", "4324");
  4674. _id.put("Team-6 cape", "4325");
  4675. _id.put("Team-6 cape", "4326");
  4676. _id.put("Team-7 cape", "4327");
  4677. _id.put("Team-7 cape", "4328");
  4678. _id.put("Team-8 cape", "4329");
  4679. _id.put("Team-8 cape", "4330");
  4680. _id.put("Team-9 cape", "4331");
  4681. _id.put("Team-9 cape", "4332");
  4682. _id.put("Team-10 cape", "4333");
  4683. _id.put("Team-10 cape", "4334");
  4684. _id.put("Team-11 cape", "4335");
  4685. _id.put("Team-11 cape", "4336");
  4686. _id.put("Team-12 cape", "4337");
  4687. _id.put("Team-12 cape", "4338");
  4688. _id.put("Team-13 cape", "4339");
  4689. _id.put("Team-13 cape", "4340");
  4690. _id.put("Team-14 cape", "4341");
  4691. _id.put("Team-14 cape", "4342");
  4692. _id.put("Team-15 cape", "4343");
  4693. _id.put("Team-15 cape", "4344");
  4694. _id.put("Team-16 cape", "4345");
  4695. _id.put("Team-16 cape", "4346");
  4696. _id.put("Team-17 cape", "4347");
  4697. _id.put("Team-17 cape", "4348");
  4698. _id.put("Team-18 cape", "4349");
  4699. _id.put("Team-18 cape", "4350");
  4700. _id.put("Team-19 cape", "4351");
  4701. _id.put("Team-19 cape", "4352");
  4702. _id.put("Team-20 cape", "4353");
  4703. _id.put("Team-20 cape", "4354");
  4704. _id.put("Team-21 cape", "4355");
  4705. _id.put("Team-21 cape", "4356");
  4706. _id.put("Team-22 cape", "4357");
  4707. _id.put("Team-22 cape", "4358");
  4708. _id.put("Team-23 cape", "4359");
  4709. _id.put("Team-23 cape", "4360");
  4710. _id.put("Team-24 cape", "4361");
  4711. _id.put("Team-24 cape", "4362");
  4712. _id.put("Team-25 cape", "4363");
  4713. _id.put("Team-25 cape", "4364");
  4714. _id.put("Team-26 cape", "4365");
  4715. _id.put("Team-26 cape", "4366");
  4716. _id.put("Team-27 cape", "4367");
  4717. _id.put("Team-27 cape", "4368");
  4718. _id.put("Team-28 cape", "4369");
  4719. _id.put("Team-28 cape", "4370");
  4720. _id.put("Team-29 cape", "4371");
  4721. _id.put("Team-29 cape", "4372");
  4722. _id.put("Team-30 cape", "4373");
  4723. _id.put("Team-30 cape", "4374");
  4724. _id.put("Team-31 cape", "4375");
  4725. _id.put("Team-31 cape", "4376");
  4726. _id.put("Team-32 cape", "4377");
  4727. _id.put("Team-32 cape", "4378");
  4728. _id.put("Team-33 cape", "4379");
  4729. _id.put("Team-33 cape", "4380");
  4730. _id.put("Team-34 cape", "4381");
  4731. _id.put("Team-34 cape", "4382");
  4732. _id.put("Team-35 cape", "4383");
  4733. _id.put("Team-35 cape", "4384");
  4734. _id.put("Team-36 cape", "4385");
  4735. _id.put("Team-36 cape", "4386");
  4736. _id.put("Team-37 cape", "4387");
  4737. _id.put("Team-37 cape", "4388");
  4738. _id.put("Team-38 cape", "4389");
  4739. _id.put("Team-38 cape", "4390");
  4740. _id.put("Team-39 cape", "4391");
  4741. _id.put("Team-39 cape", "4392");
  4742. _id.put("Team-40 cape", "4393");
  4743. _id.put("Team-40 cape", "4394");
  4744. _id.put("Team-41 cape", "4395");
  4745. _id.put("Team-41 cape", "4396");
  4746. _id.put("Team-42 cape", "4397");
  4747. _id.put("Team-42 cape", "4398");
  4748. _id.put("Team-43 cape", "4399");
  4749. _id.put("Team-43 cape", "4400");
  4750. _id.put("Team-44 cape", "4401");
  4751. _id.put("Team-44 cape", "4402");
  4752. _id.put("Team-45 cape", "4403");
  4753. _id.put("Team-45 cape", "4404");
  4754. _id.put("Team-46 cape", "4405");
  4755. _id.put("Team-46 cape", "4406");
  4756. _id.put("Team-47 cape", "4407");
  4757. _id.put("Team-47 cape", "4408");
  4758. _id.put("Team-48 cape", "4409");
  4759. _id.put("Team-48 cape", "4410");
  4760. _id.put("Team-49 cape", "4411");
  4761. _id.put("Team-49 cape", "4412");
  4762. _id.put("Team-50 cape", "4413");
  4763. _id.put("Team-50 cape", "4414");
  4764. _id.put("Blunt axe", "4415");
  4765. _id.put("Herbal tincture", "4416");
  4766. _id.put("Guthix rest(4)", "4417");
  4767. _id.put("Guthix rest(4)", "4418");
  4768. _id.put("Guthix rest(3)", "4419");
  4769. _id.put("Guthix rest(3)", "4420");
  4770. _id.put("Guthix rest(2)", "4421");
  4771. _id.put("Guthix rest(2)", "4422");
  4772. _id.put("Guthix rest(1)", "4423");
  4773. _id.put("Guthix rest(1)", "4424");
  4774. _id.put("Stodgy mattress", "4425");
  4775. _id.put("Comfy mattress", "4426");
  4776. _id.put("Iron oxide", "4427");
  4777. _id.put("Animate rock scroll", "4428");
  4778. _id.put("Broken vane part", "4429");
  4779. _id.put("Directionals", "4430");
  4780. _id.put("Broken vane part", "4431");
  4781. _id.put("Ornament", "4432");
  4782. _id.put("Broken vane part", "4433");
  4783. _id.put("Weathervane pillar", "4434");
  4784. _id.put("Weather report", "4435");
  4785. _id.put("Airtight pot", "4436");
  4786. _id.put("Airtight pot", "4437");
  4787. _id.put("Unfired pot lid", "4438");
  4788. _id.put("Unfired pot lid", "4439");
  4789. _id.put("Pot lid", "4440");
  4790. _id.put("Pot lid", "4441");
  4791. _id.put("Breathing salts", "4442");
  4792. _id.put("Chicken cage", "4443");
  4793. _id.put("Sharpened axe", "4444");
  4794. _id.put("Red mahogany log", "4445");
  4795. _id.put("Steel key ring", "4446");
  4796. _id.put("Antique lamp", "4447");
  4797. _id.put("Whoopsie", "4449");
  4798. _id.put("Whoopsie", "4451");
  4799. _id.put("Whoopsie", "4453");
  4800. _id.put("Whoopsie", "4455");
  4801. _id.put("Bowl of hot water", "4456");
  4802. _id.put("Bowl of hot water", "4457");
  4803. _id.put("Cup of water", "4458");
  4804. _id.put("Cup of water", "4459");
  4805. _id.put("Cup of hot water", "4460");
  4806. _id.put("Cup of hot water", "4461");
  4807. _id.put("Ruined herb tea", "4462");
  4808. _id.put("Ruined herb tea", "4463");
  4809. _id.put("Herb tea mix", "4464");
  4810. _id.put("Herb tea mix", "4465");
  4811. _id.put("Herb tea mix", "4466");
  4812. _id.put("Herb tea mix", "4467");
  4813. _id.put("Herb tea mix", "4468");
  4814. _id.put("Herb tea mix", "4469");
  4815. _id.put("Herb tea mix", "4470");
  4816. _id.put("Herb tea mix", "4471");
  4817. _id.put("Herb tea mix", "4472");
  4818. _id.put("Herb tea mix", "4473");
  4819. _id.put("Herb tea mix", "4474");
  4820. _id.put("Herb tea mix", "4475");
  4821. _id.put("Herb tea mix", "4476");
  4822. _id.put("Herb tea mix", "4477");
  4823. _id.put("Herb tea mix", "4478");
  4824. _id.put("Herb tea mix", "4479");
  4825. _id.put("Herb tea mix", "4480");
  4826. _id.put("Herb tea mix", "4481");
  4827. _id.put("Herb tea mix", "4482");
  4828. _id.put("Herb tea mix", "4483");
  4829. _id.put("Safety guarantee", "4484");
  4830. _id.put("White pearl", "4485");
  4831. _id.put("White pearl seed", "4486");
  4832. _id.put("Half a rock", "4487");
  4833. _id.put("Corpse of woman", "4488");
  4834. _id.put("Asleif's necklace", "4489");
  4835. _id.put("Mud", "4490");
  4836. _id.put("Mud", "4491");
  4837. _id.put("Rock", "4492");
  4838. _id.put("Rock", "4493");
  4839. _id.put("Pole", "4494");
  4840. _id.put("Pole", "4495");
  4841. _id.put("Broken pole", "4496");
  4842. _id.put("Broken pole", "4497");
  4843. _id.put("Rope", "4498");
  4844. _id.put("Rope", "4499");
  4845. _id.put("Pole", "4500");
  4846. _id.put("Pole", "4501");
  4847. _id.put("Bearhead", "4502");
  4848. _id.put("Decorative sword", "4503");
  4849. _id.put("Decorative armour", "4504");
  4850. _id.put("Decorative armour", "4505");
  4851. _id.put("Decorative helm", "4506");
  4852. _id.put("Decorative shield", "4507");
  4853. _id.put("Decorative sword", "4508");
  4854. _id.put("Decorative armour", "4509");
  4855. _id.put("Decorative armour", "4510");
  4856. _id.put("Decorative helm", "4511");
  4857. _id.put("Decorative shield", "4512");
  4858. _id.put("Castlewars hood", "4513");
  4859. _id.put("Castlewars cloak", "4514");
  4860. _id.put("Castlewars hood", "4515");
  4861. _id.put("Castlewars cloak", "4516");
  4862. _id.put("Giant frog legs", "4517");
  4863. _id.put("Giant frog legs", "4518");
  4864. _id.put("Swamp wallbeast", "4519");
  4865. _id.put("Swamp cave slime", "4520");
  4866. _id.put("Swamp cave bug", "4521");
  4867. _id.put("Oil lamp", "4522");
  4868. _id.put("Oil lamp", "4523");
  4869. _id.put("Oil lamp", "4524");
  4870. _id.put("Oil lamp", "4525");
  4871. _id.put("Oil lamp", "4526");
  4872. _id.put("Candle lantern", "4527");
  4873. _id.put("Candle lantern", "4528");
  4874. _id.put("Candle lantern", "4529");
  4875. _id.put("Candle lantern", "4530");
  4876. _id.put("Candle lantern", "4531");
  4877. _id.put("Candle lantern", "4532");
  4878. _id.put("Candle lantern", "4533");
  4879. _id.put("Candle lantern", "4534");
  4880. _id.put("Oil lantern", "4535");
  4881. _id.put("Oil lantern", "4536");
  4882. _id.put("Oil lantern", "4537");
  4883. _id.put("Oil lantern", "4538");
  4884. _id.put("Oil lantern", "4539");
  4885. _id.put("Oil lantern frame", "4540");
  4886. _id.put("Oil lantern frame", "4541");
  4887. _id.put("Lantern lens", "4542");
  4888. _id.put("Lantern lens", "4543");
  4889. _id.put("Bullseye lantern", "4544");
  4890. _id.put("Bullseye lantern", "4545");
  4891. _id.put("Bullseye lantern", "4546");
  4892. _id.put("Bullseye lantern", "4547");
  4893. _id.put("Bullseye lantern", "4548");
  4894. _id.put("Bullseye lantern", "4549");
  4895. _id.put("Bullseye lantern", "4550");
  4896. _id.put("Spiny helmet", "4551");
  4897. _id.put("Spiny helmet", "4552");
  4898. _id.put("Blue sweets", "4558");
  4899. _id.put("Deep blue sweets", "4559");
  4900. _id.put("White sweets", "4560");
  4901. _id.put("Purple sweets", "4561");
  4902. _id.put("Red sweets", "4562");
  4903. _id.put("Green sweets", "4563");
  4904. _id.put("Pink sweets", "4564");
  4905. _id.put("Basket of eggs", "4565");
  4906. _id.put("Rubber chicken", "4566");
  4907. _id.put("Gold helmet", "4567");
  4908. _id.put("Dwarven lore", "4568");
  4909. _id.put("Book page 1", "4569");
  4910. _id.put("Book page 2", "4570");
  4911. _id.put("Book page 3", "4571");
  4912. _id.put("Pages", "4572");
  4913. _id.put("Pages", "4573");
  4914. _id.put("Base schematics", "4574");
  4915. _id.put("Schematic", "4575");
  4916. _id.put("Schematics", "4576");
  4917. _id.put("Schematics", "4577");
  4918. _id.put("Schematic", "4578");
  4919. _id.put("Cannon ball", "4579");
  4920. _id.put("Black spear", "4580");
  4921. _id.put("Black spear", "4581");
  4922. _id.put("Black spear(p)", "4582");
  4923. _id.put("Black spear(p)", "4583");
  4924. _id.put("Black spear(kp)", "4584");
  4925. _id.put("Dragon plateskirt", "4585");
  4926. _id.put("Dragon plateskirt", "4586");
  4927. _id.put("Dragon scimitar", "4587");
  4928. _id.put("Dragon scimitar", "4588");
  4929. _id.put("Keys", "4589");
  4930. _id.put("Jewels", "4590");
  4931. _id.put("Karidian headpiece", "4591");
  4932. _id.put("Karidian headpiece", "4592");
  4933. _id.put("Fake beard", "4593");
  4934. _id.put("Fake beard", "4594");
  4935. _id.put("Karidian disguise", "4595");
  4936. _id.put("Karidian disguise", "4596");
  4937. _id.put("Note", "4597");
  4938. _id.put("Note", "4598");
  4939. _id.put("Oak-blackjack", "4599");
  4940. _id.put("Willow-blackjack", "4600");
  4941. _id.put("Ugthanki dung", "4601");
  4942. _id.put("Ugthanki dung", "4602");
  4943. _id.put("Receipt", "4603");
  4944. _id.put("Hag's poison", "4604");
  4945. _id.put("Snake charm", "4605");
  4946. _id.put("Snake basket", "4606");
  4947. _id.put("Snake basket full", "4607");
  4948. _id.put("Super kebab", "4608");
  4949. _id.put("Super kebab", "4609");
  4950. _id.put("Red hot sauce", "4610");
  4951. _id.put("Desert disguise", "4611");
  4952. _id.put("Willow-blackjack", "4612");
  4953. _id.put("Spinning plate", "4613");
  4954. _id.put("Broken plate", "4614");
  4955. _id.put("Letter", "4615");
  4956. _id.put("Varmen's notes", "4616");
  4957. _id.put("Display cabinet key", "4617");
  4958. _id.put("Statuette", "4618");
  4959. _id.put("Strange implement", "4619");
  4960. _id.put("Black mushroom", "4620");
  4961. _id.put("Phoenix feather", "4621");
  4962. _id.put("Black mushroom ink", "4622");
  4963. _id.put("Phoenix quill pen", "4623");
  4964. _id.put("Golem program", "4624");
  4965. _id.put("Bandit", "4625");
  4966. _id.put("Whoopsie", "4626");
  4967. _id.put("Bandit's brew", "4627");
  4968. _id.put("Bandit's brew", "4628");
  4969. _id.put("Fire", "4653");
  4970. _id.put("Etchings", "4654");
  4971. _id.put("Translation", "4655");
  4972. _id.put("Warm key", "4656");
  4973. _id.put("Ring of visibility", "4657");
  4974. _id.put("Silver pot", "4658");
  4975. _id.put("Blessed pot", "4659");
  4976. _id.put("Silver pot", "4660");
  4977. _id.put("Blessed pot", "4661");
  4978. _id.put("Silver pot", "4662");
  4979. _id.put("Blessed pot", "4663");
  4980. _id.put("Silver pot", "4664");
  4981. _id.put("Blessed pot", "4665");
  4982. _id.put("Silver pot", "4666");
  4983. _id.put("Blessed pot", "4667");
  4984. _id.put("Garlic powder", "4668");
  4985. _id.put("Garlic powder", "4669");
  4986. _id.put("Blood diamond", "4670");
  4987. _id.put("Ice diamond", "4671");
  4988. _id.put("Smoke diamond", "4672");
  4989. _id.put("Shadow diamond", "4673");
  4990. _id.put("Gilded cross", "4674");
  4991. _id.put("Ancient staff", "4675");
  4992. _id.put("Ancient staff", "4676");
  4993. _id.put("Catspeak amulet", "4677");
  4994. _id.put("Canopic jar", "4678");
  4995. _id.put("Canopic jar", "4679");
  4996. _id.put("Canopic jar", "4680");
  4997. _id.put("Canopic jar", "4681");
  4998. _id.put("Holy symbol", "4682");
  4999. _id.put("Unholy symbol", "4683");
  5000. _id.put("Linen", "4684");
  5001. _id.put("Linen", "4685");
  5002. _id.put("Embalming manual", "4686");
  5003. _id.put("Bucket of sap", "4687");
  5004. _id.put("Bucket of sap", "4688");
  5005. _id.put("Pile of salt", "4689");
  5006. _id.put("Pile of salt", "4690");
  5007. _id.put("Sphinx's token", "4691");
  5008. _id.put("Gold leaf", "4692");
  5009. _id.put("Full bucket", "4693");
  5010. _id.put("Steam rune", "4694");
  5011. _id.put("Mist rune", "4695");
  5012. _id.put("Dust rune", "4696");
  5013. _id.put("Smoke rune", "4697");
  5014. _id.put("Mud rune", "4698");
  5015. _id.put("Lava rune", "4699");
  5016. _id.put("Sapphire lantern", "4700");
  5017. _id.put("Sapphire lantern", "4701");
  5018. _id.put("Sapphire lantern", "4702");
  5019. _id.put("Magic stone", "4703");
  5020. _id.put("Stone bowl", "4704");
  5021. _id.put("Whoopsie", "4706");
  5022. _id.put("Crumbling tome", "4707");
  5023. _id.put("Ahrims hood", "4708");
  5024. _id.put("Ahrims hood", "4709");
  5025. _id.put("Ahrims staff", "4710");
  5026. _id.put("Ahrims staff", "4711");
  5027. _id.put("Ahrims robetop", "4712");
  5028. _id.put("Ahrims robetop", "4713");
  5029. _id.put("Ahrims robeskirt", "4714");
  5030. _id.put("Ahrims robeskirt", "4715");
  5031. _id.put("Dharoks helm", "4716");
  5032. _id.put("Dharoks helm", "4717");
  5033. _id.put("Dharoks greataxe", "4718");
  5034. _id.put("Dharoks greataxe", "4719");
  5035. _id.put("Dharoks platebody", "4720");
  5036. _id.put("Dharoks platebody", "4721");
  5037. _id.put("Dharoks platelegs", "4722");
  5038. _id.put("Dharoks platelegs", "4723");
  5039. _id.put("Guthans helm", "4724");
  5040. _id.put("Guthans helm", "4725");
  5041. _id.put("Guthans warspear", "4726");
  5042. _id.put("Guthans warspear", "4727");
  5043. _id.put("Guthans platebody", "4728");
  5044. _id.put("Guthans platebody", "4729");
  5045. _id.put("Guthans chainskirt", "4730");
  5046. _id.put("Guthans chainskirt", "4731");
  5047. _id.put("Karils coif", "4732");
  5048. _id.put("Karils coif", "4733");
  5049. _id.put("Karils crossbow", "4734");
  5050. _id.put("Karils crossbow", "4735");
  5051. _id.put("Karils leathertop", "4736");
  5052. _id.put("Karils leathertop", "4737");
  5053. _id.put("Karils leatherskirt", "4738");
  5054. _id.put("Karils leatherskirt", "4739");
  5055. _id.put("Bolt rack", "4740");
  5056. _id.put("Torags helm", "4745");
  5057. _id.put("Torags helm", "4746");
  5058. _id.put("Torags hammers", "4747");
  5059. _id.put("Torags hammers", "4748");
  5060. _id.put("Torags platebody", "4749");
  5061. _id.put("Torags platebody", "4750");
  5062. _id.put("Torags platelegs", "4751");
  5063. _id.put("Torags platelegs", "4752");
  5064. _id.put("Veracs helm", "4753");
  5065. _id.put("Veracs helm", "4754");
  5066. _id.put("Veracs flail", "4755");
  5067. _id.put("Veracs flail", "4756");
  5068. _id.put("Veracs brassard", "4757");
  5069. _id.put("Veracs brassard", "4758");
  5070. _id.put("Veracs plateskirt", "4759");
  5071. _id.put("Veracs plateskirt", "4760");
  5072. _id.put("Bronze brutal", "4773");
  5073. _id.put("Iron brutal", "4778");
  5074. _id.put("Steel brutal", "4783");
  5075. _id.put("Black brutal", "4788");
  5076. _id.put("Mithril brutal", "4793");
  5077. _id.put("Adamant brutal", "4798");
  5078. _id.put("Rune brutal", "4803");
  5079. _id.put("Black prism", "4808");
  5080. _id.put("Torn page", "4809");
  5081. _id.put("Ruined backpack", "4810");
  5082. _id.put("Dragon inn tankard", "4811");
  5083. _id.put("Zogre bones", "4812");
  5084. _id.put("Zogre bones", "4813");
  5085. _id.put("Sithik portrait", "4814");
  5086. _id.put("Sithik portrait", "4815");
  5087. _id.put("Signed portrait", "4816");
  5088. _id.put("Book of portraiture", "4817");
  5089. _id.put("Ogre artefact", "4818");
  5090. _id.put("Bronze nails", "4819");
  5091. _id.put("Iron nails", "4820");
  5092. _id.put("Black nails", "4821");
  5093. _id.put("Mithril nails", "4822");
  5094. _id.put("Adamantite nails", "4823");
  5095. _id.put("Rune nails", "4824");
  5096. _id.put("Unstrung comp bow", "4825");
  5097. _id.put("Unstrung comp bow", "4826");
  5098. _id.put("Comp ogre bow", "4827");
  5099. _id.put("Comp ogre bow", "4828");
  5100. _id.put("Book of 'h.a.m'", "4829");
  5101. _id.put("Fayrg bones", "4830");
  5102. _id.put("Fayrg bones", "4831");
  5103. _id.put("Raurg bones", "4832");
  5104. _id.put("Raurg bones", "4833");
  5105. _id.put("Ourg bones", "4834");
  5106. _id.put("Ourg bones", "4835");
  5107. _id.put("Strange potion", "4836");
  5108. _id.put("Necromancy book", "4837");
  5109. _id.put("Cup of tea", "4838");
  5110. _id.put("Ogre gate key", "4839");
  5111. _id.put("Unfinished potion", "4840");
  5112. _id.put("Unfinished potion", "4841");
  5113. _id.put("Relicym's balm(4)", "4842");
  5114. _id.put("Relicym's balm(4)", "4843");
  5115. _id.put("Relicym's balm(3)", "4844");
  5116. _id.put("Relicym's balm(3)", "4845");
  5117. _id.put("Relicym's balm(2)", "4846");
  5118. _id.put("Relicym's balm(2)", "4847");
  5119. _id.put("Relicym's balm(1)", "4848");
  5120. _id.put("Relicym's balm(1)", "4849");
  5121. _id.put("Ogre coffin key", "4850");
  5122. _id.put("Ogre coffin key", "4851");
  5123. _id.put("Bonemeal", "4852");
  5124. _id.put("Bonemeal", "4853");
  5125. _id.put("Bonemeal", "4854");
  5126. _id.put("Bonemeal", "4855");
  5127. _id.put("Ahrims hood 100", "4856");
  5128. _id.put("Ahrims hood 75", "4857");
  5129. _id.put("Ahrims hood 50", "4858");
  5130. _id.put("Ahrims hood 25", "4859");
  5131. _id.put("Ahrims hood 0", "4860");
  5132. _id.put("Ahrims hood 0", "4861");
  5133. _id.put("Ahrims staff 100", "4862");
  5134. _id.put("Ahrims staff 75", "4863");
  5135. _id.put("Ahrims staff 50", "4864");
  5136. _id.put("Ahrims staff 25", "4865");
  5137. _id.put("Ahrims staff 0", "4866");
  5138. _id.put("Ahrims staff 0", "4867");
  5139. _id.put("Ahrims top 100", "4868");
  5140. _id.put("Ahrims top 75", "4869");
  5141. _id.put("Ahrims top 50", "4870");
  5142. _id.put("Ahrims top 25", "4871");
  5143. _id.put("Ahrims top 0", "4872");
  5144. _id.put("Ahrims top 0", "4873");
  5145. _id.put("Ahrims skirt 100", "4874");
  5146. _id.put("Ahrims skirt 75", "4875");
  5147. _id.put("Ahrims skirt 50", "4876");
  5148. _id.put("Ahrims skirt 25", "4877");
  5149. _id.put("Ahrims skirt 0", "4878");
  5150. _id.put("Ahrims skirt 0", "4879");
  5151. _id.put("Dharoks helm 100", "4880");
  5152. _id.put("Dharoks helm 75", "4881");
  5153. _id.put("Dharoks helm 50", "4882");
  5154. _id.put("Dharoks helm 25", "4883");
  5155. _id.put("Dharoks helm 0", "4884");
  5156. _id.put("Dharoks helm 0", "4885");
  5157. _id.put("Dharoks axe 100", "4886");
  5158. _id.put("Dharoks axe 75", "4887");
  5159. _id.put("Dharoks axe 50", "4888");
  5160. _id.put("Dharoks axe 25", "4889");
  5161. _id.put("Dharoks axe 0", "4890");
  5162. _id.put("Dharoks axe 0", "4891");
  5163. _id.put("Dharoks body 100", "4892");
  5164. _id.put("Dharoks body 75", "4893");
  5165. _id.put("Dharoks body 50", "4894");
  5166. _id.put("Dharoks body 25", "4895");
  5167. _id.put("Dharoks body 0", "4896");
  5168. _id.put("Dharoks body 0", "4897");
  5169. _id.put("Dharoks legs 100", "4898");
  5170. _id.put("Dharoks legs 75", "4899");
  5171. _id.put("Dharoks legs 50", "4900");
  5172. _id.put("Dharoks legs 25", "4901");
  5173. _id.put("Dharoks legs 0", "4902");
  5174. _id.put("Dharoks legs 0", "4903");
  5175. _id.put("Guthans helm 100", "4904");
  5176. _id.put("Guthans helm 75", "4905");
  5177. _id.put("Guthans helm 50", "4906");
  5178. _id.put("Guthans helm 25", "4907");
  5179. _id.put("Guthans helm 0", "4908");
  5180. _id.put("Guthans helm 0", "4909");
  5181. _id.put("Guthans spear 100", "4910");
  5182. _id.put("Guthans spear 75", "4911");
  5183. _id.put("Guthans spear 50", "4912");
  5184. _id.put("Guthans spear 25", "4913");
  5185. _id.put("Guthans spear 0", "4914");
  5186. _id.put("Guthans spear 0", "4915");
  5187. _id.put("Guthans body 100", "4916");
  5188. _id.put("Guthans body 75", "4917");
  5189. _id.put("Guthans body 50", "4918");
  5190. _id.put("Guthans body 25", "4919");
  5191. _id.put("Guthans body 0", "4920");
  5192. _id.put("Guthans body 0", "4921");
  5193. _id.put("Guthans skirt 100", "4922");
  5194. _id.put("Guthans skirt 75", "4923");
  5195. _id.put("Guthans skirt 50", "4924");
  5196. _id.put("Guthans skirt 25", "4925");
  5197. _id.put("Guthans skirt 0", "4926");
  5198. _id.put("Guthans skirt 0", "4927");
  5199. _id.put("Karils coif 100", "4928");
  5200. _id.put("Karils coif 75", "4929");
  5201. _id.put("Karils coif 50", "4930");
  5202. _id.put("Karils coif 25", "4931");
  5203. _id.put("Karils coif 0", "4932");
  5204. _id.put("Karils coif 0", "4933");
  5205. _id.put("Karils x-bow 100", "4934");
  5206. _id.put("Karils x-bow 75", "4935");
  5207. _id.put("Karils x-bow 50", "4936");
  5208. _id.put("Karils x-bow 25", "4937");
  5209. _id.put("Karils x-bow 0", "4938");
  5210. _id.put("Karils x-bow 0", "4939");
  5211. _id.put("Karils top 100", "4940");
  5212. _id.put("Karils top 75", "4941");
  5213. _id.put("Karils top 50", "4942");
  5214. _id.put("Karils top 25", "4943");
  5215. _id.put("Karils top 0", "4944");
  5216. _id.put("Karils top 0", "4945");
  5217. _id.put("Karils skirt 100", "4946");
  5218. _id.put("Karils skirt 75", "4947");
  5219. _id.put("Karils skirt 50", "4948");
  5220. _id.put("Karils skirt 25", "4949");
  5221. _id.put("Karils skirt 0", "4950");
  5222. _id.put("Karils skirt 0", "4951");
  5223. _id.put("Torags helm 100", "4952");
  5224. _id.put("Torags helm 75", "4953");
  5225. _id.put("Torags helm 50", "4954");
  5226. _id.put("Torags helm 25", "4955");
  5227. _id.put("Torags helm 0", "4956");
  5228. _id.put("Torags helm 0", "4957");
  5229. _id.put("Torags hammer 100", "4958");
  5230. _id.put("Torags hammer 75", "4959");
  5231. _id.put("Torags hammer 50", "4960");
  5232. _id.put("Torags hammer 25", "4961");
  5233. _id.put("Torags hammer 0", "4962");
  5234. _id.put("Torags hammer 0", "4963");
  5235. _id.put("Torags body 100", "4964");
  5236. _id.put("Torags body 75", "4965");
  5237. _id.put("Torags body 50", "4966");
  5238. _id.put("Torags body 25", "4967");
  5239. _id.put("Torags body 0", "4968");
  5240. _id.put("Torags body 0", "4969");
  5241. _id.put("Torags legs 100", "4970");
  5242. _id.put("Torags legs 75", "4971");
  5243. _id.put("Torags legs 50", "4972");
  5244. _id.put("Torags legs 25", "4973");
  5245. _id.put("Torags legs 0", "4974");
  5246. _id.put("Torags legs 0", "4975");
  5247. _id.put("Veracs helm 100", "4976");
  5248. _id.put("Veracs helm 75", "4977");
  5249. _id.put("Veracs helm 50", "4978");
  5250. _id.put("Veracs helm 25", "4979");
  5251. _id.put("Veracs helm 0", "4980");
  5252. _id.put("Veracs helm 0", "4981");
  5253. _id.put("Veracs flail 100", "4982");
  5254. _id.put("Veracs flail 75", "4983");
  5255. _id.put("Veracs flail 50", "4984");
  5256. _id.put("Veracs flail 25", "4985");
  5257. _id.put("Veracs flail 0", "4986");
  5258. _id.put("Veracs flail 0", "4987");
  5259. _id.put("Veracs top 100", "4988");
  5260. _id.put("Veracs top 75", "4989");
  5261. _id.put("Veracs top 50", "4990");
  5262. _id.put("Veracs top 25", "4991");
  5263. _id.put("Veracs top 0", "4992");
  5264. _id.put("Veracs top 0", "4993");
  5265. _id.put("Veracs skirt 100", "4994");
  5266. _id.put("Veracs skirt 75", "4995");
  5267. _id.put("Veracs skirt 50", "4996");
  5268. _id.put("Veracs skirt 25", "4997");
  5269. _id.put("Veracs skirt 0", "4998");
  5270. _id.put("Veracs skirt 0", "4999");
  5271. _id.put("Raw cave eel", "5001");
  5272. _id.put("Burnt cave eel", "5002");
  5273. _id.put("Cave eel", "5003");
  5274. _id.put("Frog spawn", "5004");
  5275. _id.put("Raw cave eel", "5005");
  5276. _id.put("Burnt cave eel", "5006");
  5277. _id.put("Cave eel", "5007");
  5278. _id.put("Brooch", "5008");
  5279. _id.put("Goblin symbol book", "5009");
  5280. _id.put("Key", "5010");
  5281. _id.put("Silverware", "5011");
  5282. _id.put("Peace treaty", "5012");
  5283. _id.put("Mining helmet", "5013");
  5284. _id.put("Mining helmet", "5014");
  5285. _id.put("Mining helmet", "5015");
  5286. _id.put("Bone spear", "5016");
  5287. _id.put("Bone spear", "5017");
  5288. _id.put("Bone club", "5018");
  5289. _id.put("Bone club", "5019");
  5290. _id.put("Minecart ticket", "5020");
  5291. _id.put("Minecart ticket", "5021");
  5292. _id.put("Minecart ticket", "5022");
  5293. _id.put("Minecart ticket", "5023");
  5294. _id.put("Woven top", "5024");
  5295. _id.put("Woven top", "5025");
  5296. _id.put("Woven top", "5026");
  5297. _id.put("Woven top", "5027");
  5298. _id.put("Woven top", "5028");
  5299. _id.put("Woven top", "5029");
  5300. _id.put("Shirt", "5030");
  5301. _id.put("Shirt", "5031");
  5302. _id.put("Shirt", "5032");
  5303. _id.put("Shirt", "5033");
  5304. _id.put("Shirt", "5034");
  5305. _id.put("Shirt", "5035");
  5306. _id.put("Trousers", "5036");
  5307. _id.put("Trousers", "5037");
  5308. _id.put("Trousers", "5038");
  5309. _id.put("Trousers", "5039");
  5310. _id.put("Trousers", "5040");
  5311. _id.put("Trousers", "5041");
  5312. _id.put("Shorts", "5042");
  5313. _id.put("Shorts", "5043");
  5314. _id.put("Shorts", "5044");
  5315. _id.put("Shorts", "5045");
  5316. _id.put("Shorts", "5046");
  5317. _id.put("Shorts", "5047");
  5318. _id.put("Skirt", "5048");
  5319. _id.put("Skirt", "5049");
  5320. _id.put("Skirt", "5050");
  5321. _id.put("Skirt", "5051");
  5322. _id.put("Skirt", "5052");
  5323. _id.put("Skirt", "5053");
  5324. _id.put("Dwarf", "5054");
  5325. _id.put("Dwarf", "5055");
  5326. _id.put("Dwarven battleaxe", "5056");
  5327. _id.put("Dwarven battleaxe", "5057");
  5328. _id.put("Dwarven battleaxe", "5058");
  5329. _id.put("Dwarven battleaxe", "5059");
  5330. _id.put("Dwarven battleaxe", "5060");
  5331. _id.put("Dwarven battleaxe", "5061");
  5332. _id.put("Left boot", "5062");
  5333. _id.put("Right boot", "5063");
  5334. _id.put("Exquisite boots", "5064");
  5335. _id.put("Book on costumes", "5065");
  5336. _id.put("Meeting notes", "5066");
  5337. _id.put("Exquisite clothes", "5067");
  5338. _id.put("Master farmer", "5068");
  5339. _id.put("Whoopsie", "5069");
  5340. _id.put("Bird nest", "5070");
  5341. _id.put("Bird nest", "5071");
  5342. _id.put("Bird nest", "5072");
  5343. _id.put("Bird nest", "5073");
  5344. _id.put("Bird nest", "5074");
  5345. _id.put("Bird nest", "5075");
  5346. _id.put("Bird's egg", "5076");
  5347. _id.put("Bird's egg", "5077");
  5348. _id.put("Bird's egg", "5078");
  5349. _id.put("Whoopsie", "5081");
  5350. _id.put("Whoopsie", "5083");
  5351. _id.put("Whoopsie", "5085");
  5352. _id.put("Whoopsie", "5087");
  5353. _id.put("Whoopsie", "5089");
  5354. _id.put("Whoopsie", "5091");
  5355. _id.put("Whoopsie", "5093");
  5356. _id.put("Whoopsie", "5095");
  5357. _id.put("Marigold seed", "5096");
  5358. _id.put("Rosemary seed", "5097");
  5359. _id.put("Nasturtium seed", "5098");
  5360. _id.put("Woad seed", "5099");
  5361. _id.put("Limpwurt seed", "5100");
  5362. _id.put("Redberry seed", "5101");
  5363. _id.put("Cadavaberry seed", "5102");
  5364. _id.put("Dwellberry seed", "5103");
  5365. _id.put("Jangerberry seed", "5104");
  5366. _id.put("Whiteberry seed", "5105");
  5367. _id.put("Poison ivy seed", "5106");
  5368. _id.put("Seeds", "5171");
  5369. _id.put("Cactus seed", "5280");
  5370. _id.put("Belladonna seed", "5281");
  5371. _id.put("Mushroom spore", "5282");
  5372. _id.put("Apple tree seed", "5283");
  5373. _id.put("Banana tree seed", "5284");
  5374. _id.put("Orange tree seed", "5285");
  5375. _id.put("Curry tree seed", "5286");
  5376. _id.put("Pineapple seed", "5287");
  5377. _id.put("Papaya tree seed", "5288");
  5378. _id.put("Palm tree seed", "5289");
  5379. _id.put("Calquat tree seed", "5290");
  5380. _id.put("Guam seed", "5291");
  5381. _id.put("Marrentill seed", "5292");
  5382. _id.put("Tarromin seed", "5293");
  5383. _id.put("Harralander seed", "5294");
  5384. _id.put("Ranarr seed", "5295");
  5385. _id.put("Toadflax seed", "5296");
  5386. _id.put("Irit seed", "5297");
  5387. _id.put("Avantoe seed", "5298");
  5388. _id.put("Kwuarm seed", "5299");
  5389. _id.put("Snapdragon seed", "5300");
  5390. _id.put("Cadantine seed", "5301");
  5391. _id.put("Lantadyme seed", "5302");
  5392. _id.put("Dwarf weed seed", "5303");
  5393. _id.put("Torstol seed", "5304");
  5394. _id.put("Barley seed", "5305");
  5395. _id.put("Jute seed", "5306");
  5396. _id.put("Hammerstone seed", "5307");
  5397. _id.put("Asgarnian seed", "5308");
  5398. _id.put("Yanillian seed", "5309");
  5399. _id.put("Krandorian seed", "5310");
  5400. _id.put("Wildblood seed", "5311");
  5401. _id.put("Acorn", "5312");
  5402. _id.put("Willow seed", "5313");
  5403. _id.put("Maple seed", "5314");
  5404. _id.put("Yew seed", "5315");
  5405. _id.put("Magic seed", "5316");
  5406. _id.put("Spirit seed", "5317");
  5407. _id.put("Potato seed", "5318");
  5408. _id.put("Onion seed", "5319");
  5409. _id.put("Sweetcorn seed", "5320");
  5410. _id.put("Watermelon seed", "5321");
  5411. _id.put("Tomato seed", "5322");
  5412. _id.put("Strawberry seed", "5323");
  5413. _id.put("Cabbage seed", "5324");
  5414. _id.put("Gardening trowel", "5325");
  5415. _id.put("Gardening trowel", "5326");
  5416. _id.put("Spade handle", "5327");
  5417. _id.put("Spade head", "5328");
  5418. _id.put("Secateurs", "5329");
  5419. _id.put("Secateurs", "5330");
  5420. _id.put("Watering can", "5331");
  5421. _id.put("Watering can", "5332");
  5422. _id.put("Watering can(1)", "5333");
  5423. _id.put("Watering can(2)", "5334");
  5424. _id.put("Watering can(3)", "5335");
  5425. _id.put("Watering can(4)", "5336");
  5426. _id.put("Watering can(5)", "5337");
  5427. _id.put("Watering can(6)", "5338");
  5428. _id.put("Watering can(7)", "5339");
  5429. _id.put("Watering can(8)", "5340");
  5430. _id.put("Rake", "5341");
  5431. _id.put("Rake", "5342");
  5432. _id.put("Seed dibber", "5343");
  5433. _id.put("Seed dibber", "5344");
  5434. _id.put("Gardening boots", "5345");
  5435. _id.put("Gardening boots", "5346");
  5436. _id.put("Rake handle", "5347");
  5437. _id.put("Rake head", "5348");
  5438. _id.put("Whoopsie", "5349");
  5439. _id.put("Plant pot", "5350");
  5440. _id.put("Plant pot", "5351");
  5441. _id.put("Unfired plant pot", "5352");
  5442. _id.put("Unfired plant pot", "5353");
  5443. _id.put("Plant pot", "5354");
  5444. _id.put("Plant pot", "5355");
  5445. _id.put("Plant pot", "5356");
  5446. _id.put("Plant pot", "5357");
  5447. _id.put("Oak seedling", "5358");
  5448. _id.put("Willow seedling", "5359");
  5449. _id.put("Maple seedling", "5360");
  5450. _id.put("Yew seedling", "5361");
  5451. _id.put("Magic seedling", "5362");
  5452. _id.put("Spirit seedling", "5363");
  5453. _id.put("Oak seedling", "5364");
  5454. _id.put("Willow seedling", "5365");
  5455. _id.put("Maple seedling", "5366");
  5456. _id.put("Yew seedling", "5367");
  5457. _id.put("Magic seedling", "5368");
  5458. _id.put("Spirit seedling", "5369");
  5459. _id.put("Oak sapling", "5370");
  5460. _id.put("Willow sapling", "5371");
  5461. _id.put("Maple sapling", "5372");
  5462. _id.put("Yew sapling", "5373");
  5463. _id.put("Magic sapling", "5374");
  5464. _id.put("Spirit sapling", "5375");
  5465. _id.put("Basket", "5376");
  5466. _id.put("Basket", "5377");
  5467. _id.put("Apples(1)", "5378");
  5468. _id.put("Apples(1)", "5379");
  5469. _id.put("Apples(2)", "5380");
  5470. _id.put("Apples(2)", "5381");
  5471. _id.put("Apples(3)", "5382");
  5472. _id.put("Apples(3)", "5383");
  5473. _id.put("Apples(4)", "5384");
  5474. _id.put("Apples(4)", "5385");
  5475. _id.put("Apples(5)", "5386");
  5476. _id.put("Apples(5)", "5387");
  5477. _id.put("Oranges(1)", "5388");
  5478. _id.put("Oranges(1)", "5389");
  5479. _id.put("Oranges(2)", "5390");
  5480. _id.put("Oranges(2)", "5391");
  5481. _id.put("Oranges(3)", "5392");
  5482. _id.put("Oranges(3)", "5393");
  5483. _id.put("Oranges(4)", "5394");
  5484. _id.put("Oranges(4)", "5395");
  5485. _id.put("Oranges(5)", "5396");
  5486. _id.put("Oranges(5)", "5397");
  5487. _id.put("Strawberries(1)", "5398");
  5488. _id.put("Strawberries(1)", "5399");
  5489. _id.put("Strawberries(2)", "5400");
  5490. _id.put("Strawberries(2)", "5401");
  5491. _id.put("Strawberries(3)", "5402");
  5492. _id.put("Strawberries(3)", "5403");
  5493. _id.put("Strawberries(4)", "5404");
  5494. _id.put("Strawberries(4)", "5405");
  5495. _id.put("Strawberries(5)", "5406");
  5496. _id.put("Strawberries(5)", "5407");
  5497. _id.put("Bananas(1)", "5408");
  5498. _id.put("Bananas(1)", "5409");
  5499. _id.put("Bananas(2)", "5410");
  5500. _id.put("Bananas(2)", "5411");
  5501. _id.put("Bananas(3)", "5412");
  5502. _id.put("Bananas(3)", "5413");
  5503. _id.put("Bananas(4)", "5414");
  5504. _id.put("Bananas(4)", "5415");
  5505. _id.put("Bananas(5)", "5416");
  5506. _id.put("Bananas(5)", "5417");
  5507. _id.put("Empty sack", "5418");
  5508. _id.put("Empty sack", "5419");
  5509. _id.put("Potatoes(1)", "5420");
  5510. _id.put("Potatoes(1)", "5421");
  5511. _id.put("Potatoes(2)", "5422");
  5512. _id.put("Potatoes(2)", "5423");
  5513. _id.put("Potatoes(3)", "5424");
  5514. _id.put("Potatoes(3)", "5425");
  5515. _id.put("Potatoes(4)", "5426");
  5516. _id.put("Potatoes(4)", "5427");
  5517. _id.put("Potatoes(5)", "5428");
  5518. _id.put("Potatoes(5)", "5429");
  5519. _id.put("Potatoes(6)", "5430");
  5520. _id.put("Potatoes(6)", "5431");
  5521. _id.put("Potatoes(7)", "5432");
  5522. _id.put("Potatoes(7)", "5433");
  5523. _id.put("Potatoes(8)", "5434");
  5524. _id.put("Potatoes(8)", "5435");
  5525. _id.put("Potatoes(9)", "5436");
  5526. _id.put("Potatoes(9)", "5437");
  5527. _id.put("Potatoes(10)", "5438");
  5528. _id.put("Potatoes(10)", "5439");
  5529. _id.put("Onions(1)", "5440");
  5530. _id.put("Onions(1)", "5441");
  5531. _id.put("Onions(2)", "5442");
  5532. _id.put("Onions(2)", "5443");
  5533. _id.put("Onions(3)", "5444");
  5534. _id.put("Onions(3)", "5445");
  5535. _id.put("Onions(4)", "5446");
  5536. _id.put("Onions(4)", "5447");
  5537. _id.put("Onions(5)", "5448");
  5538. _id.put("Onions(5)", "5449");
  5539. _id.put("Onions(6)", "5450");
  5540. _id.put("Onions(6)", "5451");
  5541. _id.put("Onions(7)", "5452");
  5542. _id.put("Onions(7)", "5453");
  5543. _id.put("Onions(8)", "5454");
  5544. _id.put("Onions(8)", "5455");
  5545. _id.put("Onions(9)", "5456");
  5546. _id.put("Onions(9)", "5457");
  5547. _id.put("Onions(10)", "5458");
  5548. _id.put("Onions(10)", "5459");
  5549. _id.put("Cabbages(1)", "5460");
  5550. _id.put("Cabbages(1)", "5461");
  5551. _id.put("Cabbages(2)", "5462");
  5552. _id.put("Cabbages(2)", "5463");
  5553. _id.put("Cabbages(3)", "5464");
  5554. _id.put("Cabbages(3)", "5465");
  5555. _id.put("Cabbages(4)", "5466");
  5556. _id.put("Cabbages(4)", "5467");
  5557. _id.put("Cabbages(5)", "5468");
  5558. _id.put("Cabbages(5)", "5469");
  5559. _id.put("Cabbages(6)", "5470");
  5560. _id.put("Cabbages(6)", "5471");
  5561. _id.put("Cabbages(7)", "5472");
  5562. _id.put("Cabbages(7)", "5473");
  5563. _id.put("Cabbages(8)", "5474");
  5564. _id.put("Cabbages(8)", "5475");
  5565. _id.put("Cabbages(9)", "5476");
  5566. _id.put("Cabbages(9)", "5477");
  5567. _id.put("Cabbages(10)", "5478");
  5568. _id.put("Cabbages(10)", "5479");
  5569. _id.put("Apple seedling", "5480");
  5570. _id.put("Banana seedling", "5481");
  5571. _id.put("Orange seedling", "5482");
  5572. _id.put("Curry seedling", "5483");
  5573. _id.put("Pineapple seedling", "5484");
  5574. _id.put("Papaya seedling", "5485");
  5575. _id.put("Palm seedling", "5486");
  5576. _id.put("Calquat seedling", "5487");
  5577. _id.put("Apple seedling", "5488");
  5578. _id.put("Banana seedling", "5489");
  5579. _id.put("Orange seedling", "5490");
  5580. _id.put("Curry seedling", "5491");
  5581. _id.put("Pineapple seedling", "5492");
  5582. _id.put("Papaya seedling", "5493");
  5583. _id.put("Palm seedling", "5494");
  5584. _id.put("Calquat seedling", "5495");
  5585. _id.put("Apple sapling", "5496");
  5586. _id.put("Banana sapling", "5497");
  5587. _id.put("Orange sapling", "5498");
  5588. _id.put("Curry sapling", "5499");
  5589. _id.put("Pineapple sapling", "5500");
  5590. _id.put("Papaya sapling", "5501");
  5591. _id.put("Palm sapling", "5502");
  5592. _id.put("Calquat sapling", "5503");
  5593. _id.put("Strawberry", "5504");
  5594. _id.put("Strawberry", "5505");
  5595. _id.put("Old man's message", "5506");
  5596. _id.put("Strange book", "5507");
  5597. _id.put("Book of folklore", "5508");
  5598. _id.put("Small pouch", "5509");
  5599. _id.put("Medium pouch", "5510");
  5600. _id.put("Medium pouch", "5511");
  5601. _id.put("Large pouch", "5512");
  5602. _id.put("Large pouch", "5513");
  5603. _id.put("Giant pouch", "5514");
  5604. _id.put("Giant pouch", "5515");
  5605. _id.put("Elemental talisman", "5516");
  5606. _id.put("Elemental talisman", "5517");
  5607. _id.put("Scrying orb", "5518");
  5608. _id.put("Scrying orb", "5519");
  5609. _id.put("Abyssal book", "5520");
  5610. _id.put("Binding necklace", "5521");
  5611. _id.put("Binding necklace", "5522");
  5612. _id.put("Tiara mould", "5523");
  5613. _id.put("Tiara mould", "5524");
  5614. _id.put("Tiara", "5525");
  5615. _id.put("Tiara", "5526");
  5616. _id.put("Air tiara", "5527");
  5617. _id.put("Air tiara", "5528");
  5618. _id.put("Mind tiara", "5529");
  5619. _id.put("Mind tiara", "5530");
  5620. _id.put("Water tiara", "5531");
  5621. _id.put("Water tiara", "5532");
  5622. _id.put("Body tiara", "5533");
  5623. _id.put("Body tiara", "5534");
  5624. _id.put("Earth tiara", "5535");
  5625. _id.put("Earth tiara", "5536");
  5626. _id.put("Fire tiara", "5537");
  5627. _id.put("Fire tiara", "5538");
  5628. _id.put("Cosmic tiara", "5539");
  5629. _id.put("Cosmic tiara", "5540");
  5630. _id.put("Nature tiara", "5541");
  5631. _id.put("Nature tiara", "5542");
  5632. _id.put("Chaos tiara", "5543");
  5633. _id.put("Chaos tiara", "5544");
  5634. _id.put("Law tiara", "5545");
  5635. _id.put("Broken tiara", "5546");
  5636. _id.put("Death tiara", "5547");
  5637. _id.put("Death tiara", "5548");
  5638. _id.put("Blood tiara", "5549");
  5639. _id.put("Blood tiara", "5550");
  5640. _id.put("Soul tiara", "5551");
  5641. _id.put("Soul tiara", "5552");
  5642. _id.put("Rogue top", "5553");
  5643. _id.put("Rogue mask", "5554");
  5644. _id.put("Rogue trousers", "5555");
  5645. _id.put("Rogue gloves", "5556");
  5646. _id.put("Rogue boots", "5557");
  5647. _id.put("Rogue kit", "5558");
  5648. _id.put("Flash powder", "5559");
  5649. _id.put("Stethoscope", "5560");
  5650. _id.put("Mystic jewel", "5561");
  5651. _id.put("Gear", "5562");
  5652. _id.put("Gear", "5563");
  5653. _id.put("Gear", "5564");
  5654. _id.put("Gear", "5565");
  5655. _id.put("Gear", "5566");
  5656. _id.put("Gear", "5567");
  5657. _id.put("Tile", "5568");
  5658. _id.put("Tiles", "5569");
  5659. _id.put("Tiles", "5570");
  5660. _id.put("Tiles", "5571");
  5661. _id.put("Dial", "5572");
  5662. _id.put("Whoopsie", "5573");
  5663. _id.put("Initiate helm", "5574");
  5664. _id.put("Initiate platemail", "5575");
  5665. _id.put("Initiate platelegs", "5576");
  5666. _id.put("Cupric sulfate", "5577");
  5667. _id.put("Acetic acid", "5578");
  5668. _id.put("Gypsum", "5579");
  5669. _id.put("Sodium chloride", "5580");
  5670. _id.put("Nitrous oxide", "5581");
  5671. _id.put("Vial of liquid", "5582");
  5672. _id.put("Tin ore powder", "5583");
  5673. _id.put("Cupric ore powder", "5584");
  5674. _id.put("Bronze key", "5585");
  5675. _id.put("Metal spade", "5586");
  5676. _id.put("Metal spade", "5587");
  5677. _id.put("Alchemical notes", "5588");
  5678. _id.put("??? mixture", "5589");
  5679. _id.put("??? mixture", "5590");
  5680. _id.put("??? mixture", "5591");
  5681. _id.put("Tin", "5592");
  5682. _id.put("Tin", "5593");
  5683. _id.put("Tin", "5594");
  5684. _id.put("Tin", "5595");
  5685. _id.put("Tin", "5596");
  5686. _id.put("Tin", "5597");
  5687. _id.put("Tin", "5598");
  5688. _id.put("Tin", "5599");
  5689. _id.put("Tin", "5600");
  5690. _id.put("Chisel", "5601");
  5691. _id.put("Bronze wire", "5602");
  5692. _id.put("Shears", "5603");
  5693. _id.put("Magnet", "5604");
  5694. _id.put("Knife", "5605");
  5695. _id.put("Makeover voucher", "5606");
  5696. _id.put("Grain", "5607");
  5697. _id.put("Fox", "5608");
  5698. _id.put("Chicken", "5609");
  5699. _id.put("Hourglass", "5610");
  5700. _id.put("Initiate helm", "5611");
  5701. _id.put("Initiate platemail", "5612");
  5702. _id.put("Initiate platelegs", "5613");
  5703. _id.put("Magic carpet", "5614");
  5704. _id.put("Bonemeal", "5615");
  5705. _id.put("Bronze arrow(+)", "5616");
  5706. _id.put("Iron arrow(+)", "5617");
  5707. _id.put("Steel arrow(+)", "5618");
  5708. _id.put("Mithril arrow(+)", "5619");
  5709. _id.put("Adamant arrow(+)", "5620");
  5710. _id.put("Rune arrow(+)", "5621");
  5711. _id.put("Bronze arrow(s)", "5622");
  5712. _id.put("Iron arrow(s)", "5623");
  5713. _id.put("Steel arrow(s)", "5624");
  5714. _id.put("Mithril arrow(s)", "5625");
  5715. _id.put("Adamant arrow(s)", "5626");
  5716. _id.put("Rune arrow(s)", "5627");
  5717. _id.put("Bronze dart(+)", "5628");
  5718. _id.put("Iron dart(+)", "5629");
  5719. _id.put("Steel dart(+)", "5630");
  5720. _id.put("Black dart(+)", "5631");
  5721. _id.put("Mithril dart(+)", "5632");
  5722. _id.put("Adamant dart(+)", "5633");
  5723. _id.put("Rune dart(+)", "5634");
  5724. _id.put("Bronze dart(s)", "5635");
  5725. _id.put("Iron dart(s)", "5636");
  5726. _id.put("Steel dart(s)", "5637");
  5727. _id.put("Black dart(s)", "5638");
  5728. _id.put("Mithril dart(s)", "5639");
  5729. _id.put("Adamant dart(s)", "5640");
  5730. _id.put("Rune dart(s)", "5641");
  5731. _id.put("Bronze javelin(+)", "5642");
  5732. _id.put("Iron javelin(+)", "5643");
  5733. _id.put("Steel javelin(+)", "5644");
  5734. _id.put("Mithril javelin(+)", "5645");
  5735. _id.put("Adamant javelin(+)", "5646");
  5736. _id.put("Rune javelin(+)", "5647");
  5737. _id.put("Bronze javelin(s)", "5648");
  5738. _id.put("Iron javelin(s)", "5649");
  5739. _id.put("Steel javelin(s)", "5650");
  5740. _id.put("Mithril javelin(s)", "5651");
  5741. _id.put("Adamant javelin(s)", "5652");
  5742. _id.put("Rune javelin(s)", "5653");
  5743. _id.put("Bronze knife(+)", "5654");
  5744. _id.put("Iron knife(+)", "5655");
  5745. _id.put("Steel knife(+)", "5656");
  5746. _id.put("Mithril knife(+)", "5657");
  5747. _id.put("Black knife(+)", "5658");
  5748. _id.put("Adamant knife(+)", "5659");
  5749. _id.put("Rune knife(+)", "5660");
  5750. _id.put("Bronze knife(s)", "5661");
  5751. _id.put("Iron knife(s)", "5662");
  5752. _id.put("Steel knife(s)", "5663");
  5753. _id.put("Mithril knife(s)", "5664");
  5754. _id.put("Black knife(s)", "5665");
  5755. _id.put("Adamant knife(s)", "5666");
  5756. _id.put("Rune knife(s)", "5667");
  5757. _id.put("Iron dagger(+)", "5668");
  5758. _id.put("Iron dagger(+)", "5669");
  5759. _id.put("Bronze dagger(+)", "5670");
  5760. _id.put("Bronze dagger(+)", "5671");
  5761. _id.put("Steel dagger(+)", "5672");
  5762. _id.put("Steel dagger(+)", "5673");
  5763. _id.put("Mithril dagger(+)", "5674");
  5764. _id.put("Mithril dagger(+)", "5675");
  5765. _id.put("Adamant dagger(+)", "5676");
  5766. _id.put("Adamant dagger(+)", "5677");
  5767. _id.put("Rune dagger(+)", "5678");
  5768. _id.put("Rune dagger(+)", "5679");
  5769. _id.put("Dragon dagger(+)", "5680");
  5770. _id.put("Dragon dagger(+)", "5681");
  5771. _id.put("Black dagger(+)", "5682");
  5772. _id.put("Black dagger(+)", "5683");
  5773. _id.put("Poisoned dagger(+)", "5684");
  5774. _id.put("Poisoned dagger(+)", "5685");
  5775. _id.put("Iron dagger(s)", "5686");
  5776. _id.put("Iron dagger(s)", "5687");
  5777. _id.put("Bronze dagger(s)", "5688");
  5778. _id.put("Bronze dagger(s)", "5689");
  5779. _id.put("Steel dagger(s)", "5690");
  5780. _id.put("Steel dagger(s)", "5691");
  5781. _id.put("Mithril dagger(s)", "5692");
  5782. _id.put("Mithril dagger(s)", "5693");
  5783. _id.put("Adamant dagger(s)", "5694");
  5784. _id.put("Adamant dagger(s)", "5695");
  5785. _id.put("Rune dagger(s)", "5696");
  5786. _id.put("Rune dagger(s)", "5697");
  5787. _id.put("Dragon dagger(s)", "5698");
  5788. _id.put("Dragon dagger(s)", "5699");
  5789. _id.put("Black dagger(s)", "5700");
  5790. _id.put("Black dagger(s)", "5701");
  5791. _id.put("Poisoned dagger(s)", "5702");
  5792. _id.put("Poisoned dagger(s)", "5703");
  5793. _id.put("Bronze spear(+)", "5704");
  5794. _id.put("Bronze spear(+)", "5705");
  5795. _id.put("Iron spear(+)", "5706");
  5796. _id.put("Iron spear(+)", "5707");
  5797. _id.put("Steel spear(+)", "5708");
  5798. _id.put("Steel spear(+)", "5709");
  5799. _id.put("Mithril spear(+)", "5710");
  5800. _id.put("Mithril spear(+)", "5711");
  5801. _id.put("Adamant spear(+)", "5712");
  5802. _id.put("Adamant spear(+)", "5713");
  5803. _id.put("Rune spear(+)", "5714");
  5804. _id.put("Rune spear(+)", "5715");
  5805. _id.put("Dragon spear(+)", "5716");
  5806. _id.put("Dragon spear(+)", "5717");
  5807. _id.put("Bronze spear(s)", "5718");
  5808. _id.put("Bronze spear(s)", "5719");
  5809. _id.put("Iron spear(s)", "5720");
  5810. _id.put("Iron spear(s)", "5721");
  5811. _id.put("Steel spear(s)", "5722");
  5812. _id.put("Steel spear(s)", "5723");
  5813. _id.put("Mithril spear(s)", "5724");
  5814. _id.put("Mithril spear(s)", "5725");
  5815. _id.put("Adamant spear(s)", "5726");
  5816. _id.put("Adamant spear(s)", "5727");
  5817. _id.put("Rune spear(s)", "5728");
  5818. _id.put("Rune spear(s)", "5729");
  5819. _id.put("Dragon spear(s)", "5730");
  5820. _id.put("Dragon spear(s)", "5731");
  5821. _id.put("Stool", "5732");
  5822. _id.put("Rotten potato", "5733");
  5823. _id.put("Black spear(+)", "5734");
  5824. _id.put("Black spear(+)", "5735");
  5825. _id.put("Black spear(s)", "5736");
  5826. _id.put("Black spear(s)", "5737");
  5827. _id.put("Woad leaf", "5738");
  5828. _id.put("Asgarnian ale(m)", "5739");
  5829. _id.put("Asgarnian ale(m)", "5740");
  5830. _id.put("Mature wmb", "5741");
  5831. _id.put("Mature wmb", "5742");
  5832. _id.put("Greenman's ale(m)", "5743");
  5833. _id.put("Greenman's ale(m)", "5744");
  5834. _id.put("Dragon bitter(m)", "5745");
  5835. _id.put("Dragon bitter(m)", "5746");
  5836. _id.put("Dwarven stout(m)", "5747");
  5837. _id.put("Dwarven stout(m)", "5748");
  5838. _id.put("Moonlight mead(m)", "5749");
  5839. _id.put("Moonlight mead(m)", "5750");
  5840. _id.put("Axeman's folly", "5751");
  5841. _id.put("Axeman's folly", "5752");
  5842. _id.put("Axeman's folly(m)", "5753");
  5843. _id.put("Axeman's folly(m)", "5754");
  5844. _id.put("Chef's delight", "5755");
  5845. _id.put("Chef's delight", "5756");
  5846. _id.put("Chef's delight(m)", "5757");
  5847. _id.put("Chef's delight(m)", "5758");
  5848. _id.put("Slayer's respite", "5759");
  5849. _id.put("Slayer's respite", "5760");
  5850. _id.put("Slayer's respite(m)", "5761");
  5851. _id.put("Slayer's respite(m)", "5762");
  5852. _id.put("Cider", "5763");
  5853. _id.put("Cider", "5764");
  5854. _id.put("Mature cider", "5765");
  5855. _id.put("Mature cider", "5766");
  5856. _id.put("Ale yeast", "5767");
  5857. _id.put("Ale yeast", "5768");
  5858. _id.put("Calquat keg", "5769");
  5859. _id.put("Calquat keg", "5770");
  5860. _id.put("Dwarven stout(1)", "5771");
  5861. _id.put("Dwarven stout(1)", "5772");
  5862. _id.put("Dwarven stout(2)", "5773");
  5863. _id.put("Dwarven stout(2)", "5774");
  5864. _id.put("Dwarven stout(3)", "5775");
  5865. _id.put("Dwarven stout(3)", "5776");
  5866. _id.put("Dwarven stout(4)", "5777");
  5867. _id.put("Dwarven stout(4)", "5778");
  5868. _id.put("Asgarnian ale(1)", "5779");
  5869. _id.put("Asgarnian ale(1)", "5780");
  5870. _id.put("Asgarnian ale(2)", "5781");
  5871. _id.put("Asgarnian ale(2)", "5782");
  5872. _id.put("Asgarnian ale(3)", "5783");
  5873. _id.put("Asgarnian ale(3)", "5784");
  5874. _id.put("Asgarnian ale(4)", "5785");
  5875. _id.put("Asgarnian ale(4)", "5786");
  5876. _id.put("Greenmans ale(1)", "5787");
  5877. _id.put("Greenmans ale(1)", "5788");
  5878. _id.put("Greenmans ale(2)", "5789");
  5879. _id.put("Greenmans ale(2)", "5790");
  5880. _id.put("Greenmans ale(3)", "5791");
  5881. _id.put("Greenmans ale(3)", "5792");
  5882. _id.put("Greenmans ale(4)", "5793");
  5883. _id.put("Greenmans ale(4)", "5794");
  5884. _id.put("Mind bomb(1)", "5795");
  5885. _id.put("Mind bomb(1)", "5796");
  5886. _id.put("Mind bomb(2)", "5797");
  5887. _id.put("Mind bomb(2)", "5798");
  5888. _id.put("Mind bomb(3)", "5799");
  5889. _id.put("Mind bomb(3)", "5800");
  5890. _id.put("Mind bomb(4)", "5801");
  5891. _id.put("Mind bomb(4)", "5802");
  5892. _id.put("Dragon bitter(1)", "5803");
  5893. _id.put("Dragon bitter(1)", "5804");
  5894. _id.put("Dragon bitter(2)", "5805");
  5895. _id.put("Dragon bitter(2)", "5806");
  5896. _id.put("Dragon bitter(3)", "5807");
  5897. _id.put("Dragon bitter(3)", "5808");
  5898. _id.put("Dragon bitter(4)", "5809");
  5899. _id.put("Dragon bitter(4)", "5810");
  5900. _id.put("Moonlight mead(1)", "5811");
  5901. _id.put("Moonlight mead(1)", "5812");
  5902. _id.put("Moonlight mead(2)", "5813");
  5903. _id.put("Moonlight mead(2)", "5814");
  5904. _id.put("Moonlight mead(3)", "5815");
  5905. _id.put("Moonlight mead(3)", "5816");
  5906. _id.put("Moonlight mead(4)", "5817");
  5907. _id.put("Moonlight mead(4)", "5818");
  5908. _id.put("Axeman's folly(1)", "5819");
  5909. _id.put("Axeman's folly(1)", "5820");
  5910. _id.put("Axeman's folly(2)", "5821");
  5911. _id.put("Axeman's folly(2)", "5822");
  5912. _id.put("Axeman's folly(3)", "5823");
  5913. _id.put("Axeman's folly(3)", "5824");
  5914. _id.put("Axeman's folly(4)", "5825");
  5915. _id.put("Axeman's folly(4)", "5826");
  5916. _id.put("Chef's delight(1)", "5827");
  5917. _id.put("Chef's delight(1)", "5828");
  5918. _id.put("Chef's delight(2)", "5829");
  5919. _id.put("Chef's delight(2)", "5830");
  5920. _id.put("Chef's delight(3)", "5831");
  5921. _id.put("Chef's delight(3)", "5832");
  5922. _id.put("Chef's delight(4)", "5833");
  5923. _id.put("Chef's delight(4)", "5834");
  5924. _id.put("Slayer's respite(1)", "5835");
  5925. _id.put("Slayer's respite(1)", "5836");
  5926. _id.put("Slayer's respite(2)", "5837");
  5927. _id.put("Slayer's respite(2)", "5838");
  5928. _id.put("Slayer's respite(3)", "5839");
  5929. _id.put("Slayer's respite(3)", "5840");
  5930. _id.put("Slayer's respite(4)", "5841");
  5931. _id.put("Slayer's respite(4)", "5842");
  5932. _id.put("Cider(1)", "5843");
  5933. _id.put("Cider(1)", "5844");
  5934. _id.put("Cider(2)", "5845");
  5935. _id.put("Cider(2)", "5846");
  5936. _id.put("Cider(3)", "5847");
  5937. _id.put("Cider(3)", "5848");
  5938. _id.put("Cider(4)", "5849");
  5939. _id.put("Cider(4)", "5850");
  5940. _id.put("Dwarven stout(m1)", "5851");
  5941. _id.put("Dwarven stout(m1)", "5852");
  5942. _id.put("Dwarven stout(m2)", "5853");
  5943. _id.put("Dwarven stout(m2)", "5854");
  5944. _id.put("Dwarven stout(m3)", "5855");
  5945. _id.put("Dwarven stout(m3)", "5856");
  5946. _id.put("Dwarven stout(m4)", "5857");
  5947. _id.put("Dwarven stout(m4)", "5858");
  5948. _id.put("Asgarnian ale(m1)", "5859");
  5949. _id.put("Asgarnian ale(m1)", "5860");
  5950. _id.put("Asgarnian ale(m2)", "5861");
  5951. _id.put("Asgarnian ale(m2)", "5862");
  5952. _id.put("Asgarnian ale(m3)", "5863");
  5953. _id.put("Asgarnian ale(m3)", "5864");
  5954. _id.put("Asgarnian ale(m4)", "5865");
  5955. _id.put("Asgarnian ale(m4)", "5866");
  5956. _id.put("Greenmans ale(m1)", "5867");
  5957. _id.put("Greenmans ale(m1)", "5868");
  5958. _id.put("Greenmans ale(m2)", "5869");
  5959. _id.put("Greenmans ale(m2)", "5870");
  5960. _id.put("Greenmans ale(m3)", "5871");
  5961. _id.put("Greenmans ale(m3)", "5872");
  5962. _id.put("Greenmans ale(m4)", "5873");
  5963. _id.put("Greenmans ale(m4)", "5874");
  5964. _id.put("Mind bomb(m1)", "5875");
  5965. _id.put("Mind bomb(m1)", "5876");
  5966. _id.put("Mind bomb(m2)", "5877");
  5967. _id.put("Mind bomb(m2)", "5878");
  5968. _id.put("Mind bomb(m3)", "5879");
  5969. _id.put("Mind bomb(m3)", "5880");
  5970. _id.put("Mind bomb(m4)", "5881");
  5971. _id.put("Mind bomb(m4)", "5882");
  5972. _id.put("Dragon bitter(m1)", "5883");
  5973. _id.put("Dragon bitter(m1)", "5884");
  5974. _id.put("Dragon bitter(m2)", "5885");
  5975. _id.put("Dragon bitter(m2)", "5886");
  5976. _id.put("Dragon bitter(m3)", "5887");
  5977. _id.put("Dragon bitter(m3)", "5888");
  5978. _id.put("Dragon bitter(m4)", "5889");
  5979. _id.put("Dragon bitter(m4)", "5890");
  5980. _id.put("M'light mead(m1)", "5891");
  5981. _id.put("M'light mead(m1)", "5892");
  5982. _id.put("M'light mead(m2)", "5893");
  5983. _id.put("M'light mead(m2)", "5894");
  5984. _id.put("M'light mead(m3)", "5895");
  5985. _id.put("M'light mead(m3)", "5896");
  5986. _id.put("M'light mead(m4)", "5897");
  5987. _id.put("M'light mead(m4)", "5898");
  5988. _id.put("Axeman's folly(m1)", "5899");
  5989. _id.put("Axeman's folly(m1)", "5900");
  5990. _id.put("Axeman's folly(m2)", "5901");
  5991. _id.put("Axeman's folly(m2)", "5902");
  5992. _id.put("Axeman's folly(m3)", "5903");
  5993. _id.put("Axeman's folly(m3)", "5904");
  5994. _id.put("Axeman's folly(m4)", "5905");
  5995. _id.put("Axeman's folly(m4)", "5906");
  5996. _id.put("Chef's delight(m1)", "5907");
  5997. _id.put("Chef's delight(m1)", "5908");
  5998. _id.put("Chef's delight(m2)", "5909");
  5999. _id.put("Chef's delight(m2)", "5910");
  6000. _id.put("Chef's delight(m3)", "5911");
  6001. _id.put("Chef's delight(m3)", "5912");
  6002. _id.put("Chef's delight(m4)", "5913");
  6003. _id.put("Chef's delight(m4)", "5914");
  6004. _id.put("Slayer respite(m1)", "5915");
  6005. _id.put("Slayer respite(m1)", "5916");
  6006. _id.put("Slayer respite(m2)", "5917");
  6007. _id.put("Slayer respite(m2)", "5918");
  6008. _id.put("Slayer respite(m3)", "5919");
  6009. _id.put("Slayer respite(m3)", "5920");
  6010. _id.put("Slayer respite(m4)", "5921");
  6011. _id.put("Slayer respite(m4)", "5922");
  6012. _id.put("Cider(m1)", "5923");
  6013. _id.put("Cider(m1)", "5924");
  6014. _id.put("Cider(m2)", "5925");
  6015. _id.put("Cider(m2)", "5926");
  6016. _id.put("Cider(m3)", "5927");
  6017. _id.put("Cider(m3)", "5928");
  6018. _id.put("Cider(m4)", "5929");
  6019. _id.put("Cider(m4)", "5930");
  6020. _id.put("Jute fibre", "5931");
  6021. _id.put("Jute fibre", "5932");
  6022. _id.put("Willow branch", "5933");
  6023. _id.put("Willow branch", "5934");
  6024. _id.put("Coconut milk", "5935");
  6025. _id.put("Unfinished potion", "5936");
  6026. _id.put("Weapon poison(+)", "5937");
  6027. _id.put("Weapon poison(+)", "5938");
  6028. _id.put("Unfinished potion", "5939");
  6029. _id.put("Weapon poison(s)", "5940");
  6030. _id.put("Weapon poison(s)", "5941");
  6031. _id.put("Unfinished potion", "5942");
  6032. _id.put("Antidote+(4)", "5943");
  6033. _id.put("Antidote+(4)", "5944");
  6034. _id.put("Antidote+(3)", "5945");
  6035. _id.put("Antidote+(3)", "5946");
  6036. _id.put("Antidote+(2)", "5947");
  6037. _id.put("Antidote+(2)", "5948");
  6038. _id.put("Antidote+(1)", "5949");
  6039. _id.put("Antidote+(1)", "5950");
  6040. _id.put("Unfinished potion", "5951");
  6041. _id.put("Antidote++(4)", "5952");
  6042. _id.put("Antidote++(4)", "5953");
  6043. _id.put("Antidote++(3)", "5954");
  6044. _id.put("Antidote++(3)", "5955");
  6045. _id.put("Antidote++(2)", "5956");
  6046. _id.put("Antidote++(2)", "5957");
  6047. _id.put("Antidote++(1)", "5958");
  6048. _id.put("Antidote++(1)", "5959");
  6049. _id.put("Tomatoes(1)", "5960");
  6050. _id.put("Tomatoes(1)", "5961");
  6051. _id.put("Tomatoes(2)", "5962");
  6052. _id.put("Tomatoes(2)", "5963");
  6053. _id.put("Tomatoes(3)", "5964");
  6054. _id.put("Tomatoes(3)", "5965");
  6055. _id.put("Tomatoes(4)", "5966");
  6056. _id.put("Tomatoes(4)", "5967");
  6057. _id.put("Tomatoes(5)", "5968");
  6058. _id.put("Tomatoes(5)", "5969");
  6059. _id.put("Curry leaf", "5970");
  6060. _id.put("Curry leaf", "5971");
  6061. _id.put("Papaya fruit", "5972");
  6062. _id.put("Papaya fruit", "5973");
  6063. _id.put("Coconut", "5974");
  6064. _id.put("Coconut", "5975");
  6065. _id.put("Coconut", "5976");
  6066. _id.put("Coconut", "5977");
  6067. _id.put("Coconut shell", "5978");
  6068. _id.put("Coconut shell", "5979");
  6069. _id.put("Calquat fruit", "5980");
  6070. _id.put("Calquat fruit", "5981");
  6071. _id.put("Watermelon", "5982");
  6072. _id.put("Watermelon", "5983");
  6073. _id.put("Watermelon slice", "5984");
  6074. _id.put("Watermelon slice", "5985");
  6075. _id.put("Sweetcorn", "5986");
  6076. _id.put("Sweetcorn", "5987");
  6077. _id.put("Sweetcorn", "5988");
  6078. _id.put("Sweetcorn", "5989");
  6079. _id.put("Burnt sweetcorn", "5990");
  6080. _id.put("Burnt sweetcorn", "5991");
  6081. _id.put("Apple mush", "5992");
  6082. _id.put("Apple mush", "5993");
  6083. _id.put("Hammerstone hops", "5994");
  6084. _id.put("Hammerstone hops", "5995");
  6085. _id.put("Asgarnian hops", "5996");
  6086. _id.put("Asgarnian hops", "5997");
  6087. _id.put("Yanillian hops", "5998");
  6088. _id.put("Yanillian hops", "5999");
  6089. _id.put("Krandorian hops", "6000");
  6090. _id.put("Krandorian hops", "6001");
  6091. _id.put("Wildblood hops", "6002");
  6092. _id.put("Wildblood hops", "6003");
  6093. _id.put("Mushroom", "6004");
  6094. _id.put("Mushroom", "6005");
  6095. _id.put("Barley", "6006");
  6096. _id.put("Barley", "6007");
  6097. _id.put("Barley malt", "6008");
  6098. _id.put("Barley malt", "6009");
  6099. _id.put("Marigolds", "6010");
  6100. _id.put("Marigolds", "6011");
  6101. _id.put("Nasturtiums", "6012");
  6102. _id.put("Nasturtiums", "6013");
  6103. _id.put("Rosemary", "6014");
  6104. _id.put("Rosemary", "6015");
  6105. _id.put("Cactus spine", "6016");
  6106. _id.put("Cactus spine", "6017");
  6107. _id.put("Poisonivy berries", "6018");
  6108. _id.put("Poisonivy berries", "6019");
  6109. _id.put("Leaves", "6020");
  6110. _id.put("Leaves", "6021");
  6111. _id.put("Leaves", "6022");
  6112. _id.put("Leaves", "6023");
  6113. _id.put("Leaves", "6024");
  6114. _id.put("Leaves", "6025");
  6115. _id.put("Leaves", "6026");
  6116. _id.put("Leaves", "6027");
  6117. _id.put("Leaves", "6028");
  6118. _id.put("Leaves", "6029");
  6119. _id.put("Leaves", "6030");
  6120. _id.put("Leaves", "6031");
  6121. _id.put("Compost", "6032");
  6122. _id.put("Compost", "6033");
  6123. _id.put("Super compost", "6034");
  6124. _id.put("Super compost", "6035");
  6125. _id.put("Plant cure", "6036");
  6126. _id.put("Plant cure", "6037");
  6127. _id.put("Magic string", "6038");
  6128. _id.put("Magic string", "6039");
  6129. _id.put("Amulet of nature", "6040");
  6130. _id.put("Emerald amulet", "6041");
  6131. _id.put("Emerald amulet", "6042");
  6132. _id.put("Oak roots", "6043");
  6133. _id.put("Oak roots", "6044");
  6134. _id.put("Willow roots", "6045");
  6135. _id.put("Willow roots", "6046");
  6136. _id.put("Maple roots", "6047");
  6137. _id.put("Maple roots", "6048");
  6138. _id.put("Yew roots", "6049");
  6139. _id.put("Yew roots", "6050");
  6140. _id.put("Magic roots", "6051");
  6141. _id.put("Magic roots", "6052");
  6142. _id.put("Spirit roots", "6053");
  6143. _id.put("Spirit roots", "6054");
  6144. _id.put("Weeds", "6055");
  6145. _id.put("Weeds", "6056");
  6146. _id.put("Hay sack", "6057");
  6147. _id.put("Hay sack", "6058");
  6148. _id.put("Scarecrow", "6059");
  6149. _id.put("Stool", "6060");
  6150. _id.put("Bolts(+)", "6061");
  6151. _id.put("Bolts(s)", "6062");
  6152. _id.put("Spirit tree", "6063");
  6153. _id.put("Bloody mourner top", "6064");
  6154. _id.put("Mourner top", "6065");
  6155. _id.put("Mourner trousers", "6066");
  6156. _id.put("Mourner trousers", "6067");
  6157. _id.put("Mourner gloves", "6068");
  6158. _id.put("Mourner boots", "6069");
  6159. _id.put("Mourner cloak", "6070");
  6160. _id.put("Mourner letter", "6071");
  6161. _id.put("Tegid's soap", "6072");
  6162. _id.put("Prifddinas' history", "6073");
  6163. _id.put("Prifddinas' history", "6074");
  6164. _id.put("Eastern discovery", "6075");
  6165. _id.put("Eastern discovery", "6076");
  6166. _id.put("Eastern settlement", "6077");
  6167. _id.put("Eastern settlement", "6078");
  6168. _id.put("The great divide", "6079");
  6169. _id.put("The great divide", "6080");
  6170. _id.put("Broken device", "6081");
  6171. _id.put("Fixed device", "6082");
  6172. _id.put("Tarnished key", "6083");
  6173. _id.put("Worn key", "6084");
  6174. _id.put("Red dye bellows", "6085");
  6175. _id.put("Blue dye bellows", "6086");
  6176. _id.put("Yellow dye bellows", "6087");
  6177. _id.put("Green dye bellows", "6088");
  6178. _id.put("Blue toad", "6089");
  6179. _id.put("Red toad", "6090");
  6180. _id.put("Yellow toad", "6091");
  6181. _id.put("Green toad", "6092");
  6182. _id.put("Rotten apples", "6093");
  6183. _id.put("Apple barrel", "6094");
  6184. _id.put("Naphtha apple mix", "6095");
  6185. _id.put("Toxic naphtha", "6096");
  6186. _id.put("Sieve", "6097");
  6187. _id.put("Toxic powder", "6098");
  6188. _id.put("Teleport crystal (4)", "6099");
  6189. _id.put("Teleport crystal (3)", "6100");
  6190. _id.put("Teleport crystal (2)", "6101");
  6191. _id.put("Teleport crystal (1)", "6102");
  6192. _id.put("Tiny elf crystal", "6103");
  6193. _id.put("New key", "6104");
  6194. _id.put("Elf", "6105");
  6195. _id.put("Ghostly boots", "6106");
  6196. _id.put("Ghostly robe", "6107");
  6197. _id.put("Ghostly robe", "6108");
  6198. _id.put("Ghostly hood", "6109");
  6199. _id.put("Ghostly gloves", "6110");
  6200. _id.put("Ghostly cloak", "6111");
  6201. _id.put("Kelda seed", "6112");
  6202. _id.put("Kelda hops", "6113");
  6203. _id.put("Kelda stout", "6118");
  6204. _id.put("Square stone", "6119");
  6205. _id.put("Square stone", "6120");
  6206. _id.put("Letter", "6121");
  6207. _id.put("A chair", "6122");
  6208. _id.put("Beer glass", "6123");
  6209. _id.put("Coconut milk", "6124");
  6210. _id.put("Enchanted lyre(2)", "6125");
  6211. _id.put("Enchanted lyre(3)", "6126");
  6212. _id.put("Enchanted lyre(4)", "6127");
  6213. _id.put("Rock-shell helm", "6128");
  6214. _id.put("Rock-shell plate", "6129");
  6215. _id.put("Rock-shell legs", "6130");
  6216. _id.put("Spined helm", "6131");
  6217. _id.put("Spined helm", "6132");
  6218. _id.put("Spined body", "6133");
  6219. _id.put("Spined body", "6134");
  6220. _id.put("Spined chaps", "6135");
  6221. _id.put("Spined chaps", "6136");
  6222. _id.put("Skeletal helm", "6137");
  6223. _id.put("Skeletal helm", "6138");
  6224. _id.put("Skeletal top", "6139");
  6225. _id.put("Skeletal top", "6140");
  6226. _id.put("Skeletal bottoms", "6141");
  6227. _id.put("Skeletal bottoms", "6142");
  6228. _id.put("Spined boots", "6143");
  6229. _id.put("Spined boots", "6144");
  6230. _id.put("Rock-shell boots", "6145");
  6231. _id.put("Rock-shell boots", "6146");
  6232. _id.put("Skeletal boots", "6147");
  6233. _id.put("Skeletal boots", "6148");
  6234. _id.put("Spined gloves", "6149");
  6235. _id.put("Spined gloves", "6150");
  6236. _id.put("Rock-shell gloves", "6151");
  6237. _id.put("Rock-shell gloves", "6152");
  6238. _id.put("Skeletal gloves", "6153");
  6239. _id.put("Skeletal gloves", "6154");
  6240. _id.put("Dagannoth hide", "6155");
  6241. _id.put("Dagannoth hide", "6156");
  6242. _id.put("Rock-shell chunk", "6157");
  6243. _id.put("Rock-shell chunk", "6158");
  6244. _id.put("Rock-shell shard", "6159");
  6245. _id.put("Rock-shell shard", "6160");
  6246. _id.put("Rock-shell splinter", "6161");
  6247. _id.put("Rock-shell splinter", "6162");
  6248. _id.put("Skull piece", "6163");
  6249. _id.put("Skull piece", "6164");
  6250. _id.put("Ribcage piece", "6165");
  6251. _id.put("Ribcage piece", "6166");
  6252. _id.put("Fibula piece", "6167");
  6253. _id.put("Fibula piece", "6168");
  6254. _id.put("Circular hide", "6169");
  6255. _id.put("Circular hide", "6170");
  6256. _id.put("Flattened hide", "6171");
  6257. _id.put("Flattened hide", "6172");
  6258. _id.put("Stretched hide", "6173");
  6259. _id.put("Stretched hide", "6174");
  6260. _id.put("Rock-shell helm", "6175");
  6261. _id.put("Rock-shell plate", "6176");
  6262. _id.put("Rock-shell legs", "6177");
  6263. _id.put("Raw pheasant", "6178");
  6264. _id.put("Raw pheasant", "6179");
  6265. _id.put("Lederhosen top", "6180");
  6266. _id.put("Lederhosen shorts", "6181");
  6267. _id.put("Lederhosen hat", "6182");
  6268. _id.put("Frog token", "6183");
  6269. _id.put("Prince tunic", "6184");
  6270. _id.put("Prince leggings", "6185");
  6271. _id.put("Princess blouse", "6186");
  6272. _id.put("Princess skirt", "6187");
  6273. _id.put("Frog mask", "6188");
  6274. _id.put("Mystery box", "6199");
  6275. _id.put("Raw fishlike thing", "6200");
  6276. _id.put("Fishmonger", "6201");
  6277. _id.put("Fishlike thing", "6202");
  6278. _id.put("Sine wave", "6203");
  6279. _id.put("Raw fishlike thing", "6204");
  6280. _id.put("9mm revolver", "6205");
  6281. _id.put("Fishlike thing", "6206");
  6282. _id.put("Mobile phone", "6207");
  6283. _id.put("Man speak amulet", "6208");
  6284. _id.put("Small fishing net", "6209");
  6285. _id.put("Sphinx baby", "6210");
  6286. _id.put("Teak pyre logs", "6211");
  6287. _id.put("Teak pyre logs", "6212");
  6288. _id.put("Mahogany pyre log", "6213");
  6289. _id.put("Mahogany pyre log", "6214");
  6290. _id.put("Broodoo shield (10)", "6215");
  6291. _id.put("Broodoo shield (10)", "6216");
  6292. _id.put("Broodoo shield (9)", "6217");
  6293. _id.put("Broodoo shield (9)", "6218");
  6294. _id.put("Broodoo shield (8)", "6219");
  6295. _id.put("Broodoo shield (8)", "6220");
  6296. _id.put("Broodoo shield (7)", "6221");
  6297. _id.put("Broodoo shield (7)", "6222");
  6298. _id.put("Broodoo shield (6)", "6223");
  6299. _id.put("Broodoo shield (6)", "6224");
  6300. _id.put("Broodoo shield (5)", "6225");
  6301. _id.put("Broodoo shield (5)", "6226");
  6302. _id.put("Broodoo shield (4)", "6227");
  6303. _id.put("Broodoo shield (4)", "6228");
  6304. _id.put("Broodoo shield (3)", "6229");
  6305. _id.put("Broodoo shield (3)", "6230");
  6306. _id.put("Broodoo shield (2)", "6231");
  6307. _id.put("Broodoo shield (2)", "6232");
  6308. _id.put("Broodoo shield (1)", "6233");
  6309. _id.put("Broodoo shield (1)", "6234");
  6310. _id.put("Broodoo shield", "6235");
  6311. _id.put("Broodoo shield", "6236");
  6312. _id.put("Broodoo shield (10)", "6237");
  6313. _id.put("Broodoo shield (10)", "6238");
  6314. _id.put("Broodoo shield (9)", "6239");
  6315. _id.put("Broodoo shield (9)", "6240");
  6316. _id.put("Broodoo shield (8)", "6241");
  6317. _id.put("Broodoo shield (8)", "6242");
  6318. _id.put("Broodoo shield (7)", "6243");
  6319. _id.put("Broodoo shield (7)", "6244");
  6320. _id.put("Broodoo shield (6)", "6245");
  6321. _id.put("Broodoo shield (6)", "6246");
  6322. _id.put("Broodoo shield (5)", "6247");
  6323. _id.put("Broodoo shield (5)", "6248");
  6324. _id.put("Broodoo shield (4)", "6249");
  6325. _id.put("Broodoo shield (4)", "6250");
  6326. _id.put("Broodoo shield (3)", "6251");
  6327. _id.put("Broodoo shield (3)", "6252");
  6328. _id.put("Broodoo shield (2)", "6253");
  6329. _id.put("Broodoo shield (2)", "6254");
  6330. _id.put("Broodoo shield (1)", "6255");
  6331. _id.put("Broodoo shield (1)", "6256");
  6332. _id.put("Broodoo shield", "6257");
  6333. _id.put("Broodoo shield", "6258");
  6334. _id.put("Broodoo shield (10)", "6259");
  6335. _id.put("Broodoo shield (10)", "6260");
  6336. _id.put("Broodoo shield (9)", "6261");
  6337. _id.put("Broodoo shield (9)", "6262");
  6338. _id.put("Broodoo shield (8)", "6263");
  6339. _id.put("Broodoo shield (8)", "6264");
  6340. _id.put("Broodoo shield (7)", "6265");
  6341. _id.put("Broodoo shield (7)", "6266");
  6342. _id.put("Broodoo shield (6)", "6267");
  6343. _id.put("Broodoo shield (6)", "6268");
  6344. _id.put("Broodoo shield (5)", "6269");
  6345. _id.put("Broodoo shield (5)", "6270");
  6346. _id.put("Broodoo shield (4)", "6271");
  6347. _id.put("Broodoo shield (4)", "6272");
  6348. _id.put("Broodoo shield (3)", "6273");
  6349. _id.put("Broodoo shield (3)", "6274");
  6350. _id.put("Broodoo shield (2)", "6275");
  6351. _id.put("Broodoo shield (2)", "6276");
  6352. _id.put("Broodoo shield (1)", "6277");
  6353. _id.put("Broodoo shield (1)", "6278");
  6354. _id.put("Broodoo shield", "6279");
  6355. _id.put("Broodoo shield", "6280");
  6356. _id.put("Thatch spar light", "6281");
  6357. _id.put("Thatch spar light", "6282");
  6358. _id.put("Thatch spar med", "6283");
  6359. _id.put("Thatch spar med", "6284");
  6360. _id.put("Thatch spar dense", "6285");
  6361. _id.put("Thatch spar dense", "6286");
  6362. _id.put("Snake hide", "6287");
  6363. _id.put("Snake hide", "6288");
  6364. _id.put("Snakeskin", "6289");
  6365. _id.put("Snakeskin", "6290");
  6366. _id.put("Spider carcass", "6291");
  6367. _id.put("Spider carcass", "6292");
  6368. _id.put("Spider on stick", "6293");
  6369. _id.put("Spider on stick", "6294");
  6370. _id.put("Spider on shaft", "6295");
  6371. _id.put("Spider on shaft", "6296");
  6372. _id.put("Spider on stick", "6297");
  6373. _id.put("Spider on stick", "6298");
  6374. _id.put("Spider on shaft", "6299");
  6375. _id.put("Spider on shaft", "6300");
  6376. _id.put("Burnt spider", "6301");
  6377. _id.put("Burnt spider", "6302");
  6378. _id.put("Spider on shaft", "6303");
  6379. _id.put("Spider on shaft", "6304");
  6380. _id.put("Skewer stick", "6305");
  6381. _id.put("Trading sticks", "6306");
  6382. _id.put("Gout tuber", "6311");
  6383. _id.put("Gout tuber", "6312");
  6384. _id.put("Opal machete", "6313");
  6385. _id.put("Opal machete", "6314");
  6386. _id.put("Jade machete", "6315");
  6387. _id.put("Jade machete ", "6316");
  6388. _id.put("Red topaz machete", "6317");
  6389. _id.put("Red topaz machete", "6318");
  6390. _id.put("Proboscis", "6319");
  6391. _id.put("Snakeskin body", "6322");
  6392. _id.put("Snakeskin body", "6323");
  6393. _id.put("Snakeskin chaps", "6324");
  6394. _id.put("Snakeskin chaps", "6325");
  6395. _id.put("Snakeskin bandana", "6326");
  6396. _id.put("Snakeskin bandana", "6327");
  6397. _id.put("Snakeskin boots", "6328");
  6398. _id.put("Snakeskin boots", "6329");
  6399. _id.put("Snakeskin v'brace", "6330");
  6400. _id.put("Snakeskin v'brace", "6331");
  6401. _id.put("Mahogany logs", "6332");
  6402. _id.put("Teak logs", "6333");
  6403. _id.put("Teak logs", "6334");
  6404. _id.put("Tribal mask", "6335");
  6405. _id.put("Tribal mask", "6336");
  6406. _id.put("Tribal mask", "6337");
  6407. _id.put("Tribal mask", "6338");
  6408. _id.put("Tribal mask", "6339");
  6409. _id.put("Tribal mask", "6340");
  6410. _id.put("Tribal top", "6341");
  6411. _id.put("Tribal top", "6342");
  6412. _id.put("Villager robe", "6343");
  6413. _id.put("Villager robe", "6344");
  6414. _id.put("Villager hat", "6345");
  6415. _id.put("Villager hat", "6346");
  6416. _id.put("Villager armband", "6347");
  6417. _id.put("Villager armband", "6348");
  6418. _id.put("Villager sandals", "6349");
  6419. _id.put("Villager sandals", "6350");
  6420. _id.put("Tribal top", "6351");
  6421. _id.put("Tribal top", "6352");
  6422. _id.put("Villager robe", "6353");
  6423. _id.put("Villager robe", "6354");
  6424. _id.put("Villager hat", "6355");
  6425. _id.put("Villager hat", "6356");
  6426. _id.put("Villager sandals", "6357");
  6427. _id.put("Villager sandals", "6358");
  6428. _id.put("Villager armband", "6359");
  6429. _id.put("Villager armband", "6360");
  6430. _id.put("Tribal top", "6361");
  6431. _id.put("Tribal top", "6362");
  6432. _id.put("Villager robe", "6363");
  6433. _id.put("Villager robe", "6364");
  6434. _id.put("Villager hat", "6365");
  6435. _id.put("Villager hat", "6366");
  6436. _id.put("Villager sandals", "6367");
  6437. _id.put("Villager sandals", "6368");
  6438. _id.put("Villager armband", "6369");
  6439. _id.put("Villager armband", "6370");
  6440. _id.put("Tribal top", "6371");
  6441. _id.put("Tribal top", "6372");
  6442. _id.put("Villager robe", "6373");
  6443. _id.put("Villager robe", "6374");
  6444. _id.put("Villager hat", "6375");
  6445. _id.put("Villager hat", "6376");
  6446. _id.put("Villager sandals", "6377");
  6447. _id.put("Villager sandals", "6378");
  6448. _id.put("Villager armband", "6379");
  6449. _id.put("Villager armband", "6380");
  6450. _id.put("Tax relief", "6381");
  6451. _id.put("Fez", "6382");
  6452. _id.put("Fez", "6383");
  6453. _id.put("Desert top", "6384");
  6454. _id.put("Desert top", "6385");
  6455. _id.put("Desert robes", "6386");
  6456. _id.put("Desert robes", "6387");
  6457. _id.put("Desert top", "6388");
  6458. _id.put("Desert top", "6389");
  6459. _id.put("Desert legs", "6390");
  6460. _id.put("Desert legs", "6391");
  6461. _id.put("Menap headgear", "6392");
  6462. _id.put("Menap headgear", "6393");
  6463. _id.put("Menaphite top", "6394");
  6464. _id.put("Menaphite top", "6395");
  6465. _id.put("Menaphite robe", "6396");
  6466. _id.put("Menaphite robe", "6397");
  6467. _id.put("Menap action kilt", "6398");
  6468. _id.put("Menap action kilt", "6399");
  6469. _id.put("Menap headgear", "6400");
  6470. _id.put("Menap headgear", "6401");
  6471. _id.put("Menaphite top", "6402");
  6472. _id.put("Menaphite top", "6403");
  6473. _id.put("Menaphite robe", "6404");
  6474. _id.put("Menaphite robe", "6405");
  6475. _id.put("Menap action kilt", "6406");
  6476. _id.put("Menap action kilt", "6407");
  6477. _id.put("Oak blackjack(a)", "6408");
  6478. _id.put("Oak blackjack(a)", "6409");
  6479. _id.put("Oak blackjack(d)", "6410");
  6480. _id.put("Oak blackjack(d)", "6411");
  6481. _id.put("Willow blackjack(a)", "6412");
  6482. _id.put("Willow blackjack(a)", "6413");
  6483. _id.put("Willow blackjack(d)", "6414");
  6484. _id.put("Willow blackjack(d)", "6415");
  6485. _id.put("Maple blackjack", "6416");
  6486. _id.put("Maple blackjack", "6417");
  6487. _id.put("Maple blackjack(a)", "6418");
  6488. _id.put("Maple blackjack(a)", "6419");
  6489. _id.put("Maple blackjack(d)", "6420");
  6490. _id.put("Maple blackjack(d)", "6421");
  6491. _id.put("Air rune", "6422");
  6492. _id.put("Air rune", "6423");
  6493. _id.put("Water rune", "6424");
  6494. _id.put("Water rune", "6425");
  6495. _id.put("Earth rune", "6426");
  6496. _id.put("Earth rune", "6427");
  6497. _id.put("Fire rune", "6428");
  6498. _id.put("Fire rune", "6429");
  6499. _id.put("Chaos rune", "6430");
  6500. _id.put("Chaos rune", "6431");
  6501. _id.put("Death rune", "6432");
  6502. _id.put("Death rune", "6433");
  6503. _id.put("Law rune", "6434");
  6504. _id.put("Law rune", "6435");
  6505. _id.put("Mind rune", "6436");
  6506. _id.put("Mind rune", "6437");
  6507. _id.put("Body rune", "6438");
  6508. _id.put("Body rune", "6439");
  6509. _id.put("Spadeful of coke", "6448");
  6510. _id.put("Whoopsie", "6450");
  6511. _id.put("Whoopsie", "6452");
  6512. _id.put("White rose seed", "6453");
  6513. _id.put("Red rose seed", "6454");
  6514. _id.put("Pink rose seed", "6455");
  6515. _id.put("Vine seed", "6456");
  6516. _id.put("Delphinium seed", "6457");
  6517. _id.put("Orchid seed", "6458");
  6518. _id.put("Orchid seed", "6459");
  6519. _id.put("Snowdrop seed", "6460");
  6520. _id.put("White tree shoot", "6461");
  6521. _id.put("White tree shoot", "6462");
  6522. _id.put("White tree shoot", "6463");
  6523. _id.put("White tree sapling", "6464");
  6524. _id.put("Ring of charos(u)", "6465");
  6525. _id.put("Rune shards", "6466");
  6526. _id.put("Rune dust", "6467");
  6527. _id.put("Plant cure", "6468");
  6528. _id.put("White tree fruit", "6469");
  6529. _id.put("Compost potion(4)", "6470");
  6530. _id.put("Compost potion(4)", "6471");
  6531. _id.put("Compost potion(3)", "6472");
  6532. _id.put("Compost potion(3)", "6473");
  6533. _id.put("Compost potion(2)", "6474");
  6534. _id.put("Compost potion(2)", "6475");
  6535. _id.put("Compost potion(1)", "6476");
  6536. _id.put("Compost potion(1)", "6477");
  6537. _id.put("Trolley", "6478");
  6538. _id.put("List", "6479");
  6539. _id.put("Agility jump", "6514");
  6540. _id.put("Agility balance", "6515");
  6541. _id.put("Agility contortion", "6516");
  6542. _id.put("Agility climb", "6517");
  6543. _id.put("Agility jump", "6518");
  6544. _id.put("Agility balance", "6519");
  6545. _id.put("Agility contortion", "6520");
  6546. _id.put("Agility climb", "6521");
  6547. _id.put("Toktz-xil-ul", "6522");
  6548. _id.put("Toktz-xil-ak", "6523");
  6549. _id.put("Toktz-ket-xil", "6524");
  6550. _id.put("Toktz-xil-ek", "6525");
  6551. _id.put("Toktz-mej-tal", "6526");
  6552. _id.put("Tzhaar-ket-em", "6527");
  6553. _id.put("Tzhaar-ket-om", "6528");
  6554. _id.put("Tokkul", "6529");
  6555. _id.put("Toktz-xil-ak", "6535");
  6556. _id.put("Toktz-ket-xil", "6536");
  6557. _id.put("Toktz-xil-ek", "6537");
  6558. _id.put("Toktz-mej-tal", "6538");
  6559. _id.put("Tzhaar-ket-em", "6539");
  6560. _id.put("Tzhaar-ket-om", "6540");
  6561. _id.put("Mouse toy", "6541");
  6562. _id.put("Present", "6542");
  6563. _id.put("Antique lamp", "6543");
  6564. _id.put("Catspeak amulet(e)", "6544");
  6565. _id.put("Chores", "6545");
  6566. _id.put("Recipe", "6546");
  6567. _id.put("Doctors hat", "6547");
  6568. _id.put("Nurse hat", "6548");
  6569. _id.put("Lazy cat", "6549");
  6570. _id.put("Lazy cat", "6550");
  6571. _id.put("Lazy cat", "6551");
  6572. _id.put("Lazy cat", "6552");
  6573. _id.put("Lazy cat", "6553");
  6574. _id.put("Lazy cat", "6554");
  6575. _id.put("Wily cat", "6555");
  6576. _id.put("Wily cat", "6556");
  6577. _id.put("Wily cat", "6557");
  6578. _id.put("Wily cat", "6558");
  6579. _id.put("Wily cat", "6559");
  6580. _id.put("Wily cat", "6560");
  6581. _id.put("Ahab's beer", "6561");
  6582. _id.put("Mud battlestaff", "6562");
  6583. _id.put("Mystic mud staff", "6563");
  6584. _id.put("Onyx ring", "6564");
  6585. _id.put("Onyx necklace", "6565");
  6586. _id.put("Onyx amulet", "6566");
  6587. _id.put("Obsidian cape", "6568");
  6588. _id.put("Obsidian cape", "6569");
  6589. _id.put("Fire Cape", "6570");
  6590. _id.put("Uncut onyx", "6571");
  6591. _id.put("Uncut onyx", "6572");
  6592. _id.put("Onyx", "6573");
  6593. _id.put("Onyx", "6574");
  6594. _id.put("Onyx ring", "6575");
  6595. _id.put("Onyx ring", "6576");
  6596. _id.put("Onyx necklace", "6577");
  6597. _id.put("Onyx necklace", "6578");
  6598. _id.put("Onyx amulet", "6579");
  6599. _id.put("Onyx amulet", "6580");
  6600. _id.put("Onyx amulet", "6581");
  6601. _id.put("Onyx amulet", "6582");
  6602. _id.put("Ring of stone", "6583");
  6603. _id.put("Ring of stone", "6584");
  6604. _id.put("Amulet of fury", "6585");
  6605. _id.put("Amulet of fury", "6586");
  6606. _id.put("White claws", "6587");
  6607. _id.put("White claws", "6588");
  6608. _id.put("White battleaxe", "6589");
  6609. _id.put("White battleaxe", "6590");
  6610. _id.put("White dagger", "6591");
  6611. _id.put("White dagger", "6592");
  6612. _id.put("White dagger(p)", "6593");
  6613. _id.put("White dagger(p)", "6594");
  6614. _id.put("White dagger(+)", "6595");
  6615. _id.put("White dagger(+)", "6596");
  6616. _id.put("White dagger(s)", "6597");
  6617. _id.put("White dagger(s)", "6598");
  6618. _id.put("White halberd", "6599");
  6619. _id.put("White halberd", "6600");
  6620. _id.put("White mace", "6601");
  6621. _id.put("White mace", "6602");
  6622. _id.put("Magic staff", "6603");
  6623. _id.put("Magic staff", "6604");
  6624. _id.put("White sword", "6605");
  6625. _id.put("White sword", "6606");
  6626. _id.put("White longsword", "6607");
  6627. _id.put("White longsword", "6608");
  6628. _id.put("White 2h sword", "6609");
  6629. _id.put("White 2h sword", "6610");
  6630. _id.put("White scimitar", "6611");
  6631. _id.put("White scimitar", "6612");
  6632. _id.put("White warhammer", "6613");
  6633. _id.put("White warhammer", "6614");
  6634. _id.put("White chainbody", "6615");
  6635. _id.put("White chainbody", "6616");
  6636. _id.put("White platebody", "6617");
  6637. _id.put("White platebody", "6618");
  6638. _id.put("White boots", "6619");
  6639. _id.put("White boots", "6620");
  6640. _id.put("White med helm", "6621");
  6641. _id.put("White med helm", "6622");
  6642. _id.put("White full helm", "6623");
  6643. _id.put("White full helm", "6624");
  6644. _id.put("White platelegs", "6625");
  6645. _id.put("White platelegs", "6626");
  6646. _id.put("White plateskirt", "6627");
  6647. _id.put("White plateskirt", "6628");
  6648. _id.put("White gloves", "6629");
  6649. _id.put("White gloves", "6630");
  6650. _id.put("White sq shield", "6631");
  6651. _id.put("White sq shield", "6632");
  6652. _id.put("White kiteshield", "6633");
  6653. _id.put("White kiteshield", "6634");
  6654. _id.put("Commorb", "6635");
  6655. _id.put("Solus's hat", "6636");
  6656. _id.put("Dark beast", "6637");
  6657. _id.put("Colour wheel", "6638");
  6658. _id.put("Hand mirror", "6639");
  6659. _id.put("Red crystal", "6640");
  6660. _id.put("Yellow crystal", "6641");
  6661. _id.put("Green crystal", "6642");
  6662. _id.put("Cyan crystal", "6643");
  6663. _id.put("Blue crystal", "6644");
  6664. _id.put("Magenta crystal", "6645");
  6665. _id.put("Fractured crystal", "6646");
  6666. _id.put("Fractured crystal", "6647");
  6667. _id.put("Item list", "6648");
  6668. _id.put("Edern's journal", "6649");
  6669. _id.put("Blackened crystal", "6650");
  6670. _id.put("Newly made crystal", "6651");
  6671. _id.put("Newly made crystal", "6652");
  6672. _id.put("Crystal trinket", "6653");
  6673. _id.put("Camo top", "6654");
  6674. _id.put("Camo bottoms", "6655");
  6675. _id.put("Camo helmet", "6656");
  6676. _id.put("Camo top", "6657");
  6677. _id.put("Camo bottoms", "6658");
  6678. _id.put("Camo helmet", "6659");
  6679. _id.put("Fishing explosive", "6660");
  6680. _id.put("Mogre", "6661");
  6681. _id.put("Broken fishing rod", "6662");
  6682. _id.put("Forlorn boot", "6663");
  6683. _id.put("Fishing explosive", "6664");
  6684. _id.put("Mudskipper hat", "6665");
  6685. _id.put("Flippers", "6666");
  6686. _id.put("Fishbowl", "6667");
  6687. _id.put("Fishbowl", "6668");
  6688. _id.put("Fishbowl", "6669");
  6689. _id.put("Fishbowl", "6670");
  6690. _id.put("Fishbowl", "6671");
  6691. _id.put("Fishbowl", "6672");
  6692. _id.put("Fishbowl and net", "6673");
  6693. _id.put("Tiny net", "6674");
  6694. _id.put("An empty box", "6675");
  6695. _id.put("An empty box", "6676");
  6696. _id.put("Guam in a box", "6677");
  6697. _id.put("Guam in a box?", "6678");
  6698. _id.put("Seaweed in a box", "6679");
  6699. _id.put("Seaweed in a box?", "6680");
  6700. _id.put("Ground guam", "6681");
  6701. _id.put("Ground guam", "6682");
  6702. _id.put("Ground seaweed", "6683");
  6703. _id.put("Ground seaweed", "6684");
  6704. _id.put("Saradomin brew(4)", "6685");
  6705. _id.put("Saradomin brew(4)", "6686");
  6706. _id.put("Saradomin brew(3)", "6687");
  6707. _id.put("Saradomin brew(3)", "6688");
  6708. _id.put("Saradomin brew(2)", "6689");
  6709. _id.put("Saradomin brew(2)", "6690");
  6710. _id.put("Saradomin brew(1)", "6691");
  6711. _id.put("Saradomin brew(1)", "6692");
  6712. _id.put("Crushed nest", "6693");
  6713. _id.put("Crushed nest", "6694");
  6714. _id.put("Desert lizard", "6695");
  6715. _id.put("Ice cooler", "6696");
  6716. _id.put("Pat of butter", "6697");
  6717. _id.put("Pat of butter", "6698");
  6718. _id.put("Burnt potato", "6699");
  6719. _id.put("Burnt potato", "6700");
  6720. _id.put("Baked potato", "6701");
  6721. _id.put("Baked potato", "6702");
  6722. _id.put("Potato with butter", "6703");
  6723. _id.put("Potato with butter", "6704");
  6724. _id.put("Potato with cheese", "6705");
  6725. _id.put("Potato with cheese", "6706");
  6726. _id.put("Camulet", "6707");
  6727. _id.put("Slayer gloves", "6708");
  6728. _id.put("Fever spider", "6709");
  6729. _id.put("Blindweed seed", "6710");
  6730. _id.put("Blindweed", "6711");
  6731. _id.put("Bucket of water", "6712");
  6732. _id.put("Wrench", "6713");
  6733. _id.put("Holy wrench", "6714");
  6734. _id.put("Sluglings", "6715");
  6735. _id.put("Karamthulhu", "6716");
  6736. _id.put("Karamthulhu", "6717");
  6737. _id.put("Fever spider body", "6718");
  6738. _id.put("Unsanitary swill", "6719");
  6739. _id.put("Slayer gloves", "6720");
  6740. _id.put("Rusty scimitar", "6721");
  6741. _id.put("Zombie head", "6722");
  6742. _id.put("Fishbowl", "6723");
  6743. _id.put("Seercull", "6724");
  6744. _id.put("Seercull", "6725");
  6745. _id.put("Mud battlestaff", "6726");
  6746. _id.put("Mystic mud staff", "6727");
  6747. _id.put("Bonemeal", "6728");
  6748. _id.put("Dagannoth bones", "6729");
  6749. _id.put("Dagannoth bones", "6730");
  6750. _id.put("Seers ring", "6731");
  6751. _id.put("Seers ring", "6732");
  6752. _id.put("Archers ring", "6733");
  6753. _id.put("Archers ring", "6734");
  6754. _id.put("Warrior ring", "6735");
  6755. _id.put("Warrior ring", "6736");
  6756. _id.put("Berserker ring", "6737");
  6757. _id.put("Berserker ring", "6738");
  6758. _id.put("Dragon axe", "6739");
  6759. _id.put("Dragon axe", "6740");
  6760. _id.put("Broken axe", "6741");
  6761. _id.put("Broken axe", "6742");
  6762. _id.put("Dragon axe head", "6743");
  6763. _id.put("Dragon axe head", "6744");
  6764. _id.put("Silverlight", "6745");
  6765. _id.put("Darklight", "6746");
  6766. _id.put("Demonic sigil mould", "6747");
  6767. _id.put("Demonic sigil", "6748");
  6768. _id.put("Demonic tome", "6749");
  6769. _id.put("Black desert shirt", "6750");
  6770. _id.put("Black desert shirt", "6751");
  6771. _id.put("Black desert robe", "6752");
  6772. _id.put("Black desert robe", "6753");
  6773. _id.put("Enchanted key", "6754");
  6774. _id.put("Journal", "6755");
  6775. _id.put("Letter", "6756");
  6776. _id.put("Letter", "6757");
  6777. _id.put("Scroll", "6758");
  6778. _id.put("Chest", "6759");
  6779. _id.put("Guthix mjolnir", "6760");
  6780. _id.put("Guthix mjolnir", "6761");
  6781. _id.put("Saradomin mjolnir", "6762");
  6782. _id.put("Saradomin mjolnir", "6763");
  6783. _id.put("Zamorak mjolnir", "6764");
  6784. _id.put("Zamorak mjolnir", "6765");
  6785. _id.put("Cat antipoison", "6766");
  6786. _id.put("Book", "6767");
  6787. _id.put("Poisoned cheese", "6768");
  6788. _id.put("Music scroll", "6769");
  6789. _id.put("Directions", "6770");
  6790. _id.put("Pot of weeds", "6771");
  6791. _id.put("Smouldering pot", "6772");
  6792. _id.put("Rat pole", "6773");
  6793. _id.put("Rat pole", "6774");
  6794. _id.put("Rat pole", "6775");
  6795. _id.put("Rat pole", "6776");
  6796. _id.put("Rat pole", "6777");
  6797. _id.put("Rat pole", "6778");
  6798. _id.put("Rat pole", "6779");
  6799. _id.put("Menaphite thug", "6780");
  6800. _id.put("Bandit", "6781");
  6801. _id.put("Bandit", "6782");
  6802. _id.put("Whoopsie", "6784");
  6803. _id.put("Statuette", "6785");
  6804. _id.put("Robe of elidinis", "6786");
  6805. _id.put("Robe of elidinis", "6787");
  6806. _id.put("Torn robe", "6788");
  6807. _id.put("Torn robe", "6789");
  6808. _id.put("Shoes", "6790");
  6809. _id.put("Sole", "6791");
  6810. _id.put("Ancestral key", "6792");
  6811. _id.put("Ballad", "6793");
  6812. _id.put("Choc-ice", "6794");
  6813. _id.put("Choc-ice", "6795");
  6814. _id.put("Lamp", "6796");
  6815. _id.put("Watering can", "6797");
  6816. _id.put("Champion scroll", "6798");
  6817. _id.put("Champion scroll", "6799");
  6818. _id.put("Champion scroll", "6800");
  6819. _id.put("Champion scroll", "6801");
  6820. _id.put("Champion scroll", "6802");
  6821. _id.put("Champion scroll", "6803");
  6822. _id.put("Champion scroll", "6804");
  6823. _id.put("Champion scroll", "6805");
  6824. _id.put("Champion scroll", "6806");
  6825. _id.put("Champion scroll", "6807");
  6826. _id.put("Champion scroll", "6808");
  6827. _id.put("Granite legs", "6809");
  6828. _id.put("Bonemeal", "6810");
  6829. _id.put("Skeletal wyvern", "6811");
  6830. _id.put("Wyvern bones", "6812");
  6831. _id.put("Granite legs", "6813");
  6832. _id.put("Fur", "6814");
  6833. _id.put("Fur", "6815");
  6834. _id.put("Wyvern bones", "6816");
  6835. _id.put("Slender blade", "6817");
  6836. _id.put("Bow-sword", "6818");
  6837. _id.put("Large pouch", "6819");
  6838. _id.put("Relic", "6820");
  6839. _id.put("Orb", "6821");
  6840. _id.put("Star bauble", "6822");
  6841. _id.put("Star bauble", "6823");
  6842. _id.put("Star bauble", "6824");
  6843. _id.put("Star bauble", "6825");
  6844. _id.put("Star bauble", "6826");
  6845. _id.put("Star bauble", "6827");
  6846. _id.put("Box bauble", "6828");
  6847. _id.put("Box bauble", "6829");
  6848. _id.put("Box bauble", "6830");
  6849. _id.put("Box bauble", "6831");
  6850. _id.put("Box bauble", "6832");
  6851. _id.put("Box bauble", "6833");
  6852. _id.put("Diamond bauble", "6834");
  6853. _id.put("Diamond bauble", "6835");
  6854. _id.put("Diamond bauble", "6836");
  6855. _id.put("Diamond bauble", "6837");
  6856. _id.put("Diamond bauble", "6838");
  6857. _id.put("Diamond bauble", "6839");
  6858. _id.put("Tree bauble", "6840");
  6859. _id.put("Tree bauble", "6841");
  6860. _id.put("Tree bauble", "6842");
  6861. _id.put("Tree bauble", "6843");
  6862. _id.put("Tree bauble", "6844");
  6863. _id.put("Tree bauble", "6845");
  6864. _id.put("Bell bauble", "6846");
  6865. _id.put("Bell bauble", "6847");
  6866. _id.put("Bell bauble", "6848");
  6867. _id.put("Bell bauble", "6849");
  6868. _id.put("Bell bauble", "6850");
  6869. _id.put("Bell bauble", "6851");
  6870. _id.put("Puppet box", "6852");
  6871. _id.put("Bauble box", "6853");
  6872. _id.put("Puppet box", "6854");
  6873. _id.put("Bauble box", "6855");
  6874. _id.put("Bobble hat", "6856");
  6875. _id.put("Bobble scarf", "6857");
  6876. _id.put("Jester hat", "6858");
  6877. _id.put("Jester scarf", "6859");
  6878. _id.put("Tri-jester hat", "6860");
  6879. _id.put("Tri-jester scarf", "6861");
  6880. _id.put("Woolly hat", "6862");
  6881. _id.put("Woolly scarf", "6863");
  6882. _id.put("Marionette handle", "6864");
  6883. _id.put("Blue marionette", "6865");
  6884. _id.put("Green marionette", "6866");
  6885. _id.put("Red marionette", "6867");
  6886. _id.put("Blue marionette", "6868");
  6887. _id.put("Green marionette", "6869");
  6888. _id.put("Red marionette", "6870");
  6889. _id.put("Red marionette", "6871");
  6890. _id.put("Red marionette", "6872");
  6891. _id.put("Red marionette", "6873");
  6892. _id.put("Red marionette", "6874");
  6893. _id.put("Blue marionette", "6875");
  6894. _id.put("Blue marionette", "6876");
  6895. _id.put("Blue marionette", "6877");
  6896. _id.put("Blue marionette", "6878");
  6897. _id.put("Green marionette", "6879");
  6898. _id.put("Green marionette", "6880");
  6899. _id.put("Green marionette", "6881");
  6900. _id.put("Green marionette", "6882");
  6901. _id.put("Peach", "6883");
  6902. _id.put("Progress hat", "6885");
  6903. _id.put("Progress hat", "6886");
  6904. _id.put("Progress hat", "6887");
  6905. _id.put("Guardian statue", "6888");
  6906. _id.put("Mage's book", "6889");
  6907. _id.put("Mage's book", "6890");
  6908. _id.put("Arena book", "6891");
  6909. _id.put("Arena book", "6892");
  6910. _id.put("Leather boots", "6893");
  6911. _id.put("Adamant kiteshield", "6894");
  6912. _id.put("Adamant med helm", "6895");
  6913. _id.put("Emerald", "6896");
  6914. _id.put("Rune longsword", "6897");
  6915. _id.put("Cylinder", "6898");
  6916. _id.put("Cube", "6899");
  6917. _id.put("Icosahedron", "6900");
  6918. _id.put("Pentamid", "6901");
  6919. _id.put("Orb", "6902");
  6920. _id.put("Dragonstone", "6903");
  6921. _id.put("Animals' bones", "6904");
  6922. _id.put("Animals' bones", "6905");
  6923. _id.put("Animals' bones", "6906");
  6924. _id.put("Animals' bones", "6907");
  6925. _id.put("Beginner wand", "6908");
  6926. _id.put("Beginner wand", "6909");
  6927. _id.put("Apprentice wand", "6910");
  6928. _id.put("Apprentice wand", "6911");
  6929. _id.put("Teacher wand", "6912");
  6930. _id.put("Teacher wand", "6913");
  6931. _id.put("Master wand", "6914");
  6932. _id.put("Master wand", "6915");
  6933. _id.put("Infinity top", "6916");
  6934. _id.put("Infinity top", "6917");
  6935. _id.put("Infinity hat", "6918");
  6936. _id.put("Infinity hat", "6919");
  6937. _id.put("Infinity boots", "6920");
  6938. _id.put("Infinity boots", "6921");
  6939. _id.put("Infinity gloves", "6922");
  6940. _id.put("Infinity gloves", "6923");
  6941. _id.put("Infinity bottoms", "6924");
  6942. _id.put("Infinity bottoms", "6925");
  6943. _id.put("Bones to peaches", "6926");
  6944. _id.put("Sandy hand", "6945");
  6945. _id.put("Beer soaked hand", "6946");
  6946. _id.put("Bert's rota", "6947");
  6947. _id.put("Sandy's rota", "6948");
  6948. _id.put("A magic scroll", "6949");
  6949. _id.put("Magical orb", "6950");
  6950. _id.put("Magical orb (a)", "6951");
  6951. _id.put("Truth serum", "6952");
  6952. _id.put("Bottled water", "6953");
  6953. _id.put("Redberry juice", "6954");
  6954. _id.put("Pink dye", "6955");
  6955. _id.put("Rose tinted lens", "6956");
  6956. _id.put("Wizard's head", "6957");
  6957. _id.put("Sand", "6958");
  6958. _id.put("Cape", "6959");
  6959. _id.put("Cape", "6960");
  6960. _id.put("Baguette", "6961");
  6961. _id.put("Triangle sandwich", "6962");
  6962. _id.put("Roll", "6963");
  6963. _id.put("Waste disposal", "6964");
  6964. _id.put("Square sandwich", "6965");
  6965. _id.put("Prison key", "6966");
  6966. _id.put("Waste disposal", "6967");
  6967. _id.put("Waste disposal", "6968");
  6968. _id.put("Waste disposal", "6969");
  6969. _id.put("Pyramid top", "6970");
  6970. _id.put("Sandstone (1kg)", "6971");
  6971. _id.put("Sandstone (1kg)", "6972");
  6972. _id.put("Sandstone (2kg)", "6973");
  6973. _id.put("Sandstone (2kg)", "6974");
  6974. _id.put("Sandstone (5kg)", "6975");
  6975. _id.put("Sandstone (5kg)", "6976");
  6976. _id.put("Sandstone (10kg)", "6977");
  6977. _id.put("Sandstone (10kg)", "6978");
  6978. _id.put("Granite (500g)", "6979");
  6979. _id.put("Granite (500g)", "6980");
  6980. _id.put("Granite (2kg)", "6981");
  6981. _id.put("Granite (2kg)", "6982");
  6982. _id.put("Granite (5kg)", "6983");
  6983. _id.put("Granite (5kg)", "6984");
  6984. _id.put("Sandstone (20kg)", "6985");
  6985. _id.put("Sandstone (32kg)", "6986");
  6986. _id.put("Sandstone body", "6987");
  6987. _id.put("Sandstone base", "6988");
  6988. _id.put("Stone head", "6989");
  6989. _id.put("Stone head", "6990");
  6990. _id.put("Stone head", "6991");
  6991. _id.put("Stone head", "6992");
  6992. _id.put("Z sigil", "6993");
  6993. _id.put("M sigil", "6994");
  6994. _id.put("R sigil", "6995");
  6995. _id.put("K sigil", "6996");
  6996. _id.put("Stone left arm", "6997");
  6997. _id.put("Stone right arm", "6998");
  6998. _id.put("Stone left leg", "6999");
  6999. _id.put("Stone right leg", "7000");
  7000. _id.put("Camel mould (p)", "7001");
  7001. _id.put("Stone head", "7002");
  7002. _id.put("Camel mask", "7003");
  7003. _id.put("Chisel", "7004");
  7004. _id.put("Swarm", "7050");
  7005. _id.put("Unlit bug lantern", "7051");
  7006. _id.put("Unlit bug lantern", "7052");
  7007. _id.put("Lit bug lantern", "7053");
  7008. _id.put("Chilli potato", "7054");
  7009. _id.put("Chilli potato", "7055");
  7010. _id.put("Egg potato", "7056");
  7011. _id.put("Egg potato", "7057");
  7012. _id.put("Mushroom potato", "7058");
  7013. _id.put("Mushroom potato", "7059");
  7014. _id.put("Tuna potato", "7060");
  7015. _id.put("Tuna potato", "7061");
  7016. _id.put("Chilli con carne", "7062");
  7017. _id.put("Chilli con carne", "7063");
  7018. _id.put("Egg and tomato", "7064");
  7019. _id.put("Egg and tomato", "7065");
  7020. _id.put("Mushroom & onion", "7066");
  7021. _id.put("Mushroom & onion", "7067");
  7022. _id.put("Tuna and corn", "7068");
  7023. _id.put("Tuna and corn", "7069");
  7024. _id.put("Minced meat", "7070");
  7025. _id.put("Minced meat", "7071");
  7026. _id.put("Spicy sauce", "7072");
  7027. _id.put("Spicy sauce", "7073");
  7028. _id.put("Chopped garlic", "7074");
  7029. _id.put("Chopped garlic", "7075");
  7030. _id.put("Uncooked egg", "7076");
  7031. _id.put("Uncooked egg", "7077");
  7032. _id.put("Scrambled egg", "7078");
  7033. _id.put("Scrambled egg", "7079");
  7034. _id.put("Sliced mushrooms", "7080");
  7035. _id.put("Sliced mushrooms", "7081");
  7036. _id.put("Fried mushrooms", "7082");
  7037. _id.put("Fried mushrooms", "7083");
  7038. _id.put("Fried onions", "7084");
  7039. _id.put("Fried onions", "7085");
  7040. _id.put("Chopped tuna", "7086");
  7041. _id.put("Chopped tuna", "7087");
  7042. _id.put("Sweetcorn", "7088");
  7043. _id.put("Sweetcorn", "7089");
  7044. _id.put("Burnt egg", "7090");
  7045. _id.put("Burnt egg", "7091");
  7046. _id.put("Burnt onion", "7092");
  7047. _id.put("Burnt onion", "7093");
  7048. _id.put("Burnt mushroom", "7094");
  7049. _id.put("Burnt mushroom", "7095");
  7050. _id.put("Board game piece", "7096");
  7051. _id.put("Board game piece", "7097");
  7052. _id.put("Board game piece", "7098");
  7053. _id.put("Board game piece", "7099");
  7054. _id.put("Board game piece", "7100");
  7055. _id.put("Board game piece", "7101");
  7056. _id.put("Board game piece", "7102");
  7057. _id.put("Board game piece", "7103");
  7058. _id.put("Board game piece", "7104");
  7059. _id.put("Board game piece", "7105");
  7060. _id.put("Board game piece", "7106");
  7061. _id.put("Board game piece", "7107");
  7062. _id.put("Gunpowder", "7108");
  7063. _id.put("Fuse", "7109");
  7064. _id.put("Stripy pirate shirt", "7110");
  7065. _id.put("Stripy pirate shirt", "7111");
  7066. _id.put("Pirate bandanna", "7112");
  7067. _id.put("Pirate bandanna", "7113");
  7068. _id.put("Pirate boots", "7114");
  7069. _id.put("Pirate boots", "7115");
  7070. _id.put("Pirate leggings", "7116");
  7071. _id.put("Pirate leggings", "7117");
  7072. _id.put("Cannister", "7118");
  7073. _id.put("Cannon ball", "7119");
  7074. _id.put("Ramrod", "7120");
  7075. _id.put("Repair plank", "7121");
  7076. _id.put("Stripy pirate shirt", "7122");
  7077. _id.put("Stripy pirate shirt", "7123");
  7078. _id.put("Pirate bandanna", "7124");
  7079. _id.put("Pirate bandanna", "7125");
  7080. _id.put("Pirate leggings", "7126");
  7081. _id.put("Pirate leggings", "7127");
  7082. _id.put("Stripy pirate shirt", "7128");
  7083. _id.put("Stripy pirate shirt", "7129");
  7084. _id.put("Pirate bandanna", "7130");
  7085. _id.put("Pirate bandanna", "7131");
  7086. _id.put("Pirate leggings", "7132");
  7087. _id.put("Pirate leggings", "7133");
  7088. _id.put("Stripy pirate shirt", "7134");
  7089. _id.put("Stripy pirate shirt", "7135");
  7090. _id.put("Pirate bandanna", "7136");
  7091. _id.put("Pirate bandanna", "7137");
  7092. _id.put("Pirate leggings", "7138");
  7093. _id.put("Pirate leggings", "7139");
  7094. _id.put("Lucky cutlass", "7140");
  7095. _id.put("Harry's cutlass", "7141");
  7096. _id.put("Rapier", "7142");
  7097. _id.put("Plunder", "7143");
  7098. _id.put("Book o' piracy", "7144");
  7099. _id.put("Cannon barrel", "7145");
  7100. _id.put("Broken cannon", "7146");
  7101. _id.put("Cannon balls", "7147");
  7102. _id.put("Repair plank", "7148");
  7103. _id.put("Cannister", "7149");
  7104. _id.put("Tacks", "7150");
  7105. _id.put("Rope", "7155");
  7106. _id.put("Tinderbox", "7156");
  7107. _id.put("Braindeath 'rum'", "7157");
  7108. _id.put("Dragon 2h sword", "7158");
  7109. _id.put("Slayer boots", "7159");
  7110. _id.put("Killerwatt", "7160");
  7111. _id.put("Slayer boots", "7161");
  7112. _id.put("Pie recipe book", "7162");
  7113. _id.put("Pie recipe book", "7163");
  7114. _id.put("Part mud pie", "7164");
  7115. _id.put("Part mud pie", "7165");
  7116. _id.put("Part mud pie", "7166");
  7117. _id.put("Part mud pie", "7167");
  7118. _id.put("Raw mud pie", "7168");
  7119. _id.put("Raw mud pie", "7169");
  7120. _id.put("Mud pie", "7170");
  7121. _id.put("Mud pie", "7171");
  7122. _id.put("Part garden pie", "7172");
  7123. _id.put("Part garden pie", "7173");
  7124. _id.put("Part garden pie", "7174");
  7125. _id.put("Part garden pie", "7175");
  7126. _id.put("Raw garden pie", "7176");
  7127. _id.put("Raw garden pie", "7177");
  7128. _id.put("Garden pie", "7178");
  7129. _id.put("Garden pie", "7179");
  7130. _id.put("Half a garden pie", "7180");
  7131. _id.put("Half a garden pie", "7181");
  7132. _id.put("Part fish pie", "7182");
  7133. _id.put("Part fish pie", "7183");
  7134. _id.put("Part fish pie", "7184");
  7135. _id.put("Part fish pie", "7185");
  7136. _id.put("Raw fish pie", "7186");
  7137. _id.put("Raw fish pie", "7187");
  7138. _id.put("Fish pie", "7188");
  7139. _id.put("Fish pie", "7189");
  7140. _id.put("Half a fish pie", "7190");
  7141. _id.put("Half a fish pie", "7191");
  7142. _id.put("Part admiral pie", "7192");
  7143. _id.put("Part admiral pie", "7193");
  7144. _id.put("Part admiral pie", "7194");
  7145. _id.put("Part admiral pie", "7195");
  7146. _id.put("Raw admiral pie", "7196");
  7147. _id.put("Raw admiral pie", "7197");
  7148. _id.put("Admiral pie", "7198");
  7149. _id.put("Admiral pie", "7199");
  7150. _id.put("Half a admiral pie", "7200");
  7151. _id.put("Half a admiral pie", "7201");
  7152. _id.put("Part wild pie", "7202");
  7153. _id.put("Part wild pie", "7203");
  7154. _id.put("Part wild pie", "7204");
  7155. _id.put("Part wild pie", "7205");
  7156. _id.put("Raw wild pie", "7206");
  7157. _id.put("Raw wild pie", "7207");
  7158. _id.put("Wild pie", "7208");
  7159. _id.put("Wild pie", "7209");
  7160. _id.put("Half a wild pie", "7210");
  7161. _id.put("Half a wild pie", "7211");
  7162. _id.put("Part summer pie", "7212");
  7163. _id.put("Part summer pie", "7213");
  7164. _id.put("Part summer pie", "7214");
  7165. _id.put("Part summer pie", "7215");
  7166. _id.put("Raw summer pie", "7216");
  7167. _id.put("Raw summer pie", "7217");
  7168. _id.put("Summer pie", "7218");
  7169. _id.put("Summer pie", "7219");
  7170. _id.put("Half a summer pie", "7220");
  7171. _id.put("Half a summer pie", "7221");
  7172. _id.put("Burnt rabbit", "7222");
  7173. _id.put("Roast rabbit", "7223");
  7174. _id.put("Skewered rabbit", "7224");
  7175. _id.put("Iron spit", "7225");
  7176. _id.put("Burnt chompy", "7226");
  7177. _id.put("Burnt chompy", "7227");
  7178. _id.put("Cooked chompy", "7228");
  7179. _id.put("Cooked chompy", "7229");
  7180. _id.put("Skewered chompy", "7230");
  7181. _id.put("Burnt rabbit", "7231");
  7182. _id.put("Roast rabbit", "7232");
  7183. _id.put("Skewered rabbit", "7233");
  7184. _id.put("Iron spit", "7234");
  7185. _id.put("Skewered chompy", "7235");
  7186. _id.put("Clue scroll", "7236");
  7187. _id.put("Casket", "7237");
  7188. _id.put("Clue scroll", "7238");
  7189. _id.put("Clue scroll", "7239");
  7190. _id.put("Casket", "7240");
  7191. _id.put("Clue scroll", "7241");
  7192. _id.put("Casket", "7242");
  7193. _id.put("Clue scroll", "7243");
  7194. _id.put("Casket", "7244");
  7195. _id.put("Clue scroll", "7245");
  7196. _id.put("Casket", "7246");
  7197. _id.put("Clue scroll", "7247");
  7198. _id.put("Clue scroll", "7248");
  7199. _id.put("Clue scroll", "7249");
  7200. _id.put("Clue scroll", "7250");
  7201. _id.put("Clue scroll", "7251");
  7202. _id.put("Clue scroll", "7252");
  7203. _id.put("Clue scroll", "7253");
  7204. _id.put("Clue scroll", "7254");
  7205. _id.put("Clue scroll", "7255");
  7206. _id.put("Clue scroll", "7256");
  7207. _id.put("Black Platelegs ", "7257");®
  7208. _id.put("Black Platebody ", "7258");®
  7209. _id.put("Black Helm ", "7259");®
  7210. _id.put("Black Kiteshield ", "7260");®
  7211. _id.put("Black Plateskirt ", "7261");®
  7212. _id.put("Black Platelegs (W)", "7262");
  7213. _id.put("Black Platebody (W)", "7263");
  7214. _id.put("Black Helm (W)", "7264");
  7215. _id.put("Black Kiteshield (W)", "7265");
  7216. _id.put("Black Plateskirt (W)", "7266");
  7217. _id.put("Black Platelegs (", "7267");
  7218. _id.put("Black Platebody (", "7268");
  7219. _id.put("Black Helm (", "7269");
  7220. _id.put("Black Kiteshield (", "7270");
  7221. _id.put("Black Plateskirt (", "7271");
  7222. _id.put("Black Platelegs (G)", "7272");
  7223. _id.put("Black Platebody (G)", "7273");
  7224. _id.put("Black Helm (G)", "7274");
  7225. _id.put("Black Kiteshield (G)", "7275");
  7226. _id.put("Black Plateskirt (G)", "7276");
  7227. _id.put("Black Platelegs (P)", "7277");
  7228. _id.put("Black Platebody (P)", "7278");
  7229. _id.put("Black Helm (P)", "7279");
  7230. _id.put("Black Kiteshield (P)", "7280");
  7231. _id.put("Black Plateskirt (P)", "7281");
  7232. _id.put("Clue scroll", "7282");
  7233. _id.put("Challenge scroll", "7283");
  7234. _id.put("Clue scroll", "7284");
  7235. _id.put("Challenge scroll", "7285");
  7236. _id.put("Clue scroll", "7286");
  7237. _id.put("Casket", "7287");
  7238. _id.put("Clue scroll", "7288");
  7239. _id.put("Casket", "7289");
  7240. _id.put("Clue scroll", "7290");
  7241. _id.put("Casket", "7291");
  7242. _id.put("Clue scroll", "7292");
  7243. _id.put("Casket", "7293");
  7244. _id.put("Clue scroll", "7294");
  7245. _id.put("Casket", "7295");
  7246. _id.put("Clue scroll", "7296");
  7247. _id.put("Key", "7297");
  7248. _id.put("Clue scroll", "7298");
  7249. _id.put("Key", "7299");
  7250. _id.put("Clue scroll", "7300");
  7251. _id.put("Clue scroll", "7301");
  7252. _id.put("Key", "7302");
  7253. _id.put("Clue scroll", "7303");
  7254. _id.put("Clue scroll", "7304");
  7255. _id.put("Clue scroll", "7305");
  7256. _id.put("Casket", "7306");
  7257. _id.put("Clue scroll", "7307");
  7258. _id.put("Casket", "7308");
  7259. _id.put("Clue scroll", "7309");
  7260. _id.put("Casket", "7310");
  7261. _id.put("Clue scroll", "7311");
  7262. _id.put("Casket", "7312");
  7263. _id.put("Clue scroll", "7313");
  7264. _id.put("Casket", "7314");
  7265. _id.put("Clue scroll", "7315");
  7266. _id.put("Casket", "7316");
  7267. _id.put("Clue scroll", "7317");
  7268. _id.put("Casket", "7318");
  7269. _id.put("Red boater", "7319");
  7270. _id.put("Red boater", "7320");
  7271. _id.put("Orange boater", "7321");
  7272. _id.put("Orange boater", "7322");
  7273. _id.put("Green boater", "7323");
  7274. _id.put("Green boater", "7324");
  7275. _id.put("Blue boater", "7325");
  7276. _id.put("Blue boater", "7326");
  7277. _id.put("Black boater", "7327");
  7278. _id.put("Black boater", "7328");
  7279. _id.put("Red firelighter", "7329");
  7280. _id.put("Green firelighter", "7330");
  7281. _id.put("Blue firelighter", "7331");
  7282. _id.put("Black kiteshield(h)", "7332");
  7283. _id.put("Black kiteshield(h)", "7333");
  7284. _id.put("Adam kiteshield(h)", "7334");
  7285. _id.put("Adam kiteshield(h)", "7335");
  7286. _id.put("Rune kiteshield(h)", "7336");
  7287. _id.put("Rune kiteshield(h)", "7337");
  7288. _id.put("Black kiteshield(h)", "7338");
  7289. _id.put("Black kiteshield(h)", "7339");
  7290. _id.put("Adam kiteshield(h)", "7340");
  7291. _id.put("Adam kiteshield(h)", "7341");
  7292. _id.put("Rune kiteshield(h)", "7342");
  7293. _id.put("Rune kiteshield(h)", "7343");
  7294. _id.put("Black kiteshield(h)", "7344");
  7295. _id.put("Black kiteshield(h)", "7345");
  7296. _id.put("Adam kiteshield(h)", "7346");
  7297. _id.put("Adam kiteshield(h)", "7347");
  7298. _id.put("Rune kiteshield(h)", "7348");
  7299. _id.put("Rune kiteshield(h)", "7349");
  7300. _id.put("Black kiteshield(h)", "7350");
  7301. _id.put("Black kiteshield(h)", "7351");
  7302. _id.put("Adam kiteshield(h)", "7352");
  7303. _id.put("Adam kiteshield(h)", "7353");
  7304. _id.put("Rune kiteshield(h)", "7354");
  7305. _id.put("Rune kiteshield(h)", "7355");
  7306. _id.put("Black kiteshield(h)", "7356");
  7307. _id.put("Black kiteshield(h)", "7357");
  7308. _id.put("Adam kiteshield(h)", "7358");
  7309. _id.put("Adam kiteshield(h)", "7359");
  7310. _id.put("Rune kiteshield(h)", "7360");
  7311. _id.put("Rune kiteshield(h)", "7361");
  7312. _id.put("Studded body (g)", "7362");
  7313. _id.put("Studded body (g)", "7363");
  7314. _id.put("Studded body (t)", "7364");
  7315. _id.put("Studded body (t)", "7365");
  7316. _id.put("Studded chaps (g)", "7366");
  7317. _id.put("Studded chaps (g)", "7367");
  7318. _id.put("Studded chaps (t)", "7368");
  7319. _id.put("Studded chaps (t)", "7369");
  7320. _id.put("D-hide body(g)", "7370");
  7321. _id.put("D-hide body(g)", "7371");
  7322. _id.put("D-hide body (t)", "7372");
  7323. _id.put("D-hide body (t)", "7373");
  7324. _id.put("D-hide body (g)", "7374");
  7325. _id.put("D-hide body (g)", "7375");
  7326. _id.put("D-hide body (t)", "7376");
  7327. _id.put("D-hide body (t)", "7377");
  7328. _id.put("D-hide chaps (g)", "7378");
  7329. _id.put("D-hide chaps (g)", "7379");
  7330. _id.put("D-hide chaps (t)", "7380");
  7331. _id.put("D-hide chaps (t)", "7381");
  7332. _id.put("D-hide chaps (g)", "7382");
  7333. _id.put("D-hide chaps (g)", "7383");
  7334. _id.put("D-hide chaps (t)", "7384");
  7335. _id.put("D-hide chaps (t)", "7385");
  7336. _id.put("Blue skirt (g)", "7386");
  7337. _id.put("Blue skirt (g)", "7387");
  7338. _id.put("Blue skirt (t)", "7388");
  7339. _id.put("Blue skirt (t)", "7389");
  7340. _id.put("Wizard robe (g)", "7390");
  7341. _id.put("Wizard robe (g)", "7391");
  7342. _id.put("Wizard robe (t)", "7392");
  7343. _id.put("Wizard robe (t)", "7393");
  7344. _id.put("Wizard hat (g)", "7394");
  7345. _id.put("Wizard hat (g)", "7395");
  7346. _id.put("Wizard hat (t)", "7396");
  7347. _id.put("Wizard hat (t)", "7397");
  7348. _id.put("Enchanted robe", "7398");
  7349. _id.put("Enchanted top", "7399");
  7350. _id.put("Enchanted hat", "7400");
  7351. _id.put("Enchanted robe", "7401");
  7352. _id.put("Enchanted top", "7402");
  7353. _id.put("Enchanted hat", "7403");
  7354. _id.put("Red logs", "7404");
  7355. _id.put("Green logs", "7405");
  7356. _id.put("Blue logs", "7406");
  7357. _id.put("Dragon 2h sword", "7407");
  7358. _id.put("Draynor skull", "7408");
  7359. _id.put("Magic secateurs", "7409");
  7360. _id.put("Queen's secateurs", "7410");
  7361. _id.put("Symptoms list", "7411");
  7362. _id.put("Bird nest", "7413");
  7363. _id.put("Paddle", "7414");
  7364. _id.put("Paddle", "7415");
  7365. _id.put("Mole claw", "7416");
  7366. _id.put("Mole claw", "7417");
  7367. _id.put("Mole skin", "7418");
  7368. _id.put("Mole skin", "7419");
  7369. _id.put("Mutated zygomite", "7420");
  7370. _id.put("Fungicide spray 10", "7421");
  7371. _id.put("Fungicide spray 9", "7422");
  7372. _id.put("Fungicide spray 8", "7423");
  7373. _id.put("Fungicide spray 7", "7424");
  7374. _id.put("Fungicide spray 6", "7425");
  7375. _id.put("Fungicide spray 5", "7426");
  7376. _id.put("Fungicide spray 4", "7427");
  7377. _id.put("Fungicide spray 3", "7428");
  7378. _id.put("Fungicide spray 2", "7429");
  7379. _id.put("Fungicide spray 1", "7430");
  7380. _id.put("Fungicide spray 0", "7431");
  7381. _id.put("Fungicide", "7432");
  7382. _id.put("Wooden spoon", "7433");
  7383. _id.put("Wooden spoon", "7434");
  7384. _id.put("Egg whisk", "7435");
  7385. _id.put("Egg whisk", "7436");
  7386. _id.put("Spork", "7437");
  7387. _id.put("Spork", "7438");
  7388. _id.put("Spatula", "7439");
  7389. _id.put("Spatula", "7440");
  7390. _id.put("Frying pan", "7441");
  7391. _id.put("Frying pan", "7442");
  7392. _id.put("Skewer", "7443");
  7393. _id.put("Skewer", "7444");
  7394. _id.put("Rolling pin", "7445");
  7395. _id.put("Rolling pin", "7446");
  7396. _id.put("Kitchen knife", "7447");
  7397. _id.put("Kitchen knife", "7448");
  7398. _id.put("Meat tenderiser", "7449");
  7399. _id.put("Meat tenderiser", "7450");
  7400. _id.put("Cleaver", "7451");
  7401. _id.put("Cleaver", "7452");
  7402. _id.put("Gloves", "7453");
  7403. _id.put("Gloves", "7454");
  7404. _id.put("Gloves", "7455");
  7405. _id.put("Gloves", "7456");
  7406. _id.put("Gloves", "7457");
  7407. _id.put("Gloves", "7458");
  7408. _id.put("Gloves", "7459");
  7409. _id.put("Gloves", "7460");
  7410. _id.put("Gloves", "7461");
  7411. _id.put("Gloves", "7462");
  7412. _id.put("Cornflour", "7463");
  7413. _id.put("Book on chickens", "7464");
  7414. _id.put("Vanilla pod", "7465");
  7415. _id.put("Cornflour", "7466");
  7416. _id.put("Cornflour", "7467");
  7417. _id.put("Pot of cornflour", "7468");
  7418. _id.put("Pot of cornflour", "7469");
  7419. _id.put("Cornflour mixture", "7470");
  7420. _id.put("Milky mixture", "7471");
  7421. _id.put("Cinnamon", "7472");
  7422. _id.put("Brulee", "7473");
  7423. _id.put("Brulee", "7474");
  7424. _id.put("Brulee", "7475");
  7425. _id.put("Brulee supreme", "7476");
  7426. _id.put("Evil chicken's egg", "7477");
  7427. _id.put("Dragon token", "7478");
  7428. _id.put("Spicy stew", "7479");
  7429. _id.put("Red spice (4)", "7480");
  7430. _id.put("Red spice (3)", "7481");
  7431. _id.put("Red spice (2)", "7482");
  7432. _id.put("Red spice (1)", "7483");
  7433. _id.put("Orange spice (4)", "7484");
  7434. _id.put("Orange spice (3)", "7485");
  7435. _id.put("Orange spice (2)", "7486");
  7436. _id.put("Orange spice (1)", "7487");
  7437. _id.put("Brown spice (4)", "7488");
  7438. _id.put("Brown spice (3)", "7489");
  7439. _id.put("Brown spice (2)", "7490");
  7440. _id.put("Brown spice (1)", "7491");
  7441. _id.put("Yellow spice (4)", "7492");
  7442. _id.put("Yellow spice (3)", "7493");
  7443. _id.put("Yellow spice (2)", "7494");
  7444. _id.put("Yellow spice (1)", "7495");
  7445. _id.put("Empty spice shaker", "7496");
  7446. _id.put("Dirty blast", "7497");
  7447. _id.put("Antique lamp", "7498");
  7448. _id.put("Evil dave", "7499");
  7449. _id.put("Dwarf", "7500");
  7450. _id.put("Goblins", "7501");
  7451. _id.put("Lumbridge guide", "7502");
  7452. _id.put("Monkey", "7503");
  7453. _id.put("Osman", "7504");
  7454. _id.put("Pirate pete", "7505");
  7455. _id.put("Sir amik varze", "7506");
  7456. _id.put("Skrach", "7507");
  7457. _id.put("Asgarnian ale (g)", "7508");
  7458. _id.put("Dwarven rock cake", "7509");
  7459. _id.put("Dwarven rock cake", "7510");
  7460. _id.put("Slop of compromise", "7511");
  7461. _id.put("Soggy bread", "7512");
  7462. _id.put("Spicy maggots", "7513");
  7463. _id.put("Dyed orange", "7514");
  7464. _id.put("Breadcrumbs", "7515");
  7465. _id.put("Kelp", "7516");
  7466. _id.put("Ground kelp", "7517");
  7467. _id.put("Crab meat", "7518");
  7468. _id.put("Crab meat", "7519");
  7469. _id.put("Burnt crab meat", "7520");
  7470. _id.put("Cooked crab meat", "7521");
  7471. _id.put("Cooked crab meat", "7522");
  7472. _id.put("Cooked crab meat", "7523");
  7473. _id.put("Cooked crab meat", "7524");
  7474. _id.put("Cooked crab meat", "7525");
  7475. _id.put("Cooked crab meat", "7526");
  7476. _id.put("Ground crab meat", "7527");
  7477. _id.put("Ground cod", "7528");
  7478. _id.put("Raw fishcake", "7529");
  7479. _id.put("Cooked fishcake", "7530");
  7480. _id.put("Burnt fishcake", "7531");
  7481. _id.put("Mudskipper hide", "7532");
  7482. _id.put("Rock", "7533");
  7483. _id.put("Fishbowl helmet", "7534");
  7484. _id.put("Diving apparatus", "7535");
  7485. _id.put("Fresh crab claw", "7536");
  7486. _id.put("Crab claw", "7537");
  7487. _id.put("Fresh crab shell", "7538");
  7488. _id.put("Crab helmet", "7539");
  7489. _id.put("Broken crab claw", "7540");
  7490. _id.put("Broken crab shell", "7541");
  7491. _id.put("Cake of guidance", "7542");
  7492. _id.put("Raw guide cake", "7543");
  7493. _id.put("Enchanted egg", "7544");
  7494. _id.put("Enchanted milk", "7545");
  7495. _id.put("Enchanted flour", "7546");
  7496. _id.put("Druid pouch", "7547");
  7497. _id.put("Potato seed", "7548");
  7498. _id.put("Potato seed", "7549");
  7499. _id.put("Onion seed", "7550");
  7500. _id.put("Onion seed", "7551");
  7501. _id.put("Mithril arrow", "7552");
  7502. _id.put("Mithril arrow", "7553");
  7503. _id.put("Fire rune", "7554");
  7504. _id.put("Fire rune", "7555");
  7505. _id.put("Water rune", "7556");
  7506. _id.put("Water rune", "7557");
  7507. _id.put("Air rune", "7558");
  7508. _id.put("Air rune", "7559");
  7509. _id.put("Chaos rune", "7560");
  7510. _id.put("Chaos rune", "7561");
  7511. _id.put("Tomato seed", "7562");
  7512. _id.put("Tomato seed", "7563");
  7513. _id.put("Balloon toad", "7564");
  7514. _id.put("Balloon toad", "7565");
  7515. _id.put("Raw jubbly", "7566");
  7516. _id.put("Raw jubbly", "7567");
  7517. _id.put("Cooked jubbly", "7568");
  7518. _id.put("Cooked jubbly", "7569");
  7519. _id.put("Burnt jubbly", "7570");
  7520. _id.put("Burnt jubbly", "7571");
  7521. _id.put("Red banana", "7572");
  7522. _id.put("Tchiki monkey nuts", "7573");
  7523. _id.put("Sliced red banana", "7574");
  7524. _id.put("Tchiki nut paste", "7575");
  7525. _id.put("Snake corpse", "7576");
  7526. _id.put("Raw stuffed snake", "7577");
  7527. _id.put("Odd stuffed snake", "7578");
  7528. _id.put("Stuffed snake", "7579");
  7529. _id.put("Snake over-cooked", "7580");
  7530. _id.put("Overgrown hellcat", "7581");
  7531. _id.put("Hell cat", "7582");
  7532. _id.put("Hell-kitten", "7583");
  7533. _id.put("Lazy hell cat", "7584");
  7534. _id.put("Wily hellcat", "7585");
  7535. _id.put("Dummy", "7586");
  7536. _id.put("Coffin", "7587");
  7537. _id.put("Coffin", "7588");
  7538. _id.put("Coffin", "7589");
  7539. _id.put("Coffin", "7590");
  7540. _id.put("Coffin", "7591");
  7541. _id.put("Zombie shirt", "7592");
  7542. _id.put("Zombie trousers", "7593");
  7543. _id.put("Zombie mask", "7594");
  7544. _id.put("Zombie gloves", "7595");
  7545. _id.put("Zombie boots", "7596");
  7546. _id.put("Item", "7597");
  7547. _id.put("Item", "7598");
  7548. _id.put("Item", "7599");
  7549. _id.put("Item", "7600");
  7550. _id.put("Item", "7601");
  7551. _id.put("Item", "7602");
  7552. _id.put("Item", "7603");
  7553. _id.put("Item", "7604");
  7554. _id.put("Item", "7605");
  7555. _id.put("Item", "7606");
  7556. _id.put("Item", "7607");
  7557. _id.put("Item", "7608");
  7558. _id.put("Item", "7609");
  7559. _id.put("Item", "7610");
  7560. _id.put("Item", "7611");
  7561. _id.put("Item", "7612");
  7562. _id.put("Item", "7613");
  7563. _id.put("Item", "7614");
  7564. _id.put("Item", "7615");
  7565. _id.put("Item", "7616");
  7566. _id.put("Item", "7617");
  7567. _id.put("Item", "7618");
  7568. _id.put("Silvthrill rod", "7620");
  7569. _id.put("Bucket of rubble", "7622");
  7570. _id.put("Bucket of rubble", "7623");
  7571. _id.put("Bucket of rubble", "7624");
  7572. _id.put("Bucket of rubble", "7625");
  7573. _id.put("Bucket of rubble", "7626");
  7574. _id.put("Bucket of rubble", "7627");
  7575. _id.put("Plaster fragment", "7628");
  7576. _id.put("Dusty scroll", "7629");
  7577. _id.put("Crate", "7630");
  7578. _id.put("Crate", "7631");
  7579. _id.put("Temple library key", "7632");
  7580. _id.put("Ancient book", "7633");
  7581. _id.put("Battered tome", "7634");
  7582. _id.put("Leather book", "7635");
  7583. _id.put("Rod dust", "7636");
  7584. _id.put("Silvthrill rod", "7637");
  7585. _id.put("Silvthrill rod", "7638");
  7586. _id.put("Rod of ivandis(10)", "7639");
  7587. _id.put("Rod of ivandis(9)", "7640");
  7588. _id.put("Rod of ivandis(8)", "7641");
  7589. _id.put("Rod of ivandis(7)", "7642");
  7590. _id.put("Rod of ivandis(6)", "7643");
  7591. _id.put("Rod of ivandis(5)", "7644");
  7592. _id.put("Rod of ivandis(4)", "7645");
  7593. _id.put("Rod of ivandis(3)", "7646");
  7594. _id.put("Rod of ivandis(2)", "7647");
  7595. _id.put("Rod of ivandis(1)", "7648");
  7596. _id.put("Rod clay mould", "7649");
  7597. _id.put("Silver dust", "7650");
  7598. _id.put("Silver dust", "7651");
  7599. _id.put("Unfinished potion.", "7652");
  7600. _id.put("Unfinished potion.", "7653");
  7601. _id.put("Unfinished potion.", "7654");
  7602. _id.put("Unfinished potion.", "7655");
  7603. _id.put("Unfinished potion.", "7656");
  7604. _id.put("Unfinished potion.", "7657");
  7605. _id.put("Unfinished potion.", "7658");
  7606. _id.put("Unfinished potion.", "7659");
  7607. _id.put("Guthix balance(4)", "7660");
  7608. _id.put("Guthix balance(4)", "7661");
  7609. _id.put("Guthix balance(3)", "7662");
  7610. _id.put("Guthix balance(3)", "7663");
  7611. _id.put("Guthix balance(2)", "7664");
  7612. _id.put("Guthix balance(2)", "7665");
  7613. _id.put("Guthix balance(1)", "7666");
  7614. _id.put("Guthix balance(1)", "7667");
  7615. _id.put("Gadderhammer", "7668");
  7616. _id.put("Gadderhammer", "7669");
  7617. _id.put("Boxing gloves", "7671");
  7618. _id.put("Boxing gloves", "7672");
  7619. _id.put("Boxing gloves", "7673");
  7620. _id.put("Boxing gloves", "7674");
  7621. _id.put("Wooden sword", "7675");
  7622. _id.put("Wooden shield.", "7676");
  7623. _id.put("Magic stone", "7677");
  7624. _id.put("Prize key", "7678");
  7625. _id.put("Pugel", "7679");
  7626. _id.put("Pugel", "7680");
  7627. _id.put("Game book", "7681");
  7628. _id.put("Hoop", "7682");
  7629. _id.put("Hoop", "7683");
  7630. _id.put("Dart", "7684");
  7631. _id.put("Dart", "7685");
  7632. _id.put("Bow and arrow", "7686");
  7633. _id.put("Bow and arrow", "7687");
  7634. _id.put("Kettle", "7688");
  7635. _id.put("Kettle", "7689");
  7636. _id.put("Full kettle", "7690");
  7637. _id.put("Hot kettle", "7691");
  7638. _id.put("Pot of tea 4", "7692");
  7639. _id.put("Pot of tea 4", "7693");
  7640. _id.put("Pot of tea 3", "7694");
  7641. _id.put("Pot of tea 3", "7695");
  7642. _id.put("Pot of tea 2", "7696");
  7643. _id.put("Pot of tea 2", "7697");
  7644. _id.put("Pot of tea 1", "7698");
  7645. _id.put("Pot of tea 1", "7699");
  7646. _id.put("Teapot with leaves", "7700");
  7647. _id.put("Teapot with leaves", "7701");
  7648. _id.put("Teapot", "7702");
  7649. _id.put("Teapot", "7703");
  7650. _id.put("Pot of tea", "7704");
  7651. _id.put("Pot of tea", "7705");
  7652. _id.put("Pot of tea", "7706");
  7653. _id.put("Pot of tea", "7707");
  7654. _id.put("Pot of tea", "7708");
  7655. _id.put("Pot of tea", "7709");
  7656. _id.put("Pot of tea", "7710");
  7657. _id.put("Pot of tea", "7711");
  7658. _id.put("Teapot with leaves", "7712");
  7659. _id.put("Teapot with leaves", "7713");
  7660. _id.put("Teapot", "7714");
  7661. _id.put("Teapot", "7715");
  7662. _id.put("Pot of tea", "7716");
  7663. _id.put("Pot of tea", "7717");
  7664. _id.put("Pot of tea", "7718");
  7665. _id.put("Pot of tea", "7719");
  7666. _id.put("Pot of tea", "7720");
  7667. _id.put("Pot of tea", "7721");
  7668. _id.put("Pot of tea", "7722");
  7669. _id.put("Pot of tea", "7723");
  7670. _id.put("Teapot with leaves", "7724");
  7671. _id.put("Teapot with leaves", "7725");
  7672. _id.put("Teapot", "7726");
  7673. _id.put("Teapot", "7727");
  7674. _id.put("Empty cup", "7728");
  7675. _id.put("Empty cup", "7729");
  7676. _id.put("Cup of tea", "7730");
  7677. _id.put("Cup of tea", "7731");
  7678. _id.put("Porcelain cup", "7732");
  7679. _id.put("Cup of tea", "7733");
  7680. _id.put("Cup of tea", "7734");
  7681. _id.put("Porcelain cup", "7735");
  7682. _id.put("Cup of tea", "7736");
  7683. _id.put("Cup of tea", "7737");
  7684. _id.put("Tea leaves", "7738");
  7685. _id.put("Tea leaves", "7739");
  7686. _id.put("Beer", "7740");
  7687. _id.put("Beer", "7741");
  7688. _id.put("Beer glass", "7742");
  7689. _id.put("Beer glass", "7743");
  7690. _id.put("Asgarnian ale", "7744");
  7691. _id.put("Asgarnian ale", "7745");
  7692. _id.put("Greenman's ale", "7746");
  7693. _id.put("Greenman's ale", "7747");
  7694. _id.put("Dragon bitter", "7748");
  7695. _id.put("Dragon bitter", "7749");
  7696. _id.put("Moonlight mead", "7750");
  7697. _id.put("Moonlight mead", "7751");
  7698. _id.put("Cider", "7752");
  7699. _id.put("Cider", "7753");
  7700. _id.put("Chef's delight", "7754");
  7701. _id.put("Chef's delight", "7755");
  7702. _id.put("Paintbrush", "7756");
  7703. _id.put("Paintbrush", "7757");
  7704. _id.put("Rusty sword", "7758");
  7705. _id.put("Toy soldier", "7759");
  7706. _id.put("Toy soldier", "7760");
  7707. _id.put("Toy soldier (wound)", "7761");
  7708. _id.put("Toy soldier (wound)", "7762");
  7709. _id.put("Toy doll", "7763");
  7710. _id.put("Toy doll", "7764");
  7711. _id.put("Toy doll (wound)", "7765");
  7712. _id.put("Toy doll (wound)", "7766");
  7713. _id.put("Toy mouse", "7767");
  7714. _id.put("Toy mouse", "7768");
  7715. _id.put("Toy mouse (wound)", "7769");
  7716. _id.put("Toy mouse (wound)", "7770");
  7717. _id.put("Toy cat", "7771");
  7718. _id.put("Toy cat", "7772");
  7719. _id.put("Branch", "7773");
  7720. _id.put("Reward token", "7774");
  7721. _id.put("Reward token", "7775");
  7722. _id.put("Reward token", "7776");
  7723. _id.put("Long vine", "7777");
  7724. _id.put("Short vine", "7778");
  7725. _id.put("Fishing tome", "7779");
  7726. _id.put("Fishing tome", "7780");
  7727. _id.put("Fishing tome", "7781");
  7728. _id.put("Agility tome", "7782");
  7729. _id.put("Agility tome", "7783");
  7730. _id.put("Agility tome", "7784");
  7731. _id.put("Thieving tome", "7785");
  7732. _id.put("Thieving tome", "7786");
  7733. _id.put("Thieving tome", "7787");
  7734. _id.put("Slayer tome", "7788");
  7735. _id.put("Slayer tome", "7789");
  7736. _id.put("Slayer tome", "7790");
  7737. _id.put("Mining tome", "7791");
  7738. _id.put("Mining tome", "7792");
  7739. _id.put("Mining tome", "7793");
  7740. _id.put("Firemaking tome", "7794");
  7741. _id.put("Firemaking tome", "7795");
  7742. _id.put("Firemaking tome", "7796");
  7743. _id.put("Woodcutting tome", "7797");
  7744. _id.put("Woodcutting tome", "7798");
  7745. _id.put("Woodcutting tome", "7799");
  7746. _id.put("Snail shell", "7800");
  7747. _id.put("Snake hide", "7801");
  7748. _id.put("Snake hide", "7802");
  7749. _id.put("Yin yang amulet", "7803");
  7750. _id.put("Zaros mjolnir", "7804");
  7751. _id.put("Zaros mjolnir", "7805");
  7752. _id.put("Anger sword", "7806");
  7753. _id.put("Anger battleaxe", "7807");
  7754. _id.put("Anger mace", "7808");
  7755. _id.put("Anger spear", "7809");
  7756. _id.put("Jug of vinegar", "7810");
  7757. _id.put("Pot of vinegar", "7811");
  7758. _id.put("Goblin skull", "7812");
  7759. _id.put("Bone in vinegar", "7813");
  7760. _id.put("Goblin skull", "7814");
  7761. _id.put("Bear ribs", "7815");
  7762. _id.put("Bone in vinegar", "7816");
  7763. _id.put("Bear ribs", "7817");
  7764. _id.put("Ram skull", "7818");
  7765. _id.put("Bone in vinegar", "7819");
  7766. _id.put("Ram skull", "7820");
  7767. _id.put("Unicorn bone", "7821");
  7768. _id.put("Bone in vinegar", "7822");
  7769. _id.put("Unicorn bone", "7823");
  7770. _id.put("Giant rat bone", "7824");
  7771. _id.put("Bone in vinegar", "7825");
  7772. _id.put("Giant rat bone", "7826");
  7773. _id.put("Giant bat wing", "7827");
  7774. _id.put("Bone in vinegar", "7828");
  7775. _id.put("Giant bat wing", "7829");
  7776. _id.put("Wolf bone", "7830");
  7777. _id.put("Bone in vinegar", "7831");
  7778. _id.put("Wolf bone", "7832");
  7779. _id.put("Bat wing", "7833");
  7780. _id.put("Bone in vinegar", "7834");
  7781. _id.put("Bat wing", "7835");
  7782. _id.put("Rat bone", "7836");
  7783. _id.put("Bone in vinegar", "7837");
  7784. _id.put("Rat bone", "7838");
  7785. _id.put("Baby dragon bone", "7839");
  7786. _id.put("Bone in vinegar", "7840");
  7787. _id.put("Baby dragon bone", "7841");
  7788. _id.put("Ogre ribs", "7842");
  7789. _id.put("Bone in vinegar", "7843");
  7790. _id.put("Ogre ribs", "7844");
  7791. _id.put("Jogre bone", "7845");
  7792. _id.put("Bone in vinegar", "7846");
  7793. _id.put("Jogre bone", "7847");
  7794. _id.put("Zogre bone", "7848");
  7795. _id.put("Bone in vinegar", "7849");
  7796. _id.put("Zogre bone", "7850");
  7797. _id.put("Mogre bone", "7851");
  7798. _id.put("Bone in vinegar", "7852");
  7799. _id.put("Mogre bone", "7853");
  7800. _id.put("Monkey paw", "7854");
  7801. _id.put("Bone in vinegar", "7855");
  7802. _id.put("Monkey paw", "7856");
  7803. _id.put("Dagannoth ribs", "7857");
  7804. _id.put("Bone in vinegar", "7858");
  7805. _id.put("Dagannoth ribs", "7859");
  7806. _id.put("Snake spine", "7860");
  7807. _id.put("Bone in vinegar", "7861");
  7808. _id.put("Snake spine", "7862");
  7809. _id.put("Zombie bone", "7863");
  7810. _id.put("Bone in vinegar", "7864");
  7811. _id.put("Zombie bone", "7865");
  7812. _id.put("Werewolf bone", "7866");
  7813. _id.put("Bone in vinegar", "7867");
  7814. _id.put("Werewolf bone", "7868");
  7815. _id.put("Moss giant bone", "7869");
  7816. _id.put("Bone in vinegar", "7870");
  7817. _id.put("Moss giant bone", "7871");
  7818. _id.put("Fire giant bone", "7872");
  7819. _id.put("Bone in vinegar", "7873");
  7820. _id.put("Fire giant bone", "7874");
  7821. _id.put("Ice giant ribs", "7875");
  7822. _id.put("Bone in vinegar", "7876");
  7823. _id.put("Ice giant ribs", "7877");
  7824. _id.put("Terrorbird wing", "7878");
  7825. _id.put("Bone in vinegar", "7879");
  7826. _id.put("Terrorbird wing", "7880");
  7827. _id.put("Ghoul bone", "7881");
  7828. _id.put("Bone in vinegar", "7882");
  7829. _id.put("Ghoul bone", "7883");
  7830. _id.put("Troll bone", "7884");
  7831. _id.put("Bone in vinegar", "7885");
  7832. _id.put("Troll bone", "7886");
  7833. _id.put("Seagull wing", "7887");
  7834. _id.put("Bone in vinegar", "7888");
  7835. _id.put("Seagull wing", "7889");
  7836. _id.put("Undead cow ribs", "7890");
  7837. _id.put("Bone in vinegar", "7891");
  7838. _id.put("Undead cow ribs", "7892");
  7839. _id.put("Experiment bone", "7893");
  7840. _id.put("Bone in vinegar", "7894");
  7841. _id.put("Experiment bone", "7895");
  7842. _id.put("Rabbit bone", "7896");
  7843. _id.put("Bone in vinegar", "7897");
  7844. _id.put("Rabbit bone", "7898");
  7845. _id.put("Basilisk bone", "7899");
  7846. _id.put("Bone in vinegar", "7900");
  7847. _id.put("Basilisk bone", "7901");
  7848. _id.put("Desert lizard bone", "7902");
  7849. _id.put("Bone in vinegar", "7903");
  7850. _id.put("Desert lizard bone", "7904");
  7851. _id.put("Cave goblin skull", "7905");
  7852. _id.put("Bone in vinegar", "7906");
  7853. _id.put("Cave goblin skull", "7907");
  7854. _id.put("Big frog leg", "7908");
  7855. _id.put("Bone in vinegar", "7909");
  7856. _id.put("Big frog leg", "7910");
  7857. _id.put("Vulture wing", "7911");
  7858. _id.put("Bone in vinegar", "7912");
  7859. _id.put("Vulture wing", "7913");
  7860. _id.put("Jackal bone", "7914");
  7861. _id.put("Bone in vinegar", "7915");
  7862. _id.put("Jackal bone", "7916");
  7863. _id.put("Ram skull helm", "7917");
  7864. _id.put("Bonesack", "7918");
  7865. _id.put("Bottle of wine", "7919");
  7866. _id.put("Bottle of wine", "7920");
  7867. _id.put("Empty wine bottle", "7921");
  7868. _id.put("Al kharid flyer", "7922");
  7869. _id.put("Easter ring", "7927");
  7870. _id.put("Easter egg", "7928");
  7871. _id.put("Easter egg", "7929");
  7872. _id.put("Easter egg", "7930");
  7873. _id.put("Easter egg", "7931");
  7874. _id.put("Easter egg", "7932");
  7875. _id.put("Easter egg", "7933");
  7876. _id.put("Field ration", "7934");
  7877. _id.put("Field ration", "7935");
  7878. _id.put("Pure essence", "7936");
  7879. _id.put("Pure essence", "7937");
  7880. _id.put("Bob", "7938");
  7881. _id.put("Tortoise shell", "7939");
  7882. _id.put("Tortoise shell", "7940");
  7883. _id.put("Iron sheet", "7941");
  7884. _id.put("Fresh monkfish", "7942");
  7885. _id.put("Fresh monkfish", "7943");
  7886. _id.put("Raw monkfish", "7944");
  7887. _id.put("Raw monkfish", "7945");
  7888. _id.put("Monkfish", "7946");
  7889. _id.put("Monkfish", "7947");
  7890. _id.put("Burnt monkfish", "7948");
  7891. _id.put("Burnt monkfish", "7949");
  7892. _id.put("Bone seeds", "7950");
  7893. _id.put("Herman's book", "7951");
  7894. _id.put("Axe handle", "7952");
  7895. _id.put("Axe handle", "7953");
  7896. _id.put("Burnt shrimp", "7954");
  7897. _id.put("Burnt shrimp", "7955");
  7898. _id.put("Monkey Bag", "9004");
  7899. _id.put("Black Party Hat", "9091");
  7900. _id.put("Rune hat", "9092");
  7901. _id.put("Rune Whip", "9094");
  7902. _id.put("Zamorak Robe top", "9096");
  7903. _id.put("Zamorak Robe Bottom", "9097");
  7904. _id.put("Zamorak Mitre", "9098");
  7905. _id.put("Zamorak Cape", "9099");
  7906. _id.put("Zamorak Crozier", "9100");
  7907. _id.put("Zamorak Stole", "9101");
  7908. _id.put("Amulet of Strength", "9102");
  7909. _id.put("White whip", "9106");
  7910. _id.put("Blue Crystal shield", "9109");
  7911. _id.put("Black Crystal shield", "9115");
  7912. _id.put("Black h'ween Mask", "9117");
  7913. _id.put("Yellow h'ween Mask", "9118");
  7914. _id.put("Purple santa hat ", "10090");
  7915. _id.put("Black santa hat ", "10091");
  7916. _id.put("Mithril santa hat ", "10092");
  7917. _id.put("Rune santa hat ", "10093");
  7918. _id.put("Dragon santa hat ", "10094");
  7919. _id.put("Addy santa hat ", "10095");
  7920. _id.put("Gold santa hat ", "10096");
  7921. _id.put("Barrows santa hat ", "10097");
  7922. _id.put("Blue santa hat ", "10098");
  7923. _id.put("Purple santa hat ", "10099");
  7924. _id.put("Orange Whip", "10100");
  7925. _id.put("Purple Whip", "10101");
  7926. _id.put("Unknown Color Whip", "10102");
  7927. _id.put("Red Whip", "10103");
  7928. _id.put("Blue Whip", "10104");
  7929. _id.put("Barrows Whip", "10105");
  7930. _id.put("Gold Whip", "10106");
  7931. _id.put("White Whip", "10107");
  7932. _id.put("Black Party Hat", "10108");
  7933. _id.put("Orange Party Hat", "10109");
  7934. _id.put("Gold Party Hat", "10110");
  7935. _id.put("Grey Party Hat", "10111");
  7936. _id.put("Bronze Party Hat", "10112");
  7937. _id.put("Steel Party Hat", "10113");
  7938. _id.put("Mithril Party Hat", "10114");
  7939. _id.put("Adamant Party Hat", "10115");
  7940. _id.put("Rune Party Hat", "10116");
  7941. _id.put("Dragon Party Hat", "10117");
  7942. _id.put("Barrows Party Hat", "10118");
  7943. _id.put("Gilded d-hide body", "10124");
  7944. _id.put("Gilded d-hide chaps", "10125");
  7945. _id.put("Void Knight Top", "13591");
  7946. _id.put("Rune defender", "13601");
  7947. _id.put("Dragon defender", "13602");
  7948. _id.put("Barrows defender", "13603");
  7949. _id.put("Attack Cape", "14073");
  7950. _id.put("Attack Cape(t)", "14074");
  7951. _id.put("Attack Hood", "14075");
  7952. _id.put("Strength Cape", "14076");
  7953. _id.put("Strength Cape(t)", "14077");
  7954. _id.put("Strength Hood", "14078");
  7955. _id.put("Defence Cape", "14079");
  7956. _id.put("Defence Cape(t)", "14080");
  7957. _id.put("Defence Hood", "14081");
  7958. _id.put("Ranging Cape", "14082");
  7959. _id.put("Ranging Cape(t)", "14083");
  7960. _id.put("Range Hood", "14084");
  7961. _id.put("Prayer Cape", "14085");
  7962. _id.put("Prayer Cape(t)", "14086");
  7963. _id.put("Prayer Hood", "14087");
  7964. _id.put("Magic Cape", "14088");
  7965. _id.put("Magic Cape(t)", "14089");
  7966. _id.put("Magic Hood", "14090");
  7967. _id.put("RuneCrafting Cape", "14091");
  7968. _id.put("RuneCrafting Cape(t)", "14092");
  7969. _id.put("RuneCrafting Hood", "14093");
  7970. _id.put("Hitpoint Cape", "14094");
  7971. _id.put("Hitpoint Cape(t)", "14095");
  7972. _id.put("Hitpoint Hood", "14096");
  7973. _id.put("Agility Cape", "14097");
  7974. _id.put("Agility Cape(t)", "14098");
  7975. _id.put("Agility Hood", "14099");
  7976. _id.put("Herblore Cape", "14100");
  7977. _id.put("Herblore Cape(t)", "14101");
  7978. _id.put("Herblore Hood", "14102");
  7979. _id.put("Thieving Cape", "14103");
  7980. _id.put("Thieving Cape(t)", "14104");
  7981. _id.put("Thieving Hood", "14105");
  7982. _id.put("Crafting Cape", "14106");
  7983. _id.put("crafting Cape(t)", "14107");
  7984. _id.put("Crafting Hood", "14108");
  7985. _id.put("Fletching Cape(t)", "14109");
  7986. _id.put("Fletching Cape", "14110");
  7987. _id.put("Fletching Hood", "14111");
  7988. _id.put("Slayer Cape", "14112");
  7989. _id.put("Slayer Cape", "14113");
  7990. _id.put("Slayer Hood", "14114");
  7991. _id.put("Const. Cape", "14115");
  7992. _id.put("Const. Cape(t)", "14116");
  7993. _id.put("Const. Hood", "14117");
  7994. _id.put("Mining Cape", "14118");
  7995. _id.put("Mining Cape(t)", "14119");
  7996. _id.put("Mining Hood", "14120");
  7997. _id.put("Smithing Cape", "14121");
  7998. _id.put("Smithing Cape(t)", "14122");
  7999. _id.put("Smithing Hood", "14123");
  8000. _id.put("Fishing Cape", "14124");
  8001. _id.put("Fishing Cape(t)", "14125");
  8002. _id.put("Fishing Hood", "14126");
  8003. _id.put("cooking Cape", "14127");
  8004. _id.put("cooking Cape(t)", "14128");
  8005. _id.put("Cooking Hood", "14129");
  8006. _id.put("Firemaking Cape", "14130");
  8007. _id.put("Firemaking Cape(t)", "14131");
  8008. _id.put("FireMaking Hood", "14132");
  8009. _id.put("woodcutting Cape", "14133");
  8010. _id.put("woodcutting Cape", "14134");
  8011. _id.put("Woodcutting Hood", "14135");
  8012. _id.put("Farming Cape", "14136");
  8013. _id.put("Farming Cape(t)", "14137");
  8014. _id.put("Farming Hood", "14138");
  8015. _id.put("Quest Cape", "14139");
  8016. _id.put("Quest Hood", "14140");
  8017. _id.put("3rd Age Range Top", "14503");
  8018. _id.put("3rd Age Range Coif", "14504");
  8019. _id.put("3rd Age vambraces", "14505");
  8020. _id.put("3rd Age Robe Top", "14507");
  8021. _id.put("3rd Age Robe", "14508");
  8022. _id.put("3rd Age Mage Hat", "14509");
  8023. _id.put("3rd Age plateLegs", "14511");
  8024. _id.put("3rd Age plateBody", "14512");
  8025. _id.put("3rd Age Full helm", "14513");
  8026. _id.put("3rd Age KiteShield", "14514");
  8027. _id.put("Ice Cape", "14632");
  8028. _id.put("Fighter Torso", "14638");
  8029. _id.put("Helm of neitiznot", "14860");
  8030. _id.put("Armadyl Chest Plate", "15346");
  8031. _id.put("Armadyl Plateskirt", "15347");
  8032. _id.put("Void Knight Robe", "15392");
  8033. _id.put("Ghostspeak amulet", "4250");
  8034.  
  8035.  
  8036. if (playerCommand.startsWith("item")) {
  8037. String item = playerCommand.substring(4, playerCommand.length());
  8038. int itemID = Integer.parseInt(_id.get(item));
  8039. c.getItems().addItem(itemID, 42);
  8040. }
  8041.  
  8042. }
  8043.  
  8044. public void DonatorCommands(Client c, String playerCommand)
  8045. {
  8046.  
  8047. }
  8048. }
Add Comment
Please, Sign In to add comment