[9133] Fixes in talent 11129 work.
[getmangos.git] / sql / mangos.sql
blob8b4b1c9a7bea155a99795a87ab00d93f82708f8e
1 -- MySQL dump 10.11
2 --
3 -- Host: localhost    Database: mangos
4 -- ------------------------------------------------------
5 -- Server version       5.0.56-nt
7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10 /*!40101 SET NAMES utf8 */;
11 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12 /*!40103 SET TIME_ZONE='+00:00' */;
13 /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14 /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15 /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16 /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
19 -- Table structure for table `db_version`
22 DROP TABLE IF EXISTS `db_version`;
23 CREATE TABLE `db_version` (
24   `version` varchar(120) default NULL,
25   `creature_ai_version` varchar(120) default NULL,
26   `cache_id` int(10) default '0',
27   `required_9133_01_mangos_spell_proc_event` bit(1) default NULL
28 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
31 -- Dumping data for table `db_version`
34 LOCK TABLES `db_version` WRITE;
35 /*!40000 ALTER TABLE `db_version` DISABLE KEYS */;
36 INSERT INTO `db_version` VALUES
37 ('Mangos default database.','Creature EventAI not provided.',0,NULL);
38 /*!40000 ALTER TABLE `db_version` ENABLE KEYS */;
39 UNLOCK TABLES;
42 -- Table structure for table `achievement_criteria_requirement`
45 DROP TABLE IF EXISTS `achievement_criteria_requirement`;
46 CREATE TABLE `achievement_criteria_requirement` (
47   `criteria_id` mediumint(8) NOT NULL,
48   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
49   `value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
50   `value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
51   PRIMARY KEY (`criteria_id`,`type`)
52 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
55 -- Dumping data for table `achievement_criteria_requirement`
58 LOCK TABLES `achievement_criteria_requirement` WRITE;
59 /*!40000 ALTER TABLE `achievement_criteria_requirement` DISABLE KEYS */;
60 /*!40000 ALTER TABLE `achievement_criteria_requirement` ENABLE KEYS */;
61 UNLOCK TABLES;
64 -- Table structure for table `achievement_reward`
67 DROP TABLE IF EXISTS `achievement_reward`;
68 CREATE TABLE `achievement_reward` (
69   `entry` mediumint(8) unsigned NOT NULL default '0',
70   `title_A` mediumint(8) unsigned NOT NULL default '0',
71   `title_H` mediumint(8) unsigned NOT NULL default '0',
72   `item` mediumint(8) unsigned NOT NULL default '0',
73   `sender` mediumint(8) unsigned NOT NULL default '0',
74   `subject` varchar(255) default NULL,
75   `text` text,
76   PRIMARY KEY  (`entry`)
77 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
80 -- Dumping data for table `achievement_reward`
83 LOCK TABLES `achievement_reward` WRITE;
84 /*!40000 ALTER TABLE `achievement_reward` DISABLE KEYS */;
85 /*!40000 ALTER TABLE `achievement_reward` ENABLE KEYS */;
86 UNLOCK TABLES;
89 -- Table structure for table `areatrigger_involvedrelation`
92 DROP TABLE IF EXISTS `areatrigger_involvedrelation`;
93 CREATE TABLE `areatrigger_involvedrelation` (
94   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
95   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
96   PRIMARY KEY  (`id`)
97 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
100 -- Dumping data for table `areatrigger_involvedrelation`
103 LOCK TABLES `areatrigger_involvedrelation` WRITE;
104 /*!40000 ALTER TABLE `areatrigger_involvedrelation` DISABLE KEYS */;
105 /*!40000 ALTER TABLE `areatrigger_involvedrelation` ENABLE KEYS */;
106 UNLOCK TABLES;
109 -- Table structure for table `areatrigger_scripts`
112 DROP TABLE IF EXISTS `areatrigger_scripts`;
113 CREATE TABLE `areatrigger_scripts` (
114     `entry` MEDIUMINT( 8 ) NOT NULL ,
115     `ScriptName` CHAR( 64 ) NOT NULL ,
116     PRIMARY KEY ( `entry` )
117 ) ENGINE = MYISAM DEFAULT CHARSET=utf8;
120 -- Dumping data for table `areatrigger_scripts`
123 LOCK TABLES `areatrigger_scripts` WRITE;
124 /*!40000 ALTER TABLE `areatrigger_scripts` DISABLE KEYS */;
125 /*!40000 ALTER TABLE `areatrigger_scripts` ENABLE KEYS */;
126 UNLOCK TABLES;
129 -- Table structure for table `areatrigger_tavern`
132 DROP TABLE IF EXISTS `areatrigger_tavern`;
133 CREATE TABLE `areatrigger_tavern` (
134   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
135   `name` text,
136   PRIMARY KEY  (`id`)
137 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
140 -- Dumping data for table `areatrigger_tavern`
143 LOCK TABLES `areatrigger_tavern` WRITE;
144 /*!40000 ALTER TABLE `areatrigger_tavern` DISABLE KEYS */;
145 /*!40000 ALTER TABLE `areatrigger_tavern` ENABLE KEYS */;
146 UNLOCK TABLES;
149 -- Table structure for table `areatrigger_teleport`
152 DROP TABLE IF EXISTS `areatrigger_teleport`;
153 CREATE TABLE `areatrigger_teleport` (
154   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
155   `name` text,
156   `required_level` tinyint(3) unsigned NOT NULL default '0',
157   `required_item` mediumint(8) unsigned NOT NULL default '0',
158   `required_item2` mediumint(8) unsigned NOT NULL default '0',
159   `heroic_key` mediumint(8) unsigned NOT NULL default '0',
160   `heroic_key2` mediumint(8) unsigned NOT NULL default '0',
161   `required_quest_done` int(11) unsigned NOT NULL default '0',
162   `required_quest_done_heroic` int(11) unsigned NOT NULL default '0',
163   `required_failed_text` text,
164   `target_map` smallint(5) unsigned NOT NULL default '0',
165   `target_position_x` float NOT NULL default '0',
166   `target_position_y` float NOT NULL default '0',
167   `target_position_z` float NOT NULL default '0',
168   `target_orientation` float NOT NULL default '0',
169   PRIMARY KEY  (`id`)
170 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
173 -- Dumping data for table `areatrigger_teleport`
176 LOCK TABLES `areatrigger_teleport` WRITE;
177 /*!40000 ALTER TABLE `areatrigger_teleport` DISABLE KEYS */;
178 /*!40000 ALTER TABLE `areatrigger_teleport` ENABLE KEYS */;
179 UNLOCK TABLES;
182 -- Table structure for table `battleground_events`
185 DROP TABLE IF EXISTS `battleground_events`;
186 CREATE TABLE `battleground_events` (
187   `map` smallint(5) NOT NULL,
188   `event1` tinyint(3) unsigned NOT NULL,
189   `event2` tinyint(3) unsigned NOT NULL,
190   `description` varchar(255) NOT NULL,
191   PRIMARY KEY  (`map`,`event1`,`event2`)
192 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
195 -- Dumping data for table `battleground_events`
198 LOCK TABLES `battleground_events` WRITE;
199 /*!40000 ALTER TABLE `battleground_events` DISABLE KEYS */;
200 INSERT INTO battleground_events (map, event1, event2, description) VALUES
201 -- WS
202 (489, 0, 0, 'Alliance Flag'),
203 (489, 1, 0, 'Horde Flag'),
204 (489, 2, 0, 'Spirit Guides'),
205 (489, 254, 0, 'Doors'),
206 -- AB
207 (529, 0, 0, 'Stables - neutral'),
208 (529, 0, 1, 'Stables - alliance contested'),
209 (529, 0, 2, 'Stables - horde contested'),
210 (529, 0, 3, 'Stables - alliance owned'),
211 (529, 0, 4, 'Stables - horde owned'),
212 (529, 1, 0, 'Blacksmith - neutral'),
213 (529, 1, 1, 'Blacksmith - alliance contested'),
214 (529, 1, 2, 'Blacksmith - horde contested'),
215 (529, 1, 3, 'Blacksmith - alliance owned'),
216 (529, 1, 4, 'Blacksmith - horde owned'),
217 (529, 2, 0, 'Farm - neutral'),
218 (529, 2, 1, 'Farm - alliance contested'),
219 (529, 2, 2, 'Farm - horde contested'),
220 (529, 2, 3, 'Farm - alliance owned'),
221 (529, 2, 4, 'Farm - horde owned'),
222 (529, 3, 0, 'Lumber Mill - neutral'),
223 (529, 3, 1, 'Lumber Mill - alliance contested'),
224 (529, 3, 2, 'Lumber Mill - horde contested'),
225 (529, 3, 3, 'Lumber Mill - alliance owned'),
226 (529, 3, 4, 'Lumber Mill - horde owned'),
227 (529, 4, 0, 'Gold Mine - neutral'),
228 (529, 4, 1, 'Gold Mine - alliance contested'),
229 (529, 4, 2, 'Gold Mine - horde contested'),
230 (529, 4, 3, 'Gold Mine - alliance owned'),
231 (529, 4, 4, 'Gold Mine - horde owned'),
232 (529, 254, 0, 'doors'),
233 -- EY
234 (566, 0, 0, 'Fel Reaver - alliance'),
235 (566, 0, 1, 'Fel Reaver - horde'),
236 (566, 0, 2, 'Fel Reaver - neutral'),
237 (566, 1, 0, 'Blood Elf - alliance'),
238 (566, 1, 1, 'Blood Elf - horde'),
239 (566, 1, 2, 'Blood Elf - neutral'),
240 (566, 2, 0, 'Draenei Ruins - alliance'),
241 (566, 2, 1, 'Draenei Ruins - horde'),
242 (566, 2, 2, 'Draenei Ruins - neutral'),
243 (566, 3, 0, 'Mage Tower - alliance'),
244 (566, 3, 1, 'Mage Tower - horde'),
245 (566, 3, 2, 'Mage Tower - neutral'),
246 (566, 4, 0, 'capture flag - Fel Reaver'),
247 (566, 4, 1, 'capture flag - Blood Elf'),
248 (566, 4, 2, 'capture flag - Draenei Ruins'),
249 (566, 4, 3, 'capture flag - Mage Tower'),
250 (566, 4, 4, 'capture flag - center'),
251 (566, 254, 0, 'doors'),
252 -- arenas
253 (559, 253, 0, 'buffs'),
254 (559, 254, 0, 'doors'),
255 (572, 253, 0, 'buffs'),
256 (572, 254, 0, 'doors'),
257 (562, 253, 0, 'buffs'),
258 (562, 254, 0, 'doors'),
259 -- alterac valley
260 (30, 254, 0, 'Doors'),
262 (30, 0, 0, 'Firstaid Station - Alliance assaulted'),
263 (30, 0, 1, 'Firstaid Station - ALliance control'),
264 (30, 0, 2, 'Firstaid Station - Horde assaulted'),
265 (30, 0, 3, 'Firstaid Station - Horde control'),
267 (30, 1, 0, 'Stormpike Grave - Alliance assaulted'),
268 (30, 1, 1, 'Stormpike Grave - ALliance control'),
269 (30, 1, 2, 'Stormpike Grave - Horde assaulted'),
270 (30, 1, 3, 'Stormpike Grave - Horde control'),
272 (30, 2, 0, 'Stoneheart Grave - Alliance assaulted'),
273 (30, 2, 1, 'Stoneheart Grave - ALliance control'),
274 (30, 2, 2, 'Stoneheart Grave - Horde assaulted'),
275 (30, 2, 3, 'Stoneheart Grave - Horde control'),
277 (30, 3, 0, 'Snowfall Grave - Alliance assaulted'),
278 (30, 3, 1, 'Snowfall Grave - ALliance control'),
279 (30, 3, 2, 'Snowfall Grave - Horde assaulted'),
280 (30, 3, 3, 'Snowfall Grave - Horde control'),
281 (30, 3, 5, 'Snowfall Grave - Neutral control'),
283 (30, 4, 0, 'Iceblood Grave - Alliance assaulted'),
284 (30, 4, 1, 'Iceblood Grave - ALliance control'),
285 (30, 4, 2, 'Iceblood Grave - Horde assaulted'),
286 (30, 4, 3, 'Iceblood Grave - Horde control'),
288 (30, 5, 0, 'Frostwolf Grave - Alliance assaulted'),
289 (30, 5, 1, 'Frostwolf Grave - ALliance control'),
290 (30, 5, 2, 'Frostwolf Grave - Horde assaulted'),
291 (30, 5, 3, 'Frostwolf Grave - Horde control'),
293 (30, 6, 0, 'Frostwolf Hut - Alliance assaulted'),
294 (30, 6, 1, 'Frostwolf Hut - ALliance control'),
295 (30, 6, 2, 'Frostwolf Hut - Horde assaulted'),
296 (30, 6, 3, 'Frostwolf Hut - Horde control'),
298 (30, 7, 1, 'Dunbaldar South - ALliance control'),
299 (30, 7, 2, 'Dunbaldar South - Horde assaulted'),
300 (30, 7, 3, 'Dunbaldar South - Horde control'),
302 (30, 8, 1, 'Dunbaldar North - ALliance control'),
303 (30, 8, 2, 'Dunbaldar North - Horde assaulted'),
304 (30, 8, 3, 'Dunbaldar North - Horde control'),
306 (30, 9, 1, 'Icewing Bunker - ALliance control'),
307 (30, 9, 2, 'Icewing Bunker - Horde assaulted'),
308 (30, 9, 3, 'Icewing Bunker - Horde control'),
310 (30, 10, 1, 'Stoneheart Bunker - ALliance control'),
311 (30, 10, 2, 'Stoneheart Bunker - Horde assaulted'),
312 (30, 10, 3, 'Stoneheart Bunker - Horde control'),
314 (30, 11, 0, 'Iceblood Tower - Alliance assaulted'),
315 (30, 11, 1, 'Iceblood Tower - ALliance control'),
316 (30, 11, 3, 'Iceblood Tower - Horde control'),
318 (30, 12, 0, 'Tower Point - Alliance assaulted'),
319 (30, 12, 1, 'Tower Point - ALliance control'),
320 (30, 12, 3, 'Tower Point - Horde control'),
322 (30, 13, 0, 'Frostwolf east Tower - Alliance assaulted'),
323 (30, 13, 1, 'Frostwolf east Tower - ALliance control'),
324 (30, 13, 3, 'Frostwolf east Tower - Horde control'),
326 (30, 14, 0, 'Frostwolf west Tower - Alliance assaulted'),
327 (30, 14, 1, 'Frostwolf west Tower - ALliance control'),
328 (30, 14, 3, 'Frostwolf west Tower - Horde control'),
331 (30, 15, 0, 'Firstaid Station - Alliance Defender Quest0'),
332 (30, 15, 1, 'Firstaid Station - Alliance Defender Quest1'),
333 (30, 15, 2, 'Firstaid Station - Alliance Defender Quest2'),
334 (30, 15, 3, 'Firstaid Station - Alliance Defender Quest3'),
335 (30, 15, 4, 'Firstaid Station - Horde Defender Quest0'),
336 (30, 15, 5, 'Firstaid Station - Horde Defender Quest1'),
337 (30, 15, 6, 'Firstaid Station - Horde Defender Quest2'),
338 (30, 15, 7, 'Firstaid Station - Horde Defender Quest3'),
340 (30, 16, 0, 'Stormpike Grave - Alliance Defender Quest0'),
341 (30, 16, 1, 'Stormpike Grave - Alliance Defender Quest1'),
342 (30, 16, 2, 'Stormpike Grave - Alliance Defender Quest2'),
343 (30, 16, 3, 'Stormpike Grave - Alliance Defender Quest3'),
344 (30, 16, 4, 'Stormpike Grave - Horde Defender Quest0'),
345 (30, 16, 5, 'Stormpike Grave - Horde Defender Quest1'),
346 (30, 16, 6, 'Stormpike Grave - Horde Defender Quest2'),
347 (30, 16, 7, 'Stormpike Grave - Horde Defender Quest3'),
349 (30, 17, 0, 'Stoneheart Grave - Alliance Defender Quest0'),
350 (30, 17, 1, 'Stoneheart Grave - Alliance Defender Quest1'),
351 (30, 17, 2, 'Stoneheart Grave - Alliance Defender Quest2'),
352 (30, 17, 3, 'Stoneheart Grave - Alliance Defender Quest3'),
353 (30, 17, 4, 'Stoneheart Grave - Horde Defender Quest0'),
354 (30, 17, 5, 'Stoneheart Grave - Horde Defender Quest1'),
355 (30, 17, 6, 'Stoneheart Grave - Horde Defender Quest2'),
356 (30, 17, 7, 'Stoneheart Grave - Horde Defender Quest3'),
358 (30, 18, 0, 'Snowfall Grave - Alliance Defender Quest0'),
359 (30, 18, 1, 'Snowfall Grave - Alliance Defender Quest1'),
360 (30, 18, 2, 'Snowfall Grave - Alliance Defender Quest2'),
361 (30, 18, 3, 'Snowfall Grave - Alliance Defender Quest3'),
362 (30, 18, 4, 'Snowfall Grave - Horde Defender Quest0'),
363 (30, 18, 5, 'Snowfall Grave - Horde Defender Quest1'),
364 (30, 18, 6, 'Snowfall Grave - Horde Defender Quest2'),
365 (30, 18, 7, 'Snowfall Grave - Horde Defender Quest3'),
367 (30, 19, 0, 'Iceblood Grave - Alliance Defender Quest0'),
368 (30, 19, 1, 'Iceblood Grave - Alliance Defender Quest1'),
369 (30, 19, 2, 'Iceblood Grave - Alliance Defender Quest2'),
370 (30, 19, 3, 'Iceblood Grave - Alliance Defender Quest3'),
371 (30, 19, 4, 'Iceblood Grave - Horde Defender Quest0'),
372 (30, 19, 5, 'Iceblood Grave - Horde Defender Quest1'),
373 (30, 19, 6, 'Iceblood Grave - Horde Defender Quest2'),
374 (30, 19, 7, 'Iceblood Grave - Horde Defender Quest3'),
376 (30, 20, 0, 'Frostwolf Grave - Alliance Defender Quest0'),
377 (30, 20, 1, 'Frostwolf Grave - Alliance Defender Quest1'),
378 (30, 20, 2, 'Frostwolf Grave - Alliance Defender Quest2'),
379 (30, 20, 3, 'Frostwolf Grave - Alliance Defender Quest3'),
380 (30, 20, 4, 'Frostwolf Grave - Horde Defender Quest0'),
381 (30, 20, 5, 'Frostwolf Grave - Horde Defender Quest1'),
382 (30, 20, 6, 'Frostwolf Grave - Horde Defender Quest2'),
383 (30, 20, 7, 'Frostwolf Grave - Horde Defender Quest3'),
385 (30, 21, 0, 'Frostwolf Hut - Alliance Defender Quest0'),
386 (30, 21, 1, 'Frostwolf Hut - Alliance Defender Quest1'),
387 (30, 21, 2, 'Frostwolf Hut - Alliance Defender Quest2'),
388 (30, 21, 3, 'Frostwolf Hut - Alliance Defender Quest3'),
389 (30, 21, 4, 'Frostwolf Hut - Horde Defender Quest0'),
390 (30, 21, 5, 'Frostwolf Hut - Horde Defender Quest1'),
391 (30, 21, 6, 'Frostwolf Hut - Horde Defender Quest2'),
392 (30, 21, 7, 'Frostwolf Hut - Horde Defender Quest3'),
394 (30, 46, 0, 'North Mine - Alliance Boss'),
395 (30, 46, 1, 'North Mine - Horde Boss'),
396 (30, 46, 2, 'North Mine - Neutral Boss'),
397 (30, 47, 0, 'South Mine - Alliance Boss'),
398 (30, 47, 1, 'South Mine - Horde Boss'),
399 (30, 47, 2, 'South Mine - Neutral Boss'),
401 (30, 48, 0, 'Alliance Captain'),
402 (30, 49, 0, 'Horde Captain'),
404 (30, 50, 0, 'North Mine - Alliance Control'),
405 (30, 50, 1, 'North Mine - Horde Control'),
406 (30, 50, 2, 'North Mine - Neutral Control'),
407 (30, 51, 0, 'South Mine - Alliance Control'),
408 (30, 51, 1, 'South Mine - Horde Control'),
409 (30, 51, 2, 'South Mine - Neutral Control'),
411 (30, 52, 0, 'Alliance Marshal - Dunbaldar South'),
412 (30, 53, 0, 'Alliance Marshal - Dunbaldar North'),
413 (30, 54, 0, 'Alliance Marshal - Icewing Bunker'),
414 (30, 55, 0, 'Alliance Marshal - Stoneheart Bunker'),
416 (30, 56, 0, 'Horde Marshal - Iceblood Tower'),
417 (30, 57, 0, 'Horde Marshal - Towerpoint'),
418 (30, 58, 0, 'Horde Marshal - East Frostwolf Tower'),
419 (30, 59, 0, 'Horde Marshal - West Frostwolf Tower'),
421 (30, 60, 0, 'Herald - that guy who yells all the time ;)'),
423 (30, 61, 0, 'Alliance - Boss'),
424 (30, 62, 0, 'Horde - Boss'),
426 (30, 63, 0, 'Alliance - Captain Dead'),
427 (30, 64, 0, 'Horde - Captain Dead');
428 /*!40000 ALTER TABLE `battleground_events` ENABLE KEYS */;
429 UNLOCK TABLES;
432 -- Table structure for table `battleground_template`
435 DROP TABLE IF EXISTS `battleground_template`;
436 CREATE TABLE `battleground_template` (
437   `id` mediumint(8) unsigned NOT NULL,
438   `MinPlayersPerTeam` smallint(5) unsigned NOT NULL default '0',
439   `MaxPlayersPerTeam` smallint(5) unsigned NOT NULL default '0',
440   `MinLvl` tinyint(3) unsigned NOT NULL default '0',
441   `MaxLvl` tinyint(3) unsigned NOT NULL default '0',
442   `AllianceStartLoc` mediumint(8) unsigned NOT NULL,
443   `AllianceStartO` float NOT NULL,
444   `HordeStartLoc` mediumint(8) unsigned NOT NULL,
445   `HordeStartO` float NOT NULL,
446   PRIMARY KEY  (`id`)
447 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
450 -- Dumping data for table `battleground_template`
453 LOCK TABLES `battleground_template` WRITE;
454 /*!40000 ALTER TABLE `battleground_template` DISABLE KEYS */;
455 INSERT INTO `battleground_template` VALUES
456 (1,0,0,0,0,611,2.72532,610,2.27452),
457 (2,0,0,0,0,769,3.14159,770,3.14159),
458 (4,0,2,10,70,929,0,936,3.14159),
459 (3,0,0,0,0,890,3.40156,889,0.263892),
460 (5,0,2,10,70,939,0,940,3.14159),
461 (6,0,2,10,70,0,0,0,0),
462 (7,0,0,0,0,1103,3.40156,1104,0.263892),
463 (8,0,2,10,70,1258,0,1259,3.14159),
464 (9,0,0,0,0,1367,0,1368,0),
465 (10,5,5,10,80,1362,0,1363,0),
466 (11,5,5,10,80,1364,0,1365,0),
467 (30,20,40,71,80,1485,0,1486,0),
468 (32,0,40,0,80,0,0,0,0);
469 /*!40000 ALTER TABLE `battleground_template` ENABLE KEYS */;
470 UNLOCK TABLES;
473 -- Table structure for table `battlemaster_entry`
476 DROP TABLE IF EXISTS `battlemaster_entry`;
477 CREATE TABLE `battlemaster_entry` (
478   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Entry of a creature',
479   `bg_template` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Battleground template id',
480   PRIMARY KEY  (`entry`)
481 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
484 -- Dumping data for table `battlemaster_entry`
487 LOCK TABLES `battlemaster_entry` WRITE;
488 /*!40000 ALTER TABLE `battlemaster_entry` DISABLE KEYS */;
489 /*!40000 ALTER TABLE `battlemaster_entry` ENABLE KEYS */;
490 UNLOCK TABLES;
493 -- Table structure for table `command`
496 DROP TABLE IF EXISTS `command`;
497 CREATE TABLE `command` (
498   `name` varchar(50) NOT NULL default '',
499   `security` tinyint(3) unsigned NOT NULL default '0',
500   `help` longtext,
501   PRIMARY KEY  (`name`)
502 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Chat System';
505 -- Dumping data for table `command`
508 LOCK TABLES `command` WRITE;
509 /*!40000 ALTER TABLE `command` DISABLE KEYS */;
510 INSERT INTO `command` VALUES
511 ('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account.'),
512 ('account create',4,'Syntax: .account create $account $password\r\n\r\nCreate account and set password to it.'),
513 ('account delete',4,'Syntax: .account delete $account\r\n\r\nDelete account with all characters.'),
514 ('account lock',0,'Syntax: .account lock [on|off]\r\n\r\nAllow login from account only from current used IP or remove this requirement.'),
515 ('account onlinelist',4,'Syntax: .account onlinelist\r\n\r\nShow list of online accounts.'),
516 ('account password',0,'Syntax: .account password $old_password $new_password $new_password\r\n\r\nChange your account password.'),
517 ('account set addon',3,'Syntax: .account set addon [$account] #addon\r\n\r\nSet user (possible targeted) expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
518 ('account set gmlevel',4,'Syntax: .account set gmlevel [$account] #level\r\n\r\nSet the security level for targeted player (can''t be used at self) or for account $name to a level of #level.\r\n\r\n#level may range from 0 to 3.'),
519 ('account set password',4,'Syntax: .account set password $account $password $password\r\n\r\nSet password for account.'),
520 ('additem',3,'Syntax: .additem #itemid/[#itemname]/#shift-click-item-link #itemcount\r\n\r\nAdds the specified number of items of id #itemid (or exact (!) name $itemname in brackets, or link created by shift-click at item in inventory or recipe) to your or selected character inventory. If #itemcount is omitted, only one item will be added.\r\n.'),
521 ('additemset',3,'Syntax: .additemset #itemsetid\r\n\r\nAdd items from itemset of id #itemsetid to your or selected character inventory. Will add by one example each item from itemset.'),
522 ('announce',1,'Syntax: .announce $MessageToBroadcast\r\n\r\nSend a global message to all players online in chat log.'),
523 ('aura',3,'Syntax: .aura #spellid\r\n\r\nAdd the aura from spell #spellid to the selected Unit.'),
524 ('ban account',3,'Syntax: .ban account $Name $bantime $reason\r\nBan account kick player.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
525 ('ban character',3,'Syntax: .ban character $Name $bantime $reason\r\nBan account and kick player.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
526 ('ban ip',3,'Syntax: .ban ip $Ip $bantime $reason\r\nBan IP.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
527 ('baninfo account',3,'Syntax: .baninfo account $accountid\r\nWatch full information about a specific ban.'),
528 ('baninfo character',3,'Syntax: .baninfo character $charactername \r\nWatch full information about a specific ban.'),
529 ('baninfo ip',3,'Syntax: .baninfo ip $ip\r\nWatch full information about a specific ban.'),
530 ('bank',3,'Syntax: .bank\r\n\r\nShow your bank inventory.'),
531 ('banlist account',3,'Syntax: .banlist account [$Name]\r\nSearches the banlist for a account name pattern or show full list account bans.'),
532 ('banlist character',3,'Syntax: .banlist character $Name\r\nSearches the banlist for a character name pattern. Pattern required.'),
533 ('banlist ip',3,'Syntax: .banlist ip [$Ip]\r\nSearches the banlist for a IP pattern or show full list of IP bans.'),
534 ('cast',3,'Syntax: .cast #spellid [triggered]\r\n  Cast #spellid to selected target. If no target selected cast to self. If \'trigered\' or part provided then spell casted with triggered flag.'),
535 ('cast back',3,'Syntax: .cast back #spellid [triggered]\r\n  Selected target will cast #spellid to your character. If \'trigered\' or part provided then spell casted with triggered flag.'),
536 ('cast dist',3,'Syntax: .cast dist #spellid [#dist [triggered]]\r\n  You will cast spell to pint at distance #dist. If \'trigered\' or part provided then spell casted with triggered flag. Not all spells can be casted as area spells.'),
537 ('cast self',3,'Syntax: .cast self #spellid [triggered]\r\nCast #spellid by target at target itself. If \'trigered\' or part provided then spell casted with triggered flag.'),
538 ('cast target',3,'Syntax: .cast target #spellid [triggered]\r\n  Selected target will cast #spellid to his victim. If \'trigered\' or part provided then spell casted with triggered flag.'),
539 ('character customize',2,'Syntax: .character customize [$name]\r\n\r\nMark selected in game or by $name in command character for customize at next login.'),
540 ('character delete',4,'Syntax: .character delete $name\r\n\r\nDelete character $name.'),
541 ('character level',3,'Syntax: .character level [$playername] [#level]\r\n\r\nSet the level of character with $playername (or the selected if not name provided) by #numberoflevels Or +1 if no #numberoflevels provided). If #numberoflevels is omitted, the level will be increase by 1. If #numberoflevels is 0, the same level will be restarted. If no character is selected and name not provided, increase your level. Command can be used for offline character. All stats and dependent values recalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost.'),
542 ('character rename',2,'Syntax: .character rename [$name]\r\n\r\nMark selected in game or by $name in command character for rename at next login.'),
543 ('character reputation',2,'Syntax: .character reputation [$player_name]\r\n\r\nShow reputation information for selected player or player find by $player_name.'),
544 ('character titles',2,'Syntax: .character titles [$player_name]\r\n\r\nShow known titles list for selected player or player find by $player_name.'),
545 ('combatstop',2,'Syntax: .combatstop [$playername]\r\nStop combat for selected character. If selected non-player then command applied to self. If $playername provided then attempt applied to online player $playername.'),
546 ('commands',0,'Syntax: .commands\r\n\r\nDisplay a list of available commands for your account level.'),
547 ('cooldown',3,'Syntax: .cooldown [#spell_id]\r\n\r\nRemove all (if spell_id not provided) or #spel_id spell cooldown from selected character or you (if no selection).'),
548 ('damage',3,'Syntax: .damage $damage_amount [$school [$spellid]]\r\n\r\nApply $damage to target. If not $school and $spellid provided then this flat clean melee damage without any modifiers. If $school provided then damage modified by armor reduction (if school physical), and target absorbing modifiers and result applied as melee damage to target. If spell provided then damage modified and applied as spell damage. $spellid can be shift-link.'),
549 ('debug anim',2,'Syntax: .debug anim #emoteid\r\n\r\nPlay emote #emoteid for your character.'),
550 ('debug arena',3,'Syntax: .debug arena\r\n\r\nToggle debug mode for arenas. In debug mode GM can start arena with single player.'),
551 ('debug bg',3,'Syntax: .debug bg\r\n\r\nToggle debug mode for battlegrounds. In debug mode GM can start battleground with single player.'),
552 ('debug getvalue',3,'Syntax: .debug getvalue #field #isInt\r\n\r\nGet the field #field of the selected creature. If no creature is selected, get the content of your field.\r\n\r\nUse a #isInt of value 1 if the expected field content is an integer.'),
553 ('debug play cinematic',1,'Syntax: .debug play cinematic #cinematicid\r\n\r\nPlay cinematic #cinematicid for you. You stay at place while your mind fly.\r\n'),
554 ('debug play movie',1,'Syntax: .debug play movie #movieid\r\n\r\nPlay movie #movieid for you.'),
555 ('debug play sound',1,'Syntax: .debug play sound #soundid\r\n\r\nPlay sound with #soundid.\r\nSound will be play only for you. Other players do not hear this.\r\nWarning: client may have more 5000 sounds...'),
556 ('debug setvalue',3,'Syntax: .debug setvalue #field #value #isInt\r\n\r\nSet the field #field of the selected creature with value #value. If no creature is selected, set the content of your field.\r\n\r\nUse a #isInt of value 1 if #value is an integer.'),
557 ('debug update',3,'Syntax: .debug update #field #value\r\n\r\nUpdate the field #field of the selected character or creature with value #value.\r\n\r\nIf no #value is provided, display the content of field #field.'),
558 ('debug Mod32Value',3,'Syntax: .debug Mod32Value #field #value\r\n\r\nAdd #value to field #field of your character.'),
559 ('delticket',2,'Syntax: .delticket all\r\n        .delticket #num\r\n        .delticket $character_name\r\n\rall to dalete all tickets at server, $character_name to delete ticket of this character, #num to delete ticket #num.'),
560 ('demorph',2,'Syntax: .demorph\r\n\r\nDemorph the selected player.'),
561 ('die',3,'Syntax: .die\r\n\r\nKill the selected player. If no player is selected, it will kill you.'),
562 ('dismount',0,'Syntax: .dismount\r\n\r\nDismount you, if you are mounted.'),
563 ('distance',3,'Syntax: .distance [$name/$link]\r\n\r\nDisplay the distance from your character to the selected creature/player, or player with name $name, or player/creature/gameobject pointed to shift-link with guid.'),
564 ('event',2,'Syntax: .event #event_id\r\nShow details about event with #event_id.'),
565 ('event list',2,'Syntax: .event list\r\nShow list of currently active events.\r\nShow list of all events'),
566 ('event start',2,'Syntax: .event start #event_id\r\nStart event #event_id. Set start time for event to current moment (change not saved in DB).'),
567 ('event stop',2,'Syntax: .event stop #event_id\r\nStop event #event_id. Set start time for event to time in past that make current moment is event stop time (change not saved in DB).'),
568 ('explorecheat',3,'Syntax: .explorecheat #flag\r\n\r\nReveal  or hide all maps for the selected player. If no player is selected, hide or reveal maps to you.\r\n\r\nUse a #flag of value 1 to reveal, use a #flag value of 0 to hide all maps.'),
569 ('flusharenapoints','3','Syntax: .flusharenapoints\r\n\r\nUse it to distribute arena points based on arena team ratings, and start a new week.'),
570 ('gm',1,'Syntax: .gm [on/off]\r\n\r\nEnable or Disable in game GM MODE or show current state of on/off not provided.'),
571 ('gm chat',1,'Syntax: .gm chat [on/off]\r\n\r\nEnable or disable chat GM MODE (show gm badge in messages) or show current state of on/off not provided.'),
572 ('gm fly',3,'Syntax: .gm fly [on/off]\r\nEnable/disable gm fly mode.'),
573 ('gm ingame',0,'Syntax: .gm ingame\r\n\r\nDisplay a list of available in game Game Masters.'),
574 ('gm list',3,'Syntax: .gm list\r\n\r\nDisplay a list of all Game Masters accounts and security levels.'),
575 ('gm visible',1,'Syntax: .gm visible on/off\r\n\r\nOutput current visibility state or make GM visible(on) and invisible(off) for other players.'),
576 ('go creature',1,'Syntax: .go creature #creature_guid\r\nTeleport your character to creature with guid #creature_guid.\r\n.gocreature #creature_name\r\nTeleport your character to creature with this name.\r\n.gocreature id #creature_id\r\nTeleport your character to a creature that was spawned from the template with this entry.\r\n*If* more than one creature is found, then you are teleported to the first that is found inside the database.'),
577 ('go graveyard',1,'Syntax: .go graveyard #graveyardId\r\n Teleport to graveyard with the graveyardId specified.'),
578 ('go grid',1,'Syntax: .go grid #gridX #gridY [#mapId]\r\n\r\nTeleport the gm to center of grid with provided indexes at map #mapId (or current map if it not provided).'),
579 ('go object',1,'Syntax: .go object #object_guid\r\nTeleport your character to gameobject with guid #object_guid'),
580 ('go taxinode',1,'Syntax: .go taxinode #taxinode\r\n\r\nTeleport player to taxinode coordinates. You can look up zone using .lookup taxinode $namepart'),
581 ('go trigger',1,'Syntax: .go trigger #trigger_id\r\n\r\nTeleport your character to areatrigger with id #trigger_id. Character will be teleported to trigger target if selected areatrigger is telporting trigger.'),
582 ('go xy',1,'Syntax: .go xy #x #y [#mapid]\r\n\r\nTeleport player to point with (#x,#y) coordinates at ground(water) level at map #mapid or same map if #mapid not provided.'),
583 ('go xyz',1,'Syntax: .go xyz #x #y #z [#mapid]\r\n\r\nTeleport player to point with (#x,#y,#z) coordinates at ground(water) level at map #mapid or same map if #mapid not provided.'),
584 ('go zonexy',1,'Syntax: .go zonexy #x #y [#zone]\r\n\r\nTeleport player to point with (#x,#y) client coordinates at ground(water) level in zone #zoneid or current zone if #zoneid not provided. You can look up zone using .lookup area $namepart'),
585 ('gobject add',2,'Syntax: .gobject add #id <spawntimeSecs>\r\n\r\nAdd a game object from game object templates to the world at your current location using the #id.\r\nspawntimesecs sets the spawntime, it is optional.\r\n\r\nNote: this is a copy of .gameobject.'),
586 ('gobject delete',2,'Syntax: .gobject delete #go_guid\r\nDelete gameobject with guid #go_guid.'),
587 ('gobject move',2,'Syntax: .gobject move #goguid [#x #y #z]\r\n\r\nMove gameobject #goguid to character coordinates (or to (#x,#y,#z) coordinates if its provide).'),
588 ('gobject near',2,'Syntax: .gobject near  [#distance]\r\n\r\nOutput gameobjects at distance #distance from player. Output gameobject guids and coordinates sorted by distance from character. If #distance not provided use 10 as default value.'),
589 ('gobject setphase',2,'Syntax: .gobject setphase #guid #phasemask\r\n\r\nGameobject with DB guid #guid phasemask changed to #phasemask with related world vision update for players. Gameobject state saved to DB and persistent.'),
590 ('gobject turn',2,'Syntax: .gobject turn #goguid \r\n\r\nSet for gameobject #goguid orientation same as current character orientation.'),
591 ('gobject target',2,'Syntax: .gobject target [#go_id|#go_name_part]\r\n\r\nLocate and show position nearest gameobject. If #go_id or #go_name_part provide then locate and show position of nearest gameobject with gameobject template id #go_id or name included #go_name_part as part.'),
592 ('goname',1,'Syntax: .goname [$charactername]\r\n\r\nTeleport to the given character. Either specify the character name or click on the character\'s portrait, e.g. when you are in a group. Character can be offline.'),
593 ('gps',1,'Syntax: .gps [$name|$shift-link]\r\n\r\nDisplay the position information for a selected character or creature (also if player name $name provided then for named player, or if creature/gameobject shift-link provided then pointed creature/gameobject if it loaded). Position information includes X, Y, Z, and orientation, map Id and zone Id'),
594 ('groupgo',1,'Syntax: .groupgo [$charactername]\r\n\r\nTeleport the given character and his group to you. Teleported only online characters but original selected group member can be offline.'),
595 ('guid',2,'Syntax: .guid\r\n\r\nDisplay the GUID for the selected character.'),
596 ('guild create',2,'Syntax: .guild create [$GuildLeaderName] "$GuildName"\r\n\r\nCreate a guild named $GuildName with the player $GuildLeaderName (or selected) as leader.  Guild name must in quotes.'),
597 ('guild delete',2,'Syntax: .guild delete "$GuildName"\r\n\r\nDelete guild $GuildName. Guild name must in quotes.'),
598 ('guild invite',2,'Syntax: .guild invite [$CharacterName] "$GuildName"\r\n\r\nAdd player $CharacterName (or selected) into a guild $GuildName. Guild name must in quotes.'),
599 ('guild rank',2,'Syntax: .guild rank $CharacterName #Rank\r\n\r\nSet for $CharacterName rank #Rank in a guild.'),
600 ('guild uninvite',2,'Syntax: .guild uninvite [$CharacterName]\r\n\r\nRemove player $CharacterName (or selected) from a guild.'),
601 ('help',0,'Syntax: .help [$command]\r\n\r\nDisplay usage instructions for the given $command. If no $command provided show list available commands.'),
602 ('hidearea',3,'Syntax: .hidearea #areaid\r\n\r\nHide the area of #areaid to the selected character. If no character is selected, hide this area to you.'),
603 ('honor add',2,'Syntax: .honor add $amount\r\n\r\nAdd a certain amount of honor (gained today) to the selected player.'),
604 ('honor addkill',2,'Syntax: .honor addkikll\r\n\r\nAdd the targeted unit as one of your pvp kills today (you only get honor if it\'s a racial leader or a player)'),
605 ('honor update',2,'Syntax: .honor update\r\n\r\nForce the yesterday\'s honor fields to be updated with today\'s data, which will get reset for the selected player.'),
606 ('hover',3,'Syntax: .hover #flag\r\n\r\nEnable or disable hover mode for your character.\r\n\r\nUse a #flag of value 1 to enable, use a #flag value of 0 to disable hover.'),
607 ('instance unbind',3,'Syntax: .instance unbind all\r\n  All of the selected player\'s binds will be cleared.\r\n.instance unbind #mapid\r\n Only the specified #mapid instance will be cleared.'),
608 ('instance listbinds',3,'Syntax: .instance listbinds\r\n  Lists the binds of the selected player.'),
609 ('instance stats',3,'Syntax: .instance stats\r\n  Shows statistics about instances.'),
610 ('instance savedata',3,'Syntax: .instance savedata\r\n  Save the InstanceData for the current player\'s map to the DB.'),
611 ('itemmove',2,'Syntax: .itemmove #sourceslotid #destinationslotid\r\n\r\nMove an item from slots #sourceslotid to #destinationslotid in your inventory\r\n\r\nNot yet implemented'),
612 ('kick',2,'Syntax: .kick [$charactername]\r\n\r\nKick the given character name from the world. If no character name is provided then the selected player (except for yourself) will be kicked.'),
613 ('learn',3,'Syntax: .learn #spell [all]\r\n\r\nSelected character learn a spell of id #spell. If \'all\' provided then all ranks learned.'),
614 ('learn all',3,'Syntax: .learn all\r\n\r\nLearn all big set different spell maybe useful for Administaror.'),
615 ('learn all_crafts',2,'Syntax: .learn crafts\r\n\r\nLearn all professions and recipes.'),
616 ('learn all_default',1,'Syntax: .learn all_default [$playername]\r\n\r\nLearn for selected/$playername player all default spells for his race/class and spells rewarded by completed quests.'),
617 ('learn all_gm',2,'Syntax: .learn all_gm\r\n\r\nLearn all default spells for Game Masters.'),
618 ('learn all_lang',1,'Syntax: .learn all_lang\r\n\r\nLearn all languages'),
619 ('learn all_myclass',3,'Syntax: .learn all_myclass\r\n\r\nLearn all spells and talents available for his class.'),
620 ('learn all_mypettalents',3,'Syntax: .learn all_mypettalents\r\n\r\nLearn all talents for your pet available for his creature type (only for hunter pets).'),
621 ('learn all_myspells',3,'Syntax: .learn all_myspells\r\n\r\nLearn all spells (except talents and spells with first rank learned as talent) available for his class.'),
622 ('learn all_mytalents',3,'Syntax: .learn all_mytalents\r\n\r\nLearn all talents (and spells with first rank learned as talent) available for his class.'),
623 ('learn all_recipes',2,'Syntax: .learn all_recipes [$profession]\r\rLearns all recipes of specified profession and sets skill level to max.\rExample: .learn all_recipes enchanting'),
624 ('levelup',3,'Syntax: .levelup [$playername] [#numberoflevels]\r\n\r\nIncrease/decrease the level of character with $playername (or the selected if not name provided) by #numberoflevels Or +1 if no #numberoflevels provided). If #numberoflevels is omitted, the level will be increase by 1. If #numberoflevels is 0, the same level will be restarted. If no character is selected and name not provided, increase your level. Command can be used for offline character. All stats and dependent VALUESrecalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost.'),
625 ('linkgrave',3,'Syntax: .linkgrave #graveyard_id [alliance|horde]\r\n\r\nLink current zone to graveyard for any (or alliance/horde faction ghosts). This let character ghost from zone teleport to graveyard after die if graveyard is nearest from linked to zone and accept ghost of this faction. Add only single graveyard at another map and only if no graveyards linked (or planned linked at same map).'),
626 ('list creature',3,'Syntax: .list creature #creature_id [#max_count]\r\n\r\nOutput creatures with creature id #creature_id found in world. Output creature guids and coordinates sorted by distance from character. Will be output maximum #max_count creatures. If #max_count not provided use 10 as default value.'),
627 ('list item',3,'Syntax: .list item #item_id [#max_count]\r\n\r\nOutput items with item id #item_id found in all character inventories, mails, auctions, and guild banks. Output item guids, item owner guid, owner account and owner name (guild name and guid in case guild bank). Will be output maximum #max_count items. If #max_count not provided use 10 as default value.'),
628 ('list object',3,'Syntax: .list object #gameobject_id [#max_count]\r\n\r\nOutput gameobjects with gameobject id #gameobject_id found in world. Output gameobject guids and coordinates sorted by distance from character. Will be output maximum #max_count gameobject. If #max_count not provided use 10 as default value.'),
629 ('loadscripts',3,'Syntax: .loadscripts $scriptlibraryname\r\n\r\nUnload current and load the script library $scriptlibraryname or reload current if $scriptlibraryname omitted, in case you changed it while the server was running.'),
630 ('lookup area',1,'Syntax: .lookup area $namepart\r\n\r\nLooks up an area by $namepart, and returns all matches with their area ID\'s.'),
631 ('lookup creature',3,'Syntax: .lookup creature $namepart\r\n\r\nLooks up a creature by $namepart, and returns all matches with their creature ID\'s.'),
632 ('lookup event',2,'Syntax: .lookup event $name\r\nAttempts to find the ID of the event with the provided $name.'),
633 ('lookup faction',3,'Syntax: .lookup faction $name\r\nAttempts to find the ID of the faction with the provided $name.'),
634 ('lookup item',3,'Syntax: .lookup item $itemname\r\n\r\nLooks up an item by $itemname, and returns all matches with their Item ID\'s.'),
635 ('lookup itemset',3,'Syntax: .lookup itemset $itemname\r\n\r\nLooks up an item set by $itemname, and returns all matches with their Item set ID\'s.'),
636 ('lookup object',3,'Syntax: .lookup object $objname\r\n\r\nLooks up an gameobject by $objname, and returns all matches with their Gameobject ID\'s.'),
637 ('lookup player account',2,'Syntax: .lookup player account $account ($limit) \r\n\r\n Searchs players, which account username is $account with optional parametr $limit of results.'),
638 ('lookup player ip',2,'Syntax: .lookup player ip $ip ($limit) \r\n\r\n Searchs players, which account ast_ip is $ip with optional parametr $limit of results.'),
639 ('lookup player email',2,'Syntax: .lookup player email $email ($limit) \r\n\r\n Searchs players, which account email is $email with optional parametr $limit of results.'),
640 ('lookup quest',3,'Syntax: .lookup quest $namepart\r\n\r\nLooks up a quest by $namepart, and returns all matches with their quest ID\'s.'),
641 ('lookup skill',3,'Syntax: .lookup skill $$namepart\r\n\r\nLooks up a skill by $namepart, and returns all matches with their skill ID\'s.'),
642 ('lookup spell',3,'Syntax: .lookup spell $namepart\r\n\r\nLooks up a spell by $namepart, and returns all matches with their spell ID\'s.'),
643 ('lookup taxinode',3,'Syntax: .lookup taxinode $substring\r\n\r\nSearch and output all taxinodes with provide $substring in name.'),
644 ('lookup tele',1,'Syntax: .lookup tele $substring\r\n\r\nSearch and output all .tele command locations with provide $substring in name.'),
645 ('lookup title',2,'Syntax: .lookup title $$namepart\r\n\r\nLooks up a title by $namepart, and returns all matches with their title ID\'s and index\'s.'),
646 ('maxskill',3,'Syntax: .maxskill\r\nSets all skills of the targeted player to their maximum VALUESfor its current level.'),
647 ('modify arena',1,'Syntax: .modify arena #value\r\nAdd $amount arena points to the selected player.'),
648 ('modify aspeed',1,'Syntax: .modify aspeed #rate\r\n\r\nModify all speeds -run,swim,run back,swim back- of the selected player to \"normalbase speed for this move type\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
649 ('modify bit',1,'Syntax: .modify bit #field #bit\r\n\r\nToggle the #bit bit of the #field field for the selected player. If no player is selected, modify your character.'),
650 ('modify bwalk',1,'Syntax: .modify bwalk #rate\r\n\r\nModify the speed of the selected player while running backwards to \"normal walk back speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
651 ('modify drunk',1,'Syntax: .modify drunk #value\r\n Set drunk level to #value (0..100). Value 0 remove drunk state, 100 is max drunked state.'),
652 ('modify energy',1,'Syntax: .modify energy #energy\r\n\r\nModify the energy of the selected player. If no player is selected, modify your energy.'),
653 ('modify faction',1,'Syntax: .modify faction #factionid #flagid #npcflagid #dynamicflagid\r\n\r\nModify the faction and flags of the selected creature. Without arguments, display the faction and flags of the selected creature.'),
654 ('modify gender',2,'Syntax: .modify gender male/female\r\n\r\nChange gender of selected player.'),
655 ('modify honor',1,'Syntax: .modify honor $amount\r\n\r\nAdd $amount honor points to the selected player.'),
656 ('modify hp',1,'Syntax: .modify hp #newhp\r\n\r\nModify the hp of the selected player. If no player is selected, modify your hp.'),
657 ('modify mana',1,'Syntax: .modify mana #newmana\r\n\r\nModify the mana of the selected player. If no player is selected, modify your mana.'),
658 ('modify money',1,'Syntax: .modify money #money\r\n.money #money\r\n\r\nAdd or remove money to the selected player. If no player is selected, modify your money.\r\n\r\n #gold can be negative to remove money.'),
659 ('modify morph',2,'Syntax: .modify morph #displayid\r\n\r\nChange your current model id to #displayid.'),
660 ('modify mount',1,'Syntax: .modify mount #id #speed\r\nDisplay selected player as mounted at #id creature and set speed to #speed value.'),
661 ('modify phase',3,'Syntax: .modify phase #phasemask\r\n\r\nSelected character phasemask changed to #phasemask with related world vision update. Change active until in game phase changed, or GM-mode enable/disable, or re-login. Character pts pasemask update to same value.'),
662 ('modify rage',1,'Syntax: .modify rage #newrage\r\n\r\nModify the rage of the selected player. If no player is selected, modify your rage.'),
663 ('modify rep',2,'Syntax: .modify rep #repId (#repvalue | $rankname [#delta])\r\nSets the selected players reputation with faction #repId to #repvalue or to $reprank.\r\nIf the reputation rank name is provided, the resulting reputation will be the lowest reputation for that rank plus the delta amount, if specified.\r\nYou can use \'.pinfo rep\' to list all known reputation ids, or use \'.lookup faction $name\' to locate a specific faction id.'),
664 ('modify runicpower',1,'Syntax: .modify runicpower #newrunicpower\r\n\r\nModify the runic power of the selected player. If no player is selected, modify your runic power.'),
665 ('modify scale',1,'Syntax: .modify scale #scale\r\n\r\nChange model scale for targeted player (util relogin) or creature (until respawn).'),
666 ('modify speed',1,'Syntax: .modify speed #rate\r\n.speed #rate\r\n\r\nModify the running speed of the selected player to \"normal base run speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
667 ('modify spell',1,''),
668 ('modify standstate',2,'Syntax: .modify standstate #emoteid\r\n\r\nChange the emote of your character while standing to #emoteid.'),
669 ('modify swim',1,'Syntax: .modify swim #rate\r\n\r\nModify the swim speed of the selected player to \"normal swim speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
670 ('modify tp',1,'Syntax: .modify tp #amount\r\n\r\nSet free talent pointes for selected character or character\'s pet. It will be reset to default expected at next levelup/login/quest reward.'),
671 ('movegens',3,'Syntax: .movegens\r\n  Show movement generators stack for selected creature or player.'),
672 ('mute',1,'Syntax: .mute [$playerName] $timeInMinutes\r\n\r\nDisible chat messaging for any character from account of character $playerName (or currently selected) at $timeInMinutes minutes. Player can be offline.'),
673 ('namego',1,'Syntax: .namego [$charactername]\r\n\r\nTeleport the given character to you. Character can be offline.'),
674 ('neargrave',3,'Syntax: .neargrave [alliance|horde]\r\n\r\nFind nearest graveyard linked to zone (or only nearest from accepts alliance or horde faction ghosts).'),
675 ('notify',1,'Syntax: .notify $MessageToBroadcast\r\n\r\nSend a global message to all players online in screen.'),
676 ('npc add',2,'Syntax: .npc add #creatureid\r\n\r\nSpawn a creature by the given template id of #creatureid.'),
677 ('npc additem',2,'Syntax: .npc additem #itemId <#maxcount><#incrtime><#extendedcost>r\r\n\r\nAdd item #itemid to item list of selected vendor. Also optionally set max count item in vendor item list and time to item count restoring and items ExtendedCost.'),
678 ('npc addmove',2,'Syntax: .npc addmove #creature_guid [#waittime]\r\n\r\nAdd your current location as a waypoint for creature with guid #creature_guid. And optional add wait time.'),
679 ('npc addweapon',3,'Not yet implemented.'),
680 ('npc allowmove',3,'Syntax: .npc allowmove\r\n\r\nEnable or disable movement creatures in world. Not implemented.'),
681 ('npc changelevel',2,'Syntax: .npc changelevel #level\r\n\r\nChange the level of the selected creature to #level.\r\n\r\n#level may range from 1 to 63.'),
682 ('npc delete',2,'Syntax: .npc delete [#guid]\r\n\r\nDelete creature with guid #guid (or the selected if no guid is provided)'),
683 ('npc delitem',2,'Syntax: .npc delitem #itemId\r\n\r\nRemove item #itemid from item list of selected vendor.'),
684 ('npc factionid',2,'Syntax: .npc factionid #factionid\r\n\r\nSet the faction of the selected creature to #factionid.'),
685 ('npc flag',2,'Syntax: .npc flag #npcflag\r\n\r\nSet the NPC flags of creature template of the selected creature and selected creature to #npcflag. NPC flags will applied to all creatures of selected creature template after server restart or grid unload/load.'),
686 ('npc follow',2,'Syntax: .npc follow\r\n\r\nSelected creature start follow you until death/fight/etc.'),
687 ('npc info',3,'Syntax: .npc info\r\n\r\nDisplay a list of details for the selected creature.\r\n\r\nThe list includes:\r\n- GUID, Faction, NPC flags, Entry ID, Model ID,\r\n- Level,\r\n- Health (current/maximum),\r\n\r\n- Field flags, dynamic flags, faction template, \r\n- Position information,\r\n- and the creature type, e.g. if the creature is a vendor.'),
688 ('npc move',2,'Syntax: .npc move [#creature_guid]\r\n\r\nMove the targeted creature spawn point to your coordinates.'),
689 ('npc name',2,'Syntax: .npc name $name\r\n\r\nChange the name of the selected creature or character to $name.\r\n\r\nCommand disabled.'),
690 ('npc playemote',3,'Syntax: .npc playemote #emoteid\r\n\r\nMake the selected creature emote with an emote of id #emoteid.'),
691 ('npc setdeathstate',2,'Syntax: .npc setdeathstate on/off\r\n\r\nSet default death state (dead/alive) for npc at spawn.'),
692 ('npc setmodel',2,'Syntax: .npc setmodel #displayid\r\n\r\nChange the model id of the selected creature to #displayid.'),
693 ('npc setmovetype',2,'Syntax: .npc setmovetype [#creature_guid] stay/random/way [NODEL]\r\n\r\nSet for creature pointed by #creature_guid (or selected if #creature_guid not provided) movement type and move it to respawn position (if creature alive). Any existing waypoints for creature will be removed from the database if you do not use NODEL. If the creature is dead then movement type will applied at creature respawn.\r\nMake sure you use NODEL, if you want to keep the waypoints.'),
694 ('npc setphase',2,'Syntax: .npc setphase #phasemask\r\n\r\nSelected unit or pet phasemask changed to #phasemask with related world vision update for players. In creature case state saved to DB and persistent. In pet case change active until in game phase changed for owner, owner re-login, or GM-mode enable/disable..'),
695 ('npc spawndist',2,'Syntax: .npc spawndist #dist\r\n\r\nAdjust spawndistance of selected creature to dist.'),
696 ('npc spawntime',2,'Syntax: .npc spawntime #time \r\n\r\nAdjust spawntime of selected creature to time.'),
697 ('npc subname',2,'Syntax: .npc subname $Name\r\n\r\nChange the subname of the selected creature or player to $Name.\r\n\r\nCommand disabled.'),
698 ('npc tame',2,'Syntax: .npc tame\r\n\r\nTame selected creature (tameable non pet creature). You don''t must have pet.'),
699 ('npc textemote',1,'Syntax: .npc textemote #emoteid\r\n\r\nMake the selected creature to do textemote with an emote of id #emoteid.'),
700 ('npc whisper',1,'Syntax: .npc whisper #playerguid #text\r\nMake the selected npc whisper #text to  #playerguid.'),
701 ('npc unfollow',2,'Syntax: .npc unfollow\r\n\r\nSelected creature (non pet) stop follow you.'),
702 ('pdump write',3,'Syntax: .pdump write $filename $playerNameOrGUID\r\nWrite character dump with name/guid $playerNameOrGUID to file $filename.'),
703 ('pdump load',3,'Syntax: .pdump load $filename $account [$newname] [$newguid]\r\nLoad character dump from dump file into character list of $account with saved or $newname, with saved (or first free) or $newguid guid.'),
704 ('pinfo',2,'Syntax: .pinfo [$player_name]\r\n\r\nOutput account information for selected player or player find by $player_name.'),
705 ('quest add',3,'Syntax: .quest add #quest_id\r\n\r\nAdd to character quest log quest #quest_id. Quest started from item can\'t be added by this command but correct .additem call provided in command output.'),
706 ('quest complete',3,'Syntax: .quest complete #questid\r\nMark all quest objectives as completed for target character active quest. After this target character can go and get quest reward.'),
707 ('quest remove',3,'Syntax: .quest remove #quest_id\r\n\r\nSet quest #quest_id state to not completed and not active (and remove from active quest list) for selected player.'),
708 ('quit',4,'Syntax: quit\r\n\r\nClose RA connection. Command must be typed fully (quit).'),
709 ('recall',1,'Syntax: .recall [$playername]\r\n\r\nTeleport $playername or selected player to the place where he has been before last use of a teleportation command. If no $playername is entered and no player is selected, it will teleport you.'),
710 ('reload all',3,'Syntax: .reload all\r\n\r\nReload all tables with reload support added and that can be _safe_ reloaded.'),
711 ('reload all_area',3,'Syntax: .reload all_area\r\n\r\nReload all `areatrigger_*` tables if reload support added for this table and this table can be _safe_ reloaded.'),
712 ('reload all_loot',3,'Syntax: .reload all_loot\r\n\r\nReload all `*_loot_template` tables. This can be slow operation with lags for server run.'),
713 ('reload all_quest',3,'Syntax: .reload all_quest\r\n\r\nReload all quest related tables if reload support added for this table and this table can be _safe_ reloaded.'),
714 ('reload all_spell',3,'Syntax: .reload all_spell\r\n\r\nReload all `spell_*` tables with reload support added and that can be _safe_ reloaded.'),
715 ('reload all_locales',3,'Syntax: .reload all_locales\r\n\r\nReload all `locales_*` tables with reload support added and that can be _safe_ reloaded.'),
716 ('reload config',3,'Syntax: .reload config\r\n\r\nReload config settings (by default stored in mangosd.conf). Not all settings can be change at reload: some new setting values will be ignored until restart, some values will applied with delay or only to new objects/maps, some values will explicitly rejected to change at reload.'),
717 ('repairitems',2,'Syntax: .repairitems\r\n\r\nRepair all selected player''s items.'),
718 ('reset achievements',3,'Syntax: .reset achievements [$playername]\r\n\r\nReset achievements data for selected or named (online or offline) character. Achievements for persistance progress data like completed quests/etc re-filled at reset. Achievements for events like kills/casts/etc will lost.'),
719 ('reset all',3,'Syntax: .reset all spells\r\n\r\nSyntax: .reset all talents\r\n\r\nRequest reset spells or talents (including talents for all character\'s pets if any) at next login each existed character.'),
720 ('reset honor',3,'Syntax: .reset honor [Playername]\r\n  Reset all honor data for targeted character.'),
721 ('reset level',3,'Syntax: .reset level [Playername]\r\n  Reset level to 1 including reset stats and talents.  Equipped items with greater level requirement can be lost.'),
722 ('reset spells',3,'Syntax: .reset spells [Playername]\r\n  Removes all non-original spells from spellbook.\r\n. Playername can be name of offline character.'),
723 ('reset stats',3,'Syntax: .reset stats [Playername]\r\n  Resets(recalculate) all stats of the targeted player to their original VALUESat current level.'),
724 ('reset talents',3,'Syntax: .reset talents [Playername]\r\n  Removes all talents of the targeted player or pet or named player. Playername can be name of offline character. With player talents also will be reset talents for all character\'s pets if any.'),
725 ('respawn',3,'Syntax: .respawn\r\n\r\nRespawn selected creature or respawn all nearest creatures (if none selected) and GO without waiting respawn time expiration.'),
726 ('revive',3,'Syntax: .revive\r\n\r\nRevive the selected player. If no player is selected, it will revive you.'),
727 ('save',0,'Syntax: .save\r\n\r\nSaves your character.'),
728 ('saveall',1,'Syntax: .saveall\r\n\r\nSave all characters in game.'),
729 ('send items',3,'Syntax: .send items #playername "#subject" "#text" itemid1[:count1] itemid2[:count2] ... itemidN[:countN]\r\n\r\nSend a mail to a player. Subject and mail text must be in "". If for itemid not provided related count values then expected 1, if count > max items in stack then items will be send in required amount stacks. All stacks amount in mail limited to 12.'),
730 ('send mail',1,'Syntax: .send mail #playername "#subject" "#text"\r\n\r\nSend a mail to a player. Subject and mail text must be in "".'),
731 ('send message',3,'Syntax: .send message $playername $message\r\n\r\nSend screen message to player from ADMINISTRATOR.'),
732 ('send money','3','Syntax: .send money #playername "#subject" "#text" #money\r\n\r\nSend mail with money to a player. Subject and mail text must be in "".'),
733 ('server corpses',2,'Syntax: .server corpses\r\n\r\nTriggering corpses expire check in world.'),
734 ('server exit',4,'Syntax: .server exit\r\n\r\nTerminate mangosd NOW. Exit code 0.'),
735 ('server info',0,'Syntax: .server info\r\n\r\nDisplay server version and the number of connected players.'),
736 ('server idleshutdown',3,'Syntax: .server idleshutdown #delay [#exist_code]\r\n\r\nShut the server down after #delay seconds if no active connections are present (no players). Use #exist_code or 0 as program exist code.'),
737 ('server idleshutdown cancel',3,'Syntax: .server idleshutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
738 ('server idlerestart',3,'Syntax: .server idlerestart #delay\r\n\r\nRestart the server after #delay seconds if no active connections are present (no players). Use #exist_code or 2 as program exist code.'),
739 ('server idlerestart cancel',3,'Syntax: .server idlerestart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
740 ('server motd',0,'Syntax: .server motd\r\n\r\nShow server Message of the day.'),
741 ('server plimit',3,'Syntax: .server plimit [#num|-1|-2|-3|reset|player|moderator|gamemaster|administrator]\r\n\r\nWithout arg show current player amount and security level limitations for login to server, with arg set player linit ($num > 0) or securiti limitation ($num < 0 or security leme name. With `reset` sets player limit to the one in the config file'),
742 ('server restart',3,'Syntax: .server restart #delay\r\n\r\nRestart the server after #delay seconds. Use #exist_code or 2 as program exist code.'),
743 ('server restart cancel',3,'Syntax: .server restart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
744 ('server set loglevel',4,'Syntax: .server set loglevel #level\r\n\r\nSet server log level (0 - errors only, 1 - basic, 2 - detail, 3 - debug).'),
745 ('server set motd',3,'Syntax: .server set motd $MOTD\r\n\r\nSet server Message of the day.'),
746 ('server shutdown',3,'Syntax: .server shutdown #delay [#exit_code]\r\n\r\nShut the server down after #delay seconds. Use #exit_code or 0 as program exit code.'),
747 ('server shutdown cancel',3,'Syntax: .server shutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
748 ('setskill',3,'Syntax: .setskill #skill #level [#max]\r\n\r\nSet a skill of id #skill with a current skill value of #level and a maximum value of #max (or equal current maximum if not provide) for the selected character. If no character is selected, you learn the skill.'),
749 ('showarea',3,'Syntax: .showarea #areaid\r\n\r\nReveal the area of #areaid to the selected character. If no character is selected, reveal this area to you.'),
750 ('start',0,'Syntax: .start\r\n\r\nTeleport you to the starting area of your character.'),
751 ('taxicheat',1,'Syntax: .taxicheat on/off\r\n\r\nTemporary grant access or remove to all taxi routes for the selected character. If no character is selected, hide or reveal all routes to you.\r\n\r\nVisited taxi nodes sill accessible after removing access.'),
752 ('tele',1,'Syntax: .tele #location\r\n\r\nTeleport player to a given location.'),
753 ('tele add',3,'Syntax: .tele add $name\r\n\r\nAdd current your position to .tele command target locations list with name $name.'),
754 ('tele del',3,'Syntax: .tele del $name\r\n\r\nRemove location with name $name for .tele command locations list.'),
755 ('tele group',1,'Syntax: .tele group#location\r\n\r\nTeleport a selected player and his group members to a given location.'),
756 ('tele name',1,'Syntax: .tele name [#playername] #location\r\n\r\nTeleport the given character to a given location. Character can be offline.'),
757 ('ticket',2,'Syntax: .ticket on\r\n        .ticket off\r\n        .ticket #num\r\n        .ticket $character_name\r\n\r\non/off for GMs to show or not a new ticket directly, $character_name to show ticket of this character, #num to show ticket #num.'),
758 ('titles add',2,'Syntax: .titles add #title\r\nAdd title #title (id or shift-link) to known titles list for selected player.'),
759 ('titles current',2,'Syntax: .titles current #title\r\nSet title #title (id or shift-link) as current selected titl for selected player. If title not in known title list for player then it will be added to list.'),
760 ('titles remove',2,'Syntax: .titles remove #title\r\nRemove title #title (id or shift-link) from known titles list for selected player.'),
761 ('titles setmask',2,'Syntax: .titles setmask #mask\r\n\r\nAllows user to use all titles from #mask.\r\n\r\n #mask=0 disables the title-choose-field'),
762 ('unaura',3,'Syntax: .unaura #spellid\r\n\r\nRemove aura due to spell #spellid from the selected Unit.'),
763 ('unban account',3,'Syntax: .unban account $Name\r\nUnban accounts for account name pattern.'),
764 ('unban character',3,'Syntax: .unban character $Name\r\nUnban accounts for character name pattern.'),
765 ('unban ip',3,'Syntax : .unban ip $Ip\r\nUnban accounts for IP pattern.'),
766 ('unlearn',3,'Syntax: .unlearn #spell [all]\r\n\r\nUnlearn for selected player a spell #spell.  If \'all\' provided then all ranks unlearned.'),
767 ('unmute',1,'Syntax: .unmute $playerName\r\n\r\nRestore chat messaging for any character from account of character $playerName.'),
768 ('waterwalk',2,'Syntax: .waterwalk on/off\r\n\r\nSet on/off waterwalk state for selected player.'),
769 ('wchange',3,'Syntax: .wchange #weathertype #status\r\n\r\nSet current weather to #weathertype with an intensity of #status.\r\n\r\n#weathertype can be 1 for rain, 2 for snow, and 3 for sand. #status can be 0 for disabled, and 1 for enabled.'),
770 ('whispers',1,'Syntax: .whispers on|off\r\nEnable/disable accepting whispers by GM from players. By default use mangosd.conf setting.'),
771 ('wp',2,'Using WP Command:\r\nEach Waypoint Command has it\'s own description!'),
772 ('wp add',2,'Syntax: .wp add [#creature_guid or Select a Creature]'),
773 ('wp export',3,'Syntax: .wp export [#creature_guid or Select a Creature] $filename'),
774 ('wp import',3,'Syntax: .wp import $filename'),
775 ('wp modify',2,'Syntax: .wp modify [#creature_guid or Select a Creature]\r\nadd - Add a waypoint after the selected visual\r\nwaittime $time\r\nemote ID\r\nspell ID\r\ntext1| text2| text3| text4| text5 <text>\r\nmodel1 ID\r\nmodel2 ID\r\nmove(moves wp to player pos)\r\ndel (deletes the wp)\r\n\r\nOnly one parameter per time!'),
776 ('wp show',2,'Syntax: .wp show [#creature_guid or Select a Creature]\r\non\r\nfirst\r\nlast\r\noff\r\ninfo\r\n\r\nFor using info you have to do first show on and than select a Visual-Waypoint and do the show info!');
777 /*!40000 ALTER TABLE `command` ENABLE KEYS */;
778 UNLOCK TABLES;
781 -- Table structure for table `creature`
784 DROP TABLE IF EXISTS `creature`;
785 CREATE TABLE `creature` (
786   `guid` int(10) unsigned NOT NULL auto_increment COMMENT 'Global Unique Identifier',
787   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Creature Identifier',
788   `map` smallint(5) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
789   `spawnMask` tinyint(3) unsigned NOT NULL default '1',
790   `phaseMask` smallint(5) unsigned NOT NULL default '1',
791   `modelid` mediumint(8) unsigned NOT NULL default '0',
792   `equipment_id` mediumint(9) NOT NULL default '0',
793   `position_x` float NOT NULL default '0',
794   `position_y` float NOT NULL default '0',
795   `position_z` float NOT NULL default '0',
796   `orientation` float NOT NULL default '0',
797   `spawntimesecs` int(10) unsigned NOT NULL default '120',
798   `spawndist` float NOT NULL default '5',
799   `currentwaypoint` mediumint(8) unsigned NOT NULL default '0',
800   `curhealth` int(10) unsigned NOT NULL default '1',
801   `curmana` int(10) unsigned NOT NULL default '0',
802   `DeathState` tinyint(3) unsigned NOT NULL default '0',
803   `MovementType` tinyint(3) unsigned NOT NULL default '0',
804   PRIMARY KEY  (`guid`),
805   KEY `idx_map` (`map`),
806   KEY `index_id` (`id`)
807 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature System';
810 -- Dumping data for table `creature`
813 LOCK TABLES `creature` WRITE;
814 /*!40000 ALTER TABLE `creature` DISABLE KEYS */;
815 /*!40000 ALTER TABLE `creature` ENABLE KEYS */;
816 UNLOCK TABLES;
819 -- Table structure for table `creature_addon`
822 DROP TABLE IF EXISTS `creature_addon`;
823 CREATE TABLE `creature_addon` (
824   `guid` int(11) NOT NULL default '0',
825   `mount` mediumint(8) unsigned NOT NULL default '0',
826   `bytes1` int(10) unsigned NOT NULL default '0',
827   `bytes2` int(10) unsigned NOT NULL default '0',
828   `emote` int(10) unsigned NOT NULL default '0',
829   `moveflags` int(10) unsigned NOT NULL default '0',
830   `auras` text,
831   PRIMARY KEY  (`guid`)
832 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
835 -- Dumping data for table `creature_addon`
838 LOCK TABLES `creature_addon` WRITE;
839 /*!40000 ALTER TABLE `creature_addon` DISABLE KEYS */;
840 /*!40000 ALTER TABLE `creature_addon` ENABLE KEYS */;
841 UNLOCK TABLES;
844 -- Table structure for table `creature_battleground`
847 DROP TABLE IF EXISTS `creature_battleground`;
848 CREATE TABLE `creature_battleground` (
849     `guid` int(10) unsigned NOT NULL COMMENT 'Creature\'s GUID',
850     `event1` tinyint(3) unsigned NOT NULL COMMENT 'main event',
851     `event2` tinyint(3) unsigned NOT NULL COMMENT 'sub event',
852     PRIMARY KEY  (`guid`)
853 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature battleground indexing system';
856 -- Dumping data for table `creature_battleground`
859 LOCK TABLES `creature_battleground` WRITE;
860 /*!40000 ALTER TABLE `creature_battleground` DISABLE KEYS */;
861 /*!40000 ALTER TABLE `creature_battleground` ENABLE KEYS */;
862 UNLOCK TABLES;
865 -- Table structure for table `creature_equip_template`
868 DROP TABLE IF EXISTS `creature_equip_template`;
869 CREATE TABLE `creature_equip_template` (
870   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Unique entry',
871   `equipentry1` mediumint(8) unsigned NOT NULL default '0',
872   `equipentry2` mediumint(8) unsigned NOT NULL default '0',
873   `equipentry3` mediumint(8) unsigned NOT NULL default '0',
874   PRIMARY KEY  (`entry`)
875 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Equipment)';
878 -- Dumping data for table `creature_equip_template`
881 LOCK TABLES `creature_equip_template` WRITE;
882 /*!40000 ALTER TABLE `creature_equip_template` DISABLE KEYS */;
883 /*!40000 ALTER TABLE `creature_equip_template` ENABLE KEYS */;
884 UNLOCK TABLES;
887 -- Table structure for table `creature_involvedrelation`
890 DROP TABLE IF EXISTS `creature_involvedrelation`;
891 CREATE TABLE `creature_involvedrelation` (
892   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
893   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
894   PRIMARY KEY  (`id`,`quest`)
895 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
898 -- Dumping data for table `creature_involvedrelation`
901 LOCK TABLES `creature_involvedrelation` WRITE;
902 /*!40000 ALTER TABLE `creature_involvedrelation` DISABLE KEYS */;
903 /*!40000 ALTER TABLE `creature_involvedrelation` ENABLE KEYS */;
904 UNLOCK TABLES;
907 -- Table structure for table `creature_loot_template`
910 DROP TABLE IF EXISTS `creature_loot_template`;
911 CREATE TABLE `creature_loot_template` (
912   `entry` mediumint(8) unsigned NOT NULL default '0',
913   `item` mediumint(8) unsigned NOT NULL default '0',
914   `ChanceOrQuestChance` float NOT NULL default '100',
915   `groupid` tinyint(3) unsigned NOT NULL default '0',
916   `mincountOrRef` mediumint(9) NOT NULL default '1',
917   `maxcount` tinyint(3) unsigned NOT NULL default '1',
918   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
919   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
920   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
921   PRIMARY KEY  (`entry`,`item`)
922 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
925 -- Dumping data for table `creature_loot_template`
928 LOCK TABLES `creature_loot_template` WRITE;
929 /*!40000 ALTER TABLE `creature_loot_template` DISABLE KEYS */;
930 /*!40000 ALTER TABLE `creature_loot_template` ENABLE KEYS */;
931 UNLOCK TABLES;
934 -- Table structure for table `creature_model_info`
937 DROP TABLE IF EXISTS `creature_model_info`;
938 CREATE TABLE `creature_model_info` (
939   `modelid` mediumint(8) unsigned NOT NULL default '0',
940   `bounding_radius` float NOT NULL default '0',
941   `combat_reach` float NOT NULL default '0',
942   `gender` tinyint(3) unsigned NOT NULL default '2',
943   `modelid_other_gender` mediumint(8) unsigned NOT NULL default '0',
944   PRIMARY KEY  (`modelid`)
945 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Model related info)';
948 -- Dumping data for table `creature_model_info`
951 LOCK TABLES `creature_model_info` WRITE;
952 /*!40000 ALTER TABLE `creature_model_info` DISABLE KEYS */;
953 INSERT INTO `creature_model_info` VALUES
954 (10045, 1, 1.5, 2, 0);
955 /*!40000 ALTER TABLE `creature_model_info` ENABLE KEYS */;
956 UNLOCK TABLES;
959 -- Table structure for table `creature_movement`
962 DROP TABLE IF EXISTS `creature_movement`;
963 CREATE TABLE `creature_movement` (
964   `id` int(10) unsigned NOT NULL COMMENT 'Creature GUID',
965   `point` mediumint(8) unsigned NOT NULL default '0',
966   `position_x` float NOT NULL default '0',
967   `position_y` float NOT NULL default '0',
968   `position_z` float NOT NULL default '0',
969   `waittime` int(10) unsigned NOT NULL default '0',
970   `textid1` int(11) NOT NULL default '0',
971   `textid2` int(11) NOT NULL default '0',
972   `textid3` int(11) NOT NULL default '0',
973   `textid4` int(11) NOT NULL default '0',
974   `textid5` int(11) NOT NULL default '0',
975   `emote` mediumint(8) unsigned NOT NULL default '0',
976   `spell` mediumint(8) unsigned NOT NULL default '0',
977   `wpguid` int(11) NOT NULL default '0',
978   `orientation` float NOT NULL default '0',
979   `model1` mediumint(9) NOT NULL default '0',
980   `model2` mediumint(9) NOT NULL default '0',
981   PRIMARY KEY  (`id`,`point`)
982 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
985 -- Dumping data for table `creature_movement`
988 LOCK TABLES `creature_movement` WRITE;
989 /*!40000 ALTER TABLE `creature_movement` DISABLE KEYS */;
990 /*!40000 ALTER TABLE `creature_movement` ENABLE KEYS */;
991 UNLOCK TABLES;
994 -- Table structure for table `creature_onkill_reputation`
997 DROP TABLE IF EXISTS `creature_onkill_reputation`;
998 CREATE TABLE `creature_onkill_reputation` (
999   `creature_id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Creature Identifier',
1000   `RewOnKillRepFaction1` smallint(6) NOT NULL default '0',
1001   `RewOnKillRepFaction2` smallint(6) NOT NULL default '0',
1002   `MaxStanding1` tinyint(4) NOT NULL default '0',
1003   `IsTeamAward1` tinyint(4) NOT NULL default '0',
1004   `RewOnKillRepValue1` mediumint(9) NOT NULL default '0',
1005   `MaxStanding2` tinyint(4) NOT NULL default '0',
1006   `IsTeamAward2` tinyint(4) NOT NULL default '0',
1007   `RewOnKillRepValue2` mediumint(9) NOT NULL default '0',
1008   `TeamDependent` tinyint(3) unsigned NOT NULL default '0',
1009   PRIMARY KEY  (`creature_id`)
1010 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature OnKill Reputation gain';
1013 -- Dumping data for table `creature_onkill_reputation`
1016 LOCK TABLES `creature_onkill_reputation` WRITE;
1017 /*!40000 ALTER TABLE `creature_onkill_reputation` DISABLE KEYS */;
1018 /*!40000 ALTER TABLE `creature_onkill_reputation` ENABLE KEYS */;
1019 UNLOCK TABLES;
1022 -- Table structure for table `creature_questrelation`
1025 DROP TABLE IF EXISTS `creature_questrelation`;
1026 CREATE TABLE `creature_questrelation` (
1027   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
1028   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1029   PRIMARY KEY  (`id`,`quest`)
1030 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1033 -- Dumping data for table `creature_questrelation`
1036 LOCK TABLES `creature_questrelation` WRITE;
1037 /*!40000 ALTER TABLE `creature_questrelation` DISABLE KEYS */;
1038 /*!40000 ALTER TABLE `creature_questrelation` ENABLE KEYS */;
1039 UNLOCK TABLES;
1042 -- Table structure for table `creature_respawn`
1045 DROP TABLE IF EXISTS `creature_respawn`;
1046 CREATE TABLE `creature_respawn` (
1047   `guid` int(10) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
1048   `respawntime` bigint(20) NOT NULL default '0',
1049   `instance` mediumint(8) unsigned NOT NULL default '0',
1050   PRIMARY KEY  (`guid`,`instance`),
1051   KEY `instance` (`instance`)
1052 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
1055 -- Dumping data for table `creature_respawn`
1058 LOCK TABLES `creature_respawn` WRITE;
1059 /*!40000 ALTER TABLE `creature_respawn` DISABLE KEYS */;
1060 /*!40000 ALTER TABLE `creature_respawn` ENABLE KEYS */;
1061 UNLOCK TABLES;
1064 -- Table structure for table `creature_template`
1067 DROP TABLE IF EXISTS `creature_template`;
1068 CREATE TABLE `creature_template` (
1069   `entry` mediumint(8) unsigned NOT NULL default '0',
1070   `difficulty_entry_1` mediumint(8) unsigned NOT NULL default '0',
1071   `difficulty_entry_2` mediumint(8) unsigned NOT NULL default '0',
1072   `difficulty_entry_3` mediumint(8) unsigned NOT NULL default '0',
1073   `KillCredit1` int(11) unsigned NOT NULL default '0',
1074   `KillCredit2` int(11) unsigned NOT NULL default '0',
1075   `modelid_A` mediumint(8) unsigned NOT NULL default '0',
1076   `modelid_A2` mediumint(8) unsigned NOT NULL default '0',
1077   `modelid_H` mediumint(8) unsigned NOT NULL default '0',
1078   `modelid_H2` mediumint(8) unsigned NOT NULL default '0',
1079   `name` char(100) NOT NULL default '0',
1080   `subname` char(100) default NULL,
1081   `IconName` char(100) default NULL,
1082   `gossip_menu_id` mediumint(8) unsigned NOT NULL default '0',
1083   `minlevel` tinyint(3) unsigned NOT NULL default '1',
1084   `maxlevel` tinyint(3) unsigned NOT NULL default '1',
1085   `minhealth` int(10) unsigned NOT NULL default '0',
1086   `maxhealth` int(10) unsigned NOT NULL default '0',
1087   `minmana` int(10) unsigned NOT NULL default '0',
1088   `maxmana` int(10) unsigned NOT NULL default '0',
1089   `armor` mediumint(8) unsigned NOT NULL default '0',
1090   `faction_A` smallint(5) unsigned NOT NULL default '0',
1091   `faction_H` smallint(5) unsigned NOT NULL default '0',
1092   `npcflag` int(10) unsigned NOT NULL default '0',
1093   `speed` float NOT NULL default '1',
1094   `scale` float NOT NULL default '1',
1095   `rank` tinyint(3) unsigned NOT NULL default '0',
1096   `mindmg` float NOT NULL default '0',
1097   `maxdmg` float NOT NULL default '0',
1098   `dmgschool` tinyint(4) NOT NULL default '0',
1099   `attackpower` int(10) unsigned NOT NULL default '0',
1100   `dmg_multiplier` float NOT NULL default '1',
1101   `baseattacktime` int(10) unsigned NOT NULL default '0',
1102   `rangeattacktime` int(10) unsigned NOT NULL default '0',
1103   `unit_class` tinyint(3) unsigned NOT NULL default '0',
1104   `unit_flags` int(10) unsigned NOT NULL default '0',
1105   `dynamicflags` int(10) unsigned NOT NULL default '0',
1106   `family` tinyint(4) NOT NULL default '0',
1107   `trainer_type` tinyint(4) NOT NULL default '0',
1108   `trainer_spell` mediumint(8) unsigned NOT NULL default '0',
1109   `trainer_class` tinyint(3) unsigned NOT NULL default '0',
1110   `trainer_race` tinyint(3) unsigned NOT NULL default '0',
1111   `minrangedmg` float NOT NULL default '0',
1112   `maxrangedmg` float NOT NULL default '0',
1113   `rangedattackpower` smallint(5) unsigned NOT NULL default '0',
1114   `type` tinyint(3) unsigned NOT NULL default '0',
1115   `type_flags` int(10) unsigned NOT NULL default '0',
1116   `lootid` mediumint(8) unsigned NOT NULL default '0',
1117   `pickpocketloot` mediumint(8) unsigned NOT NULL default '0',
1118   `skinloot` mediumint(8) unsigned NOT NULL default '0',
1119   `resistance1` smallint(5) NOT NULL default '0',
1120   `resistance2` smallint(5) NOT NULL default '0',
1121   `resistance3` smallint(5) NOT NULL default '0',
1122   `resistance4` smallint(5) NOT NULL default '0',
1123   `resistance5` smallint(5) NOT NULL default '0',
1124   `resistance6` smallint(5) NOT NULL default '0',
1125   `spell1` mediumint(8) unsigned NOT NULL default '0',
1126   `spell2` mediumint(8) unsigned NOT NULL default '0',
1127   `spell3` mediumint(8) unsigned NOT NULL default '0',
1128   `spell4` mediumint(8) unsigned NOT NULL default '0',
1129   `PetSpellDataId` mediumint(8) unsigned NOT NULL default '0',
1130   `mingold` mediumint(8) unsigned NOT NULL default '0',
1131   `maxgold` mediumint(8) unsigned NOT NULL default '0',
1132   `AIName` char(64) NOT NULL default '',
1133   `MovementType` tinyint(3) unsigned NOT NULL default '0',
1134   `InhabitType` tinyint(3) unsigned NOT NULL default '3',
1135   `unk16` float NOT NULL default '1',
1136   `unk17` float NOT NULL default '1',
1137   `RacialLeader` tinyint(3) unsigned NOT NULL default '0',
1138   `questItem1` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1139   `questItem2` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1140   `questItem3` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1141   `questItem4` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1142   `questItem5` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1143   `questItem6` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1144   `movementId` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1145   `RegenHealth` tinyint(3) unsigned NOT NULL default '1',
1146   `equipment_id` mediumint(8) unsigned NOT NULL default '0',
1147   `mechanic_immune_mask` int(10) unsigned NOT NULL default '0',
1148   `flags_extra` int(10) unsigned NOT NULL default '0',
1149   `ScriptName` char(64) NOT NULL default '',
1150   PRIMARY KEY  (`entry`)
1151 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1154 -- Dumping data for table `creature_template`
1157 LOCK TABLES `creature_template` WRITE;
1158 /*!40000 ALTER TABLE `creature_template` DISABLE KEYS */;
1159 INSERT INTO `creature_template` VALUES
1160 (1,0,0,0,0,0,10045,0,10045,0,'Waypoint(Only GM can see it)','Visual',NULL,0,1,1,64,64,0,0,0,35,35,0,0.91,1,0,14,15,0,100,1,2000,2200,8,4096,0,0,0,0,0,0,1.76,2.42,100,8,5242886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1.0,1.0,0,0,0,0,0,0,0,0,1,0,0,0x82,'');
1161 /*!40000 ALTER TABLE `creature_template` ENABLE KEYS */;
1162 UNLOCK TABLES;
1165 -- Table structure for table `creature_template_addon`
1168 DROP TABLE IF EXISTS `creature_template_addon`;
1169 CREATE TABLE `creature_template_addon` (
1170   `entry` mediumint(8) unsigned NOT NULL default '0',
1171   `mount` mediumint(8) unsigned NOT NULL default '0',
1172   `bytes1` int(10) unsigned NOT NULL default '0',
1173   `bytes2` int(10) unsigned NOT NULL default '0',
1174   `emote` mediumint(8) unsigned NOT NULL default '0',
1175   `moveflags` int(10) unsigned NOT NULL default '0',
1176   `auras` text,
1177   PRIMARY KEY  (`entry`)
1178 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1181 -- Dumping data for table `creature_template_addon`
1184 LOCK TABLES `creature_template_addon` WRITE;
1185 /*!40000 ALTER TABLE `creature_template_addon` DISABLE KEYS */;
1186 /*!40000 ALTER TABLE `creature_template_addon` ENABLE KEYS */;
1187 UNLOCK TABLES;
1190 -- Table structure for table `db_script_string`
1193 DROP TABLE IF EXISTS `db_script_string`;
1194 CREATE TABLE `db_script_string` (
1195   `entry` mediumint(8) unsigned NOT NULL default '0',
1196   `content_default` text NOT NULL,
1197   `content_loc1` text,
1198   `content_loc2` text,
1199   `content_loc3` text,
1200   `content_loc4` text,
1201   `content_loc5` text,
1202   `content_loc6` text,
1203   `content_loc7` text,
1204   `content_loc8` text,
1205   PRIMARY KEY  (`entry`)
1206 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1209 -- Dumping data for table `db_script_string`
1212 LOCK TABLES `db_script_string` WRITE;
1213 /*!40000 ALTER TABLE `db_script_string` DISABLE KEYS */;
1214 /*!40000 ALTER TABLE `db_script_string` ENABLE KEYS */;
1215 UNLOCK TABLES;
1218 -- Table structure for table `disenchant_loot_template`
1221 DROP TABLE IF EXISTS `disenchant_loot_template`;
1222 CREATE TABLE `disenchant_loot_template` (
1223   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Recommended id selection: item_level*100 + item_quality',
1224   `item` mediumint(8) unsigned NOT NULL default '0',
1225   `ChanceOrQuestChance` float NOT NULL default '100',
1226   `groupid` tinyint(3) unsigned NOT NULL default '0',
1227   `mincountOrRef` mediumint(9) NOT NULL default '1',
1228   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1229   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1230   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1231   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1232   PRIMARY KEY  (`entry`,`item`)
1233 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1236 -- Dumping data for table `disenchant_loot_template`
1239 LOCK TABLES `disenchant_loot_template` WRITE;
1240 /*!40000 ALTER TABLE `disenchant_loot_template` DISABLE KEYS */;
1241 /*!40000 ALTER TABLE `disenchant_loot_template` ENABLE KEYS */;
1242 UNLOCK TABLES;
1245 -- Table structure for table `creature_ai_scripts`
1248 DROP TABLE IF EXISTS `creature_ai_scripts`;
1249 CREATE TABLE `creature_ai_scripts` (
1250   `id` int(11) unsigned NOT NULL COMMENT 'Identifier' AUTO_INCREMENT,
1251   `creature_id` int(11) unsigned NOT NULL default '0' COMMENT 'Creature Template Identifier',
1252   `event_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Event Type',
1253   `event_inverse_phase_mask` int(11) signed NOT NULL default '0' COMMENT 'Mask which phases this event will not trigger in',
1254   `event_chance` int(3) unsigned NOT NULL default '100',
1255   `event_flags` int(3) unsigned NOT NULL default '0',
1256   `event_param1` int(11) signed NOT NULL default '0',
1257   `event_param2` int(11) signed NOT NULL default '0',
1258   `event_param3` int(11) signed NOT NULL default '0',
1259   `event_param4` int(11) signed NOT NULL default '0',
1260   `action1_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1261   `action1_param1` int(11) signed NOT NULL default '0',
1262   `action1_param2` int(11) signed NOT NULL default '0',
1263   `action1_param3` int(11) signed NOT NULL default '0',
1264   `action2_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1265   `action2_param1` int(11) signed NOT NULL default '0',
1266   `action2_param2` int(11) signed NOT NULL default '0',
1267   `action2_param3` int(11) signed NOT NULL default '0',
1268   `action3_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1269   `action3_param1` int(11) signed NOT NULL default '0',
1270   `action3_param2` int(11) signed NOT NULL default '0',
1271   `action3_param3` int(11) signed NOT NULL default '0',
1272   `comment` varchar(255) NOT NULL default '' COMMENT 'Event Comment',
1273   PRIMARY KEY (`id`)
1274 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Scripts';
1277 -- Dumping data for table `creature_ai_scripts`
1280 LOCK TABLES `creature_ai_scripts` WRITE;
1281 /*!40000 ALTER TABLE `creature_ai_scripts` DISABLE KEYS */;
1282 /*!40000 ALTER TABLE `creature_ai_scripts` ENABLE KEYS */;
1283 UNLOCK TABLES;
1286 -- Table structure for table `creature_ai_summons`
1289 DROP TABLE IF EXISTS `creature_ai_summons`;
1290 CREATE TABLE `creature_ai_summons` (
1291   `id` int(11) unsigned NOT NULL COMMENT 'Location Identifier' AUTO_INCREMENT,
1292   `position_x` float NOT NULL default '0',
1293   `position_y` float NOT NULL default '0',
1294   `position_z` float NOT NULL default '0',
1295   `orientation` float NOT NULL default '0',
1296   `spawntimesecs` int(11) unsigned NOT NULL default '120',
1297   `comment` varchar(255) NOT NULL default '' COMMENT 'Summon Comment',
1298   PRIMARY KEY (`id`)
1299 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Summoning Locations';
1302 -- Dumping data for table `creature_ai_summons`
1305 LOCK TABLES `creature_ai_summons` WRITE;
1306 /*!40000 ALTER TABLE `creature_ai_summons` DISABLE KEYS */;
1307 /*!40000 ALTER TABLE `creature_ai_summons` ENABLE KEYS */;
1308 UNLOCK TABLES;
1311 -- Table structure for table `creature_ai_texts`
1314 DROP TABLE IF EXISTS `creature_ai_texts`;
1315 CREATE TABLE `creature_ai_texts` (
1316   `entry` mediumint(8) NOT NULL,
1317   `content_default` text NOT NULL,
1318   `content_loc1` text,
1319   `content_loc2` text,
1320   `content_loc3` text,
1321   `content_loc4` text,
1322   `content_loc5` text,
1323   `content_loc6` text,
1324   `content_loc7` text,
1325   `content_loc8` text,
1326   `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
1327   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
1328   `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
1329   `emote` smallint(5) unsigned NOT NULL DEFAULT '0',
1330   `comment` text,
1331   PRIMARY KEY (`entry`)
1332 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
1335 -- Dumping data for table `creature_ai_texts`
1338 LOCK TABLES `creature_ai_texts` WRITE;
1339 /*!40000 ALTER TABLE `creature_ai_texts` DISABLE KEYS */;
1340 /*!40000 ALTER TABLE `creature_ai_texts` ENABLE KEYS */;
1341 UNLOCK TABLES;
1344 -- Table structure for table `event_scripts`
1347 DROP TABLE IF EXISTS `event_scripts`;
1348 CREATE TABLE `event_scripts` (
1349   `id` mediumint(8) unsigned NOT NULL default '0',
1350   `delay` int(10) unsigned NOT NULL default '0',
1351   `command` mediumint(8) unsigned NOT NULL default '0',
1352   `datalong` mediumint(8) unsigned NOT NULL default '0',
1353   `datalong2` int(10) unsigned NOT NULL default '0',
1354   `dataint` int(11) NOT NULL default '0',
1355   `x` float NOT NULL default '0',
1356   `y` float NOT NULL default '0',
1357   `z` float NOT NULL default '0',
1358   `o` float NOT NULL default '0'
1359 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1362 -- Dumping data for table `event_scripts`
1365 LOCK TABLES `event_scripts` WRITE;
1366 /*!40000 ALTER TABLE `event_scripts` DISABLE KEYS */;
1367 /*!40000 ALTER TABLE `event_scripts` ENABLE KEYS */;
1368 UNLOCK TABLES;
1371 -- Table structure for table `exploration_basexp`
1374 DROP TABLE IF EXISTS `exploration_basexp`;
1375 CREATE TABLE `exploration_basexp` (
1376   `level` tinyint(4) NOT NULL default '0',
1377   `basexp` mediumint(9) NOT NULL default '0',
1378   PRIMARY KEY  (`level`)
1379 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Exploration System';
1382 -- Dumping data for table `exploration_basexp`
1385 LOCK TABLES `exploration_basexp` WRITE;
1386 /*!40000 ALTER TABLE `exploration_basexp` DISABLE KEYS */;
1387 INSERT INTO `exploration_basexp` VALUES
1388 (0,0),
1389 (1,5),
1390 (2,15),
1391 (3,25),
1392 (4,35),
1393 (5,45),
1394 (6,55),
1395 (7,65),
1396 (8,70),
1397 (9,80),
1398 (10,85),
1399 (11,90),
1400 (12,90),
1401 (13,90),
1402 (14,100),
1403 (15,105),
1404 (16,115),
1405 (17,125),
1406 (18,135),
1407 (19,145),
1408 (20,155),
1409 (21,165),
1410 (22,175),
1411 (23,185),
1412 (24,195),
1413 (25,200),
1414 (26,210),
1415 (27,220),
1416 (28,230),
1417 (29,240),
1418 (30,245),
1419 (31,250),
1420 (32,255),
1421 (33,265),
1422 (34,270),
1423 (35,275),
1424 (36,280),
1425 (37,285),
1426 (38,285),
1427 (39,300),
1428 (40,315),
1429 (41,330),
1430 (42,345),
1431 (43,360),
1432 (44,375),
1433 (45,390),
1434 (46,405),
1435 (47,420),
1436 (48,440),
1437 (49,455),
1438 (50,470),
1439 (51,490),
1440 (52,510),
1441 (53,530),
1442 (54,540),
1443 (55,560),
1444 (56,580),
1445 (57,600),
1446 (58,620),
1447 (59,640),
1448 (60,660),
1449 (61,970),
1450 (62,1000),
1451 (63,1050),
1452 (64,1080),
1453 (65,1100),
1454 (66,1130),
1455 (67,1160),
1456 (68,1200),
1457 (69,1230),
1458 (70,1250);
1459 /*!40000 ALTER TABLE `exploration_basexp` ENABLE KEYS */;
1460 UNLOCK TABLES;
1463 -- Table structure for table `fishing_loot_template`
1466 DROP TABLE IF EXISTS `fishing_loot_template`;
1467 CREATE TABLE `fishing_loot_template` (
1468   `entry` mediumint(8) unsigned NOT NULL default '0',
1469   `item` mediumint(8) unsigned NOT NULL default '0',
1470   `ChanceOrQuestChance` float NOT NULL default '100',
1471   `groupid` tinyint(3) unsigned NOT NULL default '0',
1472   `mincountOrRef` mediumint(9) NOT NULL default '1',
1473   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1474   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1475   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1476   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1477   PRIMARY KEY  (`entry`,`item`)
1478 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1481 -- Dumping data for table `fishing_loot_template`
1484 LOCK TABLES `fishing_loot_template` WRITE;
1485 /*!40000 ALTER TABLE `fishing_loot_template` DISABLE KEYS */;
1486 /*!40000 ALTER TABLE `fishing_loot_template` ENABLE KEYS */;
1487 UNLOCK TABLES;
1490 -- Table structure for table `game_event`
1493 DROP TABLE IF EXISTS `game_event`;
1494 CREATE TABLE `game_event` (
1495   `entry` mediumint(8) unsigned NOT NULL COMMENT 'Entry of the game event',
1496   `start_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Absolute start date, the event will never start before',
1497   `end_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Absolute end date, the event will never start afler',
1498   `occurence` bigint(20) unsigned NOT NULL default '86400' COMMENT 'Delay in hours between occurences of the event',
1499   `length` bigint(20) unsigned NOT NULL default '43200' COMMENT 'Length in hours of the event',
1500   `holiday` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Client side holiday id',
1501   `description` varchar(255) default NULL COMMENT 'Description of the event displayed in console',
1502   PRIMARY KEY  (`entry`)
1503 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1506 -- Dumping data for table `game_event`
1509 LOCK TABLES `game_event` WRITE;
1510 /*!40000 ALTER TABLE `game_event` DISABLE KEYS */;
1511 /*!40000 ALTER TABLE `game_event` ENABLE KEYS */;
1512 UNLOCK TABLES;
1515 -- Table structure for table `game_event_creature`
1518 DROP TABLE IF EXISTS `game_event_creature`;
1519 CREATE TABLE `game_event_creature` (
1520   `guid` int(10) unsigned NOT NULL,
1521   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
1522   PRIMARY KEY  (`guid`)
1523 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1526 -- Dumping data for table `game_event_creature`
1529 LOCK TABLES `game_event_creature` WRITE;
1530 /*!40000 ALTER TABLE `game_event_creature` DISABLE KEYS */;
1531 /*!40000 ALTER TABLE `game_event_creature` ENABLE KEYS */;
1532 UNLOCK TABLES;
1535 -- Table structure for table `game_event_creature_quest`
1538 DROP TABLE IF EXISTS `game_event_creature_quest`;
1539 CREATE TABLE `game_event_creature_quest` (
1540   `id` mediumint(8) unsigned NOT NULL default '0',
1541   `quest` mediumint(8) unsigned NOT NULL default '0',
1542   `event` smallint(5) unsigned NOT NULL default '0',
1543   PRIMARY KEY  (`id`,`quest`)
1544 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1547 -- Dumping data for table `game_event_creature_quest`
1550 LOCK TABLES `game_event_creature_quest` WRITE;
1551 /*!40000 ALTER TABLE `game_event_creature_quest` DISABLE KEYS */;
1552 /*!40000 ALTER TABLE `game_event_creature_quest` ENABLE KEYS */;
1553 UNLOCK TABLES;
1556 -- Table structure for table `game_event_gameobject`
1559 DROP TABLE IF EXISTS `game_event_gameobject`;
1560 CREATE TABLE `game_event_gameobject` (
1561   `guid` int(10) unsigned NOT NULL,
1562   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
1563   PRIMARY KEY  (`guid`)
1564 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1567 -- Dumping data for table `game_event_gameobject`
1570 LOCK TABLES `game_event_gameobject` WRITE;
1571 /*!40000 ALTER TABLE `game_event_gameobject` DISABLE KEYS */;
1572 /*!40000 ALTER TABLE `game_event_gameobject` ENABLE KEYS */;
1573 UNLOCK TABLES;
1576 -- Table structure for table `game_event_model_equip`
1579 DROP TABLE IF EXISTS `game_event_model_equip`;
1580 CREATE TABLE `game_event_model_equip` (
1581   `guid` int(10) unsigned NOT NULL default '0',
1582   `modelid` mediumint(8) unsigned NOT NULL default '0',
1583   `equipment_id` mediumint(8) unsigned NOT NULL default '0',
1584   `event` smallint(5) unsigned NOT NULL default '0',
1585   PRIMARY KEY  (`guid`)
1586 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1589 -- Dumping data for table `game_event_model_equip`
1592 LOCK TABLES `game_event_model_equip` WRITE;
1593 /*!40000 ALTER TABLE `game_event_model_equip` DISABLE KEYS */;
1594 /*!40000 ALTER TABLE `game_event_model_equip` ENABLE KEYS */;
1595 UNLOCK TABLES;
1598 -- Table structure for table `game_graveyard_zone`
1601 DROP TABLE IF EXISTS `game_graveyard_zone`;
1602 CREATE TABLE `game_graveyard_zone` (
1603   `id` mediumint(8) unsigned NOT NULL default '0',
1604   `ghost_zone` mediumint(8) unsigned NOT NULL default '0',
1605   `faction` smallint(5) unsigned NOT NULL default '0',
1606   PRIMARY KEY  (`id`,`ghost_zone`)
1607 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Trigger System';
1610 -- Dumping data for table `game_graveyard_zone`
1613 LOCK TABLES `game_graveyard_zone` WRITE;
1614 /*!40000 ALTER TABLE `game_graveyard_zone` DISABLE KEYS */;
1615 /*!40000 ALTER TABLE `game_graveyard_zone` ENABLE KEYS */;
1616 UNLOCK TABLES;
1619 -- Table structure for table `game_tele`
1622 DROP TABLE IF EXISTS `game_tele`;
1623 CREATE TABLE `game_tele` (
1624   `id` mediumint(8) unsigned NOT NULL auto_increment,
1625   `position_x` float NOT NULL default '0',
1626   `position_y` float NOT NULL default '0',
1627   `position_z` float NOT NULL default '0',
1628   `orientation` float NOT NULL default '0',
1629   `map` smallint(5) unsigned NOT NULL default '0',
1630   `name` varchar(100) NOT NULL default '',
1631   PRIMARY KEY  (`id`)
1632 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tele Command';
1635 -- Dumping data for table `game_tele`
1638 LOCK TABLES `game_tele` WRITE;
1639 /*!40000 ALTER TABLE `game_tele` DISABLE KEYS */;
1640 /*!40000 ALTER TABLE `game_tele` ENABLE KEYS */;
1641 UNLOCK TABLES;
1644 -- Table structure for table `game_weather`
1647 DROP TABLE IF EXISTS `game_weather`;
1648 CREATE TABLE `game_weather` (
1649   `zone` mediumint(8) unsigned NOT NULL default '0',
1650   `spring_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1651   `spring_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1652   `spring_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1653   `summer_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1654   `summer_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1655   `summer_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1656   `fall_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1657   `fall_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1658   `fall_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1659   `winter_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1660   `winter_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1661   `winter_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1662   PRIMARY KEY  (`zone`)
1663 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Weather System';
1666 -- Dumping data for table `game_weather`
1669 LOCK TABLES `game_weather` WRITE;
1670 /*!40000 ALTER TABLE `game_weather` DISABLE KEYS */;
1671 /*!40000 ALTER TABLE `game_weather` ENABLE KEYS */;
1672 UNLOCK TABLES;
1675 -- Table structure for table `gameobject`
1678 DROP TABLE IF EXISTS `gameobject`;
1679 CREATE TABLE `gameobject` (
1680   `guid` int(10) unsigned NOT NULL auto_increment COMMENT 'Global Unique Identifier',
1681   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Gameobject Identifier',
1682   `map` smallint(5) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
1683   `spawnMask` tinyint(3) unsigned NOT NULL default '1',
1684   `phaseMask` smallint(5) unsigned NOT NULL default '1',
1685   `position_x` float NOT NULL default '0',
1686   `position_y` float NOT NULL default '0',
1687   `position_z` float NOT NULL default '0',
1688   `orientation` float NOT NULL default '0',
1689   `rotation0` float NOT NULL default '0',
1690   `rotation1` float NOT NULL default '0',
1691   `rotation2` float NOT NULL default '0',
1692   `rotation3` float NOT NULL default '0',
1693   `spawntimesecs` int(11) NOT NULL default '0',
1694   `animprogress` tinyint(3) unsigned NOT NULL default '0',
1695   `state` tinyint(3) unsigned NOT NULL default '0',
1696   PRIMARY KEY  (`guid`)
1697 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
1700 -- Dumping data for table `gameobject`
1703 LOCK TABLES `gameobject` WRITE;
1704 /*!40000 ALTER TABLE `gameobject` DISABLE KEYS */;
1705 /*!40000 ALTER TABLE `gameobject` ENABLE KEYS */;
1706 UNLOCK TABLES;
1709 -- Table structure for table `gameobject_battleground`
1712 DROP TABLE IF EXISTS `gameobject_battleground`;
1713 CREATE TABLE `gameobject_battleground` (
1714     `guid` int(10) unsigned NOT NULL COMMENT 'GameObject\'s GUID',
1715     `event1` tinyint(3) unsigned NOT NULL COMMENT 'main event',
1716     `event2` tinyint(3) unsigned NOT NULL COMMENT 'sub event',
1717     PRIMARY KEY  (`guid`)
1718 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='GameObject battleground indexing system';
1721 -- Dumping data for table `gameobject_battleground`
1724 LOCK TABLES `gameobject_battleground` WRITE;
1725 /*!40000 ALTER TABLE `gameobject_battleground` DISABLE KEYS */;
1726 /*!40000 ALTER TABLE `gameobject_battleground` ENABLE KEYS */;
1727 UNLOCK TABLES;
1730 -- Table structure for table `gameobject_involvedrelation`
1733 DROP TABLE IF EXISTS `gameobject_involvedrelation`;
1734 CREATE TABLE `gameobject_involvedrelation` (
1735   `id` mediumint(8) unsigned NOT NULL default '0',
1736   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1737   PRIMARY KEY  (`id`,`quest`)
1738 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1741 -- Dumping data for table `gameobject_involvedrelation`
1744 LOCK TABLES `gameobject_involvedrelation` WRITE;
1745 /*!40000 ALTER TABLE `gameobject_involvedrelation` DISABLE KEYS */;
1746 /*!40000 ALTER TABLE `gameobject_involvedrelation` ENABLE KEYS */;
1747 UNLOCK TABLES;
1750 -- Table structure for table `gameobject_loot_template`
1753 DROP TABLE IF EXISTS `gameobject_loot_template`;
1754 CREATE TABLE `gameobject_loot_template` (
1755   `entry` mediumint(8) unsigned NOT NULL default '0',
1756   `item` mediumint(8) unsigned NOT NULL default '0',
1757   `ChanceOrQuestChance` float NOT NULL default '100',
1758   `groupid` tinyint(3) unsigned NOT NULL default '0',
1759   `mincountOrRef` mediumint(9) NOT NULL default '1',
1760   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1761   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1762   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1763   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1764   PRIMARY KEY  (`entry`,`item`)
1765 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1768 -- Dumping data for table `gameobject_loot_template`
1771 LOCK TABLES `gameobject_loot_template` WRITE;
1772 /*!40000 ALTER TABLE `gameobject_loot_template` DISABLE KEYS */;
1773 /*!40000 ALTER TABLE `gameobject_loot_template` ENABLE KEYS */;
1774 UNLOCK TABLES;
1777 -- Table structure for table `gameobject_questrelation`
1780 DROP TABLE IF EXISTS `gameobject_questrelation`;
1781 CREATE TABLE `gameobject_questrelation` (
1782   `id` mediumint(8) unsigned NOT NULL default '0',
1783   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1784   PRIMARY KEY  (`id`,`quest`)
1785 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1788 -- Dumping data for table `gameobject_questrelation`
1791 LOCK TABLES `gameobject_questrelation` WRITE;
1792 /*!40000 ALTER TABLE `gameobject_questrelation` DISABLE KEYS */;
1793 /*!40000 ALTER TABLE `gameobject_questrelation` ENABLE KEYS */;
1794 UNLOCK TABLES;
1797 -- Table structure for table `gameobject_respawn`
1800 DROP TABLE IF EXISTS `gameobject_respawn`;
1801 CREATE TABLE `gameobject_respawn` (
1802   `guid` int(10) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
1803   `respawntime` bigint(20) NOT NULL default '0',
1804   `instance` mediumint(8) unsigned NOT NULL default '0',
1805   PRIMARY KEY  (`guid`,`instance`),
1806   KEY `instance` (`instance`)
1807 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
1810 -- Dumping data for table `gameobject_respawn`
1813 LOCK TABLES `gameobject_respawn` WRITE;
1814 /*!40000 ALTER TABLE `gameobject_respawn` DISABLE KEYS */;
1815 /*!40000 ALTER TABLE `gameobject_respawn` ENABLE KEYS */;
1816 UNLOCK TABLES;
1819 -- Table structure for table `gameobject_scripts`
1822 DROP TABLE IF EXISTS `gameobject_scripts`;
1823 CREATE TABLE `gameobject_scripts` (
1824   `id` mediumint(8) unsigned NOT NULL default '0',
1825   `delay` int(10) unsigned NOT NULL default '0',
1826   `command` mediumint(8) unsigned NOT NULL default '0',
1827   `datalong` mediumint(8) unsigned NOT NULL default '0',
1828   `datalong2` int(10) unsigned NOT NULL default '0',
1829   `dataint` int(11) NOT NULL default '0',
1830   `x` float NOT NULL default '0',
1831   `y` float NOT NULL default '0',
1832   `z` float NOT NULL default '0',
1833   `o` float NOT NULL default '0'
1834 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1837 -- Dumping data for table `gameobject_scripts`
1840 LOCK TABLES `gameobject_scripts` WRITE;
1841 /*!40000 ALTER TABLE `gameobject_scripts` DISABLE KEYS */;
1842 /*!40000 ALTER TABLE `gameobject_scripts` ENABLE KEYS */;
1843 UNLOCK TABLES;
1846 -- Table structure for table `gameobject_template`
1849 DROP TABLE IF EXISTS `gameobject_template`;
1850 CREATE TABLE `gameobject_template` (
1851   `entry` mediumint(8) unsigned NOT NULL default '0',
1852   `type` tinyint(3) unsigned NOT NULL default '0',
1853   `displayId` mediumint(8) unsigned NOT NULL default '0',
1854   `name` varchar(100) NOT NULL default '',
1855   `IconName` varchar(100) NOT NULL default '',
1856   `castBarCaption` varchar(100) NOT NULL default '',
1857   `unk1` varchar(100) NOT NULL default '',
1858   `faction` smallint(5) unsigned NOT NULL default '0',
1859   `flags` int(10) unsigned NOT NULL default '0',
1860   `size` float NOT NULL default '1',
1861   `questItem1` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1862   `questItem2` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1863   `questItem3` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1864   `questItem4` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1865   `questItem5` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1866   `questItem6` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1867   `data0` int(10) unsigned NOT NULL default '0',
1868   `data1` int(10) unsigned NOT NULL default '0',
1869   `data2` int(10) unsigned NOT NULL default '0',
1870   `data3` int(10) unsigned NOT NULL default '0',
1871   `data4` int(10) unsigned NOT NULL default '0',
1872   `data5` int(10) unsigned NOT NULL default '0',
1873   `data6` int(10) unsigned NOT NULL default '0',
1874   `data7` int(10) unsigned NOT NULL default '0',
1875   `data8` int(10) unsigned NOT NULL default '0',
1876   `data9` int(10) unsigned NOT NULL default '0',
1877   `data10` int(10) unsigned NOT NULL default '0',
1878   `data11` int(10) unsigned NOT NULL default '0',
1879   `data12` int(10) unsigned NOT NULL default '0',
1880   `data13` int(10) unsigned NOT NULL default '0',
1881   `data14` int(10) unsigned NOT NULL default '0',
1882   `data15` int(10) unsigned NOT NULL default '0',
1883   `data16` int(10) unsigned NOT NULL default '0',
1884   `data17` int(10) unsigned NOT NULL default '0',
1885   `data18` int(10) unsigned NOT NULL default '0',
1886   `data19` int(10) unsigned NOT NULL default '0',
1887   `data20` int(10) unsigned NOT NULL default '0',
1888   `data21` int(10) unsigned NOT NULL default '0',
1889   `data22` int(10) unsigned NOT NULL default '0',
1890   `data23` int(10) unsigned NOT NULL default '0',
1891   `ScriptName` varchar(64) NOT NULL default '',
1892   PRIMARY KEY  (`entry`)
1893 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
1896 -- Dumping data for table `gameobject_template`
1899 LOCK TABLES `gameobject_template` WRITE;
1900 /*!40000 ALTER TABLE `gameobject_template` DISABLE KEYS */;
1901 /*!40000 ALTER TABLE `gameobject_template` ENABLE KEYS */;
1902 UNLOCK TABLES;
1905 -- Table structure for table `gossip_menu`
1908 DROP TABLE IF EXISTS gossip_menu;
1909 CREATE TABLE gossip_menu (
1910   entry smallint(6) unsigned NOT NULL default '0',
1911   text_id mediumint(8) unsigned NOT NULL default '0',
1912   cond_1 tinyint(3) unsigned NOT NULL default '0',
1913   cond_1_val_1 mediumint(8) unsigned NOT NULL default '0',
1914   cond_1_val_2 mediumint(8) unsigned NOT NULL default '0',
1915   cond_2 tinyint(3) unsigned NOT NULL default '0',
1916   cond_2_val_1 mediumint(8) unsigned NOT NULL default '0',
1917   cond_2_val_2 mediumint(8) unsigned NOT NULL default '0',
1918   PRIMARY KEY (entry, text_id)
1919 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1922 -- Dumping data for table `gossip_menu`
1925 LOCK TABLES `gossip_menu` WRITE;
1926 /*!40000 ALTER TABLE `gossip_menu` DISABLE KEYS */;
1927 /*!40000 ALTER TABLE `gossip_menu` ENABLE KEYS */;
1928 UNLOCK TABLES;
1931 -- Table structure for table `gossip_menu_option`
1934 DROP TABLE IF EXISTS gossip_menu_option;
1935 CREATE TABLE gossip_menu_option (
1936   menu_id smallint(6) unsigned NOT NULL default '0',
1937   id smallint(6) unsigned NOT NULL default '0',
1938   option_icon mediumint(8) unsigned NOT NULL default '0',
1939   option_text text,
1940   option_id tinyint(3) unsigned NOT NULL default '0',
1941   npc_option_npcflag int(10) unsigned NOT NULL default '0',
1942   action_menu_id mediumint(8) unsigned NOT NULL default '0',
1943   action_poi_id mediumint(8) unsigned NOT NULL default '0',
1944   action_script_id mediumint(8) unsigned NOT NULL default '0',
1945   box_coded tinyint(3) unsigned NOT NULL default '0',
1946   box_money int(11) unsigned NOT NULL default '0',
1947   box_text text,
1948   cond_1 tinyint(3) unsigned NOT NULL default '0',
1949   cond_1_val_1 mediumint(8) unsigned NOT NULL default '0',
1950   cond_1_val_2 mediumint(8) unsigned NOT NULL default '0',
1951   cond_2 tinyint(3) unsigned NOT NULL default '0',
1952   cond_2_val_1 mediumint(8) unsigned NOT NULL default '0',
1953   cond_2_val_2 mediumint(8) unsigned NOT NULL default '0',
1954   cond_3 tinyint(3) unsigned NOT NULL default '0',
1955   cond_3_val_1 mediumint(8) unsigned NOT NULL default '0',
1956   cond_3_val_2 mediumint(8) unsigned NOT NULL default '0',
1957   PRIMARY KEY (menu_id, id)
1958 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1961 -- Dumping data for table `gossip_menu_option`
1964 LOCK TABLES `gossip_menu_option` WRITE;
1965 /*!40000 ALTER TABLE `gossip_menu_option` DISABLE KEYS */;
1966 INSERT INTO gossip_menu_option VALUES
1967 (0,0,0,'GOSSIP_OPTION_QUESTGIVER',2,2,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1968 (0,1,1,'GOSSIP_OPTION_VENDOR',3,128,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1969 (0,2,2,'GOSSIP_OPTION_TAXIVENDOR',4,8192,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1970 (0,3,3,'GOSSIP_OPTION_TRAINER',5,16,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1971 (0,4,4,'GOSSIP_OPTION_SPIRITHEALER',6,16384,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1972 (0,5,4,'GOSSIP_OPTION_SPIRITGUIDE',7,32768,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1973 (0,6,5,'GOSSIP_OPTION_INNKEEPER',8,65536,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1974 (0,7,6,'GOSSIP_OPTION_BANKER',9,131072,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1975 (0,8,7,'GOSSIP_OPTION_PETITIONER',10,262144,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1976 (0,9,8,'GOSSIP_OPTION_TABARDDESIGNER',11,524288,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1977 (0,10,9,'GOSSIP_OPTION_BATTLEFIELD',12,1048576,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1978 (0,11,6,'GOSSIP_OPTION_AUCTIONEER',13,2097152,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1979 (0,12,0,'GOSSIP_OPTION_STABLEPET',14,4194304,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1980 (0,13,1,'GOSSIP_OPTION_ARMORER',15,4096,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1981 (0,14,2,'GOSSIP_OPTION_UNLEARNTALENTS',16,16,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
1982 (0,15,2,'GOSSIP_OPTION_UNLEARNPETSKILLS',17,16,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0);
1983 /*!40000 ALTER TABLE `gossip_menu_option` ENABLE KEYS */;
1984 UNLOCK TABLES;
1987 -- Table structure for table `gossip_scripts`
1990 DROP TABLE IF EXISTS `gossip_scripts`;
1991 CREATE TABLE `gossip_scripts` (
1992   `id` mediumint(8) unsigned NOT NULL default '0',
1993   `delay` int(10) unsigned NOT NULL default '0',
1994   `command` mediumint(8) unsigned NOT NULL default '0',
1995   `datalong` mediumint(8) unsigned NOT NULL default '0',
1996   `datalong2` int(10) unsigned NOT NULL default '0',
1997   `dataint` int(11) NOT NULL default '0',
1998   `x` float NOT NULL default '0',
1999   `y` float NOT NULL default '0',
2000   `z` float NOT NULL default '0',
2001   `o` float NOT NULL default '0'
2002 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2005 -- Dumping data for table `gossip_scripts`
2008 LOCK TABLES `gossip_scripts` WRITE;
2009 /*!40000 ALTER TABLE `gossip_scripts` DISABLE KEYS */;
2010 /*!40000 ALTER TABLE `gossip_scripts` ENABLE KEYS */;
2011 UNLOCK TABLES;
2014 -- Table structure for table `instance_template`
2017 DROP TABLE IF EXISTS `instance_template`;
2018 CREATE TABLE `instance_template` (
2019   `map` smallint(5) unsigned NOT NULL,
2020   `parent` int(10) unsigned NOT NULL,
2021   `levelMin` tinyint(3) unsigned NOT NULL default '0',
2022   `levelMax` tinyint(3) unsigned NOT NULL default '0',
2023   `startLocX` float default NULL,
2024   `startLocY` float default NULL,
2025   `startLocZ` float default NULL,
2026   `startLocO` float default NULL,
2027   `script` varchar(128) NOT NULL default '',
2028   PRIMARY KEY  (`map`)
2029 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2032 -- Dumping data for table `instance_template`
2035 LOCK TABLES `instance_template` WRITE;
2036 /*!40000 ALTER TABLE `instance_template` DISABLE KEYS */;
2037 /*!40000 ALTER TABLE `instance_template` ENABLE KEYS */;
2038 UNLOCK TABLES;
2041 -- Table structure for table `item_enchantment_template`
2044 DROP TABLE IF EXISTS `item_enchantment_template`;
2045 CREATE TABLE `item_enchantment_template` (
2046   `entry` mediumint(8) unsigned NOT NULL default '0',
2047   `ench` mediumint(8) unsigned NOT NULL default '0',
2048   `chance` float unsigned NOT NULL default '0',
2049   PRIMARY KEY  (`entry`,`ench`)
2050 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System';
2053 -- Dumping data for table `item_enchantment_template`
2056 LOCK TABLES `item_enchantment_template` WRITE;
2057 /*!40000 ALTER TABLE `item_enchantment_template` DISABLE KEYS */;
2058 /*!40000 ALTER TABLE `item_enchantment_template` ENABLE KEYS */;
2059 UNLOCK TABLES;
2062 -- Table structure for table `item_loot_template`
2065 DROP TABLE IF EXISTS `item_loot_template`;
2066 CREATE TABLE `item_loot_template` (
2067   `entry` mediumint(8) unsigned NOT NULL default '0',
2068   `item` mediumint(8) unsigned NOT NULL default '0',
2069   `ChanceOrQuestChance` float NOT NULL default '100',
2070   `groupid` tinyint(3) unsigned NOT NULL default '0',
2071   `mincountOrRef` mediumint(9) NOT NULL default '1',
2072   `maxcount` tinyint(3) unsigned NOT NULL default '1',
2073   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
2074   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
2075   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
2076   PRIMARY KEY  (`entry`,`item`)
2077 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
2080 -- Dumping data for table `item_loot_template`
2083 LOCK TABLES `item_loot_template` WRITE;
2084 /*!40000 ALTER TABLE `item_loot_template` DISABLE KEYS */;
2085 /*!40000 ALTER TABLE `item_loot_template` ENABLE KEYS */;
2086 UNLOCK TABLES;
2089 -- Table structure for table `item_required_target`
2092 DROP TABLE IF EXISTS `item_required_target`;
2093 CREATE TABLE `item_required_target` (
2094   `entry` mediumint(8) unsigned NOT NULL,
2095   `type` tinyint(3) unsigned NOT NULL default '0',
2096   `targetEntry` mediumint(8) unsigned NOT NULL default '0',
2097   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
2098 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
2101 -- Dumping data for table `item_required_target`
2104 LOCK TABLES `item_required_target` WRITE;
2105 /*!40000 ALTER TABLE `item_required_target` DISABLE KEYS */;
2106 /*!40000 ALTER TABLE `item_required_target` ENABLE KEYS */;
2107 UNLOCK TABLES;
2110 -- Table structure for table `item_template`
2113 DROP TABLE IF EXISTS `item_template`;
2114 CREATE TABLE `item_template` (
2115   `entry` mediumint(8) unsigned NOT NULL default '0',
2116   `class` tinyint(3) unsigned NOT NULL default '0',
2117   `subclass` tinyint(3) unsigned NOT NULL default '0',
2118   `unk0` int(11) NOT NULL default '-1',
2119   `name` varchar(255) NOT NULL default '',
2120   `displayid` mediumint(8) unsigned NOT NULL default '0',
2121   `Quality` tinyint(3) unsigned NOT NULL default '0',
2122   `Flags` int(10) unsigned NOT NULL default '0',
2123   `Faction` int(11) UNSIGNED NOT NULL default '0',
2124   `BuyCount` tinyint(3) unsigned NOT NULL default '1',
2125   `BuyPrice` int(10) unsigned NOT NULL default '0',
2126   `SellPrice` int(10) unsigned NOT NULL default '0',
2127   `InventoryType` tinyint(3) unsigned NOT NULL default '0',
2128   `AllowableClass` mediumint(9) NOT NULL default '-1',
2129   `AllowableRace` mediumint(9) NOT NULL default '-1',
2130   `ItemLevel` smallint(5) unsigned NOT NULL default '0',
2131   `RequiredLevel` tinyint(3) unsigned NOT NULL default '0',
2132   `RequiredSkill` smallint(5) unsigned NOT NULL default '0',
2133   `RequiredSkillRank` smallint(5) unsigned NOT NULL default '0',
2134   `requiredspell` mediumint(8) unsigned NOT NULL default '0',
2135   `requiredhonorrank` mediumint(8) unsigned NOT NULL default '0',
2136   `RequiredCityRank` mediumint(8) unsigned NOT NULL default '0',
2137   `RequiredReputationFaction` smallint(5) unsigned NOT NULL default '0',
2138   `RequiredReputationRank` smallint(5) unsigned NOT NULL default '0',
2139   `maxcount` smallint(5) NOT NULL default '-1',
2140   `stackable` smallint(5) NOT NULL default '1',
2141   `ContainerSlots` tinyint(3) unsigned NOT NULL default '0',
2142   `StatsCount` tinyint(3) unsigned NOT NULL default '0',
2143   `stat_type1` tinyint(3) unsigned NOT NULL default '0',
2144   `stat_value1` smallint(6) NOT NULL default '0',
2145   `stat_type2` tinyint(3) unsigned NOT NULL default '0',
2146   `stat_value2` smallint(6) NOT NULL default '0',
2147   `stat_type3` tinyint(3) unsigned NOT NULL default '0',
2148   `stat_value3` smallint(6) NOT NULL default '0',
2149   `stat_type4` tinyint(3) unsigned NOT NULL default '0',
2150   `stat_value4` smallint(6) NOT NULL default '0',
2151   `stat_type5` tinyint(3) unsigned NOT NULL default '0',
2152   `stat_value5` smallint(6) NOT NULL default '0',
2153   `stat_type6` tinyint(3) unsigned NOT NULL default '0',
2154   `stat_value6` smallint(6) NOT NULL default '0',
2155   `stat_type7` tinyint(3) unsigned NOT NULL default '0',
2156   `stat_value7` smallint(6) NOT NULL default '0',
2157   `stat_type8` tinyint(3) unsigned NOT NULL default '0',
2158   `stat_value8` smallint(6) NOT NULL default '0',
2159   `stat_type9` tinyint(3) unsigned NOT NULL default '0',
2160   `stat_value9` smallint(6) NOT NULL default '0',
2161   `stat_type10` tinyint(3) unsigned NOT NULL default '0',
2162   `stat_value10` smallint(6) NOT NULL default '0',
2163   `ScalingStatDistribution` smallint(6) NOT NULL default '0',
2164   `ScalingStatValue` int(6) unsigned NOT NULL default '0',
2165   `dmg_min1` float NOT NULL default '0',
2166   `dmg_max1` float NOT NULL default '0',
2167   `dmg_type1` tinyint(3) unsigned NOT NULL default '0',
2168   `dmg_min2` float NOT NULL default '0',
2169   `dmg_max2` float NOT NULL default '0',
2170   `dmg_type2` tinyint(3) unsigned NOT NULL default '0',
2171   `armor` smallint(5) unsigned NOT NULL default '0',
2172   `holy_res` tinyint(3) unsigned NOT NULL default '0',
2173   `fire_res` tinyint(3) unsigned NOT NULL default '0',
2174   `nature_res` tinyint(3) unsigned NOT NULL default '0',
2175   `frost_res` tinyint(3) unsigned NOT NULL default '0',
2176   `shadow_res` tinyint(3) unsigned NOT NULL default '0',
2177   `arcane_res` tinyint(3) unsigned NOT NULL default '0',
2178   `delay` smallint(5) unsigned NOT NULL default '1000',
2179   `ammo_type` tinyint(3) unsigned NOT NULL default '0',
2180   `RangedModRange` float NOT NULL default '0',
2181   `spellid_1` mediumint(8) unsigned NOT NULL default '0',
2182   `spelltrigger_1` tinyint(3) unsigned NOT NULL default '0',
2183   `spellcharges_1` tinyint(4) NOT NULL default '0',
2184   `spellppmRate_1` float NOT NULL default '0',
2185   `spellcooldown_1` int(11) NOT NULL default '-1',
2186   `spellcategory_1` smallint(5) unsigned NOT NULL default '0',
2187   `spellcategorycooldown_1` int(11) NOT NULL default '-1',
2188   `spellid_2` mediumint(8) unsigned NOT NULL default '0',
2189   `spelltrigger_2` tinyint(3) unsigned NOT NULL default '0',
2190   `spellcharges_2` tinyint(4) NOT NULL default '0',
2191   `spellppmRate_2` float NOT NULL default '0',
2192   `spellcooldown_2` int(11) NOT NULL default '-1',
2193   `spellcategory_2` smallint(5) unsigned NOT NULL default '0',
2194   `spellcategorycooldown_2` int(11) NOT NULL default '-1',
2195   `spellid_3` mediumint(8) unsigned NOT NULL default '0',
2196   `spelltrigger_3` tinyint(3) unsigned NOT NULL default '0',
2197   `spellcharges_3` tinyint(4) NOT NULL default '0',
2198   `spellppmRate_3` float NOT NULL default '0',
2199   `spellcooldown_3` int(11) NOT NULL default '-1',
2200   `spellcategory_3` smallint(5) unsigned NOT NULL default '0',
2201   `spellcategorycooldown_3` int(11) NOT NULL default '-1',
2202   `spellid_4` mediumint(8) unsigned NOT NULL default '0',
2203   `spelltrigger_4` tinyint(3) unsigned NOT NULL default '0',
2204   `spellcharges_4` tinyint(4) NOT NULL default '0',
2205   `spellppmRate_4` float NOT NULL default '0',
2206   `spellcooldown_4` int(11) NOT NULL default '-1',
2207   `spellcategory_4` smallint(5) unsigned NOT NULL default '0',
2208   `spellcategorycooldown_4` int(11) NOT NULL default '-1',
2209   `spellid_5` mediumint(8) unsigned NOT NULL default '0',
2210   `spelltrigger_5` tinyint(3) unsigned NOT NULL default '0',
2211   `spellcharges_5` tinyint(4) NOT NULL default '0',
2212   `spellppmRate_5` float NOT NULL default '0',
2213   `spellcooldown_5` int(11) NOT NULL default '-1',
2214   `spellcategory_5` smallint(5) unsigned NOT NULL default '0',
2215   `spellcategorycooldown_5` int(11) NOT NULL default '-1',
2216   `bonding` tinyint(3) unsigned NOT NULL default '0',
2217   `description` varchar(255) NOT NULL default '',
2218   `PageText` mediumint(8) unsigned NOT NULL default '0',
2219   `LanguageID` tinyint(3) unsigned NOT NULL default '0',
2220   `PageMaterial` tinyint(3) unsigned NOT NULL default '0',
2221   `startquest` mediumint(8) unsigned NOT NULL default '0',
2222   `lockid` mediumint(8) unsigned NOT NULL default '0',
2223   `Material` tinyint(4) NOT NULL default '0',
2224   `sheath` tinyint(3) unsigned NOT NULL default '0',
2225   `RandomProperty` mediumint(8) unsigned NOT NULL default '0',
2226   `RandomSuffix` mediumint(8) unsigned NOT NULL default '0',
2227   `block` mediumint(8) unsigned NOT NULL default '0',
2228   `itemset` mediumint(8) unsigned NOT NULL default '0',
2229   `MaxDurability` smallint(5) unsigned NOT NULL default '0',
2230   `area` mediumint(8) unsigned NOT NULL default '0',
2231   `Map` smallint(6) NOT NULL default '0',
2232   `BagFamily` mediumint(9) NOT NULL default '0',
2233   `TotemCategory` mediumint(9) NOT NULL default '0',
2234   `socketColor_1` tinyint(4) NOT NULL default '0',
2235   `socketContent_1` mediumint(9) NOT NULL default '0',
2236   `socketColor_2` tinyint(4) NOT NULL default '0',
2237   `socketContent_2` mediumint(9) NOT NULL default '0',
2238   `socketColor_3` tinyint(4) NOT NULL default '0',
2239   `socketContent_3` mediumint(9) NOT NULL default '0',
2240   `socketBonus` mediumint(9) NOT NULL default '0',
2241   `GemProperties` mediumint(9) NOT NULL default '0',
2242   `RequiredDisenchantSkill` smallint(6) NOT NULL default '-1',
2243   `ArmorDamageModifier` float NOT NULL default '0',
2244   `Duration` int(11) NOT NULL default '0' COMMENT 'Duration in seconds. Negative value means realtime, postive value ingame time',
2245   `ItemLimitCategory` smallint(6) NOT NULL default '0',
2246   `HolidayId` int(11) UNSIGNED DEFAULT '0' NOT NULL,
2247   `ScriptName` varchar(64) NOT NULL default '',
2248   `DisenchantID` mediumint(8) unsigned NOT NULL default '0',
2249   `FoodType` tinyint(3) unsigned NOT NULL default '0',
2250   `minMoneyLoot` int(10) unsigned NOT NULL default '0',
2251   `maxMoneyLoot` int(10) unsigned NOT NULL default '0',
2252   PRIMARY KEY  (`entry`),
2253   KEY `items_index` (`class`)
2254 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
2257 -- Dumping data for table `item_template`
2260 LOCK TABLES `item_template` WRITE;
2261 /*!40000 ALTER TABLE `item_template` DISABLE KEYS */;
2262 INSERT INTO `item_template` VALUES
2263 (25,2,7,-1,'Worn Shortsword',1542,1,0,0,1,35,7,21,32767,511,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,1,0,0,0,1,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2264 (35,2,10,-1,'Bent Staff',472,1,0,0,1,47,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,2,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2265 (36,2,4,-1,'Worn Mace',5194,1,0,0,1,38,7,21,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2266 (37,2,0,-1,'Worn Axe',14029,1,0,0,1,38,7,21,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2267 (38,4,0,-1,'Recruit\'s Shirt',9891,1,0,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2268 (39,4,1,-1,'Recruit\'s Pants',9892,0,0,0,1,5,1,7,32767,511,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2269 (40,4,0,-1,'Recruit\'s Boots',10141,1,0,0,1,4,1,8,32767,511,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2270 (43,4,0,-1,'Squire\'s Boots',9938,1,0,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2271 (44,4,1,-1,'Squire\'s Pants',9937,0,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2272 (45,4,0,-1,'Squire\'s Shirt',3265,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2273 (47,4,0,-1,'Footpad\'s Shoes',9915,1,0,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2274 (48,4,1,-1,'Footpad\'s Pants',9913,0,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2275 (49,4,0,-1,'Footpad\'s Shirt',9906,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2276 (51,4,0,-1,'Neophyte\'s Boots',9946,1,0,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2277 (52,4,1,-1,'Neophyte\'s Pants',9945,0,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2278 (53,4,0,-1,'Neophyte\'s Shirt',9944,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2279 (55,4,0,-1,'Apprentice\'s Boots',9929,1,0,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2280 (56,4,1,-1,'Apprentice\'s Robe',12647,0,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2281 (57,4,1,-1,'Acolyte\'s Robe',12645,0,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2282 (59,4,0,-1,'Acolyte\'s Shoes',3261,1,0,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2283 (117,0,0,-1,'Tough Jerky',2473,1,0,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2284 (120,4,1,-1,'Thug Pants',10006,0,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2285 (121,4,0,-1,'Thug Boots',10008,1,0,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2286 (127,4,0,-1,'Trapper\'s Shirt',9996,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2287 (139,4,1,-1,'Brawler\'s Pants',9988,0,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2288 (140,4,0,-1,'Brawler\'s Boots',9992,1,0,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2289 (147,4,1,-1,'Rugged Trapper\'s Pants',9975,0,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2290 (148,4,0,-1,'Rugged Trapper\'s Shirt',9976,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2291 (153,4,2,-1,'Primitive Kilt',10050,0,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,8,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2292 (154,4,0,-1,'Primitive Mantle',10058,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2293 (159,0,0,-1,'Refreshing Spring Water',18084,1,0,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,430,0,-1,0,-1,59,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2294 (1395,4,1,-1,'Apprentice\'s Pants',9924,0,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2295 (1396,4,1,-1,'Acolyte\'s Pants',3260,0,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2296 (2070,0,0,-1,'Darnassian Bleu',6353,1,0,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2297 (2092,2,15,-1,'Worn Dagger',6442,1,0,0,1,35,7,13,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1600,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,3,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2298 (2101,11,2,-1,'Light Quiver',21328,1,0,0,1,4,1,18,2047,255,1,1,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,14824,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2299 (2102,11,3,-1,'Small Ammo Pouch',1816,1,0,0,1,4,1,18,2047,255,1,1,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,14824,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2300 (2105,4,0,-1,'Thug Shirt',10005,1,0,0,1,5,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2301 (2361,2,5,-1,'Battleworn Hammer',8690,1,0,0,1,45,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,1,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2302 (2362,4,6,-1,'Worn Wooden Shield',18730,0,0,0,1,7,1,14,32767,511,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,4,0,0,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2303 (2504,2,2,-1,'Worn Shortbow',8106,1,0,0,1,29,5,15,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,2300,2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2304 (2508,2,3,-1,'Old Blunderbuss',6606,1,0,0,1,27,5,26,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,2300,3,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2305 (2512,6,2,-1,'Rough Arrow',5996,1,0,0,1,10,0,24,2047,255,5,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,3000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2306 (2516,6,3,-1,'Light Shot',5998,1,0,0,1,10,0,24,2047,255,5,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,3000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2307 (2947,15,0,-1,'Small Throwing Knife',16754,1,0,0,1,15,0,0,2047,255,3,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2000,4,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2308 (3661,2,10,-1,'Handcrafted Staff',18530,1,0,0,1,45,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,2,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2309 (4536,0,0,-1,'Shiny Red Apple',6410,1,0,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2310 (4540,0,0,-1,'Tough Hunk of Bread',6399,1,0,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2311 (4604,0,0,-1,'Forest Mushroom Cap',15852,1,0,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2312 (6096,4,0,-1,'Apprentice\'s Shirt',2163,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2313 (6097,4,0,-1,'Acolyte\'s Shirt',2470,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2314 (6098,4,1,-1,'Neophyte\'s Robe',12679,0,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2315 (6119,4,1,-1,'Neophyte\'s Robe',12681,0,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2316 (6123,4,1,-1,'Novice\'s Robe',12683,0,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2317 (6124,4,1,-1,'Novice\'s Pants',9987,0,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2318 (6125,4,0,-1,'Brawler\'s Harness',9995,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2319 (6126,4,1,-1,'Trapper\'s Pants',10002,0,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2320 (6127,4,0,-1,'Trapper\'s Boots',10003,1,0,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2321 (6129,4,1,-1,'Acolyte\'s Robe',12646,0,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2322 (6134,4,0,-1,'Primitive Mantle',10108,1,0,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2323 (6135,4,2,-1,'Primitive Kilt',10109,0,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,8,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2324 (6139,4,1,-1,'Novice\'s Robe',12684,0,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2325 (6140,4,1,-1,'Apprentice\'s Robe',12649,0,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2326 (6144,4,1,-1,'Neophyte\'s Robe',12680,0,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2327 (6948,15,0,-1,'Hearthstone',6418,1,64,0,1,0,0,0,32767,511,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8690,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2328 (12282,2,1,-1,'Worn Battleaxe',22291,1,0,0,1,43,8,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,1,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2329 (14646,12,0,-1,'Northshire Gift Voucher',18499,1,0,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5805,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2330 (14647,12,0,-1,'Coldridge Valley Gift Voucher',18499,1,0,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5841,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2331 (14648,12,0,-1,'Shadowglen Gift Voucher',18499,1,0,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5842,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2332 (14649,12,0,-1,'Valley of Trials Gift Voucher',18499,1,0,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5843,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2333 (14650,12,0,-1,'Camp Narache Gift Voucher',18499,1,0,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5844,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2334 (14651,12,0,-1,'Deathknell Gift Voucher',18499,1,0,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5847,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2335 (25861,2,16,-1,'Crude Throwing Axe',20777,1,0,0,1,15,0,25,2047,255,3,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2000,4,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2336 (34648,4,4,-1,'Acherus Knight\'s Greaves',51496,2,32768,0,1,51,10,8,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,10,7,12,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2337 (34649,4,4,-1,'Acherus Knight\'s Gauntlets',51498,2,32768,0,1,34,6,10,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,15,7,6,32,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2338 (34650,4,4,-1,'Acherus Knight\'s Tunic',51494,2,32768,0,1,69,13,5,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,20,7,11,32,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2339 (34651,4,4,-1,'Acherus Knight\'s Girdle',51497,2,32768,0,1,35,7,6,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,2,4,10,32,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2340 (34652,4,4,-1,'Acherus Knight\'s Hood',51495,2,32768,0,1,52,10,1,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,15,7,15,32,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2341 (34653,4,4,-1,'Acherus Knight\'s Wristguard',51500,2,32768,0,1,36,7,9,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,7,31,7,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2342 (34655,4,4,-1,'Acherus Knight\'s Pauldrons',51501,2,32768,0,1,54,10,3,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,9,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2343 (34656,4,4,-1,'Acherus Knight\'s Cover',51499,2,32768,0,1,73,14,7,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,13,3,10,7,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2344 (34657,4,0,-1,'Choker of Damnation',6539,2,32768,0,1,2303,575,2,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,9,7,8,31,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2345 (34658,4,0,-1,'Plague Band',963,2,32768,0,1,534,133,11,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,6,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2346 (34659,4,1,-1,'Acherus Knight\'s Shroud',49738,2,32768,0,1,31,6,16,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,2,4,12,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2347 (38145,1,0,-1,'Deathweave Bag',1282,1,32768,0,1,0,0,18,-1,-1,35,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2348 (38147,4,0,-1,'Corrupted Band',963,2,32768,0,1,534,133,11,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,6,32,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2349 (41751,0,5,-1,'Black Mushroom',36728,1,0,0,1,100,5,0,-1,-1,65,55,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27094,0,-1,0,0,11,1000,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0);
2350 /*!40000 ALTER TABLE `item_template` ENABLE KEYS */;
2351 UNLOCK TABLES;
2354 -- Table structure for table `locales_achievement_reward`
2357 DROP TABLE IF EXISTS `locales_achievement_reward`;
2358 CREATE TABLE `locales_achievement_reward` (
2359   `entry` mediumint(8) unsigned NOT NULL default '0',
2360   `subject_loc1` varchar(100) NOT NULL default '',
2361   `subject_loc2` varchar(100) NOT NULL default '',
2362   `subject_loc3` varchar(100) NOT NULL default '',
2363   `subject_loc4` varchar(100) NOT NULL default '',
2364   `subject_loc5` varchar(100) NOT NULL default '',
2365   `subject_loc6` varchar(100) NOT NULL default '',
2366   `subject_loc7` varchar(100) NOT NULL default '',
2367   `subject_loc8` varchar(100) NOT NULL default '',
2368   `text_loc1` text default NULL,
2369   `text_loc2` text default NULL,
2370   `text_loc3` text default NULL,
2371   `text_loc4` text default NULL,
2372   `text_loc5` text default NULL,
2373   `text_loc6` text default NULL,
2374   `text_loc7` text default NULL,
2375   `text_loc8` text default NULL,
2376   PRIMARY KEY  (`entry`)
2377 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2380 -- Dumping data for table `locales_achievement_reward`
2383 LOCK TABLES `locales_achievement_reward` WRITE;
2384 /*!40000 ALTER TABLE `locales_achievement_reward` DISABLE KEYS */;
2385 /*!40000 ALTER TABLE `locales_achievement_reward` ENABLE KEYS */;
2386 UNLOCK TABLES;
2389 -- Table structure for table `locales_creature`
2392 DROP TABLE IF EXISTS `locales_creature`;
2393 CREATE TABLE `locales_creature` (
2394   `entry` mediumint(8) unsigned NOT NULL default '0',
2395   `name_loc1` varchar(100) NOT NULL default '',
2396   `name_loc2` varchar(100) NOT NULL default '',
2397   `name_loc3` varchar(100) NOT NULL default '',
2398   `name_loc4` varchar(100) NOT NULL default '',
2399   `name_loc5` varchar(100) NOT NULL default '',
2400   `name_loc6` varchar(100) NOT NULL default '',
2401   `name_loc7` varchar(100) NOT NULL default '',
2402   `name_loc8` varchar(100) NOT NULL default '',
2403   `subname_loc1` varchar(100) default NULL,
2404   `subname_loc2` varchar(100) default NULL,
2405   `subname_loc3` varchar(100) default NULL,
2406   `subname_loc4` varchar(100) default NULL,
2407   `subname_loc5` varchar(100) default NULL,
2408   `subname_loc6` varchar(100) default NULL,
2409   `subname_loc7` varchar(100) default NULL,
2410   `subname_loc8` varchar(100) default NULL,
2411   PRIMARY KEY  (`entry`)
2412 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2415 -- Dumping data for table `locales_creature`
2418 LOCK TABLES `locales_creature` WRITE;
2419 /*!40000 ALTER TABLE `locales_creature` DISABLE KEYS */;
2420 /*!40000 ALTER TABLE `locales_creature` ENABLE KEYS */;
2421 UNLOCK TABLES;
2424 -- Table structure for table `locales_gameobject`
2427 DROP TABLE IF EXISTS `locales_gameobject`;
2428 CREATE TABLE `locales_gameobject` (
2429   `entry` mediumint(8) unsigned NOT NULL default '0',
2430   `name_loc1` varchar(100) NOT NULL default '',
2431   `name_loc2` varchar(100) NOT NULL default '',
2432   `name_loc3` varchar(100) NOT NULL default '',
2433   `name_loc4` varchar(100) NOT NULL default '',
2434   `name_loc5` varchar(100) NOT NULL default '',
2435   `name_loc6` varchar(100) NOT NULL default '',
2436   `name_loc7` varchar(100) NOT NULL default '',
2437   `name_loc8` varchar(100) NOT NULL default '',
2438   `castbarcaption_loc1` varchar(100) NOT NULL default '',
2439   `castbarcaption_loc2` varchar(100) NOT NULL default '',
2440   `castbarcaption_loc3` varchar(100) NOT NULL default '',
2441   `castbarcaption_loc4` varchar(100) NOT NULL default '',
2442   `castbarcaption_loc5` varchar(100) NOT NULL default '',
2443   `castbarcaption_loc6` varchar(100) NOT NULL default '',
2444   `castbarcaption_loc7` varchar(100) NOT NULL default '',
2445   `castbarcaption_loc8` varchar(100) NOT NULL default '',
2446   PRIMARY KEY  (`entry`)
2447 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2450 -- Dumping data for table `locales_gameobject`
2453 LOCK TABLES `locales_gameobject` WRITE;
2454 /*!40000 ALTER TABLE `locales_gameobject` DISABLE KEYS */;
2455 /*!40000 ALTER TABLE `locales_gameobject` ENABLE KEYS */;
2456 UNLOCK TABLES;
2459 -- Table structure for table `locales_gossip_menu_option`
2462 DROP TABLE IF EXISTS `locales_gossip_menu_option`;
2463 CREATE TABLE `locales_gossip_menu_option` (
2464   `menu_id` smallint(6) unsigned NOT NULL default '0',
2465   `id` smallint(6) unsigned NOT NULL default '0',
2466   `option_text_loc1` text,
2467   `option_text_loc2` text,
2468   `option_text_loc3` text,
2469   `option_text_loc4` text,
2470   `option_text_loc5` text,
2471   `option_text_loc6` text,
2472   `option_text_loc7` text,
2473   `option_text_loc8` text,
2474   `box_text_loc1` text,
2475   `box_text_loc2` text,
2476   `box_text_loc3` text,
2477   `box_text_loc4` text,
2478   `box_text_loc5` text,
2479   `box_text_loc6` text,
2480   `box_text_loc7` text,
2481   `box_text_loc8` text,
2482   PRIMARY KEY  (`menu_id`, `id`)
2483 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2486 -- Dumping data for table `locales_gossip_menu_option`
2489 LOCK TABLES `locales_gossip_menu_option` WRITE;
2490 /*!40000 ALTER TABLE `locales_gossip_menu_option` DISABLE KEYS */;
2491 /*!40000 ALTER TABLE `locales_gossip_menu_option` ENABLE KEYS */;
2492 UNLOCK TABLES;
2495 -- Table structure for table `locales_item`
2498 DROP TABLE IF EXISTS `locales_item`;
2499 CREATE TABLE `locales_item` (
2500   `entry` mediumint(8) unsigned NOT NULL default '0',
2501   `name_loc1` varchar(100) NOT NULL default '',
2502   `name_loc2` varchar(100) NOT NULL default '',
2503   `name_loc3` varchar(100) NOT NULL default '',
2504   `name_loc4` varchar(100) NOT NULL default '',
2505   `name_loc5` varchar(100) NOT NULL default '',
2506   `name_loc6` varchar(100) NOT NULL default '',
2507   `name_loc7` varchar(100) NOT NULL default '',
2508   `name_loc8` varchar(100) NOT NULL default '',
2509   `description_loc1` varchar(255) default NULL,
2510   `description_loc2` varchar(255) default NULL,
2511   `description_loc3` varchar(255) default NULL,
2512   `description_loc4` varchar(255) default NULL,
2513   `description_loc5` varchar(255) default NULL,
2514   `description_loc6` varchar(255) default NULL,
2515   `description_loc7` varchar(255) default NULL,
2516   `description_loc8` varchar(255) default NULL,
2517   PRIMARY KEY  (`entry`)
2518 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2521 -- Dumping data for table `locales_item`
2524 LOCK TABLES `locales_item` WRITE;
2525 /*!40000 ALTER TABLE `locales_item` DISABLE KEYS */;
2526 /*!40000 ALTER TABLE `locales_item` ENABLE KEYS */;
2527 UNLOCK TABLES;
2530 -- Table structure for table `locales_npc_text`
2533 DROP TABLE IF EXISTS `locales_npc_text`;
2534 CREATE TABLE `locales_npc_text` (
2535   `entry` mediumint(8) unsigned NOT NULL default '0',
2536   `Text0_0_loc1` longtext,
2537   `Text0_0_loc2` longtext,
2538   `Text0_0_loc3` longtext,
2539   `Text0_0_loc4` longtext,
2540   `Text0_0_loc5` longtext,
2541   `Text0_0_loc6` longtext,
2542   `Text0_0_loc7` longtext,
2543   `Text0_0_loc8` longtext,
2544   `Text0_1_loc1` longtext,
2545   `Text0_1_loc2` longtext,
2546   `Text0_1_loc3` longtext,
2547   `Text0_1_loc4` longtext,
2548   `Text0_1_loc5` longtext,
2549   `Text0_1_loc6` longtext,
2550   `Text0_1_loc7` longtext,
2551   `Text0_1_loc8` longtext,
2552   `Text1_0_loc1` longtext,
2553   `Text1_0_loc2` longtext,
2554   `Text1_0_loc3` longtext,
2555   `Text1_0_loc4` longtext,
2556   `Text1_0_loc5` longtext,
2557   `Text1_0_loc6` longtext,
2558   `Text1_0_loc7` longtext,
2559   `Text1_0_loc8` longtext,
2560   `Text1_1_loc1` longtext,
2561   `Text1_1_loc2` longtext,
2562   `Text1_1_loc3` longtext,
2563   `Text1_1_loc4` longtext,
2564   `Text1_1_loc5` longtext,
2565   `Text1_1_loc6` longtext,
2566   `Text1_1_loc7` longtext,
2567   `Text1_1_loc8` longtext,
2568   `Text2_0_loc1` longtext,
2569   `Text2_0_loc2` longtext,
2570   `Text2_0_loc3` longtext,
2571   `Text2_0_loc4` longtext,
2572   `Text2_0_loc5` longtext,
2573   `Text2_0_loc6` longtext,
2574   `Text2_0_loc7` longtext,
2575   `Text2_0_loc8` longtext,
2576   `Text2_1_loc1` longtext,
2577   `Text2_1_loc2` longtext,
2578   `Text2_1_loc3` longtext,
2579   `Text2_1_loc4` longtext,
2580   `Text2_1_loc5` longtext,
2581   `Text2_1_loc6` longtext,
2582   `Text2_1_loc7` longtext,
2583   `Text2_1_loc8` longtext,
2584   `Text3_0_loc1` longtext,
2585   `Text3_0_loc2` longtext,
2586   `Text3_0_loc3` longtext,
2587   `Text3_0_loc4` longtext,
2588   `Text3_0_loc5` longtext,
2589   `Text3_0_loc6` longtext,
2590   `Text3_0_loc7` longtext,
2591   `Text3_0_loc8` longtext,
2592   `Text3_1_loc1` longtext,
2593   `Text3_1_loc2` longtext,
2594   `Text3_1_loc3` longtext,
2595   `Text3_1_loc4` longtext,
2596   `Text3_1_loc5` longtext,
2597   `Text3_1_loc6` longtext,
2598   `Text3_1_loc7` longtext,
2599   `Text3_1_loc8` longtext,
2600   `Text4_0_loc1` longtext,
2601   `Text4_0_loc2` longtext,
2602   `Text4_0_loc3` longtext,
2603   `Text4_0_loc4` longtext,
2604   `Text4_0_loc5` longtext,
2605   `Text4_0_loc6` longtext,
2606   `Text4_0_loc7` longtext,
2607   `Text4_0_loc8` longtext,
2608   `Text4_1_loc1` longtext,
2609   `Text4_1_loc2` longtext,
2610   `Text4_1_loc3` longtext,
2611   `Text4_1_loc4` longtext,
2612   `Text4_1_loc5` longtext,
2613   `Text4_1_loc6` longtext,
2614   `Text4_1_loc7` longtext,
2615   `Text4_1_loc8` longtext,
2616   `Text5_0_loc1` longtext,
2617   `Text5_0_loc2` longtext,
2618   `Text5_0_loc3` longtext,
2619   `Text5_0_loc4` longtext,
2620   `Text5_0_loc5` longtext,
2621   `Text5_0_loc6` longtext,
2622   `Text5_0_loc7` longtext,
2623   `Text5_0_loc8` longtext,
2624   `Text5_1_loc1` longtext,
2625   `Text5_1_loc2` longtext,
2626   `Text5_1_loc3` longtext,
2627   `Text5_1_loc4` longtext,
2628   `Text5_1_loc5` longtext,
2629   `Text5_1_loc6` longtext,
2630   `Text5_1_loc7` longtext,
2631   `Text5_1_loc8` longtext,
2632   `Text6_0_loc1` longtext,
2633   `Text6_0_loc2` longtext,
2634   `Text6_0_loc3` longtext,
2635   `Text6_0_loc4` longtext,
2636   `Text6_0_loc5` longtext,
2637   `Text6_0_loc6` longtext,
2638   `Text6_0_loc7` longtext,
2639   `Text6_0_loc8` longtext,
2640   `Text6_1_loc1` longtext,
2641   `Text6_1_loc2` longtext,
2642   `Text6_1_loc3` longtext,
2643   `Text6_1_loc4` longtext,
2644   `Text6_1_loc5` longtext,
2645   `Text6_1_loc6` longtext,
2646   `Text6_1_loc7` longtext,
2647   `Text6_1_loc8` longtext,
2648   `Text7_0_loc1` longtext,
2649   `Text7_0_loc2` longtext,
2650   `Text7_0_loc3` longtext,
2651   `Text7_0_loc4` longtext,
2652   `Text7_0_loc5` longtext,
2653   `Text7_0_loc6` longtext,
2654   `Text7_0_loc7` longtext,
2655   `Text7_0_loc8` longtext,
2656   `Text7_1_loc1` longtext,
2657   `Text7_1_loc2` longtext,
2658   `Text7_1_loc3` longtext,
2659   `Text7_1_loc4` longtext,
2660   `Text7_1_loc5` longtext,
2661   `Text7_1_loc6` longtext,
2662   `Text7_1_loc7` longtext,
2663   `Text7_1_loc8` longtext,
2664   PRIMARY KEY  (`entry`)
2665 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2668 -- Dumping data for table `locales_npc_text`
2671 LOCK TABLES `locales_npc_text` WRITE;
2672 /*!40000 ALTER TABLE `locales_npc_text` DISABLE KEYS */;
2673 /*!40000 ALTER TABLE `locales_npc_text` ENABLE KEYS */;
2674 UNLOCK TABLES;
2677 -- Table structure for table `locales_page_text`
2680 DROP TABLE IF EXISTS `locales_page_text`;
2681 CREATE TABLE `locales_page_text` (
2682   `entry` mediumint(8) unsigned NOT NULL default '0',
2683   `Text_loc1` longtext,
2684   `Text_loc2` longtext,
2685   `Text_loc3` longtext,
2686   `Text_loc4` longtext,
2687   `Text_loc5` longtext,
2688   `Text_loc6` longtext,
2689   `Text_loc7` longtext,
2690   `Text_loc8` longtext,
2691   PRIMARY KEY  (`entry`)
2692 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2695 -- Dumping data for table `locales_page_text`
2698 LOCK TABLES `locales_page_text` WRITE;
2699 /*!40000 ALTER TABLE `locales_page_text` DISABLE KEYS */;
2700 /*!40000 ALTER TABLE `locales_page_text` ENABLE KEYS */;
2701 UNLOCK TABLES;
2704 -- Table structure for table `locales_points_of_interest`
2707 DROP TABLE IF EXISTS `locales_points_of_interest`;
2708 CREATE TABLE `locales_points_of_interest` (
2709   `entry` mediumint(8) unsigned NOT NULL default '0',
2710   `icon_name_loc1` text,
2711   `icon_name_loc2` text,
2712   `icon_name_loc3` text,
2713   `icon_name_loc4` text,
2714   `icon_name_loc5` text,
2715   `icon_name_loc6` text,
2716   `icon_name_loc7` text,
2717   `icon_name_loc8` text,
2718   PRIMARY KEY  (`entry`)
2719 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2722 -- Dumping data for table `locales_points_of_interest`
2725 LOCK TABLES `locales_points_of_interest` WRITE;
2726 /*!40000 ALTER TABLE `locales_points_of_interest` DISABLE KEYS */;
2727 /*!40000 ALTER TABLE `locales_points_of_interest` ENABLE KEYS */;
2728 UNLOCK TABLES;
2731 -- Table structure for table `locales_quest`
2734 DROP TABLE IF EXISTS `locales_quest`;
2735 CREATE TABLE `locales_quest` (
2736   `entry` mediumint(8) unsigned NOT NULL default '0',
2737   `Title_loc1` text,
2738   `Title_loc2` text,
2739   `Title_loc3` text,
2740   `Title_loc4` text,
2741   `Title_loc5` text,
2742   `Title_loc6` text,
2743   `Title_loc7` text,
2744   `Title_loc8` text,
2745   `Details_loc1` text,
2746   `Details_loc2` text,
2747   `Details_loc3` text,
2748   `Details_loc4` text,
2749   `Details_loc5` text,
2750   `Details_loc6` text,
2751   `Details_loc7` text,
2752   `Details_loc8` text,
2753   `Objectives_loc1` text,
2754   `Objectives_loc2` text,
2755   `Objectives_loc3` text,
2756   `Objectives_loc4` text,
2757   `Objectives_loc5` text,
2758   `Objectives_loc6` text,
2759   `Objectives_loc7` text,
2760   `Objectives_loc8` text,
2761   `OfferRewardText_loc1` text,
2762   `OfferRewardText_loc2` text,
2763   `OfferRewardText_loc3` text,
2764   `OfferRewardText_loc4` text,
2765   `OfferRewardText_loc5` text,
2766   `OfferRewardText_loc6` text,
2767   `OfferRewardText_loc7` text,
2768   `OfferRewardText_loc8` text,
2769   `RequestItemsText_loc1` text,
2770   `RequestItemsText_loc2` text,
2771   `RequestItemsText_loc3` text,
2772   `RequestItemsText_loc4` text,
2773   `RequestItemsText_loc5` text,
2774   `RequestItemsText_loc6` text,
2775   `RequestItemsText_loc7` text,
2776   `RequestItemsText_loc8` text,
2777   `EndText_loc1` text,
2778   `EndText_loc2` text,
2779   `EndText_loc3` text,
2780   `EndText_loc4` text,
2781   `EndText_loc5` text,
2782   `EndText_loc6` text,
2783   `EndText_loc7` text,
2784   `EndText_loc8` text,
2785   `ObjectiveText1_loc1` text,
2786   `ObjectiveText1_loc2` text,
2787   `ObjectiveText1_loc3` text,
2788   `ObjectiveText1_loc4` text,
2789   `ObjectiveText1_loc5` text,
2790   `ObjectiveText1_loc6` text,
2791   `ObjectiveText1_loc7` text,
2792   `ObjectiveText1_loc8` text,
2793   `ObjectiveText2_loc1` text,
2794   `ObjectiveText2_loc2` text,
2795   `ObjectiveText2_loc3` text,
2796   `ObjectiveText2_loc4` text,
2797   `ObjectiveText2_loc5` text,
2798   `ObjectiveText2_loc6` text,
2799   `ObjectiveText2_loc7` text,
2800   `ObjectiveText2_loc8` text,
2801   `ObjectiveText3_loc1` text,
2802   `ObjectiveText3_loc2` text,
2803   `ObjectiveText3_loc3` text,
2804   `ObjectiveText3_loc4` text,
2805   `ObjectiveText3_loc5` text,
2806   `ObjectiveText3_loc6` text,
2807   `ObjectiveText3_loc7` text,
2808   `ObjectiveText3_loc8` text,
2809   `ObjectiveText4_loc1` text,
2810   `ObjectiveText4_loc2` text,
2811   `ObjectiveText4_loc3` text,
2812   `ObjectiveText4_loc4` text,
2813   `ObjectiveText4_loc5` text,
2814   `ObjectiveText4_loc6` text,
2815   `ObjectiveText4_loc7` text,
2816   `ObjectiveText4_loc8` text,
2817   PRIMARY KEY  (`entry`)
2818 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2821 -- Dumping data for table `locales_quest`
2824 LOCK TABLES `locales_quest` WRITE;
2825 /*!40000 ALTER TABLE `locales_quest` DISABLE KEYS */;
2826 /*!40000 ALTER TABLE `locales_quest` ENABLE KEYS */;
2827 UNLOCK TABLES;
2830 -- Table structure for table `mail_level_reward`
2833 DROP TABLE IF EXISTS `mail_level_reward`;
2834 CREATE TABLE `mail_level_reward` (
2835   `level` mediumint(8) unsigned NOT NULL default '0',
2836   `raceMask` mediumint(8) unsigned NOT NULL default '0',
2837   `mailTemplateId` mediumint(8) unsigned NOT NULL default '0',
2838   `senderEntry`    mediumint(8) unsigned NOT NULL default '0',
2839   PRIMARY KEY  (`level`,`raceMask`)
2840 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Mail System';
2843 -- Dumping data for table `mail_level_reward`
2846 LOCK TABLES `mail_level_reward` WRITE;
2847 /*!40000 ALTER TABLE `mail_level_reward` DISABLE KEYS */;
2848 /*!40000 ALTER TABLE `mail_level_reward` ENABLE KEYS */;
2849 UNLOCK TABLES;
2852 -- Table structure for table `mail_loot_template`
2855 DROP TABLE IF EXISTS `mail_loot_template`;
2856 CREATE TABLE `mail_loot_template` (
2857   `entry` mediumint(8) unsigned NOT NULL default '0',
2858   `item` mediumint(8) unsigned NOT NULL default '0',
2859   `ChanceOrQuestChance` float NOT NULL default '100',
2860   `groupid` tinyint(3) unsigned NOT NULL default '0',
2861   `mincountOrRef` mediumint(9) NOT NULL default '1',
2862   `maxcount` tinyint(3) unsigned NOT NULL default '1',
2863   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
2864   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
2865   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
2866   PRIMARY KEY  (`entry`,`item`)
2867 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
2870 -- Dumping data for table `mail_loot_template`
2873 LOCK TABLES `mail_loot_template` WRITE;
2874 /*!40000 ALTER TABLE `mail_loot_template` DISABLE KEYS */;
2875 /*!40000 ALTER TABLE `mail_loot_template` ENABLE KEYS */;
2876 UNLOCK TABLES;
2879 -- Table structure for table `mangos_string`
2882 DROP TABLE IF EXISTS `mangos_string`;
2883 CREATE TABLE `mangos_string` (
2884   `entry` mediumint(8) unsigned NOT NULL default '0',
2885   `content_default` text NOT NULL,
2886   `content_loc1` text,
2887   `content_loc2` text,
2888   `content_loc3` text,
2889   `content_loc4` text,
2890   `content_loc5` text,
2891   `content_loc6` text,
2892   `content_loc7` text,
2893   `content_loc8` text,
2894   PRIMARY KEY  (`entry`)
2895 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2898 -- Dumping data for table `mangos_string`
2901 LOCK TABLES `mangos_string` WRITE;
2902 /*!40000 ALTER TABLE `mangos_string` DISABLE KEYS */;
2903 INSERT INTO `mangos_string` VALUES
2904 (1,'You should select a character or a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2905 (2,'You should select a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2906 (3,'|cffff0000[System Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2907 (4,'|cffff0000[Event Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2908 (5,'There is no help for that command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2909 (6,'There is no such command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2910 (7,'There is no such subcommand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2911 (8,'Command %s have subcommands:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2912 (9,'Commands available to you:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2913 (10,'Incorrect syntax.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2914 (11,'Your account level is: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2915 (12,'Online players: %u (max: %u) Queued players: %u (max: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2916 (13,'Server uptime: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2917 (14,'Player saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2918 (15,'All players saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2919 (16,'There are the following active GMs on this server:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2920 (17,'There are no GMs currently logged in on this server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2921 (18,'Cannot do that while flying.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2922 (19,'Cannot do that in Battlegrounds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2923 (20,'Target is flying you can\'t do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2924 (21,'%s is flying command failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2925 (22,'You are not mounted so you can\'t dismount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2926 (23,'Cannot do that while fighting.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2927 (24,'You used it recently.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2928 (25,'Password not changed (unknown error)!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2929 (26,'The password was changed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2930 (27,'The new passwords do not match or the old password is wrong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2931 (28,'Your account is now locked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2932 (29,'Your account is now unlocked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2933 (30,', rank ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2934 (31,' [known]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2935 (32,' [learn]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2936 (33,' [passive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2937 (34,' [talent]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2938 (35,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2939 (36,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2940 (37,' (offline)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2941 (38,'on',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2942 (39,'off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2943 (40,'You are: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2944 (41,'visible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2945 (42,'invisible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2946 (43,'done',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2947 (44,'You',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2948 (45,' <unknown> ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2949 (46,'<error>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2950 (47,'<non-existing character>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2951 (48,'UNKNOWN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2952 (49,'You must be at least level %u to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2953 (50,'You must be at least level %u and have item %s to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2954 (51,'Hello! Ready for some training?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2955 (52,'Invaid item count (%u) for item %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2956 (53,'Mail can\'t have more %u item stacks',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2957 (54,'The new passwords do not match',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2958 (55,'Your password can\'t be longer than 16 characters (client limit), password not changed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2959 (56,'Current Message of the day: \r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2960 (57,'Using World DB: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2961 (58,'Using script library: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2962 (59,'Using creature EventAI: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2963 (60,'I\'m busy right now, come back later.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2964 (61,'Username: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2965 (62,'Password: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2966 (100,'Global notify: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2967 (101,'Map: %u (%s) Zone: %u (%s) Area: %u (%s) Phase: %u\nX: %f Y: %f Z: %f Orientation: %f\ngrid[%u,%u]cell[%u,%u] InstanceID: %u\n ZoneX: %f ZoneY: %f\nGroundZ: %f FloorZ: %f Have height data (Map: %u VMap: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2968 (102,'%s is already being teleported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2969 (103,'You can summon a player to your instance only if he is in your party with you as leader.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2970 (104,'You cannot go to the player\'s instance because you are in a party now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2971 (105,'You can go to the player\'s instance while not being in his party only if your GM mode is on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2972 (106,'You can not go to player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2973 (107,'You can not summon player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2974 (108,'You are summoning %s%s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2975 (109,'You are being summoned by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2976 (110,'You are teleporting %s%s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2977 (111,'You are being teleported by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2978 (112,'Player (%s) does not exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2979 (113,'Appearing at %s\'s location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2980 (114,'%s is appearing to your location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2981 (115,'Incorrect values.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2982 (116,'No character selected.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2983 (117,'%s is not in a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2984 (118,'You changed HP of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2985 (119,'%s changed your HP to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2986 (120,'You changed MANA of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2987 (121,'%s changed your MANA to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2988 (122,'You changed ENERGY of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2989 (123,'%s changed your ENERGY to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2990 (124,'Current energy: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2991 (125,'You changed rage of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2992 (126,'%s changed your rage to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2993 (127,'You changed level of %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2994 (128,'GUID %i, faction is %i, flags is %i, npcflag is %i, DY flag is %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2995 (129,'Wrong faction: %u (not found in factiontemplate.dbc).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2996 (130,'You changed GUID=%i \'s Faction to %i, flags to %i, npcflag to %i, dyflag to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2997 (131,'You changed the spellflatid=%i, val= %i, mark =%i to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2998 (132,'%s changed your spellflatid=%i, val= %i, mark =%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2999 (133,'%s has access to all taxi nodes now (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3000 (134,'%s has no more access to all taxi nodes now (only visited accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3001 (135,'%s has given you access to all taxi nodes (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3002 (136,'%s has removed access to all taxi nodes (only visited still accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3003 (137,'You set all speeds to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3004 (138,'%s set all your speeds to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3005 (139,'You set the speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3006 (140,'%s set your speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3007 (141,'You set the swim speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3008 (142,'%s set your swim speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3009 (143,'You set the backwards run speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3010 (144,'%s set your backwards run speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3011 (145,'You set the fly speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3012 (146,'%s set your fly speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3013 (147,'You set the size %2.2f of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3014 (148,'%s set your size to %2.2f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3015 (149,'There is no such mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3016 (150,'You give a mount to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3017 (151,'%s gave you a mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3018 (152,'USER1: %i, ADD: %i, DIF: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3019 (153,'You take all copper of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3020 (154,'%s took you all of your copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3021 (155,'You take %i copper from %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3022 (156,'%s took %i copper from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3023 (157,'You give %i copper to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3024 (158,'%s gave you %i copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3025 (159,'You hear sound %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3026 (160,'USER2: %i, ADD: %i, RESULT: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3027 (161,'Removed bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3028 (162,'Set bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3029 (163,'Teleport location table is empty!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3030 (164,'Teleport location not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3031 (165,'Requires search parameter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3032 (166,'There are no teleport locations matching your request.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3033 (168,'Locations found are:\n %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3034 (169,'Mail sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3035 (170,'You try to hear sound %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3036 (171,'You can\'t teleport self to self!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3037 (172,'server console command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3038 (173,'You changed runic power of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3039 (174,'%s changed your runic power to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3040 (175,'Liquid level: %f, ground: %f, type: %d, status: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3041 (200,'No selection.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3042 (201,'Object GUID is: lowpart %u highpart %X',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3043 (202,'The name was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3044 (203,'Error, name can only contain characters A-Z and a-z.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3045 (204,'The subname was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3046 (205,'Not yet implemented',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3047 (206,'Item \'%i\' \'%s\' added to list with maxcount \'%i\' and incrtime \'%i\' and extendedcost \'%i\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3048 (207,'Item \'%i\' not found in database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3049 (208,'Item \'%i\' \'%s\' deleted from vendor list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3050 (209,'Item \'%i\' not found in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3051 (210,'Item \'%i\' already in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3052 (211,'Spells of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3053 (212,'Spells of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3054 (213,'Talents of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3055 (214,'Talents of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3056 (215,'Your spells have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3057 (216,'Your talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3058 (217,'Unknown case \'%s\' for .resetall command. Type full correct case name.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3059 (218,'Spells will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3060 (219,'Talents will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3061 (220,'Creature (GUID: %u) No waypoint found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3062 (221,'Creature (GUID: %u) Last waypoint not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3063 (222,'Creature (GUID: %u) No waypoint found - used \'wpguid\'. Now trying to find it by its position...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3064 (223,'Creature (GUID: %u) No waypoints found - This is a MaNGOS db problem (single float).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3065 (224,'Selected creature is ignored - provided GUID is used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3066 (225,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3067 (226,'You must select a visual waypoint.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3068 (227,'No visual waypoints found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3069 (228,'Could not create visual waypoint with creatureID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3070 (229,'All visual waypoints removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3071 (230,'Could not create waypoint-creature with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3072 (231,'No GUID provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3073 (232,'No waypoint number provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3074 (233,'Argument required for \'%s\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3075 (234,'Waypoint %i added to GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3076 (235,'Waypoint %d added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3077 (236,'Waypoint changed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3078 (237,'Waypoint %s modified.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3079 (238,'WP export successfull.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3080 (239,'No waypoints found inside the database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3081 (240,'File imported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3082 (241,'Waypoint removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3083 (242,'Warning: Could not delete WP from the world with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3084 (243,'This happens if the waypoint is too far away from your char.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3085 (244,'The WP is deleted from the database, but not from the world here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3086 (245,'They will disappear after a server restart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3087 (246,'Waypoint %d: Info for creature: %s, GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3088 (247,'Waittime: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3089 (248,'Model %d: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3090 (249,'Emote: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3091 (250,'Spell: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3092 (251,'Text%d (ID: %i): %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3093 (252,'AIScript: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3094 (253,'Forced rename for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3095 (254,'Forced rename for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3096 (255,'Waypoint-Creature (GUID: %u) Not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3097 (256,'Could not find NPC...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3098 (257,'Creature movement type set to \'%s\', waypoints removed (if any).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3099 (258,'Creature movement type set to \'%s\', waypoints were not removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3100 (259,'Incorrect value, use on or off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3101 (260,'Value saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3102 (261,'Value saved, you may need to rejoin or clean your client cache.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3103 (262,'Areatrigger ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3104 (263,'Target map or coordinates is invalid (X: %f Y: %f MapId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3105 (264,'Zone coordinates is invalid (X: %f Y: %f AreaId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3106 (265,'Zone %u (%s) is part of instanceable map %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3107 (266,'Nothing found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3108 (267,'Object not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3109 (268,'Creature not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3110 (269,'Warning: Mob found more than once - you will be teleported to the first one found in DB.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3111 (270,'Creature Removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3112 (271,'Creature moved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3113 (272,'Creature (GUID:%u) must be on the same map as player!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3114 (273,'Game Object (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3115 (274,'Game Object (GUID: %u) has references in not found creature %u GO list, can\'t be deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3116 (275,'Game Object (GUID: %u) removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3117 (276,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) turned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3118 (277,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) moved',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3119 (278,'You must select a vendor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3120 (279,'You must send id for item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3121 (280,'Vendor has too many items (max 128)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3122 (281,'You can\'t kick self, logout instead',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3123 (282,'Player %s kicked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3124 (284,'Accepting Whisper: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3125 (285,'Accepting Whisper: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3126 (286,'Accepting Whisper: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3127 (287,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3128 (288,'Tickets count: %i show new tickets: %s\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3129 (289,'New ticket from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3130 (290,'Ticket of %s (Last updated: %s):\n%s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3131 (291,'New ticket show: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3132 (292,'New ticket show: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3133 (293,'Ticket %i doesn\'t exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3134 (294,'All tickets deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3135 (295,'Character %s ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3136 (296,'Ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3137 (297,'Spawn distance changed to: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3138 (298,'Spawn time changed to: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3139 (299,'The honor of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3140 (300,'Your chat has been disabled for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3141 (301,'You have disabled %s\'s chat for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3142 (302,'Player\'s chat is already enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3143 (303,'Your chat has been enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3144 (304,'You have enabled %s\'s chat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3145 (305, 'Faction %s (%u) reputation of %s was set to %5d!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3146 (306, 'The arena points of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3147 (307, 'No faction found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3148 (308, 'Faction %i unknown!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3149 (309, 'Invalid parameter %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3150 (310, 'delta must be between 0 and %d (inclusive)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3151 (311, '%d - |cffffffff|Hfaction:%d|h[%s]|h|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3152 (312, ' [visible]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3153 (313, ' [at war]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3154 (314, ' [peace forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3155 (315, ' [hidden]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3156 (316, ' [invisible forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3157 (317, ' [inactive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3158 (318, 'Hated',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3159 (319, 'Hostile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3160 (320, 'Unfriendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3161 (321, 'Neutral',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3162 (322, 'Friendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3163 (323, 'Honored',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3164 (324, 'Revered',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3165 (325, 'Exalted',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3166 (326, 'Faction %s (%u) can\'not have reputation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3167 (327, ' [no reputation]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3168 (328,'Characters at account %s (Id: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3169 (329,'  %s (GUID %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3170 (330,'No players found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3171 (331,'Extended item cost %u not exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3172 (332,'GM mode is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3173 (333,'GM mode is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3174 (334,'GM Chat Badge is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3175 (335,'GM Chat Badge is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3176 (336,'You repair all %s''s items.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3177 (337,'All your items repaired by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3178 (338,'You set waterwalk mode %s for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3179 (339,'Your waterwalk mode %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3180 (340,'%s is now following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3181 (341,'%s is not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3182 (342,'%s is now not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3183 (343,'Creature (Entry: %u) cannot be tamed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3184 (344,'You already have pet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3185 (345,'Forced customize for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3186 (346,'Forced customize for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3187 (347,'TaxiNode ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3188 (348,'Game Object (Entry: %u) have invalid data and can\'t be spawned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3189 (349,'%d (idx:%d) - |cffffffff|Htitle:%d|h[%s %s]|h|r %s %s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3190 (350,'%d (idx:%d) - [%s %s] %s %s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3191 (351,'No titles found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3192 (352,'Invalid title id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3193 (353,'Title %u (%s) added to known titles list for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3194 (354,'Title %u (%s) removed from known titles list for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3195 (355,'Title %u (%s) set as current selected title for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3196 (356,'Current selected title for player %s reset as not known now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3197 (400,'|cffff0000[System Message]:|rScripts reloaded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3198 (401,'You change security level of account %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3199 (402,'%s changed your security level to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3200 (403,'You have low security level for this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3201 (404,'Creature movement disabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3202 (405,'Creature movement enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3203 (406,'Weather can\'t be changed for this zone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3204 (407,'Weather system disabled at server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3205 (408,'%s is banned for %s. Reason: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3206 (409,'%s is banned permanently for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3207 (410,'%s %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3208 (411,'%s unbanned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3209 (412,'There was an error removing the ban on %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3210 (413,'Account not exist: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3211 (414,'There is no such character.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3212 (415,'There is no such IP in banlist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3213 (416,'Account %s has never been banned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3214 (417,'Ban history for account %s:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3215 (418,'Ban Date: %s Bantime: %s Still active: %s  Reason: %s Set by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3216 (419,'Inf.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3217 (420,'Never',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3218 (421,'Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3219 (422,'No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3220 (423,'IP: %s\nBan Date: %s\nUnban Date: %s\nRemaining: %s\nReason: %s\nSet by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3221 (424,'There is no matching IPban.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3222 (425,'There is no matching account.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3223 (426,'There is no banned account owning a character matching this part.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3224 (427,'The following IPs match your pattern:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3225 (428,'The following accounts match your query:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3226 (429,'You learned many spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3227 (430,'You learned all spells for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3228 (431,'You learned all talents for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3229 (432,'You learned all languages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3230 (433,'You learned all craft skills and recipes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3231 (434,'Could not find \'%s\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3232 (435,'Invalid item id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3233 (436,'No items found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3234 (437,'Invalid gameobject id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3235 (438,'Found items %u: %u ( inventory %u mail %u auction %u guild %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3236 (439,'Found gameobjects %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3237 (440,'Invalid creature id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3238 (441,'Found creatures %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3239 (442,'No area found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3240 (443,'No item sets found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3241 (444,'No skills found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3242 (445,'No spells found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3243 (446,'No quests found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3244 (447,'No creatures found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3245 (448,'No gameobjects found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3246 (449,'Graveyard #%u doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3247 (450,'Graveyard #%u already linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3248 (451,'Graveyard #%u linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3249 (452,'Graveyard #%u can\'t be linked to subzone or not existed zone #%u (internal error).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3250 (454,'No faction in Graveyard with id= #%u , fix your DB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3251 (455,'invalid team, please fix database',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3252 (456,'any',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3253 (457,'alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3254 (458,'horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3255 (459,'Graveyard #%u (faction: %s) is nearest from linked to zone #%u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3256 (460,'Zone #%u doesn\'t have linked graveyards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3257 (461,'Zone #%u doesn\'t have linked graveyards for faction: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3258 (462,'Teleport location already exists!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3259 (463,'Teleport location added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3260 (464,'Teleport location NOT added: database error.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3261 (465,'Teleport location deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3262 (466,'No taxinodes found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3263 (467,'Target unit has %d auras:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3264 (468,'id: %d eff: %d type: %d duration: %d maxduration: %d name: %s%s%s caster: %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3265 (469,'Target unit has %d auras of type %d:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3266 (470,'id: %d eff: %d name: %s%s%s caster: %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3267 (471,'Quest %u not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3268 (472,'Quest %u started from item. For correct work, please, add item to inventory and start quest in normal way: .additem %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3269 (473,'Quest removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3270 (474,' [rewarded]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3271 (475,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3272 (476,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3273 (477,'%s\'s Fly Mode %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3274 (478,'Opcode %u sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3275 (479,'Character loaded successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3276 (480,'Failed to load the character!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3277 (481,'Character dumped successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3278 (482,'Character dump failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3279 (483,'Spell %u broken and not allowed to cast or learn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3280 (484,'Skill %u (%s) for player %s set to %u and current maximum set to %u (without permanent (talent) bonuses).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3281 (485,'Player %s must have skill %u (%s) before using this command.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3282 (486,'Invalid skill id (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3283 (487,'You learned default GM spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3284 (488,'You already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3285 (489,'Target(%s) already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3286 (490,'%s doesn\'t know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3287 (491,'You already forgot that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3288 (492,'All spell cooldowns removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3289 (493,'Spell %u cooldown removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3290 (494,'Command : Additem, itemId = %i, amount = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3291 (495,'Command : Additemset, itemsetId = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3292 (496,'Removed itemID = %i, amount = %i from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3293 (497,'Cannot create item \'%i\' (amount: %i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3294 (498,'You need to provide a guild name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3295 (499,'Player not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3296 (500,'Player already has a guild!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3297 (501,'Guild not created! (already exists?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3298 (502,'No items from itemset \'%u\' found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3299 (503,'The distance is: (3D) %f (2D) %f yards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3300 (504,'Item \'%i\' \'%s\' Item Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3301 (505,'Item \'%i\' doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3302 (506,'Item \'%i\' \'%s\' Added to Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3303 (507,'Item save failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3304 (508,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3305 (509,'%d - sender: %s (guid: %u account: %u ) receiver: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3306 (510,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3307 (511,'Wrong link type!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3308 (512,'%d - |cffffffff|Hitem:%d:0:0:0:0:0:0:0:0|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3309 (513,'%d - |cffffffff|Hquest:%d:%d|h[%s]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3310 (514,'%d - |cffffffff|Hcreature_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3311 (515,'%d - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3312 (516,'%d - |cffffffff|Hgameobject_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3313 (517,'%d - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3314 (518,'%d - |cffffffff|Hitemset:%d|h[%s %s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3315 (519,'|cffffffff|Htele:%s|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3316 (520,'%d - |cffffffff|Hspell:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3317 (521,'%d - |cffffffff|Hskill:%d|h[%s %s]|h|r %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3318 (522,'Game Object (Entry: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3319 (523,'>> Game Object %s (GUID: %u) at %f %f %f. Orientation %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3320 (524,'Selected object:\n|cffffffff|Hgameobject:%d|h[%s]|h|r GUID: %u ID: %u\nX: %f Y: %f Z: %f MapId: %u\nOrientation: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3321 (525,'>> Add Game Object \'%i\' (%s) (GUID: %i) added at \'%f %f %f\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3322 (526,'%s (lowguid: %u) movement generators stack:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3323 (527,'   Idle',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3324 (528,'   Random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3325 (529,'   Waypoint',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3326 (530,'   Animal random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3327 (531,'   Confused',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3328 (532,'   Targeted to player %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3329 (533,'   Targeted to creature %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3330 (534,'   Targeted to <NULL>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3331 (535,'   Home movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3332 (536,'   Home movement used for player?!?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3333 (537,'   Taxi flight',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3334 (538,'   Unknown movement generator (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3335 (539,'Player selected NPC\nGUID: %u.\nFaction: %u.\nnpcFlags: %u.\nEntry: %u.\nDisplayID: %u (Native: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3336 (540,'Level: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3337 (541,'Health (base): %u. (max): %u. (current): %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3338 (542,'Unit Flags: %u.\nDynamic Flags: %u.\nFaction Template: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3339 (543,'Loot: %u Pickpocket: %u Skinning: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3340 (544,'Position: %f %f %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3341 (545,'*** Is a vendor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3342 (546,'*** Is a trainer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3343 (547,'InstanceID: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3344 (548,'Player%s %s (guid: %u) Account: %s (id: %u) GMLevel: %u Last IP: %s Last login: %s Latency: %ums',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3345 (549,'Played time: %s Level: %u Money: %ug%us%uc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3346 (550,'Command .pinfo doesn\'t support \'rep\' option for offline players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3347 (551,'%s has explored all zones now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3348 (552,'%s has no more explored zones.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3349 (553,'%s has explored all zones for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3350 (554,'%s has hidden all zones from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3351 (555,'Hover enabled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3352 (556,'Hover disabled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3353 (557,'%s level up you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3354 (558,'%s level down you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3355 (559,'%s reset your level progress.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3356 (560,'The area has been set as explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3357 (561,'The area has been set as not explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3358 (562,'GUID=%i \'s updateIndex: %i, value:  %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3359 (563,'You change GUID=%i \'s UpdateIndex: %i value to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3360 (564,'The value index %u is too big to %u(count: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3361 (565,'Set %u uint32 Value:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3362 (566,'You Set %u Field:%u to uint32 Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3363 (567,'Set %u float Value:[OPCODE]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3364 (568,'You Set %u Field:%i to float Value: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3365 (569,'Get %u uint32 Value:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3366 (570,'The uint32 value of %u in %u is: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3367 (571,'Get %u float Value:[OPCODE]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3368 (572,'The float of %u value in %u is: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3369 (575,'.Mod32Value:[OPCODE]:%u [VALUE]:%i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3370 (576,'You modified the value of Field:%u to Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3371 (577,'You are now invisible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3372 (578,'You are now visible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3373 (579,'Selected player or creature not have victim.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3374 (580,'You learned all default spells for race/class and completed quests rewarded spells.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3375 (581,'Found near gameobjects (distance %f): %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3376 (582,'SpawnTime: Full:%s Remain:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3377 (583,'%d - |cffffffff|Hgameevent:%d|h[%s]|h|r%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3378 (584,'No event found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3379 (585,'Event not exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3380 (586,'Event %u: %s%s\nStart: %s End: %s Occurence: %s Length: %s\nNext state change: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3381 (587,'Event %u already active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3382 (588,'Event %u not active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3383 (589,'   Point movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3384 (590,'   Fear movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3385 (591,'   Distract movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3386 (592,'You have learned all spells in craft: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3387 (593,'Currently Banned Accounts:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3388 (594,'|    Account    |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3389 (595,'Currently Banned IPs:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3390 (596,'|      IP       |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3391 (597,'Current gamemasters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3392 (598,'|    Account    |  GM  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3393 (599,'No gamemasters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3394 (600,'The Alliance wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3395 (601,'The Horde wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3396 (602,'The battle for Warsong Gulch begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3397 (603,'The battle for Warsong Gulch begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3398 (604,'Let the battle for Warsong Gulch begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3399 (605,'$n captured the Horde flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3400 (606,'$n captured the Alliance flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3401 (607,'The Horde flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3402 (608,'The Alliance Flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3403 (609,'The Alliance Flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3404 (610,'The Horde flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3405 (611,'The Horde flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3406 (612,'The Alliance Flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3407 (613,'The flags are now placed at their bases.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3408 (614,'The Alliance flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3409 (615,'The Horde flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3410 (636,'The battle begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3411 (637,'The battle begins in 30 seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3412 (638,'The battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3413 (650,'Alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3414 (651,'Horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3415 (652,'stables',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3416 (653,'blacksmith',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3417 (654,'farm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3418 (655,'lumber mill',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3419 (656,'mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3420 (657,'The %s has taken the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3421 (658,'$n has defended the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3422 (659,'$n has assaulted the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3423 (660,'$n claims the %s! If left unchallenged, the %s will control it in 1 minute!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3424 (661,'The battle for Arathi Basin begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3425 (662,'The battle for Arathi Basin begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3426 (663,'The battle for Arathi Basin has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3427 (664,'The Alliance has gathered $1776W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3428 (665,'The Horde has gathered $1777W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3429 (666,'After your recent battle in %s our best attempts to award you a Mark of Honor failed. Enclosed you will find the Mark of Honor we were not able to deliver to you at the time. Thanks for fighting in %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3430 (667,'The Alliance has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3431 (668,'The Horde has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3432 (669,'The Alliance has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3433 (670,'The Horde has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3434 (671,'The Alliance has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3435 (672,'The Horde has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3436 (673,'The Alliance has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3437 (674,'The Horde has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3438 (675,'The Alliance has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3439 (676,'The Horde has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3440 (677,'The Alliance has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3441 (678,'The Horde has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3442 (679,'The Alliance has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3443 (680,'The Horde has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3444 (681,'The Alliance has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3445 (682,'The Horde has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3446 (683,'%s has taken the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3447 (684,'The Alliance have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3448 (685,'The Horde have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3449 (686,'The flag has been dropped.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3450 (687,'The flag has been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3451 (700,'You must be level %u to form an arena team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3452 (701,'One minute until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3453 (702,'Thirty seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3454 (703,'Fifteen seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3455 (704,'The Arena battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3456 (705,'You must wait %s before speaking again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3457 (706,'This item(s) have problems with equipping/storing in inventory.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3458 (707,'%s wishes to not be disturbed and cannot receive whisper messages: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3459 (708,'%s is Away from Keyboard: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3460 (709,'Do not Disturb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3461 (710,'Away from Keyboard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3462 (711,'Queue status for %s (Lvl: %u to %u)\nQueued alliances: %u (Need at least %u more)\nQueued hordes: %u (Need at least %u more)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3463 (712,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] A: %u/%u, H: %u/%u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3464 (713,'You must be level %u to join an arena team!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3465 (715,'You don\'t meet Battleground level requirements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3466 (717,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] Started!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3467 (718,'|cffff0000[Arena Queue Announcer]:|r All Arenas -- Joined : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3468 (719,'|cffff0000[Arena Queue Announcer]:|r All Arenas -- Exited : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3469 (720,'Your group is too large for this battleground. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3470 (721,'Your group is too large for this arena. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3471 (722,'Your group has members not in your arena team. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3472 (723,'Your group does not have enough players to join this match.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3473 (724,'The Gold Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3474 (725,'The Green Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3475 (727,'Your group has an offline member. Please remove him before joining.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3476 (728,'Your group has players from the opposing faction. You can\'t join the battleground as a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3477 (729,'Your group has players from different battleground brakets. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3478 (730,'Someone in your party is already in this battleground queue. (S)he must leave it before joining as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3479 (731,'Someone in your party is Deserter. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3480 (732,'Someone in your party is already in three battleground queues. You cannot join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3481 (733,'You cannot teleport to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3482 (734,'You cannot summon players to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3483 (735,'You must be in GM mode to teleport to a player in a battleground.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3484 (736,'You cannot teleport to a battleground from another battleground. Please leave the current battleground first.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3485 (737,'Arenas are set to 1v1 for debugging. So, don\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3486 (738,'Arenas are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3487 (739,'Battlegrounds are set to 1v0 for debugging.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3488 (740,'Battlegrounds are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3489 (741,'Flushing Arena points based on team ratings, this may take a few minutes. Please stand by...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3490 (742,'Distributing arena points to players...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3491 (743,'Finished setting arena points for online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3492 (744,'Modifying played count, arena points etc. for loaded arena teams, sending updated stats to online players...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3493 (745,'Modification done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3494 (746,'Done flushing Arena points.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3495 (750,'Not enough players. This game will close in %u mins.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3496 (751,'Not enough players. This game will close in %u seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3497 (752,'Only the Alliance can use that portal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3498 (753,'Only the Horde can use that portal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3499 (759,'%s was destroyed by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3500 (760,'The %s is under attack! If left unchecked, the %s will destroy it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3501 (761,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3502 (762,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), -- WTF? why 3 same strings?
3503 (763,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3504 (764,'The %s is under attack! If left unchecked, the %s will capture it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3505 (765,'The %s has taken the %s! Its supplies will now be used for reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3506 (766,'Irondeep Mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3507 (767,'Coldtooth Mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3508 (768,'Stormpike Aid Station',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3509 (769,'Dun Baldar South Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3510 (770,'Dun Baldar North Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3511 (771,'Stormpike Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3512 (772,'Icewing Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3513 (773,'Stonehearth Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3514 (774,'Stonehearth Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3515 (775,'Snowfall Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3516 (776,'Iceblood Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3517 (777,'Iceblood Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3518 (778,'Tower Point',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3519 (779,'Frostwolf Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3520 (780,'East Frostwolf Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3521 (781,'West Frostwolf Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3522 (782,'Frostwolf Relief Hut',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3523 (784,'1 minute until the battle for Alterac Valley begins.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3524 (785,'30 seconds until the battle for Alterac Valley begins. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3525 (786,'The battle for Alterac Valley has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3526 (787,'The Alliance Team is running out of reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3527 (788,'The Horde Team is running out of reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3528 (789,'The Frostwolf General is Dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3529 (790,'The Stormpike General is Dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3530 (801,'You do not have enough gold',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3531 (802,'You do not have enough free slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3532 (803,'Your partner does not have enough free bag slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3533 (804,'You do not have permission to perform that function',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3534 (805,'Unknown language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3535 (806,'You don\'t know that language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3536 (807,'Please provide character name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3537 (808,'Player %s not found or offline',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3538 (809,'Account for character %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3539 (810,'|Hplayer:$N|h[$N]|h has earned the achievement $a!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3540 (811,'Guild Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3541 (812,'Officer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3542 (813,'Veteran',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3543 (814,'Member',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3544 (815,'Initiate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3545 (1000,'Exiting daemon...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3546 (1001,'Account deleted: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3547 (1002,'Account %s NOT deleted (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3548 (1003,'Account %s NOT deleted (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3549 (1004,'Account created: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3550 (1005,'Account name can\'t be longer than 16 characters (client limit), account not created!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3551 (1006,'Account with this name already exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3552 (1007,'Account %s NOT created (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3553 (1008,'Account %s NOT created (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3554 (1009,'Player %s (Guid: %u) Account %s (Id: %u) deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3555 (1010,'|    Account    |       Character      |       IP        | GM | Expansion |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3556 (1011,'|<Error>        | %20s |<Error>          |<Er>| <Error>   |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3557 (1012,'===========================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3558 (1013,'|%15s| %20s | %15s |%4d| %9d |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3559 (1014,'No online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3560 (1015,'Used not fully typed quit command, need type it fully (quit), or command used not in RA command line.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3561 (1100,'Account %s (Id: %u) have up to %u expansion allowed now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3562 (1101,'Message of the day changed to:\r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3563 (1102,'Message sent to %s: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3564 (1103,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3565 (1104,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3566 (1105,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3567 (1106,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3568 (1107,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3569 (1108,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3570 (1109,'%d - %s %s %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3571 (1110,'%d - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3572 (1111,'%d - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3573 (1112,'Failed to open file: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3574 (1113,'Account %s (%u) have max amount allowed characters (client limit)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3575 (1114,'Dump file have broken data!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3576 (1115,'Invalid character name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3577 (1116,'Invalid character guid!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3578 (1117,'Character guid %u in use!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3579 (1118,'%d - guild: %s (guid: %u) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3580 (1119,'You must use male or female as gender.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3581 (1120,'You change gender of %s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3582 (1121,'Your gender changed to %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3583 (1122,'(%u/%u +perm %u +temp %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3584 (1123,'Not pet found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3585 (1124,'Wrong pet type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3586 (1125,'Your pet learned all talents',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3587 (1126,'Your pet talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3588 (1127,'Talents of %s\'s pet reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3589 (1128,'%d - |cffffffff|Htaxinode:%u|h[%s %s]|h|r (Map:%u X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3590 (1129,'%d - %s %s (Map:%u X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3591 (1130,'event started %u "%s"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3592 (1131,'event stopped %u "%s"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3593 (1200,'You try to view cinemitic %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3594 (1201,'You try to view movie %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3595 /*!40000 ALTER TABLE `mangos_string` ENABLE KEYS */;
3596 UNLOCK TABLES;
3599 -- Table structure for table `milling_loot_template`
3602 DROP TABLE IF EXISTS `milling_loot_template`;
3603 CREATE TABLE `milling_loot_template` (
3604   `entry` mediumint(8) unsigned NOT NULL default '0',
3605   `item` mediumint(8) unsigned NOT NULL default '0',
3606   `ChanceOrQuestChance` float NOT NULL default '100',
3607   `groupid` tinyint(3) unsigned NOT NULL default '0',
3608   `mincountOrRef` mediumint(9) NOT NULL default '1',
3609   `maxcount` tinyint(3) unsigned NOT NULL default '1',
3610   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
3611   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
3612   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
3613   PRIMARY KEY  (`entry`,`item`)
3614 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
3617 -- Dumping data for table `milling_loot_template`
3620 LOCK TABLES `milling_loot_template` WRITE;
3621 /*!40000 ALTER TABLE `milling_loot_template` DISABLE KEYS */;
3622 /*!40000 ALTER TABLE `milling_loot_template` ENABLE KEYS */;
3623 UNLOCK TABLES;
3626 -- Table structure for table `npc_gossip`
3629 DROP TABLE IF EXISTS `npc_gossip`;
3630 CREATE TABLE `npc_gossip` (
3631   `npc_guid` int(10) unsigned NOT NULL default '0',
3632   `textid` mediumint(8) unsigned NOT NULL default '0',
3633   PRIMARY KEY  (`npc_guid`)
3634 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3637 -- Dumping data for table `npc_gossip`
3640 LOCK TABLES `npc_gossip` WRITE;
3641 /*!40000 ALTER TABLE `npc_gossip` DISABLE KEYS */;
3642 /*!40000 ALTER TABLE `npc_gossip` ENABLE KEYS */;
3643 UNLOCK TABLES;
3646 -- Table structure for table `npc_spellclick_spells`
3649 DROP TABLE IF EXISTS `npc_spellclick_spells`;
3650 CREATE TABLE `npc_spellclick_spells` (
3651     `npc_entry`   int unsigned NOT NULL COMMENT 'reference to creature_template',
3652     `spell_id`    int unsigned NOT NULL COMMENT 'spell which should be casted ',
3653     `quest_start`        mediumint(8) unsigned NOT NULL COMMENT 'reference to quest_template',
3654     `quest_start_active` tinyint(1) unsigned NOT NULL default '0',
3655     `quest_end`          mediumint(8) unsigned NOT NULL default '0',
3656     `cast_flags`  tinyint unsigned NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit'
3657 ) ENGINE = MYISAM DEFAULT CHARSET=utf8;
3660 -- Dumping data for table `npc_spellclick_spells`
3663 LOCK TABLES `npc_spellclick_spells` WRITE;
3664 /*!40000 ALTER TABLE `npc_spellclick_spells` DISABLE KEYS */;
3665 /*!40000 ALTER TABLE `npc_spellclick_spells` ENABLE KEYS */;
3666 UNLOCK TABLES;
3669 -- Table structure for table `npc_text`
3672 DROP TABLE IF EXISTS `npc_text`;
3673 CREATE TABLE `npc_text` (
3674   `ID` mediumint(8) unsigned NOT NULL default '0',
3675   `text0_0` longtext,
3676   `text0_1` longtext,
3677   `lang0` tinyint(3) unsigned NOT NULL default '0',
3678   `prob0` float NOT NULL default '0',
3679   `em0_0` smallint(5) unsigned NOT NULL default '0',
3680   `em0_1` smallint(5) unsigned NOT NULL default '0',
3681   `em0_2` smallint(5) unsigned NOT NULL default '0',
3682   `em0_3` smallint(5) unsigned NOT NULL default '0',
3683   `em0_4` smallint(5) unsigned NOT NULL default '0',
3684   `em0_5` smallint(5) unsigned NOT NULL default '0',
3685   `text1_0` longtext,
3686   `text1_1` longtext,
3687   `lang1` tinyint(3) unsigned NOT NULL default '0',
3688   `prob1` float NOT NULL default '0',
3689   `em1_0` smallint(5) unsigned NOT NULL default '0',
3690   `em1_1` smallint(5) unsigned NOT NULL default '0',
3691   `em1_2` smallint(5) unsigned NOT NULL default '0',
3692   `em1_3` smallint(5) unsigned NOT NULL default '0',
3693   `em1_4` smallint(5) unsigned NOT NULL default '0',
3694   `em1_5` smallint(5) unsigned NOT NULL default '0',
3695   `text2_0` longtext,
3696   `text2_1` longtext,
3697   `lang2` tinyint(3) unsigned NOT NULL default '0',
3698   `prob2` float NOT NULL default '0',
3699   `em2_0` smallint(5) unsigned NOT NULL default '0',
3700   `em2_1` smallint(5) unsigned NOT NULL default '0',
3701   `em2_2` smallint(5) unsigned NOT NULL default '0',
3702   `em2_3` smallint(5) unsigned NOT NULL default '0',
3703   `em2_4` smallint(5) unsigned NOT NULL default '0',
3704   `em2_5` smallint(5) unsigned NOT NULL default '0',
3705   `text3_0` longtext,
3706   `text3_1` longtext,
3707   `lang3` tinyint(3) unsigned NOT NULL default '0',
3708   `prob3` float NOT NULL default '0',
3709   `em3_0` smallint(5) unsigned NOT NULL default '0',
3710   `em3_1` smallint(5) unsigned NOT NULL default '0',
3711   `em3_2` smallint(5) unsigned NOT NULL default '0',
3712   `em3_3` smallint(5) unsigned NOT NULL default '0',
3713   `em3_4` smallint(5) unsigned NOT NULL default '0',
3714   `em3_5` smallint(5) unsigned NOT NULL default '0',
3715   `text4_0` longtext,
3716   `text4_1` longtext,
3717   `lang4` tinyint(3) unsigned NOT NULL default '0',
3718   `prob4` float NOT NULL default '0',
3719   `em4_0` smallint(5) unsigned NOT NULL default '0',
3720   `em4_1` smallint(5) unsigned NOT NULL default '0',
3721   `em4_2` smallint(5) unsigned NOT NULL default '0',
3722   `em4_3` smallint(5) unsigned NOT NULL default '0',
3723   `em4_4` smallint(5) unsigned NOT NULL default '0',
3724   `em4_5` smallint(5) unsigned NOT NULL default '0',
3725   `text5_0` longtext,
3726   `text5_1` longtext,
3727   `lang5` tinyint(3) unsigned NOT NULL default '0',
3728   `prob5` float NOT NULL default '0',
3729   `em5_0` smallint(5) unsigned NOT NULL default '0',
3730   `em5_1` smallint(5) unsigned NOT NULL default '0',
3731   `em5_2` smallint(5) unsigned NOT NULL default '0',
3732   `em5_3` smallint(5) unsigned NOT NULL default '0',
3733   `em5_4` smallint(5) unsigned NOT NULL default '0',
3734   `em5_5` smallint(5) unsigned NOT NULL default '0',
3735   `text6_0` longtext,
3736   `text6_1` longtext,
3737   `lang6` tinyint(3) unsigned NOT NULL default '0',
3738   `prob6` float NOT NULL default '0',
3739   `em6_0` smallint(5) unsigned NOT NULL default '0',
3740   `em6_1` smallint(5) unsigned NOT NULL default '0',
3741   `em6_2` smallint(5) unsigned NOT NULL default '0',
3742   `em6_3` smallint(5) unsigned NOT NULL default '0',
3743   `em6_4` smallint(5) unsigned NOT NULL default '0',
3744   `em6_5` smallint(5) unsigned NOT NULL default '0',
3745   `text7_0` longtext,
3746   `text7_1` longtext,
3747   `lang7` tinyint(3) unsigned NOT NULL default '0',
3748   `prob7` float NOT NULL default '0',
3749   `em7_0` smallint(5) unsigned NOT NULL default '0',
3750   `em7_1` smallint(5) unsigned NOT NULL default '0',
3751   `em7_2` smallint(5) unsigned NOT NULL default '0',
3752   `em7_3` smallint(5) unsigned NOT NULL default '0',
3753   `em7_4` smallint(5) unsigned NOT NULL default '0',
3754   `em7_5` smallint(5) unsigned NOT NULL default '0',
3755   PRIMARY KEY  (`ID`)
3756 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3759 -- Dumping data for table `npc_text`
3762 LOCK TABLES `npc_text` WRITE;
3763 /*!40000 ALTER TABLE `npc_text` DISABLE KEYS */;
3764 /*!40000 ALTER TABLE `npc_text` ENABLE KEYS */;
3765 UNLOCK TABLES;
3768 -- Table structure for table `npc_trainer`
3771 DROP TABLE IF EXISTS `npc_trainer`;
3772 CREATE TABLE `npc_trainer` (
3773   `entry` mediumint(8) unsigned NOT NULL default '0',
3774   `spell` mediumint(8) unsigned NOT NULL default '0',
3775   `spellcost` int(10) unsigned NOT NULL default '0',
3776   `reqskill` smallint(5) unsigned NOT NULL default '0',
3777   `reqskillvalue` smallint(5) unsigned NOT NULL default '0',
3778   `reqlevel` tinyint(3) unsigned NOT NULL default '0',
3779   UNIQUE KEY `entry_spell` (`entry`,`spell`)
3780 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3783 -- Dumping data for table `npc_trainer`
3786 LOCK TABLES `npc_trainer` WRITE;
3787 /*!40000 ALTER TABLE `npc_trainer` DISABLE KEYS */;
3788 /*!40000 ALTER TABLE `npc_trainer` ENABLE KEYS */;
3789 UNLOCK TABLES;
3792 -- Table structure for table `npc_vendor`
3795 DROP TABLE IF EXISTS `npc_vendor`;
3796 CREATE TABLE `npc_vendor` (
3797   `entry` mediumint(8) unsigned NOT NULL default '0',
3798   `item` mediumint(8) unsigned NOT NULL default '0',
3799   `maxcount` tinyint(3) unsigned NOT NULL default '0',
3800   `incrtime` int(10) unsigned NOT NULL default '0',
3801   `ExtendedCost` mediumint(8) unsigned NOT NULL default '0',
3802   PRIMARY KEY  (`entry`,`item`)
3803 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Npc System';
3806 -- Dumping data for table `npc_vendor`
3809 LOCK TABLES `npc_vendor` WRITE;
3810 /*!40000 ALTER TABLE `npc_vendor` DISABLE KEYS */;
3811 /*!40000 ALTER TABLE `npc_vendor` ENABLE KEYS */;
3812 UNLOCK TABLES;
3815 -- Table structure for table `page_text`
3818 DROP TABLE IF EXISTS `page_text`;
3819 CREATE TABLE `page_text` (
3820   `entry` mediumint(8) unsigned NOT NULL default '0',
3821   `text` longtext NOT NULL,
3822   `next_page` mediumint(8) unsigned NOT NULL default '0',
3823   PRIMARY KEY  (`entry`)
3824 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
3827 -- Dumping data for table `page_text`
3830 LOCK TABLES `page_text` WRITE;
3831 /*!40000 ALTER TABLE `page_text` DISABLE KEYS */;
3832 /*!40000 ALTER TABLE `page_text` ENABLE KEYS */;
3833 UNLOCK TABLES;
3836 -- Table structure for table `pet_levelstats`
3839 DROP TABLE IF EXISTS `pet_levelstats`;
3840 CREATE TABLE `pet_levelstats` (
3841   `creature_entry` mediumint(8) unsigned NOT NULL,
3842   `level` tinyint(3) unsigned NOT NULL,
3843   `hp` smallint(5) unsigned NOT NULL,
3844   `mana` smallint(5) unsigned NOT NULL,
3845   `armor` int(10) unsigned NOT NULL default '0',
3846   `str` smallint(5) unsigned NOT NULL,
3847   `agi` smallint(5) unsigned NOT NULL,
3848   `sta` smallint(5) unsigned NOT NULL,
3849   `inte` smallint(5) unsigned NOT NULL,
3850   `spi` smallint(5) unsigned NOT NULL,
3851   PRIMARY KEY  (`creature_entry`,`level`)
3852 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores pet levels stats.';
3855 -- Dumping data for table `pet_levelstats`
3858 LOCK TABLES `pet_levelstats` WRITE;
3859 /*!40000 ALTER TABLE `pet_levelstats` DISABLE KEYS */;
3860 /*!40000 ALTER TABLE `pet_levelstats` ENABLE KEYS */;
3861 UNLOCK TABLES;
3864 -- Table structure for table `pet_name_generation`
3867 DROP TABLE IF EXISTS `pet_name_generation`;
3868 CREATE TABLE `pet_name_generation` (
3869   `id` mediumint(8) unsigned NOT NULL auto_increment,
3870   `word` tinytext NOT NULL,
3871   `entry` mediumint(8) unsigned NOT NULL default '0',
3872   `half` tinyint(4) NOT NULL default '0',
3873   PRIMARY KEY  (`id`)
3874 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3877 -- Dumping data for table `pet_name_generation`
3880 LOCK TABLES `pet_name_generation` WRITE;
3881 /*!40000 ALTER TABLE `pet_name_generation` DISABLE KEYS */;
3882 INSERT INTO `pet_name_generation` (`word`,`entry`,`half`) VALUES
3883 ('Aba',416,0),
3884 ('Az',416,0),
3885 ('Bel',416,0),
3886 ('Biz',416,0),
3887 ('Cho',416,0),
3888 ('Dag',416,0),
3889 ('Gak',416,0),
3890 ('Gar',416,0),
3891 ('Gel',416,0),
3892 ('Gho',416,0),
3893 ('Gob',416,0),
3894 ('Gra',416,0),
3895 ('Jak',416,0),
3896 ('Jub',416,0),
3897 ('Kar',416,0),
3898 ('Kup',416,0),
3899 ('Laz',416,0),
3900 ('Nal',416,0),
3901 ('Nok',416,0),
3902 ('Pag',416,0),
3903 ('Pig',416,0),
3904 ('Pip',416,0),
3905 ('Piz',416,0),
3906 ('Quz',416,0),
3907 ('Rui',416,0),
3908 ('Rul',416,0),
3909 ('Rup',416,0),
3910 ('Tar',416,0),
3911 ('Vol',416,0),
3912 ('Yaz',416,0),
3913 ('Zep',416,0),
3914 ('Zig',416,0),
3915 ('Zil',416,0),
3916 ('Zor',416,0),
3917 ('bis',416,1),
3918 ('fip',416,1),
3919 ('gup',416,1),
3920 ('ham',416,1),
3921 ('jub',416,1),
3922 ('kin',416,1),
3923 ('kol',416,1),
3924 ('lop',416,1),
3925 ('loz',416,1),
3926 ('mat',416,1),
3927 ('mir',416,1),
3928 ('nam',416,1),
3929 ('nar',416,1),
3930 ('nik',416,1),
3931 ('nip',416,1),
3932 ('pad',416,1),
3933 ('pep',416,1),
3934 ('pit',416,1),
3935 ('qua',416,1),
3936 ('rai',416,1),
3937 ('rin',416,1),
3938 ('rot',416,1),
3939 ('tai',416,1),
3940 ('tal',416,1),
3941 ('tik',416,1),
3942 ('tip',416,1),
3943 ('tog',416,1),
3944 ('tuk',416,1),
3945 ('uri',416,1),
3946 ('yal',416,1),
3947 ('yap',416,1),
3948 ('Bhee',417,0),
3949 ('Bruu',417,0),
3950 ('Czaa',417,0),
3951 ('Droo',417,0),
3952 ('Flaa',417,0),
3953 ('Fzuu',417,0),
3954 ('Ghaa',417,0),
3955 ('Gree',417,0),
3956 ('Gzaa',417,0),
3957 ('Haa',417,0),
3958 ('Haad',417,0),
3959 ('Haag',417,0),
3960 ('Haap',417,0),
3961 ('Jhaa',417,0),
3962 ('Jhuu',417,0),
3963 ('Khaa',417,0),
3964 ('Khii',417,0),
3965 ('Khuu',417,0),
3966 ('Kree',417,0),
3967 ('Luu',417,0),
3968 ('Maa',417,0),
3969 ('Nhee',417,0),
3970 ('Phuu',417,0),
3971 ('Pryy',417,0),
3972 ('Rhuu',417,0),
3973 ('Shaa',417,0),
3974 ('Sloo',417,0),
3975 ('Sruu',417,0),
3976 ('Thoo',417,0),
3977 ('Traa',417,0),
3978 ('Wraa',417,0),
3979 ('Zhaa',417,0),
3980 ('dhon',417,1),
3981 ('dhum',417,1),
3982 ('dhun',417,1),
3983 ('dom',417,1),
3984 ('don',417,1),
3985 ('drom',417,1),
3986 ('dym',417,1),
3987 ('fenn',417,1),
3988 ('fum',417,1),
3989 ('fun',417,1),
3990 ('ghon',417,1),
3991 ('ghun',417,1),
3992 ('grom',417,1),
3993 ('grym',417,1),
3994 ('hom',417,1),
3995 ('hon',417,1),
3996 ('hun',417,1),
3997 ('jhom',417,1),
3998 ('kun',417,1),
3999 ('lum',417,1),
4000 ('mmon',417,1),
4001 ('mon',417,1),
4002 ('myn',417,1),
4003 ('nam',417,1),
4004 ('nem',417,1),
4005 ('nhym',417,1),
4006 ('nom',417,1),
4007 ('num',417,1),
4008 ('phom',417,1),
4009 ('roon',417,1),
4010 ('rym',417,1),
4011 ('shon',417,1),
4012 ('thun',417,1),
4013 ('tom',417,1),
4014 ('zhem',417,1),
4015 ('zhum',417,1),
4016 ('zun',417,1),
4017 ('Bar',1860,0),
4018 ('Bel',1860,0),
4019 ('Char',1860,0),
4020 ('Grak\'',1860,0),
4021 ('Graz\'',1860,0),
4022 ('Grim',1860,0),
4023 ('Hath',1860,0),
4024 ('Hel',1860,0),
4025 ('Hok',1860,0),
4026 ('Huk',1860,0),
4027 ('Jhaz',1860,0),
4028 ('Jhom',1860,0),
4029 ('Juk\'',1860,0),
4030 ('Kal\'',1860,0),
4031 ('Klath',1860,0),
4032 ('Kon',1860,0),
4033 ('Krag',1860,0),
4034 ('Krak',1860,0),
4035 ('Mak',1860,0),
4036 ('Mezz',1860,0),
4037 ('Orm',1860,0),
4038 ('Phan',1860,0),
4039 ('Sar',1860,0),
4040 ('Tang',1860,0),
4041 ('Than',1860,0),
4042 ('Thog',1860,0),
4043 ('Thok',1860,0),
4044 ('Thul',1860,0),
4045 ('Zag\'',1860,0),
4046 ('Zang',1860,0),
4047 ('Zhar\'',1860,0),
4048 ('kath',1860,1),
4049 ('doc',1860,1),
4050 ('dok',1860,1),
4051 ('gak',1860,1),
4052 ('garth',1860,1),
4053 ('gore',1860,1),
4054 ('gorg',1860,1),
4055 ('grave',1860,1),
4056 ('gron',1860,1),
4057 ('juk',1860,1),
4058 ('krast',1860,1),
4059 ('kresh',1860,1),
4060 ('krit',1860,1),
4061 ('los',1860,1),
4062 ('mon',1860,1),
4063 ('mos',1860,1),
4064 ('moth',1860,1),
4065 ('nagma',1860,1),
4066 ('nak',1860,1),
4067 ('nar',1860,1),
4068 ('nos',1860,1),
4069 ('nuz',1860,1),
4070 ('phog',1860,1),
4071 ('rath',1860,1),
4072 ('tast',1860,1),
4073 ('taz',1860,1),
4074 ('thak',1860,1),
4075 ('thang',1860,1),
4076 ('thyk',1860,1),
4077 ('vhug',1860,1),
4078 ('zazt',1860,1),
4079 ('Ael',1863,0),
4080 ('Aez',1863,0),
4081 ('Ang',1863,0),
4082 ('Ban',1863,0),
4083 ('Bet',1863,0),
4084 ('Bro',1863,0),
4085 ('Bry',1863,0),
4086 ('Cat',1863,0),
4087 ('Dir',1863,0),
4088 ('Dis',1863,0),
4089 ('Dom',1863,0),
4090 ('Drus',1863,0),
4091 ('Fie',1863,0),
4092 ('Fier',1863,0),
4093 ('Gly',1863,0),
4094 ('Hel',1863,0),
4095 ('Hes',1863,0),
4096 ('Kal',1863,0),
4097 ('Lyn',1863,0),
4098 ('Mir',1863,0),
4099 ('Nim',1863,0),
4100 ('Sar',1863,0),
4101 ('Sel',1863,0),
4102 ('Vil',1863,0),
4103 ('Zah',1863,0),
4104 ('aith',1863,1),
4105 ('anda',1863,1),
4106 ('antia',1863,1),
4107 ('evere',1863,1),
4108 ('lia',1863,1),
4109 ('lissa',1863,1),
4110 ('neri',1863,1),
4111 ('neth',1863,1),
4112 ('nia',1863,1),
4113 ('nlissa',1863,1),
4114 ('nora',1863,1),
4115 ('nva',1863,1),
4116 ('nys',1863,1),
4117 ('ola',1863,1),
4118 ('ona',1863,1),
4119 ('ora',1863,1),
4120 ('rah',1863,1),
4121 ('riana',1863,1),
4122 ('riel',1863,1),
4123 ('rona',1863,1),
4124 ('tai',1863,1),
4125 ('tevere',1863,1),
4126 ('thea',1863,1),
4127 ('vina',1863,1),
4128 ('wena',1863,1),
4129 ('wyn',1863,1),
4130 ('xia',1863,1),
4131 ('yla',1863,1),
4132 ('yssa',1863,1),
4133 ('Flaa',17252,0),
4134 ('Haa',17252,0),
4135 ('Jhuu',17252,0),
4136 ('Shaa',17252,0),
4137 ('Thoo',17252,0),
4138 ('dhun',17252,1),
4139 ('ghun',17252,1),
4140 ('roon',17252,1),
4141 ('thun',17252,1),
4142 ('tom',17252,1);
4144 /*!40000 ALTER TABLE `pet_name_generation` ENABLE KEYS */;
4145 UNLOCK TABLES;
4148 -- Table structure for table `pickpocketing_loot_template`
4151 DROP TABLE IF EXISTS `pickpocketing_loot_template`;
4152 CREATE TABLE `pickpocketing_loot_template` (
4153   `entry` mediumint(8) unsigned NOT NULL default '0',
4154   `item` mediumint(8) unsigned NOT NULL default '0',
4155   `ChanceOrQuestChance` float NOT NULL default '100',
4156   `groupid` tinyint(3) unsigned NOT NULL default '0',
4157   `mincountOrRef` mediumint(9) NOT NULL default '1',
4158   `maxcount` tinyint(3) unsigned NOT NULL default '1',
4159   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
4160   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
4161   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
4162   PRIMARY KEY  (`entry`,`item`)
4163 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
4166 -- Dumping data for table `pickpocketing_loot_template`
4169 LOCK TABLES `pickpocketing_loot_template` WRITE;
4170 /*!40000 ALTER TABLE `pickpocketing_loot_template` DISABLE KEYS */;
4171 /*!40000 ALTER TABLE `pickpocketing_loot_template` ENABLE KEYS */;
4172 UNLOCK TABLES;
4175 -- Table structure for table `player_classlevelstats`
4178 DROP TABLE IF EXISTS `player_classlevelstats`;
4179 CREATE TABLE `player_classlevelstats` (
4180   `class` tinyint(3) unsigned NOT NULL,
4181   `level` tinyint(3) unsigned NOT NULL,
4182   `basehp` smallint(5) unsigned NOT NULL,
4183   `basemana` smallint(5) unsigned NOT NULL,
4184   PRIMARY KEY  (`class`,`level`)
4185 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
4188 -- Dumping data for table `player_classlevelstats`
4191 LOCK TABLES `player_classlevelstats` WRITE;
4192 /*!40000 ALTER TABLE `player_classlevelstats` DISABLE KEYS */;
4193 INSERT INTO `player_classlevelstats` VALUES
4194 (1,1,20,0),
4195 (1,2,29,0),
4196 (1,3,38,0),
4197 (1,4,47,0),
4198 (1,5,56,0),
4199 (1,6,65,0),
4200 (1,7,74,0),
4201 (1,8,83,0),
4202 (1,9,92,0),
4203 (1,10,101,0),
4204 (1,11,100,0),
4205 (1,12,109,0),
4206 (1,13,118,0),
4207 (1,14,128,0),
4208 (1,15,139,0),
4209 (1,16,151,0),
4210 (1,17,154,0),
4211 (1,18,168,0),
4212 (1,19,183,0),
4213 (1,20,199,0),
4214 (1,21,206,0),
4215 (1,22,224,0),
4216 (1,23,243,0),
4217 (1,24,253,0),
4218 (1,25,274,0),
4219 (1,26,296,0),
4220 (1,27,309,0),
4221 (1,28,333,0),
4222 (1,29,348,0),
4223 (1,30,374,0),
4224 (1,31,401,0),
4225 (1,32,419,0),
4226 (1,33,448,0),
4227 (1,34,468,0),
4228 (1,35,499,0),
4229 (1,36,521,0),
4230 (1,37,545,0),
4231 (1,38,581,0),
4232 (1,39,609,0),
4233 (1,40,649,0),
4234 (1,41,681,0),
4235 (1,42,715,0),
4236 (1,43,761,0),
4237 (1,44,799,0),
4238 (1,45,839,0),
4239 (1,46,881,0),
4240 (1,47,935,0),
4241 (1,48,981,0),
4242 (1,49,1029,0),
4243 (1,50,1079,0),
4244 (1,51,1131,0),
4245 (1,52,1185,0),
4246 (1,53,1241,0),
4247 (1,54,1299,0),
4248 (1,55,1359,0),
4249 (1,56,1421,0),
4250 (1,57,1485,0),
4251 (1,58,1551,0),
4252 (1,59,1619,0),
4253 (1,60,1689,0),
4254 (1,61,1902,0),
4255 (1,62,2129,0),
4256 (1,63,2357,0),
4257 (1,64,2612,0),
4258 (1,65,2883,0),
4259 (1,66,3169,0),
4260 (1,67,3455,0),
4261 (1,68,3774,0),
4262 (1,69,4109,0),
4263 (1,70,4444,0),
4264 (1,71,4720,0),
4265 (1,72,5013,0),
4266 (1,73,5325,0),
4267 (1,74,5656,0),
4268 (1,75,6008,0),
4269 (1,76,6381,0),
4270 (1,77,6778,0),
4271 (1,78,7198,0),
4272 (1,79,7646,0),
4273 (1,80,8121,0),
4274 (2,1,28,60),
4275 (2,2,36,78),
4276 (2,3,44,98),
4277 (2,4,52,104),
4278 (2,5,60,111),
4279 (2,6,68,134),
4280 (2,7,76,143),
4281 (2,8,84,153),
4282 (2,9,92,179),
4283 (2,10,100,192),
4284 (2,11,108,205),
4285 (2,12,116,219),
4286 (2,13,124,249),
4287 (2,14,132,265),
4288 (2,15,131,282),
4289 (2,16,141,315),
4290 (2,17,152,334),
4291 (2,18,164,354),
4292 (2,19,177,390),
4293 (2,20,191,412),
4294 (2,21,206,435),
4295 (2,22,222,459),
4296 (2,23,239,499),
4297 (2,24,247,525),
4298 (2,25,266,552),
4299 (2,26,286,579),
4300 (2,27,307,621),
4301 (2,28,329,648),
4302 (2,29,342,675),
4303 (2,30,366,702),
4304 (2,31,391,729),
4305 (2,32,407,756),
4306 (2,33,434,798),
4307 (2,34,462,825),
4308 (2,35,481,852),
4309 (2,36,511,879),
4310 (2,37,542,906),
4311 (2,38,564,933),
4312 (2,39,597,960),
4313 (2,40,621,987),
4314 (2,41,656,1014),
4315 (2,42,682,1041),
4316 (2,43,719,1068),
4317 (2,44,747,1110),
4318 (2,45,786,1137),
4319 (2,46,816,1164),
4320 (2,47,857,1176),
4321 (2,48,889,1203),
4322 (2,49,922,1230),
4323 (2,50,966,1257),
4324 (2,51,1001,1284),
4325 (2,52,1037,1311),
4326 (2,53,1084,1338),
4327 (2,54,1122,1365),
4328 (2,55,1161,1392),
4329 (2,56,1201,1419),
4330 (2,57,1252,1446),
4331 (2,58,1294,1458),
4332 (2,59,1337,1485),
4333 (2,60,1381,1512),
4334 (2,61,1540,1656),
4335 (2,62,1708,1800),
4336 (2,63,1884,1944),
4337 (2,64,2068,2088),
4338 (2,65,2262,2232),
4339 (2,66,2466,2377),
4340 (2,67,2679,2521),
4341 (2,68,2901,2665),
4342 (2,69,3134,2809),
4343 (2,70,3377,2953),
4344 (2,71,3629,3097),
4345 (2,72,3900,3241),
4346 (2,73,4191,3385),
4347 (2,74,4503,3529),
4348 (2,75,4839,3673),
4349 (2,76,5200,3817),
4350 (2,77,5588,3962),
4351 (2,78,6005,4106),
4352 (2,79,6453,4250),
4353 (2,80,6934,4394),
4354 (3,1,46,65),
4355 (3,2,53,70),
4356 (3,3,60,76),
4357 (3,4,67,98),
4358 (3,5,74,106),
4359 (3,6,81,130),
4360 (3,7,88,140),
4361 (3,8,95,166),
4362 (3,9,102,193),
4363 (3,10,109,206),
4364 (3,11,116,235),
4365 (3,12,123,250),
4366 (3,13,130,266),
4367 (3,14,138,298),
4368 (3,15,147,316),
4369 (3,16,157,350),
4370 (3,17,168,370),
4371 (3,18,180,391),
4372 (3,19,193,428),
4373 (3,20,207,451),
4374 (3,21,222,475),
4375 (3,22,238,515),
4376 (3,23,255,541),
4377 (3,24,273,568),
4378 (3,25,292,611),
4379 (3,26,312,640),
4380 (3,27,333,670),
4381 (3,28,355,715),
4382 (3,29,378,745),
4383 (3,30,402,775),
4384 (3,31,417,805),
4385 (3,32,443,850),
4386 (3,33,470,880),
4387 (3,34,498,910),
4388 (3,35,527,940),
4389 (3,36,547,970),
4390 (3,37,578,1015),
4391 (3,38,610,1045),
4392 (3,39,643,1075),
4393 (3,40,667,1105),
4394 (3,41,702,1135),
4395 (3,42,738,1180),
4396 (3,43,775,1210),
4397 (3,44,803,1240),
4398 (3,45,842,1270),
4399 (3,46,872,1300),
4400 (3,47,913,1330),
4401 (3,48,955,1360),
4402 (3,49,994,1390),
4403 (3,50,1047,1420),
4404 (3,51,1067,1450),
4405 (3,52,1113,1480),
4406 (3,53,1150,1510),
4407 (3,54,1198,1540),
4408 (3,55,1237,1570),
4409 (3,56,1287,1600),
4410 (3,57,1328,1630),
4411 (3,58,1370,1660),
4412 (3,59,1423,1690),
4413 (3,60,1467,1720),
4414 (3,61,1633,1886),
4415 (3,62,1819,2053),
4416 (3,63,2003,2219),
4417 (3,64,2195,2385),
4418 (3,65,2397,2552),
4419 (3,66,2623,2718),
4420 (3,67,2844,2884),
4421 (3,68,3075,3050),
4422 (3,69,3316,3217),
4423 (3,70,3568,3383),
4424 (3,71,3834,3549),
4425 (3,72,4120,3716),
4426 (3,73,4427,3882),
4427 (3,74,4757,4048),
4428 (3,75,5112,4215),
4429 (3,76,5493,4381),
4430 (3,77,5903,4547),
4431 (3,78,6343,4713),
4432 (3,79,6816,4880),
4433 (3,80,7324,5046),
4434 (4,1,25,0),
4435 (4,2,32,0),
4436 (4,3,49,0),
4437 (4,4,56,0),
4438 (4,5,63,0),
4439 (4,6,70,0),
4440 (4,7,87,0),
4441 (4,8,94,0),
4442 (4,9,101,0),
4443 (4,10,118,0),
4444 (4,11,125,0),
4445 (4,12,142,0),
4446 (4,13,149,0),
4447 (4,14,156,0),
4448 (4,15,173,0),
4449 (4,16,181,0),
4450 (4,17,190,0),
4451 (4,18,200,0),
4452 (4,19,221,0),
4453 (4,20,233,0),
4454 (4,21,246,0),
4455 (4,22,260,0),
4456 (4,23,275,0),
4457 (4,24,301,0),
4458 (4,25,318,0),
4459 (4,26,336,0),
4460 (4,27,355,0),
4461 (4,28,375,0),
4462 (4,29,396,0),
4463 (4,30,428,0),
4464 (4,31,451,0),
4465 (4,32,475,0),
4466 (4,33,500,0),
4467 (4,34,526,0),
4468 (4,35,553,0),
4469 (4,36,581,0),
4470 (4,37,610,0),
4471 (4,38,640,0),
4472 (4,39,671,0),
4473 (4,40,703,0),
4474 (4,41,736,0),
4475 (4,42,770,0),
4476 (4,43,805,0),
4477 (4,44,841,0),
4478 (4,45,878,0),
4479 (4,46,916,0),
4480 (4,47,955,0),
4481 (4,48,995,0),
4482 (4,49,1026,0),
4483 (4,50,1068,0),
4484 (4,51,1111,0),
4485 (4,52,1155,0),
4486 (4,53,1200,0),
4487 (4,54,1246,0),
4488 (4,55,1283,0),
4489 (4,56,1331,0),
4490 (4,57,1380,0),
4491 (4,58,1430,0),
4492 (4,59,1471,0),
4493 (4,60,1523,0),
4494 (4,61,1702,0),
4495 (4,62,1879,0),
4496 (4,63,2077,0),
4497 (4,64,2285,0),
4498 (4,65,2489,0),
4499 (4,66,2717,0),
4500 (4,67,2941,0),
4501 (4,68,3190,0),
4502 (4,69,3450,0),
4503 (4,70,3704,0),
4504 (4,71,3980,0),
4505 (4,72,4277,0),
4506 (4,73,4596,0),
4507 (4,74,4939,0),
4508 (4,75,5307,0),
4509 (4,76,5703,0),
4510 (4,77,6128,0),
4511 (4,78,6585,0),
4512 (4,79,7076,0),
4513 (4,80,7604,0),
4514 (5,1,52,73),
4515 (5,2,57,76),
4516 (5,3,72,95),
4517 (5,4,77,114),
4518 (5,5,92,133),
4519 (5,6,97,152),
4520 (5,7,112,171),
4521 (5,8,117,190),
4522 (5,9,132,209),
4523 (5,10,137,212),
4524 (5,11,142,215),
4525 (5,12,157,234),
4526 (5,13,172,254),
4527 (5,14,177,260),
4528 (5,15,192,282),
4529 (5,16,197,305),
4530 (5,17,212,329),
4531 (5,18,227,339),
4532 (5,19,232,365),
4533 (5,20,247,377),
4534 (5,21,252,405),
4535 (5,22,268,434),
4536 (5,23,275,449),
4537 (5,24,293,480),
4538 (5,25,302,497),
4539 (5,26,322,530),
4540 (5,27,343,549),
4541 (5,28,355,584),
4542 (5,29,378,605),
4543 (5,30,392,627),
4544 (5,31,417,665),
4545 (5,32,433,689),
4546 (5,33,460,728),
4547 (5,34,478,752),
4548 (5,35,507,776),
4549 (5,36,527,800),
4550 (5,37,548,839),
4551 (5,38,580,863),
4552 (5,39,603,887),
4553 (5,40,637,911),
4554 (5,41,662,950),
4555 (5,42,698,974),
4556 (5,43,725,998),
4557 (5,44,763,1022),
4558 (5,45,792,1046),
4559 (5,46,822,1070),
4560 (5,47,863,1094),
4561 (5,48,895,1118),
4562 (5,49,928,1142),
4563 (5,50,972,1166),
4564 (5,51,1007,1190),
4565 (5,52,1053,1214),
4566 (5,53,1090,1238),
4567 (5,54,1128,1262),
4568 (5,55,1177,1271),
4569 (5,56,1217,1295),
4570 (5,57,1258,1319),
4571 (5,58,1300,1343),
4572 (5,59,1353,1352),
4573 (5,60,1397,1376),
4574 (5,61,1557,1500),
4575 (5,62,1738,1625),
4576 (5,63,1916,1749),
4577 (5,64,2101,1873),
4578 (5,65,2295,1998),
4579 (5,66,2495,2122),
4580 (5,67,2719,2247),
4581 (5,68,2936,2371),
4582 (5,69,3160,2495),
4583 (5,70,3391,2620),
4584 (5,71,3644,2744),
4585 (5,72,3916,2868),
4586 (5,73,4208,2993),
4587 (5,74,4522,3117),
4588 (5,75,4859,3242),
4589 (5,76,5221,3366),
4590 (5,77,5610,3490),
4591 (5,78,6028,3615),
4592 (5,79,6477,3739),
4593 (5,80,6960,3863),
4594 (6,1,22,0),
4595 (6,2,27,0),
4596 (6,3,32,0),
4597 (6,4,37,0),
4598 (6,5,42,0),
4599 (6,6,47,0),
4600 (6,7,52,0),
4601 (6,8,58,0),
4602 (6,9,64,0),
4603 (6,10,70,0),
4604 (6,11,77,0),
4605 (6,12,84,0),
4606 (6,13,92,0),
4607 (6,14,100,0),
4608 (6,15,117,0),
4609 (6,16,127,0),
4610 (6,17,138,0),
4611 (6,18,150,0),
4612 (6,19,163,0),
4613 (6,20,177,0),
4614 (6,21,192,0),
4615 (6,22,208,0),
4616 (6,23,225,0),
4617 (6,24,239,0),
4618 (6,25,258,0),
4619 (6,26,278,0),
4620 (6,27,299,0),
4621 (6,28,321,0),
4622 (6,29,344,0),
4623 (6,30,368,0),
4624 (6,31,393,0),
4625 (6,32,419,0),
4626 (6,33,446,0),
4627 (6,34,474,0),
4628 (6,35,503,0),
4629 (6,36,533,0),
4630 (6,37,564,0),
4631 (6,38,596,0),
4632 (6,39,629,0),
4633 (6,40,698,0),
4634 (6,41,698,0),
4635 (6,42,734,0),
4636 (6,43,771,0),
4637 (6,44,809,0),
4638 (6,45,849,0),
4639 (6,46,891,0),
4640 (6,47,935,0),
4641 (6,48,981,0),
4642 (6,49,1029,0),
4643 (6,50,1079,0),
4644 (6,51,1131,0),
4645 (6,52,1185,0),
4646 (6,53,1241,0),
4647 (6,54,1299,0),
4648 (6,55,1359,0),
4649 (6,56,1421,0),
4650 (6,57,1485,0),
4651 (6,58,1551,0),
4652 (6,59,1619,0),
4653 (6,60,1689,0),
4654 (6,61,1902,0),
4655 (6,62,2129,0),
4656 (6,63,2357,0),
4657 (6,64,2612,0),
4658 (6,65,2883,0),
4659 (6,66,3169,0),
4660 (6,67,3455,0),
4661 (6,68,3774,0),
4662 (6,69,4109,0),
4663 (6,70,4444,0),
4664 (6,71,4720,0),
4665 (6,72,5013,0),
4666 (6,73,5325,0),
4667 (6,74,5656,0),
4668 (6,75,6008,0),
4669 (6,76,6381,0),
4670 (6,77,6778,0),
4671 (6,78,7199,0),
4672 (6,79,7646,0),
4673 (6,80,8121,0),
4674 (7,1,37,85),
4675 (7,2,44,91),
4676 (7,3,51,98),
4677 (7,4,58,106),
4678 (7,5,65,115),
4679 (7,6,72,125),
4680 (7,7,79,136),
4681 (7,8,86,148),
4682 (7,9,93,161),
4683 (7,10,100,175),
4684 (7,11,107,190),
4685 (7,12,114,206),
4686 (7,13,121,223),
4687 (7,14,128,241),
4688 (7,15,135,260),
4689 (7,16,142,280),
4690 (7,17,150,301),
4691 (7,18,159,323),
4692 (7,19,169,346),
4693 (7,20,180,370),
4694 (7,21,192,395),
4695 (7,22,205,421),
4696 (7,23,219,448),
4697 (7,24,234,476),
4698 (7,25,240,505),
4699 (7,26,257,535),
4700 (7,27,275,566),
4701 (7,28,294,598),
4702 (7,29,314,631),
4703 (7,30,335,665),
4704 (7,31,347,699),
4705 (7,32,370,733),
4706 (7,33,394,767),
4707 (7,34,419,786),
4708 (7,35,435,820),
4709 (7,36,462,854),
4710 (7,37,490,888),
4711 (7,38,509,922),
4712 (7,39,539,941),
4713 (7,40,570,975),
4714 (7,41,592,1009),
4715 (7,42,625,1028),
4716 (7,43,649,1062),
4717 (7,44,684,1096),
4718 (7,45,710,1115),
4719 (7,46,747,1149),
4720 (7,47,775,1183),
4721 (7,48,814,1202),
4722 (7,49,844,1236),
4723 (7,50,885,1255),
4724 (7,51,917,1289),
4725 (7,52,960,1323),
4726 (7,53,994,1342),
4727 (7,54,1029,1376),
4728 (7,55,1075,1395),
4729 (7,56,1112,1414),
4730 (7,57,1150,1448),
4731 (7,58,1199,1467),
4732 (7,59,1239,1501),
4733 (7,60,1330,1520),
4734 (7,61,1428,1664),
4735 (7,62,1583,1808),
4736 (7,63,1760,1951),
4737 (7,64,1932,2095),
4738 (7,65,2114,2239),
4739 (7,66,2304,2383),
4740 (7,67,2504,2527),
4741 (7,68,2713,2670),
4742 (7,69,2931,2814),
4743 (7,70,3159,2958),
4744 (7,71,3395,3102),
4745 (7,72,3648,3246),
4746 (7,73,3920,3389),
4747 (7,74,4212,3533),
4748 (7,75,4526,3677),
4749 (7,76,4863,3821),
4750 (7,77,5226,3965),
4751 (7,78,5616,4108),
4752 (7,79,6035,4252),
4753 (7,80,6485,4396),
4754 (8,1,32,100),
4755 (8,2,47,110),
4756 (8,3,52,106),
4757 (8,4,67,118),
4758 (8,5,82,131),
4759 (8,6,97,130),
4760 (8,7,102,145),
4761 (8,8,117,146),
4762 (8,9,132,163),
4763 (8,10,137,196),
4764 (8,11,152,215),
4765 (8,12,167,220),
4766 (8,13,172,241),
4767 (8,14,187,263),
4768 (8,15,202,271),
4769 (8,16,207,295),
4770 (8,17,222,305),
4771 (8,18,237,331),
4772 (8,19,242,343),
4773 (8,20,257,371),
4774 (8,21,272,385),
4775 (8,22,277,415),
4776 (8,23,292,431),
4777 (8,24,298,463),
4778 (8,25,315,481),
4779 (8,26,333,515),
4780 (8,27,342,535),
4781 (8,28,362,556),
4782 (8,29,373,592),
4783 (8,30,395,613),
4784 (8,31,418,634),
4785 (8,32,432,670),
4786 (8,33,457,691),
4787 (8,34,473,712),
4788 (8,35,500,733),
4789 (8,36,518,754),
4790 (8,37,547,790),
4791 (8,38,577,811),
4792 (8,39,598,832),
4793 (8,40,630,853),
4794 (8,41,653,874),
4795 (8,42,687,895),
4796 (8,43,712,916),
4797 (8,44,748,937),
4798 (8,45,775,958),
4799 (8,46,813,979),
4800 (8,47,842,1000),
4801 (8,48,882,1021),
4802 (8,49,913,1042),
4803 (8,50,955,1048),
4804 (8,51,988,1069),
4805 (8,52,1032,1090),
4806 (8,53,1067,1111),
4807 (8,54,1103,1117),
4808 (8,55,1150,1138),
4809 (8,56,1188,1159),
4810 (8,57,1237,1165),
4811 (8,58,1277,1186),
4812 (8,59,1328,1192),
4813 (8,60,1370,1213),
4814 (8,61,1526,1316),
4815 (8,62,1702,1419),
4816 (8,63,1875,1521),
4817 (8,64,2070,1624),
4818 (8,65,2261,1727),
4819 (8,66,2461,1830),
4820 (8,67,2686,1932),
4821 (8,68,2906,2035),
4822 (8,69,3136,2138),
4823 (8,70,3393,2241),
4824 (8,71,3646,2343),
4825 (8,72,3918,2446),
4826 (8,73,4210,2549),
4827 (8,74,4524,2652),
4828 (8,75,4861,2754),
4829 (8,76,5223,2857),
4830 (8,77,5612,2960),
4831 (8,78,6030,3063),
4832 (8,79,6480,3165),
4833 (8,80,6963,3268),
4834 (9,1,23,90),
4835 (9,2,28,98),
4836 (9,3,43,107),
4837 (9,4,48,102),
4838 (9,5,63,113),
4839 (9,6,68,126),
4840 (9,7,83,144),
4841 (9,8,88,162),
4842 (9,9,93,180),
4843 (9,10,108,198),
4844 (9,11,123,200),
4845 (9,12,128,218),
4846 (9,13,143,237),
4847 (9,14,148,257),
4848 (9,15,153,278),
4849 (9,16,168,300),
4850 (9,17,173,308),
4851 (9,18,189,332),
4852 (9,19,196,357),
4853 (9,20,204,383),
4854 (9,21,223,395),
4855 (9,22,233,423),
4856 (9,23,244,452),
4857 (9,24,266,467),
4858 (9,25,279,498),
4859 (9,26,293,530),
4860 (9,27,318,548),
4861 (9,28,334,582),
4862 (9,29,351,602),
4863 (9,30,379,638),
4864 (9,31,398,674),
4865 (9,32,418,695),
4866 (9,33,439,731),
4867 (9,34,471,752),
4868 (9,35,494,788),
4869 (9,36,518,809),
4870 (9,37,543,830),
4871 (9,38,569,866),
4872 (9,39,606,887),
4873 (9,40,634,923),
4874 (9,41,663,944),
4875 (9,42,693,965),
4876 (9,43,724,1001),
4877 (9,44,756,1022),
4878 (9,45,799,1043),
4879 (9,46,832,1064),
4880 (9,47,868,1100),
4881 (9,48,904,1121),
4882 (9,49,941,1142),
4883 (9,50,979,1163),
4884 (9,51,1018,1184),
4885 (9,52,1058,1205),
4886 (9,53,1099,1226),
4887 (9,54,1141,1247),
4888 (9,55,1184,1268),
4889 (9,56,1228,1289),
4890 (9,57,1273,1310),
4891 (9,58,1319,1331),
4892 (9,59,1366,1352),
4893 (9,60,1414,1373),
4894 (9,61,1580,1497),
4895 (9,62,1755,1621),
4896 (9,63,1939,1745),
4897 (9,64,2133,1870),
4898 (9,65,2323,1994),
4899 (9,66,2535,2118),
4900 (9,67,2758,2242),
4901 (9,68,2991,2366),
4902 (9,69,3235,2490),
4903 (9,70,3490,2615),
4904 (9,71,3750,2739),
4905 (9,72,4025,2863),
4906 (9,73,4330,2987),
4907 (9,74,4646,3111),
4908 (9,75,4997,3235),
4909 (9,76,5373,3360),
4910 (9,77,5774,3483),
4911 (9,78,6207,3608),
4912 (9,79,6667,3732),
4913 (9,80,7136,3856),
4914 (11,1,44,60),
4915 (11,2,51,66),
4916 (11,3,58,73),
4917 (11,4,75,81),
4918 (11,5,82,90),
4919 (11,6,89,100),
4920 (11,7,106,111),
4921 (11,8,113,123),
4922 (11,9,120,136),
4923 (11,10,137,150),
4924 (11,11,144,165),
4925 (11,12,151,182),
4926 (11,13,168,200),
4927 (11,14,175,219),
4928 (11,15,182,239),
4929 (11,16,199,260),
4930 (11,17,206,282),
4931 (11,18,214,305),
4932 (11,19,233,329),
4933 (11,20,243,354),
4934 (11,21,254,380),
4935 (11,22,266,392),
4936 (11,23,289,420),
4937 (11,24,303,449),
4938 (11,25,318,479),
4939 (11,26,334,509),
4940 (11,27,361,524),
4941 (11,28,379,554),
4942 (11,29,398,584),
4943 (11,30,418,614),
4944 (11,31,439,629),
4945 (11,32,461,659),
4946 (11,33,494,689),
4947 (11,34,518,704),
4948 (11,35,543,734),
4949 (11,36,569,749),
4950 (11,37,596,779),
4951 (11,38,624,809),
4952 (11,39,653,824),
4953 (11,40,683,854),
4954 (11,41,714,869),
4955 (11,42,746,899),
4956 (11,43,779,914),
4957 (11,44,823,944),
4958 (11,45,858,959),
4959 (11,46,894,989),
4960 (11,47,921,1004),
4961 (11,48,959,1019),
4962 (11,49,998,1049),
4963 (11,50,1038,1064),
4964 (11,51,1079,1079),
4965 (11,52,1121,1109),
4966 (11,53,1164,1124),
4967 (11,54,1208,1139),
4968 (11,55,1253,1154),
4969 (11,56,1299,1169),
4970 (11,57,1346,1199),
4971 (11,58,1384,1214),
4972 (11,59,1433,1229),
4973 (11,60,1483,1244),
4974 (11,61,1657,1357),
4975 (11,62,1840,1469),
4976 (11,63,2020,1582),
4977 (11,64,2222,1694),
4978 (11,65,2433,1807),
4979 (11,66,2640,1919),
4980 (11,67,2872,2032),
4981 (11,68,3114,2145),
4982 (11,69,3351,2257),
4983 (11,70,3614,2370),
4984 (11,71,3883,2482),
4985 (11,72,4172,2595),
4986 (11,73,4483,2708),
4987 (11,74,4817,2820),
4988 (11,75,5176,2933),
4989 (11,76,5562,3045),
4990 (11,77,5977,3158),
4991 (11,78,6423,3270),
4992 (11,79,6902,3383),
4993 (11,80,7417,3496);
4994 /*!40000 ALTER TABLE `player_classlevelstats` ENABLE KEYS */;
4995 UNLOCK TABLES;
4998 -- Table structure for table `player_levelstats`
5001 DROP TABLE IF EXISTS `player_levelstats`;
5002 CREATE TABLE `player_levelstats` (
5003   `race` tinyint(3) unsigned NOT NULL,
5004   `class` tinyint(3) unsigned NOT NULL,
5005   `level` tinyint(3) unsigned NOT NULL,
5006   `str` tinyint(3) unsigned NOT NULL,
5007   `agi` tinyint(3) unsigned NOT NULL,
5008   `sta` tinyint(3) unsigned NOT NULL,
5009   `inte` tinyint(3) unsigned NOT NULL,
5010   `spi` tinyint(3) unsigned NOT NULL,
5011   PRIMARY KEY  (`race`,`class`,`level`)
5012 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
5015 -- Dumping data for table `player_levelstats`
5018 LOCK TABLES `player_levelstats` WRITE;
5019 /*!40000 ALTER TABLE `player_levelstats` DISABLE KEYS */;
5020 INSERT INTO `player_levelstats` VALUES
5021 (1,1,1,23,20,22,20,20),
5022 (1,1,2,24,21,23,20,20),
5023 (1,1,3,26,22,24,20,21),
5024 (1,1,4,27,22,26,20,21),
5025 (1,1,5,28,23,27,20,21),
5026 (1,1,6,30,24,28,20,21),
5027 (1,1,7,31,25,29,21,22),
5028 (1,1,8,32,26,30,21,22),
5029 (1,1,9,34,26,32,21,22),
5030 (1,1,10,35,27,33,21,23),
5031 (1,1,11,36,28,34,21,23),
5032 (1,1,12,38,29,35,21,23),
5033 (1,1,13,39,30,37,21,24),
5034 (1,1,14,41,31,38,21,24),
5035 (1,1,15,42,32,39,21,24),
5036 (1,1,16,44,33,41,21,25),
5037 (1,1,17,45,34,42,22,25),
5038 (1,1,18,47,34,43,22,25),
5039 (1,1,19,48,35,45,22,26),
5040 (1,1,20,50,36,46,22,26),
5041 (1,1,21,51,37,48,22,26),
5042 (1,1,22,53,38,49,22,27),
5043 (1,1,23,54,39,51,22,27),
5044 (1,1,24,56,40,52,23,28),
5045 (1,1,25,58,41,53,23,28),
5046 (1,1,26,59,42,55,23,28),
5047 (1,1,27,61,43,56,23,29),
5048 (1,1,28,63,44,58,23,29),
5049 (1,1,29,64,45,59,23,30),
5050 (1,1,30,66,46,61,24,30),
5051 (1,1,31,68,47,62,24,30),
5052 (1,1,32,69,48,64,24,31),
5053 (1,1,33,71,50,66,24,31),
5054 (1,1,34,73,51,67,24,32),
5055 (1,1,35,74,52,69,24,32),
5056 (1,1,36,76,53,70,25,33),
5057 (1,1,37,78,54,72,25,33),
5058 (1,1,38,80,55,74,25,34),
5059 (1,1,39,82,56,75,25,34),
5060 (1,1,40,83,57,77,25,35),
5061 (1,1,41,85,58,79,26,35),
5062 (1,1,42,87,60,80,26,35),
5063 (1,1,43,89,61,82,26,36),
5064 (1,1,44,91,62,84,26,36),
5065 (1,1,45,93,63,85,26,37),
5066 (1,1,46,95,64,87,27,37),
5067 (1,1,47,97,66,89,27,38),
5068 (1,1,48,99,67,91,27,38),
5069 (1,1,49,101,68,93,27,39),
5070 (1,1,50,103,69,94,28,40),
5071 (1,1,51,105,71,96,28,40),
5072 (1,1,52,107,72,98,28,41),
5073 (1,1,53,109,73,100,28,41),
5074 (1,1,54,111,74,102,29,42),
5075 (1,1,55,113,76,103,29,42),
5076 (1,1,56,115,77,105,29,43),
5077 (1,1,57,117,78,107,29,43),
5078 (1,1,58,119,79,109,30,44),
5079 (1,1,59,121,81,111,30,44),
5080 (1,1,60,123,82,113,30,45),
5081 (1,1,61,125,83,115,30,46),
5082 (1,1,62,127,85,117,31,46),
5083 (1,1,63,129,86,119,31,47),
5084 (1,1,64,132,88,121,31,47),
5085 (1,1,65,134,89,123,32,48),
5086 (1,1,66,136,90,125,32,49),
5087 (1,1,67,138,92,127,32,49),
5088 (1,1,68,140,93,129,32,50),
5089 (1,1,69,143,95,131,33,50),
5090 (1,1,70,145,96,133,33,51),
5091 (1,1,71,148,97,140,33,53),
5092 (1,1,72,156,99,143,33,54),
5093 (1,1,73,162,101,148,33,55),
5094 (1,1,74,162,102,148,34,55),
5095 (1,1,75,165,104,150,34,56),
5096 (1,1,76,171,106,156,34,57),
5097 (1,1,77,171,108,157,35,58),
5098 (1,1,78,174,109,159,35,58),
5099 (1,1,79,181,111,165,35,59),
5100 (1,1,80,184,113,168,36,60),
5101 (1,2,1,22,20,22,20,21),
5102 (1,2,2,23,21,23,21,22),
5103 (1,2,3,24,21,24,21,22),
5104 (1,2,4,25,22,25,22,23),
5105 (1,2,5,26,22,26,23,24),
5106 (1,2,6,28,23,27,23,25),
5107 (1,2,7,29,24,28,24,25),
5108 (1,2,8,30,24,29,25,26),
5109 (1,2,9,31,25,30,25,27),
5110 (1,2,10,32,25,32,26,27),
5111 (1,2,11,33,26,33,27,28),
5112 (1,2,12,35,27,34,27,29),
5113 (1,2,13,36,27,35,28,30),
5114 (1,2,14,37,28,36,29,31),
5115 (1,2,15,38,29,37,30,31),
5116 (1,2,16,40,29,38,30,32),
5117 (1,2,17,41,30,40,31,33),
5118 (1,2,18,42,31,41,32,34),
5119 (1,2,19,43,31,42,33,35),
5120 (1,2,20,45,32,43,33,35),
5121 (1,2,21,46,33,45,34,36),
5122 (1,2,22,47,33,46,35,37),
5123 (1,2,23,49,34,47,36,38),
5124 (1,2,24,50,35,48,37,39),
5125 (1,2,25,51,36,50,37,40),
5126 (1,2,26,53,36,51,38,41),
5127 (1,2,27,54,37,52,39,42),
5128 (1,2,28,56,38,54,40,43),
5129 (1,2,29,57,39,55,41,43),
5130 (1,2,30,58,39,56,42,44),
5131 (1,2,31,60,40,58,43,45),
5132 (1,2,32,61,41,59,43,46),
5133 (1,2,33,63,42,60,44,47),
5134 (1,2,34,64,43,62,45,48),
5135 (1,2,35,66,44,63,46,49),
5136 (1,2,36,67,44,65,47,50),
5137 (1,2,37,69,45,66,48,51),
5138 (1,2,38,70,46,67,49,52),
5139 (1,2,39,72,47,69,50,53),
5140 (1,2,40,73,48,70,51,54),
5141 (1,2,41,75,49,72,52,55),
5142 (1,2,42,77,49,73,53,56),
5143 (1,2,43,78,50,75,54,57),
5144 (1,2,44,80,51,76,55,58),
5145 (1,2,45,81,52,78,56,59),
5146 (1,2,46,83,53,79,57,61),
5147 (1,2,47,85,54,81,58,62),
5148 (1,2,48,86,55,83,59,63),
5149 (1,2,49,88,56,84,60,64),
5150 (1,2,50,90,57,86,61,65),
5151 (1,2,51,91,58,87,62,66),
5152 (1,2,52,93,59,89,63,67),
5153 (1,2,53,95,60,91,64,68),
5154 (1,2,54,97,61,92,65,69),
5155 (1,2,55,98,61,94,66,71),
5156 (1,2,56,100,62,95,67,72),
5157 (1,2,57,102,63,97,68,73),
5158 (1,2,58,104,64,99,69,74),
5159 (1,2,59,105,65,101,70,75),
5160 (1,2,60,107,66,102,71,77),
5161 (1,2,61,109,67,104,73,78),
5162 (1,2,62,111,69,106,74,79),
5163 (1,2,63,113,70,107,75,80),
5164 (1,2,64,115,71,109,76,81),
5165 (1,2,65,116,72,111,77,83),
5166 (1,2,66,118,73,113,78,84),
5167 (1,2,67,120,74,115,79,85),
5168 (1,2,68,122,75,116,81,86),
5169 (1,2,69,124,76,118,82,88),
5170 (1,2,70,126,77,120,83,89),
5171 (1,2,71,148,78,122,84,92),
5172 (1,2,72,150,79,125,86,94),
5173 (1,2,73,152,80,127,87,96),
5174 (1,2,74,156,82,129,89,97),
5175 (1,2,75,158,83,131,90,99),
5176 (1,2,76,162,84,134,92,100),
5177 (1,2,77,164,86,136,93,103),
5178 (1,2,78,167,87,138,95,105),
5179 (1,2,79,170,88,153,96,106),
5180 (1,2,80,173,90,160,98,108),
5181 (1,4,1,21,23,21,20,20),
5182 (1,4,2,22,24,22,20,20),
5183 (1,4,3,23,26,22,20,21),
5184 (1,4,4,23,27,23,20,21),
5185 (1,4,5,24,29,24,21,21),
5186 (1,4,6,25,30,25,21,22),
5187 (1,4,7,26,32,25,21,22),
5188 (1,4,8,26,33,26,21,23),
5189 (1,4,9,27,35,27,21,23),
5190 (1,4,10,28,36,27,21,23),
5191 (1,4,11,29,38,28,22,24),
5192 (1,4,12,30,39,29,22,24),
5193 (1,4,13,31,41,30,22,25),
5194 (1,4,14,31,43,31,22,25),
5195 (1,4,15,32,44,31,22,25),
5196 (1,4,16,33,46,32,23,26),
5197 (1,4,17,34,48,33,23,26),
5198 (1,4,18,35,49,34,23,27),
5199 (1,4,19,36,51,35,23,27),
5200 (1,4,20,37,53,35,23,28),
5201 (1,4,21,38,54,36,24,28),
5202 (1,4,22,39,56,37,24,29),
5203 (1,4,23,40,58,38,24,29),
5204 (1,4,24,41,60,39,24,30),
5205 (1,4,25,42,61,40,25,30),
5206 (1,4,26,43,63,41,25,31),
5207 (1,4,27,44,65,42,25,31),
5208 (1,4,28,45,67,43,25,32),
5209 (1,4,29,46,69,43,25,32),
5210 (1,4,30,47,71,44,26,33),
5211 (1,4,31,48,72,45,26,33),
5212 (1,4,32,49,74,46,26,34),
5213 (1,4,33,50,76,47,27,34),
5214 (1,4,34,51,78,48,27,35),
5215 (1,4,35,52,80,49,27,35),
5216 (1,4,36,53,82,50,27,36),
5217 (1,4,37,54,84,51,28,36),
5218 (1,4,38,55,86,52,28,37),
5219 (1,4,39,56,88,53,28,38),
5220 (1,4,40,57,90,54,28,38),
5221 (1,4,41,58,92,55,29,39),
5222 (1,4,42,60,94,56,29,39),
5223 (1,4,43,61,96,57,29,40),
5224 (1,4,44,62,98,58,30,40),
5225 (1,4,45,63,100,59,30,41),
5226 (1,4,46,64,103,61,30,42),
5227 (1,4,47,65,105,62,31,42),
5228 (1,4,48,66,107,63,31,43),
5229 (1,4,49,68,109,64,31,44),
5230 (1,4,50,69,111,65,32,44),
5231 (1,4,51,70,113,66,32,45),
5232 (1,4,52,71,116,67,32,45),
5233 (1,4,53,73,118,68,33,46),
5234 (1,4,54,74,120,69,33,47),
5235 (1,4,55,75,122,71,33,47),
5236 (1,4,56,76,125,72,34,48),
5237 (1,4,57,78,127,73,34,49),
5238 (1,4,58,79,129,74,34,49),
5239 (1,4,59,80,131,75,35,50),
5240 (1,4,60,81,134,77,35,51),
5241 (1,4,61,83,136,78,35,51),
5242 (1,4,62,84,138,79,36,52),
5243 (1,4,63,85,141,80,36,53),
5244 (1,4,64,87,143,81,37,54),
5245 (1,4,65,88,146,83,37,54),
5246 (1,4,66,89,148,84,37,55),
5247 (1,4,67,91,151,85,38,56),
5248 (1,4,68,92,153,86,38,57),
5249 (1,4,69,94,156,88,39,57),
5250 (1,4,70,95,158,89,39,58),
5251 (1,4,71,97,161,90,39,60),
5252 (1,4,72,99,164,92,40,60),
5253 (1,4,73,100,167,94,40,61),
5254 (1,4,74,102,170,95,41,62),
5255 (1,4,75,104,173,97,41,63),
5256 (1,4,76,105,176,98,41,64),
5257 (1,4,77,107,179,100,42,65),
5258 (1,4,78,109,183,106,42,66),
5259 (1,4,79,111,186,107,43,67),
5260 (1,4,80,113,189,109,43,69),
5261 (1,5,1,20,20,20,22,23),
5262 (1,5,2,20,20,20,23,24),
5263 (1,5,3,20,20,21,25,26),
5264 (1,5,4,20,21,21,26,27),
5265 (1,5,5,21,21,21,27,28),
5266 (1,5,6,21,21,22,29,30),
5267 (1,5,7,21,21,22,30,31),
5268 (1,5,8,21,22,23,31,33),
5269 (1,5,9,21,22,23,33,34),
5270 (1,5,10,21,22,23,34,36),
5271 (1,5,11,22,22,24,36,37),
5272 (1,5,12,22,23,24,37,39),
5273 (1,5,13,22,23,25,38,40),
5274 (1,5,14,22,23,25,40,42),
5275 (1,5,15,22,23,25,41,43),
5276 (1,5,16,23,24,26,43,45),
5277 (1,5,17,23,24,26,44,46),
5278 (1,5,18,23,24,27,46,48),
5279 (1,5,19,23,24,27,47,49),
5280 (1,5,20,23,25,28,49,51),
5281 (1,5,21,24,25,28,51,53),
5282 (1,5,22,24,25,29,52,54),
5283 (1,5,23,24,26,29,54,56),
5284 (1,5,24,24,26,30,55,58),
5285 (1,5,25,25,26,30,57,59),
5286 (1,5,26,25,27,31,59,61),
5287 (1,5,27,25,27,31,60,63),
5288 (1,5,28,25,27,32,62,65),
5289 (1,5,29,25,28,32,64,66),
5290 (1,5,30,26,28,33,65,68),
5291 (1,5,31,26,28,33,67,70),
5292 (1,5,32,26,29,34,69,72),
5293 (1,5,33,27,29,34,70,73),
5294 (1,5,34,27,29,35,72,75),
5295 (1,5,35,27,30,35,74,77),
5296 (1,5,36,27,30,36,76,79),
5297 (1,5,37,28,30,36,78,81),
5298 (1,5,38,28,31,37,79,83),
5299 (1,5,39,28,31,38,81,85),
5300 (1,5,40,28,31,38,83,87),
5301 (1,5,41,29,32,39,85,88),
5302 (1,5,42,29,32,39,87,90),
5303 (1,5,43,29,33,40,89,92),
5304 (1,5,44,30,33,40,91,94),
5305 (1,5,45,30,33,41,92,96),
5306 (1,5,46,30,34,42,94,98),
5307 (1,5,47,31,34,42,96,100),
5308 (1,5,48,31,35,43,98,102),
5309 (1,5,49,31,35,44,100,104),
5310 (1,5,50,32,36,44,102,106),
5311 (1,5,51,32,36,45,104,109),
5312 (1,5,52,32,36,45,106,111),
5313 (1,5,53,33,37,46,108,113),
5314 (1,5,54,33,37,47,110,115),
5315 (1,5,55,33,38,47,112,117),
5316 (1,5,56,34,38,48,114,119),
5317 (1,5,57,34,39,49,117,121),
5318 (1,5,58,34,39,49,119,124),
5319 (1,5,59,35,40,50,121,126),
5320 (1,5,60,35,40,51,123,128),
5321 (1,5,61,35,41,51,125,130),
5322 (1,5,62,36,41,52,127,132),
5323 (1,5,63,36,41,53,129,135),
5324 (1,5,64,37,42,54,132,137),
5325 (1,5,65,37,42,54,134,139),
5326 (1,5,66,37,43,55,136,142),
5327 (1,5,67,38,43,56,138,144),
5328 (1,5,68,38,44,57,140,146),
5329 (1,5,69,39,44,57,143,149),
5330 (1,5,70,39,45,58,145,151),
5331 (1,5,71,39,46,59,148,158),
5332 (1,5,72,40,46,59,151,161),
5333 (1,5,73,40,47,60,154,164),
5334 (1,5,74,41,47,61,156,167),
5335 (1,5,75,41,48,62,159,170),
5336 (1,5,76,41,49,63,162,174),
5337 (1,5,77,42,49,64,165,177),
5338 (1,5,78,42,50,65,168,180),
5339 (1,5,79,43,50,66,171,183),
5340 (1,5,80,43,51,67,174,186),
5341 (1,6,1,23,20,22,20,20),
5342 (1,6,2,24,21,23,20,20),
5343 (1,6,3,26,22,24,20,21),
5344 (1,6,4,27,22,26,20,21),
5345 (1,6,5,28,23,27,20,21),
5346 (1,6,6,30,24,28,20,21),
5347 (1,6,7,31,25,29,21,22),
5348 (1,6,8,32,26,30,21,22),
5349 (1,6,9,34,26,32,21,22),
5350 (1,6,10,35,27,33,21,23),
5351 (1,6,11,36,28,34,21,23),
5352 (1,6,12,38,29,35,21,23),
5353 (1,6,13,39,30,37,21,24),
5354 (1,6,14,41,31,38,21,24),
5355 (1,6,15,42,32,39,21,24),
5356 (1,6,16,44,33,41,21,25),
5357 (1,6,17,45,34,42,22,25),
5358 (1,6,18,47,34,43,22,25),
5359 (1,6,19,48,35,45,22,26),
5360 (1,6,20,50,36,46,22,26),
5361 (1,6,21,51,37,48,22,26),
5362 (1,6,22,53,38,49,22,27),
5363 (1,6,23,54,39,51,22,27),
5364 (1,6,24,56,40,52,23,28),
5365 (1,6,25,58,41,53,23,28),
5366 (1,6,26,59,42,55,23,28),
5367 (1,6,27,61,43,56,23,29),
5368 (1,6,28,63,44,58,23,29),
5369 (1,6,29,64,45,59,23,30),
5370 (1,6,30,66,46,61,24,30),
5371 (1,6,31,68,47,62,24,30),
5372 (1,6,32,69,48,64,24,31),
5373 (1,6,33,71,50,66,24,31),
5374 (1,6,34,73,51,67,24,32),
5375 (1,6,35,74,52,69,24,32),
5376 (1,6,36,76,53,70,25,33),
5377 (1,6,37,78,54,72,25,33),
5378 (1,6,38,80,55,74,25,34),
5379 (1,6,39,82,56,75,25,34),
5380 (1,6,40,83,57,77,25,35),
5381 (1,6,41,85,58,79,26,35),
5382 (1,6,42,87,60,80,26,35),
5383 (1,6,43,89,61,82,26,36),
5384 (1,6,44,91,62,84,26,36),
5385 (1,6,45,93,63,85,26,37),
5386 (1,6,46,95,64,87,27,37),
5387 (1,6,47,97,66,89,27,38),
5388 (1,6,48,99,67,91,27,38),
5389 (1,6,49,101,68,93,27,39),
5390 (1,6,50,103,69,94,28,40),
5391 (1,6,51,105,71,96,28,40),
5392 (1,6,52,106,72,97,28,41),
5393 (1,6,53,107,72,98,28,41),
5394 (1,6,54,107,73,98,29,42),
5395 (1,6,55,108,73,99,29,43),
5396 (1,6,56,111,75,102,29,44),
5397 (1,6,57,113,76,104,29,44),
5398 (1,6,58,118,77,106,30,45),
5399 (1,6,59,118,79,108,30,45),
5400 (1,6,60,123,80,110,30,46),
5401 (1,6,61,125,81,112,30,47),
5402 (1,6,62,128,83,114,30,47),
5403 (1,6,63,130,84,117,31,48),
5404 (1,6,64,130,86,119,31,48),
5405 (1,6,65,140,87,128,31,49),
5406 (1,6,66,143,89,131,31,50),
5407 (1,6,67,146,90,133,32,50),
5408 (1,6,68,148,92,135,32,51),
5409 (1,6,69,151,93,138,32,52),
5410 (1,6,70,154,95,140,32,52),
5411 (1,6,71,162,97,144,33,53),
5412 (1,6,72,164,98,146,33,54),
5413 (1,6,73,165,100,148,33,55),
5414 (1,6,74,166,102,151,33,55),
5415 (1,6,75,169,103,154,34,56),
5416 (1,6,76,172,105,157,34,57),
5417 (1,6,77,175,107,157,34,58),
5418 (1,6,78,176,108,157,34,58),
5419 (1,6,79,177,110,157,35,59),
5420 (1,6,80,180,112,160,35,60),
5421 (1,8,1,20,20,20,23,22),
5422 (1,8,2,20,20,20,24,23),
5423 (1,8,3,20,20,21,26,25),
5424 (1,8,4,20,20,21,27,26),
5425 (1,8,5,20,21,21,28,27),
5426 (1,8,6,20,21,21,30,29),
5427 (1,8,7,21,21,22,31,30),
5428 (1,8,8,21,21,22,33,31),
5429 (1,8,9,21,21,22,34,33),
5430 (1,8,10,21,21,23,36,34),
5431 (1,8,11,21,22,23,37,36),
5432 (1,8,12,21,22,23,39,37),
5433 (1,8,13,21,22,24,40,38),
5434 (1,8,14,21,22,24,42,40),
5435 (1,8,15,21,22,24,43,41),
5436 (1,8,16,21,23,25,45,43),
5437 (1,8,17,22,23,25,46,44),
5438 (1,8,18,22,23,25,48,46),
5439 (1,8,19,22,23,26,49,47),
5440 (1,8,20,22,23,26,51,49),
5441 (1,8,21,22,24,26,53,51),
5442 (1,8,22,22,24,27,54,52),
5443 (1,8,23,22,24,27,56,54),
5444 (1,8,24,23,24,28,58,55),
5445 (1,8,25,23,25,28,59,57),
5446 (1,8,26,23,25,28,61,59),
5447 (1,8,27,23,25,29,63,60),
5448 (1,8,28,23,25,29,65,62),
5449 (1,8,29,23,25,30,66,64),
5450 (1,8,30,24,26,30,68,65),
5451 (1,8,31,24,26,30,70,67),
5452 (1,8,32,24,26,31,72,69),
5453 (1,8,33,24,27,31,73,70),
5454 (1,8,34,24,27,32,75,72),
5455 (1,8,35,24,27,32,77,74),
5456 (1,8,36,25,27,33,79,76),
5457 (1,8,37,25,28,33,81,78),
5458 (1,8,38,25,28,34,83,79),
5459 (1,8,39,25,28,34,85,81),
5460 (1,8,40,25,28,35,87,83),
5461 (1,8,41,26,29,35,88,85),
5462 (1,8,42,26,29,35,90,87),
5463 (1,8,43,26,29,36,92,89),
5464 (1,8,44,26,30,36,94,91),
5465 (1,8,45,26,30,37,96,92),
5466 (1,8,46,27,30,37,98,94),
5467 (1,8,47,27,31,38,100,96),
5468 (1,8,48,27,31,38,102,98),
5469 (1,8,49,27,31,39,104,100),
5470 (1,8,50,28,32,40,106,102),
5471 (1,8,51,28,32,40,109,104),
5472 (1,8,52,28,32,41,111,106),
5473 (1,8,53,28,33,41,113,108),
5474 (1,8,54,29,33,42,115,110),
5475 (1,8,55,29,33,42,117,112),
5476 (1,8,56,29,34,43,119,114),
5477 (1,8,57,29,34,43,121,117),
5478 (1,8,58,30,34,44,124,119),
5479 (1,8,59,30,35,44,126,121),
5480 (1,8,60,30,35,45,128,123),
5481 (1,8,61,30,35,46,130,125),
5482 (1,8,62,31,36,46,132,127),
5483 (1,8,63,31,36,47,135,129),
5484 (1,8,64,31,37,47,137,132),
5485 (1,8,65,32,37,48,139,134),
5486 (1,8,66,32,37,49,142,136),
5487 (1,8,67,32,38,49,144,138),
5488 (1,8,68,32,38,50,146,140),
5489 (1,8,69,33,39,50,149,143),
5490 (1,8,70,33,39,51,151,145),
5491 (1,8,71,33,39,52,154,152),
5492 (1,8,72,33,40,53,160,155),
5493 (1,8,73,33,40,54,160,158),
5494 (1,8,74,34,41,54,163,160),
5495 (1,8,75,34,41,55,166,163),
5496 (1,8,76,34,41,56,169,166),
5497 (1,8,77,35,42,57,172,169),
5498 (1,8,78,35,42,57,175,173),
5499 (1,8,79,35,43,58,178,176),
5500 (1,8,80,36,43,59,181,179),
5501 (1,9,1,20,20,21,22,22),
5502 (1,9,2,20,20,22,23,23),
5503 (1,9,3,21,21,22,24,24),
5504 (1,9,4,21,21,23,26,25),
5505 (1,9,5,21,21,23,27,27),
5506 (1,9,6,21,22,24,28,28),
5507 (1,9,7,22,22,24,29,29),
5508 (1,9,8,22,23,25,30,30),
5509 (1,9,9,22,23,26,32,31),
5510 (1,9,10,23,23,26,33,33),
5511 (1,9,11,23,24,27,34,34),
5512 (1,9,12,23,24,27,35,35),
5513 (1,9,13,24,25,28,37,36),
5514 (1,9,14,24,25,29,38,38),
5515 (1,9,15,24,25,29,39,39),
5516 (1,9,16,25,26,30,41,40),
5517 (1,9,17,25,26,31,42,42),
5518 (1,9,18,25,27,31,43,43),
5519 (1,9,19,26,27,32,45,44),
5520 (1,9,20,26,28,33,46,46),
5521 (1,9,21,26,28,33,48,47),
5522 (1,9,22,27,29,34,49,49),
5523 (1,9,23,27,29,35,51,50),
5524 (1,9,24,28,30,35,52,51),
5525 (1,9,25,28,30,36,53,53),
5526 (1,9,26,28,31,37,55,54),
5527 (1,9,27,29,31,37,56,56),
5528 (1,9,28,29,32,38,58,57),
5529 (1,9,29,30,32,39,59,59),
5530 (1,9,30,30,33,40,61,60),
5531 (1,9,31,30,33,40,62,62),
5532 (1,9,32,31,34,41,64,63),
5533 (1,9,33,31,34,42,66,65),
5534 (1,9,34,32,35,43,67,66),
5535 (1,9,35,32,35,44,69,68),
5536 (1,9,36,33,36,44,70,69),
5537 (1,9,37,33,36,45,72,71),
5538 (1,9,38,34,37,46,74,73),
5539 (1,9,39,34,38,47,75,74),
5540 (1,9,40,35,38,48,77,76),
5541 (1,9,41,35,39,48,79,78),
5542 (1,9,42,35,39,49,80,79),
5543 (1,9,43,36,40,50,82,81),
5544 (1,9,44,36,40,51,84,83),
5545 (1,9,45,37,41,52,85,84),
5546 (1,9,46,37,42,53,87,86),
5547 (1,9,47,38,42,54,89,88),
5548 (1,9,48,38,43,55,91,89),
5549 (1,9,49,39,44,55,93,91),
5550 (1,9,50,40,44,56,94,93),
5551 (1,9,51,40,45,57,96,95),
5552 (1,9,52,41,45,58,98,97),
5553 (1,9,53,41,46,59,100,98),
5554 (1,9,54,42,47,60,102,100),
5555 (1,9,55,42,47,61,103,102),
5556 (1,9,56,43,48,62,105,104),
5557 (1,9,57,43,49,63,107,106),
5558 (1,9,58,44,49,64,109,108),
5559 (1,9,59,44,50,65,111,109),
5560 (1,9,60,45,51,66,113,111),
5561 (1,9,61,46,51,67,115,113),
5562 (1,9,62,46,52,68,117,115),
5563 (1,9,63,47,53,69,119,117),
5564 (1,9,64,47,54,70,121,119),
5565 (1,9,65,48,54,71,123,121),
5566 (1,9,66,49,55,72,125,123),
5567 (1,9,67,49,56,73,127,125),
5568 (1,9,68,50,57,74,129,127),
5569 (1,9,69,50,57,75,131,129),
5570 (1,9,70,51,58,76,133,131),
5571 (1,9,71,52,59,78,135,146),
5572 (1,9,72,53,59,79,138,148),
5573 (1,9,73,54,60,80,140,151),
5574 (1,9,74,54,61,89,143,154),
5575 (1,9,75,55,62,91,145,156),
5576 (1,9,76,56,63,92,148,159),
5577 (1,9,77,57,64,93,151,162),
5578 (1,9,78,57,65,95,153,165),
5579 (1,9,79,58,66,96,156,168),
5580 (1,9,80,59,67,97,159,170),
5581 (2,1,1,26,17,24,17,23),
5582 (2,1,2,27,18,25,17,23),
5583 (2,1,3,29,19,26,17,24),
5584 (2,1,4,30,19,27,17,24),
5585 (2,1,5,31,20,29,17,24),
5586 (2,1,6,32,21,30,17,24),
5587 (2,1,7,34,22,31,18,25),
5588 (2,1,8,35,23,32,18,25),
5589 (2,1,9,37,24,34,18,25),
5590 (2,1,10,38,24,35,18,26),
5591 (2,1,11,39,25,36,18,26),
5592 (2,1,12,41,26,37,18,26),
5593 (2,1,13,42,27,39,18,27),
5594 (2,1,14,44,28,40,18,27),
5595 (2,1,15,45,29,41,18,27),
5596 (2,1,16,47,30,43,19,28),
5597 (2,1,17,48,31,44,19,28),
5598 (2,1,18,50,32,45,19,28),
5599 (2,1,19,51,33,47,19,29),
5600 (2,1,20,53,34,48,19,29),
5601 (2,1,21,54,34,50,19,29),
5602 (2,1,22,56,35,51,19,30),
5603 (2,1,23,57,36,52,20,30),
5604 (2,1,24,59,37,54,20,30),
5605 (2,1,25,60,38,55,20,31),
5606 (2,1,26,62,39,57,20,31),
5607 (2,1,27,64,40,58,20,32),
5608 (2,1,28,65,41,60,20,32),
5609 (2,1,29,67,43,61,21,32),
5610 (2,1,30,69,44,63,21,33),
5611 (2,1,31,70,45,64,21,33),
5612 (2,1,32,72,46,66,21,34),
5613 (2,1,33,74,47,67,21,34),
5614 (2,1,34,76,48,69,21,35),
5615 (2,1,35,77,49,71,22,35),
5616 (2,1,36,79,50,72,22,36),
5617 (2,1,37,81,51,74,22,36),
5618 (2,1,38,83,52,76,22,36),
5619 (2,1,39,84,53,77,22,37),
5620 (2,1,40,86,55,79,23,37),
5621 (2,1,41,88,56,81,23,38),
5622 (2,1,42,90,57,82,23,38),
5623 (2,1,43,92,58,84,23,39),
5624 (2,1,44,94,59,86,23,39),
5625 (2,1,45,96,60,87,24,40),
5626 (2,1,46,98,62,89,24,40),
5627 (2,1,47,100,63,91,24,41),
5628 (2,1,48,101,64,93,24,41),
5629 (2,1,49,103,65,94,25,42),
5630 (2,1,50,105,66,96,25,42),
5631 (2,1,51,107,68,98,25,43),
5632 (2,1,52,109,69,100,25,43),
5633 (2,1,53,111,70,102,25,44),
5634 (2,1,54,113,71,104,26,45),
5635 (2,1,55,115,73,105,26,45),
5636 (2,1,56,118,74,107,26,46),
5637 (2,1,57,120,75,109,26,46),
5638 (2,1,58,122,77,111,27,47),
5639 (2,1,59,124,78,113,27,47),
5640 (2,1,60,126,79,115,27,48),
5641 (2,1,61,128,81,117,27,48),
5642 (2,1,62,130,82,119,28,49),
5643 (2,1,63,132,83,121,28,50),
5644 (2,1,64,135,85,123,28,50),
5645 (2,1,65,137,86,125,29,51),
5646 (2,1,66,139,87,127,29,52),
5647 (2,1,67,141,89,129,29,52),
5648 (2,1,68,143,90,131,29,53),
5649 (2,1,69,146,92,133,30,53),
5650 (2,1,70,148,93,135,30,54),
5651 (2,1,71,157,94,142,30,55),
5652 (2,1,72,162,96,148,30,56),
5653 (2,1,73,165,98,150,30,57),
5654 (2,1,74,168,99,153,31,57),
5655 (2,1,75,170,101,154,31,58),
5656 (2,1,76,172,103,156,31,59),
5657 (2,1,77,174,105,159,32,60),
5658 (2,1,78,179,106,162,32,60),
5659 (2,1,79,184,108,167,32,61),
5660 (2,1,80,187,110,170,33,62),
5661 (2,3,1,23,20,23,17,24),
5662 (2,3,2,23,21,24,18,25),
5663 (2,3,3,24,23,25,18,25),
5664 (2,3,4,24,24,26,19,26),
5665 (2,3,5,25,25,27,19,26),
5666 (2,3,6,25,27,28,20,27),
5667 (2,3,7,26,28,28,21,28),
5668 (2,3,8,26,30,29,21,28),
5669 (2,3,9,26,31,30,22,29),
5670 (2,3,10,27,33,31,22,30),
5671 (2,3,11,27,34,32,23,30),
5672 (2,3,12,28,36,33,24,31),
5673 (2,3,13,28,37,34,24,32),
5674 (2,3,14,29,39,35,25,33),
5675 (2,3,15,29,40,36,26,33),
5676 (2,3,16,30,42,37,26,34),
5677 (2,3,17,30,43,39,27,35),
5678 (2,3,18,31,45,40,28,35),
5679 (2,3,19,31,47,41,28,36),
5680 (2,3,20,32,48,42,29,37),
5681 (2,3,21,32,50,43,30,38),
5682 (2,3,22,33,51,44,31,39),
5683 (2,3,23,34,53,45,31,39),
5684 (2,3,24,34,55,46,32,40),
5685 (2,3,25,35,57,47,33,41),
5686 (2,3,26,35,58,48,34,42),
5687 (2,3,27,36,60,50,34,43),
5688 (2,3,28,36,62,51,35,43),
5689 (2,3,29,37,63,52,36,44),
5690 (2,3,30,38,65,53,37,45),
5691 (2,3,31,38,67,54,37,46),
5692 (2,3,32,39,69,56,38,47),
5693 (2,3,33,39,71,57,39,48),
5694 (2,3,34,40,72,58,40,49),
5695 (2,3,35,41,74,59,41,49),
5696 (2,3,36,41,76,61,42,50),
5697 (2,3,37,42,78,62,42,51),
5698 (2,3,38,43,80,63,43,52),
5699 (2,3,39,43,82,64,44,53),
5700 (2,3,40,44,84,66,45,54),
5701 (2,3,41,45,86,67,46,55),
5702 (2,3,42,45,88,68,47,56),
5703 (2,3,43,46,90,70,47,57),
5704 (2,3,44,47,91,71,48,58),
5705 (2,3,45,47,93,72,49,59),
5706 (2,3,46,48,95,74,50,60),
5707 (2,3,47,49,98,75,51,61),
5708 (2,3,48,50,100,77,52,62),
5709 (2,3,49,50,102,78,53,63),
5710 (2,3,50,51,104,79,54,64),
5711 (2,3,51,52,106,81,55,65),
5712 (2,3,52,52,108,82,56,66),
5713 (2,3,53,53,110,84,57,67),
5714 (2,3,54,54,112,85,58,68),
5715 (2,3,55,55,114,87,59,69),
5716 (2,3,56,55,116,88,60,70),
5717 (2,3,57,56,118,90,61,71),
5718 (2,3,58,57,121,91,62,72),
5719 (2,3,59,58,123,93,63,73),
5720 (2,3,60,59,125,94,64,74),
5721 (2,3,61,59,127,96,65,76),
5722 (2,3,62,60,130,97,66,77),
5723 (2,3,63,61,132,99,67,78),
5724 (2,3,64,62,134,100,68,79),
5725 (2,3,65,63,136,102,69,80),
5726 (2,3,66,64,139,104,70,81),
5727 (2,3,67,64,141,105,71,82),
5728 (2,3,68,65,143,107,72,84),
5729 (2,3,69,66,146,108,73,85),
5730 (2,3,70,67,148,110,74,86),
5731 (2,3,71,68,151,112,75,87),
5732 (2,3,72,69,154,114,76,88),
5733 (2,3,73,70,157,116,77,90),
5734 (2,3,74,71,160,118,79,91),
5735 (2,3,75,72,163,120,80,93),
5736 (2,3,76,73,166,122,81,94),
5737 (2,3,77,74,169,124,83,96),
5738 (2,3,78,75,172,126,84,97),
5739 (2,3,79,76,175,128,85,99),
5740 (2,3,80,77,178,130,87,100),
5741 (2,4,1,24,20,23,17,23),
5742 (2,4,2,25,21,24,17,23),
5743 (2,4,3,25,23,24,17,24),
5744 (2,4,4,26,24,25,17,24),
5745 (2,4,5,27,26,26,18,24),
5746 (2,4,6,28,27,26,18,25),
5747 (2,4,7,29,29,27,18,25),
5748 (2,4,8,29,30,28,18,26),
5749 (2,4,9,30,32,29,18,26),
5750 (2,4,10,31,33,29,19,26),
5751 (2,4,11,32,35,30,19,27),
5752 (2,4,12,33,37,31,19,27),
5753 (2,4,13,34,38,32,19,28),
5754 (2,4,14,34,40,32,19,28),
5755 (2,4,15,35,41,33,19,28),
5756 (2,4,16,36,43,34,20,29),
5757 (2,4,17,37,45,35,20,29),
5758 (2,4,18,38,46,36,20,30),
5759 (2,4,19,39,48,37,20,30),
5760 (2,4,20,40,50,37,21,31),
5761 (2,4,21,41,52,38,21,31),
5762 (2,4,22,42,53,39,21,31),
5763 (2,4,23,43,55,40,21,32),
5764 (2,4,24,43,57,41,21,32),
5765 (2,4,25,44,59,42,22,33),
5766 (2,4,26,45,60,43,22,33),
5767 (2,4,27,46,62,44,22,34),
5768 (2,4,28,47,64,44,22,34),
5769 (2,4,29,48,66,45,23,35),
5770 (2,4,30,49,68,46,23,35),
5771 (2,4,31,50,70,47,23,36),
5772 (2,4,32,51,72,48,23,36),
5773 (2,4,33,53,73,49,24,37),
5774 (2,4,34,54,75,50,24,38),
5775 (2,4,35,55,77,51,24,38),
5776 (2,4,36,56,79,52,24,39),
5777 (2,4,37,57,81,53,25,39),
5778 (2,4,38,58,83,54,25,40),
5779 (2,4,39,59,85,55,25,40),
5780 (2,4,40,60,87,56,26,41),
5781 (2,4,41,61,89,57,26,41),
5782 (2,4,42,62,91,58,26,42),
5783 (2,4,43,63,93,59,27,43),
5784 (2,4,44,65,95,60,27,43),
5785 (2,4,45,66,98,61,27,44),
5786 (2,4,46,67,100,62,27,44),
5787 (2,4,47,68,102,64,28,45),
5788 (2,4,48,69,104,65,28,46),
5789 (2,4,49,71,106,66,28,46),
5790 (2,4,50,72,108,67,29,47),
5791 (2,4,51,73,110,68,29,48),
5792 (2,4,52,74,113,69,29,48),
5793 (2,4,53,75,115,70,30,49),
5794 (2,4,54,77,117,71,30,50),
5795 (2,4,55,78,119,73,30,50),
5796 (2,4,56,79,122,74,31,51),
5797 (2,4,57,80,124,75,31,52),
5798 (2,4,58,82,126,76,31,52),
5799 (2,4,59,83,129,77,32,53),
5800 (2,4,60,84,131,78,32,54),
5801 (2,4,61,86,133,80,33,54),
5802 (2,4,62,87,136,81,33,55),
5803 (2,4,63,88,138,82,33,56),
5804 (2,4,64,90,140,83,34,57),
5805 (2,4,65,91,143,85,34,57),
5806 (2,4,66,92,145,86,34,58),
5807 (2,4,67,94,148,87,35,59),
5808 (2,4,68,95,150,88,35,59),
5809 (2,4,69,97,153,90,36,60),
5810 (2,4,70,98,155,91,36,61),
5811 (2,4,71,100,158,92,36,62),
5812 (2,4,72,102,161,94,37,62),
5813 (2,4,73,103,164,99,37,63),
5814 (2,4,74,105,167,100,38,64),
5815 (2,4,75,107,170,102,38,65),
5816 (2,4,76,108,173,102,38,66),
5817 (2,4,77,110,176,102,39,67),
5818 (2,4,78,112,180,103,39,68),
5819 (2,4,79,114,183,105,40,69),
5820 (2,4,80,116,186,107,40,70),
5821 (2,6,1,26,17,24,17,23),
5822 (2,6,2,27,18,25,17,23),
5823 (2,6,3,29,19,26,17,24),
5824 (2,6,4,30,19,27,17,24),
5825 (2,6,5,31,20,29,17,24),
5826 (2,6,6,32,21,30,17,24),
5827 (2,6,7,34,22,31,18,25),
5828 (2,6,8,35,23,32,18,25),
5829 (2,6,9,37,24,34,18,25),
5830 (2,6,10,38,24,35,18,26),
5831 (2,6,11,39,25,36,18,26),
5832 (2,6,12,41,26,37,18,26),
5833 (2,6,13,42,27,39,18,27),
5834 (2,6,14,44,28,40,18,27),
5835 (2,6,15,45,29,41,18,27),
5836 (2,6,16,47,30,43,19,28),
5837 (2,6,17,48,31,44,19,28),
5838 (2,6,18,50,32,45,19,28),
5839 (2,6,19,51,33,47,19,29),
5840 (2,6,20,53,34,48,19,29),
5841 (2,6,21,54,34,50,19,29),
5842 (2,6,22,56,35,51,19,30),
5843 (2,6,23,57,36,52,20,30),
5844 (2,6,24,59,37,54,20,30),
5845 (2,6,25,60,38,55,20,31),
5846 (2,6,26,62,39,57,20,31),
5847 (2,6,27,64,40,58,20,32),
5848 (2,6,28,65,41,60,20,32),
5849 (2,6,29,67,43,61,21,32),
5850 (2,6,30,69,44,63,21,33),
5851 (2,6,31,70,45,64,21,33),
5852 (2,6,32,72,46,66,21,34),
5853 (2,6,33,74,47,67,21,34),
5854 (2,6,34,76,48,69,21,35),
5855 (2,6,35,77,49,71,22,35),
5856 (2,6,36,79,50,72,22,36),
5857 (2,6,37,81,51,74,22,36),
5858 (2,6,38,83,52,76,22,36),
5859 (2,6,39,84,53,77,22,37),
5860 (2,6,40,86,55,79,23,37),
5861 (2,6,41,88,56,81,23,38),
5862 (2,6,42,90,57,82,23,38),
5863 (2,6,43,92,58,84,23,39),
5864 (2,6,44,94,59,86,23,39),
5865 (2,6,45,96,60,87,24,40),
5866 (2,6,46,98,62,89,24,40),
5867 (2,6,47,100,63,91,24,41),
5868 (2,6,48,101,64,93,24,41),
5869 (2,6,49,103,65,94,25,42),
5870 (2,6,50,105,66,96,25,42),
5871 (2,6,51,107,68,98,25,43),
5872 (2,6,52,109,69,100,25,43),
5873 (2,6,53,110,69,100,25,44),
5874 (2,6,54,111,70,101,26,45),
5875 (2,6,55,111,70,101,26,45),
5876 (2,6,56,114,72,104,26,46),
5877 (2,6,57,116,73,106,26,46),
5878 (2,6,58,118,74,108,27,47),
5879 (2,6,59,124,76,110,27,47),
5880 (2,6,60,126,77,112,27,48),
5881 (2,6,61,128,78,114,27,49),
5882 (2,6,62,131,80,116,27,49),
5883 (2,6,63,133,81,119,28,50),
5884 (2,6,64,136,83,121,28,50),
5885 (2,6,65,136,84,123,28,51),
5886 (2,6,66,142,86,126,28,52),
5887 (2,6,67,145,87,128,29,52),
5888 (2,6,68,147,89,130,29,53),
5889 (2,6,69,150,90,133,29,54),
5890 (2,6,70,157,92,135,29,54),
5891 (2,6,71,160,94,138,30,55),
5892 (2,6,72,163,95,140,30,56),
5893 (2,6,73,166,97,151,30,57),
5894 (2,6,74,169,99,154,30,57),
5895 (2,6,75,172,100,156,31,58),
5896 (2,6,76,175,102,160,31,59),
5897 (2,6,77,179,104,162,31,60),
5898 (2,6,78,182,105,165,31,60),
5899 (2,6,79,191,107,168,32,61),
5900 (2,6,80,194,109,171,32,62),
5901 (2,7,1,24,17,23,18,25),
5902 (2,7,2,25,17,24,19,26),
5903 (2,7,3,26,18,25,20,27),
5904 (2,7,4,26,18,26,21,28),
5905 (2,7,5,27,19,27,22,29),
5906 (2,7,6,28,19,28,23,30),
5907 (2,7,7,29,20,29,24,31),
5908 (2,7,8,30,20,30,25,32),
5909 (2,7,9,31,21,31,26,33),
5910 (2,7,10,32,21,32,27,34),
5911 (2,7,11,33,22,33,28,36),
5912 (2,7,12,34,22,34,29,37),
5913 (2,7,13,34,23,35,30,38),
5914 (2,7,14,35,23,36,31,39),
5915 (2,7,15,36,24,37,32,40),
5916 (2,7,16,37,24,39,33,41),
5917 (2,7,17,38,25,40,34,43),
5918 (2,7,18,39,25,41,35,44),
5919 (2,7,19,40,26,42,36,45),
5920 (2,7,20,41,26,43,37,46),
5921 (2,7,21,42,27,44,38,47),
5922 (2,7,22,43,27,45,39,49),
5923 (2,7,23,44,28,47,40,50),
5924 (2,7,24,45,28,48,41,51),
5925 (2,7,25,47,29,49,43,52),
5926 (2,7,26,48,30,50,44,54),
5927 (2,7,27,49,30,52,45,55),
5928 (2,7,28,50,31,53,46,56),
5929 (2,7,29,51,31,54,47,58),
5930 (2,7,30,52,32,55,48,59),
5931 (2,7,31,53,33,57,50,60),
5932 (2,7,32,54,33,58,51,62),
5933 (2,7,33,55,34,59,52,63),
5934 (2,7,34,57,34,61,53,65),
5935 (2,7,35,58,35,62,55,66),
5936 (2,7,36,59,36,63,56,67),
5937 (2,7,37,60,36,65,57,69),
5938 (2,7,38,61,37,66,58,70),
5939 (2,7,39,62,38,67,60,72),
5940 (2,7,40,64,38,69,61,73),
5941 (2,7,41,65,39,70,62,75),
5942 (2,7,42,66,40,72,64,76),
5943 (2,7,43,67,40,73,65,78),
5944 (2,7,44,69,41,74,66,79),
5945 (2,7,45,70,42,76,68,81),
5946 (2,7,46,71,42,77,69,82),
5947 (2,7,47,72,43,79,70,84),
5948 (2,7,48,74,44,80,72,85),
5949 (2,7,49,75,45,82,73,87),
5950 (2,7,50,76,45,83,75,89),
5951 (2,7,51,78,46,85,76,90),
5952 (2,7,52,79,47,86,77,92),
5953 (2,7,53,80,47,88,79,93),
5954 (2,7,54,82,48,90,80,95),
5955 (2,7,55,83,49,91,82,97),
5956 (2,7,56,85,50,93,83,98),
5957 (2,7,57,86,50,94,85,100),
5958 (2,7,58,87,51,96,86,102),
5959 (2,7,59,89,52,97,88,103),
5960 (2,7,60,90,53,99,89,105),
5961 (2,7,61,92,54,101,91,107),
5962 (2,7,62,93,54,102,92,109),
5963 (2,7,63,95,55,104,94,110),
5964 (2,7,64,96,56,106,95,112),
5965 (2,7,65,97,57,107,97,114),
5966 (2,7,66,99,58,109,99,116),
5967 (2,7,67,100,58,111,100,118),
5968 (2,7,68,102,59,113,102,119),
5969 (2,7,69,103,60,114,103,121),
5970 (2,7,70,105,61,116,105,123),
5971 (2,7,71,106,62,118,117,125),
5972 (2,7,72,108,63,120,119,128),
5973 (2,7,73,110,64,122,122,130),
5974 (2,7,74,112,65,125,124,132),
5975 (2,7,75,114,66,127,126,134),
5976 (2,7,76,116,67,129,128,137),
5977 (2,7,77,117,68,131,128,139),
5978 (2,7,78,119,69,133,133,141),
5979 (2,7,79,121,70,136,135,144),
5980 (2,7,80,123,71,138,137,146),
5981 (2,9,1,23,17,23,19,25),
5982 (2,9,2,23,17,24,20,26),
5983 (2,9,3,24,18,24,21,27),
5984 (2,9,4,24,18,25,23,28),
5985 (2,9,5,24,18,25,24,30),
5986 (2,9,6,24,19,26,25,31),
5987 (2,9,7,25,19,26,26,32),
5988 (2,9,8,25,20,27,27,33),
5989 (2,9,9,25,20,27,29,34),
5990 (2,9,10,26,20,28,30,36),
5991 (2,9,11,26,21,29,31,37),
5992 (2,9,12,26,21,29,33,38),
5993 (2,9,13,27,22,30,34,39),
5994 (2,9,14,27,22,31,35,41),
5995 (2,9,15,27,23,31,37,42),
5996 (2,9,16,28,23,32,38,43),
5997 (2,9,17,28,23,32,39,45),
5998 (2,9,18,28,24,33,41,46),
5999 (2,9,19,29,24,34,42,47),
6000 (2,9,20,29,25,34,43,49),
6001 (2,9,21,29,25,35,45,50),
6002 (2,9,22,30,26,36,46,51),
6003 (2,9,23,30,26,37,48,53),
6004 (2,9,24,30,27,37,49,54),
6005 (2,9,25,31,27,38,51,56),
6006 (2,9,26,31,28,39,52,57),
6007 (2,9,27,32,28,39,54,59),
6008 (2,9,28,32,29,40,55,60),
6009 (2,9,29,32,29,41,57,62),
6010 (2,9,30,33,30,42,58,63),
6011 (2,9,31,33,30,42,60,65),
6012 (2,9,32,34,31,43,61,66),
6013 (2,9,33,34,31,44,63,68),
6014 (2,9,34,35,32,45,64,69),
6015 (2,9,35,35,32,45,66,71),
6016 (2,9,36,36,33,46,68,72),
6017 (2,9,37,36,34,47,69,74),
6018 (2,9,38,36,34,48,71,76),
6019 (2,9,39,37,35,49,72,77),
6020 (2,9,40,37,35,50,74,79),
6021 (2,9,41,38,36,50,76,80),
6022 (2,9,42,38,36,51,77,82),
6023 (2,9,43,39,37,52,79,84),
6024 (2,9,44,39,38,53,81,85),
6025 (2,9,45,40,38,54,83,87),
6026 (2,9,46,40,39,55,84,89),
6027 (2,9,47,41,39,56,86,91),
6028 (2,9,48,41,40,56,88,92),
6029 (2,9,49,42,41,57,90,94),
6030 (2,9,50,42,41,58,91,96),
6031 (2,9,51,43,42,59,93,98),
6032 (2,9,52,43,43,60,95,99),
6033 (2,9,53,44,43,61,97,101),
6034 (2,9,54,45,44,62,99,103),
6035 (2,9,55,45,45,63,101,105),
6036 (2,9,56,46,45,64,102,107),
6037 (2,9,57,46,46,65,104,109),
6038 (2,9,58,47,47,66,106,110),
6039 (2,9,59,47,47,67,108,112),
6040 (2,9,60,48,48,68,110,114),
6041 (2,9,61,48,49,69,112,116),
6042 (2,9,62,49,49,70,114,118),
6043 (2,9,63,50,50,71,116,120),
6044 (2,9,64,50,51,72,118,122),
6045 (2,9,65,51,51,73,120,124),
6046 (2,9,66,52,52,74,122,126),
6047 (2,9,67,52,53,75,124,128),
6048 (2,9,68,53,54,76,126,130),
6049 (2,9,69,53,54,77,128,132),
6050 (2,9,70,54,55,78,130,134),
6051 (2,9,71,55,56,88,134,145),
6052 (2,9,72,56,56,89,135,147),
6053 (2,9,73,57,57,90,137,150),
6054 (2,9,74,57,58,91,142,153),
6055 (2,9,75,58,59,93,142,155),
6056 (2,9,76,59,60,94,145,158),
6057 (2,9,77,60,61,95,148,161),
6058 (2,9,78,60,62,97,150,164),
6059 (2,9,79,61,63,98,153,167),
6060 (2,9,80,62,64,99,156,169),
6061 (3,1,1,25,16,25,19,19),
6062 (3,1,2,26,17,26,19,19),
6063 (3,1,3,28,18,27,19,20),
6064 (3,1,4,29,18,28,19,20),
6065 (3,1,5,30,19,30,19,20),
6066 (3,1,6,31,20,31,19,20),
6067 (3,1,7,33,21,32,20,21),
6068 (3,1,8,34,22,33,20,21),
6069 (3,1,9,36,23,35,20,21),
6070 (3,1,10,37,23,36,20,22),
6071 (3,1,11,38,24,37,20,22),
6072 (3,1,12,40,25,38,20,22),
6073 (3,1,13,41,26,40,20,23),
6074 (3,1,14,43,27,41,20,23),
6075 (3,1,15,44,28,42,20,23),
6076 (3,1,16,46,29,44,21,24),
6077 (3,1,17,47,30,45,21,24),
6078 (3,1,18,49,31,46,21,24),
6079 (3,1,19,50,32,48,21,25),
6080 (3,1,20,52,33,49,21,25),
6081 (3,1,21,53,34,51,21,26),
6082 (3,1,22,55,34,52,21,26),
6083 (3,1,23,56,35,53,21,26),
6084 (3,1,24,58,36,55,22,27),
6085 (3,1,25,59,37,56,22,27),
6086 (3,1,26,61,38,58,22,27),
6087 (3,1,27,63,39,59,22,28),
6088 (3,1,28,64,41,61,22,28),
6089 (3,1,29,66,42,62,22,29),
6090 (3,1,30,68,43,64,23,29),
6091 (3,1,31,69,44,65,23,30),
6092 (3,1,32,71,45,67,23,30),
6093 (3,1,33,73,46,68,23,30),
6094 (3,1,34,75,47,70,23,31),
6095 (3,1,35,76,48,72,24,31),
6096 (3,1,36,78,49,73,24,32),
6097 (3,1,37,80,50,75,24,32),
6098 (3,1,38,82,51,76,24,33),
6099 (3,1,39,84,52,78,24,33),
6100 (3,1,40,85,54,80,24,34),
6101 (3,1,41,87,55,81,25,34),
6102 (3,1,42,89,56,83,25,35),
6103 (3,1,43,91,57,85,25,35),
6104 (3,1,44,93,58,87,25,36),
6105 (3,1,45,95,59,88,26,36),
6106 (3,1,46,97,61,90,26,37),
6107 (3,1,47,99,62,92,26,37),
6108 (3,1,48,101,63,94,26,38),
6109 (3,1,49,102,64,95,26,38),
6110 (3,1,50,104,65,97,27,39),
6111 (3,1,51,106,67,99,27,39),
6112 (3,1,52,108,68,101,27,40),
6113 (3,1,53,110,69,103,27,40),
6114 (3,1,54,112,70,104,28,41),
6115 (3,1,55,115,72,106,28,41),
6116 (3,1,56,117,73,108,28,42),
6117 (3,1,57,119,74,110,28,42),
6118 (3,1,58,121,76,112,29,43),
6119 (3,1,59,123,77,114,29,43),
6120 (3,1,60,125,78,116,29,44),
6121 (3,1,61,127,80,118,29,45),
6122 (3,1,62,129,81,120,30,45),
6123 (3,1,63,131,82,122,30,46),
6124 (3,1,64,134,84,124,30,46),
6125 (3,1,65,136,85,126,31,47),
6126 (3,1,66,138,86,128,31,48),
6127 (3,1,67,140,88,130,31,48),
6128 (3,1,68,142,89,132,31,49),
6129 (3,1,69,145,91,134,32,49),
6130 (3,1,70,147,92,136,32,50),
6131 (3,1,71,150,93,138,32,51),
6132 (3,1,72,152,95,141,32,52),
6133 (3,1,73,164,97,151,32,53),
6134 (3,1,74,164,98,151,33,53),
6135 (3,1,75,170,100,156,33,54),
6136 (3,1,76,173,102,160,33,55),
6137 (3,1,77,173,104,160,34,56),
6138 (3,1,78,176,105,162,34,56),
6139 (3,1,79,183,107,168,34,57),
6140 (3,1,80,186,109,171,35,58),
6141 (3,2,1,24,16,25,19,20),
6142 (3,2,2,25,17,26,20,21),
6143 (3,2,3,26,17,27,20,21),
6144 (3,2,4,27,18,28,21,22),
6145 (3,2,5,28,18,29,22,23),
6146 (3,2,6,29,19,30,22,24),
6147 (3,2,7,31,20,31,23,24),
6148 (3,2,8,32,20,32,24,25),
6149 (3,2,9,33,21,33,24,26),
6150 (3,2,10,34,21,34,25,26),
6151 (3,2,11,35,22,36,26,27),
6152 (3,2,12,36,23,37,26,28),
6153 (3,2,13,38,23,38,27,29),
6154 (3,2,14,39,24,39,28,30),
6155 (3,2,15,40,25,40,29,30),
6156 (3,2,16,41,25,41,29,31),
6157 (3,2,17,43,26,43,30,32),
6158 (3,2,18,44,27,44,31,33),
6159 (3,2,19,45,28,45,32,34),
6160 (3,2,20,47,28,46,32,35),
6161 (3,2,21,48,29,47,33,35),
6162 (3,2,22,49,30,49,34,36),
6163 (3,2,23,51,30,50,35,37),
6164 (3,2,24,52,31,51,36,38),
6165 (3,2,25,53,32,52,36,39),
6166 (3,2,26,55,33,54,37,40),
6167 (3,2,27,56,33,55,38,41),
6168 (3,2,28,57,34,56,39,42),
6169 (3,2,29,59,35,58,40,43),
6170 (3,2,30,60,36,59,41,43),
6171 (3,2,31,62,37,60,42,44),
6172 (3,2,32,63,37,62,42,45),
6173 (3,2,33,65,38,63,43,46),
6174 (3,2,34,66,39,65,44,47),
6175 (3,2,35,68,40,66,45,48),
6176 (3,2,36,69,41,67,46,49),
6177 (3,2,37,71,41,69,47,50),
6178 (3,2,38,72,42,70,48,51),
6179 (3,2,39,74,43,72,49,52),
6180 (3,2,40,75,44,73,50,53),
6181 (3,2,41,77,45,75,51,54),
6182 (3,2,42,78,46,76,52,55),
6183 (3,2,43,80,47,78,53,56),
6184 (3,2,44,82,47,79,54,57),
6185 (3,2,45,83,48,81,55,59),
6186 (3,2,46,85,49,82,56,60),
6187 (3,2,47,87,50,84,57,61),
6188 (3,2,48,88,51,85,58,62),
6189 (3,2,49,90,52,87,59,63),
6190 (3,2,50,92,53,89,60,64),
6191 (3,2,51,93,54,90,61,65),
6192 (3,2,52,95,55,92,62,66),
6193 (3,2,53,97,56,93,63,67),
6194 (3,2,54,98,57,95,64,69),
6195 (3,2,55,100,58,97,65,70),
6196 (3,2,56,102,59,98,66,71),
6197 (3,2,57,104,60,100,67,72),
6198 (3,2,58,106,61,102,68,73),
6199 (3,2,59,107,62,103,69,74),
6200 (3,2,60,109,63,105,70,76),
6201 (3,2,61,111,64,107,72,77),
6202 (3,2,62,113,65,109,73,78),
6203 (3,2,63,115,66,110,74,79),
6204 (3,2,64,117,67,112,75,80),
6205 (3,2,65,118,68,114,76,82),
6206 (3,2,66,120,69,116,77,83),
6207 (3,2,67,122,70,118,78,84),
6208 (3,2,68,124,71,119,80,85),
6209 (3,2,69,126,72,121,81,87),
6210 (3,2,70,128,73,123,82,88),
6211 (3,2,71,150,74,125,83,89),
6212 (3,2,72,152,75,128,85,91),
6213 (3,2,73,156,76,130,86,93),
6214 (3,2,74,158,78,132,88,94),
6215 (3,2,75,161,79,134,89,96),
6216 (3,2,76,164,80,137,91,97),
6217 (3,2,77,166,82,139,92,99),
6218 (3,2,78,170,83,141,94,101),
6219 (3,2,79,172,84,144,95,102),
6220 (3,2,80,175,86,146,97,104),
6221 (3,3,1,22,19,24,19,20),
6222 (3,3,2,22,20,25,20,21),
6223 (3,3,3,23,22,26,20,21),
6224 (3,3,4,23,23,27,21,22),
6225 (3,3,5,24,25,28,21,23),
6226 (3,3,6,24,26,29,22,23),
6227 (3,3,7,25,27,29,23,24),
6228 (3,3,8,25,29,30,23,25),
6229 (3,3,9,25,30,31,24,25),
6230 (3,3,10,26,32,32,24,26),
6231 (3,3,11,26,33,33,25,27),
6232 (3,3,12,27,35,34,26,27),
6233 (3,3,13,27,36,35,26,28),
6234 (3,3,14,28,38,36,27,29),
6235 (3,3,15,28,39,37,28,29),
6236 (3,3,16,29,41,38,28,30),
6237 (3,3,17,29,42,39,29,31),
6238 (3,3,18,30,44,41,30,32),
6239 (3,3,19,30,46,42,30,32),
6240 (3,3,20,31,47,43,31,33),
6241 (3,3,21,32,49,44,32,34),
6242 (3,3,22,32,51,45,33,35),
6243 (3,3,23,33,52,46,33,36),
6244 (3,3,24,33,54,47,34,36),
6245 (3,3,25,34,56,48,35,37),
6246 (3,3,26,34,57,49,35,38),
6247 (3,3,27,35,59,51,36,39),
6248 (3,3,28,35,61,52,37,40),
6249 (3,3,29,36,63,53,38,40),
6250 (3,3,30,37,64,54,39,41),
6251 (3,3,31,37,66,55,39,42),
6252 (3,3,32,38,68,57,40,43),
6253 (3,3,33,38,70,58,41,44),
6254 (3,3,34,39,71,59,42,45),
6255 (3,3,35,40,73,60,43,46),
6256 (3,3,36,40,75,62,43,47),
6257 (3,3,37,41,77,63,44,47),
6258 (3,3,38,42,79,64,45,48),
6259 (3,3,39,42,81,65,46,49),
6260 (3,3,40,43,83,67,47,50),
6261 (3,3,41,44,85,68,48,51),
6262 (3,3,42,44,87,69,49,52),
6263 (3,3,43,45,89,71,49,53),
6264 (3,3,44,46,91,72,50,54),
6265 (3,3,45,46,93,73,51,55),
6266 (3,3,46,47,95,75,52,56),
6267 (3,3,47,48,97,76,53,57),
6268 (3,3,48,49,99,78,54,58),
6269 (3,3,49,49,101,79,55,59),
6270 (3,3,50,50,103,80,56,60),
6271 (3,3,51,51,105,82,57,61),
6272 (3,3,52,51,107,83,58,62),
6273 (3,3,53,52,109,85,59,63),
6274 (3,3,54,53,111,86,60,64),
6275 (3,3,55,54,113,88,61,65),
6276 (3,3,56,55,115,89,62,66),
6277 (3,3,57,55,118,91,62,67),
6278 (3,3,58,56,120,92,63,68),
6279 (3,3,59,57,122,94,64,70),
6280 (3,3,60,58,124,95,65,71),
6281 (3,3,61,58,126,97,67,72),
6282 (3,3,62,59,129,98,68,73),
6283 (3,3,63,60,131,100,69,74),
6284 (3,3,64,61,133,101,70,75),
6285 (3,3,65,62,135,103,71,76),
6286 (3,3,66,63,138,105,72,77),
6287 (3,3,67,63,140,106,73,78),
6288 (3,3,68,64,142,108,74,80),
6289 (3,3,69,65,145,109,75,81),
6290 (3,3,70,66,147,111,76,82),
6291 (3,3,71,67,150,113,77,83),
6292 (3,3,72,68,153,115,78,84),
6293 (3,3,73,69,156,117,79,86),
6294 (3,3,74,70,159,119,81,87),
6295 (3,3,75,71,162,121,82,89),
6296 (3,3,76,72,165,123,83,90),
6297 (3,3,77,73,168,125,85,92),
6298 (3,3,78,74,171,127,86,93),
6299 (3,3,79,75,174,129,87,95),
6300 (3,3,80,76,177,131,89,96),
6301 (3,4,1,23,19,24,19,19),
6302 (3,4,2,24,20,25,19,19),
6303 (3,4,3,24,22,25,19,20),
6304 (3,4,4,25,23,26,19,20),
6305 (3,4,5,26,25,27,20,20),
6306 (3,4,6,27,26,27,20,21),
6307 (3,4,7,28,28,28,20,21),
6308 (3,4,8,28,29,29,20,22),
6309 (3,4,9,29,31,30,20,22),
6310 (3,4,10,30,32,30,20,22),
6311 (3,4,11,31,34,31,21,23),
6312 (3,4,12,32,36,32,21,23),
6313 (3,4,13,33,37,33,21,24),
6314 (3,4,14,33,39,33,21,24),
6315 (3,4,15,34,40,34,21,25),
6316 (3,4,16,35,42,35,22,25),
6317 (3,4,17,36,44,36,22,25),
6318 (3,4,18,37,45,37,22,26),
6319 (3,4,19,38,47,38,22,26),
6320 (3,4,20,39,49,38,22,27),
6321 (3,4,21,40,51,39,23,27),
6322 (3,4,22,41,52,40,23,28),
6323 (3,4,23,42,54,41,23,28),
6324 (3,4,24,43,56,42,23,29),
6325 (3,4,25,44,58,43,24,29),
6326 (3,4,26,44,59,44,24,30),
6327 (3,4,27,45,61,44,24,30),
6328 (3,4,28,46,63,45,24,31),
6329 (3,4,29,47,65,46,25,31),
6330 (3,4,30,48,67,47,25,32),
6331 (3,4,31,49,69,48,25,32),
6332 (3,4,32,51,71,49,25,33),
6333 (3,4,33,52,72,50,26,33),
6334 (3,4,34,53,74,51,26,34),
6335 (3,4,35,54,76,52,26,34),
6336 (3,4,36,55,78,53,26,35),
6337 (3,4,37,56,80,54,27,35),
6338 (3,4,38,57,82,55,27,36),
6339 (3,4,39,58,84,56,27,37),
6340 (3,4,40,59,86,57,28,37),
6341 (3,4,41,60,88,58,28,38),
6342 (3,4,42,61,90,59,28,38),
6343 (3,4,43,63,92,60,28,39),
6344 (3,4,44,64,95,61,29,39),
6345 (3,4,45,65,97,62,29,40),
6346 (3,4,46,66,99,63,29,41),
6347 (3,4,47,67,101,64,30,41),
6348 (3,4,48,68,103,66,30,42),
6349 (3,4,49,70,105,67,30,43),
6350 (3,4,50,71,107,68,31,43),
6351 (3,4,51,72,110,69,31,44),
6352 (3,4,52,73,112,70,31,44),
6353 (3,4,53,74,114,71,32,45),
6354 (3,4,54,76,116,72,32,46),
6355 (3,4,55,77,118,73,32,46),
6356 (3,4,56,78,121,75,33,47),
6357 (3,4,57,80,123,76,33,48),
6358 (3,4,58,81,125,77,33,48),
6359 (3,4,59,82,128,78,34,49),
6360 (3,4,60,83,130,79,34,50),
6361 (3,4,61,85,132,81,34,51),
6362 (3,4,62,86,135,82,35,51),
6363 (3,4,63,87,137,83,35,52),
6364 (3,4,64,89,139,84,36,53),
6365 (3,4,65,90,142,86,36,53),
6366 (3,4,66,91,144,87,36,54),
6367 (3,4,67,93,147,88,37,55),
6368 (3,4,68,94,149,89,37,56),
6369 (3,4,69,96,152,91,38,56),
6370 (3,4,70,97,154,92,38,57),
6371 (3,4,71,99,157,93,38,58),
6372 (3,4,72,101,160,96,39,58),
6373 (3,4,73,102,163,97,39,59),
6374 (3,4,74,104,166,98,40,60),
6375 (3,4,75,106,169,100,40,61),
6376 (3,4,76,107,172,101,40,62),
6377 (3,4,77,109,175,103,41,63),
6378 (3,4,78,111,179,105,41,64),
6379 (3,4,79,113,182,106,42,65),
6380 (3,4,80,115,185,108,42,66),
6381 (3,5,1,22,16,23,21,22),
6382 (3,5,2,22,16,23,22,23),
6383 (3,5,3,22,16,24,24,25),
6384 (3,5,4,22,17,24,25,26),
6385 (3,5,5,23,17,24,26,27),
6386 (3,5,6,23,17,25,28,29),
6387 (3,5,7,23,17,25,29,30),
6388 (3,5,8,23,18,26,30,32),
6389 (3,5,9,23,18,26,32,33),
6390 (3,5,10,23,18,26,33,35),
6391 (3,5,11,24,18,27,35,36),
6392 (3,5,12,24,19,27,36,38),
6393 (3,5,13,24,19,28,37,39),
6394 (3,5,14,24,19,28,39,41),
6395 (3,5,15,24,19,28,40,42),
6396 (3,5,16,24,20,29,42,44),
6397 (3,5,17,25,20,29,43,45),
6398 (3,5,18,25,20,30,45,47),
6399 (3,5,19,25,21,30,46,49),
6400 (3,5,20,25,21,31,48,50),
6401 (3,5,21,25,21,31,50,52),
6402 (3,5,22,26,22,31,51,53),
6403 (3,5,23,26,22,32,53,55),
6404 (3,5,24,26,22,32,54,57),
6405 (3,5,25,26,22,33,56,58),
6406 (3,5,26,27,23,33,58,60),
6407 (3,5,27,27,23,34,59,62),
6408 (3,5,28,27,23,34,61,64),
6409 (3,5,29,27,24,35,63,65),
6410 (3,5,30,28,24,35,64,67),
6411 (3,5,31,28,24,36,66,69),
6412 (3,5,32,28,25,36,68,71),
6413 (3,5,33,28,25,37,70,72),
6414 (3,5,34,29,26,38,71,74),
6415 (3,5,35,29,26,38,73,76),
6416 (3,5,36,29,26,39,75,78),
6417 (3,5,37,29,27,39,77,80),
6418 (3,5,38,30,27,40,78,82),
6419 (3,5,39,30,27,40,80,84),
6420 (3,5,40,30,28,41,82,86),
6421 (3,5,41,31,28,41,84,88),
6422 (3,5,42,31,29,42,86,89),
6423 (3,5,43,31,29,43,88,91),
6424 (3,5,44,32,29,43,90,93),
6425 (3,5,45,32,30,44,92,95),
6426 (3,5,46,32,30,44,93,97),
6427 (3,5,47,32,30,45,95,99),
6428 (3,5,48,33,31,46,97,101),
6429 (3,5,49,33,31,46,99,103),
6430 (3,5,50,33,32,47,101,106),
6431 (3,5,51,34,32,48,103,108),
6432 (3,5,52,34,33,48,105,110),
6433 (3,5,53,35,33,49,107,112),
6434 (3,5,54,35,33,50,109,114),
6435 (3,5,55,35,34,50,111,116),
6436 (3,5,56,36,34,51,113,118),
6437 (3,5,57,36,35,52,116,120),
6438 (3,5,58,36,35,52,118,123),
6439 (3,5,59,37,36,53,120,125),
6440 (3,5,60,37,36,54,122,127),
6441 (3,5,61,37,37,54,124,129),
6442 (3,5,62,38,37,55,126,131),
6443 (3,5,63,38,38,56,128,134),
6444 (3,5,64,39,38,57,131,136),
6445 (3,5,65,39,39,57,133,138),
6446 (3,5,66,39,39,58,135,141),
6447 (3,5,67,40,40,59,137,143),
6448 (3,5,68,40,40,59,139,145),
6449 (3,5,69,41,40,60,142,148),
6450 (3,5,70,41,41,61,144,150),
6451 (3,5,71,41,42,62,147,153),
6452 (3,5,72,42,42,62,150,163),
6453 (3,5,73,42,43,63,153,166),
6454 (3,5,74,43,43,64,155,170),
6455 (3,5,75,43,44,65,158,173),
6456 (3,5,76,43,45,66,161,176),
6457 (3,5,77,44,45,67,164,179),
6458 (3,5,78,44,46,68,167,182),
6459 (3,5,79,45,46,69,170,184),
6460 (3,5,80,45,47,70,173,189),
6461 (3,6,1,25,16,25,19,19),
6462 (3,6,2,26,17,26,19,19),
6463 (3,6,3,28,18,27,19,20),
6464 (3,6,4,29,18,28,19,20),
6465 (3,6,5,30,19,30,19,20),
6466 (3,6,6,31,20,31,19,20),
6467 (3,6,7,33,21,32,20,21),
6468 (3,6,8,34,22,33,20,21),
6469 (3,6,9,36,23,35,20,21),
6470 (3,6,10,37,23,36,20,22),
6471 (3,6,11,38,24,37,20,22),
6472 (3,6,12,40,25,38,20,22),
6473 (3,6,13,41,26,40,20,23),
6474 (3,6,14,43,27,41,20,23),
6475 (3,6,15,44,28,42,20,23),
6476 (3,6,16,46,29,44,21,24),
6477 (3,6,17,47,30,45,21,24),
6478 (3,6,18,49,31,46,21,24),
6479 (3,6,19,50,32,48,21,25),
6480 (3,6,20,52,33,49,21,25),
6481 (3,6,21,53,34,51,21,26),
6482 (3,6,22,55,34,52,21,26),
6483 (3,6,23,56,35,53,21,26),
6484 (3,6,24,58,36,55,22,27),
6485 (3,6,25,59,37,56,22,27),
6486 (3,6,26,61,38,58,22,27),
6487 (3,6,27,63,39,59,22,28),
6488 (3,6,28,64,41,61,22,28),
6489 (3,6,29,66,42,62,22,29),
6490 (3,6,30,68,43,64,23,29),
6491 (3,6,31,69,44,65,23,30),
6492 (3,6,32,71,45,67,23,30),
6493 (3,6,33,73,46,68,23,30),
6494 (3,6,34,75,47,70,23,31),
6495 (3,6,35,76,48,72,24,31),
6496 (3,6,36,78,49,73,24,32),
6497 (3,6,37,80,50,75,24,32),
6498 (3,6,38,82,51,76,24,33),
6499 (3,6,39,84,52,78,24,33),
6500 (3,6,40,85,54,80,24,34),
6501 (3,6,41,87,55,81,25,34),
6502 (3,6,42,89,56,83,25,35),
6503 (3,6,43,91,57,85,25,35),
6504 (3,6,44,93,58,87,25,36),
6505 (3,6,45,95,59,88,26,36),
6506 (3,6,46,97,61,90,26,37),
6507 (3,6,47,99,62,92,26,37),
6508 (3,6,48,101,63,94,26,38),
6509 (3,6,49,102,64,95,26,38),
6510 (3,6,50,104,65,97,27,39),
6511 (3,6,51,106,67,99,27,39),
6512 (3,6,52,108,68,99,27,40),
6513 (3,6,53,109,68,101,27,40),
6514 (3,6,54,110,69,101,28,41),
6515 (3,6,55,110,69,102,28,41),
6516 (3,6,56,113,71,105,28,42),
6517 (3,6,57,118,72,107,28,42),
6518 (3,6,58,120,73,109,29,43),
6519 (3,6,59,123,75,111,29,43),
6520 (3,6,60,125,76,113,29,44),
6521 (3,6,61,126,77,115,29,45),
6522 (3,6,62,127,79,117,29,45),
6523 (3,6,63,129,80,120,30,46),
6524 (3,6,64,132,82,122,30,46),
6525 (3,6,65,135,83,124,30,47),
6526 (3,6,66,137,85,127,30,48),
6527 (3,6,67,144,86,129,31,48),
6528 (3,6,68,146,88,131,31,49),
6529 (3,6,69,149,89,133,31,50),
6530 (3,6,70,152,91,136,31,50),
6531 (3,6,71,154,93,139,32,51),
6532 (3,6,72,157,94,141,32,52),
6533 (3,6,73,160,96,144,32,53),
6534 (3,6,74,163,98,146,32,53),
6535 (3,6,75,166,99,150,33,54),
6536 (3,6,76,169,101,152,33,55),
6537 (3,6,77,172,103,155,33,56),
6538 (3,6,78,176,104,157,33,56),
6539 (3,6,79,179,106,160,34,57),
6540 (3,6,80,182,108,163,34,58),
6541 (4,1,1,20,25,21,20,20),
6542 (4,1,2,21,26,22,20,20),
6543 (4,1,3,23,27,23,20,21),
6544 (4,1,4,24,27,25,20,21),
6545 (4,1,5,25,28,26,20,21),
6546 (4,1,6,27,29,27,20,21),
6547 (4,1,7,28,30,28,21,22),
6548 (4,1,8,29,31,29,21,22),
6549 (4,1,9,31,31,31,21,22),
6550 (4,1,10,32,32,32,21,23),
6551 (4,1,11,33,33,33,21,23),
6552 (4,1,12,35,34,34,21,23),
6553 (4,1,13,36,35,36,21,24),
6554 (4,1,14,38,36,37,21,24),
6555 (4,1,15,39,37,38,21,24),
6556 (4,1,16,41,37,40,21,25),
6557 (4,1,17,42,38,41,22,25),
6558 (4,1,18,44,39,43,22,25),
6559 (4,1,19,45,40,44,22,26),
6560 (4,1,20,47,41,45,22,26),
6561 (4,1,21,48,42,47,22,26),
6562 (4,1,22,50,43,48,22,27),
6563 (4,1,23,52,44,50,22,27),
6564 (4,1,24,53,45,51,23,28),
6565 (4,1,25,55,46,52,23,28),
6566 (4,1,26,56,47,54,23,28),
6567 (4,1,27,58,48,55,23,29),
6568 (4,1,28,60,49,57,23,29),
6569 (4,1,29,61,50,58,23,30),
6570 (4,1,30,63,51,60,24,30),
6571 (4,1,31,65,52,62,24,30),
6572 (4,1,32,66,53,63,24,31),
6573 (4,1,33,68,54,65,24,31),
6574 (4,1,34,70,55,66,24,32),
6575 (4,1,35,72,56,68,24,32),
6576 (4,1,36,73,58,69,25,33),
6577 (4,1,37,75,59,71,25,33),
6578 (4,1,38,77,60,73,25,34),
6579 (4,1,39,79,61,74,25,34),
6580 (4,1,40,81,62,76,25,35),
6581 (4,1,41,82,63,78,26,35),
6582 (4,1,42,84,64,79,26,35),
6583 (4,1,43,86,66,81,26,36),
6584 (4,1,44,88,67,83,26,36),
6585 (4,1,45,90,68,85,26,37),
6586 (4,1,46,92,69,86,27,37),
6587 (4,1,47,94,70,88,27,38),
6588 (4,1,48,96,72,90,27,38),
6589 (4,1,49,98,73,92,27,39),
6590 (4,1,50,100,74,93,28,40),
6591 (4,1,51,102,75,95,28,40),
6592 (4,1,52,104,77,97,28,41),
6593 (4,1,53,106,78,99,28,41),
6594 (4,1,54,108,79,101,29,42),
6595 (4,1,55,110,80,103,29,42),
6596 (4,1,56,112,82,104,29,43),
6597 (4,1,57,114,83,106,29,43),
6598 (4,1,58,116,84,108,30,44),
6599 (4,1,59,118,86,110,30,44),
6600 (4,1,60,120,87,112,30,45),
6601 (4,1,61,122,88,114,30,46),
6602 (4,1,62,124,90,116,31,46),
6603 (4,1,63,127,91,118,31,47),
6604 (4,1,64,129,92,120,31,47),
6605 (4,1,65,131,94,122,32,48),
6606 (4,1,66,133,95,124,32,49),
6607 (4,1,67,135,97,126,32,49),
6608 (4,1,68,138,98,128,32,50),
6609 (4,1,69,140,100,130,33,50),
6610 (4,1,70,142,101,132,33,51),
6611 (4,1,71,145,102,134,33,52),
6612 (4,1,72,147,104,137,33,53),
6613 (4,1,73,150,106,139,33,54),
6614 (4,1,74,153,107,142,34,54),
6615 (4,1,75,156,109,144,34,55),
6616 (4,1,76,159,111,148,34,56),
6617 (4,1,77,162,113,150,35,57),
6618 (4,1,78,165,114,152,35,57),
6619 (4,1,79,178,116,164,35,58),
6620 (4,1,80,181,118,167,36,59),
6621 (4,3,1,17,28,20,20,21),
6622 (4,3,2,17,29,21,21,22),
6623 (4,3,3,18,31,22,21,22),
6624 (4,3,4,18,32,23,22,23),
6625 (4,3,5,19,33,24,22,24),
6626 (4,3,6,19,35,25,23,24),
6627 (4,3,7,20,36,26,24,25),
6628 (4,3,8,20,38,27,24,25),
6629 (4,3,9,21,39,27,25,26),
6630 (4,3,10,21,40,28,25,27),
6631 (4,3,11,22,42,29,26,28),
6632 (4,3,12,22,43,30,27,28),
6633 (4,3,13,23,45,31,27,29),
6634 (4,3,14,23,46,32,28,30),
6635 (4,3,15,24,48,34,29,30),
6636 (4,3,16,24,50,35,29,31),
6637 (4,3,17,25,51,36,30,32),
6638 (4,3,18,25,53,37,31,33),
6639 (4,3,19,26,54,38,31,33),
6640 (4,3,20,26,56,39,32,34),
6641 (4,3,21,27,57,40,33,35),
6642 (4,3,22,27,59,41,33,36),
6643 (4,3,23,28,61,42,34,36),
6644 (4,3,24,28,62,43,35,37),
6645 (4,3,25,29,64,44,36,38),
6646 (4,3,26,30,66,46,36,39),
6647 (4,3,27,30,68,47,37,40),
6648 (4,3,28,31,69,48,38,41),
6649 (4,3,29,31,71,49,39,41),
6650 (4,3,30,32,73,50,39,42),
6651 (4,3,31,33,75,52,40,43),
6652 (4,3,32,33,76,53,41,44),
6653 (4,3,33,34,78,54,42,45),
6654 (4,3,34,34,80,55,43,46),
6655 (4,3,35,35,82,57,44,47),
6656 (4,3,36,36,84,58,44,48),
6657 (4,3,37,36,86,59,45,48),
6658 (4,3,38,37,87,60,46,49),
6659 (4,3,39,38,89,62,47,50),
6660 (4,3,40,38,91,63,48,51),
6661 (4,3,41,39,93,64,49,52),
6662 (4,3,42,40,95,66,49,53),
6663 (4,3,43,40,97,67,50,54),
6664 (4,3,44,41,99,68,51,55),
6665 (4,3,45,42,101,70,52,56),
6666 (4,3,46,42,103,71,53,57),
6667 (4,3,47,43,105,72,54,58),
6668 (4,3,48,44,107,74,55,59),
6669 (4,3,49,45,109,75,56,60),
6670 (4,3,50,45,111,77,57,61),
6671 (4,3,51,46,113,78,58,62),
6672 (4,3,52,47,115,79,59,63),
6673 (4,3,53,47,118,81,60,64),
6674 (4,3,54,48,120,82,61,65),
6675 (4,3,55,49,122,84,61,66),
6676 (4,3,56,50,124,85,62,67),
6677 (4,3,57,50,126,87,63,68),
6678 (4,3,58,51,128,88,64,69),
6679 (4,3,59,52,131,90,65,70),
6680 (4,3,60,53,133,91,66,72),
6681 (4,3,61,54,135,93,67,73),
6682 (4,3,62,54,137,94,69,74),
6683 (4,3,63,55,140,96,70,75),
6684 (4,3,64,56,142,97,71,76),
6685 (4,3,65,57,144,99,72,77),
6686 (4,3,66,58,147,101,73,78),
6687 (4,3,67,58,149,102,74,79),
6688 (4,3,68,59,151,104,75,81),
6689 (4,3,69,60,154,105,76,82),
6690 (4,3,70,61,156,107,77,83),
6691 (4,3,71,62,159,109,78,84),
6692 (4,3,72,63,162,111,79,85),
6693 (4,3,73,64,165,113,80,87),
6694 (4,3,74,65,168,115,82,88),
6695 (4,3,75,66,171,117,83,90),
6696 (4,3,76,67,174,119,84,91),
6697 (4,3,77,68,177,121,86,93),
6698 (4,3,78,69,180,123,87,94),
6699 (4,3,79,70,190,125,91,96),
6700 (4,3,80,71,193,127,93,97),
6701 (4,4,1,18,28,20,20,20),
6702 (4,4,2,19,29,21,20,20),
6703 (4,4,3,20,31,21,20,21),
6704 (4,4,4,20,32,22,20,21),
6705 (4,4,5,21,34,23,21,21),
6706 (4,4,6,22,35,24,21,22),
6707 (4,4,7,23,37,24,21,22),
6708 (4,4,8,24,38,25,21,23),
6709 (4,4,9,24,40,26,21,23),
6710 (4,4,10,25,41,26,21,23),
6711 (4,4,11,26,43,27,22,24),
6712 (4,4,12,27,44,28,22,24),
6713 (4,4,13,28,46,29,22,25),
6714 (4,4,14,29,48,30,22,25),
6715 (4,4,15,29,49,30,22,25),
6716 (4,4,16,30,51,31,23,26),
6717 (4,4,17,31,52,32,23,26),
6718 (4,4,18,32,54,33,23,27),
6719 (4,4,19,33,56,34,23,27),
6720 (4,4,20,34,57,35,23,28),
6721 (4,4,21,35,59,35,24,28),
6722 (4,4,22,36,61,36,24,29),
6723 (4,4,23,37,63,37,24,29),
6724 (4,4,24,38,64,38,24,30),
6725 (4,4,25,39,66,39,25,30),
6726 (4,4,26,40,68,40,25,31),
6727 (4,4,27,41,70,41,25,31),
6728 (4,4,28,42,72,42,25,32),
6729 (4,4,29,43,73,43,25,32),
6730 (4,4,30,44,75,43,26,33),
6731 (4,4,31,45,77,44,26,33),
6732 (4,4,32,46,79,45,26,34),
6733 (4,4,33,47,81,46,27,34),
6734 (4,4,34,48,83,47,27,35),
6735 (4,4,35,49,85,48,27,35),
6736 (4,4,36,50,87,49,27,36),
6737 (4,4,37,51,89,50,28,36),
6738 (4,4,38,52,91,51,28,37),
6739 (4,4,39,53,93,52,28,38),
6740 (4,4,40,54,95,53,28,38),
6741 (4,4,41,56,97,54,29,39),
6742 (4,4,42,57,99,55,29,39),
6743 (4,4,43,58,101,56,29,40),
6744 (4,4,44,59,103,57,30,40),
6745 (4,4,45,60,105,59,30,41),
6746 (4,4,46,61,107,60,30,42),
6747 (4,4,47,62,109,61,31,42),
6748 (4,4,48,64,112,62,31,43),
6749 (4,4,49,65,114,63,31,44),
6750 (4,4,50,66,116,64,32,44),
6751 (4,4,51,67,118,65,32,45),
6752 (4,4,52,68,120,66,32,45),
6753 (4,4,53,70,123,67,33,46),
6754 (4,4,54,71,125,69,33,47),
6755 (4,4,55,72,127,70,33,47),
6756 (4,4,56,73,129,71,34,48),
6757 (4,4,57,75,132,72,34,49),
6758 (4,4,58,76,134,73,34,49),
6759 (4,4,59,77,136,74,35,50),
6760 (4,4,60,79,139,76,35,51),
6761 (4,4,61,80,141,77,35,51),
6762 (4,4,62,81,143,78,36,52),
6763 (4,4,63,82,146,79,36,53),
6764 (4,4,64,84,148,80,37,54),
6765 (4,4,65,85,151,82,37,54),
6766 (4,4,66,87,153,83,37,55),
6767 (4,4,67,88,156,84,38,56),
6768 (4,4,68,89,158,85,38,57),
6769 (4,4,69,91,160,87,39,57),
6770 (4,4,70,92,163,88,39,58),
6771 (4,4,71,94,166,90,39,59),
6772 (4,4,72,96,169,91,40,59),
6773 (4,4,73,97,172,93,40,60),
6774 (4,4,74,99,175,94,41,61),
6775 (4,4,75,101,178,96,41,62),
6776 (4,4,76,102,181,97,41,63),
6777 (4,4,77,104,184,99,42,64),
6778 (4,4,78,106,188,101,42,65),
6779 (4,4,79,108,191,102,43,66),
6780 (4,4,80,110,194,104,43,67),
6781 (4,5,1,17,25,19,22,23),
6782 (4,5,2,17,25,19,23,24),
6783 (4,5,3,17,25,20,25,26),
6784 (4,5,4,17,26,20,26,27),
6785 (4,5,5,18,26,20,27,28),
6786 (4,5,6,18,26,21,29,30),
6787 (4,5,7,18,26,21,30,31),
6788 (4,5,8,18,26,22,31,33),
6789 (4,5,9,18,27,22,33,34),
6790 (4,5,10,19,27,22,34,36),
6791 (4,5,11,19,27,23,36,37),
6792 (4,5,12,19,27,23,37,39),
6793 (4,5,13,19,28,24,38,40),
6794 (4,5,14,19,28,24,40,42),
6795 (4,5,15,19,28,25,41,43),
6796 (4,5,16,20,28,25,43,45),
6797 (4,5,17,20,29,25,44,46),
6798 (4,5,18,20,29,26,46,48),
6799 (4,5,19,20,29,26,47,49),
6800 (4,5,20,21,30,27,49,51),
6801 (4,5,21,21,30,27,51,53),
6802 (4,5,22,21,30,28,52,54),
6803 (4,5,23,21,30,28,54,56),
6804 (4,5,24,21,31,29,55,58),
6805 (4,5,25,22,31,29,57,59),
6806 (4,5,26,22,31,30,59,61),
6807 (4,5,27,22,32,30,60,63),
6808 (4,5,28,22,32,31,62,65),
6809 (4,5,29,23,32,31,64,66),
6810 (4,5,30,23,33,32,65,68),
6811 (4,5,31,23,33,32,67,70),
6812 (4,5,32,23,33,33,69,72),
6813 (4,5,33,24,34,33,70,73),
6814 (4,5,34,24,34,34,72,75),
6815 (4,5,35,24,34,34,74,77),
6816 (4,5,36,24,35,35,76,79),
6817 (4,5,37,25,35,35,78,81),
6818 (4,5,38,25,35,36,79,83),
6819 (4,5,39,25,36,37,81,85),
6820 (4,5,40,26,36,37,83,87),
6821 (4,5,41,26,37,38,85,88),
6822 (4,5,42,26,37,38,87,90),
6823 (4,5,43,27,37,39,89,92),
6824 (4,5,44,27,38,39,91,94),
6825 (4,5,45,27,38,40,92,96),
6826 (4,5,46,27,39,41,94,98),
6827 (4,5,47,28,39,41,96,100),
6828 (4,5,48,28,39,42,98,102),
6829 (4,5,49,28,40,43,100,104),
6830 (4,5,50,29,40,43,102,106),
6831 (4,5,51,29,41,44,104,109),
6832 (4,5,52,29,41,44,106,111),
6833 (4,5,53,30,42,45,108,113),
6834 (4,5,54,30,42,46,110,115),
6835 (4,5,55,30,43,46,112,117),
6836 (4,5,56,31,43,47,114,119),
6837 (4,5,57,31,43,48,117,121),
6838 (4,5,58,31,44,48,119,124),
6839 (4,5,59,32,44,49,121,126),
6840 (4,5,60,32,45,50,123,128),
6841 (4,5,61,33,45,51,125,130),
6842 (4,5,62,33,46,51,127,132),
6843 (4,5,63,33,46,52,129,135),
6844 (4,5,64,34,47,53,132,137),
6845 (4,5,65,34,47,53,134,139),
6846 (4,5,66,34,48,54,136,142),
6847 (4,5,67,35,48,55,138,144),
6848 (4,5,68,35,49,56,140,146),
6849 (4,5,69,36,49,56,143,149),
6850 (4,5,70,36,50,57,145,151),
6851 (4,5,71,36,51,58,148,161),
6852 (4,5,72,37,51,58,151,164),
6853 (4,5,73,37,52,59,154,168),
6854 (4,5,74,38,52,60,156,171),
6855 (4,5,75,38,53,61,159,174),
6856 (4,5,76,38,54,62,162,177),
6857 (4,5,77,39,54,63,165,180),
6858 (4,5,78,39,55,64,168,183),
6859 (4,5,79,40,55,65,171,186),
6860 (4,5,80,40,56,66,200,191),
6861 (4,6,1,20,25,21,20,20),
6862 (4,6,2,21,26,22,20,20),
6863 (4,6,3,23,27,23,20,21),
6864 (4,6,4,24,27,25,20,21),
6865 (4,6,5,25,28,26,20,21),
6866 (4,6,6,27,29,27,20,21),
6867 (4,6,7,28,30,28,21,22),
6868 (4,6,8,29,31,29,21,22),
6869 (4,6,9,31,31,31,21,22),
6870 (4,6,10,32,32,32,21,23),
6871 (4,6,11,33,33,33,21,23),
6872 (4,6,12,35,34,34,21,23),
6873 (4,6,13,36,35,36,21,24),
6874 (4,6,14,38,36,37,21,24),
6875 (4,6,15,39,37,38,21,24),
6876 (4,6,16,41,37,40,21,25),
6877 (4,6,17,42,38,41,22,25),
6878 (4,6,18,44,39,43,22,25),
6879 (4,6,19,45,40,44,22,26),
6880 (4,6,20,47,41,45,22,26),
6881 (4,6,21,48,42,47,22,26),
6882 (4,6,22,50,43,48,22,27),
6883 (4,6,23,52,44,50,22,27),
6884 (4,6,24,53,45,51,23,28),
6885 (4,6,25,55,46,52,23,28),
6886 (4,6,26,56,47,54,23,28),
6887 (4,6,27,58,48,55,23,29),
6888 (4,6,28,60,49,57,23,29),
6889 (4,6,29,61,50,58,23,30),
6890 (4,6,30,63,51,60,24,30),
6891 (4,6,31,65,52,62,24,30),
6892 (4,6,32,66,53,63,24,31),
6893 (4,6,33,68,54,65,24,31),
6894 (4,6,34,70,55,66,24,32),
6895 (4,6,35,72,56,68,24,32),
6896 (4,6,36,73,58,69,25,33),
6897 (4,6,37,75,59,71,25,33),
6898 (4,6,38,77,60,73,25,34),
6899 (4,6,39,79,61,74,25,34),
6900 (4,6,40,81,62,76,25,35),
6901 (4,6,41,82,63,78,26,35),
6902 (4,6,42,84,64,79,26,35),
6903 (4,6,43,86,66,81,26,36),
6904 (4,6,44,88,67,83,26,36),
6905 (4,6,45,90,68,85,26,37),
6906 (4,6,46,92,69,86,27,37),
6907 (4,6,47,94,70,88,27,38),
6908 (4,6,48,96,72,90,27,38),
6909 (4,6,49,98,73,92,27,39),
6910 (4,6,50,100,74,93,28,40),
6911 (4,6,51,101,75,94,28,40),
6912 (4,6,52,102,76,95,28,41),
6913 (4,6,53,103,77,96,28,41),
6914 (4,6,54,104,77,97,29,42),
6915 (4,6,55,105,78,98,29,42),
6916 (4,6,56,108,80,101,29,43),
6917 (4,6,57,113,81,103,29,43),
6918 (4,6,58,115,82,105,30,44),
6919 (4,6,59,115,84,107,30,44),
6920 (4,6,60,120,85,109,30,45),
6921 (4,6,61,122,86,111,30,46),
6922 (4,6,62,122,88,113,30,46),
6923 (4,6,63,127,89,116,31,47),
6924 (4,6,64,127,91,118,31,47),
6925 (4,6,65,133,92,120,31,48),
6926 (4,6,66,135,94,123,31,49),
6927 (4,6,67,136,95,125,32,49),
6928 (4,6,68,137,97,127,32,50),
6929 (4,6,69,140,98,130,32,51),
6930 (4,6,70,147,100,132,32,51),
6931 (4,6,71,154,102,135,33,52),
6932 (4,6,72,156,103,137,33,53),
6933 (4,6,73,157,105,140,33,54),
6934 (4,6,74,158,107,142,33,54),
6935 (4,6,75,161,108,145,34,55),
6936 (4,6,76,164,110,148,34,56),
6937 (4,6,77,167,112,150,34,57),
6938 (4,6,78,170,113,153,34,57),
6939 (4,6,79,172,115,156,35,58),
6940 (4,6,80,177,117,159,35,59),
6941 (4,11,1,18,25,19,22,22),
6942 (4,11,2,19,25,20,23,23),
6943 (4,11,3,19,26,20,24,24),
6944 (4,11,4,20,26,21,25,26),
6945 (4,11,5,20,27,22,26,27),
6946 (4,11,6,21,27,22,27,28),
6947 (4,11,7,21,28,23,28,29),
6948 (4,11,8,22,28,24,29,30),
6949 (4,11,9,23,29,24,30,32),
6950 (4,11,10,23,29,25,32,33),
6951 (4,11,11,24,30,26,33,34),
6952 (4,11,12,24,31,26,34,35),
6953 (4,11,13,25,31,27,35,37),
6954 (4,11,14,26,32,28,36,38),
6955 (4,11,15,26,32,29,37,39),
6956 (4,11,16,27,33,29,38,41),
6957 (4,11,17,28,33,30,40,42),
6958 (4,11,18,28,34,31,41,43),
6959 (4,11,19,29,35,32,42,45),
6960 (4,11,20,30,35,32,43,46),
6961 (4,11,21,30,36,33,45,48),
6962 (4,11,22,31,36,34,46,49),
6963 (4,11,23,32,37,35,47,51),
6964 (4,11,24,32,38,36,48,52),
6965 (4,11,25,33,38,36,50,53),
6966 (4,11,26,34,39,37,51,55),
6967 (4,11,27,35,40,38,52,56),
6968 (4,11,28,35,40,39,54,58),
6969 (4,11,29,36,41,40,55,59),
6970 (4,11,30,37,42,41,56,61),
6971 (4,11,31,38,42,42,58,62),
6972 (4,11,32,38,43,42,59,64),
6973 (4,11,33,39,44,43,60,66),
6974 (4,11,34,40,44,44,62,67),
6975 (4,11,35,41,45,45,63,69),
6976 (4,11,36,42,46,46,65,70),
6977 (4,11,37,42,47,47,66,72),
6978 (4,11,38,43,47,48,67,74),
6979 (4,11,39,44,48,49,69,75),
6980 (4,11,40,45,49,50,70,77),
6981 (4,11,41,46,50,51,72,79),
6982 (4,11,42,46,50,52,73,80),
6983 (4,11,43,47,51,53,75,82),
6984 (4,11,44,48,52,54,76,84),
6985 (4,11,45,49,53,55,78,85),
6986 (4,11,46,50,54,56,79,87),
6987 (4,11,47,51,54,57,81,89),
6988 (4,11,48,52,55,58,83,91),
6989 (4,11,49,53,56,59,84,93),
6990 (4,11,50,53,57,60,86,94),
6991 (4,11,51,54,58,61,87,96),
6992 (4,11,52,55,59,62,89,98),
6993 (4,11,53,56,59,63,91,100),
6994 (4,11,54,57,60,64,92,102),
6995 (4,11,55,58,61,65,94,103),
6996 (4,11,56,59,62,66,95,105),
6997 (4,11,57,60,63,67,97,107),
6998 (4,11,58,61,64,68,99,109),
6999 (4,11,59,62,65,69,101,111),
7000 (4,11,60,63,66,70,102,113),
7001 (4,11,61,64,66,72,104,115),
7002 (4,11,62,65,67,73,106,117),
7003 (4,11,63,66,68,74,107,119),
7004 (4,11,64,67,69,75,109,121),
7005 (4,11,65,68,70,76,111,123),
7006 (4,11,66,69,71,77,113,125),
7007 (4,11,67,70,72,78,115,127),
7008 (4,11,68,71,73,80,116,129),
7009 (4,11,69,72,74,81,118,131),
7010 (4,11,70,73,75,82,120,133),
7011 (4,11,71,75,76,83,122,135),
7012 (4,11,72,76,78,85,125,138),
7013 (4,11,73,77,79,86,127,140),
7014 (4,11,74,78,80,88,131,143),
7015 (4,11,75,80,81,89,133,145),
7016 (4,11,76,81,82,91,134,148),
7017 (4,11,77,82,83,92,136,151),
7018 (4,11,78,84,85,94,138,153),
7019 (4,11,79,85,86,95,141,156),
7020 (4,11,80,86,87,97,143,159),
7021 (5,1,1,22,18,23,18,25),
7022 (5,1,2,23,19,24,18,25),
7023 (5,1,3,25,20,25,18,26),
7024 (5,1,4,26,20,26,18,26),
7025 (5,1,5,27,21,28,18,26),
7026 (5,1,6,29,22,29,18,26),
7027 (5,1,7,30,23,30,19,27),
7028 (5,1,8,31,24,31,19,27),
7029 (5,1,9,33,25,33,19,27),
7030 (5,1,10,34,25,34,19,28),
7031 (5,1,11,35,26,35,19,28),
7032 (5,1,12,37,27,36,19,28),
7033 (5,1,13,38,28,38,19,28),
7034 (5,1,14,40,29,39,19,29),
7035 (5,1,15,41,30,40,19,29),
7036 (5,1,16,43,31,42,20,29),
7037 (5,1,17,44,32,43,20,30),
7038 (5,1,18,46,33,44,20,30),
7039 (5,1,19,47,34,46,20,31),
7040 (5,1,20,49,34,47,20,31),
7041 (5,1,21,50,35,49,20,31),
7042 (5,1,22,52,36,50,20,32),
7043 (5,1,23,53,37,51,21,32),
7044 (5,1,24,55,38,53,21,32),
7045 (5,1,25,57,39,54,21,33),
7046 (5,1,26,58,40,56,21,33),
7047 (5,1,27,60,41,57,21,34),
7048 (5,1,28,62,42,59,21,34),
7049 (5,1,29,63,43,60,21,34),
7050 (5,1,30,65,44,62,22,35),
7051 (5,1,31,67,46,63,22,35),
7052 (5,1,32,68,47,65,22,36),
7053 (5,1,33,70,48,67,22,36),
7054 (5,1,34,72,49,68,22,36),
7055 (5,1,35,74,50,70,23,37),
7056 (5,1,36,75,51,71,23,37),
7057 (5,1,37,77,52,73,23,38),
7058 (5,1,38,79,53,75,23,38),
7059 (5,1,39,81,54,76,23,39),
7060 (5,1,40,83,55,78,24,39),
7061 (5,1,41,84,57,80,24,40),
7062 (5,1,42,86,58,81,24,40),
7063 (5,1,43,88,59,83,24,41),
7064 (5,1,44,90,60,85,24,41),
7065 (5,1,45,92,61,86,25,42),
7066 (5,1,46,94,62,88,25,42),
7067 (5,1,47,96,64,90,25,43),
7068 (5,1,48,98,65,92,25,43),
7069 (5,1,49,100,66,93,25,44),
7070 (5,1,50,102,67,95,26,44),
7071 (5,1,51,104,69,97,26,45),
7072 (5,1,52,106,70,99,26,45),
7073 (5,1,53,108,71,101,26,46),
7074 (5,1,54,110,72,103,27,46),
7075 (5,1,55,112,74,104,27,47),
7076 (5,1,56,114,75,106,27,48),
7077 (5,1,57,116,76,108,27,48),
7078 (5,1,58,118,78,110,28,49),
7079 (5,1,59,120,79,112,28,49),
7080 (5,1,60,122,80,114,28,50),
7081 (5,1,61,124,82,116,28,50),
7082 (5,1,62,126,83,118,29,51),
7083 (5,1,63,128,84,120,29,52),
7084 (5,1,64,131,86,122,29,52),
7085 (5,1,65,133,87,124,30,53),
7086 (5,1,66,135,88,126,30,53),
7087 (5,1,67,137,90,128,30,54),
7088 (5,1,68,139,91,130,30,55),
7089 (5,1,69,142,93,132,31,55),
7090 (5,1,70,144,94,134,31,56),
7091 (5,1,71,147,95,136,31,57),
7092 (5,1,72,150,97,139,31,58),
7093 (5,1,73,152,99,141,31,59),
7094 (5,1,74,155,100,144,32,59),
7095 (5,1,75,158,102,146,32,60),
7096 (5,1,76,163,104,149,32,61),
7097 (5,1,77,167,106,152,33,62),
7098 (5,1,78,167,107,154,33,62),
7099 (5,1,79,170,109,157,33,63),
7100 (5,1,80,173,111,160,34,64),
7101 (5,4,1,20,21,22,18,25),
7102 (5,4,2,21,22,23,18,25),
7103 (5,4,3,22,24,23,18,26),
7104 (5,4,4,22,25,24,18,26),
7105 (5,4,5,23,27,25,19,26),
7106 (5,4,6,24,28,25,19,27),
7107 (5,4,7,25,30,26,19,27),
7108 (5,4,8,25,31,27,19,27),
7109 (5,4,9,26,33,28,19,28),
7110 (5,4,10,27,34,28,19,28),
7111 (5,4,11,28,36,29,20,29),
7112 (5,4,12,29,38,30,20,29),
7113 (5,4,13,30,39,31,20,29),
7114 (5,4,14,31,41,32,20,30),
7115 (5,4,15,31,42,32,20,30),
7116 (5,4,16,32,44,33,21,31),
7117 (5,4,17,33,46,34,21,31),
7118 (5,4,18,34,47,35,21,32),
7119 (5,4,19,35,49,36,21,32),
7120 (5,4,20,36,51,36,21,32),
7121 (5,4,21,37,52,37,22,33),
7122 (5,4,22,38,54,38,22,33),
7123 (5,4,23,39,56,39,22,34),
7124 (5,4,24,40,58,40,22,34),
7125 (5,4,25,41,60,41,23,35),
7126 (5,4,26,42,61,42,23,35),
7127 (5,4,27,43,63,43,23,36),
7128 (5,4,28,44,65,44,23,36),
7129 (5,4,29,45,67,44,24,37),
7130 (5,4,30,46,69,45,24,37),
7131 (5,4,31,47,71,46,24,38),
7132 (5,4,32,48,72,47,24,38),
7133 (5,4,33,49,74,48,25,39),
7134 (5,4,34,50,76,49,25,39),
7135 (5,4,35,51,78,50,25,40),
7136 (5,4,36,52,80,51,25,41),
7137 (5,4,37,53,82,52,26,41),
7138 (5,4,38,54,84,53,26,42),
7139 (5,4,39,55,86,54,26,42),
7140 (5,4,40,56,88,55,27,43),
7141 (5,4,41,57,90,56,27,43),
7142 (5,4,42,59,92,57,27,44),
7143 (5,4,43,60,94,58,27,45),
7144 (5,4,44,61,96,59,28,45),
7145 (5,4,45,62,99,60,28,46),
7146 (5,4,46,63,101,61,28,46),
7147 (5,4,47,64,103,63,29,47),
7148 (5,4,48,66,105,64,29,48),
7149 (5,4,49,67,107,65,29,48),
7150 (5,4,50,68,109,66,30,49),
7151 (5,4,51,69,111,67,30,50),
7152 (5,4,52,70,114,68,30,50),
7153 (5,4,53,72,116,69,31,51),
7154 (5,4,54,73,118,70,31,52),
7155 (5,4,55,74,120,72,31,52),
7156 (5,4,56,75,123,73,32,53),
7157 (5,4,57,77,125,74,32,54),
7158 (5,4,58,78,127,75,32,54),
7159 (5,4,59,79,130,76,33,55),
7160 (5,4,60,81,132,77,33,56),
7161 (5,4,61,82,134,79,34,56),
7162 (5,4,62,83,137,80,34,57),
7163 (5,4,63,84,139,81,34,58),
7164 (5,4,64,86,141,82,35,59),
7165 (5,4,65,87,144,84,35,59),
7166 (5,4,66,88,146,85,35,60),
7167 (5,4,67,90,149,86,36,61),
7168 (5,4,68,91,151,87,36,61),
7169 (5,4,69,93,154,89,37,62),
7170 (5,4,70,94,156,90,37,63),
7171 (5,4,71,96,159,91,37,64),
7172 (5,4,72,98,162,93,38,64),
7173 (5,4,73,99,165,95,38,65),
7174 (5,4,74,101,168,96,39,66),
7175 (5,4,75,103,171,98,39,67),
7176 (5,4,76,104,174,99,39,68),
7177 (5,4,77,106,177,101,40,69),
7178 (5,4,78,108,181,103,40,70),
7179 (5,4,79,110,184,104,41,71),
7180 (5,4,80,112,187,106,41,72),
7181 (5,5,1,19,18,21,20,28),
7182 (5,5,2,19,18,21,21,29),
7183 (5,5,3,19,18,22,23,31),
7184 (5,5,4,19,19,22,24,32),
7185 (5,5,5,20,19,22,25,33),
7186 (5,5,6,20,19,23,27,35),
7187 (5,5,7,20,19,23,28,36),
7188 (5,5,8,20,20,24,29,38),
7189 (5,5,9,20,20,24,31,39),
7190 (5,5,10,20,20,24,32,40),
7191 (5,5,11,21,20,25,34,42),
7192 (5,5,12,21,21,25,35,43),
7193 (5,5,13,21,21,26,37,45),
7194 (5,5,14,21,21,26,38,46),
7195 (5,5,15,21,21,26,39,48),
7196 (5,5,16,22,22,27,41,50),
7197 (5,5,17,22,22,27,42,51),
7198 (5,5,18,22,22,28,44,53),
7199 (5,5,19,22,23,28,46,54),
7200 (5,5,20,22,23,29,47,56),
7201 (5,5,21,23,23,29,49,57),
7202 (5,5,22,23,23,30,50,59),
7203 (5,5,23,23,24,30,52,61),
7204 (5,5,24,23,24,31,53,62),
7205 (5,5,25,24,24,31,55,64),
7206 (5,5,26,24,25,32,57,66),
7207 (5,5,27,24,25,32,58,68),
7208 (5,5,28,24,25,33,60,69),
7209 (5,5,29,25,26,33,62,71),
7210 (5,5,30,25,26,34,63,73),
7211 (5,5,31,25,26,34,65,75),
7212 (5,5,32,25,27,35,67,76),
7213 (5,5,33,26,27,35,69,78),
7214 (5,5,34,26,27,36,70,80),
7215 (5,5,35,26,28,36,72,82),
7216 (5,5,36,26,28,37,74,84),
7217 (5,5,37,27,28,37,76,86),
7218 (5,5,38,27,29,38,77,87),
7219 (5,5,39,27,29,38,79,89),
7220 (5,5,40,28,30,39,81,91),
7221 (5,5,41,28,30,40,83,93),
7222 (5,5,42,28,30,40,85,95),
7223 (5,5,43,28,31,41,87,97),
7224 (5,5,44,29,31,41,89,99),
7225 (5,5,45,29,32,42,91,101),
7226 (5,5,46,29,32,43,92,103),
7227 (5,5,47,30,32,43,94,105),
7228 (5,5,48,30,33,44,96,107),
7229 (5,5,49,30,33,44,98,109),
7230 (5,5,50,31,34,45,100,111),
7231 (5,5,51,31,34,46,102,113),
7232 (5,5,52,31,35,46,104,115),
7233 (5,5,53,32,35,47,106,118),
7234 (5,5,54,32,35,48,108,120),
7235 (5,5,55,32,36,48,110,122),
7236 (5,5,56,33,36,49,113,124),
7237 (5,5,57,33,37,50,115,126),
7238 (5,5,58,33,37,50,117,128),
7239 (5,5,59,34,38,51,119,131),
7240 (5,5,60,34,38,52,121,133),
7241 (5,5,61,34,39,52,123,135),
7242 (5,5,62,35,39,53,125,137),
7243 (5,5,63,35,40,54,127,140),
7244 (5,5,64,36,40,55,130,142),
7245 (5,5,65,36,41,55,132,144),
7246 (5,5,66,36,41,56,134,147),
7247 (5,5,67,37,41,57,136,149),
7248 (5,5,68,37,42,58,138,151),
7249 (5,5,69,38,42,58,141,154),
7250 (5,5,70,38,43,59,143,156),
7251 (5,5,71,38,44,60,146,159),
7252 (5,5,72,39,44,60,149,162),
7253 (5,5,73,39,45,61,152,165),
7254 (5,5,74,40,45,62,157,168),
7255 (5,5,75,40,46,63,157,171),
7256 (5,5,76,40,47,64,160,174),
7257 (5,5,77,41,47,65,163,177),
7258 (5,5,78,41,48,66,166,180),
7259 (5,5,79,42,48,67,169,183),
7260 (5,5,80,42,49,68,172,186),
7261 (5,6,1,22,18,23,18,25),
7262 (5,6,2,23,19,24,18,25),
7263 (5,6,3,25,20,25,18,26),
7264 (5,6,4,26,20,26,18,26),
7265 (5,6,5,27,21,28,18,26),
7266 (5,6,6,29,22,29,18,26),
7267 (5,6,7,30,23,30,19,27),
7268 (5,6,8,31,24,31,19,27),
7269 (5,6,9,33,25,33,19,27),
7270 (5,6,10,34,25,34,19,28),
7271 (5,6,11,35,26,35,19,28),
7272 (5,6,12,37,27,36,19,28),
7273 (5,6,13,38,28,38,19,28),
7274 (5,6,14,40,29,39,19,29),
7275 (5,6,15,41,30,40,19,29),
7276 (5,6,16,43,31,42,20,29),
7277 (5,6,17,44,32,43,20,30),
7278 (5,6,18,46,33,44,20,30),
7279 (5,6,19,47,34,46,20,31),
7280 (5,6,20,49,34,47,20,31),
7281 (5,6,21,50,35,49,20,31),
7282 (5,6,22,52,36,50,20,32),
7283 (5,6,23,53,37,51,21,32),
7284 (5,6,24,55,38,53,21,32),
7285 (5,6,25,57,39,54,21,33),
7286 (5,6,26,58,40,56,21,33),
7287 (5,6,27,60,41,57,21,34),
7288 (5,6,28,62,42,59,21,34),
7289 (5,6,29,63,43,60,21,34),
7290 (5,6,30,65,44,62,22,35),
7291 (5,6,31,67,46,63,22,35),
7292 (5,6,32,68,47,65,22,36),
7293 (5,6,33,70,48,67,22,36),
7294 (5,6,34,72,49,68,22,36),
7295 (5,6,35,74,50,70,23,37),
7296 (5,6,36,75,51,71,23,37),
7297 (5,6,37,77,52,73,23,38),
7298 (5,6,38,79,53,75,23,38),
7299 (5,6,39,81,54,76,23,39),
7300 (5,6,40,83,55,78,24,39),
7301 (5,6,41,84,57,80,24,40),
7302 (5,6,42,86,58,81,24,40),
7303 (5,6,43,88,59,83,24,41),
7304 (5,6,44,90,60,85,24,41),
7305 (5,6,45,92,61,86,25,42),
7306 (5,6,46,94,62,88,25,42),
7307 (5,6,47,96,64,90,25,43),
7308 (5,6,48,98,65,92,25,43),
7309 (5,6,49,100,66,93,25,44),
7310 (5,6,50,102,67,95,26,44),
7311 (5,6,51,103,67,96,26,45),
7312 (5,6,52,104,68,97,26,45),
7313 (5,6,53,105,69,98,26,46),
7314 (5,6,54,106,70,99,27,46),
7315 (5,6,55,107,71,100,27,47),
7316 (5,6,56,110,73,103,27,48),
7317 (5,6,57,112,74,105,27,48),
7318 (5,6,58,114,75,107,28,49),
7319 (5,6,59,119,77,109,28,49),
7320 (5,6,60,122,78,111,28,50),
7321 (5,6,61,124,79,113,28,51),
7322 (5,6,62,127,81,115,28,51),
7323 (5,6,63,129,82,118,29,52),
7324 (5,6,64,136,84,120,29,52),
7325 (5,6,65,137,85,123,29,53),
7326 (5,6,66,138,87,125,29,54),
7327 (5,6,67,141,88,127,30,54),
7328 (5,6,68,143,90,129,30,55),
7329 (5,6,69,146,91,132,30,56),
7330 (5,6,70,149,93,134,30,56),
7331 (5,6,71,152,95,137,31,57),
7332 (5,6,72,154,96,139,31,58),
7333 (5,6,73,157,98,142,31,59),
7334 (5,6,74,158,100,145,31,59),
7335 (5,6,75,159,101,147,32,60),
7336 (5,6,76,162,103,150,32,61),
7337 (5,6,77,167,105,152,32,62),
7338 (5,6,78,173,106,155,32,62),
7339 (5,6,79,174,108,158,33,63),
7340 (5,6,80,174,110,161,33,64),
7341 (5,8,1,19,18,21,21,27),
7342 (5,8,2,19,18,21,22,28),
7343 (5,8,3,19,18,22,24,30),
7344 (5,8,4,19,18,22,25,31),
7345 (5,8,5,19,19,22,26,32),
7346 (5,8,6,19,19,22,28,34),
7347 (5,8,7,20,19,23,29,35),
7348 (5,8,8,20,19,23,31,36),
7349 (5,8,9,20,19,23,32,38),
7350 (5,8,10,20,19,24,34,39),
7351 (5,8,11,20,20,24,35,40),
7352 (5,8,12,20,20,24,37,42),
7353 (5,8,13,20,20,25,38,43),
7354 (5,8,14,20,20,25,40,45),
7355 (5,8,15,20,20,25,41,46),
7356 (5,8,16,21,21,26,43,48),
7357 (5,8,17,21,21,26,44,49),
7358 (5,8,18,21,21,26,46,51),
7359 (5,8,19,21,21,27,48,52),
7360 (5,8,20,21,21,27,49,54),
7361 (5,8,21,21,22,27,51,55),
7362 (5,8,22,21,22,28,52,57),
7363 (5,8,23,21,22,28,54,58),
7364 (5,8,24,22,22,29,56,60),
7365 (5,8,25,22,23,29,57,62),
7366 (5,8,26,22,23,29,59,63),
7367 (5,8,27,22,23,30,61,65),
7368 (5,8,28,22,23,30,63,67),
7369 (5,8,29,22,24,31,64,68),
7370 (5,8,30,23,24,31,66,70),
7371 (5,8,31,23,24,31,68,72),
7372 (5,8,32,23,24,32,70,73),
7373 (5,8,33,23,25,32,72,75),
7374 (5,8,34,23,25,33,73,77),
7375 (5,8,35,24,25,33,75,79),
7376 (5,8,36,24,25,34,77,80),
7377 (5,8,37,24,26,34,79,82),
7378 (5,8,38,24,26,35,81,84),
7379 (5,8,39,24,26,35,83,86),
7380 (5,8,40,24,27,35,85,88),
7381 (5,8,41,25,27,36,87,90),
7382 (5,8,42,25,27,36,89,91),
7383 (5,8,43,25,27,37,90,93),
7384 (5,8,44,25,28,37,92,95),
7385 (5,8,45,26,28,38,94,97),
7386 (5,8,46,26,28,38,96,99),
7387 (5,8,47,26,29,39,98,101),
7388 (5,8,48,26,29,39,100,103),
7389 (5,8,49,26,29,40,103,105),
7390 (5,8,50,27,30,40,105,107),
7391 (5,8,51,27,30,41,107,109),
7392 (5,8,52,27,30,42,109,111),
7393 (5,8,53,27,31,42,111,113),
7394 (5,8,54,28,31,43,113,115),
7395 (5,8,55,28,31,43,115,117),
7396 (5,8,56,28,32,44,117,119),
7397 (5,8,57,28,32,44,119,121),
7398 (5,8,58,29,32,45,122,123),
7399 (5,8,59,29,33,45,124,126),
7400 (5,8,60,29,33,46,126,128),
7401 (5,8,61,29,34,47,128,130),
7402 (5,8,62,30,34,47,131,132),
7403 (5,8,63,30,34,48,133,134),
7404 (5,8,64,30,35,48,135,136),
7405 (5,8,65,31,35,49,137,139),
7406 (5,8,66,31,35,50,140,141),
7407 (5,8,67,31,36,50,142,143),
7408 (5,8,68,31,36,51,144,145),
7409 (5,8,69,32,37,51,147,148),
7410 (5,8,70,32,37,52,149,150),
7411 (5,8,71,32,37,53,152,153),
7412 (5,8,72,32,38,54,155,156),
7413 (5,8,73,32,38,55,158,159),
7414 (5,8,74,33,39,55,161,161),
7415 (5,8,75,33,39,56,164,164),
7416 (5,8,76,33,39,57,167,167),
7417 (5,8,77,34,40,58,170,170),
7418 (5,8,78,34,40,58,173,173),
7419 (5,8,79,34,41,59,176,176),
7420 (5,8,80,35,41,60,179,179),
7421 (5,9,1,19,18,22,20,27),
7422 (5,9,2,19,18,23,21,28),
7423 (5,9,3,20,19,23,22,29),
7424 (5,9,4,20,19,24,24,30),
7425 (5,9,5,20,19,24,25,32),
7426 (5,9,6,20,20,25,26,33),
7427 (5,9,7,21,20,25,27,34),
7428 (5,9,8,21,21,26,28,35),
7429 (5,9,9,21,21,26,30,36),
7430 (5,9,10,22,21,27,31,38),
7431 (5,9,11,22,22,28,32,39),
7432 (5,9,12,22,22,28,34,40),
7433 (5,9,13,23,23,29,35,41),
7434 (5,9,14,23,23,30,36,43),
7435 (5,9,15,23,24,30,37,44),
7436 (5,9,16,24,24,31,39,45),
7437 (5,9,17,24,24,31,40,47),
7438 (5,9,18,24,25,32,42,48),
7439 (5,9,19,25,25,33,43,49),
7440 (5,9,20,25,26,33,44,51),
7441 (5,9,21,26,26,34,46,52),
7442 (5,9,22,26,27,35,47,53),
7443 (5,9,23,26,27,36,49,55),
7444 (5,9,24,27,28,36,50,56),
7445 (5,9,25,27,28,37,52,58),
7446 (5,9,26,27,29,38,53,59),
7447 (5,9,27,28,29,38,55,60),
7448 (5,9,28,28,30,39,56,62),
7449 (5,9,29,29,30,40,58,63),
7450 (5,9,30,29,31,41,59,65),
7451 (5,9,31,30,31,41,61,66),
7452 (5,9,32,30,32,42,62,68),
7453 (5,9,33,30,32,43,64,69),
7454 (5,9,34,31,33,44,65,71),
7455 (5,9,35,31,33,45,67,73),
7456 (5,9,36,32,34,45,69,74),
7457 (5,9,37,32,34,46,70,76),
7458 (5,9,38,33,35,47,72,77),
7459 (5,9,39,33,36,48,73,79),
7460 (5,9,40,34,36,49,75,81),
7461 (5,9,41,34,37,49,77,82),
7462 (5,9,42,35,37,50,78,84),
7463 (5,9,43,35,38,51,80,86),
7464 (5,9,44,36,39,52,82,87),
7465 (5,9,45,36,39,53,84,89),
7466 (5,9,46,37,40,54,85,91),
7467 (5,9,47,37,40,55,87,92),
7468 (5,9,48,38,41,55,89,94),
7469 (5,9,49,38,42,56,91,96),
7470 (5,9,50,39,42,57,92,98),
7471 (5,9,51,39,43,58,94,100),
7472 (5,9,52,40,44,59,96,101),
7473 (5,9,53,40,44,60,98,103),
7474 (5,9,54,41,45,61,100,105),
7475 (5,9,55,41,45,62,102,107),
7476 (5,9,56,42,46,63,103,109),
7477 (5,9,57,42,47,64,105,111),
7478 (5,9,58,43,47,65,107,112),
7479 (5,9,59,43,48,66,109,114),
7480 (5,9,60,44,49,67,111,116),
7481 (5,9,61,45,50,68,113,118),
7482 (5,9,62,45,50,69,115,120),
7483 (5,9,63,46,51,70,117,122),
7484 (5,9,64,46,52,71,119,124),
7485 (5,9,65,47,52,72,121,126),
7486 (5,9,66,48,53,73,123,128),
7487 (5,9,67,48,54,74,125,130),
7488 (5,9,68,49,55,75,127,132),
7489 (5,9,69,49,55,76,129,134),
7490 (5,9,70,50,56,77,131,136),
7491 (5,9,71,51,57,86,135,147),
7492 (5,9,72,52,57,88,136,149),
7493 (5,9,73,53,58,89,138,152),
7494 (5,9,74,53,59,90,141,155),
7495 (5,9,75,54,60,92,143,157),
7496 (5,9,76,55,61,93,146,160),
7497 (5,9,77,56,62,94,149,163),
7498 (5,9,78,56,63,96,151,166),
7499 (5,9,79,57,64,97,154,169),
7500 (5,9,80,58,65,99,157,171),
7501 (6,1,1,28,15,24,15,22),
7502 (6,1,2,29,16,25,15,22),
7503 (6,1,3,31,17,26,15,23),
7504 (6,1,4,32,17,27,15,23),
7505 (6,1,5,33,18,29,15,23),
7506 (6,1,6,34,19,30,15,23),
7507 (6,1,7,36,20,31,16,24),
7508 (6,1,8,37,21,32,16,24),
7509 (6,1,9,38,22,34,16,24),
7510 (6,1,10,40,22,35,16,25),
7511 (6,1,11,41,23,36,16,25),
7512 (6,1,12,43,24,37,16,25),
7513 (6,1,13,44,25,39,16,26),
7514 (6,1,14,46,26,40,16,26),
7515 (6,1,15,47,27,41,17,26),
7516 (6,1,16,48,28,43,17,27),
7517 (6,1,17,50,29,44,17,27),
7518 (6,1,18,51,30,45,17,27),
7519 (6,1,19,53,31,47,17,28),
7520 (6,1,20,54,32,48,17,28),
7521 (6,1,21,56,33,50,17,28),
7522 (6,1,22,58,34,51,18,29),
7523 (6,1,23,59,35,52,18,29),
7524 (6,1,24,61,36,54,18,30),
7525 (6,1,25,62,37,55,18,30),
7526 (6,1,26,64,38,57,18,30),
7527 (6,1,27,66,39,58,18,31),
7528 (6,1,28,67,40,60,18,31),
7529 (6,1,29,69,41,61,19,32),
7530 (6,1,30,71,42,63,19,32),
7531 (6,1,31,72,43,64,19,32),
7532 (6,1,32,74,44,66,19,33),
7533 (6,1,33,76,45,67,19,33),
7534 (6,1,34,77,46,69,20,34),
7535 (6,1,35,79,47,71,20,34),
7536 (6,1,36,81,48,72,20,35),
7537 (6,1,37,83,49,74,20,35),
7538 (6,1,38,85,50,76,20,35),
7539 (6,1,39,86,51,77,21,36),
7540 (6,1,40,88,53,79,21,36),
7541 (6,1,41,90,54,81,21,37),
7542 (6,1,42,92,55,82,21,37),
7543 (6,1,43,94,56,84,21,38),
7544 (6,1,44,96,57,86,22,38),
7545 (6,1,45,98,58,87,22,39),
7546 (6,1,46,99,60,89,22,39),
7547 (6,1,47,101,61,91,22,40),
7548 (6,1,48,103,62,93,22,40),
7549 (6,1,49,105,63,94,23,41),
7550 (6,1,50,107,65,96,23,41),
7551 (6,1,51,109,66,98,23,42),
7552 (6,1,52,111,67,100,23,42),
7553 (6,1,53,113,68,102,24,43),
7554 (6,1,54,115,70,104,24,44),
7555 (6,1,55,117,71,105,24,44),
7556 (6,1,56,119,72,107,24,45),
7557 (6,1,57,122,73,109,25,45),
7558 (6,1,58,124,75,111,25,46),
7559 (6,1,59,126,76,113,25,46),
7560 (6,1,60,128,77,115,25,47),
7561 (6,1,61,130,79,117,26,48),
7562 (6,1,62,132,80,119,26,48),
7563 (6,1,63,134,81,121,26,49),
7564 (6,1,64,137,83,123,26,49),
7565 (6,1,65,139,84,125,27,50),
7566 (6,1,66,141,85,127,27,51),
7567 (6,1,67,143,87,129,27,51),
7568 (6,1,68,145,88,131,27,52),
7569 (6,1,69,148,90,133,28,52),
7570 (6,1,70,150,91,135,28,53),
7571 (6,1,71,153,92,137,28,54),
7572 (6,1,72,155,94,140,28,55),
7573 (6,1,73,158,96,142,28,56),
7574 (6,1,74,161,97,145,29,56),
7575 (6,1,75,164,99,147,29,57),
7576 (6,1,76,167,101,150,29,58),
7577 (6,1,77,170,103,153,30,59),
7578 (6,1,78,173,104,155,30,59),
7579 (6,1,79,176,106,164,30,60),
7580 (6,1,80,179,108,170,31,61),
7581 (6,3,1,25,18,23,15,23),
7582 (6,3,2,25,19,24,16,24),
7583 (6,3,3,26,21,25,16,24),
7584 (6,3,4,26,22,26,17,25),
7585 (6,3,5,27,24,27,17,25),
7586 (6,3,6,27,25,28,18,26),
7587 (6,3,7,28,26,28,19,27),
7588 (6,3,8,28,28,29,19,27),
7589 (6,3,9,28,29,30,20,28),
7590 (6,3,10,29,31,31,20,29),
7591 (6,3,11,29,32,32,21,29),
7592 (6,3,12,30,34,33,22,30),
7593 (6,3,13,30,35,34,22,31),
7594 (6,3,14,31,37,35,23,32),
7595 (6,3,15,31,38,36,24,32),
7596 (6,3,16,32,40,37,24,33),
7597 (6,3,17,32,41,39,25,34),
7598 (6,3,18,33,43,40,26,35),
7599 (6,3,19,33,45,41,27,35),
7600 (6,3,20,34,46,42,27,36),
7601 (6,3,21,34,48,43,28,37),
7602 (6,3,22,35,50,44,29,38),
7603 (6,3,23,35,51,45,29,38),
7604 (6,3,24,36,53,46,30,39),
7605 (6,3,25,37,55,47,31,40),
7606 (6,3,26,37,56,48,32,41),
7607 (6,3,27,38,58,50,32,42),
7608 (6,3,28,38,60,51,33,42),
7609 (6,3,29,39,62,52,34,43),
7610 (6,3,30,39,63,53,35,44),
7611 (6,3,31,40,65,54,36,45),
7612 (6,3,32,41,67,56,36,46),
7613 (6,3,33,41,69,57,37,47),
7614 (6,3,34,42,71,58,38,48),
7615 (6,3,35,43,72,59,39,48),
7616 (6,3,36,43,74,61,40,49),
7617 (6,3,37,44,76,62,40,50),
7618 (6,3,38,45,78,63,41,51),
7619 (6,3,39,45,80,64,42,52),
7620 (6,3,40,46,82,66,43,53),
7621 (6,3,41,47,84,67,44,54),
7622 (6,3,42,47,86,68,45,55),
7623 (6,3,43,48,88,70,46,56),
7624 (6,3,44,49,90,71,46,57),
7625 (6,3,45,49,92,72,47,58),
7626 (6,3,46,50,94,74,48,59),
7627 (6,3,47,51,96,75,49,60),
7628 (6,3,48,51,98,77,50,61),
7629 (6,3,49,52,100,78,51,62),
7630 (6,3,50,53,102,79,52,63),
7631 (6,3,51,54,104,81,53,64),
7632 (6,3,52,54,106,82,54,65),
7633 (6,3,53,55,108,84,55,66),
7634 (6,3,54,56,110,85,56,67),
7635 (6,3,55,57,112,87,57,68),
7636 (6,3,56,57,114,88,58,69),
7637 (6,3,57,58,117,90,59,70),
7638 (6,3,58,59,119,91,60,71),
7639 (6,3,59,60,121,93,61,72),
7640 (6,3,60,61,123,94,62,74),
7641 (6,3,61,61,125,96,63,75),
7642 (6,3,62,62,128,97,64,76),
7643 (6,3,63,63,130,99,65,77),
7644 (6,3,64,64,132,100,66,78),
7645 (6,3,65,65,134,102,67,79),
7646 (6,3,66,66,137,104,68,80),
7647 (6,3,67,66,139,105,69,81),
7648 (6,3,68,67,141,107,70,83),
7649 (6,3,69,68,144,108,71,84),
7650 (6,3,70,69,146,110,72,85),
7651 (6,3,71,70,149,112,73,86),
7652 (6,3,72,71,152,114,74,87),
7653 (6,3,73,72,155,116,75,89),
7654 (6,3,74,73,158,118,77,90),
7655 (6,3,75,74,161,120,78,92),
7656 (6,3,76,75,164,122,79,93),
7657 (6,3,77,76,167,124,81,95),
7658 (6,3,78,77,176,126,85,96),
7659 (6,3,79,78,179,128,86,98),
7660 (6,3,80,79,183,130,88,99),
7661 (6,6,1,28,15,24,15,22),
7662 (6,6,2,29,16,25,15,22),
7663 (6,6,3,31,17,26,15,23),
7664 (6,6,4,32,17,27,15,23),
7665 (6,6,5,33,18,29,15,23),
7666 (6,6,6,34,19,30,15,23),
7667 (6,6,7,36,20,31,16,24),
7668 (6,6,8,37,21,32,16,24),
7669 (6,6,9,38,22,34,16,24),
7670 (6,6,10,40,22,35,16,25),
7671 (6,6,11,41,23,36,16,25),
7672 (6,6,12,43,24,37,16,25),
7673 (6,6,13,44,25,39,16,26),
7674 (6,6,14,46,26,40,16,26),
7675 (6,6,15,47,27,41,17,26),
7676 (6,6,16,48,28,43,17,27),
7677 (6,6,17,50,29,44,17,27),
7678 (6,6,18,51,30,45,17,27),
7679 (6,6,19,53,31,47,17,28),
7680 (6,6,20,54,32,48,17,28),
7681 (6,6,21,56,33,50,17,28),
7682 (6,6,22,58,34,51,18,29),
7683 (6,6,23,59,35,52,18,29),
7684 (6,6,24,61,36,54,18,30),
7685 (6,6,25,62,37,55,18,30),
7686 (6,6,26,64,38,57,18,30),
7687 (6,6,27,66,39,58,18,31),
7688 (6,6,28,67,40,60,18,31),
7689 (6,6,29,69,41,61,19,32),
7690 (6,6,30,71,42,63,19,32),
7691 (6,6,31,72,43,64,19,32),
7692 (6,6,32,74,44,66,19,33),
7693 (6,6,33,76,45,67,19,33),
7694 (6,6,34,77,46,69,20,34),
7695 (6,6,35,79,47,71,20,34),
7696 (6,6,36,81,48,72,20,35),
7697 (6,6,37,83,49,74,20,35),
7698 (6,6,38,85,50,76,20,35),
7699 (6,6,39,86,51,77,21,36),
7700 (6,6,40,88,53,79,21,36),
7701 (6,6,41,90,54,81,21,37),
7702 (6,6,42,92,55,82,21,37),
7703 (6,6,43,94,56,84,21,38),
7704 (6,6,44,96,57,86,22,38),
7705 (6,6,45,98,58,87,22,39),
7706 (6,6,46,99,60,89,22,39),
7707 (6,6,47,101,60,91,22,40),
7708 (6,6,48,103,61,93,22,40),
7709 (6,6,49,105,62,94,23,41),
7710 (6,6,50,107,63,96,23,41),
7711 (6,6,51,109,64,97,23,42),
7712 (6,6,52,110,65,98,23,42),
7713 (6,6,53,111,66,99,24,43),
7714 (6,6,54,112,67,100,24,44),
7715 (6,6,55,113,68,101,24,44),
7716 (6,6,56,116,70,104,24,45),
7717 (6,6,57,121,71,106,24,45),
7718 (6,6,58,123,72,108,25,46),
7719 (6,6,59,123,74,110,25,46),
7720 (6,6,60,125,75,112,25,47),
7721 (6,6,61,127,76,114,25,48),
7722 (6,6,62,133,78,116,25,48),
7723 (6,6,63,135,79,119,26,49),
7724 (6,6,64,139,81,121,26,49),
7725 (6,6,65,142,82,123,26,50),
7726 (6,6,66,146,84,126,26,51),
7727 (6,6,67,150,85,132,27,51),
7728 (6,6,68,153,87,137,27,52),
7729 (6,6,69,157,88,140,27,53),
7730 (6,6,70,160,90,143,27,53),
7731 (6,6,71,163,92,146,28,54),
7732 (6,6,72,165,93,148,28,55),
7733 (6,6,73,167,95,150,28,56),
7734 (6,6,74,171,97,153,28,56),
7735 (6,6,75,174,98,156,29,57),
7736 (6,6,76,178,100,156,29,58),
7737 (6,6,77,179,102,156,29,59),
7738 (6,6,78,179,103,156,29,59),
7739 (6,6,79,182,105,159,30,60),
7740 (6,6,80,185,107,162,30,61),
7741 (6,7,1,26,15,23,16,24),
7742 (6,7,2,27,15,24,17,25),
7743 (6,7,3,28,16,25,18,26),
7744 (6,7,4,28,16,26,19,27),
7745 (6,7,5,29,17,27,20,28),
7746 (6,7,6,30,17,28,21,29),
7747 (6,7,7,31,18,29,22,30),
7748 (6,7,8,32,18,30,23,31),
7749 (6,7,9,33,19,31,24,32),
7750 (6,7,10,34,19,32,25,33),
7751 (6,7,11,35,20,33,26,35),
7752 (6,7,12,35,20,34,27,36),
7753 (6,7,13,36,21,35,28,37),
7754 (6,7,14,37,21,36,29,38),
7755 (6,7,15,38,22,37,30,39),
7756 (6,7,16,39,22,39,31,40),
7757 (6,7,17,40,23,40,32,42),
7758 (6,7,18,41,23,41,33,43),
7759 (6,7,19,42,24,42,34,44),
7760 (6,7,20,43,24,43,35,45),
7761 (6,7,21,44,25,44,36,46),
7762 (6,7,22,45,25,45,37,48),
7763 (6,7,23,46,26,47,38,49),
7764 (6,7,24,47,27,48,40,50),
7765 (6,7,25,48,27,49,41,51),
7766 (6,7,26,49,28,50,42,53),
7767 (6,7,27,51,28,52,43,54),
7768 (6,7,28,52,29,53,44,55),
7769 (6,7,29,53,29,54,45,57),
7770 (6,7,30,54,30,55,47,58),
7771 (6,7,31,55,31,57,48,59),
7772 (6,7,32,56,31,58,49,61),
7773 (6,7,33,57,32,59,50,62),
7774 (6,7,34,58,33,61,51,64),
7775 (6,7,35,60,33,62,53,65),
7776 (6,7,36,61,34,63,54,66),
7777 (6,7,37,62,34,65,55,68),
7778 (6,7,38,63,35,66,57,69),
7779 (6,7,39,64,36,67,58,71),
7780 (6,7,40,66,36,69,59,72),
7781 (6,7,41,67,37,70,60,74),
7782 (6,7,42,68,38,72,62,75),
7783 (6,7,43,69,38,73,63,77),
7784 (6,7,44,70,39,74,64,78),
7785 (6,7,45,72,40,76,66,80),
7786 (6,7,46,73,41,77,67,81),
7787 (6,7,47,74,41,79,69,83),
7788 (6,7,48,76,42,80,70,84),
7789 (6,7,49,77,43,82,71,86),
7790 (6,7,50,78,43,83,73,88),
7791 (6,7,51,80,44,85,74,89),
7792 (6,7,52,81,45,86,76,91),
7793 (6,7,53,82,46,88,77,92),
7794 (6,7,54,84,46,90,78,94),
7795 (6,7,55,85,47,91,80,96),
7796 (6,7,56,86,48,93,81,97),
7797 (6,7,57,88,49,94,83,99),
7798 (6,7,58,89,49,96,84,101),
7799 (6,7,59,91,50,97,86,102),
7800 (6,7,60,92,51,99,87,104),
7801 (6,7,61,94,52,101,89,106),
7802 (6,7,62,95,52,102,90,108),
7803 (6,7,63,96,53,104,92,109),
7804 (6,7,64,98,54,106,93,111),
7805 (6,7,65,99,55,107,95,113),
7806 (6,7,66,101,56,109,97,115),
7807 (6,7,67,102,57,111,98,117),
7808 (6,7,68,104,57,113,100,118),
7809 (6,7,69,105,58,114,101,120),
7810 (6,7,70,107,59,116,103,122),
7811 (6,7,71,108,60,118,113,124),
7812 (6,7,72,110,61,120,117,127),
7813 (6,7,73,112,62,122,119,129),
7814 (6,7,74,114,63,125,122,131),
7815 (6,7,75,116,64,127,124,133),
7816 (6,7,76,118,65,129,126,136),
7817 (6,7,77,119,66,131,128,138),
7818 (6,7,78,121,67,133,130,140),
7819 (6,7,79,123,68,136,133,143),
7820 (6,7,80,125,69,138,135,145),
7821 (6,11,1,26,15,22,17,24),
7822 (6,11,2,27,16,23,18,25),
7823 (6,11,3,27,16,23,19,26),
7824 (6,11,4,28,17,24,20,27),
7825 (6,11,5,28,17,25,21,29),
7826 (6,11,6,29,18,25,22,30),
7827 (6,11,7,29,18,26,23,31),
7828 (6,11,8,30,19,27,24,32),
7829 (6,11,9,30,19,27,26,34),
7830 (6,11,10,31,20,28,27,35),
7831 (6,11,11,32,20,29,28,36),
7832 (6,11,12,32,21,29,29,37),
7833 (6,11,13,33,21,30,30,39),
7834 (6,11,14,33,22,31,31,40),
7835 (6,11,15,34,23,32,32,41),
7836 (6,11,16,35,23,32,34,43),
7837 (6,11,17,35,24,33,35,44),
7838 (6,11,18,36,24,34,36,45),
7839 (6,11,19,37,25,35,37,47),
7840 (6,11,20,37,26,35,39,48),
7841 (6,11,21,38,26,36,40,50),
7842 (6,11,22,39,27,37,41,51),
7843 (6,11,23,39,28,38,42,52),
7844 (6,11,24,40,28,39,44,54),
7845 (6,11,25,41,29,39,45,55),
7846 (6,11,26,41,30,40,46,57),
7847 (6,11,27,42,30,41,47,58),
7848 (6,11,28,43,31,42,49,60),
7849 (6,11,29,44,32,43,50,61),
7850 (6,11,30,44,32,44,52,63),
7851 (6,11,31,45,33,44,53,64),
7852 (6,11,32,46,34,45,54,66),
7853 (6,11,33,47,34,46,56,67),
7854 (6,11,34,47,35,47,57,69),
7855 (6,11,35,48,36,48,58,71),
7856 (6,11,36,49,36,49,60,72),
7857 (6,11,37,50,37,50,61,74),
7858 (6,11,38,51,38,51,63,76),
7859 (6,11,39,52,39,52,64,77),
7860 (6,11,40,52,39,53,66,79),
7861 (6,11,41,53,40,54,67,81),
7862 (6,11,42,54,41,55,69,82),
7863 (6,11,43,55,42,56,70,84),
7864 (6,11,44,56,43,57,72,86),
7865 (6,11,45,57,43,57,73,87),
7866 (6,11,46,57,44,58,75,89),
7867 (6,11,47,58,45,60,76,91),
7868 (6,11,48,59,46,61,78,93),
7869 (6,11,49,60,47,62,79,94),
7870 (6,11,50,61,47,63,81,96),
7871 (6,11,51,62,48,64,83,98),
7872 (6,11,52,63,49,65,84,100),
7873 (6,11,53,64,50,66,86,102),
7874 (6,11,54,65,51,67,87,104),
7875 (6,11,55,66,51,68,89,105),
7876 (6,11,56,67,52,69,91,107),
7877 (6,11,57,68,53,70,92,109),
7878 (6,11,58,69,54,71,94,111),
7879 (6,11,59,70,55,72,96,113),
7880 (6,11,60,71,56,73,97,115),
7881 (6,11,61,72,57,74,99,117),
7882 (6,11,62,73,58,76,101,119),
7883 (6,11,63,74,59,77,103,121),
7884 (6,11,64,75,59,78,104,123),
7885 (6,11,65,76,60,79,106,125),
7886 (6,11,66,77,61,80,108,127),
7887 (6,11,67,78,62,81,110,129),
7888 (6,11,68,79,63,83,111,131),
7889 (6,11,69,80,64,84,113,133),
7890 (6,11,70,81,65,85,115,135),
7891 (6,11,71,83,66,86,117,137),
7892 (6,11,72,84,68,88,120,140),
7893 (6,11,73,85,69,89,122,142),
7894 (6,11,74,86,70,91,124,145),
7895 (6,11,75,88,71,92,126,147),
7896 (6,11,76,89,72,94,128,150),
7897 (6,11,77,90,73,95,131,153),
7898 (6,11,78,92,75,97,133,155),
7899 (6,11,79,93,76,98,136,158),
7900 (6,11,80,94,77,100,138,185),
7901 (7,1,1,18,23,21,24,20),
7902 (7,1,2,19,24,22,24,20),
7903 (7,1,3,21,25,23,24,21),
7904 (7,1,4,22,25,25,24,21),
7905 (7,1,5,23,26,26,24,21),
7906 (7,1,6,25,27,27,24,21),
7907 (7,1,7,26,28,28,24,22),
7908 (7,1,8,27,29,29,25,22),
7909 (7,1,9,29,29,31,25,22),
7910 (7,1,10,30,30,32,25,23),
7911 (7,1,11,32,31,33,25,23),
7912 (7,1,12,33,32,34,25,23),
7913 (7,1,13,34,33,36,25,24),
7914 (7,1,14,36,34,37,25,24),
7915 (7,1,15,37,35,38,25,24),
7916 (7,1,16,39,36,40,25,25),
7917 (7,1,17,40,36,41,25,25),
7918 (7,1,18,42,37,43,26,25),
7919 (7,1,19,43,38,44,26,26),
7920 (7,1,20,45,39,45,26,26),
7921 (7,1,21,47,40,47,26,26),
7922 (7,1,22,48,41,48,26,27),
7923 (7,1,23,50,42,50,26,27),
7924 (7,1,24,51,43,51,26,28),
7925 (7,1,25,53,44,52,27,28),
7926 (7,1,26,55,45,54,27,28),
7927 (7,1,27,56,46,55,27,29),
7928 (7,1,28,58,47,57,27,29),
7929 (7,1,29,59,48,58,27,30),
7930 (7,1,30,61,49,60,27,30),
7931 (7,1,31,63,50,62,27,30),
7932 (7,1,32,65,51,63,28,31),
7933 (7,1,33,66,52,65,28,31),
7934 (7,1,34,68,53,66,28,32),
7935 (7,1,35,70,55,68,28,32),
7936 (7,1,36,72,56,69,28,33),
7937 (7,1,37,73,57,71,29,33),
7938 (7,1,38,75,58,73,29,34),
7939 (7,1,39,77,59,74,29,34),
7940 (7,1,40,79,60,76,29,35),
7941 (7,1,41,81,61,78,29,35),
7942 (7,1,42,82,62,79,30,35),
7943 (7,1,43,84,64,81,30,36),
7944 (7,1,44,86,65,83,30,36),
7945 (7,1,45,88,66,85,30,37),
7946 (7,1,46,90,67,86,30,37),
7947 (7,1,47,92,68,88,31,38),
7948 (7,1,48,94,70,90,31,38),
7949 (7,1,49,96,71,92,31,39),
7950 (7,1,50,98,72,93,31,40),
7951 (7,1,51,100,73,95,32,40),
7952 (7,1,52,102,75,97,32,41),
7953 (7,1,53,104,76,99,32,41),
7954 (7,1,54,106,77,101,32,42),
7955 (7,1,55,108,78,103,33,42),
7956 (7,1,56,110,80,104,33,43),
7957 (7,1,57,112,81,106,33,43),
7958 (7,1,58,114,82,108,33,44),
7959 (7,1,59,116,84,110,34,44),
7960 (7,1,60,118,85,112,34,45),
7961 (7,1,61,120,86,114,34,46),
7962 (7,1,62,122,88,116,35,46),
7963 (7,1,63,125,89,118,35,47),
7964 (7,1,64,127,91,120,35,47),
7965 (7,1,65,129,92,122,35,48),
7966 (7,1,66,131,93,124,36,49),
7967 (7,1,67,133,95,126,36,49),
7968 (7,1,68,136,96,128,36,50),
7969 (7,1,69,138,98,130,37,50),
7970 (7,1,70,140,99,132,37,51),
7971 (7,1,71,143,100,134,37,52),
7972 (7,1,72,145,102,137,37,53),
7973 (7,1,73,148,104,139,37,54),
7974 (7,1,74,151,105,142,38,54),
7975 (7,1,75,154,107,144,38,55),
7976 (7,1,76,157,109,147,38,56),
7977 (7,1,77,163,111,153,39,57),
7978 (7,1,78,169,112,158,39,57),
7979 (7,1,79,172,114,161,39,58),
7980 (7,1,80,175,116,164,40,59),
7981 (7,4,1,16,26,20,24,20),
7982 (7,4,2,17,27,21,24,20),
7983 (7,4,3,18,29,21,24,21),
7984 (7,4,4,18,30,22,24,21),
7985 (7,4,5,19,32,23,25,21),
7986 (7,4,6,20,33,24,25,22),
7987 (7,4,7,21,35,24,25,22),
7988 (7,4,8,22,36,25,25,23),
7989 (7,4,9,22,38,26,25,23),
7990 (7,4,10,23,39,26,25,23),
7991 (7,4,11,24,41,27,25,24),
7992 (7,4,12,25,42,28,26,24),
7993 (7,4,13,26,44,29,26,25),
7994 (7,4,14,27,46,30,26,25),
7995 (7,4,15,28,47,30,26,25),
7996 (7,4,16,28,49,31,26,26),
7997 (7,4,17,29,50,32,27,26),
7998 (7,4,18,30,52,33,27,27),
7999 (7,4,19,31,54,34,27,27),
8000 (7,4,20,32,56,35,27,28),
8001 (7,4,21,33,57,35,27,28),
8002 (7,4,22,34,59,36,28,29),
8003 (7,4,23,35,61,37,28,29),
8004 (7,4,24,36,62,38,28,30),
8005 (7,4,25,37,64,39,28,30),
8006 (7,4,26,38,66,40,29,31),
8007 (7,4,27,39,68,41,29,31),
8008 (7,4,28,40,70,42,29,32),
8009 (7,4,29,41,72,43,29,32),
8010 (7,4,30,42,73,43,29,33),
8011 (7,4,31,43,75,44,30,33),
8012 (7,4,32,44,77,45,30,34),
8013 (7,4,33,45,79,46,30,34),
8014 (7,4,34,46,81,47,31,35),
8015 (7,4,35,47,83,48,31,35),
8016 (7,4,36,48,85,49,31,36),
8017 (7,4,37,49,87,50,31,36),
8018 (7,4,38,50,89,51,32,37),
8019 (7,4,39,51,91,52,32,38),
8020 (7,4,40,53,93,53,32,38),
8021 (7,4,41,54,95,54,33,39),
8022 (7,4,42,55,97,55,33,39),
8023 (7,4,43,56,99,56,33,40),
8024 (7,4,44,57,101,57,33,40),
8025 (7,4,45,58,103,59,34,41),
8026 (7,4,46,59,105,60,34,42),
8027 (7,4,47,61,107,61,34,42),
8028 (7,4,48,62,110,62,35,43),
8029 (7,4,49,63,112,63,35,44),
8030 (7,4,50,64,114,64,35,44),
8031 (7,4,51,65,116,65,36,45),
8032 (7,4,52,67,118,66,36,45),
8033 (7,4,53,68,121,67,36,46),
8034 (7,4,54,69,123,69,37,47),
8035 (7,4,55,70,125,70,37,47),
8036 (7,4,56,72,127,71,37,48),
8037 (7,4,57,73,130,72,38,49),
8038 (7,4,58,74,132,73,38,49),
8039 (7,4,59,75,134,74,39,50),
8040 (7,4,60,77,137,76,39,51),
8041 (7,4,61,78,139,77,39,51),
8042 (7,4,62,79,141,78,40,52),
8043 (7,4,63,81,144,79,40,53),
8044 (7,4,64,82,146,80,41,54),
8045 (7,4,65,83,149,82,41,54),
8046 (7,4,66,85,151,83,41,55),
8047 (7,4,67,86,154,84,42,56),
8048 (7,4,68,87,156,85,42,57),
8049 (7,4,69,89,158,87,43,57),
8050 (7,4,70,90,161,88,43,58),
8051 (7,4,71,92,164,89,44,59),
8052 (7,4,72,94,167,91,45,59),
8053 (7,4,73,95,170,93,45,60),
8054 (7,4,74,97,173,94,46,61),
8055 (7,4,75,99,176,96,46,62),
8056 (7,4,76,100,179,97,46,63),
8057 (7,4,77,102,182,102,47,64),
8058 (7,4,78,104,186,105,47,65),
8059 (7,4,79,106,189,106,48,66),
8060 (7,4,80,108,192,108,48,67),
8061 (7,6,1,18,23,21,24,20),
8062 (7,6,2,19,24,22,24,20),
8063 (7,6,3,21,25,23,24,21),
8064 (7,6,4,22,25,25,24,21),
8065 (7,6,5,23,26,26,24,21),
8066 (7,6,6,25,27,27,24,21),
8067 (7,6,7,26,28,28,24,22),
8068 (7,6,8,27,29,29,25,22),
8069 (7,6,9,29,29,31,25,22),
8070 (7,6,10,30,30,32,25,23),
8071 (7,6,11,32,31,33,25,23),
8072 (7,6,12,33,32,34,25,23),
8073 (7,6,13,34,33,36,25,24),
8074 (7,6,14,36,34,37,25,24),
8075 (7,6,15,37,35,38,25,24),
8076 (7,6,16,39,36,40,25,25),
8077 (7,6,17,40,36,41,25,25),
8078 (7,6,18,42,37,43,26,25),
8079 (7,6,19,43,38,44,26,26),
8080 (7,6,20,45,39,45,26,26),
8081 (7,6,21,47,40,47,26,26),
8082 (7,6,22,48,41,48,26,27),
8083 (7,6,23,50,42,50,26,27),
8084 (7,6,24,51,43,51,26,28),
8085 (7,6,25,53,44,52,27,28),
8086 (7,6,26,55,45,54,27,28),
8087 (7,6,27,56,46,55,27,29),
8088 (7,6,28,58,47,57,27,29),
8089 (7,6,29,59,48,58,27,30),
8090 (7,6,30,61,49,60,27,30),
8091 (7,6,31,63,50,62,27,30),
8092 (7,6,32,65,51,63,28,31),
8093 (7,6,33,66,52,65,28,31),
8094 (7,6,34,68,53,66,28,32),
8095 (7,6,35,70,55,68,28,32),
8096 (7,6,36,72,56,69,28,33),
8097 (7,6,37,73,57,71,29,33),
8098 (7,6,38,75,58,73,29,34),
8099 (7,6,39,77,59,74,29,34),
8100 (7,6,40,79,60,76,29,35),
8101 (7,6,41,81,61,78,29,35),
8102 (7,6,42,82,62,79,30,35),
8103 (7,6,43,84,64,81,30,36),
8104 (7,6,44,86,65,83,30,36),
8105 (7,6,45,88,66,85,30,37),
8106 (7,6,46,90,67,86,30,37),
8107 (7,6,47,92,68,88,31,38),
8108 (7,6,48,94,70,90,31,38),
8109 (7,6,49,96,71,92,31,39),
8110 (7,6,50,98,72,93,31,40),
8111 (7,6,51,99,72,93,32,40),
8112 (7,6,52,100,73,95,32,41),
8113 (7,6,53,101,74,96,32,41),
8114 (7,6,54,102,75,97,32,42),
8115 (7,6,55,103,76,98,33,42),
8116 (7,6,56,106,78,101,33,43),
8117 (7,6,57,111,79,103,33,43),
8118 (7,6,58,113,80,105,34,44),
8119 (7,6,59,116,82,107,34,44),
8120 (7,6,60,118,83,109,34,45),
8121 (7,6,61,120,84,111,34,46),
8122 (7,6,62,127,86,119,34,46),
8123 (7,6,63,129,87,122,35,47),
8124 (7,6,64,132,89,125,35,47),
8125 (7,6,65,135,90,127,35,48),
8126 (7,6,66,137,92,130,35,49),
8127 (7,6,67,138,93,130,36,49),
8128 (7,6,68,140,95,131,36,50),
8129 (7,6,69,142,96,131,36,51),
8130 (7,6,70,145,98,132,36,51),
8131 (7,6,71,148,100,135,37,52),
8132 (7,6,72,150,101,137,37,53),
8133 (7,6,73,153,103,140,37,54),
8134 (7,6,74,154,105,142,37,54),
8135 (7,6,75,155,106,145,38,55),
8136 (7,6,76,158,108,151,38,56),
8137 (7,6,77,161,110,157,38,57),
8138 (7,6,78,164,111,162,38,57),
8139 (7,6,79,167,113,165,39,58),
8140 (7,6,80,170,115,168,39,59),
8141 (7,8,1,15,23,19,27,22),
8142 (7,8,2,15,23,19,28,23),
8143 (7,8,3,15,23,20,30,25),
8144 (7,8,4,15,23,20,31,26),
8145 (7,8,5,15,24,20,32,27),
8146 (7,8,6,15,24,20,34,29),
8147 (7,8,7,16,24,21,35,30),
8148 (7,8,8,16,24,21,37,31),
8149 (7,8,9,16,24,21,38,33),
8150 (7,8,10,16,24,22,40,34),
8151 (7,8,11,16,25,22,41,36),
8152 (7,8,12,16,25,22,42,37),
8153 (7,8,13,16,25,23,44,38),
8154 (7,8,14,16,25,23,45,40),
8155 (7,8,15,17,25,23,47,41),
8156 (7,8,16,17,25,24,49,43),
8157 (7,8,17,17,26,24,50,44),
8158 (7,8,18,17,26,24,52,46),
8159 (7,8,19,17,26,25,53,47),
8160 (7,8,20,17,26,25,55,49),
8161 (7,8,21,17,26,26,57,51),
8162 (7,8,22,18,27,26,58,52),
8163 (7,8,23,18,27,26,60,54),
8164 (7,8,24,18,27,27,61,55),
8165 (7,8,25,18,27,27,63,57),
8166 (7,8,26,18,28,27,65,59),
8167 (7,8,27,18,28,28,67,60),
8168 (7,8,28,18,28,28,68,62),
8169 (7,8,29,19,28,29,70,64),
8170 (7,8,30,19,29,29,72,65),
8171 (7,8,31,19,29,30,74,67),
8172 (7,8,32,19,29,30,75,69),
8173 (7,8,33,19,29,30,77,70),
8174 (7,8,34,20,30,31,79,72),
8175 (7,8,35,20,30,31,81,74),
8176 (7,8,36,20,30,32,83,76),
8177 (7,8,37,20,30,32,85,78),
8178 (7,8,38,20,31,33,86,79),
8179 (7,8,39,21,31,33,88,81),
8180 (7,8,40,21,31,34,90,83),
8181 (7,8,41,21,32,34,92,85),
8182 (7,8,42,21,32,35,94,87),
8183 (7,8,43,21,32,35,96,89),
8184 (7,8,44,22,32,36,98,91),
8185 (7,8,45,22,33,36,100,92),
8186 (7,8,46,22,33,37,102,94),
8187 (7,8,47,22,33,37,104,96),
8188 (7,8,48,22,34,38,106,98),
8189 (7,8,49,23,34,38,108,100),
8190 (7,8,50,23,34,39,110,102),
8191 (7,8,51,23,35,39,112,104),
8192 (7,8,52,23,35,40,114,106),
8193 (7,8,53,24,35,40,117,108),
8194 (7,8,54,24,36,41,119,110),
8195 (7,8,55,24,36,41,121,112),
8196 (7,8,56,24,37,42,123,114),
8197 (7,8,57,25,37,42,125,117),
8198 (7,8,58,25,37,43,127,119),
8199 (7,8,59,25,38,43,130,121),
8200 (7,8,60,25,38,44,132,123),
8201 (7,8,61,26,38,45,134,125),
8202 (7,8,62,26,39,45,136,127),
8203 (7,8,63,26,39,46,139,129),
8204 (7,8,64,26,40,46,141,132),
8205 (7,8,65,27,40,47,143,134),
8206 (7,8,66,27,40,48,146,136),
8207 (7,8,67,27,41,48,148,138),
8208 (7,8,68,27,41,49,150,140),
8209 (7,8,69,28,42,49,153,143),
8210 (7,8,70,28,42,50,155,145),
8211 (7,8,71,28,42,51,168,148),
8212 (7,8,72,28,43,52,168,151),
8213 (7,8,73,28,43,53,171,154),
8214 (7,8,74,29,44,53,174,156),
8215 (7,8,75,29,44,54,177,159),
8216 (7,8,76,29,44,55,180,162),
8217 (7,8,77,30,45,56,183,165),
8218 (7,8,78,30,45,56,186,168),
8219 (7,8,79,30,46,57,190,171),
8220 (7,8,80,31,46,58,193,174),
8221 (7,9,1,15,23,20,26,22),
8222 (7,9,2,15,23,21,27,23),
8223 (7,9,3,16,24,21,28,24),
8224 (7,9,4,16,24,22,29,25),
8225 (7,9,5,16,24,22,31,27),
8226 (7,9,6,17,25,23,32,28),
8227 (7,9,7,17,25,23,33,29),
8228 (7,9,8,17,26,24,34,30),
8229 (7,9,9,17,26,25,36,31),
8230 (7,9,10,18,26,25,37,33),
8231 (7,9,11,18,27,26,38,34),
8232 (7,9,12,18,27,26,39,35),
8233 (7,9,13,19,28,27,41,36),
8234 (7,9,14,19,28,28,42,38),
8235 (7,9,15,20,28,28,43,39),
8236 (7,9,16,20,29,29,45,40),
8237 (7,9,17,20,29,30,46,42),
8238 (7,9,18,21,30,30,47,43),
8239 (7,9,19,21,30,31,49,44),
8240 (7,9,20,21,31,32,50,46),
8241 (7,9,21,22,31,32,51,47),
8242 (7,9,22,22,31,33,53,49),
8243 (7,9,23,23,32,34,54,50),
8244 (7,9,24,23,32,34,56,51),
8245 (7,9,25,23,33,35,57,53),
8246 (7,9,26,24,33,36,59,54),
8247 (7,9,27,24,34,37,60,56),
8248 (7,9,28,25,34,37,62,57),
8249 (7,9,29,25,35,38,63,59),
8250 (7,9,30,25,35,39,65,60),
8251 (7,9,31,26,36,40,66,62),
8252 (7,9,32,26,36,40,68,63),
8253 (7,9,33,27,37,41,69,65),
8254 (7,9,34,27,38,42,71,66),
8255 (7,9,35,28,38,43,73,68),
8256 (7,9,36,28,39,43,74,69),
8257 (7,9,37,28,39,44,76,71),
8258 (7,9,38,29,40,45,77,73),
8259 (7,9,39,29,40,46,79,74),
8260 (7,9,40,30,41,47,81,76),
8261 (7,9,41,30,41,48,82,78),
8262 (7,9,42,31,42,48,84,79),
8263 (7,9,43,31,43,49,86,81),
8264 (7,9,44,32,43,50,88,83),
8265 (7,9,45,32,44,51,89,84),
8266 (7,9,46,33,44,52,91,86),
8267 (7,9,47,33,45,53,93,88),
8268 (7,9,48,34,46,54,95,89),
8269 (7,9,49,34,46,54,96,91),
8270 (7,9,50,35,47,55,98,93),
8271 (7,9,51,35,48,56,100,95),
8272 (7,9,52,36,48,57,102,97),
8273 (7,9,53,36,49,58,104,98),
8274 (7,9,54,37,50,59,105,100),
8275 (7,9,55,37,50,60,107,102),
8276 (7,9,56,38,51,61,109,104),
8277 (7,9,57,38,52,62,111,106),
8278 (7,9,58,39,52,63,113,108),
8279 (7,9,59,40,53,64,115,109),
8280 (7,9,60,40,54,65,117,111),
8281 (7,9,61,41,54,66,119,113),
8282 (7,9,62,41,55,67,121,115),
8283 (7,9,63,42,56,68,123,117),
8284 (7,9,64,42,57,69,125,119),
8285 (7,9,65,43,57,70,127,121),
8286 (7,9,66,44,58,71,129,123),
8287 (7,9,67,44,59,72,131,125),
8288 (7,9,68,45,59,73,133,127),
8289 (7,9,69,45,60,74,135,129),
8290 (7,9,70,46,61,75,137,131),
8291 (7,9,71,47,62,84,147,142),
8292 (7,9,72,48,62,85,148,144),
8293 (7,9,73,49,63,85,153,147),
8294 (7,9,74,49,64,88,153,150),
8295 (7,9,75,50,65,90,155,152),
8296 (7,9,76,51,66,91,158,155),
8297 (7,9,77,52,67,92,161,158),
8298 (7,9,78,52,68,93,163,161),
8299 (7,9,79,53,69,95,166,164),
8300 (7,9,80,54,70,96,170,166),
8301 (8,1,1,24,22,23,16,21),
8302 (8,1,2,25,23,24,16,21),
8303 (8,1,3,27,24,25,16,22),
8304 (8,1,4,28,24,26,16,22),
8305 (8,1,5,29,25,28,16,22),
8306 (8,1,6,31,26,29,16,22),
8307 (8,1,7,32,27,30,17,23),
8308 (8,1,8,33,28,31,17,23),
8309 (8,1,9,35,28,33,17,23),
8310 (8,1,10,36,29,34,17,24),
8311 (8,1,11,37,30,35,17,24),
8312 (8,1,12,39,31,36,17,24),
8313 (8,1,13,40,32,38,17,25),
8314 (8,1,14,42,33,39,17,25),
8315 (8,1,15,43,34,40,18,25),
8316 (8,1,16,45,35,42,18,26),
8317 (8,1,17,46,35,43,18,26),
8318 (8,1,18,48,36,44,18,26),
8319 (8,1,19,49,37,46,18,27),
8320 (8,1,20,51,38,47,18,27),
8321 (8,1,21,52,39,49,18,27),
8322 (8,1,22,54,40,50,18,28),
8323 (8,1,23,55,41,51,19,28),
8324 (8,1,24,57,42,53,19,29),
8325 (8,1,25,59,43,54,19,29),
8326 (8,1,26,60,44,56,19,29),
8327 (8,1,27,62,45,57,19,30),
8328 (8,1,28,63,46,59,19,30),
8329 (8,1,29,65,47,60,20,31),
8330 (8,1,30,67,48,62,20,31),
8331 (8,1,31,69,49,63,20,31),
8332 (8,1,32,70,50,65,20,32),
8333 (8,1,33,72,51,67,20,32),
8334 (8,1,34,74,53,68,20,33),
8335 (8,1,35,75,54,70,21,33),
8336 (8,1,36,77,55,71,21,34),
8337 (8,1,37,79,56,73,21,34),
8338 (8,1,38,81,57,75,21,35),
8339 (8,1,39,83,58,76,21,35),
8340 (8,1,40,84,59,78,22,35),
8341 (8,1,41,86,60,80,22,36),
8342 (8,1,42,88,62,81,22,36),
8343 (8,1,43,90,63,83,22,37),
8344 (8,1,44,92,64,85,22,37),
8345 (8,1,45,94,65,86,23,38),
8346 (8,1,46,96,66,88,23,38),
8347 (8,1,47,98,67,90,23,39),
8348 (8,1,48,100,69,92,23,39),
8349 (8,1,49,102,70,93,24,40),
8350 (8,1,50,103,71,95,24,40),
8351 (8,1,51,105,72,97,24,41),
8352 (8,1,52,107,74,99,24,42),
8353 (8,1,53,109,75,101,25,42),
8354 (8,1,54,112,76,103,25,43),
8355 (8,1,55,114,78,104,25,43),
8356 (8,1,56,116,79,106,25,44),
8357 (8,1,57,118,80,108,25,44),
8358 (8,1,58,120,81,110,26,45),
8359 (8,1,59,122,83,112,26,45),
8360 (8,1,60,124,84,114,26,46),
8361 (8,1,61,126,85,116,27,47),
8362 (8,1,62,128,87,118,27,47),
8363 (8,1,63,130,88,120,27,48),
8364 (8,1,64,133,90,122,27,48),
8365 (8,1,65,135,91,124,28,49),
8366 (8,1,66,137,92,126,28,50),
8367 (8,1,67,139,94,128,28,50),
8368 (8,1,68,141,95,130,28,51),
8369 (8,1,69,144,97,132,29,51),
8370 (8,1,70,146,98,134,29,52),
8371 (8,1,71,149,99,136,29,53),
8372 (8,1,72,151,101,139,29,54),
8373 (8,1,73,154,103,141,29,55),
8374 (8,1,74,157,104,144,30,55),
8375 (8,1,75,166,106,151,30,56),
8376 (8,1,76,172,108,157,30,57),
8377 (8,1,77,175,110,161,31,58),
8378 (8,1,78,179,111,163,31,58),
8379 (8,1,79,182,113,164,31,59),
8380 (8,1,80,185,115,169,32,60),
8381 (8,3,1,21,25,22,16,22),
8382 (8,3,2,21,26,23,17,23),
8383 (8,3,3,22,28,24,17,23),
8384 (8,3,4,22,29,25,18,24),
8385 (8,3,5,23,30,26,18,25),
8386 (8,3,6,23,32,27,19,25),
8387 (8,3,7,24,33,28,20,26),
8388 (8,3,8,24,35,28,20,26),
8389 (8,3,9,25,36,29,21,27),
8390 (8,3,10,25,38,30,21,28),
8391 (8,3,11,25,39,31,22,29),
8392 (8,3,12,26,41,32,23,29),
8393 (8,3,13,26,42,33,23,30),
8394 (8,3,14,27,44,34,24,31),
8395 (8,3,15,27,45,35,25,31),
8396 (8,3,16,28,47,36,25,32),
8397 (8,3,17,28,48,38,26,33),
8398 (8,3,18,29,50,39,27,34),
8399 (8,3,19,29,51,40,28,34),
8400 (8,3,20,30,53,41,28,35),
8401 (8,3,21,31,55,42,29,36),
8402 (8,3,22,31,56,43,30,37),
8403 (8,3,23,32,58,44,30,37),
8404 (8,3,24,32,60,45,31,38),
8405 (8,3,25,33,61,46,32,39),
8406 (8,3,26,33,63,48,33,40),
8407 (8,3,27,34,65,49,33,41),
8408 (8,3,28,35,66,50,34,41),
8409 (8,3,29,35,68,51,35,42),
8410 (8,3,30,36,70,52,36,43),
8411 (8,3,31,36,72,53,37,44),
8412 (8,3,32,37,73,55,37,45),
8413 (8,3,33,38,75,56,38,46),
8414 (8,3,34,38,77,57,39,47),
8415 (8,3,35,39,79,58,40,48),
8416 (8,3,36,39,81,60,41,48),
8417 (8,3,37,40,83,61,41,49),
8418 (8,3,38,41,85,62,42,50),
8419 (8,3,39,41,86,63,43,51),
8420 (8,3,40,42,88,65,44,52),
8421 (8,3,41,43,90,66,45,53),
8422 (8,3,42,43,92,67,46,54),
8423 (8,3,43,44,94,69,47,55),
8424 (8,3,44,45,96,70,47,56),
8425 (8,3,45,45,98,71,48,57),
8426 (8,3,46,46,100,73,49,58),
8427 (8,3,47,47,102,74,50,59),
8428 (8,3,48,48,104,76,51,60),
8429 (8,3,49,48,106,77,52,61),
8430 (8,3,50,49,108,78,53,62),
8431 (8,3,51,50,110,80,54,63),
8432 (8,3,52,51,113,81,55,64),
8433 (8,3,53,51,115,83,56,65),
8434 (8,3,54,52,117,84,57,66),
8435 (8,3,55,53,119,86,58,67),
8436 (8,3,56,54,121,87,59,68),
8437 (8,3,57,54,123,89,60,69),
8438 (8,3,58,55,126,90,61,70),
8439 (8,3,59,56,128,92,62,71),
8440 (8,3,60,57,130,93,63,73),
8441 (8,3,61,58,132,95,64,74),
8442 (8,3,62,58,134,96,65,75),
8443 (8,3,63,59,137,98,66,76),
8444 (8,3,64,60,139,99,67,77),
8445 (8,3,65,61,141,101,68,78),
8446 (8,3,66,62,144,103,69,79),
8447 (8,3,67,62,146,104,70,80),
8448 (8,3,68,63,148,106,71,82),
8449 (8,3,69,64,151,107,72,83),
8450 (8,3,70,65,153,109,73,84),
8451 (8,3,71,66,156,111,74,85),
8452 (8,3,72,67,159,113,75,86),
8453 (8,3,73,68,162,115,76,88),
8454 (8,3,74,69,165,117,78,89),
8455 (8,3,75,70,174,119,82,91),
8456 (8,3,76,71,177,121,83,92),
8457 (8,3,77,72,180,123,85,94),
8458 (8,3,78,73,184,125,86,95),
8459 (8,3,79,74,187,127,87,97),
8460 (8,3,80,75,190,129,89,98),
8461 (8,4,1,22,25,22,16,21),
8462 (8,4,2,23,26,23,16,21),
8463 (8,4,3,24,28,23,16,22),
8464 (8,4,4,24,29,24,16,22),
8465 (8,4,5,25,31,25,17,22),
8466 (8,4,6,26,32,25,17,23),
8467 (8,4,7,27,34,26,17,23),
8468 (8,4,8,27,35,27,17,24),
8469 (8,4,9,28,37,28,17,24),
8470 (8,4,10,29,38,28,18,24),
8471 (8,4,11,30,40,29,18,25),
8472 (8,4,12,31,41,30,18,25),
8473 (8,4,13,32,43,31,18,26),
8474 (8,4,14,32,45,32,18,26),
8475 (8,4,15,33,46,32,19,26),
8476 (8,4,16,34,48,33,19,27),
8477 (8,4,17,35,50,34,19,27),
8478 (8,4,18,36,51,35,19,28),
8479 (8,4,19,37,53,36,19,28),
8480 (8,4,20,38,55,36,20,29),
8481 (8,4,21,39,56,37,20,29),
8482 (8,4,22,40,58,38,20,30),
8483 (8,4,23,41,60,39,20,30),
8484 (8,4,24,42,62,40,20,31),
8485 (8,4,25,43,63,41,21,31),
8486 (8,4,26,44,65,42,21,32),
8487 (8,4,27,45,67,43,21,32),
8488 (8,4,28,46,69,44,21,33),
8489 (8,4,29,47,71,44,22,33),
8490 (8,4,30,48,72,45,22,34),
8491 (8,4,31,49,74,46,22,34),
8492 (8,4,32,50,76,47,22,35),
8493 (8,4,33,51,78,48,23,35),
8494 (8,4,34,52,80,49,23,36),
8495 (8,4,35,53,82,50,23,36),
8496 (8,4,36,54,84,51,24,37),
8497 (8,4,37,55,86,52,24,37),
8498 (8,4,38,56,88,53,24,38),
8499 (8,4,39,57,90,54,24,38),
8500 (8,4,40,58,92,55,25,39),
8501 (8,4,41,59,94,56,25,40),
8502 (8,4,42,60,96,57,25,40),
8503 (8,4,43,62,98,58,26,41),
8504 (8,4,44,63,100,59,26,41),
8505 (8,4,45,64,102,60,26,42),
8506 (8,4,46,65,104,61,27,43),
8507 (8,4,47,66,107,63,27,43),
8508 (8,4,48,67,109,64,27,44),
8509 (8,4,49,69,111,65,27,44),
8510 (8,4,50,70,113,66,28,45),
8511 (8,4,51,71,115,67,28,46),
8512 (8,4,52,72,117,68,28,46),
8513 (8,4,53,74,120,69,29,47),
8514 (8,4,54,75,122,70,29,48),
8515 (8,4,55,76,124,72,29,48),
8516 (8,4,56,77,126,73,30,49),
8517 (8,4,57,79,129,74,30,50),
8518 (8,4,58,80,131,75,30,50),
8519 (8,4,59,81,133,76,31,51),
8520 (8,4,60,82,136,77,31,52),
8521 (8,4,61,84,138,79,32,52),
8522 (8,4,62,85,140,80,32,53),
8523 (8,4,63,86,143,81,32,54),
8524 (8,4,64,88,145,82,33,55),
8525 (8,4,65,89,148,84,33,55),
8526 (8,4,66,90,150,85,33,56),
8527 (8,4,67,92,153,86,34,57),
8528 (8,4,68,93,155,87,34,58),
8529 (8,4,69,95,157,89,35,58),
8530 (8,4,70,96,160,90,35,59),
8531 (8,4,71,98,163,94,35,60),
8532 (8,4,72,100,166,96,36,60),
8533 (8,4,73,101,169,96,36,61),
8534 (8,4,74,103,172,97,37,62),
8535 (8,4,75,105,175,98,37,63),
8536 (8,4,76,106,178,99,37,64),
8537 (8,4,77,108,181,105,38,65),
8538 (8,4,78,110,185,107,38,66),
8539 (8,4,79,112,188,109,39,67),
8540 (8,4,80,114,191,110,39,68),
8541 (8,5,1,21,22,21,18,24),
8542 (8,5,2,21,22,21,19,25),
8543 (8,5,3,21,22,22,21,27),
8544 (8,5,4,21,23,22,22,28),
8545 (8,5,5,22,23,22,23,29),
8546 (8,5,6,22,23,23,25,31),
8547 (8,5,7,22,23,23,26,32),
8548 (8,5,8,22,24,24,27,34),
8549 (8,5,9,22,24,24,29,35),
8550 (8,5,10,22,24,24,30,37),
8551 (8,5,11,23,24,25,32,38),
8552 (8,5,12,23,24,25,33,40),
8553 (8,5,13,23,25,26,35,41),
8554 (8,5,14,23,25,26,36,43),
8555 (8,5,15,23,25,26,38,44),
8556 (8,5,16,24,26,27,39,46),
8557 (8,5,17,24,26,27,41,47),
8558 (8,5,18,24,26,28,42,49),
8559 (8,5,19,24,26,28,44,50),
8560 (8,5,20,24,27,29,45,52),
8561 (8,5,21,25,27,29,47,54),
8562 (8,5,22,25,27,30,48,55),
8563 (8,5,23,25,28,30,50,57),
8564 (8,5,24,25,28,31,52,59),
8565 (8,5,25,25,28,31,53,60),
8566 (8,5,26,26,28,32,55,62),
8567 (8,5,27,26,29,32,56,64),
8568 (8,5,28,26,29,33,58,65),
8569 (8,5,29,26,29,33,60,67),
8570 (8,5,30,27,30,34,62,69),
8571 (8,5,31,27,30,34,63,71),
8572 (8,5,32,27,30,35,65,73),
8573 (8,5,33,27,31,35,67,74),
8574 (8,5,34,28,31,36,68,76),
8575 (8,5,35,28,32,36,70,78),
8576 (8,5,36,28,32,37,72,80),
8577 (8,5,37,29,32,37,74,82),
8578 (8,5,38,29,33,38,76,84),
8579 (8,5,39,29,33,38,77,86),
8580 (8,5,40,29,33,39,79,87),
8581 (8,5,41,30,34,40,81,89),
8582 (8,5,42,30,34,40,83,91),
8583 (8,5,43,30,35,41,85,93),
8584 (8,5,44,31,35,41,87,95),
8585 (8,5,45,31,35,42,89,97),
8586 (8,5,46,31,36,43,91,99),
8587 (8,5,47,32,36,43,93,101),
8588 (8,5,48,32,37,44,94,103),
8589 (8,5,49,32,37,44,96,105),
8590 (8,5,50,33,37,45,98,107),
8591 (8,5,51,33,38,46,100,110),
8592 (8,5,52,33,38,46,102,112),
8593 (8,5,53,34,39,47,104,114),
8594 (8,5,54,34,39,48,106,116),
8595 (8,5,55,34,40,48,109,118),
8596 (8,5,56,35,40,49,111,120),
8597 (8,5,57,35,41,50,113,122),
8598 (8,5,58,35,41,50,115,125),
8599 (8,5,59,36,42,51,117,127),
8600 (8,5,60,36,42,52,119,129),
8601 (8,5,61,36,42,52,121,131),
8602 (8,5,62,37,43,53,123,133),
8603 (8,5,63,37,43,54,125,136),
8604 (8,5,64,38,44,55,128,138),
8605 (8,5,65,38,44,55,130,140),
8606 (8,5,66,38,45,56,132,143),
8607 (8,5,67,39,45,57,134,145),
8608 (8,5,68,39,46,58,136,147),
8609 (8,5,69,40,46,58,139,150),
8610 (8,5,70,40,47,59,141,152),
8611 (8,5,71,40,48,60,144,155),
8612 (8,5,72,41,48,60,147,158),
8613 (8,5,73,41,49,61,150,161),
8614 (8,5,74,42,49,62,152,164),
8615 (8,5,75,42,50,63,155,167),
8616 (8,5,76,42,51,64,158,170),
8617 (8,5,77,43,51,65,161,173),
8618 (8,5,78,43,52,66,164,176),
8619 (8,5,79,44,52,67,167,179),
8620 (8,5,80,44,53,68,170,182),
8621 (8,6,1,24,22,23,16,21),
8622 (8,6,2,25,23,24,16,21),
8623 (8,6,3,27,24,25,16,22),
8624 (8,6,4,28,24,26,16,22),
8625 (8,6,5,29,25,28,16,22),
8626 (8,6,6,31,26,29,16,22),
8627 (8,6,7,32,27,30,17,23),
8628 (8,6,8,33,28,31,17,23),
8629 (8,6,9,35,28,33,17,23),
8630 (8,6,10,36,29,34,17,24),
8631 (8,6,11,37,30,35,17,24),
8632 (8,6,12,39,31,36,17,24),
8633 (8,6,13,40,32,38,17,25),
8634 (8,6,14,42,33,39,17,25),
8635 (8,6,15,43,34,40,18,25),
8636 (8,6,16,45,35,42,18,26),
8637 (8,6,17,46,35,43,18,26),
8638 (8,6,18,48,36,44,18,26),
8639 (8,6,19,49,37,46,18,27),
8640 (8,6,20,51,38,47,18,27),
8641 (8,6,21,52,39,49,18,27),
8642 (8,6,22,54,40,50,18,28),
8643 (8,6,23,55,41,51,19,28),
8644 (8,6,24,57,42,53,19,29),
8645 (8,6,25,59,43,54,19,29),
8646 (8,6,26,60,44,56,19,29),
8647 (8,6,27,62,45,57,19,30),
8648 (8,6,28,63,46,59,19,30),
8649 (8,6,29,65,47,60,20,31),
8650 (8,6,30,67,48,62,20,31),
8651 (8,6,31,69,49,63,20,31),
8652 (8,6,32,70,50,65,20,32),
8653 (8,6,33,72,51,67,20,32),
8654 (8,6,34,74,53,68,20,33),
8655 (8,6,35,75,54,70,21,33),
8656 (8,6,36,77,55,71,21,34),
8657 (8,6,37,79,56,73,21,34),
8658 (8,6,38,81,57,75,21,35),
8659 (8,6,39,83,58,76,21,35),
8660 (8,6,40,84,59,78,22,35),
8661 (8,6,41,86,60,80,22,36),
8662 (8,6,42,88,62,81,22,36),
8663 (8,6,43,90,63,83,22,37),
8664 (8,6,44,92,64,85,22,37),
8665 (8,6,45,94,65,86,23,38),
8666 (8,6,46,96,66,88,23,38),
8667 (8,6,47,98,67,90,23,39),
8668 (8,6,48,100,69,92,23,39),
8669 (8,6,49,102,70,93,24,40),
8670 (8,6,50,103,71,95,24,40),
8671 (8,6,51,105,72,96,24,41),
8672 (8,6,52,106,74,97,24,42),
8673 (8,6,53,107,73,98,25,42),
8674 (8,6,54,108,74,99,25,43),
8675 (8,6,55,109,75,100,25,43),
8676 (8,6,56,112,77,103,25,44),
8677 (8,6,57,114,78,105,25,44),
8678 (8,6,58,118,79,107,26,45),
8679 (8,6,59,119,81,109,26,45),
8680 (8,6,60,121,82,111,26,46),
8681 (8,6,61,123,83,113,26,47),
8682 (8,6,62,126,85,115,26,47),
8683 (8,6,63,128,86,118,27,48),
8684 (8,6,64,131,88,120,27,48),
8685 (8,6,65,138,89,122,27,49),
8686 (8,6,66,140,91,125,27,50),
8687 (8,6,67,143,92,127,28,50),
8688 (8,6,68,145,94,129,28,51),
8689 (8,6,69,148,95,132,28,52),
8690 (8,6,70,151,97,134,28,52),
8691 (8,6,71,154,99,137,29,53),
8692 (8,6,72,156,100,139,29,54),
8693 (8,6,73,159,102,142,29,55),
8694 (8,6,74,162,104,144,29,55),
8695 (8,6,75,165,105,147,30,56),
8696 (8,6,76,168,107,150,30,57),
8697 (8,6,77,169,109,153,30,58),
8698 (8,6,78,170,110,155,30,58),
8699 (8,6,79,178,112,158,31,59),
8700 (8,6,80,181,114,161,31,60),
8701 (8,7,1,22,22,22,17,23),
8702 (8,7,2,23,22,23,18,24),
8703 (8,7,3,24,23,24,19,25),
8704 (8,7,4,25,23,25,20,26),
8705 (8,7,5,25,24,26,21,27),
8706 (8,7,6,26,24,27,22,28),
8707 (8,7,7,27,25,28,23,29),
8708 (8,7,8,28,25,29,24,30),
8709 (8,7,9,29,25,30,25,31),
8710 (8,7,10,30,26,31,26,33),
8711 (8,7,11,31,26,32,27,34),
8712 (8,7,12,32,27,33,28,35),
8713 (8,7,13,33,27,34,29,36),
8714 (8,7,14,34,28,35,30,37),
8715 (8,7,15,34,28,36,31,38),
8716 (8,7,16,35,29,38,32,39),
8717 (8,7,17,36,29,39,33,41),
8718 (8,7,18,37,30,40,34,42),
8719 (8,7,19,38,30,41,35,43),
8720 (8,7,20,39,31,42,36,44),
8721 (8,7,21,40,32,43,37,45),
8722 (8,7,22,41,32,45,38,47),
8723 (8,7,23,43,33,46,39,48),
8724 (8,7,24,44,33,47,40,49),
8725 (8,7,25,45,34,48,42,51),
8726 (8,7,26,46,34,49,43,52),
8727 (8,7,27,47,35,51,44,53),
8728 (8,7,28,48,35,52,45,54),
8729 (8,7,29,49,36,53,46,56),
8730 (8,7,30,50,37,54,48,57),
8731 (8,7,31,51,37,56,49,59),
8732 (8,7,32,52,38,57,50,60),
8733 (8,7,33,53,38,58,51,61),
8734 (8,7,34,55,39,60,52,63),
8735 (8,7,35,56,40,61,54,64),
8736 (8,7,36,57,40,62,55,66),
8737 (8,7,37,58,41,64,56,67),
8738 (8,7,38,59,42,65,57,68),
8739 (8,7,39,61,42,66,59,70),
8740 (8,7,40,62,43,68,60,71),
8741 (8,7,41,63,44,69,61,73),
8742 (8,7,42,64,44,71,63,74),
8743 (8,7,43,65,45,72,64,76),
8744 (8,7,44,67,46,74,65,77),
8745 (8,7,45,68,46,75,67,79),
8746 (8,7,46,69,47,76,68,80),
8747 (8,7,47,71,48,78,69,82),
8748 (8,7,48,72,49,79,71,83),
8749 (8,7,49,73,49,81,72,85),
8750 (8,7,50,74,50,82,74,87),
8751 (8,7,51,76,51,84,75,88),
8752 (8,7,52,77,51,85,77,90),
8753 (8,7,53,78,52,87,78,92),
8754 (8,7,54,80,53,89,79,93),
8755 (8,7,55,81,54,90,81,95),
8756 (8,7,56,83,55,92,82,96),
8757 (8,7,57,84,55,93,84,98),
8758 (8,7,58,85,56,95,85,100),
8759 (8,7,59,87,57,97,87,102),
8760 (8,7,60,88,58,98,88,103),
8761 (8,7,61,90,58,100,90,105),
8762 (8,7,62,91,59,101,91,107),
8763 (8,7,63,93,60,103,93,108),
8764 (8,7,64,94,61,105,94,110),
8765 (8,7,65,95,62,106,96,112),
8766 (8,7,66,97,63,108,98,114),
8767 (8,7,67,98,63,110,99,116),
8768 (8,7,68,100,64,112,101,117),
8769 (8,7,69,101,65,113,102,119),
8770 (8,7,70,103,66,115,104,121),
8771 (8,7,71,104,67,117,116,123),
8772 (8,7,72,106,68,119,118,126),
8773 (8,7,73,108,69,121,121,128),
8774 (8,7,74,110,70,124,123,130),
8775 (8,7,75,112,71,126,125,132),
8776 (8,7,76,114,72,128,127,135),
8777 (8,7,77,115,73,130,129,137),
8778 (8,7,78,117,74,132,132,139),
8779 (8,7,79,119,75,135,134,142),
8780 (8,7,80,121,76,137,136,144),
8781 (8,8,1,21,22,21,19,23),
8782 (8,8,2,21,22,21,20,24),
8783 (8,8,3,21,22,22,22,26),
8784 (8,8,4,21,22,22,23,27),
8785 (8,8,5,21,23,22,25,28),
8786 (8,8,6,21,23,22,26,30),
8787 (8,8,7,21,23,23,27,31),
8788 (8,8,8,22,23,23,29,32),
8789 (8,8,9,22,23,23,30,34),
8790 (8,8,10,22,23,24,32,35),
8791 (8,8,11,22,24,24,33,37),
8792 (8,8,12,22,24,24,35,38),
8793 (8,8,13,22,24,25,36,39),
8794 (8,8,14,22,24,25,38,41),
8795 (8,8,15,22,24,25,39,42),
8796 (8,8,16,22,24,26,41,44),
8797 (8,8,17,23,25,26,42,45),
8798 (8,8,18,23,25,26,44,47),
8799 (8,8,19,23,25,27,46,48),
8800 (8,8,20,23,25,27,47,50),
8801 (8,8,21,23,25,27,49,51),
8802 (8,8,22,23,26,28,51,53),
8803 (8,8,23,23,26,28,52,55),
8804 (8,8,24,24,26,29,54,56),
8805 (8,8,25,24,26,29,56,58),
8806 (8,8,26,24,27,29,57,60),
8807 (8,8,27,24,27,30,59,61),
8808 (8,8,28,24,27,30,61,63),
8809 (8,8,29,24,27,31,63,65),
8810 (8,8,30,24,28,31,64,66),
8811 (8,8,31,25,28,31,66,68),
8812 (8,8,32,25,28,32,68,70),
8813 (8,8,33,25,28,32,70,71),
8814 (8,8,34,25,29,33,71,73),
8815 (8,8,35,25,29,33,73,75),
8816 (8,8,36,26,29,34,75,77),
8817 (8,8,37,26,29,34,77,79),
8818 (8,8,38,26,30,35,79,80),
8819 (8,8,39,26,30,35,81,82),
8820 (8,8,40,26,30,35,83,84),
8821 (8,8,41,27,31,36,85,86),
8822 (8,8,42,27,31,36,87,88),
8823 (8,8,43,27,31,37,89,90),
8824 (8,8,44,27,32,37,91,91),
8825 (8,8,45,27,32,38,93,93),
8826 (8,8,46,28,32,38,95,95),
8827 (8,8,47,28,32,39,97,97),
8828 (8,8,48,28,33,39,99,99),
8829 (8,8,49,28,33,40,101,101),
8830 (8,8,50,29,33,40,103,103),
8831 (8,8,51,29,34,41,105,105),
8832 (8,8,52,29,34,42,107,107),
8833 (8,8,53,29,35,42,109,109),
8834 (8,8,54,30,35,43,111,111),
8835 (8,8,55,30,35,43,113,113),
8836 (8,8,56,30,36,44,115,115),
8837 (8,8,57,30,36,44,118,118),
8838 (8,8,58,31,36,45,120,120),
8839 (8,8,59,31,37,45,122,122),
8840 (8,8,60,31,37,46,124,124),
8841 (8,8,61,31,37,47,126,126),
8842 (8,8,62,32,38,47,129,128),
8843 (8,8,63,32,38,48,131,130),
8844 (8,8,64,32,39,48,133,133),
8845 (8,8,65,33,39,49,135,135),
8846 (8,8,66,33,39,50,138,137),
8847 (8,8,67,33,40,50,140,139),
8848 (8,8,68,33,40,51,142,141),
8849 (8,8,69,34,41,51,145,144),
8850 (8,8,70,34,41,52,147,146),
8851 (8,8,71,34,41,53,150,149),
8852 (8,8,72,34,42,54,153,152),
8853 (8,8,73,34,42,55,156,155),
8854 (8,8,74,35,43,55,159,157),
8855 (8,8,75,35,43,56,162,160),
8856 (8,8,76,35,43,57,168,163),
8857 (8,8,77,36,44,58,168,166),
8858 (8,8,78,36,44,58,171,169),
8859 (8,8,79,36,45,59,177,172),
8860 (8,8,80,37,45,60,177,175),
8861 (10,2,1,19,22,21,24,20),
8862 (10,2,2,20,23,22,25,21),
8863 (10,2,3,21,23,23,25,21),
8864 (10,2,4,22,24,24,26,22),
8865 (10,2,5,23,24,25,27,23),
8866 (10,2,6,25,25,26,27,24),
8867 (10,2,7,26,25,27,28,24),
8868 (10,2,8,27,26,28,29,25),
8869 (10,2,9,28,27,29,29,26),
8870 (10,2,10,29,27,31,30,26),
8871 (10,2,11,30,28,32,31,27),
8872 (10,2,12,32,29,33,31,28),
8873 (10,2,13,33,29,34,32,29),
8874 (10,2,14,34,30,35,33,30),
8875 (10,2,15,35,31,36,33,30),
8876 (10,2,16,37,31,37,34,31),
8877 (10,2,17,38,32,39,35,32),
8878 (10,2,18,39,33,40,36,33),
8879 (10,2,19,40,33,41,36,34),
8880 (10,2,20,42,34,42,37,35),
8881 (10,2,21,43,35,44,38,35),
8882 (10,2,22,44,35,45,39,36),
8883 (10,2,23,46,36,46,40,37),
8884 (10,2,24,47,37,47,40,38),
8885 (10,2,25,49,38,49,41,39),
8886 (10,2,26,50,38,50,42,40),
8887 (10,2,27,51,39,51,43,41),
8888 (10,2,28,53,40,53,44,42),
8889 (10,2,29,54,41,54,45,43),
8890 (10,2,30,56,41,55,45,43),
8891 (10,2,31,57,42,57,46,44),
8892 (10,2,32,58,43,58,47,45),
8893 (10,2,33,60,44,59,48,46),
8894 (10,2,34,61,45,61,49,47),
8895 (10,2,35,63,45,62,50,48),
8896 (10,2,36,64,46,64,51,49),
8897 (10,2,37,66,47,65,52,50),
8898 (10,2,38,67,48,67,53,51),
8899 (10,2,39,69,49,68,54,52),
8900 (10,2,40,71,50,69,55,53),
8901 (10,2,41,72,50,71,55,54),
8902 (10,2,42,74,51,72,56,55),
8903 (10,2,43,75,52,74,57,56),
8904 (10,2,44,77,53,75,58,57),
8905 (10,2,45,79,54,77,59,59),
8906 (10,2,46,80,55,78,60,60),
8907 (10,2,47,82,56,80,61,61),
8908 (10,2,48,83,57,82,62,62),
8909 (10,2,49,85,58,83,63,63),
8910 (10,2,50,87,59,85,64,64),
8911 (10,2,51,89,60,86,66,65),
8912 (10,2,52,90,61,88,67,66),
8913 (10,2,53,92,61,90,68,67),
8914 (10,2,54,94,62,91,69,69),
8915 (10,2,55,95,63,93,70,70),
8916 (10,2,56,97,64,95,71,71),
8917 (10,2,57,99,65,96,72,72),
8918 (10,2,58,101,66,98,73,73),
8919 (10,2,59,102,67,100,74,74),
8920 (10,2,60,104,68,101,75,76),
8921 (10,2,61,106,69,103,76,77),
8922 (10,2,62,108,70,105,78,78),
8923 (10,2,63,110,72,106,79,79),
8924 (10,2,64,112,73,108,80,80),
8925 (10,2,65,113,74,110,81,82),
8926 (10,2,66,115,75,112,82,83),
8927 (10,2,67,117,76,114,83,84),
8928 (10,2,68,119,77,115,85,85),
8929 (10,2,69,121,78,117,86,87),
8930 (10,2,70,123,79,119,87,88),
8931 (10,2,71,125,80,120,88,89),
8932 (10,2,72,128,81,123,90,91),
8933 (10,2,73,130,82,125,91,93),
8934 (10,2,74,133,84,127,93,94),
8935 (10,2,75,135,85,129,94,96),
8936 (10,2,76,137,86,132,96,97),
8937 (10,2,77,140,88,134,97,99),
8938 (10,2,78,143,89,136,99,101),
8939 (10,2,79,145,90,139,100,102),
8940 (10,2,80,148,92,141,102,104),
8941 (10,3,1,17,25,20,24,20),
8942 (10,3,2,17,26,21,25,21),
8943 (10,3,3,18,28,22,25,21),
8944 (10,3,4,18,29,23,26,22),
8945 (10,3,5,19,30,24,26,23),
8946 (10,3,6,19,32,25,27,23),
8947 (10,3,7,20,33,26,27,24),
8948 (10,3,8,20,35,27,28,25),
8949 (10,3,9,21,36,27,29,25),
8950 (10,3,10,21,38,28,29,26),
8951 (10,3,11,22,39,29,30,27),
8952 (10,3,12,22,41,30,31,27),
8953 (10,3,13,23,42,31,31,28),
8954 (10,3,14,23,44,32,32,29),
8955 (10,3,15,24,45,34,32,29),
8956 (10,3,16,24,47,35,33,30),
8957 (10,3,17,25,48,36,34,31),
8958 (10,3,18,25,50,37,34,32),
8959 (10,3,19,26,51,38,35,32),
8960 (10,3,20,26,53,39,36,33),
8961 (10,3,21,27,55,40,37,34),
8962 (10,3,22,27,56,41,37,35),
8963 (10,3,23,28,58,42,38,36),
8964 (10,3,24,28,60,43,39,36),
8965 (10,3,25,29,61,44,39,37),
8966 (10,3,26,30,63,46,40,38),
8967 (10,3,27,30,65,47,41,39),
8968 (10,3,28,31,66,48,42,40),
8969 (10,3,29,31,68,49,42,40),
8970 (10,3,30,32,70,50,43,41),
8971 (10,3,31,33,72,52,44,42),
8972 (10,3,32,33,73,53,45,43),
8973 (10,3,33,34,75,54,46,44),
8974 (10,3,34,34,77,55,46,45),
8975 (10,3,35,35,79,57,47,46),
8976 (10,3,36,36,81,58,48,47),
8977 (10,3,37,36,83,59,49,47),
8978 (10,3,38,37,85,60,50,48),
8979 (10,3,39,38,86,62,51,49),
8980 (10,3,40,38,88,63,51,50),
8981 (10,3,41,39,90,64,52,51),
8982 (10,3,42,40,92,66,53,52),
8983 (10,3,43,40,94,67,54,53),
8984 (10,3,44,41,96,68,55,54),
8985 (10,3,45,42,98,70,56,55),
8986 (10,3,46,42,100,71,57,56),
8987 (10,3,47,43,102,72,58,57),
8988 (10,3,48,44,104,74,59,58),
8989 (10,3,49,45,106,75,60,59),
8990 (10,3,50,45,108,77,61,60),
8991 (10,3,51,46,110,78,61,61),
8992 (10,3,52,47,113,79,62,62),
8993 (10,3,53,47,115,81,63,63),
8994 (10,3,54,48,117,82,64,64),
8995 (10,3,55,49,119,84,65,65),
8996 (10,3,56,50,121,85,66,66),
8997 (10,3,57,50,123,87,67,67),
8998 (10,3,58,51,126,88,68,68),
8999 (10,3,59,52,128,90,69,70),
9000 (10,3,60,53,130,91,70,71),
9001 (10,3,61,54,132,93,71,72),
9002 (10,3,62,54,134,94,72,73),
9003 (10,3,63,55,137,96,73,74),
9004 (10,3,64,56,139,97,75,75),
9005 (10,3,65,57,141,99,76,76),
9006 (10,3,66,58,144,101,77,77),
9007 (10,3,67,58,146,102,78,78),
9008 (10,3,68,59,148,104,79,80),
9009 (10,3,69,60,151,105,80,81),
9010 (10,3,70,61,153,107,81,82),
9011 (10,3,71,62,156,108,82,83),
9012 (10,3,72,63,159,110,83,84),
9013 (10,3,73,64,162,112,84,86),
9014 (10,3,74,65,165,114,86,87),
9015 (10,3,75,66,168,116,87,89),
9016 (10,3,76,67,171,118,89,90),
9017 (10,3,77,68,174,120,90,92),
9018 (10,3,78,69,177,122,91,93),
9019 (10,3,79,70,180,124,92,95),
9020 (10,3,80,71,183,126,94,96),
9021 (10,4,1,18,25,20,24,19),
9022 (10,4,2,19,26,21,24,19),
9023 (10,4,3,20,28,21,24,20),
9024 (10,4,4,20,29,22,24,20),
9025 (10,4,5,21,31,23,25,20),
9026 (10,4,6,22,32,24,25,21),
9027 (10,4,7,23,34,24,25,21),
9028 (10,4,8,24,35,25,25,22),
9029 (10,4,9,24,37,26,25,22),
9030 (10,4,10,25,38,26,25,22),
9031 (10,4,11,26,40,27,25,23),
9032 (10,4,12,27,41,28,26,23),
9033 (10,4,13,28,43,29,26,24),
9034 (10,4,14,29,45,30,26,24),
9035 (10,4,15,29,46,30,26,25),
9036 (10,4,16,30,48,31,26,25),
9037 (10,4,17,31,50,32,27,25),
9038 (10,4,18,32,51,33,27,26),
9039 (10,4,19,33,53,34,27,26),
9040 (10,4,20,34,55,35,27,27),
9041 (10,4,21,35,56,35,27,27),
9042 (10,4,22,36,58,36,28,28),
9043 (10,4,23,37,60,37,28,28),
9044 (10,4,24,38,62,38,28,29),
9045 (10,4,25,39,63,39,28,29),
9046 (10,4,26,40,65,40,29,30),
9047 (10,4,27,41,67,41,29,30),
9048 (10,4,28,42,69,42,29,31),
9049 (10,4,29,43,71,43,29,31),
9050 (10,4,30,44,72,43,29,32),
9051 (10,4,31,45,74,44,30,32),
9052 (10,4,32,46,76,45,30,33),
9053 (10,4,33,47,78,46,30,33),
9054 (10,4,34,48,80,47,31,34),
9055 (10,4,35,49,82,48,31,34),
9056 (10,4,36,50,84,49,31,35),
9057 (10,4,37,51,86,50,31,35),
9058 (10,4,38,52,88,51,32,36),
9059 (10,4,39,53,90,52,32,37),
9060 (10,4,40,54,92,53,32,37),
9061 (10,4,41,56,94,54,33,38),
9062 (10,4,42,57,96,55,33,38),
9063 (10,4,43,58,98,56,33,39),
9064 (10,4,44,59,100,57,33,39),
9065 (10,4,45,60,102,59,34,40),
9066 (10,4,46,61,104,60,34,41),
9067 (10,4,47,62,107,61,34,41),
9068 (10,4,48,64,109,62,35,42),
9069 (10,4,49,65,111,63,35,43),
9070 (10,4,50,66,113,64,35,43),
9071 (10,4,51,67,115,65,36,44),
9072 (10,4,52,68,117,66,36,44),
9073 (10,4,53,70,120,67,36,45),
9074 (10,4,54,71,122,69,37,46),
9075 (10,4,55,72,124,70,37,46),
9076 (10,4,56,73,126,71,37,47),
9077 (10,4,57,75,129,72,38,48),
9078 (10,4,58,76,131,73,38,48),
9079 (10,4,59,77,133,74,39,49),
9080 (10,4,60,79,136,76,39,50),
9081 (10,4,61,80,138,77,39,51),
9082 (10,4,62,81,140,78,40,51),
9083 (10,4,63,82,143,79,40,52),
9084 (10,4,64,84,145,80,41,53),
9085 (10,4,65,85,148,82,41,53),
9086 (10,4,66,87,150,83,41,54),
9087 (10,4,67,88,153,84,42,55),
9088 (10,4,68,89,155,85,42,56),
9089 (10,4,69,91,157,87,43,56),
9090 (10,4,70,92,160,88,43,57),
9091 (10,4,71,94,163,88,43,58),
9092 (10,4,72,96,166,90,44,58),
9093 (10,4,73,97,169,92,44,59),
9094 (10,4,74,99,172,93,45,60),
9095 (10,4,75,101,175,95,45,61),
9096 (10,4,76,102,178,96,45,62),
9097 (10,4,77,104,181,101,46,63),
9098 (10,4,78,106,185,104,46,64),
9099 (10,4,79,108,188,105,47,65),
9100 (10,4,80,110,191,107,47,66),
9101 (10,5,1,17,22,19,26,22),
9102 (10,5,2,17,22,19,27,23),
9103 (10,5,3,17,22,20,29,25),
9104 (10,5,4,17,23,20,30,26),
9105 (10,5,5,18,23,20,31,27),
9106 (10,5,6,18,23,21,33,29),
9107 (10,5,7,18,23,21,34,30),
9108 (10,5,8,18,24,22,35,32),
9109 (10,5,9,18,24,22,37,33),
9110 (10,5,10,19,24,22,38,35),
9111 (10,5,11,19,24,23,39,36),
9112 (10,5,12,19,24,23,41,38),
9113 (10,5,13,19,25,24,42,39),
9114 (10,5,14,19,25,24,44,41),
9115 (10,5,15,19,25,25,45,42),
9116 (10,5,16,20,26,25,47,44),
9117 (10,5,17,20,26,25,48,45),
9118 (10,5,18,20,26,26,50,47),
9119 (10,5,19,20,26,26,51,49),
9120 (10,5,20,21,27,27,53,50),
9121 (10,5,21,21,27,27,54,52),
9122 (10,5,22,21,27,28,56,53),
9123 (10,5,23,21,28,28,58,55),
9124 (10,5,24,21,28,29,59,57),
9125 (10,5,25,22,28,29,61,58),
9126 (10,5,26,22,28,30,62,60),
9127 (10,5,27,22,29,30,64,62),
9128 (10,5,28,22,29,31,66,64),
9129 (10,5,29,23,29,31,67,65),
9130 (10,5,30,23,30,32,69,67),
9131 (10,5,31,23,30,32,71,69),
9132 (10,5,32,23,30,33,72,71),
9133 (10,5,33,24,31,33,74,72),
9134 (10,5,34,24,31,34,76,74),
9135 (10,5,35,24,32,34,78,76),
9136 (10,5,36,24,32,35,80,78),
9137 (10,5,37,25,32,35,81,80),
9138 (10,5,38,25,33,36,83,82),
9139 (10,5,39,25,33,37,85,84),
9140 (10,5,40,26,33,37,87,86),
9141 (10,5,41,26,34,38,89,88),
9142 (10,5,42,26,34,38,91,89),
9143 (10,5,43,27,35,39,92,91),
9144 (10,5,44,27,35,39,94,93),
9145 (10,5,45,27,35,40,96,95),
9146 (10,5,46,27,36,41,98,97),
9147 (10,5,47,28,36,41,100,99),
9148 (10,5,48,28,37,42,102,101),
9149 (10,5,49,28,37,43,104,103),
9150 (10,5,50,29,37,43,106,106),
9151 (10,5,51,29,38,44,108,108),
9152 (10,5,52,29,38,44,110,110),
9153 (10,5,53,30,39,45,112,112),
9154 (10,5,54,30,39,46,114,114),
9155 (10,5,55,30,40,46,116,116),
9156 (10,5,56,31,40,47,118,118),
9157 (10,5,57,31,41,48,120,120),
9158 (10,5,58,31,41,48,123,123),
9159 (10,5,59,32,42,49,125,125),
9160 (10,5,60,32,42,50,127,127),
9161 (10,5,61,33,42,51,129,129),
9162 (10,5,62,33,43,51,131,131),
9163 (10,5,63,33,43,52,133,134),
9164 (10,5,64,34,44,53,135,136),
9165 (10,5,65,34,44,53,138,138),
9166 (10,5,66,34,45,54,140,141),
9167 (10,5,67,35,45,55,142,143),
9168 (10,5,68,35,46,56,144,145),
9169 (10,5,69,36,46,56,147,148),
9170 (10,5,70,36,47,57,149,150),
9171 (10,5,71,36,48,57,152,153),
9172 (10,5,72,37,48,57,155,156),
9173 (10,5,73,37,49,58,158,159),
9174 (10,5,74,38,49,59,160,163),
9175 (10,5,75,38,50,60,163,165),
9176 (10,5,76,38,51,61,166,170),
9177 (10,5,77,39,51,62,168,175),
9178 (10,5,78,39,52,63,172,174),
9179 (10,5,79,40,52,64,175,177),
9180 (10,5,80,40,53,65,178,180),
9181 (10,6,1,18,23,21,24,20),
9182 (10,6,2,19,24,22,24,20),
9183 (10,6,3,21,25,23,24,21),
9184 (10,6,4,22,25,25,24,21),
9185 (10,6,5,23,26,26,24,21),
9186 (10,6,6,25,27,27,24,21),
9187 (10,6,7,26,28,28,24,22),
9188 (10,6,8,27,29,29,25,22),
9189 (10,6,9,29,29,31,25,22),
9190 (10,6,10,30,30,32,25,23),
9191 (10,6,11,32,31,33,25,23),
9192 (10,6,12,33,32,34,25,23),
9193 (10,6,13,34,33,36,25,24),
9194 (10,6,14,36,34,37,25,24),
9195 (10,6,15,37,35,38,25,24),
9196 (10,6,16,39,36,40,25,25),
9197 (10,6,17,40,36,41,25,25),
9198 (10,6,18,42,37,43,26,25),
9199 (10,6,19,43,38,44,26,26),
9200 (10,6,20,45,39,45,26,26),
9201 (10,6,21,47,40,47,26,26),
9202 (10,6,22,48,41,48,26,27),
9203 (10,6,23,50,42,50,26,27),
9204 (10,6,24,51,43,51,26,28),
9205 (10,6,25,53,44,52,27,28),
9206 (10,6,26,55,45,54,27,28),
9207 (10,6,27,56,46,55,27,29),
9208 (10,6,28,58,47,57,27,29),
9209 (10,6,29,59,48,58,27,30),
9210 (10,6,30,61,49,60,27,30),
9211 (10,6,31,63,50,62,27,30),
9212 (10,6,32,65,51,63,28,31),
9213 (10,6,33,66,52,65,28,31),
9214 (10,6,34,68,53,66,28,32),
9215 (10,6,35,70,55,68,28,32),
9216 (10,6,36,72,56,69,28,33),
9217 (10,6,37,73,57,71,29,33),
9218 (10,6,38,75,58,73,29,34),
9219 (10,6,39,77,59,74,29,34),
9220 (10,6,40,79,60,76,29,35),
9221 (10,6,41,81,61,78,29,35),
9222 (10,6,42,82,62,79,30,35),
9223 (10,6,43,84,64,81,30,36),
9224 (10,6,44,86,65,83,30,36),
9225 (10,6,45,88,66,85,30,37),
9226 (10,6,46,90,67,86,30,37),
9227 (10,6,47,92,68,88,31,38),
9228 (10,6,48,94,69,90,31,38),
9229 (10,6,49,96,69,92,31,39),
9230 (10,6,50,98,70,93,31,40),
9231 (10,6,51,100,71,95,32,40),
9232 (10,6,52,102,72,96,32,41),
9233 (10,6,53,103,73,97,32,41),
9234 (10,6,54,104,74,98,32,41),
9235 (10,6,55,105,75,97,33,41),
9236 (10,6,56,108,77,100,33,42),
9237 (10,6,57,113,78,102,33,42),
9238 (10,6,58,115,79,104,34,43),
9239 (10,6,59,117,81,106,34,43),
9240 (10,6,60,118,82,108,34,44),
9241 (10,6,61,119,83,110,34,45),
9242 (10,6,62,121,85,112,34,45),
9243 (10,6,63,124,86,115,35,46),
9244 (10,6,64,127,88,117,35,46),
9245 (10,6,65,133,89,119,35,47),
9246 (10,6,66,135,91,122,35,48),
9247 (10,6,67,139,92,124,36,48),
9248 (10,6,68,141,94,126,36,49),
9249 (10,6,69,142,95,129,36,50),
9250 (10,6,70,145,97,131,36,50),
9251 (10,6,71,150,99,134,37,51),
9252 (10,6,72,152,100,136,37,52),
9253 (10,6,73,155,102,139,37,53),
9254 (10,6,74,158,104,141,37,53),
9255 (10,6,75,159,105,144,38,54),
9256 (10,6,76,160,107,147,38,55),
9257 (10,6,77,163,109,149,38,56),
9258 (10,6,78,166,110,152,38,56),
9259 (10,6,79,169,112,155,39,57),
9260 (10,6,80,172,114,158,39,58),
9261 (10,8,1,17,22,19,27,21),
9262 (10,8,2,17,22,19,28,22),
9263 (10,8,3,17,22,20,30,24),
9264 (10,8,4,17,22,20,31,25),
9265 (10,8,5,17,23,20,32,26),
9266 (10,8,6,17,23,20,34,28),
9267 (10,8,7,18,23,21,35,29),
9268 (10,8,8,18,23,21,37,30),
9269 (10,8,9,18,23,21,38,32),
9270 (10,8,10,18,23,22,40,33),
9271 (10,8,11,18,24,22,41,35),
9272 (10,8,12,18,24,22,42,36),
9273 (10,8,13,18,24,23,44,37),
9274 (10,8,14,18,24,23,45,39),
9275 (10,8,15,18,24,23,47,40),
9276 (10,8,16,19,24,24,49,42),
9277 (10,8,17,19,25,24,50,43),
9278 (10,8,18,19,25,24,52,45),
9279 (10,8,19,19,25,25,53,46),
9280 (10,8,20,19,25,25,55,48),
9281 (10,8,21,19,25,26,57,50),
9282 (10,8,22,19,26,26,58,51),
9283 (10,8,23,20,26,26,60,53),
9284 (10,8,24,20,26,27,61,54),
9285 (10,8,25,20,26,27,63,56),
9286 (10,8,26,20,27,27,65,58),
9287 (10,8,27,20,27,28,67,59),
9288 (10,8,28,20,27,28,68,61),
9289 (10,8,29,21,27,29,70,63),
9290 (10,8,30,21,28,29,72,64),
9291 (10,8,31,21,28,30,74,66),
9292 (10,8,32,21,28,30,75,68),
9293 (10,8,33,21,28,30,77,70),
9294 (10,8,34,21,29,31,79,71),
9295 (10,8,35,22,29,31,81,73),
9296 (10,8,36,22,29,32,83,75),
9297 (10,8,37,22,29,32,85,77),
9298 (10,8,38,22,30,33,86,78),
9299 (10,8,39,22,30,33,88,80),
9300 (10,8,40,23,30,34,90,82),
9301 (10,8,41,23,31,34,92,84),
9302 (10,8,42,23,31,35,94,86),
9303 (10,8,43,23,31,35,96,88),
9304 (10,8,44,23,32,36,98,90),
9305 (10,8,45,24,32,36,100,92),
9306 (10,8,46,24,32,37,102,93),
9307 (10,8,47,24,32,37,104,95),
9308 (10,8,48,24,33,38,106,97),
9309 (10,8,49,25,33,38,108,99),
9310 (10,8,50,25,33,39,110,101),
9311 (10,8,51,25,34,39,112,103),
9312 (10,8,52,25,34,40,114,105),
9313 (10,8,53,25,35,40,117,107),
9314 (10,8,54,26,35,41,119,109),
9315 (10,8,55,26,35,41,121,111),
9316 (10,8,56,26,36,42,123,113),
9317 (10,8,57,26,36,42,125,116),
9318 (10,8,58,27,36,43,127,118),
9319 (10,8,59,27,37,43,130,120),
9320 (10,8,60,27,37,44,132,122),
9321 (10,8,61,27,37,45,134,124),
9322 (10,8,62,28,38,45,136,126),
9323 (10,8,63,28,38,46,139,128),
9324 (10,8,64,28,39,46,141,131),
9325 (10,8,65,29,39,47,143,133),
9326 (10,8,66,29,39,48,146,135),
9327 (10,8,67,29,40,48,148,137),
9328 (10,8,68,29,40,49,150,139),
9329 (10,8,69,30,41,49,153,142),
9330 (10,8,70,30,41,50,155,144),
9331 (10,8,71,30,41,50,158,147),
9332 (10,8,72,30,42,51,161,150),
9333 (10,8,73,30,42,52,164,153),
9334 (10,8,74,31,43,52,167,155),
9335 (10,8,75,31,43,53,170,158),
9336 (10,8,76,31,43,54,173,161),
9337 (10,8,77,32,44,55,176,164),
9338 (10,8,78,32,44,55,179,167),
9339 (10,8,79,32,45,56,182,170),
9340 (10,8,80,33,45,57,185,173),
9341 (10,9,1,17,22,20,26,21),
9342 (10,9,2,17,22,21,27,22),
9343 (10,9,3,18,23,21,28,23),
9344 (10,9,4,18,23,22,29,24),
9345 (10,9,5,18,23,22,31,26),
9346 (10,9,6,18,24,23,32,27),
9347 (10,9,7,19,24,23,33,28),
9348 (10,9,8,19,25,24,34,29),
9349 (10,9,9,19,25,25,36,30),
9350 (10,9,10,20,25,25,37,32),
9351 (10,9,11,20,26,26,38,33),
9352 (10,9,12,20,26,26,39,34),
9353 (10,9,13,21,27,27,41,36),
9354 (10,9,14,21,27,28,42,37),
9355 (10,9,15,21,27,28,43,38),
9356 (10,9,16,22,28,29,45,39),
9357 (10,9,17,22,28,30,46,41),
9358 (10,9,18,23,29,30,47,42),
9359 (10,9,19,23,29,31,49,43),
9360 (10,9,20,23,30,32,50,45),
9361 (10,9,21,24,30,32,51,46),
9362 (10,9,22,24,31,33,53,48),
9363 (10,9,23,24,31,34,54,49),
9364 (10,9,24,25,31,34,56,50),
9365 (10,9,25,25,32,35,57,52),
9366 (10,9,26,26,32,36,59,53),
9367 (10,9,27,26,33,37,60,55),
9368 (10,9,28,26,33,37,62,56),
9369 (10,9,29,27,34,38,63,58),
9370 (10,9,30,27,34,39,65,59),
9371 (10,9,31,28,35,40,66,61),
9372 (10,9,32,28,36,40,68,62),
9373 (10,9,33,29,36,41,69,64),
9374 (10,9,34,29,37,42,71,65),
9375 (10,9,35,29,37,43,73,67),
9376 (10,9,36,30,38,43,74,69),
9377 (10,9,37,30,38,44,76,70),
9378 (10,9,38,31,39,45,77,72),
9379 (10,9,39,31,39,46,79,73),
9380 (10,9,40,32,40,47,81,75),
9381 (10,9,41,32,41,48,82,77),
9382 (10,9,42,33,41,48,84,78),
9383 (10,9,43,33,42,49,86,80),
9384 (10,9,44,34,42,50,88,82),
9385 (10,9,45,34,43,51,89,83),
9386 (10,9,46,35,44,52,91,85),
9387 (10,9,47,35,44,53,93,87),
9388 (10,9,48,36,45,54,95,89),
9389 (10,9,49,36,45,54,96,90),
9390 (10,9,50,37,46,55,98,92),
9391 (10,9,51,37,47,56,100,94),
9392 (10,9,52,38,47,57,102,96),
9393 (10,9,53,38,48,58,104,97),
9394 (10,9,54,39,49,59,105,99),
9395 (10,9,55,39,49,60,107,101),
9396 (10,9,56,40,50,61,109,103),
9397 (10,9,57,40,51,62,111,105),
9398 (10,9,58,41,51,63,113,107),
9399 (10,9,59,42,52,64,115,108),
9400 (10,9,60,42,53,65,117,110),
9401 (10,9,61,43,53,66,119,112),
9402 (10,9,62,43,54,67,121,114),
9403 (10,9,63,44,55,68,123,116),
9404 (10,9,64,44,56,69,125,118),
9405 (10,9,65,45,56,70,127,120),
9406 (10,9,66,46,57,71,129,122),
9407 (10,9,67,46,58,72,131,124),
9408 (10,9,68,47,58,73,133,126),
9409 (10,9,69,47,59,74,135,128),
9410 (10,9,70,48,60,75,137,130),
9411 (10,9,71,49,61,83,139,141),
9412 (10,9,72,50,61,84,142,143),
9413 (10,9,73,51,62,84,144,146),
9414 (10,9,74,51,63,86,147,149),
9415 (10,9,75,52,64,89,149,151),
9416 (10,9,76,53,65,90,155,154),
9417 (10,9,77,54,66,91,155,157),
9418 (10,9,78,54,67,93,157,160),
9419 (10,9,79,55,68,94,160,163),
9420 (10,9,80,56,69,95,163,165),
9421 (11,1,1,24,17,21,21,22),
9422 (11,1,2,25,18,22,21,22),
9423 (11,1,3,27,19,23,21,23),
9424 (11,1,4,28,19,25,21,23),
9425 (11,1,5,29,20,26,21,23),
9426 (11,1,6,31,21,27,21,23),
9427 (11,1,7,32,22,28,21,24),
9428 (11,1,8,33,23,29,22,24),
9429 (11,1,9,35,24,31,22,24),
9430 (11,1,10,36,24,32,22,25),
9431 (11,1,11,37,25,33,22,25),
9432 (11,1,12,39,26,34,22,25),
9433 (11,1,13,40,27,36,22,26),
9434 (11,1,14,42,28,37,22,26),
9435 (11,1,15,43,29,38,22,26),
9436 (11,1,16,45,30,40,22,27),
9437 (11,1,17,46,31,41,23,27),
9438 (11,1,18,48,32,43,23,27),
9439 (11,1,19,49,33,44,23,28),
9440 (11,1,20,51,34,45,23,28),
9441 (11,1,21,52,34,47,23,28),
9442 (11,1,22,54,35,48,23,29),
9443 (11,1,23,55,36,50,23,29),
9444 (11,1,24,57,37,51,24,30),
9445 (11,1,25,59,38,52,24,30),
9446 (11,1,26,60,39,54,24,30),
9447 (11,1,27,62,40,55,24,31),
9448 (11,1,28,63,41,57,24,31),
9449 (11,1,29,65,43,58,24,32),
9450 (11,1,30,67,44,60,24,32),
9451 (11,1,31,69,45,62,25,32),
9452 (11,1,32,70,46,63,25,33),
9453 (11,1,33,72,47,65,25,33),
9454 (11,1,34,74,48,66,25,34),
9455 (11,1,35,75,49,68,25,34),
9456 (11,1,36,77,50,69,26,35),
9457 (11,1,37,79,51,71,26,35),
9458 (11,1,38,81,52,73,26,35),
9459 (11,1,39,83,53,74,26,36),
9460 (11,1,40,84,55,76,26,36),
9461 (11,1,41,86,56,78,27,37),
9462 (11,1,42,88,57,79,27,37),
9463 (11,1,43,90,58,81,27,38),
9464 (11,1,44,92,59,83,27,38),
9465 (11,1,45,94,60,85,27,39),
9466 (11,1,46,96,62,86,28,39),
9467 (11,1,47,98,63,88,28,40),
9468 (11,1,48,100,64,90,28,40),
9469 (11,1,49,102,65,92,28,41),
9470 (11,1,50,103,66,93,29,41),
9471 (11,1,51,105,68,95,29,42),
9472 (11,1,52,107,69,97,29,42),
9473 (11,1,53,109,70,99,29,43),
9474 (11,1,54,112,71,101,30,44),
9475 (11,1,55,114,73,103,30,44),
9476 (11,1,56,116,74,104,30,45),
9477 (11,1,57,118,75,106,30,45),
9478 (11,1,58,120,77,108,31,46),
9479 (11,1,59,122,78,110,31,46),
9480 (11,1,60,124,79,112,31,47),
9481 (11,1,61,126,81,114,31,48),
9482 (11,1,62,128,82,116,32,48),
9483 (11,1,63,130,83,118,32,49),
9484 (11,1,64,133,85,120,32,49),
9485 (11,1,65,135,86,122,33,50),
9486 (11,1,66,137,87,124,33,51),
9487 (11,1,67,139,89,126,33,51),
9488 (11,1,68,141,90,128,33,52),
9489 (11,1,69,144,92,130,34,52),
9490 (11,1,70,146,93,132,34,53),
9491 (11,1,71,149,94,134,34,54),
9492 (11,1,72,151,96,137,34,55),
9493 (11,1,73,154,98,139,34,56),
9494 (11,1,74,157,99,142,35,56),
9495 (11,1,75,166,101,149,35,57),
9496 (11,1,76,172,103,155,35,58),
9497 (11,1,77,175,105,159,36,59),
9498 (11,1,78,179,106,161,36,59),
9499 (11,1,79,182,108,164,36,60),
9500 (11,1,80,185,110,167,37,61),
9501 (11,2,1,23,17,21,21,23),
9502 (11,2,2,24,18,22,22,24),
9503 (11,2,3,25,18,23,22,24),
9504 (11,2,4,26,19,24,23,25),
9505 (11,2,5,27,19,25,24,26),
9506 (11,2,6,29,20,26,24,26),
9507 (11,2,7,30,21,27,25,27),
9508 (11,2,8,31,21,28,26,28),
9509 (11,2,9,32,22,29,26,29),
9510 (11,2,10,33,22,31,27,29),
9511 (11,2,11,34,23,32,28,30),
9512 (11,2,12,36,24,33,28,31),
9513 (11,2,13,37,24,34,29,32),
9514 (11,2,14,38,25,35,30,32),
9515 (11,2,15,39,26,36,31,33),
9516 (11,2,16,40,26,37,31,34),
9517 (11,2,17,42,27,39,32,35),
9518 (11,2,18,43,28,40,33,36),
9519 (11,2,19,44,28,41,34,37),
9520 (11,2,20,46,29,42,34,37),
9521 (11,2,21,47,30,44,35,38),
9522 (11,2,22,48,31,45,36,39),
9523 (11,2,23,50,31,46,37,40),
9524 (11,2,24,51,32,47,38,41),
9525 (11,2,25,52,33,49,38,42),
9526 (11,2,26,54,34,50,39,43),
9527 (11,2,27,55,34,51,40,44),
9528 (11,2,28,56,35,53,41,44),
9529 (11,2,29,58,36,54,42,45),
9530 (11,2,30,59,37,55,43,46),
9531 (11,2,31,61,37,57,43,47),
9532 (11,2,32,62,38,58,44,48),
9533 (11,2,33,64,39,59,45,49),
9534 (11,2,34,65,40,61,46,50),
9535 (11,2,35,67,41,62,47,51),
9536 (11,2,36,68,42,64,48,52),
9537 (11,2,37,70,42,65,49,53),
9538 (11,2,38,71,43,67,50,54),
9539 (11,2,39,73,44,68,51,55),
9540 (11,2,40,74,45,69,52,56),
9541 (11,2,41,76,46,71,53,57),
9542 (11,2,42,78,47,72,54,58),
9543 (11,2,43,79,47,74,55,59),
9544 (11,2,44,81,48,75,56,60),
9545 (11,2,45,82,49,77,57,61),
9546 (11,2,46,84,50,78,58,62),
9547 (11,2,47,86,51,80,59,64),
9548 (11,2,48,87,52,82,60,65),
9549 (11,2,49,89,53,83,61,66),
9550 (11,2,50,91,54,85,62,67),
9551 (11,2,51,92,55,86,63,68),
9552 (11,2,52,94,56,88,64,69),
9553 (11,2,53,96,57,90,65,70),
9554 (11,2,54,97,58,91,66,71),
9555 (11,2,55,99,59,93,67,73),
9556 (11,2,56,101,60,95,68,74),
9557 (11,2,57,103,61,96,69,75),
9558 (11,2,58,105,62,98,70,76),
9559 (11,2,59,106,63,100,71,77),
9560 (11,2,60,108,64,101,72,78),
9561 (11,2,61,110,65,103,74,80),
9562 (11,2,62,112,66,105,75,81),
9563 (11,2,63,114,67,106,76,82),
9564 (11,2,64,116,68,108,77,83),
9565 (11,2,65,117,69,110,78,85),
9566 (11,2,66,119,70,112,79,86),
9567 (11,2,67,121,71,114,80,87),
9568 (11,2,68,123,72,115,82,88),
9569 (11,2,69,125,73,117,83,90),
9570 (11,2,70,127,74,119,84,91),
9571 (11,2,71,130,75,121,87,92),
9572 (11,2,72,132,76,124,90,94),
9573 (11,2,73,134,77,126,93,96),
9574 (11,2,74,137,79,128,97,97),
9575 (11,2,75,139,80,130,101,99),
9576 (11,2,76,142,81,133,106,100),
9577 (11,2,77,144,83,135,108,102),
9578 (11,2,78,147,84,137,110,104),
9579 (11,2,79,149,85,140,111,105),
9580 (11,2,80,152,87,142,113,107),
9581 (11,3,1,21,20,20,21,23),
9582 (11,3,2,21,21,21,22,24),
9583 (11,3,3,22,23,22,22,24),
9584 (11,3,4,22,24,23,23,25),
9585 (11,3,5,23,25,24,23,25),
9586 (11,3,6,23,27,25,24,26),
9587 (11,3,7,24,28,26,24,27),
9588 (11,3,8,24,30,27,25,27),
9589 (11,3,9,25,31,27,26,28),
9590 (11,3,10,25,33,28,26,29),
9591 (11,3,11,25,34,29,27,29),
9592 (11,3,12,26,36,30,28,30),
9593 (11,3,13,26,37,31,28,31),
9594 (11,3,14,27,39,32,29,32),
9595 (11,3,15,27,40,34,30,32),
9596 (11,3,16,28,42,35,30,33),
9597 (11,3,17,28,43,36,31,34),
9598 (11,3,18,29,45,37,32,35),
9599 (11,3,19,29,47,38,32,35),
9600 (11,3,20,30,48,39,33,36),
9601 (11,3,21,31,50,40,34,37),
9602 (11,3,22,31,51,41,34,38),
9603 (11,3,23,32,53,42,35,38),
9604 (11,3,24,32,55,43,36,39),
9605 (11,3,25,33,57,44,37,40),
9606 (11,3,26,33,58,46,37,41),
9607 (11,3,27,34,60,47,38,42),
9608 (11,3,28,35,62,48,39,42),
9609 (11,3,29,35,63,49,40,43),
9610 (11,3,30,36,65,50,40,44),
9611 (11,3,31,36,67,52,41,45),
9612 (11,3,32,37,69,53,42,46),
9613 (11,3,33,38,71,54,43,47),
9614 (11,3,34,38,72,55,44,48),
9615 (11,3,35,39,74,57,44,48),
9616 (11,3,36,39,76,58,45,49),
9617 (11,3,37,40,78,59,46,50),
9618 (11,3,38,41,80,60,47,51),
9619 (11,3,39,41,82,62,48,52),
9620 (11,3,40,42,84,63,49,53),
9621 (11,3,41,43,86,64,50,54),
9622 (11,3,42,43,88,66,50,55),
9623 (11,3,43,44,90,67,51,56),
9624 (11,3,44,45,91,68,52,57),
9625 (11,3,45,45,93,70,53,58),
9626 (11,3,46,46,95,71,54,59),
9627 (11,3,47,47,98,72,55,60),
9628 (11,3,48,48,100,74,56,61),
9629 (11,3,49,48,102,75,57,62),
9630 (11,3,50,49,104,77,58,63),
9631 (11,3,51,50,106,78,59,64),
9632 (11,3,52,51,108,79,60,65),
9633 (11,3,53,51,110,81,61,66),
9634 (11,3,54,52,112,82,61,67),
9635 (11,3,55,53,114,84,62,68),
9636 (11,3,56,54,116,85,63,69),
9637 (11,3,57,54,118,87,64,70),
9638 (11,3,58,55,121,88,65,71),
9639 (11,3,59,56,123,90,66,72),
9640 (11,3,60,57,125,91,67,74),
9641 (11,3,61,58,127,93,68,75),
9642 (11,3,62,58,130,94,69,76),
9643 (11,3,63,59,132,96,71,77),
9644 (11,3,64,60,134,97,72,78),
9645 (11,3,65,61,136,99,73,79),
9646 (11,3,66,62,139,101,74,80),
9647 (11,3,67,62,141,102,75,81),
9648 (11,3,68,63,143,104,76,83),
9649 (11,3,69,64,146,105,77,84),
9650 (11,3,70,65,148,107,78,85),
9651 (11,3,71,66,151,109,79,86),
9652 (11,3,72,67,154,111,80,87),
9653 (11,3,73,68,157,113,81,89),
9654 (11,3,74,69,160,115,83,90),
9655 (11,3,75,70,163,117,84,92),
9656 (11,3,76,71,166,119,85,93),
9657 (11,3,77,72,169,121,87,95),
9658 (11,3,78,73,172,123,88,96),
9659 (11,3,79,74,175,125,89,98),
9660 (11,3,80,75,178,127,91,99),
9661 (11,5,1,21,17,19,23,25),
9662 (11,5,2,21,17,19,24,26),
9663 (11,5,3,21,17,20,26,28),
9664 (11,5,4,21,18,20,27,29),
9665 (11,5,5,22,18,20,28,30),
9666 (11,5,6,22,18,21,30,32),
9667 (11,5,7,22,18,21,31,33),
9668 (11,5,8,22,19,22,32,35),
9669 (11,5,9,22,19,22,34,36),
9670 (11,5,10,22,19,22,35,38),
9671 (11,5,11,23,19,23,37,39),
9672 (11,5,12,23,20,23,38,41),
9673 (11,5,13,23,20,24,39,42),
9674 (11,5,14,23,20,24,41,44),
9675 (11,5,15,23,20,25,42,45),
9676 (11,5,16,24,21,25,44,47),
9677 (11,5,17,24,21,25,45,48),
9678 (11,5,18,24,21,26,47,50),
9679 (11,5,19,24,22,26,48,51),
9680 (11,5,20,24,22,27,50,53),
9681 (11,5,21,25,22,27,51,55),
9682 (11,5,22,25,22,28,53,56),
9683 (11,5,23,25,23,28,55,58),
9684 (11,5,24,25,23,29,56,60),
9685 (11,5,25,25,23,29,58,61),
9686 (11,5,26,26,24,30,60,63),
9687 (11,5,27,26,24,30,61,65),
9688 (11,5,28,26,24,31,63,66),
9689 (11,5,29,26,25,31,65,68),
9690 (11,5,30,27,25,32,66,70),
9691 (11,5,31,27,25,32,68,72),
9692 (11,5,32,27,26,33,70,73),
9693 (11,5,33,27,26,33,71,75),
9694 (11,5,34,28,26,34,73,77),
9695 (11,5,35,28,27,34,75,79),
9696 (11,5,36,28,27,35,77,81),
9697 (11,5,37,29,28,35,79,83),
9698 (11,5,38,29,28,36,80,85),
9699 (11,5,39,29,28,37,82,86),
9700 (11,5,40,29,29,37,84,88),
9701 (11,5,41,30,29,38,86,90),
9702 (11,5,42,30,29,38,88,92),
9703 (11,5,43,30,30,39,90,94),
9704 (11,5,44,31,30,39,91,96),
9705 (11,5,45,31,31,40,93,98),
9706 (11,5,46,31,31,41,95,100),
9707 (11,5,47,32,31,41,97,102),
9708 (11,5,48,32,32,42,99,104),
9709 (11,5,49,32,32,43,101,106),
9710 (11,5,50,33,33,43,103,108),
9711 (11,5,51,33,33,44,105,110),
9712 (11,5,52,33,34,44,107,113),
9713 (11,5,53,34,34,45,109,115),
9714 (11,5,54,34,34,46,111,117),
9715 (11,5,55,34,35,46,113,119),
9716 (11,5,56,35,35,47,115,121),
9717 (11,5,57,35,36,48,118,123),
9718 (11,5,58,35,36,48,120,126),
9719 (11,5,59,36,37,49,122,128),
9720 (11,5,60,36,37,50,124,130),
9721 (11,5,61,36,38,51,126,132),
9722 (11,5,62,37,38,51,128,134),
9723 (11,5,63,37,39,52,130,137),
9724 (11,5,64,38,39,53,133,139),
9725 (11,5,65,38,40,53,135,141),
9726 (11,5,66,38,40,54,137,144),
9727 (11,5,67,39,40,55,139,146),
9728 (11,5,68,39,41,56,141,148),
9729 (11,5,69,40,41,56,144,151),
9730 (11,5,70,40,42,57,146,153),
9731 (11,5,71,40,43,58,149,156),
9732 (11,5,72,41,43,58,155,159),
9733 (11,5,73,41,44,59,157,160),
9734 (11,5,74,42,44,61,160,163),
9735 (11,5,75,42,45,62,164,166),
9736 (11,5,76,42,46,62,167,169),
9737 (11,5,77,43,46,63,168,172),
9738 (11,5,78,43,47,64,169,177),
9739 (11,5,79,44,47,65,172,180),
9740 (11,5,80,44,48,66,175,183),
9741 (11,6,1,24,17,21,21,22),
9742 (11,6,2,25,18,22,21,22),
9743 (11,6,3,27,19,23,21,23),
9744 (11,6,4,28,19,25,21,23),
9745 (11,6,5,29,20,26,21,23),
9746 (11,6,6,31,21,27,21,23),
9747 (11,6,7,32,22,28,21,24),
9748 (11,6,8,33,23,29,22,24),
9749 (11,6,9,35,24,31,22,24),
9750 (11,6,10,36,24,32,22,25),
9751 (11,6,11,37,25,33,22,25),
9752 (11,6,12,39,26,34,22,25),
9753 (11,6,13,40,27,36,22,26),
9754 (11,6,14,42,28,37,22,26),
9755 (11,6,15,43,29,38,22,26),
9756 (11,6,16,45,30,40,22,27),
9757 (11,6,17,46,31,41,23,27),
9758 (11,6,18,48,32,43,23,27),
9759 (11,6,19,49,33,44,23,28),
9760 (11,6,20,51,34,45,23,28),
9761 (11,6,21,52,34,47,23,28),
9762 (11,6,22,54,35,48,23,29),
9763 (11,6,23,55,36,50,23,29),
9764 (11,6,24,57,37,51,24,30),
9765 (11,6,25,59,38,52,24,30),
9766 (11,6,26,60,39,54,24,30),
9767 (11,6,27,62,40,55,24,31),
9768 (11,6,28,63,41,57,24,31),
9769 (11,6,29,65,43,58,24,32),
9770 (11,6,30,67,44,60,24,32),
9771 (11,6,31,69,45,62,25,32),
9772 (11,6,32,70,46,63,25,33),
9773 (11,6,33,72,47,65,25,33),
9774 (11,6,34,74,48,66,25,34),
9775 (11,6,35,75,49,68,25,34),
9776 (11,6,36,77,50,69,26,35),
9777 (11,6,37,79,51,71,26,35),
9778 (11,6,38,81,52,73,26,35),
9779 (11,6,39,83,53,74,26,36),
9780 (11,6,40,84,55,76,26,36),
9781 (11,6,41,86,56,78,27,37),
9782 (11,6,42,88,57,79,27,37),
9783 (11,6,43,90,58,81,27,38),
9784 (11,6,44,92,59,83,27,38),
9785 (11,6,45,94,60,85,27,39),
9786 (11,6,46,96,62,86,28,39),
9787 (11,6,47,98,63,88,28,40),
9788 (11,6,48,100,64,90,28,40),
9789 (11,6,49,102,65,92,28,41),
9790 (11,6,50,103,65,93,29,41),
9791 (11,6,51,105,66,94,29,42),
9792 (11,6,52,106,67,95,29,42),
9793 (11,6,53,107,68,96,29,43),
9794 (11,6,54,108,69,97,30,44),
9795 (11,6,55,109,70,98,30,44),
9796 (11,6,56,112,72,101,30,45),
9797 (11,6,57,114,73,103,30,45),
9798 (11,6,58,117,74,105,31,46),
9799 (11,6,59,119,76,107,31,46),
9800 (11,6,60,121,77,109,31,47),
9801 (11,6,61,123,78,111,31,48),
9802 (11,6,62,126,80,113,31,48),
9803 (11,6,63,128,81,116,32,49),
9804 (11,6,64,131,83,118,32,49),
9805 (11,6,65,136,84,120,32,50),
9806 (11,6,66,140,86,123,32,51),
9807 (11,6,67,141,87,125,33,51),
9808 (11,6,68,141,89,127,33,52),
9809 (11,6,69,144,90,130,33,53),
9810 (11,6,70,147,92,132,33,53),
9811 (11,6,71,150,94,135,34,54),
9812 (11,6,72,152,95,137,34,55),
9813 (11,6,73,155,97,140,34,56),
9814 (11,6,74,162,99,142,34,56),
9815 (11,6,75,165,100,145,35,57),
9816 (11,6,76,167,102,146,35,58),
9817 (11,6,77,169,104,150,35,59),
9818 (11,6,78,170,105,152,35,59),
9819 (11,6,79,173,107,156,36,60),
9820 (11,6,80,176,109,159,36,61),
9821 (11,7,1,22,17,20,22,24),
9822 (11,7,2,23,17,21,23,25),
9823 (11,7,3,24,18,22,24,26),
9824 (11,7,4,25,18,23,25,27),
9825 (11,7,5,25,19,24,26,28),
9826 (11,7,6,26,19,25,27,29),
9827 (11,7,7,27,20,26,28,30),
9828 (11,7,8,28,20,27,28,31),
9829 (11,7,9,29,21,28,29,32),
9830 (11,7,10,30,21,29,30,33),
9831 (11,7,11,31,22,30,31,35),
9832 (11,7,12,32,22,31,32,36),
9833 (11,7,13,33,23,32,33,37),
9834 (11,7,14,34,23,33,34,38),
9835 (11,7,15,34,24,35,35,39),
9836 (11,7,16,35,24,36,36,40),
9837 (11,7,17,36,25,37,38,42),
9838 (11,7,18,37,25,38,39,43),
9839 (11,7,19,38,26,39,40,44),
9840 (11,7,20,39,26,40,41,45),
9841 (11,7,21,40,27,41,42,46),
9842 (11,7,22,41,27,43,43,48),
9843 (11,7,23,43,28,44,44,49),
9844 (11,7,24,44,28,45,45,50),
9845 (11,7,25,45,29,46,46,51),
9846 (11,7,26,46,30,47,48,53),
9847 (11,7,27,47,30,49,49,54),
9848 (11,7,28,48,31,50,50,55),
9849 (11,7,29,49,31,51,51,57),
9850 (11,7,30,50,32,53,52,58),
9851 (11,7,31,51,33,54,53,59),
9852 (11,7,32,52,33,55,55,61),
9853 (11,7,33,53,34,56,56,62),
9854 (11,7,34,55,34,58,57,64),
9855 (11,7,35,56,35,59,58,65),
9856 (11,7,36,57,36,60,60,66),
9857 (11,7,37,58,36,62,61,68),
9858 (11,7,38,59,37,63,62,69),
9859 (11,7,39,61,38,65,63,71),
9860 (11,7,40,62,38,66,65,72),
9861 (11,7,41,63,39,67,66,74),
9862 (11,7,42,64,40,69,67,75),
9863 (11,7,43,65,40,70,69,77),
9864 (11,7,44,67,41,72,70,78),
9865 (11,7,45,68,42,73,71,80),
9866 (11,7,46,69,42,75,73,81),
9867 (11,7,47,71,43,76,74,83),
9868 (11,7,48,72,44,78,76,84),
9869 (11,7,49,73,45,79,77,86),
9870 (11,7,50,74,45,81,78,88),
9871 (11,7,51,76,46,82,80,89),
9872 (11,7,52,77,47,84,81,91),
9873 (11,7,53,78,47,85,83,92),
9874 (11,7,54,80,48,87,84,94),
9875 (11,7,55,81,49,88,86,96),
9876 (11,7,56,83,50,90,87,97),
9877 (11,7,57,84,50,91,89,99),
9878 (11,7,58,85,51,93,90,101),
9879 (11,7,59,87,52,95,92,102),
9880 (11,7,60,88,53,96,93,104),
9881 (11,7,61,90,54,98,95,106),
9882 (11,7,62,91,54,99,96,108),
9883 (11,7,63,93,55,101,98,109),
9884 (11,7,64,94,56,103,99,111),
9885 (11,7,65,95,57,104,101,113),
9886 (11,7,66,97,58,106,103,115),
9887 (11,7,67,98,58,108,104,117),
9888 (11,7,68,100,59,110,106,118),
9889 (11,7,69,101,60,111,107,120),
9890 (11,7,70,103,61,113,109,122),
9891 (11,7,71,104,62,115,122,124),
9892 (11,7,72,106,63,117,124,127),
9893 (11,7,73,108,64,119,126,129),
9894 (11,7,74,110,65,122,128,131),
9895 (11,7,75,112,66,124,130,133),
9896 (11,7,76,114,67,126,133,136),
9897 (11,7,77,115,68,128,135,138),
9898 (11,7,78,117,69,130,137,140),
9899 (11,7,79,119,70,133,139,143),
9900 (11,7,80,121,71,135,141,145),
9901 (11,8,1,21,17,19,24,24),
9902 (11,8,2,21,17,19,25,25),
9903 (11,8,3,21,17,20,27,27),
9904 (11,8,4,21,17,20,28,28),
9905 (11,8,5,21,18,20,29,29),
9906 (11,8,6,21,18,20,31,31),
9907 (11,8,7,21,18,21,32,32),
9908 (11,8,8,22,18,21,34,33),
9909 (11,8,9,22,18,21,35,35),
9910 (11,8,10,22,19,22,37,36),
9911 (11,8,11,22,19,22,38,37),
9912 (11,8,12,22,19,22,40,39),
9913 (11,8,13,22,19,23,41,40),
9914 (11,8,14,22,19,23,43,42),
9915 (11,8,15,22,19,23,44,43),
9916 (11,8,16,22,20,24,46,45),
9917 (11,8,17,23,20,24,47,46),
9918 (11,8,18,23,20,24,49,48),
9919 (11,8,19,23,20,25,50,49),
9920 (11,8,20,23,21,25,52,51),
9921 (11,8,21,23,21,26,54,52),
9922 (11,8,22,23,21,26,55,54),
9923 (11,8,23,23,21,26,57,56),
9924 (11,8,24,24,21,27,59,57),
9925 (11,8,25,24,22,27,60,59),
9926 (11,8,26,24,22,27,62,60),
9927 (11,8,27,24,22,28,64,62),
9928 (11,8,28,24,22,28,65,64),
9929 (11,8,29,24,23,29,67,65),
9930 (11,8,30,24,23,29,69,67),
9931 (11,8,31,25,23,30,71,69),
9932 (11,8,32,25,23,30,73,71),
9933 (11,8,33,25,24,30,74,72),
9934 (11,8,34,25,24,31,76,74),
9935 (11,8,35,25,24,31,78,76),
9936 (11,8,36,26,24,32,80,78),
9937 (11,8,37,26,25,32,82,79),
9938 (11,8,38,26,25,33,84,81),
9939 (11,8,39,26,25,33,86,83),
9940 (11,8,40,26,26,34,87,85),
9941 (11,8,41,27,26,34,89,87),
9942 (11,8,42,27,26,35,91,89),
9943 (11,8,43,27,27,35,93,91),
9944 (11,8,44,27,27,36,95,92),
9945 (11,8,45,27,27,36,97,94),
9946 (11,8,46,28,27,37,99,96),
9947 (11,8,47,28,28,37,101,98),
9948 (11,8,48,28,28,38,103,100),
9949 (11,8,49,28,28,38,105,102),
9950 (11,8,50,29,29,39,107,104),
9951 (11,8,51,29,29,39,110,106),
9952 (11,8,52,29,29,40,112,108),
9953 (11,8,53,29,30,40,114,110),
9954 (11,8,54,30,30,41,116,112),
9955 (11,8,55,30,30,41,118,114),
9956 (11,8,56,30,31,42,120,116),
9957 (11,8,57,30,31,42,122,118),
9958 (11,8,58,31,31,43,125,121),
9959 (11,8,59,31,32,43,127,123),
9960 (11,8,60,31,32,44,129,125),
9961 (11,8,61,31,33,45,131,127),
9962 (11,8,62,32,33,45,133,129),
9963 (11,8,63,32,33,46,136,131),
9964 (11,8,64,32,34,46,138,134),
9965 (11,8,65,33,34,47,140,136),
9966 (11,8,66,33,34,48,143,138),
9967 (11,8,67,33,35,48,145,140),
9968 (11,8,68,33,35,49,147,142),
9969 (11,8,69,34,36,49,150,145),
9970 (11,8,70,34,36,50,152,147),
9971 (11,8,71,34,36,51,155,150),
9972 (11,8,72,34,37,52,161,153),
9973 (11,8,73,34,37,53,161,156),
9974 (11,8,74,35,38,53,164,158),
9975 (11,8,75,35,38,54,167,161),
9976 (11,8,76,35,38,55,170,164),
9977 (11,8,77,36,39,56,173,167),
9978 (11,8,78,36,39,56,176,170),
9979 (11,8,79,36,40,57,179,173),
9980 (11,8,80,37,40,58,182,176);
9981 /*!40000 ALTER TABLE `player_levelstats` ENABLE KEYS */;
9982 UNLOCK TABLES;
9984 -- ----------------------------
9985 -- Table structure for player_xp_for_level
9986 -- ----------------------------
9987 DROP TABLE IF EXISTS `player_xp_for_level`;
9988 CREATE TABLE `player_xp_for_level` (
9989   `lvl` int(3) unsigned NOT NULL,
9990   `xp_for_next_level` int(10) unsigned NOT NULL,
9991   PRIMARY KEY  (`lvl`)
9992 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
9995 -- Dumping data for table `player_xp_for_level`
9998 LOCK TABLES `player_xp_for_level` WRITE;
9999 /*!40000 ALTER TABLE `player_xp_for_level` DISABLE KEYS */;
10000 INSERT INTO `player_xp_for_level` VALUES
10001 ('1', '400'),
10002 ('2', '900'),
10003 ('3', '1400'),
10004 ('4', '2100'),
10005 ('5', '2800'),
10006 ('6', '3600'),
10007 ('7', '4500'),
10008 ('8', '5400'),
10009 ('9', '6500'),
10010 ('10', '7600'),
10011 ('11', '8700'),
10012 ('12', '9800'),
10013 ('13', '11000'),
10014 ('14', '12300'),
10015 ('15', '13600'),
10016 ('16', '15000'),
10017 ('17', '16400'),
10018 ('18', '17800'),
10019 ('19', '19300'),
10020 ('20', '20800'),
10021 ('21', '22400'),
10022 ('22', '24000'),
10023 ('23', '25500'),
10024 ('24', '27200'),
10025 ('25', '28900'),
10026 ('26', '30500'),
10027 ('27', '32200'),
10028 ('28', '33900'),
10029 ('29', '36300'),
10030 ('30', '38800'),
10031 ('31', '41600'),
10032 ('32', '44600'),
10033 ('33', '48000'),
10034 ('34', '51400'),
10035 ('35', '55000'),
10036 ('36', '58700'),
10037 ('37', '62400'),
10038 ('38', '66200'),
10039 ('39', '70200'),
10040 ('40', '74300'),
10041 ('41', '78500'),
10042 ('42', '82800'),
10043 ('43', '87100'),
10044 ('44', '91600'),
10045 ('45', '96300'),
10046 ('46', '101000'),
10047 ('47', '105800'),
10048 ('48', '110700'),
10049 ('49', '115700'),
10050 ('50', '120900'),
10051 ('51', '126100'),
10052 ('52', '131500'),
10053 ('53', '137000'),
10054 ('54', '142500'),
10055 ('55', '148200'),
10056 ('56', '154000'),
10057 ('57', '159900'),
10058 ('58', '165800'),
10059 ('59', '172000'),
10060 ('60', '290000'),
10061 ('61', '317000'),
10062 ('62', '349000'),
10063 ('63', '386000'),
10064 ('64', '428000'),
10065 ('65', '475000'),
10066 ('66', '527000'),
10067 ('67', '585000'),
10068 ('68', '648000'),
10069 ('69', '717000'),
10070 ('70', '1523800'),
10071 ('71', '1539600'),
10072 ('72', '1555700'),
10073 ('73', '1571800'),
10074 ('74', '1587900'),
10075 ('75', '1604200'),
10076 ('76', '1620700'),
10077 ('77', '1637400'),
10078 ('78', '1653900'),
10079 ('79', '1670800');
10080 /*!40000 ALTER TABLE `player_xp_for_level` ENABLE KEYS */;
10081 UNLOCK TABLES;
10084 -- Table structure for table `playercreateinfo`
10087 DROP TABLE IF EXISTS `playercreateinfo`;
10088 CREATE TABLE `playercreateinfo` (
10089   `race` tinyint(3) unsigned NOT NULL default '0',
10090   `class` tinyint(3) unsigned NOT NULL default '0',
10091   `map` smallint(5) unsigned NOT NULL default '0',
10092   `zone` mediumint(8) unsigned NOT NULL default '0',
10093   `position_x` float NOT NULL default '0',
10094   `position_y` float NOT NULL default '0',
10095   `position_z` float NOT NULL default '0',
10096   PRIMARY KEY  (`race`,`class`)
10097 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10100 -- Dumping data for table `playercreateinfo`
10103 LOCK TABLES `playercreateinfo` WRITE;
10104 /*!40000 ALTER TABLE `playercreateinfo` DISABLE KEYS */;
10105 INSERT INTO `playercreateinfo` VALUES
10106 (1,1,0,12,-8949,-132,84),
10107 (1,2,0,12,-8949,-132,84),
10108 (1,4,0,12,-8949,-132,84),
10109 (1,5,0,12,-8949,-132,84),
10110 (1,6,609,4298,2355.84,-5664.77,426.028),
10111 (1,8,0,12,-8949,-132,84),
10112 (1,9,0,12,-8949,-132,84),
10113 (2,1,1,14,-618,-4251,39),
10114 (2,3,1,14,-618,-4251,39),
10115 (2,4,1,14,-618,-4251,39),
10116 (2,6,609,4298,2358.44,-5666.9,426.023),
10117 (2,7,1,14,-618,-4251,39),
10118 (2,9,1,14,-618,-4251,39),
10119 (3,1,0,1,-6240,331,383),
10120 (3,2,0,1,-6240,331,383),
10121 (3,3,0,1,-6240,331,383),
10122 (3,4,0,1,-6240,331,383),
10123 (3,5,0,1,-6240,331,383),
10124 (3,6,609,4298,2358.44,-5666.9,426.023),
10125 (4,1,1,141,10311,832,1327),
10126 (4,3,1,141,10311,832,1327),
10127 (4,4,1,141,10311,832,1327),
10128 (4,5,1,141,10311,832,1327),
10129 (4,6,609,4298,2356.21,-5662.21,426.026),
10130 (4,11,1,141,10311,832,1327),
10131 (5,1,0,85,1676,1677,122),
10132 (5,4,0,85,1676,1677,122),
10133 (5,5,0,85,1676,1677,122),
10134 (5,8,0,85,1676,1677,122),
10135 (5,9,0,85,1676,1677,122),
10136 (5,6,609,4298,2356.21,-5662.21,426.026),
10137 (6,1,1,215,-2917,-257,53),
10138 (6,3,1,215,-2917,-257,53),
10139 (6,6,609,4298,2358.17,-5663.21,426.027),
10140 (6,7,1,215,-2917,-257,53),
10141 (6,11,1,215,-2917,-257,53),
10142 (7,1,0,1,-6240,331,383),
10143 (7,4,0,1,-6240,331,383),
10144 (7,6,609,4298,2355.05,-5661.7, 426.026),
10145 (7,8,0,1,-6240,331,383),
10146 (7,9,0,1,-6240,331,383),
10147 (8,1,1,14,-618,-4251,39),
10148 (8,3,1,14,-618,-4251,39),
10149 (8,4,1,14,-618,-4251,39),
10150 (8,5,1,14,-618,-4251,39),
10151 (8,6,609,4298,2355.05,-5661.7, 426.026),
10152 (8,7,1,14,-618,-4251,39),
10153 (8,8,1,14,-618,-4251,39),
10154 (10,2,530,3431,10349.6,-6357.29,33.4026),
10155 (10,3,530,3431,10349.6,-6357.29,33.4026),
10156 (10,4,530,3431,10349.6,-6357.29,33.4026),
10157 (10,5,530,3431,10349.6,-6357.29,33.4026),
10158 (10,6,609,4298,2355.84,-5664.77,426.028),
10159 (10,8,530,3431,10349.6,-6357.29,33.4026),
10160 (10,9,530,3431,10349.6,-6357.29,33.4026),
10161 (11,1,530,3526,-3961.64,-13931.2,100.615),
10162 (11,2,530,3526,-3961.64,-13931.2,100.615),
10163 (11,3,530,3526,-3961.64,-13931.2,100.615),
10164 (11,5,530,3526,-3961.64,-13931.2,100.615),
10165 (11,6,609,4298,2358.17,-5663.21,426.027),
10166 (11,7,530,3526,-3961.64,-13931.2,100.615),
10167 (11,8,530,3526,-3961.64,-13931.2,100.615);
10168 /*!40000 ALTER TABLE `playercreateinfo` ENABLE KEYS */;
10169 UNLOCK TABLES;
10172 -- Table structure for table `playercreateinfo_action`
10175 DROP TABLE IF EXISTS `playercreateinfo_action`;
10176 CREATE TABLE `playercreateinfo_action` (
10177   `race` tinyint(3) unsigned NOT NULL default '0',
10178   `class` tinyint(3) unsigned NOT NULL default '0',
10179   `button` smallint(5) unsigned NOT NULL default '0',
10180   `action` int(11) unsigned NOT NULL default '0',
10181   `type` smallint(5) unsigned NOT NULL default '0',
10182   KEY `playercreateinfo_race_class_index` (`race`,`class`),
10183   PRIMARY KEY (`race`,`class`,`button`)
10184 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10187 -- Dumping data for table `playercreateinfo_action`
10190 LOCK TABLES `playercreateinfo_action` WRITE;
10191 /*!40000 ALTER TABLE `playercreateinfo_action` DISABLE KEYS */;
10192 INSERT INTO `playercreateinfo_action` VALUES
10193 (1,1,0,6603,0),
10194 (1,1,11,117,128),
10195 (1,1,72,6603,0),
10196 (1,1,73,78,0),
10197 (1,1,82,59752,0),
10198 (1,1,83,117,128),
10199 (1,1,84,6603,0),
10200 (1,1,96,6603,0),
10201 (1,1,108,6603,0),
10202 (1,2,0,6603,0),
10203 (1,2,1,21084,0),
10204 (1,2,2,635,0),
10205 (1,2,9,59752,0),
10206 (1,2,10,159,128),
10207 (1,2,11,2070,128),
10208 (1,4,0,6603,0),
10209 (1,4,1,1752,0),
10210 (1,4,2,2098,0),
10211 (1,4,3,2764,0),
10212 (1,4,10,59752,0),
10213 (1,4,11,2070,128),
10214 (1,5,0,6603,0),
10215 (1,5,1,585,0),
10216 (1,5,2,2050,0),
10217 (1,5,9,59752,0),
10218 (1,5,10,159,128),
10219 (1,5,11,2070,128),
10220 (1,6,0,6603,0),
10221 (1,6,1,49576,0),
10222 (1,6,2,45477,0),
10223 (1,6,3,45462,0),
10224 (1,6,4,45902,0),
10225 (1,6,5,47541,0),
10226 (1,6,11,59752,0),
10227 (1,8,0,6603,0),
10228 (1,8,1,133,0),
10229 (1,8,2,168,0),
10230 (1,8,9,59752,0),
10231 (1,8,10,159,128),
10232 (1,8,11,2070,128),
10233 (1,9,0,6603,0),
10234 (1,9,1,686,0),
10235 (1,9,2,687,0),
10236 (1,9,9,59752,0),
10237 (1,9,10,159,128),
10238 (1,9,11,4604,128),
10239 (2,1,0,6603,0),
10240 (2,1,72,6603,0),
10241 (2,1,73,78,0),
10242 (2,1,74,20572,0),
10243 (2,1,83,117,128),
10244 (2,1,84,6603,0),
10245 (2,1,96,6603,0),
10246 (2,1,108,6603,0),
10247 (2,3,0,6603,0),
10248 (2,3,1,2973,0),
10249 (2,3,2,75,0),
10250 (2,3,9,20572,0),
10251 (2,3,10,159,128),
10252 (2,3,11,117,128),
10253 (2,4,0,6603,0),
10254 (2,4,1,1752,0),
10255 (2,4,2,2098,0),
10256 (2,4,3,2764,0),
10257 (2,4,4,20572,0),
10258 (2,4,11,117,128),
10259 (2,6,0,6603,0),
10260 (2,6,1,49576,0),
10261 (2,6,2,45477,0),
10262 (2,6,3,45462,0),
10263 (2,6,4,45902,0),
10264 (2,6,5,47541,0),
10265 (2,6,10,20572,0),
10266 (2,7,0,6603,0),
10267 (2,7,1,403,0),
10268 (2,7,2,331,0),
10269 (2,7,3,33697,0),
10270 (2,7,10,159,128),
10271 (2,7,11,117,128),
10272 (2,9,0,6603,0),
10273 (2,9,1,686,0),
10274 (2,9,2,687,0),
10275 (2,9,3,33702,0),
10276 (2,9,10,159,128),
10277 (2,9,11,117,128),
10278 (3,1,0,6603,0),
10279 (3,1,1,78,0),
10280 (3,1,11,117,128),
10281 (3,1,72,6603,0),
10282 (3,1,73,78,0),
10283 (3,1,74,20594,0),
10284 (3,1,75,2481,0),
10285 (3,1,83,117,128),
10286 (3,1,84,6603,0),
10287 (3,1,96,6603,0),
10288 (3,1,108,6603,0),
10289 (3,2,0,6603,0),
10290 (3,2,1,21084,0),
10291 (3,2,2,635,0),
10292 (3,2,3,20594,0),
10293 (3,2,4,2481,0),
10294 (3,2,10,159,128),
10295 (3,2,11,4540,128),
10296 (3,3,0,6603,0),
10297 (3,3,1,2973,0),
10298 (3,3,2,75,0),
10299 (3,3,3,20594,0),
10300 (3,3,4,2481,0),
10301 (3,3,10,159,128),
10302 (3,3,11,117,128),
10303 (3,3,75,20594,0),
10304 (3,3,76,2481,0),
10305 (3,4,0,6603,0),
10306 (3,4,1,1752,0),
10307 (3,4,2,2098,0),
10308 (3,4,3,2764,0),
10309 (3,4,4,20594,0),
10310 (3,4,5,2481,0),
10311 (3,4,11,4540,128),
10312 (3,5,0,6603,0),
10313 (3,5,1,585,0),
10314 (3,5,2,2050,0),
10315 (3,5,3,20594,0),
10316 (3,5,4,2481,0),
10317 (3,5,10,159,128),
10318 (3,5,11,4540,128),
10319 (3,6,0,6603,0),
10320 (3,6,1,49576,0),
10321 (3,6,2,45477,0),
10322 (3,6,3,45462,0),
10323 (3,6,4,45902,0),
10324 (3,6,5,47541,0),
10325 (3,6,10,2481,0),
10326 (4,1,72,6603,0),
10327 (4,1,73,78,0),
10328 (4,1,82,58984,0),
10329 (4,1,83,117,128),
10330 (4,1,85,6603,0),
10331 (4,1,97,6603,0),
10332 (4,1,109,6603,0),
10333 (4,3,0,6603,0),
10334 (4,3,1,2973,0),
10335 (4,3,2,75,0),
10336 (4,3,3,58984,0),
10337 (4,3,10,159,128),
10338 (4,3,11,117,128),
10339 (4,4,0,6603,0),
10340 (4,4,1,1752,0),
10341 (4,4,2,2098,0),
10342 (4,4,3,2764,0),
10343 (4,4,10,58984,0),
10344 (4,4,11,4540,128),
10345 (4,4,82,58984,0),
10346 (4,5,0,6603,0),
10347 (4,5,1,585,0),
10348 (4,5,2,2050,0),
10349 (4,5,3,58984,0),
10350 (4,5,10,159,128),
10351 (4,5,11,2070,128),
10352 (4,6,0,6603,0),
10353 (4,6,1,49576,0),
10354 (4,6,2,45477,0),
10355 (4,6,3,45462,0),
10356 (4,6,4,45902,0),
10357 (4,6,5,47541,0),
10358 (4,6,10,58984,0),
10359 (4,6,83,58984,0),
10360 (4,11,0,6603,0),
10361 (4,11,1,5176,0),
10362 (4,11,2,5185,0),
10363 (4,11,9,58984,0),
10364 (4,11,10,159,128),
10365 (4,11,11,4536,128),
10366 (5,1,0,6603,0),
10367 (5,1,72,6603,0),
10368 (5,1,73,78,0),
10369 (5,1,74,20577,0),
10370 (5,1,83,4604,128),
10371 (5,1,84,6603,0),
10372 (5,1,96,6603,0),
10373 (5,1,108,6603,0),
10374 (5,4,0,6603,0),
10375 (5,4,1,1752,0),
10376 (5,4,2,2098,0),
10377 (5,4,3,2764,0),
10378 (5,4,4,20577,0),
10379 (5,4,11,4604,128),
10380 (5,5,0,6603,0),
10381 (5,5,1,585,0),
10382 (5,5,2,2050,0),
10383 (5,5,3,20577,0),
10384 (5,5,10,159,128),
10385 (5,5,11,4604,128),
10386 (5,6,0,6603,0),
10387 (5,6,1,49576,0),
10388 (5,6,2,45477,0),
10389 (5,6,3,45462,0),
10390 (5,6,4,45902,0),
10391 (5,6,5,47541,0),
10392 (5,6,10,20577,0),
10393 (5,8,0,6603,0),
10394 (5,8,1,133,0),
10395 (5,8,2,168,0),
10396 (5,8,3,20577,0),
10397 (5,8,10,159,128),
10398 (5,8,11,4604,128),
10399 (5,9,0,6603,0),
10400 (5,9,1,686,0),
10401 (5,9,2,687,0),
10402 (5,9,3,20577,0),
10403 (5,9,10,159,128),
10404 (5,9,11,4604,128),
10405 (6,1,0,6603,0),
10406 (6,1,1,78,0),
10407 (6,1,3,20549,0),
10408 (6,1,72,6603,0),
10409 (6,1,73,78,0),
10410 (6,1,74,20549,0),
10411 (6,1,83,4540,128),
10412 (6,1,84,6603,0),
10413 (6,1,96,6603,0),
10414 (6,1,108,6603,0),
10415 (6,3,0,6603,0),
10416 (6,3,1,2973,0),
10417 (6,3,2,75,0),
10418 (6,3,3,20549,0),
10419 (6,3,10,159,128),
10420 (6,3,11,117,128),
10421 (6,3,76,20549,0),
10422 (6,6,0,6603,0),
10423 (6,6,1,49576,0),
10424 (6,6,2,45477,0),
10425 (6,6,3,45462,0),
10426 (6,6,4,45902,0),
10427 (6,6,5,47541,0),
10428 (6,6,10,20549,0),
10429 (6,6,75,20549,0),
10430 (6,7,0,6603,0),
10431 (6,7,1,403,0),
10432 (6,7,2,331,0),
10433 (6,7,3,20549,0),
10434 (6,7,10,159,128),
10435 (6,7,11,4604,128),
10436 (6,7,76,20549,0),
10437 (6,11,0,6603,0),
10438 (6,11,1,5176,0),
10439 (6,11,2,5185,0),
10440 (6,11,3,20549,0),
10441 (6,11,10,159,128),
10442 (6,11,11,4536,128),
10443 (6,11,73,6603,0),
10444 (6,11,76,20549,0),
10445 (6,11,85,6603,0),
10446 (6,11,97,6603,0),
10447 (6,11,109,6603,0),
10448 (7,1,0,6603,0),
10449 (7,1,1,78,0),
10450 (7,1,10,20589,0),
10451 (7,1,11,117,128),
10452 (7,1,72,6603,0),
10453 (7,1,73,78,0),
10454 (7,1,82,20589,0),
10455 (7,1,83,117,128),
10456 (7,1,84,6603,0),
10457 (7,1,96,6603,0),
10458 (7,1,108,6603,0),
10459 (7,4,0,6603,0),
10460 (7,4,1,1752,0),
10461 (7,4,2,2098,0),
10462 (7,4,3,2764,0),
10463 (7,4,10,20589,0),
10464 (7,4,11,117,128),
10465 (7,6,0,6603,0),
10466 (7,6,1,49576,0),
10467 (7,6,2,45477,0),
10468 (7,6,3,45462,0),
10469 (7,6,4,45902,0),
10470 (7,6,5,47541,0),
10471 (7,6,10,20589,0),
10472 (7,6,11,41751,128),
10473 (7,6,72,6603,0),
10474 (7,6,83,41751,128),
10475 (7,6,84,6603,0),
10476 (7,6,96,6603,0),
10477 (7,6,108,6603,0),
10478 (7,8,0,6603,0),
10479 (7,8,1,133,0),
10480 (7,8,2,168,0),
10481 (7,8,9,20589,0),
10482 (7,8,10,159,128),
10483 (7,8,11,4536,128),
10484 (7,9,0,6603,0),
10485 (7,9,1,686,0),
10486 (7,9,2,687,0),
10487 (7,9,9,20589,0),
10488 (7,9,10,159,128),
10489 (7,9,11,4604,128),
10490 (8,1,0,6603,0),
10491 (8,1,72,6603,0),
10492 (8,1,73,78,0),
10493 (8,1,74,2764,0),
10494 (8,1,75,26297,0),
10495 (8,1,83,117,128),
10496 (8,1,84,6603,0),
10497 (8,1,96,6603,0),
10498 (8,1,108,6603,0),
10499 (8,3,0,6603,0),
10500 (8,3,1,2973,0),
10501 (8,3,2,75,0),
10502 (8,3,3,26297,0),
10503 (8,3,10,159,128),
10504 (8,3,11,4604,128),
10505 (8,4,0,6603,0),
10506 (8,4,1,1752,0),
10507 (8,4,2,2098,0),
10508 (8,4,3,2764,0),
10509 (8,4,4,26297,0),
10510 (8,4,11,117,128),
10511 (8,5,0,6603,0),
10512 (8,5,1,585,0),
10513 (8,5,2,2050,0),
10514 (8,5,3,26297,0),
10515 (8,5,10,159,128),
10516 (8,5,11,4540,128),
10517 (8,6,0,6603,0),
10518 (8,6,1,49576,0),
10519 (8,6,2,45477,0),
10520 (8,6,3,45462,0),
10521 (8,6,4,45902,0),
10522 (8,6,5,47541,0),
10523 (8,6,10,26297,0),
10524 (8,7,0,6603,0),
10525 (8,7,1,403,0),
10526 (8,7,2,331,0),
10527 (8,7,3,26297,0),
10528 (8,7,10,159,128),
10529 (8,7,11,117,128),
10530 (8,8,0,6603,0),
10531 (8,8,1,133,0),
10532 (8,8,2,168,0),
10533 (8,8,3,26297,0),
10534 (8,8,10,159,128),
10535 (8,8,11,117,128),
10536 (10,2,0,6603,0),
10537 (10,2,1,21084,0),
10538 (10,2,2,635,0),
10539 (10,2,3,28730,0),
10540 (10,2,10,159,128),
10541 (10,2,11,20857,128),
10542 (10,3,0,6603,0),
10543 (10,3,1,2973,0),
10544 (10,3,2,75,0),
10545 (10,3,3,28730,0),
10546 (10,3,10,159,128),
10547 (10,3,11,20857,128),
10548 (10,4,0,6603,0),
10549 (10,4,1,1752,0),
10550 (10,4,2,2098,0),
10551 (10,4,3,2764,0),
10552 (10,4,4,25046,0),
10553 (10,4,11,20857,128),
10554 (10,5,0,6603,0),
10555 (10,5,1,585,0),
10556 (10,5,2,2050,0),
10557 (10,5,3,28730,0),
10558 (10,5,10,159,128),
10559 (10,5,11,20857,128),
10560 (10,6,0,6603,0),
10561 (10,6,1,49576,0),
10562 (10,6,2,45477,0),
10563 (10,6,3,45462,0),
10564 (10,6,4,45902,0),
10565 (10,6,5,47541,0),
10566 (10,6,6,50613,0),
10567 (10,8,0,6603,0),
10568 (10,8,1,133,0),
10569 (10,8,2,168,0),
10570 (10,8,3,28730,0),
10571 (10,8,10,159,128),
10572 (10,8,11,20857,128),
10573 (10,9,0,6603,0),
10574 (10,9,1,686,0),
10575 (10,9,2,687,0),
10576 (10,9,3,28730,0),
10577 (10,9,10,159,128),
10578 (10,9,11,20857,128),
10579 (11,1,0,6603,0),
10580 (11,1,72,6603,0),
10581 (11,1,73,78,0),
10582 (11,1,74,28880,0),
10583 (11,1,83,4540,128),
10584 (11,1,84,6603,0),
10585 (11,1,96,6603,0),
10586 (11,1,108,6603,0),
10587 (11,2,0,6603,0),
10588 (11,2,1,21084,0),
10589 (11,2,2,635,0),
10590 (11,2,3,59542,0),
10591 (11,2,10,159,128),
10592 (11,2,11,4540,128),
10593 (11,2,83,4540,128),
10594 (11,3,0,6603,0),
10595 (11,3,1,2973,0),
10596 (11,3,2,75,0),
10597 (11,3,3,59543,0),
10598 (11,3,10,159,128),
10599 (11,3,11,4540,128),
10600 (11,3,72,6603,0),
10601 (11,3,73,2973,0),
10602 (11,3,74,75,0),
10603 (11,3,82,159,128),
10604 (11,3,83,4540,128),
10605 (11,5,0,6603,0),
10606 (11,5,1,585,0),
10607 (11,5,2,2050,0),
10608 (11,5,3,59544,0),
10609 (11,5,10,159,128),
10610 (11,5,11,4540,128),
10611 (11,5,83,4540,128),
10612 (11,6,0,6603,0),
10613 (11,6,1,49576,0),
10614 (11,6,2,45477,0),
10615 (11,6,3,45462,0),
10616 (11,6,4,45902,0),
10617 (11,6,5,47541,0),
10618 (11,6,10,59545,0),
10619 (11,6,11,41751,128),
10620 (11,7,0,6603,0),
10621 (11,7,1,403,0),
10622 (11,7,2,331,0),
10623 (11,7,3,59547,0),
10624 (11,7,10,159,128),
10625 (11,7,11,4540,128),
10626 (11,8,0,6603,0),
10627 (11,8,1,133,0),
10628 (11,8,2,168,0),
10629 (11,8,3,59548,0),
10630 (11,8,10,159,128),
10631 (11,8,11,4540,128),
10632 (11,8,83,4540,128);
10633 /*!40000 ALTER TABLE `playercreateinfo_action` ENABLE KEYS */;
10634 UNLOCK TABLES;
10637 -- Table structure for table `playercreateinfo_item`
10640 DROP TABLE IF EXISTS `playercreateinfo_item`;
10641 CREATE TABLE `playercreateinfo_item` (
10642   `race` tinyint(3) unsigned NOT NULL default '0',
10643   `class` tinyint(3) unsigned NOT NULL default '0',
10644   `itemid` mediumint(8) unsigned NOT NULL default '0',
10645   `amount` tinyint(3) unsigned NOT NULL default '1',
10646   KEY `playercreateinfo_race_class_index` (`race`,`class`)
10647 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10650 -- Dumping data for table `playercreateinfo_item`
10653 LOCK TABLES `playercreateinfo_item` WRITE;
10654 /*!40000 ALTER TABLE `playercreateinfo_item` DISABLE KEYS */;
10655 /*!40000 ALTER TABLE `playercreateinfo_item` ENABLE KEYS */;
10656 UNLOCK TABLES;
10659 -- Table structure for table `playercreateinfo_spell`
10662 DROP TABLE IF EXISTS `playercreateinfo_spell`;
10663 CREATE TABLE `playercreateinfo_spell` (
10664   `race` tinyint(3) unsigned NOT NULL default '0',
10665   `class` tinyint(3) unsigned NOT NULL default '0',
10666   `Spell` mediumint(8) unsigned NOT NULL default '0',
10667   `Note` varchar(255) default NULL,
10668   PRIMARY KEY  (`race`,`class`,`Spell`)
10669 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10672 -- Dumping data for table `playercreateinfo_spell`
10675 LOCK TABLES `playercreateinfo_spell` WRITE;
10676 /*!40000 ALTER TABLE `playercreateinfo_spell` DISABLE KEYS */;
10677 INSERT INTO `playercreateinfo_spell` VALUES
10678 (1,1,78,'Heroic Strike'),
10679 (1,1,81,'Dodge'),
10680 (1,1,107,'Block'),
10681 (1,1,196,'One-Handed Axes'),
10682 (1,1,198,'One-Handed Maces'),
10683 (1,1,201,'One-Handed Swords'),
10684 (1,1,203,'Unarmed'),
10685 (1,1,204,'Defense'),
10686 (1,1,522,'SPELLDEFENSE (DND)'),
10687 (1,1,668,'Language Common'),
10688 (1,1,1843,'Disarm'),
10689 (1,1,2382,'Generic'),
10690 (1,1,2457,'Battle Stance'),
10691 (1,1,2479,'Honorless Target'),
10692 (1,1,3050,'Detect'),
10693 (1,1,3365,'Opening'),
10694 (1,1,5301,'Defensive State (DND)'),
10695 (1,1,6233,'Closing'),
10696 (1,1,6246,'Closing'),
10697 (1,1,6247,'Opening'),
10698 (1,1,6477,'Opening'),
10699 (1,1,6478,'Opening'),
10700 (1,1,6603,'Attack'),
10701 (1,1,7266,'Duel'),
10702 (1,1,7267,'Grovel'),
10703 (1,1,7355,'Stuck'),
10704 (1,1,8386,'Attacking'),
10705 (1,1,8737,'Mail'),
10706 (1,1,9077,'Leather'),
10707 (1,1,9078,'Cloth'),
10708 (1,1,9116,'Shield'),
10709 (1,1,9125,'Generic'),
10710 (1,1,20597,'Sword Specialization'),
10711 (1,1,20598,'The Human Spirit'),
10712 (1,1,20599,'Diplomacy'),
10713 (1,1,20864,'Mace Specialization'),
10714 (1,1,21651,'Opening'),
10715 (1,1,21652,'Closing'),
10716 (1,1,22027,'Remove Insignia'),
10717 (1,1,22810,'Opening - No Text'),
10718 (1,1,32215,'Victorious State'),
10719 (1,1,45927,'Summon Friend'),
10720 (1,1,58985,'Perception'),
10721 (1,1,59752,'Every Man for Himself'),
10722 (1,1,61437,'Opening'),
10723 (1,2,81,'Dodge'),
10724 (1,2,107,'Block'),
10725 (1,2,198,'One-Handed Maces'),
10726 (1,2,199,'Two-Handed Maces'),
10727 (1,2,203,'Unarmed'),
10728 (1,2,204,'Defense'),
10729 (1,2,522,'SPELLDEFENSE (DND)'),
10730 (1,2,635,'Holy Light'),
10731 (1,2,668,'Language Common'),
10732 (1,2,1843,'Disarm'),
10733 (1,2,2382,'Generic'),
10734 (1,2,2479,'Honorless Target'),
10735 (1,2,3050,'Detect'),
10736 (1,2,3365,'Opening'),
10737 (1,2,6233,'Closing'),
10738 (1,2,6246,'Closing'),
10739 (1,2,6247,'Opening'),
10740 (1,2,6477,'Opening'),
10741 (1,2,6478,'Opening'),
10742 (1,2,6603,'Attack'),
10743 (1,2,7266,'Duel'),
10744 (1,2,7267,'Grovel'),
10745 (1,2,7355,'Stuck'),
10746 (1,2,8386,'Attacking'),
10747 (1,2,8737,'Mail'),
10748 (1,2,9077,'Leather'),
10749 (1,2,9078,'Cloth'),
10750 (1,2,9116,'Shield'),
10751 (1,2,9125,'Generic'),
10752 (1,2,21084,'Seal of Righteousness'),
10753 (1,2,20597,'Sword Specialization'),
10754 (1,2,20598,'The Human Spirit'),
10755 (1,2,20599,'Diplomacy'),
10756 (1,2,20864,'Mace Specialization'),
10757 (1,2,21651,'Opening'),
10758 (1,2,21652,'Closing'),
10759 (1,2,22027,'Remove Insignia'),
10760 (1,2,22810,'Opening - No Text'),
10761 (1,2,27762,'Libram'),
10762 (1,2,45927,'Summon Friend'),
10763 (1,2,58985,'Perception'),
10764 (1,2,59752,'Every Man for Himself'),
10765 (1,2,61437,'Opening'),
10766 (1,4,81,'Dodge'),
10767 (1,4,203,'Unarmed'),
10768 (1,4,204,'Defense'),
10769 (1,4,522,'SPELLDEFENSE (DND)'),
10770 (1,4,668,'Language Common'),
10771 (1,4,1180,'Daggers'),
10772 (1,4,1752,'Sinister Strike'),
10773 (1,4,1843,'Disarm'),
10774 (1,4,2098,'Eviscerate'),
10775 (1,4,2382,'Generic'),
10776 (1,4,2479,'Honorless Target'),
10777 (1,4,2567,'Thrown'),
10778 (1,4,2764,'Throw'),
10779 (1,4,3050,'Detect'),
10780 (1,4,3365,'Opening'),
10781 (1,4,6233,'Closing'),
10782 (1,4,6246,'Closing'),
10783 (1,4,6247,'Opening'),
10784 (1,4,6477,'Opening'),
10785 (1,4,6478,'Opening'),
10786 (1,4,6603,'Attack'),
10787 (1,4,7266,'Duel'),
10788 (1,4,7267,'Grovel'),
10789 (1,4,7355,'Stuck'),
10790 (1,4,8386,'Attacking'),
10791 (1,4,9077,'Leather'),
10792 (1,4,9078,'Cloth'),
10793 (1,4,9125,'Generic'),
10794 (1,4,16092,'Defensive State (DND)'),
10795 (1,4,20597,'Sword Specialization'),
10796 (1,4,20598,'The Human Spirit'),
10797 (1,4,20599,'Diplomacy'),
10798 (1,4,20864,'Mace Specialization'),
10799 (1,4,21184,'Rogue Passive (DND)'),
10800 (1,4,21651,'Opening'),
10801 (1,4,21652,'Closing'),
10802 (1,4,22027,'Remove Insignia'),
10803 (1,4,22810,'Opening - No Text'),
10804 (1,4,45927,'Summon Friend'),
10805 (1,4,58985,'Perception'),
10806 (1,4,59752,'Every Man for Himself'),
10807 (1,4,61437,'Opening'),
10808 (1,5,81,'Dodge'),
10809 (1,5,198,'One-Handed Maces'),
10810 (1,5,203,'Unarmed'),
10811 (1,5,204,'Defense'),
10812 (1,5,522,'SPELLDEFENSE (DND)'),
10813 (1,5,585,'Smite'),
10814 (1,5,668,'Language Common'),
10815 (1,5,1843,'Disarm'),
10816 (1,5,2050,'Lesser Heal'),
10817 (1,5,2382,'Generic'),
10818 (1,5,2479,'Honorless Target'),
10819 (1,5,3050,'Detect'),
10820 (1,5,3365,'Opening'),
10821 (1,5,5009,'Wands'),
10822 (1,5,5019,'Shoot'),
10823 (1,5,6233,'Closing'),
10824 (1,5,6246,'Closing'),
10825 (1,5,6247,'Opening'),
10826 (1,5,6477,'Opening'),
10827 (1,5,6478,'Opening'),
10828 (1,5,6603,'Attack'),
10829 (1,5,7266,'Duel'),
10830 (1,5,7267,'Grovel'),
10831 (1,5,7355,'Stuck'),
10832 (1,5,8386,'Attacking'),
10833 (1,5,9078,'Cloth'),
10834 (1,5,9125,'Generic'),
10835 (1,5,20597,'Sword Specialization'),
10836 (1,5,20598,'The Human Spirit'),
10837 (1,5,20599,'Diplomacy'),
10838 (1,5,20864,'Mace Specialization'),
10839 (1,5,21651,'Opening'),
10840 (1,5,21652,'Closing'),
10841 (1,5,22027,'Remove Insignia'),
10842 (1,5,22810,'Opening - No Text'),
10843 (1,5,45927,'Summon Friend'),
10844 (1,5,58985,'Perception'),
10845 (1,5,59752,'Every Man for Himself'),
10846 (1,5,61437,'Opening'),
10847 (1,6,81,'Dodge'),
10848 (1,6,196,'One-Handed Axes'),
10849 (1,6,197,'Two-Handed Axes'),
10850 (1,6,200,'Polearms'),
10851 (1,6,201,'One-Handed Swords'),
10852 (1,6,202,'Two-Handed Swords'),
10853 (1,6,203,'Unarmed'),
10854 (1,6,204,'Defense'),
10855 (1,6,522,'SPELLDEFENSE (DND)'),
10856 (1,6,668,'Language Common'),
10857 (1,6,674,'Dual Wield'),
10858 (1,6,750,'Plate Mail'),
10859 (1,6,1843,'Disarm'),
10860 (1,6,2382,'Generic'),
10861 (1,6,2479,'Honorless Target'),
10862 (1,6,3050,'Detect'),
10863 (1,6,3127,'Parry'),
10864 (1,6,3275,'Linen Bandage'),
10865 (1,6,3276,'Heavy Linen Bandage'),
10866 (1,6,3277,'Wool Bandage'),
10867 (1,6,3278,'Heavy Wool Bandage'),
10868 (1,6,3365,'Opening'),
10869 (1,6,6233,'Closing'),
10870 (1,6,6246,'Closing'),
10871 (1,6,6247,'Opening'),
10872 (1,6,6477,'Opening'),
10873 (1,6,6478,'Opening'),
10874 (1,6,6603,'Attack'),
10875 (1,6,7266,'Duel'),
10876 (1,6,7267,'Grovel'),
10877 (1,6,7355,'Stuck'),
10878 (1,6,7928,'Silk Bandage'),
10879 (1,6,7929,'Heavy Silk Bandage'),
10880 (1,6,7934,'Anti-Venom'),
10881 (1,6,8386,'Attacking'),
10882 (1,6,8737,'Mail'),
10883 (1,6,9077,'Leather'),
10884 (1,6,9078,'Cloth'),
10885 (1,6,9125,'Generic'),
10886 (1,6,10840,'Mageweave Bandage'),
10887 (1,6,10841,'Heavy Mageweave Bandage'),
10888 (1,6,10846,'First Aid'),
10889 (1,6,18629,'Runecloth Bandage'),
10890 (1,6,18630,'Heavy Runecloth Bandage'),
10891 (1,6,20597,'Sword Specialization'),
10892 (1,6,20598,'The Human Spirit'),
10893 (1,6,20599,'Diplomacy'),
10894 (1,6,20864,'Mace Specialization'),
10895 (1,6,21651,'Opening'),
10896 (1,6,21652,'Closing'),
10897 (1,6,22027,'Remove Insignia'),
10898 (1,6,22810,'Opening - No Text'),
10899 (1,6,33391,'Journeyman Riding'),
10900 (1,6,45462,'Plague Strike'),
10901 (1,6,45477,'Icy Touch'),
10902 (1,6,45902,'Blood Strike'),
10903 (1,6,45903,'Offensive State (DND)'),
10904 (1,6,45927,'Summon Friend'),
10905 (1,6,47541,'Death Coil'),
10906 (1,6,48266,'Blood Presence'),
10907 (1,6,49410,'Forceful Deflection'),
10908 (1,6,49576,'Death Grip'),
10909 (1,6,52665,'Sigil'),
10910 (1,6,58985,'Perception'),
10911 (1,6,59752,'Every Man for Himself'),
10912 (1,6,59879,'Blood Plague'),
10913 (1,6,59921,'Frost Fever'),
10914 (1,6,61437,'Opening'),
10915 (1,6,61455,'Runic Focus'),
10916 (1,8,81,'Dodge'),
10917 (1,8,133,'Fireball'),
10918 (1,8,168,'Frost Armor'),
10919 (1,8,203,'Unarmed'),
10920 (1,8,204,'Defense'),
10921 (1,8,227,'Staves'),
10922 (1,8,522,'SPELLDEFENSE (DND)'),
10923 (1,8,668,'Language Common'),
10924 (1,8,1843,'Disarm'),
10925 (1,8,2382,'Generic'),
10926 (1,8,2479,'Honorless Target'),
10927 (1,8,3050,'Detect'),
10928 (1,8,3365,'Opening'),
10929 (1,8,5009,'Wands'),
10930 (1,8,5019,'Shoot'),
10931 (1,8,6233,'Closing'),
10932 (1,8,6246,'Closing'),
10933 (1,8,6247,'Opening'),
10934 (1,8,6477,'Opening'),
10935 (1,8,6478,'Opening'),
10936 (1,8,6603,'Attack'),
10937 (1,8,7266,'Duel'),
10938 (1,8,7267,'Grovel'),
10939 (1,8,7355,'Stuck'),
10940 (1,8,8386,'Attacking'),
10941 (1,8,9078,'Cloth'),
10942 (1,8,9125,'Generic'),
10943 (1,8,20597,'Sword Specialization'),
10944 (1,8,20598,'The Human Spirit'),
10945 (1,8,20599,'Diplomacy'),
10946 (1,8,20864,'Mace Specialization'),
10947 (1,8,21651,'Opening'),
10948 (1,8,21652,'Closing'),
10949 (1,8,22027,'Remove Insignia'),
10950 (1,8,22810,'Opening - No Text'),
10951 (1,8,45927,'Summon Friend'),
10952 (1,8,58985,'Perception'),
10953 (1,8,59752,'Every Man for Himself'),
10954 (1,8,61437,'Opening'),
10955 (1,9,81,'Dodge'),
10956 (1,9,203,'Unarmed'),
10957 (1,9,204,'Defense'),
10958 (1,9,522,'SPELLDEFENSE (DND)'),
10959 (1,9,668,'Language Common'),
10960 (1,9,686,'Shadow Bolt'),
10961 (1,9,687,'Demon Skin'),
10962 (1,9,1180,'Daggers'),
10963 (1,9,1843,'Disarm'),
10964 (1,9,2382,'Generic'),
10965 (1,9,2479,'Honorless Target'),
10966 (1,9,3050,'Detect'),
10967 (1,9,3365,'Opening'),
10968 (1,9,5009,'Wands'),
10969 (1,9,5019,'Shoot'),
10970 (1,9,6233,'Closing'),
10971 (1,9,6246,'Closing'),
10972 (1,9,6247,'Opening'),
10973 (1,9,6477,'Opening'),
10974 (1,9,6478,'Opening'),
10975 (1,9,6603,'Attack'),
10976 (1,9,7266,'Duel'),
10977 (1,9,7267,'Grovel'),
10978 (1,9,7355,'Stuck'),
10979 (1,9,8386,'Attacking'),
10980 (1,9,9078,'Cloth'),
10981 (1,9,9125,'Generic'),
10982 (1,9,20597,'Sword Specialization'),
10983 (1,9,20598,'The Human Spirit'),
10984 (1,9,20599,'Diplomacy'),
10985 (1,9,20864,'Mace Specialization'),
10986 (1,9,21651,'Opening'),
10987 (1,9,21652,'Closing'),
10988 (1,9,22027,'Remove Insignia'),
10989 (1,9,22810,'Opening - No Text'),
10990 (1,9,45927,'Summon Friend'),
10991 (1,9,58284,'Chaos Bolt Passive'),
10992 (1,9,58985,'Perception'),
10993 (1,9,59752,'Every Man for Himself'),
10994 (1,9,61437,'Opening'),
10995 (2,1,78,'Heroic Strike'),
10996 (2,1,81,'Dodge'),
10997 (2,1,107,'Block'),
10998 (2,1,196,'One-Handed Axes'),
10999 (2,1,197,'Two-Handed Axes'),
11000 (2,1,201,'One-Handed Swords'),
11001 (2,1,203,'Unarmed'),
11002 (2,1,204,'Defense'),
11003 (2,1,522,'SPELLDEFENSE (DND)'),
11004 (2,1,669,'Language Orcish'),
11005 (2,1,1843,'Disarm'),
11006 (2,1,2382,'Generic'),
11007 (2,1,2457,'Battle Stance'),
11008 (2,1,2479,'Honorless Target'),
11009 (2,1,3050,'Detect'),
11010 (2,1,3365,'Opening'),
11011 (2,1,5301,'Defensive State (DND)'),
11012 (2,1,6233,'Closing'),
11013 (2,1,6246,'Closing'),
11014 (2,1,6247,'Opening'),
11015 (2,1,6477,'Opening'),
11016 (2,1,6478,'Opening'),
11017 (2,1,6603,'Attack'),
11018 (2,1,7266,'Duel'),
11019 (2,1,7267,'Grovel'),
11020 (2,1,7355,'Stuck'),
11021 (2,1,8386,'Attacking'),
11022 (2,1,8737,'Mail'),
11023 (2,1,9077,'Leather'),
11024 (2,1,9078,'Cloth'),
11025 (2,1,9116,'Shield'),
11026 (2,1,9125,'Generic'),
11027 (2,1,20572,'Blood Fury'),
11028 (2,1,20573,'Hardiness'),
11029 (2,1,20574,'Axe Specialization'),
11030 (2,1,21563,'Command'),
11031 (2,1,21651,'Opening'),
11032 (2,1,21652,'Closing'),
11033 (2,1,22027,'Remove Insignia'),
11034 (2,1,22810,'Opening - No Text'),
11035 (2,1,32215,'Victorious State'),
11036 (2,1,45927,'Summon Friend'),
11037 (2,1,61437,'Opening'),
11038 (2,3,75,'Auto Shot'),
11039 (2,3,81,'Dodge'),
11040 (2,3,196,'One-Handed Axes'),
11041 (2,3,203,'Unarmed'),
11042 (2,3,204,'Defense'),
11043 (2,3,264,'Bows'),
11044 (2,3,522,'SPELLDEFENSE (DND)'),
11045 (2,3,669,'Language Orcish'),
11046 (2,3,1843,'Disarm'),
11047 (2,3,2382,'Generic'),
11048 (2,3,2479,'Honorless Target'),
11049 (2,3,2973,'Raptor Strike'),
11050 (2,3,3050,'Detect'),
11051 (2,3,3365,'Opening'),
11052 (2,3,6233,'Closing'),
11053 (2,3,6246,'Closing'),
11054 (2,3,6247,'Opening'),
11055 (2,3,6477,'Opening'),
11056 (2,3,6478,'Opening'),
11057 (2,3,6603,'Attack'),
11058 (2,3,7266,'Duel'),
11059 (2,3,7267,'Grovel'),
11060 (2,3,7355,'Stuck'),
11061 (2,3,8386,'Attacking'),
11062 (2,3,9077,'Leather'),
11063 (2,3,9078,'Cloth'),
11064 (2,3,9125,'Generic'),
11065 (2,3,13358,'Defensive State (DND)'),
11066 (2,3,20572,'Blood Fury'),
11067 (2,3,20573,'Hardiness'),
11068 (2,3,20574,'Axe Specialization'),
11069 (2,3,20576,'Command'),
11070 (2,3,21651,'Opening'),
11071 (2,3,21652,'Closing'),
11072 (2,3,22027,'Remove Insignia'),
11073 (2,3,22810,'Opening - No Text'),
11074 (2,3,24949,'Defensive State 2 (DND)'),
11075 (2,3,34082,'Advantaged State (DND)'),
11076 (2,3,45927,'Summon Friend'),
11077 (2,3,61437,'Opening'),
11078 (2,4,81,'Dodge'),
11079 (2,4,203,'Unarmed'),
11080 (2,4,204,'Defense'),
11081 (2,4,522,'SPELLDEFENSE (DND)'),
11082 (2,4,669,'Language Orcish'),
11083 (2,4,1180,'Daggers'),
11084 (2,4,1752,'Sinister Strike'),
11085 (2,4,1843,'Disarm'),
11086 (2,4,2098,'Eviscerate'),
11087 (2,4,2382,'Generic'),
11088 (2,4,2479,'Honorless Target'),
11089 (2,4,2567,'Thrown'),
11090 (2,4,2764,'Throw'),
11091 (2,4,3050,'Detect'),
11092 (2,4,3365,'Opening'),
11093 (2,4,6233,'Closing'),
11094 (2,4,6246,'Closing'),
11095 (2,4,6247,'Opening'),
11096 (2,4,6477,'Opening'),
11097 (2,4,6478,'Opening'),
11098 (2,4,6603,'Attack'),
11099 (2,4,7266,'Duel'),
11100 (2,4,7267,'Grovel'),
11101 (2,4,7355,'Stuck'),
11102 (2,4,8386,'Attacking'),
11103 (2,4,9077,'Leather'),
11104 (2,4,9078,'Cloth'),
11105 (2,4,9125,'Generic'),
11106 (2,4,16092,'Defensive State (DND)'),
11107 (2,4,20572,'Blood Fury'),
11108 (2,4,20573,'Hardiness'),
11109 (2,4,20574,'Axe Specialization'),
11110 (2,4,21184,'Rogue Passive (DND)'),
11111 (2,4,21563,'Command'),
11112 (2,4,21651,'Opening'),
11113 (2,4,21652,'Closing'),
11114 (2,4,22027,'Remove Insignia'),
11115 (2,4,22810,'Opening - No Text'),
11116 (2,4,45927,'Summon Friend'),
11117 (2,4,61437,'Opening'),
11118 (2,6,81,'Dodge'),
11119 (2,6,196,'One-Handed Axes'),
11120 (2,6,197,'Two-Handed Axes'),
11121 (2,6,200,'Polearms'),
11122 (2,6,201,'One-Handed Swords'),
11123 (2,6,202,'Two-Handed Swords'),
11124 (2,6,203,'Unarmed'),
11125 (2,6,204,'Defense'),
11126 (2,6,522,'SPELLDEFENSE (DND)'),
11127 (2,6,669,'Language Orcish'),
11128 (2,6,674,'Dual Wield'),
11129 (2,6,750,'Plate Mail'),
11130 (2,6,1843,'Disarm'),
11131 (2,6,2382,'Generic'),
11132 (2,6,2479,'Honorless Target'),
11133 (2,6,3050,'Detect'),
11134 (2,6,3127,'Parry'),
11135 (2,6,3275,'Linen Bandage'),
11136 (2,6,3276,'Heavy Linen Bandage'),
11137 (2,6,3277,'Wool Bandage'),
11138 (2,6,3278,'Heavy Wool Bandage'),
11139 (2,6,3365,'Opening'),
11140 (2,6,6233,'Closing'),
11141 (2,6,6246,'Closing'),
11142 (2,6,6247,'Opening'),
11143 (2,6,6477,'Opening'),
11144 (2,6,6478,'Opening'),
11145 (2,6,6603,'Attack'),
11146 (2,6,7266,'Duel'),
11147 (2,6,7267,'Grovel'),
11148 (2,6,7355,'Stuck'),
11149 (2,6,7928,'Silk Bandage'),
11150 (2,6,7929,'Heavy Silk Bandage'),
11151 (2,6,7934,'Anti-Venom'),
11152 (2,6,8386,'Attacking'),
11153 (2,6,8737,'Mail'),
11154 (2,6,9077,'Leather'),
11155 (2,6,9078,'Cloth'),
11156 (2,6,9125,'Generic'),
11157 (2,6,10840,'Mageweave Bandage'),
11158 (2,6,10841,'Heavy Mageweave Bandage'),
11159 (2,6,10846,'First Aid'),
11160 (2,6,18629,'Runecloth Bandage'),
11161 (2,6,18630,'Heavy Runecloth Bandage'),
11162 (2,6,20572,'Blood Fury'),
11163 (2,6,20573,'Hardiness'),
11164 (2,6,20574,'Axe Specialization'),
11165 (2,6,21651,'Opening'),
11166 (2,6,21652,'Closing'),
11167 (2,6,22027,'Remove Insignia'),
11168 (2,6,22810,'Opening - No Text'),
11169 (2,6,33391,'Journeyman Riding'),
11170 (2,6,45462,'Plague Strike'),
11171 (2,6,45477,'Icy Touch'),
11172 (2,6,45902,'Blood Strike'),
11173 (2,6,45903,'Offensive State (DND)'),
11174 (2,6,45927,'Summon Friend'),
11175 (2,6,47541,'Death Coil'),
11176 (2,6,48266,'Blood Presence'),
11177 (2,6,49410,'Forceful Deflection'),
11178 (2,6,49576,'Death Grip'),
11179 (2,6,52665,'Sigil'),
11180 (2,6,54562,'Command'),
11181 (2,6,59879,'Blood Plague'),
11182 (2,6,59921,'Frost Fever'),
11183 (2,6,61437,'Opening'),
11184 (2,6,61455,'Runic Focus'),
11185 (2,7,81,'Dodge'),
11186 (2,7,107,'Block'),
11187 (2,7,198,'One-Handed Maces'),
11188 (2,7,203,'Unarmed'),
11189 (2,7,204,'Defense'),
11190 (2,7,227,'Staves'),
11191 (2,7,331,'Healing Wave'),
11192 (2,7,403,'Lightning Bolt'),
11193 (2,7,522,'SPELLDEFENSE (DND)'),
11194 (2,7,669,'Language Orcish'),
11195 (2,7,1843,'Disarm'),
11196 (2,7,2382,'Generic'),
11197 (2,7,2479,'Honorless Target'),
11198 (2,7,3050,'Detect'),
11199 (2,7,3365,'Opening'),
11200 (2,7,6233,'Closing'),
11201 (2,7,6246,'Closing'),
11202 (2,7,6247,'Opening'),
11203 (2,7,6477,'Opening'),
11204 (2,7,6478,'Opening'),
11205 (2,7,6603,'Attack'),
11206 (2,7,7266,'Duel'),
11207 (2,7,7267,'Grovel'),
11208 (2,7,7355,'Stuck'),
11209 (2,7,8386,'Attacking'),
11210 (2,7,9077,'Leather'),
11211 (2,7,9078,'Cloth'),
11212 (2,7,9116,'Shield'),
11213 (2,7,9125,'Generic'),
11214 (2,7,20573,'Hardiness'),
11215 (2,7,20574,'Axe Specialization'),
11216 (2,7,21563,'Command'),
11217 (2,7,21651,'Opening'),
11218 (2,7,21652,'Closing'),
11219 (2,7,22027,'Remove Insignia'),
11220 (2,7,22810,'Opening - No Text'),
11221 (2,7,27763,'Totem'),
11222 (2,7,33697,'Blood Fury'),
11223 (2,7,45927,'Summon Friend'),
11224 (2,7,61437,'Opening'),
11225 (2,9,81,'Dodge'),
11226 (2,9,203,'Unarmed'),
11227 (2,9,204,'Defense'),
11228 (2,9,522,'SPELLDEFENSE (DND)'),
11229 (2,9,669,'Language Orcish'),
11230 (2,9,686,'Shadow Bolt'),
11231 (2,9,687,'Demon Skin'),
11232 (2,9,1180,'Daggers'),
11233 (2,9,1843,'Disarm'),
11234 (2,9,2382,'Generic'),
11235 (2,9,2479,'Honorless Target'),
11236 (2,9,3050,'Detect'),
11237 (2,9,3365,'Opening'),
11238 (2,9,5009,'Wands'),
11239 (2,9,5019,'Shoot'),
11240 (2,9,6233,'Closing'),
11241 (2,9,6246,'Closing'),
11242 (2,9,6247,'Opening'),
11243 (2,9,6477,'Opening'),
11244 (2,9,6478,'Opening'),
11245 (2,9,6603,'Attack'),
11246 (2,9,7266,'Duel'),
11247 (2,9,7267,'Grovel'),
11248 (2,9,7355,'Stuck'),
11249 (2,9,8386,'Attacking'),
11250 (2,9,9078,'Cloth'),
11251 (2,9,9125,'Generic'),
11252 (2,9,20573,'Hardiness'),
11253 (2,9,20574,'Axe Specialization'),
11254 (2,9,20575,'Command'),
11255 (2,9,21651,'Opening'),
11256 (2,9,21652,'Closing'),
11257 (2,9,22027,'Remove Insignia'),
11258 (2,9,22810,'Opening - No Text'),
11259 (2,9,33702,'Blood Fury'),
11260 (2,9,45927,'Summon Friend'),
11261 (2,9,58284,'Chaos Bolt Passive'),
11262 (2,9,61437,'Opening'),
11263 (3,1,78,'Heroic Strike'),
11264 (3,1,81,'Dodge'),
11265 (3,1,107,'Block'),
11266 (3,1,196,'One-Handed Axes'),
11267 (3,1,197,'Two-Handed Axes'),
11268 (3,1,198,'One-Handed Maces'),
11269 (3,1,203,'Unarmed'),
11270 (3,1,204,'Defense'),
11271 (3,1,522,'SPELLDEFENSE (DND)'),
11272 (3,1,668,'Language Common'),
11273 (3,1,672,'Language Dwarven'),
11274 (3,1,1843,'Disarm'),
11275 (3,1,2382,'Generic'),
11276 (3,1,2457,'Battle Stance'),
11277 (3,1,2479,'Honorless Target'),
11278 (3,1,2481,'Find Treasure'),
11279 (3,1,3050,'Detect'),
11280 (3,1,3365,'Opening'),
11281 (3,1,5301,'Defensive State (DND)'),
11282 (3,1,6233,'Closing'),
11283 (3,1,6246,'Closing'),
11284 (3,1,6247,'Opening'),
11285 (3,1,6477,'Opening'),
11286 (3,1,6478,'Opening'),
11287 (3,1,6603,'Attack'),
11288 (3,1,7266,'Duel'),
11289 (3,1,7267,'Grovel'),
11290 (3,1,7355,'Stuck'),
11291 (3,1,8386,'Attacking'),
11292 (3,1,8737,'Mail'),
11293 (3,1,9077,'Leather'),
11294 (3,1,9078,'Cloth'),
11295 (3,1,9116,'Shield'),
11296 (3,1,9125,'Generic'),
11297 (3,1,20594,'Stoneform'),
11298 (3,1,20595,'Gun Specialization'),
11299 (3,1,20596,'Frost Resistance'),
11300 (3,1,21651,'Opening'),
11301 (3,1,21652,'Closing'),
11302 (3,1,22027,'Remove Insignia'),
11303 (3,1,22810,'Opening - No Text'),
11304 (3,1,32215,'Victorious State'),
11305 (3,1,45927,'Summon Friend'),
11306 (3,1,59224,'Mace Specialization'),
11307 (3,1,61437,'Opening'),
11308 (3,2,81,'Dodge'),
11309 (3,2,107,'Block'),
11310 (3,2,198,'One-Handed Maces'),
11311 (3,2,199,'Two-Handed Maces'),
11312 (3,2,203,'Unarmed'),
11313 (3,2,204,'Defense'),
11314 (3,2,522,'SPELLDEFENSE (DND)'),
11315 (3,2,635,'Holy Light'),
11316 (3,2,668,'Language Common'),
11317 (3,2,672,'Language Dwarven'),
11318 (3,2,1843,'Disarm'),
11319 (3,2,2382,'Generic'),
11320 (3,2,2479,'Honorless Target'),
11321 (3,2,2481,'Find Treasure'),
11322 (3,2,3050,'Detect'),
11323 (3,2,3365,'Opening'),
11324 (3,2,6233,'Closing'),
11325 (3,2,6246,'Closing'),
11326 (3,2,6247,'Opening'),
11327 (3,2,6477,'Opening'),
11328 (3,2,6478,'Opening'),
11329 (3,2,6603,'Attack'),
11330 (3,2,7266,'Duel'),
11331 (3,2,7267,'Grovel'),
11332 (3,2,7355,'Stuck'),
11333 (3,2,8386,'Attacking'),
11334 (3,2,8737,'Mail'),
11335 (3,2,9077,'Leather'),
11336 (3,2,9078,'Cloth'),
11337 (3,2,9116,'Shield'),
11338 (3,2,9125,'Generic'),
11339 (3,2,21084,'Seal of Righteousness'),
11340 (3,2,20594,'Stoneform'),
11341 (3,2,20595,'Gun Specialization'),
11342 (3,2,20596,'Frost Resistance'),
11343 (3,2,21651,'Opening'),
11344 (3,2,21652,'Closing'),
11345 (3,2,22027,'Remove Insignia'),
11346 (3,2,22810,'Opening - No Text'),
11347 (3,2,27762,'Libram'),
11348 (3,2,45927,'Summon Friend'),
11349 (3,2,59224,'Mace Specialization'),
11350 (3,2,61437,'Opening'),
11351 (3,3,75,'Auto Shot'),
11352 (3,3,81,'Dodge'),
11353 (3,3,196,'One-Handed Axes'),
11354 (3,3,203,'Unarmed'),
11355 (3,3,204,'Defense'),
11356 (3,3,266,'Guns'),
11357 (3,3,522,'SPELLDEFENSE (DND)'),
11358 (3,3,668,'Language Common'),
11359 (3,3,672,'Language Dwarven'),
11360 (3,3,1843,'Disarm'),
11361 (3,3,2382,'Generic'),
11362 (3,3,2479,'Honorless Target'),
11363 (3,3,2481,'Find Treasure'),
11364 (3,3,2973,'Raptor Strike'),
11365 (3,3,3050,'Detect'),
11366 (3,3,3365,'Opening'),
11367 (3,3,6233,'Closing'),
11368 (3,3,6246,'Closing'),
11369 (3,3,6247,'Opening'),
11370 (3,3,6477,'Opening'),
11371 (3,3,6478,'Opening'),
11372 (3,3,6603,'Attack'),
11373 (3,3,7266,'Duel'),
11374 (3,3,7267,'Grovel'),
11375 (3,3,7355,'Stuck'),
11376 (3,3,8386,'Attacking'),
11377 (3,3,9077,'Leather'),
11378 (3,3,9078,'Cloth'),
11379 (3,3,9125,'Generic'),
11380 (3,3,13358,'Defensive State (DND)'),
11381 (3,3,20594,'Stoneform'),
11382 (3,3,20595,'Gun Specialization'),
11383 (3,3,20596,'Frost Resistance'),
11384 (3,3,21651,'Opening'),
11385 (3,3,21652,'Closing'),
11386 (3,3,22027,'Remove Insignia'),
11387 (3,3,22810,'Opening - No Text'),
11388 (3,3,24949,'Defensive State 2 (DND)'),
11389 (3,3,34082,'Advantaged State (DND)'),
11390 (3,3,45927,'Summon Friend'),
11391 (3,3,59224,'Mace Specialization'),
11392 (3,3,61437,'Opening'),
11393 (3,4,81,'Dodge'),
11394 (3,4,203,'Unarmed'),
11395 (3,4,204,'Defense'),
11396 (3,4,522,'SPELLDEFENSE (DND)'),
11397 (3,4,668,'Language Common'),
11398 (3,4,672,'Language Dwarven'),
11399 (3,4,1180,'Daggers'),
11400 (3,4,1752,'Sinister Strike'),
11401 (3,4,1843,'Disarm'),
11402 (3,4,2098,'Eviscerate'),
11403 (3,4,2382,'Generic'),
11404 (3,4,2479,'Honorless Target'),
11405 (3,4,2481,'Find Treasure'),
11406 (3,4,2567,'Thrown'),
11407 (3,4,2764,'Throw'),
11408 (3,4,3050,'Detect'),
11409 (3,4,3365,'Opening'),
11410 (3,4,6233,'Closing'),
11411 (3,4,6246,'Closing'),
11412 (3,4,6247,'Opening'),
11413 (3,4,6477,'Opening'),
11414 (3,4,6478,'Opening'),
11415 (3,4,6603,'Attack'),
11416 (3,4,7266,'Duel'),
11417 (3,4,7267,'Grovel'),
11418 (3,4,7355,'Stuck'),
11419 (3,4,8386,'Attacking'),
11420 (3,4,9077,'Leather'),
11421 (3,4,9078,'Cloth'),
11422 (3,4,9125,'Generic'),
11423 (3,4,16092,'Defensive State (DND)'),
11424 (3,4,20594,'Stoneform'),
11425 (3,4,20595,'Gun Specialization'),
11426 (3,4,20596,'Frost Resistance'),
11427 (3,4,21184,'Rogue Passive (DND)'),
11428 (3,4,21651,'Opening'),
11429 (3,4,21652,'Closing'),
11430 (3,4,22027,'Remove Insignia'),
11431 (3,4,22810,'Opening - No Text'),
11432 (3,4,45927,'Summon Friend'),
11433 (3,4,59224,'Mace Specialization'),
11434 (3,4,61437,'Opening'),
11435 (3,5,81,'Dodge'),
11436 (3,5,198,'One-Handed Maces'),
11437 (3,5,203,'Unarmed'),
11438 (3,5,204,'Defense'),
11439 (3,5,522,'SPELLDEFENSE (DND)'),
11440 (3,5,585,'Smite'),
11441 (3,5,668,'Language Common'),
11442 (3,5,672,'Language Dwarven'),
11443 (3,5,1843,'Disarm'),
11444 (3,5,2050,'Lesser Heal'),
11445 (3,5,2382,'Generic'),
11446 (3,5,2479,'Honorless Target'),
11447 (3,5,2481,'Find Treasure'),
11448 (3,5,3050,'Detect'),
11449 (3,5,3365,'Opening'),
11450 (3,5,5009,'Wands'),
11451 (3,5,5019,'Shoot'),
11452 (3,5,6233,'Closing'),
11453 (3,5,6246,'Closing'),
11454 (3,5,6247,'Opening'),
11455 (3,5,6477,'Opening'),
11456 (3,5,6478,'Opening'),
11457 (3,5,6603,'Attack'),
11458 (3,5,7266,'Duel'),
11459 (3,5,7267,'Grovel'),
11460 (3,5,7355,'Stuck'),
11461 (3,5,8386,'Attacking'),
11462 (3,5,9078,'Cloth'),
11463 (3,5,9125,'Generic'),
11464 (3,5,20594,'Stoneform'),
11465 (3,5,20595,'Gun Specialization'),
11466 (3,5,20596,'Frost Resistance'),
11467 (3,5,21651,'Opening'),
11468 (3,5,21652,'Closing'),
11469 (3,5,22027,'Remove Insignia'),
11470 (3,5,22810,'Opening - No Text'),
11471 (3,5,45927,'Summon Friend'),
11472 (3,5,59224,'Mace Specialization'),
11473 (3,5,61437,'Opening'),
11474 (3,6,81,'Dodge'),
11475 (3,6,196,'One-Handed Axes'),
11476 (3,6,197,'Two-Handed Axes'),
11477 (3,6,200,'Polearms'),
11478 (3,6,201,'One-Handed Swords'),
11479 (3,6,202,'Two-Handed Swords'),
11480 (3,6,203,'Unarmed'),
11481 (3,6,204,'Defense'),
11482 (3,6,522,'SPELLDEFENSE (DND)'),
11483 (3,6,668,'Language Common'),
11484 (3,6,672,'Language Dwarven'),
11485 (3,6,674,'Dual Wield'),
11486 (3,6,750,'Plate Mail'),
11487 (3,6,1843,'Disarm'),
11488 (3,6,2382,'Generic'),
11489 (3,6,2479,'Honorless Target'),
11490 (3,6,2481,'Find Treasure'),
11491 (3,6,3050,'Detect'),
11492 (3,6,3127,'Parry'),
11493 (3,6,3275,'Linen Bandage'),
11494 (3,6,3276,'Heavy Linen Bandage'),
11495 (3,6,3277,'Wool Bandage'),
11496 (3,6,3278,'Heavy Wool Bandage'),
11497 (3,6,3365,'Opening'),
11498 (3,6,6233,'Closing'),
11499 (3,6,6246,'Closing'),
11500 (3,6,6247,'Opening'),
11501 (3,6,6477,'Opening'),
11502 (3,6,6478,'Opening'),
11503 (3,6,6603,'Attack'),
11504 (3,6,7266,'Duel'),
11505 (3,6,7267,'Grovel'),
11506 (3,6,7355,'Stuck'),
11507 (3,6,7928,'Silk Bandage'),
11508 (3,6,7929,'Heavy Silk Bandage'),
11509 (3,6,7934,'Anti-Venom'),
11510 (3,6,8386,'Attacking'),
11511 (3,6,8737,'Mail'),
11512 (3,6,9077,'Leather'),
11513 (3,6,9078,'Cloth'),
11514 (3,6,9125,'Generic'),
11515 (3,6,10840,'Mageweave Bandage'),
11516 (3,6,10841,'Heavy Mageweave Bandage'),
11517 (3,6,10846,'First Aid'),
11518 (3,6,18629,'Runecloth Bandage'),
11519 (3,6,18630,'Heavy Runecloth Bandage'),
11520 (3,6,20594,'Stoneform'),
11521 (3,6,20595,'Gun Specialization'),
11522 (3,6,20596,'Frost Resistance'),
11523 (3,6,21651,'Opening'),
11524 (3,6,21652,'Closing'),
11525 (3,6,22027,'Remove Insignia'),
11526 (3,6,22810,'Opening - No Text'),
11527 (3,6,33391,'Journeyman Riding'),
11528 (3,6,45462,'Plague Strike'),
11529 (3,6,45477,'Icy Touch'),
11530 (3,6,45902,'Blood Strike'),
11531 (3,6,45903,'Offensive State (DND)'),
11532 (3,6,45927,'Summon Friend'),
11533 (3,6,47541,'Death Coil'),
11534 (3,6,48266,'Blood Presence'),
11535 (3,6,49410,'Forceful Deflection'),
11536 (3,6,49576,'Death Grip'),
11537 (3,6,52665,'Sigil'),
11538 (3,6,59224,'Mace Specialization'),
11539 (3,6,59879,'Blood Plague'),
11540 (3,6,59921,'Frost Fever'),
11541 (3,6,61437,'Opening'),
11542 (3,6,61455,'Runic Focus'),
11543 (4,1,78,'Heroic Strike'),
11544 (4,1,81,'Dodge'),
11545 (4,1,107,'Block'),
11546 (4,1,198,'One-Handed Maces'),
11547 (4,1,201,'One-Handed Swords'),
11548 (4,1,203,'Unarmed'),
11549 (4,1,204,'Defense'),
11550 (4,1,522,'SPELLDEFENSE (DND)'),
11551 (4,1,668,'Language Common'),
11552 (4,1,671,'Language Darnassian'),
11553 (4,1,1180,'Daggers'),
11554 (4,1,1843,'Disarm'),
11555 (4,1,2382,'Generic'),
11556 (4,1,2457,'Battle Stance'),
11557 (4,1,2479,'Honorless Target'),
11558 (4,1,3050,'Detect'),
11559 (4,1,3365,'Opening'),
11560 (4,1,5301,'Defensive State (DND)'),
11561 (4,1,6233,'Closing'),
11562 (4,1,6246,'Closing'),
11563 (4,1,6247,'Opening'),
11564 (4,1,6477,'Opening'),
11565 (4,1,6478,'Opening'),
11566 (4,1,6603,'Attack'),
11567 (4,1,7266,'Duel'),
11568 (4,1,7267,'Grovel'),
11569 (4,1,7355,'Stuck'),
11570 (4,1,8386,'Attacking'),
11571 (4,1,8737,'Mail'),
11572 (4,1,9077,'Leather'),
11573 (4,1,9078,'Cloth'),
11574 (4,1,9116,'Shield'),
11575 (4,1,9125,'Generic'),
11576 (4,1,20582,'Quickness'),
11577 (4,1,20583,'Nature Resistance'),
11578 (4,1,20585,'Wisp Spirit'),
11579 (4,1,21651,'Opening'),
11580 (4,1,21652,'Closing'),
11581 (4,1,22027,'Remove Insignia'),
11582 (4,1,22810,'Opening - No Text'),
11583 (4,1,32215,'Victorious State'),
11584 (4,1,45927,'Summon Friend'),
11585 (4,1,58984,'Shadowmelt'),
11586 (4,1,61437,'Opening'),
11587 (4,3,75,'Auto Shot'),
11588 (4,3,81,'Dodge'),
11589 (4,3,203,'Unarmed'),
11590 (4,3,204,'Defense'),
11591 (4,3,264,'Bows'),
11592 (4,3,522,'SPELLDEFENSE (DND)'),
11593 (4,3,668,'Language Common'),
11594 (4,3,671,'Language Darnassian'),
11595 (4,3,1180,'Daggers'),
11596 (4,3,1843,'Disarm'),
11597 (4,3,2382,'Generic'),
11598 (4,3,2479,'Honorless Target'),
11599 (4,3,2973,'Raptor Strike'),
11600 (4,3,3050,'Detect'),
11601 (4,3,3365,'Opening'),
11602 (4,3,6233,'Closing'),
11603 (4,3,6246,'Closing'),
11604 (4,3,6247,'Opening'),
11605 (4,3,6477,'Opening'),
11606 (4,3,6478,'Opening'),
11607 (4,3,6603,'Attack'),
11608 (4,3,7266,'Duel'),
11609 (4,3,7267,'Grovel'),
11610 (4,3,7355,'Stuck'),
11611 (4,3,8386,'Attacking'),
11612 (4,3,9077,'Leather'),
11613 (4,3,9078,'Cloth'),
11614 (4,3,9125,'Generic'),
11615 (4,3,13358,'Defensive State (DND)'),
11616 (4,3,20582,'Quickness'),
11617 (4,3,20583,'Nature Resistance'),
11618 (4,3,20585,'Wisp Spirit'),
11619 (4,3,21651,'Opening'),
11620 (4,3,21652,'Closing'),
11621 (4,3,22027,'Remove Insignia'),
11622 (4,3,22810,'Opening - No Text'),
11623 (4,3,24949,'Defensive State 2 (DND)'),
11624 (4,3,34082,'Advantaged State (DND)'),
11625 (4,3,45927,'Summon Friend'),
11626 (4,3,58984,'Shadowmelt'),
11627 (4,3,61437,'Opening'),
11628 (4,4,81,'Dodge'),
11629 (4,4,203,'Unarmed'),
11630 (4,4,204,'Defense'),
11631 (4,4,522,'SPELLDEFENSE (DND)'),
11632 (4,4,668,'Language Common'),
11633 (4,4,671,'Language Darnassian'),
11634 (4,4,1180,'Daggers'),
11635 (4,4,1752,'Sinister Strike'),
11636 (4,4,1843,'Disarm'),
11637 (4,4,2098,'Eviscerate'),
11638 (4,4,2382,'Generic'),
11639 (4,4,2479,'Honorless Target'),
11640 (4,4,2567,'Thrown'),
11641 (4,4,2764,'Throw'),
11642 (4,4,3050,'Detect'),
11643 (4,4,3365,'Opening'),
11644 (4,4,6233,'Closing'),
11645 (4,4,6246,'Closing'),
11646 (4,4,6247,'Opening'),
11647 (4,4,6477,'Opening'),
11648 (4,4,6478,'Opening'),
11649 (4,4,6603,'Attack'),
11650 (4,4,7266,'Duel'),
11651 (4,4,7267,'Grovel'),
11652 (4,4,7355,'Stuck'),
11653 (4,4,8386,'Attacking'),
11654 (4,4,9077,'Leather'),
11655 (4,4,9078,'Cloth'),
11656 (4,4,9125,'Generic'),
11657 (4,4,16092,'Defensive State (DND)'),
11658 (4,4,20582,'Quickness'),
11659 (4,4,20583,'Nature Resistance'),
11660 (4,4,20585,'Wisp Spirit'),
11661 (4,4,21184,'Rogue Passive (DND)'),
11662 (4,4,21651,'Opening'),
11663 (4,4,21652,'Closing'),
11664 (4,4,22027,'Remove Insignia'),
11665 (4,4,22810,'Opening - No Text'),
11666 (4,4,45927,'Summon Friend'),
11667 (4,4,58984,'Shadowmelt'),
11668 (4,4,61437,'Opening'),
11669 (4,5,81,'Dodge'),
11670 (4,5,198,'One-Handed Maces'),
11671 (4,5,203,'Unarmed'),
11672 (4,5,204,'Defense'),
11673 (4,5,522,'SPELLDEFENSE (DND)'),
11674 (4,5,585,'Smite'),
11675 (4,5,668,'Language Common'),
11676 (4,5,671,'Language Darnassian'),
11677 (4,5,1843,'Disarm'),
11678 (4,5,2050,'Lesser Heal'),
11679 (4,5,2382,'Generic'),
11680 (4,5,2479,'Honorless Target'),
11681 (4,5,3050,'Detect'),
11682 (4,5,3365,'Opening'),
11683 (4,5,5009,'Wands'),
11684 (4,5,5019,'Shoot'),
11685 (4,5,6233,'Closing'),
11686 (4,5,6246,'Closing'),
11687 (4,5,6247,'Opening'),
11688 (4,5,6477,'Opening'),
11689 (4,5,6478,'Opening'),
11690 (4,5,6603,'Attack'),
11691 (4,5,7266,'Duel'),
11692 (4,5,7267,'Grovel'),
11693 (4,5,7355,'Stuck'),
11694 (4,5,8386,'Attacking'),
11695 (4,5,9078,'Cloth'),
11696 (4,5,9125,'Generic'),
11697 (4,5,20582,'Quickness'),
11698 (4,5,20583,'Nature Resistance'),
11699 (4,5,20585,'Wisp Spirit'),
11700 (4,5,21651,'Opening'),
11701 (4,5,21652,'Closing'),
11702 (4,5,22027,'Remove Insignia'),
11703 (4,5,22810,'Opening - No Text'),
11704 (4,5,45927,'Summon Friend'),
11705 (4,5,58984,'Shadowmelt'),
11706 (4,5,61437,'Opening'),
11707 (4,6,81,'Dodge'),
11708 (4,6,196,'One-Handed Axes'),
11709 (4,6,197,'Two-Handed Axes'),
11710 (4,6,200,'Polearms'),
11711 (4,6,201,'One-Handed Swords'),
11712 (4,6,202,'Two-Handed Swords'),
11713 (4,6,203,'Unarmed'),
11714 (4,6,204,'Defense'),
11715 (4,6,522,'SPELLDEFENSE (DND)'),
11716 (4,6,668,'Language Common'),
11717 (4,6,671,'Language Darnassian'),
11718 (4,6,674,'Dual Wield'),
11719 (4,6,750,'Plate Mail'),
11720 (4,6,1843,'Disarm'),
11721 (4,6,2382,'Generic'),
11722 (4,6,2479,'Honorless Target'),
11723 (4,6,3050,'Detect'),
11724 (4,6,3127,'Parry'),
11725 (4,6,3275,'Linen Bandage'),
11726 (4,6,3276,'Heavy Linen Bandage'),
11727 (4,6,3277,'Wool Bandage'),
11728 (4,6,3278,'Heavy Wool Bandage'),
11729 (4,6,3365,'Opening'),
11730 (4,6,6233,'Closing'),
11731 (4,6,6246,'Closing'),
11732 (4,6,6247,'Opening'),
11733 (4,6,6477,'Opening'),
11734 (4,6,6478,'Opening'),
11735 (4,6,6603,'Attack'),
11736 (4,6,7266,'Duel'),
11737 (4,6,7267,'Grovel'),
11738 (4,6,7355,'Stuck'),
11739 (4,6,7928,'Silk Bandage'),
11740 (4,6,7929,'Heavy Silk Bandage'),
11741 (4,6,7934,'Anti-Venom'),
11742 (4,6,8386,'Attacking'),
11743 (4,6,8737,'Mail'),
11744 (4,6,9077,'Leather'),
11745 (4,6,9078,'Cloth'),
11746 (4,6,9125,'Generic'),
11747 (4,6,10840,'Mageweave Bandage'),
11748 (4,6,10841,'Heavy Mageweave Bandage'),
11749 (4,6,10846,'First Aid'),
11750 (4,6,18629,'Runecloth Bandage'),
11751 (4,6,18630,'Heavy Runecloth Bandage'),
11752 (4,6,20582,'Quickness'),
11753 (4,6,20583,'Nature Resistance'),
11754 (4,6,20585,'Wisp Spirit'),
11755 (4,6,21651,'Opening'),
11756 (4,6,21652,'Closing'),
11757 (4,6,22027,'Remove Insignia'),
11758 (4,6,22810,'Opening - No Text'),
11759 (4,6,33391,'Journeyman Riding'),
11760 (4,6,45462,'Plague Strike'),
11761 (4,6,45477,'Icy Touch'),
11762 (4,6,45902,'Blood Strike'),
11763 (4,6,45903,'Offensive State (DND)'),
11764 (4,6,45927,'Summon Friend'),
11765 (4,6,47541,'Death Coil'),
11766 (4,6,48266,'Blood Presence'),
11767 (4,6,49410,'Forceful Deflection'),
11768 (4,6,49576,'Death Grip'),
11769 (4,6,52665,'Sigil'),
11770 (4,6,58984,'Shadowmeld'),
11771 (4,6,59879,'Blood Plague'),
11772 (4,6,59921,'Frost Fever'),
11773 (4,6,61437,'Opening'),
11774 (4,6,61455,'Runic Focus'),
11775 (4,11,81,'Dodge'),
11776 (4,11,203,'Unarmed'),
11777 (4,11,204,'Defense'),
11778 (4,11,227,'Staves'),
11779 (4,11,522,'SPELLDEFENSE (DND)'),
11780 (4,11,668,'Language Common'),
11781 (4,11,671,'Language Darnassian'),
11782 (4,11,1180,'Daggers'),
11783 (4,11,1843,'Disarm'),
11784 (4,11,2382,'Generic'),
11785 (4,11,2479,'Honorless Target'),
11786 (4,11,3050,'Detect'),
11787 (4,11,3365,'Opening'),
11788 (4,11,5176,'Wrath'),
11789 (4,11,5185,'Healing Touch'),
11790 (4,11,6233,'Closing'),
11791 (4,11,6246,'Closing'),
11792 (4,11,6247,'Opening'),
11793 (4,11,6477,'Opening'),
11794 (4,11,6478,'Opening'),
11795 (4,11,6603,'Attack'),
11796 (4,11,7266,'Duel'),
11797 (4,11,7267,'Grovel'),
11798 (4,11,7355,'Stuck'),
11799 (4,11,8386,'Attacking'),
11800 (4,11,9077,'Leather'),
11801 (4,11,9078,'Cloth'),
11802 (4,11,9125,'Generic'),
11803 (4,11,20582,'Quickness'),
11804 (4,11,20583,'Nature Resistance'),
11805 (4,11,20585,'Wisp Spirit'),
11806 (4,11,21651,'Opening'),
11807 (4,11,21652,'Closing'),
11808 (4,11,22027,'Remove Insignia'),
11809 (4,11,22810,'Opening - No Text'),
11810 (4,11,27764,'Fetish'),
11811 (4,11,45927,'Summon Friend'),
11812 (4,11,58984,'Shadowmelt'),
11813 (4,11,61437,'Opening'),
11814 (5,1,78,'Heroic Strike'),
11815 (5,1,81,'Dodge'),
11816 (5,1,107,'Block'),
11817 (5,1,201,'One-Handed Swords'),
11818 (5,1,202,'Two-Handed Swords'),
11819 (5,1,203,'Unarmed'),
11820 (5,1,204,'Defense'),
11821 (5,1,522,'SPELLDEFENSE (DND)'),
11822 (5,1,669,'Language Orcish'),
11823 (5,1,1180,'Daggers'),
11824 (5,1,1843,'Disarm'),
11825 (5,1,2382,'Generic'),
11826 (5,1,2457,'Battle Stance'),
11827 (5,1,2479,'Honorless Target'),
11828 (5,1,3050,'Detect'),
11829 (5,1,3365,'Opening'),
11830 (5,1,5227,'Underwater Breathing'),
11831 (5,1,5301,'Defensive State (DND)'),
11832 (5,1,6233,'Closing'),
11833 (5,1,6246,'Closing'),
11834 (5,1,6247,'Opening'),
11835 (5,1,6477,'Opening'),
11836 (5,1,6478,'Opening'),
11837 (5,1,6603,'Attack'),
11838 (5,1,7266,'Duel'),
11839 (5,1,7267,'Grovel'),
11840 (5,1,7355,'Stuck'),
11841 (5,1,7744,'Will of the Forsaken'),
11842 (5,1,8386,'Attacking'),
11843 (5,1,8737,'Mail'),
11844 (5,1,9077,'Leather'),
11845 (5,1,9078,'Cloth'),
11846 (5,1,9116,'Shield'),
11847 (5,1,9125,'Generic'),
11848 (5,1,17737,'Language Gutterspeak'),
11849 (5,1,20577,'Cannibalize'),
11850 (5,1,20579,'Shadow Resistance'),
11851 (5,1,21651,'Opening'),
11852 (5,1,21652,'Closing'),
11853 (5,1,22027,'Remove Insignia'),
11854 (5,1,22810,'Opening - No Text'),
11855 (5,1,32215,'Victorious State'),
11856 (5,1,45927,'Summon Friend'),
11857 (5,1,61437,'Opening'),
11858 (5,4,81,'Dodge'),
11859 (5,4,203,'Unarmed'),
11860 (5,4,204,'Defense'),
11861 (5,4,522,'SPELLDEFENSE (DND)'),
11862 (5,4,669,'Language Orcish'),
11863 (5,4,1180,'Daggers'),
11864 (5,4,1752,'Sinister Strike'),
11865 (5,4,1843,'Disarm'),
11866 (5,4,2098,'Eviscerate'),
11867 (5,4,2382,'Generic'),
11868 (5,4,2479,'Honorless Target'),
11869 (5,4,2567,'Thrown'),
11870 (5,4,2764,'Throw'),
11871 (5,4,3050,'Detect'),
11872 (5,4,3365,'Opening'),
11873 (5,4,5227,'Underwater Breathing'),
11874 (5,4,6233,'Closing'),
11875 (5,4,6246,'Closing'),
11876 (5,4,6247,'Opening'),
11877 (5,4,6477,'Opening'),
11878 (5,4,6478,'Opening'),
11879 (5,4,6603,'Attack'),
11880 (5,4,7266,'Duel'),
11881 (5,4,7267,'Grovel'),
11882 (5,4,7355,'Stuck'),
11883 (5,4,7744,'Will of the Forsaken'),
11884 (5,4,8386,'Attacking'),
11885 (5,4,9077,'Leather'),
11886 (5,4,9078,'Cloth'),
11887 (5,4,9125,'Generic'),
11888 (5,4,16092,'Defensive State (DND)'),
11889 (5,4,17737,'Language Gutterspeak'),
11890 (5,4,20577,'Cannibalize'),
11891 (5,4,20579,'Shadow Resistance'),
11892 (5,4,21184,'Rogue Passive (DND)'),
11893 (5,4,21651,'Opening'),
11894 (5,4,21652,'Closing'),
11895 (5,4,22027,'Remove Insignia'),
11896 (5,4,22810,'Opening - No Text'),
11897 (5,4,45927,'Summon Friend'),
11898 (5,4,61437,'Opening'),
11899 (5,5,81,'Dodge'),
11900 (5,5,198,'One-Handed Maces'),
11901 (5,5,203,'Unarmed'),
11902 (5,5,204,'Defense'),
11903 (5,5,522,'SPELLDEFENSE (DND)'),
11904 (5,5,585,'Smite'),
11905 (5,5,669,'Language Orcish'),
11906 (5,5,1843,'Disarm'),
11907 (5,5,2050,'Lesser Heal'),
11908 (5,5,2382,'Generic'),
11909 (5,5,2479,'Honorless Target'),
11910 (5,5,3050,'Detect'),
11911 (5,5,3365,'Opening'),
11912 (5,5,5009,'Wands'),
11913 (5,5,5019,'Shoot'),
11914 (5,5,5227,'Underwater Breathing'),
11915 (5,5,6233,'Closing'),
11916 (5,5,6246,'Closing'),
11917 (5,5,6247,'Opening'),
11918 (5,5,6477,'Opening'),
11919 (5,5,6478,'Opening'),
11920 (5,5,6603,'Attack'),
11921 (5,5,7266,'Duel'),
11922 (5,5,7267,'Grovel'),
11923 (5,5,7355,'Stuck'),
11924 (5,5,7744,'Will of the Forsaken'),
11925 (5,5,8386,'Attacking'),
11926 (5,5,9078,'Cloth'),
11927 (5,5,9125,'Generic'),
11928 (5,5,17737,'Language Gutterspeak'),
11929 (5,5,20577,'Cannibalize'),
11930 (5,5,20579,'Shadow Resistance'),
11931 (5,5,21651,'Opening'),
11932 (5,5,21652,'Closing'),
11933 (5,5,22027,'Remove Insignia'),
11934 (5,5,22810,'Opening - No Text'),
11935 (5,5,45927,'Summon Friend'),
11936 (5,5,61437,'Opening'),
11937 (5,6,81,'Dodge'),
11938 (5,6,196,'One-Handed Axes'),
11939 (5,6,197,'Two-Handed Axes'),
11940 (5,6,200,'Polearms'),
11941 (5,6,201,'One-Handed Swords'),
11942 (5,6,202,'Two-Handed Swords'),
11943 (5,6,203,'Unarmed'),
11944 (5,6,204,'Defense'),
11945 (5,6,522,'SPELLDEFENSE (DND)'),
11946 (5,6,669,'Language Orcish'),
11947 (5,6,674,'Dual Wield'),
11948 (5,6,750,'Plate Mail'),
11949 (5,6,1843,'Disarm'),
11950 (5,6,2382,'Generic'),
11951 (5,6,2479,'Honorless Target'),
11952 (5,6,3050,'Detect'),
11953 (5,6,3127,'Parry'),
11954 (5,6,3275,'Linen Bandage'),
11955 (5,6,3276,'Heavy Linen Bandage'),
11956 (5,6,3277,'Wool Bandage'),
11957 (5,6,3278,'Heavy Wool Bandage'),
11958 (5,6,3365,'Opening'),
11959 (5,6,5227,'Underwater Breathing'),
11960 (5,6,6233,'Closing'),
11961 (5,6,6246,'Closing'),
11962 (5,6,6247,'Opening'),
11963 (5,6,6477,'Opening'),
11964 (5,6,6478,'Opening'),
11965 (5,6,6603,'Attack'),
11966 (5,6,7266,'Duel'),
11967 (5,6,7267,'Grovel'),
11968 (5,6,7355,'Stuck'),
11969 (5,6,7744,'Will of the Forsaken'),
11970 (5,6,7928,'Silk Bandage'),
11971 (5,6,7929,'Heavy Silk Bandage'),
11972 (5,6,7934,'Anti-Venom'),
11973 (5,6,8386,'Attacking'),
11974 (5,6,8737,'Mail'),
11975 (5,6,9077,'Leather'),
11976 (5,6,9078,'Cloth'),
11977 (5,6,9125,'Generic'),
11978 (5,6,10840,'Mageweave Bandage'),
11979 (5,6,10841,'Heavy Mageweave Bandage'),
11980 (5,6,10846,'First Aid'),
11981 (5,6,17737,'Language Gutterspeak'),
11982 (5,6,18629,'Runecloth Bandage'),
11983 (5,6,18630,'Heavy Runecloth Bandage'),
11984 (5,6,20577,'Cannibalize'),
11985 (5,6,20579,'Shadow Resistance'),
11986 (5,6,21651,'Opening'),
11987 (5,6,21652,'Closing'),
11988 (5,6,22027,'Remove Insignia'),
11989 (5,6,22810,'Opening - No Text'),
11990 (5,6,33391,'Journeyman Riding'),
11991 (5,6,45462,'Plague Strike'),
11992 (5,6,45477,'Icy Touch'),
11993 (5,6,45902,'Blood Strike'),
11994 (5,6,45903,'Offensive State (DND)'),
11995 (5,6,45927,'Summon Friend'),
11996 (5,6,47541,'Death Coil'),
11997 (5,6,48266,'Blood Presence'),
11998 (5,6,49410,'Forceful Deflection'),
11999 (5,6,49576,'Death Grip'),
12000 (5,6,52665,'Sigil'),
12001 (5,6,59879,'Blood Plague'),
12002 (5,6,59921,'Frost Fever'),
12003 (5,6,61437,'Opening'),
12004 (5,6,61455,'Runic Focus'),
12005 (5,8,81,'Dodge'),
12006 (5,8,133,'Fireball'),
12007 (5,8,168,'Frost Armor'),
12008 (5,8,203,'Unarmed'),
12009 (5,8,204,'Defense'),
12010 (5,8,227,'Staves'),
12011 (5,8,522,'SPELLDEFENSE (DND)'),
12012 (5,8,669,'Language Orcish'),
12013 (5,8,1843,'Disarm'),
12014 (5,8,2382,'Generic'),
12015 (5,8,2479,'Honorless Target'),
12016 (5,8,3050,'Detect'),
12017 (5,8,3365,'Opening'),
12018 (5,8,5009,'Wands'),
12019 (5,8,5019,'Shoot'),
12020 (5,8,5227,'Underwater Breathing'),
12021 (5,8,6233,'Closing'),
12022 (5,8,6246,'Closing'),
12023 (5,8,6247,'Opening'),
12024 (5,8,6477,'Opening'),
12025 (5,8,6478,'Opening'),
12026 (5,8,6603,'Attack'),
12027 (5,8,7266,'Duel'),
12028 (5,8,7267,'Grovel'),
12029 (5,8,7355,'Stuck'),
12030 (5,8,7744,'Will of the Forsaken'),
12031 (5,8,8386,'Attacking'),
12032 (5,8,9078,'Cloth'),
12033 (5,8,9125,'Generic'),
12034 (5,8,17737,'Language Gutterspeak'),
12035 (5,8,20577,'Cannibalize'),
12036 (5,8,20579,'Shadow Resistance'),
12037 (5,8,21651,'Opening'),
12038 (5,8,21652,'Closing'),
12039 (5,8,22027,'Remove Insignia'),
12040 (5,8,22810,'Opening - No Text'),
12041 (5,8,45927,'Summon Friend'),
12042 (5,8,61437,'Opening'),
12043 (5,9,81,'Dodge'),
12044 (5,9,203,'Unarmed'),
12045 (5,9,204,'Defense'),
12046 (5,9,522,'SPELLDEFENSE (DND)'),
12047 (5,9,669,'Language Orcish'),
12048 (5,9,686,'Shadow Bolt'),
12049 (5,9,687,'Demon Skin'),
12050 (5,9,1180,'Daggers'),
12051 (5,9,1843,'Disarm'),
12052 (5,9,2382,'Generic'),
12053 (5,9,2479,'Honorless Target'),
12054 (5,9,3050,'Detect'),
12055 (5,9,3365,'Opening'),
12056 (5,9,5009,'Wands'),
12057 (5,9,5019,'Shoot'),
12058 (5,9,5227,'Underwater Breathing'),
12059 (5,9,6233,'Closing'),
12060 (5,9,6246,'Closing'),
12061 (5,9,6247,'Opening'),
12062 (5,9,6477,'Opening'),
12063 (5,9,6478,'Opening'),
12064 (5,9,6603,'Attack'),
12065 (5,9,7266,'Duel'),
12066 (5,9,7267,'Grovel'),
12067 (5,9,7355,'Stuck'),
12068 (5,9,7744,'Will of the Forsaken'),
12069 (5,9,8386,'Attacking'),
12070 (5,9,9078,'Cloth'),
12071 (5,9,9125,'Generic'),
12072 (5,9,17737,'Language Gutterspeak'),
12073 (5,9,20577,'Cannibalize'),
12074 (5,9,20579,'Shadow Resistance'),
12075 (5,9,21651,'Opening'),
12076 (5,9,21652,'Closing'),
12077 (5,9,22027,'Remove Insignia'),
12078 (5,9,22810,'Opening - No Text'),
12079 (5,9,45927,'Summon Friend'),
12080 (5,9,58284,'Chaos Bolt Passive'),
12081 (5,9,61437,'Opening'),
12082 (6,1,78,'Heroic Strike'),
12083 (6,1,81,'Dodge'),
12084 (6,1,107,'Block'),
12085 (6,1,196,'One-Handed Axes'),
12086 (6,1,198,'One-Handed Maces'),
12087 (6,1,199,'Two-Handed Maces'),
12088 (6,1,203,'Unarmed'),
12089 (6,1,204,'Defense'),
12090 (6,1,522,'SPELLDEFENSE (DND)'),
12091 (6,1,669,'Language Orcish'),
12092 (6,1,670,'Language Taurahe'),
12093 (6,1,1843,'Disarm'),
12094 (6,1,2382,'Generic'),
12095 (6,1,2457,'Battle Stance'),
12096 (6,1,2479,'Honorless Target'),
12097 (6,1,3050,'Detect'),
12098 (6,1,3365,'Opening'),
12099 (6,1,5301,'Defensive State (DND)'),
12100 (6,1,6233,'Closing'),
12101 (6,1,6246,'Closing'),
12102 (6,1,6247,'Opening'),
12103 (6,1,6477,'Opening'),
12104 (6,1,6478,'Opening'),
12105 (6,1,6603,'Attack'),
12106 (6,1,7266,'Duel'),
12107 (6,1,7267,'Grovel'),
12108 (6,1,7355,'Stuck'),
12109 (6,1,8386,'Attacking'),
12110 (6,1,8737,'Mail'),
12111 (6,1,9077,'Leather'),
12112 (6,1,9078,'Cloth'),
12113 (6,1,9116,'Shield'),
12114 (6,1,9125,'Generic'),
12115 (6,1,20549,'War Stomp'),
12116 (6,1,20550,'Endurance'),
12117 (6,1,20551,'Nature Resistance'),
12118 (6,1,20552,'Cultivation'),
12119 (6,1,21651,'Opening'),
12120 (6,1,21652,'Closing'),
12121 (6,1,22027,'Remove Insignia'),
12122 (6,1,22810,'Opening - No Text'),
12123 (6,1,32215,'Victorious State'),
12124 (6,1,45927,'Summon Friend'),
12125 (6,1,61437,'Opening'),
12126 (6,3,75,'Auto Shot'),
12127 (6,3,81,'Dodge'),
12128 (6,3,196,'One-Handed Axes'),
12129 (6,3,203,'Unarmed'),
12130 (6,3,204,'Defense'),
12131 (6,3,266,'Guns'),
12132 (6,3,522,'SPELLDEFENSE (DND)'),
12133 (6,3,669,'Language Orcish'),
12134 (6,3,670,'Language Taurahe'),
12135 (6,3,1843,'Disarm'),
12136 (6,3,2382,'Generic'),
12137 (6,3,2479,'Honorless Target'),
12138 (6,3,2973,'Raptor Strike'),
12139 (6,3,3050,'Detect'),
12140 (6,3,3365,'Opening'),
12141 (6,3,6233,'Closing'),
12142 (6,3,6246,'Closing'),
12143 (6,3,6247,'Opening'),
12144 (6,3,6477,'Opening'),
12145 (6,3,6478,'Opening'),
12146 (6,3,6603,'Attack'),
12147 (6,3,7266,'Duel'),
12148 (6,3,7267,'Grovel'),
12149 (6,3,7355,'Stuck'),
12150 (6,3,8386,'Attacking'),
12151 (6,3,9077,'Leather'),
12152 (6,3,9078,'Cloth'),
12153 (6,3,9125,'Generic'),
12154 (6,3,13358,'Defensive State (DND)'),
12155 (6,3,20549,'War Stomp'),
12156 (6,3,20550,'Endurance'),
12157 (6,3,20551,'Nature Resistance'),
12158 (6,3,20552,'Cultivation'),
12159 (6,3,21651,'Opening'),
12160 (6,3,21652,'Closing'),
12161 (6,3,22027,'Remove Insignia'),
12162 (6,3,22810,'Opening - No Text'),
12163 (6,3,24949,'Defensive State 2 (DND)'),
12164 (6,3,34082,'Advantaged State (DND)'),
12165 (6,3,45927,'Summon Friend'),
12166 (6,3,61437,'Opening'),
12167 (6,6,81,'Dodge'),
12168 (6,6,196,'One-Handed Axes'),
12169 (6,6,197,'Two-Handed Axes'),
12170 (6,6,200,'Polearms'),
12171 (6,6,201,'One-Handed Swords'),
12172 (6,6,202,'Two-Handed Swords'),
12173 (6,6,203,'Unarmed'),
12174 (6,6,204,'Defense'),
12175 (6,6,522,'SPELLDEFENSE (DND)'),
12176 (6,6,669,'Language Orcish'),
12177 (6,6,670,'Language Taurahe'),
12178 (6,6,674,'Dual Wield'),
12179 (6,6,750,'Plate Mail'),
12180 (6,6,1843,'Disarm'),
12181 (6,6,2382,'Generic'),
12182 (6,6,2479,'Honorless Target'),
12183 (6,6,3050,'Detect'),
12184 (6,6,3127,'Parry'),
12185 (6,6,3275,'Linen Bandage'),
12186 (6,6,3276,'Heavy Linen Bandage'),
12187 (6,6,3277,'Wool Bandage'),
12188 (6,6,3278,'Heavy Wool Bandage'),
12189 (6,6,3365,'Opening'),
12190 (6,6,6233,'Closing'),
12191 (6,6,6246,'Closing'),
12192 (6,6,6247,'Opening'),
12193 (6,6,6477,'Opening'),
12194 (6,6,6478,'Opening'),
12195 (6,6,6603,'Attack'),
12196 (6,6,7266,'Duel'),
12197 (6,6,7267,'Grovel'),
12198 (6,6,7355,'Stuck'),
12199 (6,6,7928,'Silk Bandage'),
12200 (6,6,7929,'Heavy Silk Bandage'),
12201 (6,6,7934,'Anti-Venom'),
12202 (6,6,8386,'Attacking'),
12203 (6,6,8737,'Mail'),
12204 (6,6,9077,'Leather'),
12205 (6,6,9078,'Cloth'),
12206 (6,6,9125,'Generic'),
12207 (6,6,10840,'Mageweave Bandage'),
12208 (6,6,10841,'Heavy Mageweave Bandage'),
12209 (6,6,10846,'First Aid'),
12210 (6,6,18629,'Runecloth Bandage'),
12211 (6,6,18630,'Heavy Runecloth Bandage'),
12212 (6,6,20549,'War Stomp'),
12213 (6,6,20550,'Endurance'),
12214 (6,6,20551,'Nature Resistance'),
12215 (6,6,20552,'Cultivation'),
12216 (6,6,21651,'Opening'),
12217 (6,6,21652,'Closing'),
12218 (6,6,22027,'Remove Insignia'),
12219 (6,6,22810,'Opening - No Text'),
12220 (6,6,33391,'Journeyman Riding'),
12221 (6,6,45462,'Plague Strike'),
12222 (6,6,45477,'Icy Touch'),
12223 (6,6,45902,'Blood Strike'),
12224 (6,6,45903,'Offensive State (DND)'),
12225 (6,6,45927,'Summon Friend'),
12226 (6,6,47541,'Death Coil'),
12227 (6,6,48266,'Blood Presence'),
12228 (6,6,49410,'Forceful Deflection'),
12229 (6,6,49576,'Death Grip'),
12230 (6,6,52665,'Sigil'),
12231 (6,6,59879,'Blood Plague'),
12232 (6,6,59921,'Frost Fever'),
12233 (6,6,61437,'Opening'),
12234 (6,6,61455,'Runic Focus'),
12235 (6,7,81,'Dodge'),
12236 (6,7,107,'Block'),
12237 (6,7,198,'One-Handed Maces'),
12238 (6,7,203,'Unarmed'),
12239 (6,7,204,'Defense'),
12240 (6,7,227,'Staves'),
12241 (6,7,331,'Healing Wave'),
12242 (6,7,403,'Lightning Bolt'),
12243 (6,7,522,'SPELLDEFENSE (DND)'),
12244 (6,7,669,'Language Orcish'),
12245 (6,7,670,'Language Taurahe'),
12246 (6,7,1843,'Disarm'),
12247 (6,7,2382,'Generic'),
12248 (6,7,2479,'Honorless Target'),
12249 (6,7,3050,'Detect'),
12250 (6,7,3365,'Opening'),
12251 (6,7,6233,'Closing'),
12252 (6,7,6246,'Closing'),
12253 (6,7,6247,'Opening'),
12254 (6,7,6477,'Opening'),
12255 (6,7,6478,'Opening'),
12256 (6,7,6603,'Attack'),
12257 (6,7,7266,'Duel'),
12258 (6,7,7267,'Grovel'),
12259 (6,7,7355,'Stuck'),
12260 (6,7,8386,'Attacking'),
12261 (6,7,9077,'Leather'),
12262 (6,7,9078,'Cloth'),
12263 (6,7,9116,'Shield'),
12264 (6,7,9125,'Generic'),
12265 (6,7,20549,'War Stomp'),
12266 (6,7,20550,'Endurance'),
12267 (6,7,20551,'Nature Resistance'),
12268 (6,7,20552,'Cultivation'),
12269 (6,7,21651,'Opening'),
12270 (6,7,21652,'Closing'),
12271 (6,7,22027,'Remove Insignia'),
12272 (6,7,22810,'Opening - No Text'),
12273 (6,7,27763,'Totem'),
12274 (6,7,45927,'Summon Friend'),
12275 (6,7,61437,'Opening'),
12276 (6,11,81,'Dodge'),
12277 (6,11,198,'One-Handed Maces'),
12278 (6,11,203,'Unarmed'),
12279 (6,11,204,'Defense'),
12280 (6,11,227,'Staves'),
12281 (6,11,522,'SPELLDEFENSE (DND)'),
12282 (6,11,669,'Language Orcish'),
12283 (6,11,670,'Language Taurahe'),
12284 (6,11,1843,'Disarm'),
12285 (6,11,2382,'Generic'),
12286 (6,11,2479,'Honorless Target'),
12287 (6,11,3050,'Detect'),
12288 (6,11,3365,'Opening'),
12289 (6,11,5176,'Wrath'),
12290 (6,11,5185,'Healing Touch'),
12291 (6,11,6233,'Closing'),
12292 (6,11,6246,'Closing'),
12293 (6,11,6247,'Opening'),
12294 (6,11,6477,'Opening'),
12295 (6,11,6478,'Opening'),
12296 (6,11,6603,'Attack'),
12297 (6,11,7266,'Duel'),
12298 (6,11,7267,'Grovel'),
12299 (6,11,7355,'Stuck'),
12300 (6,11,8386,'Attacking'),
12301 (6,11,9077,'Leather'),
12302 (6,11,9078,'Cloth'),
12303 (6,11,9125,'Generic'),
12304 (6,11,20549,'War Stomp'),
12305 (6,11,20550,'Endurance'),
12306 (6,11,20551,'Nature Resistance'),
12307 (6,11,20552,'Cultivation'),
12308 (6,11,21651,'Opening'),
12309 (6,11,21652,'Closing'),
12310 (6,11,22027,'Remove Insignia'),
12311 (6,11,22810,'Opening - No Text'),
12312 (6,11,27764,'Fetish'),
12313 (6,11,45927,'Summon Friend'),
12314 (6,11,61437,'Opening'),
12315 (7,1,78,'Heroic Strike'),
12316 (7,1,81,'Dodge'),
12317 (7,1,107,'Block'),
12318 (7,1,198,'One-Handed Maces'),
12319 (7,1,201,'One-Handed Swords'),
12320 (7,1,203,'Unarmed'),
12321 (7,1,204,'Defense'),
12322 (7,1,522,'SPELLDEFENSE (DND)'),
12323 (7,1,668,'Language Common'),
12324 (7,1,1180,'Daggers'),
12325 (7,1,1843,'Disarm'),
12326 (7,1,2382,'Generic'),
12327 (7,1,2457,'Battle Stance'),
12328 (7,1,2479,'Honorless Target'),
12329 (7,1,3050,'Detect'),
12330 (7,1,3365,'Opening'),
12331 (7,1,5301,'Defensive State (DND)'),
12332 (7,1,6233,'Closing'),
12333 (7,1,6246,'Closing'),
12334 (7,1,6247,'Opening'),
12335 (7,1,6477,'Opening'),
12336 (7,1,6478,'Opening'),
12337 (7,1,6603,'Attack'),
12338 (7,1,7266,'Duel'),
12339 (7,1,7267,'Grovel'),
12340 (7,1,7340,'Language Gnomish'),
12341 (7,1,7355,'Stuck'),
12342 (7,1,8386,'Attacking'),
12343 (7,1,8737,'Mail'),
12344 (7,1,9077,'Leather'),
12345 (7,1,9078,'Cloth'),
12346 (7,1,9116,'Shield'),
12347 (7,1,9125,'Generic'),
12348 (7,1,20589,'Escape Artist'),
12349 (7,1,20591,'Expansive Mind'),
12350 (7,1,20592,'Arcane Resistance'),
12351 (7,1,20593,'Engineering Specialization'),
12352 (7,1,21651,'Opening'),
12353 (7,1,21652,'Closing'),
12354 (7,1,22027,'Remove Insignia'),
12355 (7,1,22810,'Opening - No Text'),
12356 (7,1,32215,'Victorious State'),
12357 (7,1,45927,'Summon Friend'),
12358 (7,1,61437,'Opening'),
12359 (7,4,81,'Dodge'),
12360 (7,4,203,'Unarmed'),
12361 (7,4,204,'Defense'),
12362 (7,4,522,'SPELLDEFENSE (DND)'),
12363 (7,4,668,'Language Common'),
12364 (7,4,1180,'Daggers'),
12365 (7,4,1752,'Sinister Strike'),
12366 (7,4,1843,'Disarm'),
12367 (7,4,2098,'Eviscerate'),
12368 (7,4,2382,'Generic'),
12369 (7,4,2479,'Honorless Target'),
12370 (7,4,2567,'Thrown'),
12371 (7,4,2764,'Throw'),
12372 (7,4,3050,'Detect'),
12373 (7,4,3365,'Opening'),
12374 (7,4,6233,'Closing'),
12375 (7,4,6246,'Closing'),
12376 (7,4,6247,'Opening'),
12377 (7,4,6477,'Opening'),
12378 (7,4,6478,'Opening'),
12379 (7,4,6603,'Attack'),
12380 (7,4,7266,'Duel'),
12381 (7,4,7267,'Grovel'),
12382 (7,4,7340,'Language Gnomish'),
12383 (7,4,7355,'Stuck'),
12384 (7,4,8386,'Attacking'),
12385 (7,4,9077,'Leather'),
12386 (7,4,9078,'Cloth'),
12387 (7,4,9125,'Generic'),
12388 (7,4,16092,'Defensive State (DND)'),
12389 (7,4,20589,'Escape Artist'),
12390 (7,4,20591,'Expansive Mind'),
12391 (7,4,20592,'Arcane Resistance'),
12392 (7,4,20593,'Engineering Specialization'),
12393 (7,4,21184,'Rogue Passive (DND)'),
12394 (7,4,21651,'Opening'),
12395 (7,4,21652,'Closing'),
12396 (7,4,22027,'Remove Insignia'),
12397 (7,4,22810,'Opening - No Text'),
12398 (7,4,45927,'Summon Friend'),
12399 (7,4,61437,'Opening'),
12400 (7,6,81,'Dodge'),
12401 (7,6,196,'One-Handed Axes'),
12402 (7,6,197,'Two-Handed Axes'),
12403 (7,6,200,'Polearms'),
12404 (7,6,201,'One-Handed Swords'),
12405 (7,6,202,'Two-Handed Swords'),
12406 (7,6,203,'Unarmed'),
12407 (7,6,204,'Defense'),
12408 (7,6,522,'SPELLDEFENSE (DND)'),
12409 (7,6,668,'Language Common'),
12410 (7,6,674,'Dual Wield'),
12411 (7,6,750,'Plate Mail'),
12412 (7,6,1843,'Disarm'),
12413 (7,6,2382,'Generic'),
12414 (7,6,2479,'Honorless Target'),
12415 (7,6,3050,'Detect'),
12416 (7,6,3127,'Parry'),
12417 (7,6,3275,'Linen Bandage'),
12418 (7,6,3276,'Heavy Linen Bandage'),
12419 (7,6,3277,'Wool Bandage'),
12420 (7,6,3278,'Heavy Wool Bandage'),
12421 (7,6,3365,'Opening'),
12422 (7,6,6233,'Closing'),
12423 (7,6,6246,'Closing'),
12424 (7,6,6247,'Opening'),
12425 (7,6,6477,'Opening'),
12426 (7,6,6478,'Opening'),
12427 (7,6,6603,'Attack'),
12428 (7,6,7266,'Duel'),
12429 (7,6,7267,'Grovel'),
12430 (7,6,7340,'Language Gnomish'),
12431 (7,6,7355,'Stuck'),
12432 (7,6,7928,'Silk Bandage'),
12433 (7,6,7929,'Heavy Silk Bandage'),
12434 (7,6,7934,'Anti-Venom'),
12435 (7,6,8386,'Attacking'),
12436 (7,6,8737,'Mail'),
12437 (7,6,9077,'Leather'),
12438 (7,6,9078,'Cloth'),
12439 (7,6,9125,'Generic'),
12440 (7,6,10840,'Mageweave Bandage'),
12441 (7,6,10841,'Heavy Mageweave Bandage'),
12442 (7,6,10846,'First Aid'),
12443 (7,6,18629,'Runecloth Bandage'),
12444 (7,6,18630,'Heavy Runecloth Bandage'),
12445 (7,6,20589,'Escape Artist'),
12446 (7,6,20591,'Expansive Mind'),
12447 (7,6,20592,'Arcane Resistance'),
12448 (7,6,20593,'Engineering Specialization'),
12449 (7,6,21651,'Opening'),
12450 (7,6,21652,'Closing'),
12451 (7,6,22027,'Remove Insignia'),
12452 (7,6,22810,'Opening - No Text'),
12453 (7,6,33391,'Journeyman Riding'),
12454 (7,6,45462,'Plague Strike'),
12455 (7,6,45477,'Icy Touch'),
12456 (7,6,45902,'Blood Strike'),
12457 (7,6,45903,'Offensive State (DND)'),
12458 (7,6,45927,'Summon Friend'),
12459 (7,6,47541,'Death Coil'),
12460 (7,6,48266,'Blood Presence'),
12461 (7,6,49410,'Forceful Deflection'),
12462 (7,6,49576,'Death Grip'),
12463 (7,6,52665,'Sigil'),
12464 (7,6,59879,'Blood Plague'),
12465 (7,6,59921,'Frost Fever'),
12466 (7,6,61437,'Opening'),
12467 (7,6,61455,'Runic Focus'),
12468 (7,8,81,'Dodge'),
12469 (7,8,133,'Fireball'),
12470 (7,8,168,'Frost Armor'),
12471 (7,8,203,'Unarmed'),
12472 (7,8,204,'Defense'),
12473 (7,8,227,'Staves'),
12474 (7,8,522,'SPELLDEFENSE (DND)'),
12475 (7,8,668,'Language Common'),
12476 (7,8,1843,'Disarm'),
12477 (7,8,2382,'Generic'),
12478 (7,8,2479,'Honorless Target'),
12479 (7,8,3050,'Detect'),
12480 (7,8,3365,'Opening'),
12481 (7,8,5009,'Wands'),
12482 (7,8,5019,'Shoot'),
12483 (7,8,6233,'Closing'),
12484 (7,8,6246,'Closing'),
12485 (7,8,6247,'Opening'),
12486 (7,8,6477,'Opening'),
12487 (7,8,6478,'Opening'),
12488 (7,8,6603,'Attack'),
12489 (7,8,7266,'Duel'),
12490 (7,8,7267,'Grovel'),
12491 (7,8,7340,'Language Gnomish'),
12492 (7,8,7355,'Stuck'),
12493 (7,8,8386,'Attacking'),
12494 (7,8,9078,'Cloth'),
12495 (7,8,9125,'Generic'),
12496 (7,8,20589,'Escape Artist'),
12497 (7,8,20591,'Expansive Mind'),
12498 (7,8,20592,'Arcane Resistance'),
12499 (7,8,20593,'Engineering Specialization'),
12500 (7,8,21651,'Opening'),
12501 (7,8,21652,'Closing'),
12502 (7,8,22027,'Remove Insignia'),
12503 (7,8,22810,'Opening - No Text'),
12504 (7,8,45927,'Summon Friend'),
12505 (7,8,61437,'Opening'),
12506 (7,9,81,'Dodge'),
12507 (7,9,203,'Unarmed'),
12508 (7,9,204,'Defense'),
12509 (7,9,522,'SPELLDEFENSE (DND)'),
12510 (7,9,668,'Language Common'),
12511 (7,9,686,'Shadow Bolt'),
12512 (7,9,687,'Demon Skin'),
12513 (7,9,1180,'Daggers'),
12514 (7,9,1843,'Disarm'),
12515 (7,9,2382,'Generic'),
12516 (7,9,2479,'Honorless Target'),
12517 (7,9,3050,'Detect'),
12518 (7,9,3365,'Opening'),
12519 (7,9,5009,'Wands'),
12520 (7,9,5019,'Shoot'),
12521 (7,9,6233,'Closing'),
12522 (7,9,6246,'Closing'),
12523 (7,9,6247,'Opening'),
12524 (7,9,6477,'Opening'),
12525 (7,9,6478,'Opening'),
12526 (7,9,6603,'Attack'),
12527 (7,9,7266,'Duel'),
12528 (7,9,7267,'Grovel'),
12529 (7,9,7340,'Language Gnomish'),
12530 (7,9,7355,'Stuck'),
12531 (7,9,8386,'Attacking'),
12532 (7,9,9078,'Cloth'),
12533 (7,9,9125,'Generic'),
12534 (7,9,20589,'Escape Artist'),
12535 (7,9,20591,'Expansive Mind'),
12536 (7,9,20592,'Arcane Resistance'),
12537 (7,9,20593,'Engineering Specialization'),
12538 (7,9,21651,'Opening'),
12539 (7,9,21652,'Closing'),
12540 (7,9,22027,'Remove Insignia'),
12541 (7,9,22810,'Opening - No Text'),
12542 (7,9,45927,'Summon Friend'),
12543 (7,9,58284,'Chaos Bolt Passive'),
12544 (7,9,61437,'Opening'),
12545 (8,1,78,'Heroic Strike'),
12546 (8,1,81,'Dodge'),
12547 (8,1,107,'Block'),
12548 (8,1,196,'One-Handed Axes'),
12549 (8,1,203,'Unarmed'),
12550 (8,1,204,'Defense'),
12551 (8,1,522,'SPELLDEFENSE (DND)'),
12552 (8,1,669,'Language Orcish'),
12553 (8,1,1180,'Daggers'),
12554 (8,1,1843,'Disarm'),
12555 (8,1,2382,'Generic'),
12556 (8,1,2457,'Battle Stance'),
12557 (8,1,2479,'Honorless Target'),
12558 (8,1,2567,'Thrown'),
12559 (8,1,2764,'Throw'),
12560 (8,1,3050,'Detect'),
12561 (8,1,3365,'Opening'),
12562 (8,1,5301,'Defensive State (DND)'),
12563 (8,1,6233,'Closing'),
12564 (8,1,6246,'Closing'),
12565 (8,1,6247,'Opening'),
12566 (8,1,6477,'Opening'),
12567 (8,1,6478,'Opening'),
12568 (8,1,6603,'Attack'),
12569 (8,1,7266,'Duel'),
12570 (8,1,7267,'Grovel'),
12571 (8,1,7341,'Language Troll'),
12572 (8,1,7355,'Stuck'),
12573 (8,1,8386,'Attacking'),
12574 (8,1,8737,'Mail'),
12575 (8,1,9077,'Leather'),
12576 (8,1,9078,'Cloth'),
12577 (8,1,9116,'Shield'),
12578 (8,1,9125,'Generic'),
12579 (8,1,20555,'Regeneration'),
12580 (8,1,20557,'Beast Slaying'),
12581 (8,1,20558,'Throwing Specialization'),
12582 (8,1,21651,'Opening'),
12583 (8,1,21652,'Closing'),
12584 (8,1,22027,'Remove Insignia'),
12585 (8,1,22810,'Opening - No Text'),
12586 (8,1,26290,'Bow Specialization'),
12587 (8,1,26297,'Berserking'),
12588 (8,1,32215,'Victorious State'),
12589 (8,1,45927,'Summon Friend'),
12590 (8,1,58943,'Da Voodoo Shuffle'),
12591 (8,1,61437,'Opening'),
12592 (8,3,75,'Auto Shot'),
12593 (8,3,81,'Dodge'),
12594 (8,3,196,'One-Handed Axes'),
12595 (8,3,203,'Unarmed'),
12596 (8,3,204,'Defense'),
12597 (8,3,264,'Bows'),
12598 (8,3,522,'SPELLDEFENSE (DND)'),
12599 (8,3,669,'Language Orcish'),
12600 (8,3,1843,'Disarm'),
12601 (8,3,2382,'Generic'),
12602 (8,3,2479,'Honorless Target'),
12603 (8,3,2973,'Raptor Strike'),
12604 (8,3,3050,'Detect'),
12605 (8,3,3365,'Opening'),
12606 (8,3,6233,'Closing'),
12607 (8,3,6246,'Closing'),
12608 (8,3,6247,'Opening'),
12609 (8,3,6477,'Opening'),
12610 (8,3,6478,'Opening'),
12611 (8,3,6603,'Attack'),
12612 (8,3,7266,'Duel'),
12613 (8,3,7267,'Grovel'),
12614 (8,3,7341,'Language Troll'),
12615 (8,3,7355,'Stuck'),
12616 (8,3,8386,'Attacking'),
12617 (8,3,9077,'Leather'),
12618 (8,3,9078,'Cloth'),
12619 (8,3,9125,'Generic'),
12620 (8,3,13358,'Defensive State (DND)'),
12621 (8,3,26297,'Berserking'),
12622 (8,3,20555,'Regeneration'),
12623 (8,3,20557,'Beast Slaying'),
12624 (8,3,20558,'Throwing Specialization'),
12625 (8,3,21651,'Opening'),
12626 (8,3,21652,'Closing'),
12627 (8,3,22027,'Remove Insignia'),
12628 (8,3,22810,'Opening - No Text'),
12629 (8,3,24949,'Defensive State 2 (DND)'),
12630 (8,3,26290,'Bow Specialization'),
12631 (8,3,34082,'Advantaged State (DND)'),
12632 (8,3,45927,'Summon Friend'),
12633 (8,3,58943,'Da Voodoo Shuffle'),
12634 (8,3,61437,'Opening'),
12635 (8,4,81,'Dodge'),
12636 (8,4,203,'Unarmed'),
12637 (8,4,204,'Defense'),
12638 (8,4,522,'SPELLDEFENSE (DND)'),
12639 (8,4,669,'Language Orcish'),
12640 (8,4,1180,'Daggers'),
12641 (8,4,1752,'Sinister Strike'),
12642 (8,4,1843,'Disarm'),
12643 (8,4,2098,'Eviscerate'),
12644 (8,4,2382,'Generic'),
12645 (8,4,2479,'Honorless Target'),
12646 (8,4,2567,'Thrown'),
12647 (8,4,2764,'Throw'),
12648 (8,4,3050,'Detect'),
12649 (8,4,3365,'Opening'),
12650 (8,4,6233,'Closing'),
12651 (8,4,6246,'Closing'),
12652 (8,4,6247,'Opening'),
12653 (8,4,6477,'Opening'),
12654 (8,4,6478,'Opening'),
12655 (8,4,6603,'Attack'),
12656 (8,4,7266,'Duel'),
12657 (8,4,7267,'Grovel'),
12658 (8,4,7341,'Language Troll'),
12659 (8,4,7355,'Stuck'),
12660 (8,4,8386,'Attacking'),
12661 (8,4,9077,'Leather'),
12662 (8,4,9078,'Cloth'),
12663 (8,4,9125,'Generic'),
12664 (8,4,16092,'Defensive State (DND)'),
12665 (8,4,20555,'Regeneration'),
12666 (8,4,20557,'Beast Slaying'),
12667 (8,4,20558,'Throwing Specialization'),
12668 (8,4,21184,'Rogue Passive (DND)'),
12669 (8,4,21651,'Opening'),
12670 (8,4,21652,'Closing'),
12671 (8,4,22027,'Remove Insignia'),
12672 (8,4,22810,'Opening - No Text'),
12673 (8,4,26290,'Bow Specialization'),
12674 (8,4,26297,'Berserking'),
12675 (8,4,45927,'Summon Friend'),
12676 (8,4,58943,'Da Voodoo Shuffle'),
12677 (8,4,61437,'Opening'),
12678 (8,5,81,'Dodge'),
12679 (8,5,198,'One-Handed Maces'),
12680 (8,5,203,'Unarmed'),
12681 (8,5,204,'Defense'),
12682 (8,5,522,'SPELLDEFENSE (DND)'),
12683 (8,5,585,'Smite'),
12684 (8,5,669,'Language Orcish'),
12685 (8,5,1843,'Disarm'),
12686 (8,5,2050,'Lesser Heal'),
12687 (8,5,2382,'Generic'),
12688 (8,5,2479,'Honorless Target'),
12689 (8,5,3050,'Detect'),
12690 (8,5,3365,'Opening'),
12691 (8,5,5009,'Wands'),
12692 (8,5,5019,'Shoot'),
12693 (8,5,6233,'Closing'),
12694 (8,5,6246,'Closing'),
12695 (8,5,6247,'Opening'),
12696 (8,5,6477,'Opening'),
12697 (8,5,6478,'Opening'),
12698 (8,5,6603,'Attack'),
12699 (8,5,7266,'Duel'),
12700 (8,5,7267,'Grovel'),
12701 (8,5,7341,'Language Troll'),
12702 (8,5,7355,'Stuck'),
12703 (8,5,8386,'Attacking'),
12704 (8,5,9078,'Cloth'),
12705 (8,5,9125,'Generic'),
12706 (8,5,26297,'Berserking'),
12707 (8,5,20555,'Regeneration'),
12708 (8,5,20557,'Beast Slaying'),
12709 (8,5,20558,'Throwing Specialization'),
12710 (8,5,21651,'Opening'),
12711 (8,5,21652,'Closing'),
12712 (8,5,22027,'Remove Insignia'),
12713 (8,5,22810,'Opening - No Text'),
12714 (8,5,26290,'Bow Specialization'),
12715 (8,5,45927,'Summon Friend'),
12716 (8,5,58943,'Da Voodoo Shuffle'),
12717 (8,5,61437,'Opening'),
12718 (8,6,81,'Dodge'),
12719 (8,6,196,'One-Handed Axes'),
12720 (8,6,197,'Two-Handed Axes'),
12721 (8,6,200,'Polearms'),
12722 (8,6,201,'One-Handed Swords'),
12723 (8,6,202,'Two-Handed Swords'),
12724 (8,6,203,'Unarmed'),
12725 (8,6,204,'Defense'),
12726 (8,6,522,'SPELLDEFENSE (DND)'),
12727 (8,6,669,'Language Orcish'),
12728 (8,6,674,'Dual Wield'),
12729 (8,6,750,'Plate Mail'),
12730 (8,6,1843,'Disarm'),
12731 (8,6,2382,'Generic'),
12732 (8,6,2479,'Honorless Target'),
12733 (8,6,3050,'Detect'),
12734 (8,6,3127,'Parry'),
12735 (8,6,3275,'Linen Bandage'),
12736 (8,6,3276,'Heavy Linen Bandage'),
12737 (8,6,3277,'Wool Bandage'),
12738 (8,6,3278,'Heavy Wool Bandage'),
12739 (8,6,3365,'Opening'),
12740 (8,6,6233,'Closing'),
12741 (8,6,6246,'Closing'),
12742 (8,6,6247,'Opening'),
12743 (8,6,6477,'Opening'),
12744 (8,6,6478,'Opening'),
12745 (8,6,6603,'Attack'),
12746 (8,6,7266,'Duel'),
12747 (8,6,7267,'Grovel'),
12748 (8,6,7341,'Language Troll'),
12749 (8,6,7355,'Stuck'),
12750 (8,6,7928,'Silk Bandage'),
12751 (8,6,7929,'Heavy Silk Bandage'),
12752 (8,6,7934,'Anti-Venom'),
12753 (8,6,8386,'Attacking'),
12754 (8,6,8737,'Mail'),
12755 (8,6,9077,'Leather'),
12756 (8,6,9078,'Cloth'),
12757 (8,6,9125,'Generic'),
12758 (8,6,10840,'Mageweave Bandage'),
12759 (8,6,10841,'Heavy Mageweave Bandage'),
12760 (8,6,10846,'First Aid'),
12761 (8,6,18629,'Runecloth Bandage'),
12762 (8,6,18630,'Heavy Runecloth Bandage'),
12763 (8,6,20555,'Regeneration'),
12764 (8,6,20557,'Beast Slaying'),
12765 (8,6,20558,'Throwing Specialization'),
12766 (8,6,21651,'Opening'),
12767 (8,6,21652,'Closing'),
12768 (8,6,22027,'Remove Insignia'),
12769 (8,6,22810,'Opening - No Text'),
12770 (8,6,26290,'Bow Specialization'),
12771 (8,6,33391,'Journeyman Riding'),
12772 (8,6,45462,'Plague Strike'),
12773 (8,6,45477,'Icy Touch'),
12774 (8,6,45902,'Blood Strike'),
12775 (8,6,45903,'Offensive State (DND)'),
12776 (8,6,45927,'Summon Friend'),
12777 (8,6,47541,'Death Coil'),
12778 (8,6,48266,'Blood Presence'),
12779 (8,6,49410,'Forceful Deflection'),
12780 (8,6,49576,'Death Grip'),
12781 (8,6,26297,'Berserking'),
12782 (8,6,52665,'Sigil'),
12783 (8,6,58943,'Da Voodoo Shuffle'),
12784 (8,6,59879,'Blood Plague'),
12785 (8,6,59921,'Frost Fever'),
12786 (8,6,61437,'Opening'),
12787 (8,6,61455,'Runic Focus'),
12788 (8,7,81,'Dodge'),
12789 (8,7,107,'Block'),
12790 (8,7,198,'One-Handed Maces'),
12791 (8,7,203,'Unarmed'),
12792 (8,7,204,'Defense'),
12793 (8,7,227,'Staves'),
12794 (8,7,331,'Healing Wave'),
12795 (8,7,403,'Lightning Bolt'),
12796 (8,7,522,'SPELLDEFENSE (DND)'),
12797 (8,7,669,'Language Orcish'),
12798 (8,7,1843,'Disarm'),
12799 (8,7,2382,'Generic'),
12800 (8,7,2479,'Honorless Target'),
12801 (8,7,3050,'Detect'),
12802 (8,7,3365,'Opening'),
12803 (8,7,6233,'Closing'),
12804 (8,7,6246,'Closing'),
12805 (8,7,6247,'Opening'),
12806 (8,7,6477,'Opening'),
12807 (8,7,6478,'Opening'),
12808 (8,7,6603,'Attack'),
12809 (8,7,7266,'Duel'),
12810 (8,7,7267,'Grovel'),
12811 (8,7,7341,'Language Troll'),
12812 (8,7,7355,'Stuck'),
12813 (8,7,8386,'Attacking'),
12814 (8,7,9077,'Leather'),
12815 (8,7,9078,'Cloth'),
12816 (8,7,9116,'Shield'),
12817 (8,7,9125,'Generic'),
12818 (8,7,26297,'Berserking'),
12819 (8,7,20555,'Regeneration'),
12820 (8,7,20557,'Beast Slaying'),
12821 (8,7,20558,'Throwing Specialization'),
12822 (8,7,21651,'Opening'),
12823 (8,7,21652,'Closing'),
12824 (8,7,22027,'Remove Insignia'),
12825 (8,7,22810,'Opening - No Text'),
12826 (8,7,26290,'Bow Specialization'),
12827 (8,7,27763,'Totem'),
12828 (8,7,45927,'Summon Friend'),
12829 (8,7,58943,'Da Voodoo Shuffle'),
12830 (8,7,61437,'Opening'),
12831 (8,8,81,'Dodge'),
12832 (8,8,133,'Fireball'),
12833 (8,8,168,'Frost Armor'),
12834 (8,8,203,'Unarmed'),
12835 (8,8,204,'Defense'),
12836 (8,8,227,'Staves'),
12837 (8,8,522,'SPELLDEFENSE (DND)'),
12838 (8,8,669,'Language Orcish'),
12839 (8,8,1843,'Disarm'),
12840 (8,8,2382,'Generic'),
12841 (8,8,2479,'Honorless Target'),
12842 (8,8,3050,'Detect'),
12843 (8,8,3365,'Opening'),
12844 (8,8,5009,'Wands'),
12845 (8,8,5019,'Shoot'),
12846 (8,8,6233,'Closing'),
12847 (8,8,6246,'Closing'),
12848 (8,8,6247,'Opening'),
12849 (8,8,6477,'Opening'),
12850 (8,8,6478,'Opening'),
12851 (8,8,6603,'Attack'),
12852 (8,8,7266,'Duel'),
12853 (8,8,7267,'Grovel'),
12854 (8,8,7341,'Language Troll'),
12855 (8,8,7355,'Stuck'),
12856 (8,8,8386,'Attacking'),
12857 (8,8,9078,'Cloth'),
12858 (8,8,9125,'Generic'),
12859 (8,8,26297,'Berserking'),
12860 (8,8,20555,'Regeneration'),
12861 (8,8,20557,'Beast Slaying'),
12862 (8,8,20558,'Throwing Specialization'),
12863 (8,8,21651,'Opening'),
12864 (8,8,21652,'Closing'),
12865 (8,8,22027,'Remove Insignia'),
12866 (8,8,22810,'Opening - No Text'),
12867 (8,8,26290,'Bow Specialization'),
12868 (8,8,45927,'Summon Friend'),
12869 (8,8,58943,'Da Voodoo Shuffle'),
12870 (8,8,61437,'Opening'),
12871 (10,2,81,'Dodge'),
12872 (10,2,107,'Block'),
12873 (10,2,201,'One-Handed Swords'),
12874 (10,2,202,'Two-Handed Swords'),
12875 (10,2,203,'Unarmed'),
12876 (10,2,204,'Defense'),
12877 (10,2,522,'SPELLDEFENSE (DND)'),
12878 (10,2,635,'Holy Light'),
12879 (10,2,669,'Language Orcish'),
12880 (10,2,813,'Language Thalassian'),
12881 (10,2,822,'Magic Resistance'),
12882 (10,2,2382,'Generic'),
12883 (10,2,2479,'Honorless Target'),
12884 (10,2,3050,'Detect'),
12885 (10,2,3365,'Opening'),
12886 (10,2,6233,'Closing'),
12887 (10,2,6246,'Closing'),
12888 (10,2,6247,'Opening'),
12889 (10,2,6477,'Opening'),
12890 (10,2,6478,'Opening'),
12891 (10,2,6603,'Attack'),
12892 (10,2,7266,'Duel'),
12893 (10,2,7267,'Grovel'),
12894 (10,2,7355,'Stuck'),
12895 (10,2,8386,'Attacking'),
12896 (10,2,8737,'Mail'),
12897 (10,2,9077,'Leather'),
12898 (10,2,9078,'Cloth'),
12899 (10,2,9116,'Shield'),
12900 (10,2,9125,'Generic'),
12901 (10,2,21084,'Seal of Righteousness'),
12902 (10,2,21651,'Opening'),
12903 (10,2,21652,'Closing'),
12904 (10,2,22027,'Remove Insignia'),
12905 (10,2,22810,'Opening - No Text'),
12906 (10,2,27762,'Libram'),
12907 (10,2,28730,'Arcane Torrent'),
12908 (10,2,28877,'Arcane Affinity'),
12909 (10,3,75,'Auto Shot'),
12910 (10,3,81,'Dodge'),
12911 (10,3,203,'Unarmed'),
12912 (10,3,204,'Defense'),
12913 (10,3,264,'Bows'),
12914 (10,3,522,'SPELLDEFENSE (DND)'),
12915 (10,3,669,'Language Orcish'),
12916 (10,3,813,'Language Thalassian'),
12917 (10,3,822,'Magic Resistance'),
12918 (10,3,1180,'Daggers'),
12919 (10,3,2382,'Generic'),
12920 (10,3,2479,'Honorless Target'),
12921 (10,3,2973,'Raptor Strike'),
12922 (10,3,3050,'Detect'),
12923 (10,3,3365,'Opening'),
12924 (10,3,6233,'Closing'),
12925 (10,3,6246,'Closing'),
12926 (10,3,6247,'Opening'),
12927 (10,3,6477,'Opening'),
12928 (10,3,6478,'Opening'),
12929 (10,3,6603,'Attack'),
12930 (10,3,7266,'Duel'),
12931 (10,3,7267,'Grovel'),
12932 (10,3,7355,'Stuck'),
12933 (10,3,8386,'Attacking'),
12934 (10,3,9077,'Leather'),
12935 (10,3,9078,'Cloth'),
12936 (10,3,9125,'Generic'),
12937 (10,3,13358,'Defensive State (DND)'),
12938 (10,3,21651,'Opening'),
12939 (10,3,21652,'Closing'),
12940 (10,3,22027,'Remove Insignia'),
12941 (10,3,22810,'Opening - No Text'),
12942 (10,3,24949,'Defensive State 2 (DND)'),
12943 (10,3,28730,'Arcane Torrent'),
12944 (10,3,28877,'Arcane Affinity'),
12945 (10,3,34082,'Advantaged State (DND)'),
12946 (10,4,81,'Dodge'),
12947 (10,4,203,'Unarmed'),
12948 (10,4,204,'Defense'),
12949 (10,4,522,'SPELLDEFENSE (DND)'),
12950 (10,4,669,'Language Orcish'),
12951 (10,4,813,'Language Thalassian'),
12952 (10,4,822,'Magic Resistance'),
12953 (10,4,1180,'Daggers'),
12954 (10,4,1752,'Sinister Strike'),
12955 (10,4,2098,'Eviscerate'),
12956 (10,4,2382,'Generic'),
12957 (10,4,2479,'Honorless Target'),
12958 (10,4,2567,'Thrown'),
12959 (10,4,2764,'Throw'),
12960 (10,4,3050,'Detect'),
12961 (10,4,3365,'Opening'),
12962 (10,4,6233,'Closing'),
12963 (10,4,6246,'Closing'),
12964 (10,4,6247,'Opening'),
12965 (10,4,6477,'Opening'),
12966 (10,4,6478,'Opening'),
12967 (10,4,6603,'Attack'),
12968 (10,4,7266,'Duel'),
12969 (10,4,7267,'Grovel'),
12970 (10,4,7355,'Stuck'),
12971 (10,4,8386,'Attacking'),
12972 (10,4,9077,'Leather'),
12973 (10,4,9078,'Cloth'),
12974 (10,4,9125,'Generic'),
12975 (10,4,16092,'Defensive State (DND)'),
12976 (10,4,21184,'Rogue Passive (DND)'),
12977 (10,4,21651,'Opening'),
12978 (10,4,21652,'Closing'),
12979 (10,4,22027,'Remove Insignia'),
12980 (10,4,22810,'Opening - No Text'),
12981 (10,4,25046,'Arcane Torrent'),
12982 (10,4,28877,'Arcane Affinity'),
12983 (10,5,81,'Dodge'),
12984 (10,5,198,'One-Handed Maces'),
12985 (10,5,203,'Unarmed'),
12986 (10,5,204,'Defense'),
12987 (10,5,522,'SPELLDEFENSE (DND)'),
12988 (10,5,585,'Smite'),
12989 (10,5,669,'Language Orcish'),
12990 (10,5,813,'Language Thalassian'),
12991 (10,5,822,'Magic Resistance'),
12992 (10,5,2050,'Lesser Heal'),
12993 (10,5,2382,'Generic'),
12994 (10,5,2479,'Honorless Target'),
12995 (10,5,3050,'Detect'),
12996 (10,5,3365,'Opening'),
12997 (10,5,5009,'Wands'),
12998 (10,5,5019,'Shoot'),
12999 (10,5,6233,'Closing'),
13000 (10,5,6246,'Closing'),
13001 (10,5,6247,'Opening'),
13002 (10,5,6477,'Opening'),
13003 (10,5,6478,'Opening'),
13004 (10,5,6603,'Attack'),
13005 (10,5,7266,'Duel'),
13006 (10,5,7267,'Grovel'),
13007 (10,5,7355,'Stuck'),
13008 (10,5,8386,'Attacking'),
13009 (10,5,9078,'Cloth'),
13010 (10,5,9125,'Generic'),
13011 (10,5,21651,'Opening'),
13012 (10,5,21652,'Closing'),
13013 (10,5,22027,'Remove Insignia'),
13014 (10,5,22810,'Opening - No Text'),
13015 (10,5,28730,'Arcane Torrent'),
13016 (10,5,28877,'Arcane Affinity'),
13017 (10,6,81,'Dodge'),
13018 (10,6,196,'One-Handed Axes'),
13019 (10,6,197,'Two-Handed Axes'),
13020 (10,6,200,'Polearms'),
13021 (10,6,201,'One-Handed Swords'),
13022 (10,6,202,'Two-Handed Swords'),
13023 (10,6,203,'Unarmed'),
13024 (10,6,204,'Defense'),
13025 (10,6,522,'SPELLDEFENSE (DND)'),
13026 (10,6,669,'Language Orcish'),
13027 (10,6,674,'Dual Wield'),
13028 (10,6,750,'Plate Mail'),
13029 (10,6,813,'Language Thalassian'),
13030 (10,6,822,'Magic Resistance'),
13031 (10,6,1843,'Disarm'),
13032 (10,6,2382,'Generic'),
13033 (10,6,2479,'Honorless Target'),
13034 (10,6,3050,'Detect'),
13035 (10,6,3127,'Parry'),
13036 (10,6,3275,'Linen Bandage'),
13037 (10,6,3276,'Heavy Linen Bandage'),
13038 (10,6,3277,'Wool Bandage'),
13039 (10,6,3278,'Heavy Wool Bandage'),
13040 (10,6,3365,'Opening'),
13041 (10,6,6233,'Closing'),
13042 (10,6,6246,'Closing'),
13043 (10,6,6247,'Opening'),
13044 (10,6,6477,'Opening'),
13045 (10,6,6478,'Opening'),
13046 (10,6,6603,'Attack'),
13047 (10,6,7266,'Duel'),
13048 (10,6,7267,'Grovel'),
13049 (10,6,7355,'Stuck'),
13050 (10,6,7928,'Silk Bandage'),
13051 (10,6,7929,'Heavy Silk Bandage'),
13052 (10,6,7934,'Anti-Venom'),
13053 (10,6,8386,'Attacking'),
13054 (10,6,8737,'Mail'),
13055 (10,6,9077,'Leather'),
13056 (10,6,9078,'Cloth'),
13057 (10,6,9125,'Generic'),
13058 (10,6,10840,'Mageweave Bandage'),
13059 (10,6,10841,'Heavy Mageweave Bandage'),
13060 (10,6,10846,'First Aid'),
13061 (10,6,18629,'Runecloth Bandage'),
13062 (10,6,18630,'Heavy Runecloth Bandage'),
13063 (10,6,21651,'Opening'),
13064 (10,6,21652,'Closing'),
13065 (10,6,22027,'Remove Insignia'),
13066 (10,6,22810,'Opening - No Text'),
13067 (10,6,28877,'Arcane Affinity'),
13068 (10,6,33391,'Journeyman Riding'),
13069 (10,6,45462,'Plague Strike'),
13070 (10,6,45477,'Icy Touch'),
13071 (10,6,45902,'Blood Strike'),
13072 (10,6,45903,'Offensive State (DND)'),
13073 (10,6,45927,'Summon Friend'),
13074 (10,6,47541,'Death Coil'),
13075 (10,6,48266,'Blood Presence'),
13076 (10,6,49410,'Forceful Deflection'),
13077 (10,6,49576,'Death Grip'),
13078 (10,6,50613,'Arcane Torrent'),
13079 (10,6,52665,'Sigil'),
13080 (10,6,59879,'Blood Plague'),
13081 (10,6,59921,'Frost Fever'),
13082 (10,6,61437,'Opening'),
13083 (10,6,61455,'Runic Focus'),
13084 (10,8,81,'Dodge'),
13085 (10,8,133,'Fireball'),
13086 (10,8,168,'Frost Armor'),
13087 (10,8,203,'Unarmed'),
13088 (10,8,204,'Defense'),
13089 (10,8,227,'Staves'),
13090 (10,8,522,'SPELLDEFENSE (DND)'),
13091 (10,8,669,'Language Orcish'),
13092 (10,8,813,'Language Thalassian'),
13093 (10,8,822,'Magic Resistance'),
13094 (10,8,2382,'Generic'),
13095 (10,8,2479,'Honorless Target'),
13096 (10,8,3050,'Detect'),
13097 (10,8,3365,'Opening'),
13098 (10,8,5009,'Wands'),
13099 (10,8,5019,'Shoot'),
13100 (10,8,6233,'Closing'),
13101 (10,8,6246,'Closing'),
13102 (10,8,6247,'Opening'),
13103 (10,8,6477,'Opening'),
13104 (10,8,6478,'Opening'),
13105 (10,8,6603,'Attack'),
13106 (10,8,7266,'Duel'),
13107 (10,8,7267,'Grovel'),
13108 (10,8,7355,'Stuck'),
13109 (10,8,8386,'Attacking'),
13110 (10,8,9078,'Cloth'),
13111 (10,8,9125,'Generic'),
13112 (10,8,21651,'Opening'),
13113 (10,8,21652,'Closing'),
13114 (10,8,22027,'Remove Insignia'),
13115 (10,8,22810,'Opening - No Text'),
13116 (10,8,28730,'Arcane Torrent'),
13117 (10,8,28877,'Arcane Affinity'),
13118 (10,9,81,'Dodge'),
13119 (10,9,203,'Unarmed'),
13120 (10,9,204,'Defense'),
13121 (10,9,522,'SPELLDEFENSE (DND)'),
13122 (10,9,669,'Language Orcish'),
13123 (10,9,686,'Shadow Bolt'),
13124 (10,9,687,'Demon Skin'),
13125 (10,9,813,'Language Thalassian'),
13126 (10,9,822,'Magic Resistance'),
13127 (10,9,1180,'Daggers'),
13128 (10,9,2382,'Generic'),
13129 (10,9,2479,'Honorless Target'),
13130 (10,9,3050,'Detect'),
13131 (10,9,3365,'Opening'),
13132 (10,9,5009,'Wands'),
13133 (10,9,5019,'Shoot'),
13134 (10,9,6233,'Closing'),
13135 (10,9,6246,'Closing'),
13136 (10,9,6247,'Opening'),
13137 (10,9,6477,'Opening'),
13138 (10,9,6478,'Opening'),
13139 (10,9,6603,'Attack'),
13140 (10,9,7266,'Duel'),
13141 (10,9,7267,'Grovel'),
13142 (10,9,7355,'Stuck'),
13143 (10,9,8386,'Attacking'),
13144 (10,9,9078,'Cloth'),
13145 (10,9,9125,'Generic'),
13146 (10,9,21651,'Opening'),
13147 (10,9,21652,'Closing'),
13148 (10,9,22027,'Remove Insignia'),
13149 (10,9,22810,'Opening - No Text'),
13150 (10,9,28730,'Arcane Torrent'),
13151 (10,9,28877,'Arcane Affinity'),
13152 (10,9,58284,'Chaos Bolt Passive'),
13153 (11,1,78,'Heroic Strike'),
13154 (11,1,81,'Dodge'),
13155 (11,1,107,'Block'),
13156 (11,1,198,'One-Handed Maces'),
13157 (11,1,201,'One-Handed Swords'),
13158 (11,1,202,'Two-Handed Swords'),
13159 (11,1,203,'Unarmed'),
13160 (11,1,204,'Defense'),
13161 (11,1,522,'SPELLDEFENSE (DND)'),
13162 (11,1,668,'Language Common'),
13163 (11,1,1843,'Disarm'),
13164 (11,1,2382,'Generic'),
13165 (11,1,2457,'Battle Stance'),
13166 (11,1,2479,'Honorless Target'),
13167 (11,1,3050,'Detect'),
13168 (11,1,3365,'Opening'),
13169 (11,1,5301,'Defensive State (DND)'),
13170 (11,1,6233,'Closing'),
13171 (11,1,6246,'Closing'),
13172 (11,1,6247,'Opening'),
13173 (11,1,6477,'Opening'),
13174 (11,1,6478,'Opening'),
13175 (11,1,6562,'Heroic Presence'),
13176 (11,1,6603,'Attack'),
13177 (11,1,7266,'Duel'),
13178 (11,1,7267,'Grovel'),
13179 (11,1,7355,'Stuck'),
13180 (11,1,8386,'Attacking'),
13181 (11,1,8737,'Mail'),
13182 (11,1,9077,'Leather'),
13183 (11,1,9078,'Cloth'),
13184 (11,1,9116,'Shield'),
13185 (11,1,9125,'Generic'),
13186 (11,1,21651,'Opening'),
13187 (11,1,21652,'Closing'),
13188 (11,1,22027,'Remove Insignia'),
13189 (11,1,22810,'Opening - No Text'),
13190 (11,1,28875,'Gemcutting'),
13191 (11,1,28880,'Gift of the Naaru'),
13192 (11,1,29932,'Language Draenei'),
13193 (11,1,32215,'Victorious State'),
13194 (11,1,45927,'Summon Friend'),
13195 (11,1,59221,'Shadow Resistance'),
13196 (11,1,61437,'Opening'),
13197 (11,2,81,'Dodge'),
13198 (11,2,107,'Block'),
13199 (11,2,198,'One-Handed Maces'),
13200 (11,2,199,'Two-Handed Maces'),
13201 (11,2,203,'Unarmed'),
13202 (11,2,204,'Defense'),
13203 (11,2,522,'SPELLDEFENSE (DND)'),
13204 (11,2,635,'Holy Light'),
13205 (11,2,668,'Language Common'),
13206 (11,2,1843,'Disarm'),
13207 (11,2,2382,'Generic'),
13208 (11,2,2479,'Honorless Target'),
13209 (11,2,3050,'Detect'),
13210 (11,2,3365,'Opening'),
13211 (11,2,6233,'Closing'),
13212 (11,2,6246,'Closing'),
13213 (11,2,6247,'Opening'),
13214 (11,2,6477,'Opening'),
13215 (11,2,6478,'Opening'),
13216 (11,2,6562,'Heroic Presence'),
13217 (11,2,6603,'Attack'),
13218 (11,2,7266,'Duel'),
13219 (11,2,7267,'Grovel'),
13220 (11,2,7355,'Stuck'),
13221 (11,2,8386,'Attacking'),
13222 (11,2,8737,'Mail'),
13223 (11,2,9077,'Leather'),
13224 (11,2,9078,'Cloth'),
13225 (11,2,9116,'Shield'),
13226 (11,2,9125,'Generic'),
13227 (11,2,21084,'Seal of Righteousness'),
13228 (11,2,21651,'Opening'),
13229 (11,2,21652,'Closing'),
13230 (11,2,22027,'Remove Insignia'),
13231 (11,2,22810,'Opening - No Text'),
13232 (11,2,27762,'Libram'),
13233 (11,2,28875,'Gemcutting'),
13234 (11,2,29932,'Language Draenei'),
13235 (11,2,45927,'Summon Friend'),
13236 (11,2,59221,'Shadow Resistance'),
13237 (11,2,59542,'Gift of the Naaru'),
13238 (11,2,61437,'Opening'),
13239 (11,3,75,'Auto Shot'),
13240 (11,3,81,'Dodge'),
13241 (11,3,201,'One-Handed Swords'),
13242 (11,3,203,'Unarmed'),
13243 (11,3,204,'Defense'),
13244 (11,3,522,'SPELLDEFENSE (DND)'),
13245 (11,3,668,'Language Common'),
13246 (11,3,1843,'Disarm'),
13247 (11,3,2382,'Generic'),
13248 (11,3,2479,'Honorless Target'),
13249 (11,3,2973,'Raptor Strike'),
13250 (11,3,3050,'Detect'),
13251 (11,3,3365,'Opening'),
13252 (11,3,5011,'Crossbows'),
13253 (11,3,6233,'Closing'),
13254 (11,3,6246,'Closing'),
13255 (11,3,6247,'Opening'),
13256 (11,3,6477,'Opening'),
13257 (11,3,6478,'Opening'),
13258 (11,3,6562,'Heroic Presence'),
13259 (11,3,6603,'Attack'),
13260 (11,3,7266,'Duel'),
13261 (11,3,7267,'Grovel'),
13262 (11,3,7355,'Stuck'),
13263 (11,3,8386,'Attacking'),
13264 (11,3,9077,'Leather'),
13265 (11,3,9078,'Cloth'),
13266 (11,3,9125,'Generic'),
13267 (11,3,13358,'Defensive State (DND)'),
13268 (11,3,21651,'Opening'),
13269 (11,3,21652,'Closing'),
13270 (11,3,22027,'Remove Insignia'),
13271 (11,3,22810,'Opening - No Text'),
13272 (11,3,24949,'Defensive State 2 (DND)'),
13273 (11,3,28875,'Gemcutting'),
13274 (11,3,29932,'Language Draenei'),
13275 (11,3,34082,'Advantaged State (DND)'),
13276 (11,3,45927,'Summon Friend'),
13277 (11,3,59221,'Shadow Resistance'),
13278 (11,3,59543,'Gift of the Naaru'),
13279 (11,3,61437,'Opening'),
13280 (11,5,81,'Dodge'),
13281 (11,5,198,'One-Handed Maces'),
13282 (11,5,203,'Unarmed'),
13283 (11,5,204,'Defense'),
13284 (11,5,522,'SPELLDEFENSE (DND)'),
13285 (11,5,585,'Smite'),
13286 (11,5,668,'Language Common'),
13287 (11,5,1843,'Disarm'),
13288 (11,5,2050,'Lesser Heal'),
13289 (11,5,2382,'Generic'),
13290 (11,5,2479,'Honorless Target'),
13291 (11,5,3050,'Detect'),
13292 (11,5,3365,'Opening'),
13293 (11,5,5009,'Wands'),
13294 (11,5,5019,'Shoot'),
13295 (11,5,6233,'Closing'),
13296 (11,5,6246,'Closing'),
13297 (11,5,6247,'Opening'),
13298 (11,5,6477,'Opening'),
13299 (11,5,6478,'Opening'),
13300 (11,5,6603,'Attack'),
13301 (11,5,7266,'Duel'),
13302 (11,5,7267,'Grovel'),
13303 (11,5,7355,'Stuck'),
13304 (11,5,8386,'Attacking'),
13305 (11,5,9078,'Cloth'),
13306 (11,5,9125,'Generic'),
13307 (11,5,21651,'Opening'),
13308 (11,5,21652,'Closing'),
13309 (11,5,22027,'Remove Insignia'),
13310 (11,5,22810,'Opening - No Text'),
13311 (11,5,28875,'Gemcutting'),
13312 (11,5,28878,'Inspiring Presence'),
13313 (11,5,29932,'Language Draenei'),
13314 (11,5,45927,'Summon Friend'),
13315 (11,5,59221,'Shadow Resistance'),
13316 (11,5,59544,'Gift of the Naaru'),
13317 (11,5,61437,'Opening'),
13318 (11,6,81,'Dodge'),
13319 (11,6,196,'One-Handed Axes'),
13320 (11,6,197,'Two-Handed Axes'),
13321 (11,6,200,'Polearms'),
13322 (11,6,201,'One-Handed Swords'),
13323 (11,6,202,'Two-Handed Swords'),
13324 (11,6,203,'Unarmed'),
13325 (11,6,204,'Defense'),
13326 (11,6,522,'SPELLDEFENSE (DND)'),
13327 (11,6,668,'Language Common'),
13328 (11,6,674,'Dual Wield'),
13329 (11,6,750,'Plate Mail'),
13330 (11,6,1843,'Disarm'),
13331 (11,6,2382,'Generic'),
13332 (11,6,2479,'Honorless Target'),
13333 (11,6,3050,'Detect'),
13334 (11,6,3127,'Parry'),
13335 (11,6,3275,'Linen Bandage'),
13336 (11,6,3276,'Heavy Linen Bandage'),
13337 (11,6,3277,'Wool Bandage'),
13338 (11,6,3278,'Heavy Wool Bandage'),
13339 (11,6,3365,'Opening'),
13340 (11,6,6233,'Closing'),
13341 (11,6,6246,'Closing'),
13342 (11,6,6247,'Opening'),
13343 (11,6,6477,'Opening'),
13344 (11,6,6478,'Opening'),
13345 (11,6,6562,'Heroic Presence'),
13346 (11,6,6603,'Attack'),
13347 (11,6,7266,'Duel'),
13348 (11,6,7267,'Grovel'),
13349 (11,6,7355,'Stuck'),
13350 (11,6,7928,'Silk Bandage'),
13351 (11,6,7929,'Heavy Silk Bandage'),
13352 (11,6,7934,'Anti-Venom'),
13353 (11,6,8386,'Attacking'),
13354 (11,6,8737,'Mail'),
13355 (11,6,9077,'Leather'),
13356 (11,6,9078,'Cloth'),
13357 (11,6,9125,'Generic'),
13358 (11,6,10840,'Mageweave Bandage'),
13359 (11,6,10841,'Heavy Mageweave Bandage'),
13360 (11,6,10846,'First Aid'),
13361 (11,6,18629,'Runecloth Bandage'),
13362 (11,6,18630,'Heavy Runecloth Bandage'),
13363 (11,6,21651,'Opening'),
13364 (11,6,21652,'Closing'),
13365 (11,6,22027,'Remove Insignia'),
13366 (11,6,22810,'Opening - No Text'),
13367 (11,6,28875,'Gemcutting'),
13368 (11,6,29932,'Language Draenei'),
13369 (11,6,33391,'Journeyman Riding'),
13370 (11,6,45462,'Plague Strike'),
13371 (11,6,45477,'Icy Touch'),
13372 (11,6,45902,'Blood Strike'),
13373 (11,6,45903,'Offensive State (DND)'),
13374 (11,6,45927,'Summon Friend'),
13375 (11,6,47541,'Death Coil'),
13376 (11,6,48266,'Blood Presence'),
13377 (11,6,49410,'Forceful Deflection'),
13378 (11,6,49576,'Death Grip'),
13379 (11,6,52665,'Sigil'),
13380 (11,6,59221,'Shadow Resistance'),
13381 (11,6,59539,'Shadow Resistance'),
13382 (11,6,59545,'Gift of the Naaru'),
13383 (11,6,59879,'Blood Plague'),
13384 (11,6,59921,'Frost Fever'),
13385 (11,6,61437,'Opening'),
13386 (11,6,61455,'Runic Focus'),
13387 (11,7,81,'Dodge'),
13388 (11,7,107,'Block'),
13389 (11,7,198,'One-Handed Maces'),
13390 (11,7,203,'Unarmed'),
13391 (11,7,204,'Defense'),
13392 (11,7,227,'Staves'),
13393 (11,7,331,'Healing Wave'),
13394 (11,7,403,'Lightning Bolt'),
13395 (11,7,522,'SPELLDEFENSE (DND)'),
13396 (11,7,668,'Language Common'),
13397 (11,7,1843,'Disarm'),
13398 (11,7,2382,'Generic'),
13399 (11,7,2479,'Honorless Target'),
13400 (11,7,3050,'Detect'),
13401 (11,7,3365,'Opening'),
13402 (11,7,6233,'Closing'),
13403 (11,7,6246,'Closing'),
13404 (11,7,6247,'Opening'),
13405 (11,7,6477,'Opening'),
13406 (11,7,6478,'Opening'),
13407 (11,7,6603,'Attack'),
13408 (11,7,7266,'Duel'),
13409 (11,7,7267,'Grovel'),
13410 (11,7,7355,'Stuck'),
13411 (11,7,8386,'Attacking'),
13412 (11,7,9077,'Leather'),
13413 (11,7,9078,'Cloth'),
13414 (11,7,9116,'Shield'),
13415 (11,7,9125,'Generic'),
13416 (11,7,21651,'Opening'),
13417 (11,7,21652,'Closing'),
13418 (11,7,22027,'Remove Insignia'),
13419 (11,7,22810,'Opening - No Text'),
13420 (11,7,27763,'Totem'),
13421 (11,7,28875,'Gemcutting'),
13422 (11,7,28878,'Inspiring Presence'),
13423 (11,7,29932,'Language Draenei'),
13424 (11,7,45927,'Summon Friend'),
13425 (11,7,59221,'Shadow Resistance'),
13426 (11,7,59547,'Gift of the Naaru'),
13427 (11,7,61437,'Opening'),
13428 (11,8,81,'Dodge'),
13429 (11,8,133,'Fireball'),
13430 (11,8,168,'Frost Armor'),
13431 (11,8,203,'Unarmed'),
13432 (11,8,204,'Defense'),
13433 (11,8,227,'Staves'),
13434 (11,8,522,'SPELLDEFENSE (DND)'),
13435 (11,8,668,'Language Common'),
13436 (11,8,1843,'Disarm'),
13437 (11,8,2382,'Generic'),
13438 (11,8,2479,'Honorless Target'),
13439 (11,8,3050,'Detect'),
13440 (11,8,3365,'Opening'),
13441 (11,8,5009,'Wands'),
13442 (11,8,5019,'Shoot'),
13443 (11,8,6233,'Closing'),
13444 (11,8,6246,'Closing'),
13445 (11,8,6247,'Opening'),
13446 (11,8,6477,'Opening'),
13447 (11,8,6478,'Opening'),
13448 (11,8,6603,'Attack'),
13449 (11,8,7266,'Duel'),
13450 (11,8,7267,'Grovel'),
13451 (11,8,7355,'Stuck'),
13452 (11,8,8386,'Attacking'),
13453 (11,8,9078,'Cloth'),
13454 (11,8,9125,'Generic'),
13455 (11,8,21651,'Opening'),
13456 (11,8,21652,'Closing'),
13457 (11,8,22027,'Remove Insignia'),
13458 (11,8,22810,'Opening - No Text'),
13459 (11,8,28875,'Gemcutting'),
13460 (11,8,28878,'Inspiring Presence'),
13461 (11,8,29932,'Language Draenei'),
13462 (11,8,45927,'Summon Friend'),
13463 (11,8,59221,'Shadow Resistance'),
13464 (11,8,59548,'Gift of the Naaru'),
13465 (11,8,61437,'Opening');
13466 /*!40000 ALTER TABLE `playercreateinfo_spell` ENABLE KEYS */;
13467 UNLOCK TABLES;
13470 -- Table structure for table `points_of_interest`
13473 DROP TABLE IF EXISTS `points_of_interest`;
13474 CREATE TABLE `points_of_interest` (
13475   `entry` mediumint(8) unsigned NOT NULL default '0',
13476   `x` float NOT NULL default '0',
13477   `y` float NOT NULL default '0',
13478   `icon` mediumint(8) unsigned NOT NULL default '0',
13479   `flags` mediumint(8) unsigned NOT NULL default '0',
13480   `data` mediumint(8) unsigned NOT NULL default '0',
13481   `icon_name` text NOT NULL,
13482   PRIMARY KEY  (`entry`)
13483 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13486 -- Dumping data for table `points_of_interest`
13489 LOCK TABLES `points_of_interest` WRITE;
13490 /*!40000 ALTER TABLE `points_of_interest` DISABLE KEYS */;
13491 /*!40000 ALTER TABLE `points_of_interest` ENABLE KEYS */;
13492 UNLOCK TABLES;
13496 -- Table structure for table `pool_creature`
13499 DROP TABLE IF EXISTS `pool_creature`;
13500 CREATE TABLE `pool_creature` (
13501   `guid` int(10) unsigned NOT NULL default '0',
13502   `pool_entry` mediumint(8) unsigned NOT NULL default '0',
13503   `chance` float unsigned NOT NULL default '0',
13504   `description` varchar(255) NOT NULL,
13505   PRIMARY KEY  (`pool_entry`,`guid`),
13506   INDEX `idx_guid`(`guid`)
13507 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13511 -- Dumping data for table `pool_creature`
13514 LOCK TABLES `pool_creature` WRITE;
13515 /*!40000 ALTER TABLE `pool_creature` DISABLE KEYS */;
13516 /*!40000 ALTER TABLE `pool_creature` ENABLE KEYS */;
13517 UNLOCK TABLES;
13520 -- Table structure for table `pool_gameobject`
13523 DROP TABLE IF EXISTS `pool_gameobject`;
13524 CREATE TABLE `pool_gameobject` (
13525   `guid` int(10) unsigned NOT NULL default '0',
13526   `pool_entry` mediumint(8) unsigned NOT NULL default '0',
13527   `chance` float unsigned NOT NULL default '0',
13528   `description` varchar(255) NOT NULL,
13529   PRIMARY KEY  (`guid`,`pool_entry`),
13530   INDEX `idx_guid`(`guid`)
13531 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13534 -- Dumping data for table `pool_gameobject`
13537 LOCK TABLES `pool_gameobject` WRITE;
13538 /*!40000 ALTER TABLE `pool_gameobject` DISABLE KEYS */;
13539 /*!40000 ALTER TABLE `pool_gameobject` ENABLE KEYS */;
13540 UNLOCK TABLES;
13543 -- Table structure for table `pool_pool`
13546 DROP TABLE IF EXISTS `pool_pool`;
13547 CREATE TABLE `pool_pool` (
13548   `pool_id` mediumint(8) unsigned NOT NULL default '0',
13549   `mother_pool` mediumint(8) unsigned NOT NULL default '0',
13550   `chance` float NOT NULL default '0',
13551   `description` varchar(255) NOT NULL,
13552   PRIMARY KEY  (`pool_id`,`mother_pool`)
13553 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13556 -- Dumping data for table `pool_pool`
13559 LOCK TABLES `pool_pool` WRITE;
13560 /*!40000 ALTER TABLE `pool_pool` DISABLE KEYS */;
13561 /*!40000 ALTER TABLE `pool_pool` ENABLE KEYS */;
13562 UNLOCK TABLES;
13565 -- Table structure for table `pool_template`
13568 DROP TABLE IF EXISTS `pool_template`;
13569 CREATE TABLE `pool_template` (
13570   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Pool entry',
13571   `max_limit` int(10) unsigned NOT NULL default '0' COMMENT 'Max number of objects (0) is no limit',
13572   `description` varchar(255) NOT NULL,
13573   PRIMARY KEY  (`entry`)
13574 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13577 -- Dumping data for table `pool_template`
13580 LOCK TABLES `pool_template` WRITE;
13581 /*!40000 ALTER TABLE `pool_template` DISABLE KEYS */;
13582 /*!40000 ALTER TABLE `pool_template` ENABLE KEYS */;
13583 UNLOCK TABLES;
13586 -- Table structure for table `game_event_pool`
13589 DROP TABLE IF EXISTS `game_event_pool`;
13590 CREATE TABLE `game_event_pool` (
13591   `pool_entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Id of the pool',
13592   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
13593   PRIMARY KEY  (`pool_entry`)
13594 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13597 -- Dumping data for table `game_event_pool`
13600 LOCK TABLES `game_event_pool` WRITE;
13601 /*!40000 ALTER TABLE `game_event_pool` DISABLE KEYS */;
13602 /*!40000 ALTER TABLE `game_event_pool` ENABLE KEYS */;
13603 UNLOCK TABLES;
13606 -- Table structure for table `prospecting_loot_template`
13609 DROP TABLE IF EXISTS `prospecting_loot_template`;
13610 CREATE TABLE `prospecting_loot_template` (
13611   `entry` mediumint(8) unsigned NOT NULL default '0',
13612   `item` mediumint(8) unsigned NOT NULL default '0',
13613   `ChanceOrQuestChance` float NOT NULL default '100',
13614   `groupid` tinyint(3) unsigned NOT NULL default '0',
13615   `mincountOrRef` mediumint(9) NOT NULL default '1',
13616   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13617   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13618   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13619   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13620   PRIMARY KEY  (`entry`,`item`)
13621 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13624 -- Dumping data for table `prospecting_loot_template`
13627 LOCK TABLES `prospecting_loot_template` WRITE;
13628 /*!40000 ALTER TABLE `prospecting_loot_template` DISABLE KEYS */;
13629 /*!40000 ALTER TABLE `prospecting_loot_template` ENABLE KEYS */;
13630 UNLOCK TABLES;
13633 -- Table structure for table `quest_end_scripts`
13636 DROP TABLE IF EXISTS `quest_end_scripts`;
13637 CREATE TABLE `quest_end_scripts` (
13638   `id` mediumint(8) unsigned NOT NULL default '0',
13639   `delay` int(10) unsigned NOT NULL default '0',
13640   `command` mediumint(8) unsigned NOT NULL default '0',
13641   `datalong` mediumint(8) unsigned NOT NULL default '0',
13642   `datalong2` int(10) unsigned NOT NULL default '0',
13643   `dataint` int(11) NOT NULL default '0',
13644   `x` float NOT NULL default '0',
13645   `y` float NOT NULL default '0',
13646   `z` float NOT NULL default '0',
13647   `o` float NOT NULL default '0'
13648 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13651 -- Dumping data for table `quest_end_scripts`
13654 LOCK TABLES `quest_end_scripts` WRITE;
13655 /*!40000 ALTER TABLE `quest_end_scripts` DISABLE KEYS */;
13656 /*!40000 ALTER TABLE `quest_end_scripts` ENABLE KEYS */;
13657 UNLOCK TABLES;
13660 -- Table structure for table `quest_start_scripts`
13663 DROP TABLE IF EXISTS `quest_start_scripts`;
13664 CREATE TABLE `quest_start_scripts` (
13665   `id` mediumint(8) unsigned NOT NULL default '0',
13666   `delay` int(10) unsigned NOT NULL default '0',
13667   `command` mediumint(8) unsigned NOT NULL default '0',
13668   `datalong` mediumint(8) unsigned NOT NULL default '0',
13669   `datalong2` int(10) unsigned NOT NULL default '0',
13670   `dataint` int(11) NOT NULL default '0',
13671   `x` float NOT NULL default '0',
13672   `y` float NOT NULL default '0',
13673   `z` float NOT NULL default '0',
13674   `o` float NOT NULL default '0'
13675 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13678 -- Dumping data for table `quest_start_scripts`
13681 LOCK TABLES `quest_start_scripts` WRITE;
13682 /*!40000 ALTER TABLE `quest_start_scripts` DISABLE KEYS */;
13683 /*!40000 ALTER TABLE `quest_start_scripts` ENABLE KEYS */;
13684 UNLOCK TABLES;
13687 -- Table structure for table `quest_template`
13690 DROP TABLE IF EXISTS `quest_template`;
13691 CREATE TABLE `quest_template` (
13692   `entry` mediumint(8) unsigned NOT NULL default '0',
13693   `Method` tinyint(3) unsigned NOT NULL default '2',
13694   `ZoneOrSort` smallint(6) NOT NULL default '0',
13695   `SkillOrClass` smallint(6) NOT NULL default '0',
13696   `MinLevel` tinyint(3) unsigned NOT NULL default '0',
13697   `QuestLevel` smallint(6) NOT NULL default '0',
13698   `Type` smallint(5) unsigned NOT NULL default '0',
13699   `RequiredRaces` smallint(5) unsigned NOT NULL default '0',
13700   `RequiredSkillValue` smallint(5) unsigned NOT NULL default '0',
13701   `RepObjectiveFaction` smallint(5) unsigned NOT NULL default '0',
13702   `RepObjectiveValue` mediumint(9) NOT NULL default '0',
13703   `RequiredMinRepFaction` smallint(5) unsigned NOT NULL default '0',
13704   `RequiredMinRepValue` mediumint(9) NOT NULL default '0',
13705   `RequiredMaxRepFaction` smallint(5) unsigned NOT NULL default '0',
13706   `RequiredMaxRepValue` mediumint(9) NOT NULL default '0',
13707   `SuggestedPlayers` tinyint(3) unsigned NOT NULL default '0',
13708   `LimitTime` int(10) unsigned NOT NULL default '0',
13709   `QuestFlags` smallint(5) unsigned NOT NULL default '0',
13710   `SpecialFlags` tinyint(3) unsigned NOT NULL default '0',
13711   `CharTitleId` tinyint(3) unsigned NOT NULL default '0',
13712   `PlayersSlain` tinyint(3) unsigned NOT NULL default '0',
13713   `BonusTalents` tinyint(3) unsigned NOT NULL default '0',
13714   `PrevQuestId` mediumint(9) NOT NULL default '0',
13715   `NextQuestId` mediumint(9) NOT NULL default '0',
13716   `ExclusiveGroup` mediumint(9) NOT NULL default '0',
13717   `NextQuestInChain` mediumint(8) unsigned NOT NULL default '0',
13718   `SrcItemId` mediumint(8) unsigned NOT NULL default '0',
13719   `SrcItemCount` tinyint(3) unsigned NOT NULL default '0',
13720   `SrcSpell` mediumint(8) unsigned NOT NULL default '0',
13721   `Title` text,
13722   `Details` text,
13723   `Objectives` text,
13724   `OfferRewardText` text,
13725   `RequestItemsText` text,
13726   `EndText` text,
13727   `ObjectiveText1` text,
13728   `ObjectiveText2` text,
13729   `ObjectiveText3` text,
13730   `ObjectiveText4` text,
13731   `ReqItemId1` mediumint(8) unsigned NOT NULL default '0',
13732   `ReqItemId2` mediumint(8) unsigned NOT NULL default '0',
13733   `ReqItemId3` mediumint(8) unsigned NOT NULL default '0',
13734   `ReqItemId4` mediumint(8) unsigned NOT NULL default '0',
13735   `ReqItemId5` mediumint(8) unsigned NOT NULL default '0',
13736   `ReqItemId6` mediumint(8) unsigned NOT NULL default '0',
13737   `ReqItemCount1` smallint(5) unsigned NOT NULL default '0',
13738   `ReqItemCount2` smallint(5) unsigned NOT NULL default '0',
13739   `ReqItemCount3` smallint(5) unsigned NOT NULL default '0',
13740   `ReqItemCount4` smallint(5) unsigned NOT NULL default '0',
13741   `ReqItemCount5` smallint(5) unsigned NOT NULL default '0',
13742   `ReqItemCount6` smallint(5) unsigned NOT NULL default '0',
13743   `ReqSourceId1` mediumint(8) unsigned NOT NULL default '0',
13744   `ReqSourceId2` mediumint(8) unsigned NOT NULL default '0',
13745   `ReqSourceId3` mediumint(8) unsigned NOT NULL default '0',
13746   `ReqSourceId4` mediumint(8) unsigned NOT NULL default '0',
13747   `ReqSourceCount1` smallint(5) unsigned NOT NULL default '0',
13748   `ReqSourceCount2` smallint(5) unsigned NOT NULL default '0',
13749   `ReqSourceCount3` smallint(5) unsigned NOT NULL default '0',
13750   `ReqSourceCount4` smallint(5) unsigned NOT NULL default '0',
13751   `ReqCreatureOrGOId1` mediumint(9) NOT NULL default '0',
13752   `ReqCreatureOrGOId2` mediumint(9) NOT NULL default '0',
13753   `ReqCreatureOrGOId3` mediumint(9) NOT NULL default '0',
13754   `ReqCreatureOrGOId4` mediumint(9) NOT NULL default '0',
13755   `ReqCreatureOrGOCount1` smallint(5) unsigned NOT NULL default '0',
13756   `ReqCreatureOrGOCount2` smallint(5) unsigned NOT NULL default '0',
13757   `ReqCreatureOrGOCount3` smallint(5) unsigned NOT NULL default '0',
13758   `ReqCreatureOrGOCount4` smallint(5) unsigned NOT NULL default '0',
13759   `ReqSpellCast1` mediumint(8) unsigned NOT NULL default '0',
13760   `ReqSpellCast2` mediumint(8) unsigned NOT NULL default '0',
13761   `ReqSpellCast3` mediumint(8) unsigned NOT NULL default '0',
13762   `ReqSpellCast4` mediumint(8) unsigned NOT NULL default '0',
13763   `RewChoiceItemId1` mediumint(8) unsigned NOT NULL default '0',
13764   `RewChoiceItemId2` mediumint(8) unsigned NOT NULL default '0',
13765   `RewChoiceItemId3` mediumint(8) unsigned NOT NULL default '0',
13766   `RewChoiceItemId4` mediumint(8) unsigned NOT NULL default '0',
13767   `RewChoiceItemId5` mediumint(8) unsigned NOT NULL default '0',
13768   `RewChoiceItemId6` mediumint(8) unsigned NOT NULL default '0',
13769   `RewChoiceItemCount1` smallint(5) unsigned NOT NULL default '0',
13770   `RewChoiceItemCount2` smallint(5) unsigned NOT NULL default '0',
13771   `RewChoiceItemCount3` smallint(5) unsigned NOT NULL default '0',
13772   `RewChoiceItemCount4` smallint(5) unsigned NOT NULL default '0',
13773   `RewChoiceItemCount5` smallint(5) unsigned NOT NULL default '0',
13774   `RewChoiceItemCount6` smallint(5) unsigned NOT NULL default '0',
13775   `RewItemId1` mediumint(8) unsigned NOT NULL default '0',
13776   `RewItemId2` mediumint(8) unsigned NOT NULL default '0',
13777   `RewItemId3` mediumint(8) unsigned NOT NULL default '0',
13778   `RewItemId4` mediumint(8) unsigned NOT NULL default '0',
13779   `RewItemCount1` smallint(5) unsigned NOT NULL default '0',
13780   `RewItemCount2` smallint(5) unsigned NOT NULL default '0',
13781   `RewItemCount3` smallint(5) unsigned NOT NULL default '0',
13782   `RewItemCount4` smallint(5) unsigned NOT NULL default '0',
13783   `RewRepFaction1` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13784   `RewRepFaction2` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13785   `RewRepFaction3` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13786   `RewRepFaction4` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13787   `RewRepFaction5` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13788   `RewRepValue1` mediumint(9) NOT NULL default '0',
13789   `RewRepValue2` mediumint(9) NOT NULL default '0',
13790   `RewRepValue3` mediumint(9) NOT NULL default '0',
13791   `RewRepValue4` mediumint(9) NOT NULL default '0',
13792   `RewRepValue5` mediumint(9) NOT NULL default '0',
13793   `RewHonorableKills` int unsigned NOT NULL default '0',
13794   `RewOrReqMoney` int(11) NOT NULL default '0',
13795   `RewMoneyMaxLevel` int(10) unsigned NOT NULL default '0',
13796   `RewSpell` mediumint(8) unsigned NOT NULL default '0',
13797   `RewSpellCast` mediumint(8) unsigned NOT NULL default '0',
13798   `RewMailTemplateId` mediumint(8) unsigned NOT NULL default '0',
13799   `RewMailDelaySecs` int(11) unsigned NOT NULL default '0',
13800   `PointMapId` smallint(5) unsigned NOT NULL default '0',
13801   `PointX` float NOT NULL default '0',
13802   `PointY` float NOT NULL default '0',
13803   `PointOpt` mediumint(8) unsigned NOT NULL default '0',
13804   `DetailsEmote1` smallint(5) unsigned NOT NULL default '0',
13805   `DetailsEmote2` smallint(5) unsigned NOT NULL default '0',
13806   `DetailsEmote3` smallint(5) unsigned NOT NULL default '0',
13807   `DetailsEmote4` smallint(5) unsigned NOT NULL default '0',
13808   `DetailsEmoteDelay1` int(11) unsigned NOT NULL default '0',
13809   `DetailsEmoteDelay2` int(11) unsigned NOT NULL default '0',
13810   `DetailsEmoteDelay3` int(11) unsigned NOT NULL default '0',
13811   `DetailsEmoteDelay4` int(11) unsigned NOT NULL default '0',
13812   `IncompleteEmote` smallint(5) unsigned NOT NULL default '0',
13813   `CompleteEmote` smallint(5) unsigned NOT NULL default '0',
13814   `OfferRewardEmote1` smallint(5) unsigned NOT NULL default '0',
13815   `OfferRewardEmote2` smallint(5) unsigned NOT NULL default '0',
13816   `OfferRewardEmote3` smallint(5) unsigned NOT NULL default '0',
13817   `OfferRewardEmote4` smallint(5) unsigned NOT NULL default '0',
13818   `OfferRewardEmoteDelay1` int(11) unsigned NOT NULL default '0',
13819   `OfferRewardEmoteDelay2` int(11) unsigned NOT NULL default '0',
13820   `OfferRewardEmoteDelay3` int(11) unsigned NOT NULL default '0',
13821   `OfferRewardEmoteDelay4` int(11) unsigned NOT NULL default '0',
13822   `StartScript` mediumint(8) unsigned NOT NULL default '0',
13823   `CompleteScript` mediumint(8) unsigned NOT NULL default '0',
13824   PRIMARY KEY  (`entry`)
13825 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Quest System';
13828 -- Dumping data for table `quest_template`
13831 LOCK TABLES `quest_template` WRITE;
13832 /*!40000 ALTER TABLE `quest_template` DISABLE KEYS */;
13833 /*!40000 ALTER TABLE `quest_template` ENABLE KEYS */;
13834 UNLOCK TABLES;
13837 -- Table structure for table `reference_loot_template`
13840 DROP TABLE IF EXISTS `reference_loot_template`;
13841 CREATE TABLE `reference_loot_template` (
13842   `entry` mediumint(8) unsigned NOT NULL default '0',
13843   `item` mediumint(8) unsigned NOT NULL default '0',
13844   `ChanceOrQuestChance` float NOT NULL default '100',
13845   `groupid` tinyint(3) unsigned NOT NULL default '0',
13846   `mincountOrRef` mediumint(9) NOT NULL default '1',
13847   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13848   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13849   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13850   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13851   PRIMARY KEY  (`entry`,`item`)
13852 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13855 -- Dumping data for table `reference_loot_template`
13858 LOCK TABLES `reference_loot_template` WRITE;
13859 /*!40000 ALTER TABLE `reference_loot_template` DISABLE KEYS */;
13860 /*!40000 ALTER TABLE `reference_loot_template` ENABLE KEYS */;
13861 UNLOCK TABLES;
13864 -- Table structure for table `reserved_name`
13867 DROP TABLE IF EXISTS `reserved_name`;
13868 CREATE TABLE `reserved_name` (
13869   `name` varchar(12) NOT NULL default '',
13870   PRIMARY KEY  (`name`)
13871 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player Reserved Names';
13874 -- Dumping data for table `reserved_name`
13877 LOCK TABLES `reserved_name` WRITE;
13878 /*!40000 ALTER TABLE `reserved_name` DISABLE KEYS */;
13879 /*!40000 ALTER TABLE `reserved_name` ENABLE KEYS */;
13880 UNLOCK TABLES;
13883 -- Table structure for table `skill_discovery_template`
13886 DROP TABLE IF EXISTS `skill_discovery_template`;
13887 CREATE TABLE `skill_discovery_template` (
13888   `spellId` mediumint(8) unsigned NOT NULL default '0' COMMENT 'SpellId of the discoverable spell',
13889   `reqSpell` mediumint(8) unsigned NOT NULL default '0' COMMENT 'spell requirement',
13890   `reqSkillValue` smallint(5) unsigned NOT NULL default '0' COMMENT 'skill points requirement',
13891   `chance` float NOT NULL default '0' COMMENT 'chance to discover',
13892   PRIMARY KEY (`spellId`,`reqSpell`)
13893 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Discovery System';
13896 -- Dumping data for table `skill_discovery_template`
13899 LOCK TABLES `skill_discovery_template` WRITE;
13900 /*!40000 ALTER TABLE `skill_discovery_template` DISABLE KEYS */;
13901 /*!40000 ALTER TABLE `skill_discovery_template` ENABLE KEYS */;
13902 UNLOCK TABLES;
13905 -- Table structure for table `skill_extra_item_template`
13908 DROP TABLE IF EXISTS `skill_extra_item_template`;
13909 CREATE TABLE `skill_extra_item_template` (
13910   `spellId` mediumint(8) unsigned NOT NULL default '0' COMMENT 'SpellId of the item creation spell',
13911   `requiredSpecialization` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Specialization spell id',
13912   `additionalCreateChance` float NOT NULL default '0' COMMENT 'chance to create add',
13913   `additionalMaxNum` tinyint(3) unsigned NOT NULL default '0' COMMENT 'max num of adds',
13914   PRIMARY KEY  (`spellId`)
13915 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Specialization System';
13918 -- Dumping data for table `skill_extra_item_template`
13921 LOCK TABLES `skill_extra_item_template` WRITE;
13922 /*!40000 ALTER TABLE `skill_extra_item_template` DISABLE KEYS */;
13923 /*!40000 ALTER TABLE `skill_extra_item_template` ENABLE KEYS */;
13924 UNLOCK TABLES;
13927 -- Table structure for table `skill_fishing_base_level`
13930 DROP TABLE IF EXISTS `skill_fishing_base_level`;
13931 CREATE TABLE `skill_fishing_base_level` (
13932   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Area identifier',
13933   `skill` smallint(6) NOT NULL default '0' COMMENT 'Base skill level requirement',
13934   PRIMARY KEY  (`entry`)
13935 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Fishing system';
13938 -- Dumping data for table `skill_fishing_base_level`
13941 LOCK TABLES `skill_fishing_base_level` WRITE;
13942 /*!40000 ALTER TABLE `skill_fishing_base_level` DISABLE KEYS */;
13943 /*!40000 ALTER TABLE `skill_fishing_base_level` ENABLE KEYS */;
13944 UNLOCK TABLES;
13947 -- Table structure for table `skinning_loot_template`
13950 DROP TABLE IF EXISTS `skinning_loot_template`;
13951 CREATE TABLE `skinning_loot_template` (
13952   `entry` mediumint(8) unsigned NOT NULL default '0',
13953   `item` mediumint(8) unsigned NOT NULL default '0',
13954   `ChanceOrQuestChance` float NOT NULL default '100',
13955   `groupid` tinyint(3) unsigned NOT NULL default '0',
13956   `mincountOrRef` mediumint(9) NOT NULL default '1',
13957   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13958   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13959   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13960   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13961   PRIMARY KEY  (`entry`,`item`)
13962 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13965 -- Dumping data for table `skinning_loot_template`
13968 LOCK TABLES `skinning_loot_template` WRITE;
13969 /*!40000 ALTER TABLE `skinning_loot_template` DISABLE KEYS */;
13970 /*!40000 ALTER TABLE `skinning_loot_template` ENABLE KEYS */;
13971 UNLOCK TABLES;
13974 -- Table structure for table `spell_area`
13977 DROP TABLE IF EXISTS `spell_area`;
13978 CREATE TABLE `spell_area` (
13979   `spell`              mediumint(8) unsigned NOT NULL default '0',
13980   `area`               mediumint(8) unsigned NOT NULL default '0',
13981   `quest_start`        mediumint(8) unsigned NOT NULL default '0',
13982   `quest_start_active` tinyint(1) unsigned NOT NULL default '0',
13983   `quest_end`          mediumint(8) unsigned NOT NULL default '0',
13984   `aura_spell`         mediumint(8) NOT NULL default '0',
13985   `racemask`           mediumint(8) unsigned NOT NULL default '0',
13986   `gender`             tinyint(1) unsigned NOT NULL default '2',
13987   `autocast`           tinyint(1) unsigned NOT NULL default '0',
13988   PRIMARY KEY  (`spell`,`area`,`quest_start`,`quest_start_active`,`aura_spell`,`racemask`,`gender`)
13989 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13992 -- Dumping data for table `spell_area`
13995 LOCK TABLES `spell_area` WRITE;
13996 /*!40000 ALTER TABLE `spell_area` DISABLE KEYS */;
13997 /*!40000 ALTER TABLE `spell_area` ENABLE KEYS */;
13998 UNLOCK TABLES;
14001 -- Table structure for `spell_bonus_data`
14004 DROP TABLE IF EXISTS `spell_bonus_data`;
14005 CREATE TABLE `spell_bonus_data` (
14006   `entry` smallint(5) unsigned NOT NULL,
14007   `direct_bonus` float NOT NULL default '0',
14008   `dot_bonus` float NOT NULL default '0',
14009   `ap_bonus` float NOT NULL default '0',
14010   `comments` varchar(255) default NULL,
14011   PRIMARY KEY  (`entry`)
14012 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
14015 -- Dumping data for table `spell_bonus_data`
14018 LOCK TABLES `spell_bonus_data` WRITE;
14019 /*!40000 ALTER TABLE `spell_bonus_data` DISABLE KEYS */;
14020 INSERT INTO `spell_bonus_data` VALUES
14021 /* Death Knight */
14022 (48721, 0,      0,       0.04,  'Death Knight - Blood Boil'),
14023 (55078, 0,      0,       0.055, 'Death Knight - Blood Plague Dummy Proc'),
14024 (50444, 0,      0,       0.105, 'Death Knight - Corpse Explosion Triggered'),
14025 (52212, 0,      0,       0.0475,'Death Knight - Death and Decay Triggered'),
14026 (47632, 0,      0,       0.15,  'Death Knight - Death Coil Damage'),
14027 (47633, 0,      0,       0.15,  'Death Knight - Death Coil Heal'),
14028 (55095, 0,      0,       0.055, 'Death Knight - Frost Fever'),
14029 (49184, 0,      0,       0.1,   'Death Knight - Howling Blast'),
14030 (45477, 0,      0,       0.1,   'Death Knight - Icy Touch'),
14031 (56903, 0,      0,       0,     'Death Knight - Lichflame'),
14032 (50842, 0,      0,       0.04,  'Death Knight - Pestilence'),
14033 (50401, 0,      0,       0,     'Death Knight - Razor Frost'),
14034 (47476, 0,      0,       0.06,  'Death Knight - Strangulate'),
14035 (50536, 0,      0,       0.013, 'Death Knight - Unholy Blight Triggered'),
14036 /* Druid */
14037 (5185,  1.6104, 0,       0,     'Druid - Healing Touch'),
14038 (339,   0,      0.1,     0,     'Druid - Entangling Roots'),
14039 (60089, 0,      0,       0.05,  'Druid - Faerie Fire (Feral) Triggered'),
14040 (42231, 0.12898,0,       0,     'Druid - Hurricane Triggered'),
14041 (5570,  0,      0.2,     0,     'Druid - Insect Swarm'),
14042 (33763, 0,      0.09518, 0,     'Druid - Lifebloom'),
14043 (8921,  0.1515, 0.13,    0,     'Druid - Moonfire'),
14044 (50464, 0.6611, 0,       0,     'Druid - Nourish'),
14045 (8936,  0.539,  0.188,   0,     'Druid - Regrowth'),
14046 (774,   0,      0.37604, 0,     'Druid - Rejuvenation'),
14047 (50288, 0.05,   0,       0,     'Druid - Starfall'),
14048 (50294, 0.012,  0,       0,     'Druid - Starfall AOE'),
14049 (2912,  1,      0,       0,     'Druid - Starfire'),
14050 (18562, 0,      0,       0,     'Druid - Swiftmend'),
14051 (44203, 0.538,  0,       0,     'Druid - Tranquility Triggered'),
14052 (61391, 0.193,  0,       0,     'Druid - Typhoon'),
14053 (48438, 0,      0.11505, 0,     'Druid - Wild Growth'),
14054 (5176,  0.5714, 0,       0,     'Druid - Wrath'),
14055 /* Mage */
14056 (44425, 0.714286,0,      0,     'Mage - Arcane Barrage'),
14057 (30451, 0.7143, 0,       0,     'Mage - Arcane Blast'),
14058 (1449,  0.2128, 0,       0,     'Mage - Arcane Explosion'),
14059 (7268,  0.2857, 0,       0,     'Mage - Arcane Missiles Triggered Spell'),
14060 (42208, 0.1437, 0,       0,     'Mage - Blizzard Triggered'),
14061 (2136,  0.4286, 0,       0,     'Mage - Fire Blast'),
14062 (133,   1,      0,       0,     'Mage - Fire Ball'),
14063 (2120,  0.2357, 0.122,   0,     'Mage - Flamestrike'),
14064 (122,   0.193,  0,       0,     'Mage - Frost Nova'),
14065 (116,   0.8143, 0,       0,     'Mage - Frost Bolt'),
14066 (44614, 0.8571, 0,       0,     'Mage - Frostfire Bolt'),
14067 (11426, 0.8053, 0,       0,     'Mage - Ice Barrier'),
14068 (30455, 0.1429, 0,       0,     'Mage - Ice Lance'),
14069 (44457, 0.4,    0.2,     0,     'Mage - Living Bomb'),
14070 (1463,  0.8053, 0,       0,     'Mage - Mana Shield'),
14071 (34913, 0,      0,       0,     'Mage - Molten Armor Triggered'),
14072 (11366, 1.15,   0.05,    0,     'Mage - Pyroblast'),
14073 (2948,  0.4286, 0,       0,     'Mage - Scorch'),
14074 /* Paladin */
14075 (31935, 0.07,   0,       0.07,  'Paladin - Avengers Shiled'),
14076 (53742, 0,      0.0156,  0.03,  'Paladin - Blood Corruption'),
14077 (26573, 0,      0.04,    0.04,  'Paladin - Consecration'),
14078 (879,   0.15,   0,       0.15,  'Paladin - Exorcism'),
14079 (25997, 0,      0,       0,     'Paladin - Eye for an Eye'),
14080 (19750, 1,      0,       0,     'Paladin - Flash of Light'),
14081 (53595, 0,      0,       0,     'Paladin - Hammer of the Righteous'),
14082 (24275, 0.15,   0,       0.15,  'Paladin - Hammer of Wrath'),
14083 (635,   1.66,   0,       0,     'Paladin - Holy Light'),
14084 (25912, 0.4286, 0,       0,     'Paladin - Holy Shock Triggered Hurt'),
14085 (20925, 0.09,   0,       0.056, 'Paladin - Holy Shield'),
14086 (31803, 0,      0.0156,  0.03,  'Paladin - Holy Vengeance'),
14087 (2812,  0.07,   0,       0.07,  'Paladin - Holy Wrath'),
14088 (54158, 0.25,   0,       0,     'Paladin - Judgement'),
14089 (31898, 0.18,   0,       0.11,  'Paladin - Judgement of Blood Enemy'),
14090 (32220, 0.0594, 0,       0.0363,'Paladin - Judgement of Blood Self'),
14091 (20467, 0.25,   0,       0.16,  'Paladin - Judgement of Command'),
14092 (53733, 0,      0,       0,     'Paladin - Judgement of Corruption'),
14093 (20267, 0.1,    0,       0.1,   'Paladin - Judgement of Light Proc'),
14094 (20187, 0.32,   0,       0,     'Paladin - Judgement of Righteousness'),
14095 (53726, 0.18,   0,       0.11,  'Paladin - Judgement of the Martyr Enemy'),
14096 (53725, 0.0594, 0,       0.0363,'Paladin - Judgement of the Martyr Self'),
14097 (31804, 0,      0,       0,     'Paladin - Judgement of Vengeance'),
14098 (31893, 0,      0,       0,     'Paladin - Seal of Blood Proc Enemy'),
14099 (32221, 0,      0,       0,     'Paladin - Seal of Blood Proc Self'),
14100 (20424, 0,      0,       0,     'Paladin - Seal of Command Proc'),
14101 (53739, 0,      0.00156, 0.003, 'Paladin - Seal of Corruption (full stack proc)'),
14102 (20167, 0.15,   0,       0.15,  'Paladin - Seal of Light Proc'),
14103 (25742, 0.07,   0,       0.039, 'Paladin - Seal of Righteousness Dummy Proc'),
14104 (53719, 0,      0,       0,     'Paladin - Seal of the Martyr Proc Enemy'),
14105 (53718, 0,      0,       0,     'Paladin - Seal of the Martyr Proc Self'),
14106 (42463, 0,      0.00156, 0.003, 'Paladin - Seal of Vengeance (full stack proc)'),
14107 (53600, 0,      0,       0,     'Paladin - Shield of Righteousness'),
14108 /* Priest */
14109 (32546, 0.8068, 0,       0,     'Priest - Binding Heal'),
14110 (27813, 0,      0,       0,     'Priest - Blessed Recovery'),
14111 (34861, 0.402,  0,       0,     'Priest - Circle of Healing'),
14112 (19236, 0.8068, 0,       0,     'Priest - Desperate Prayer'),
14113 (2944,  0,      0.1849,  0,     'Priest - Devouring Plague'),
14114 (63544, 0,      0,       0,     'Priest - Empowered Renew Triggered'),
14115 (14914, 0.5711, 0.024,   0,     'Priest - Holy Fire'),
14116 (15237, 0.1606, 0,       0,     'Priest - Holy Nova Damage'),
14117 (2061,  0.8068, 0,       0,     'Priest - Flash Heal'),
14118 (2060,  1.6135, 0,       0,     'Priest - Greater Heal'),
14119 (23455, 0.3035, 0,       0,     'Priest - Holy Nova Heal'),
14120 (63675, 0,      0,       0,     'Priest - Improved Devouring Plague Triggered'),
14121 (8129,  0,      0,       0,     'Priest - Mana Burn'),
14122 (58381, 0.257143,0,      0,     'Priest - Mind Flay Triggered'),
14123 (49821, 0.14286,0,       0,     'Priest - Mind Sear Trigger'),
14124 (17,    0.8068, 0,       0,     'Priest - Power Word: Shield'),
14125 (33110, 0.8068, 0,       0,     'Priest - Prayer of Mending Heal Proc'),
14126 (33619, 0,      0,       0,     'Priest - Reflective Shield'),
14127 (139,   0,      0.376,   0,     'Priest - Renew'),
14128 (32379, 0.4296, 0,       0,     'Priest - Shadow Word: Death'),
14129 (589,   0,      0.1829,  0,     'Priest - Shadow Word: Pain'),
14130 (34433, 0.65,   0,       0,     'Priest - Shadowfiend'),
14131 (585,   0.714,  0,       0,     'Priest - Smite'),
14132 (34914, 0,      0.4,     0,     'Priest - Vampiric Touch'),
14133 (64085, 0,      0,       0,     'Priest - Vampiric Touch Dispel'),
14134 /* Shaman */
14135 (974,   0.4762, 0,       0,     'Shaman - Earth Shield'),
14136 (379,   0,      0,       0,     'Shaman - Earth Shield Triggered'),
14137 (1064,  1.34,   0,       0,     'Shaman - Chain Heal'),
14138 (421,   0.57,   0,       0,     'Shaman - Chain Lightning'),
14139 (8042,  0.3858, 0,       0,     'Shaman - Earth Shock'),
14140 (8443,  0.2142, 0,       0,     'Shaman - Fire Nova Totem Casted by Totem'),
14141 (8050,  0.2142, 0.1,     0,     'Shaman - Flame Shock'),
14142 (8026,  0.1,    0,       0,     'Shaman - Flametongue Weapon Proc'),
14143 (8056,  0.3858, 0,       0,     'Shaman - Frost Shock'),
14144 (8034,  0.1,    0,       0,     'Shaman - Frostbrand Attack Rank 1'),
14145 (52042, 0.045,  0,       0,     'Shaman - Healing Stream Totem Triggered Heal'),
14146 (331,   1.6106, 0,       0,     'Shaman - Healing Wave'),
14147 (51505, 0.5714, 0,       0,     'Shaman - Lava Burst'),
14148 (8004,  0.8082, 0,       0,     'Shaman - Lesser Healing Wave'),
14149 (403,   0.7143, 0,       0,     'Shaman - Lightning Bolt'),
14150 (26364, 0.33,   0,       0,     'Shaman - Lightning Shield Proc'),
14151 (8188,  0.1,    0,       0,     'Shaman - Magma Totam Passive'),
14152 (61295, 0.4,    0.18,    0,     'Shaman - Riptide'),
14153 (3606,  0.1667, 0,       0,     'Shaman - Searing Totem Attack'),
14154 /* Warlock */
14155 (17962, 0,      0,       0,     'Warlock - Conflagrate'),
14156 (172,   0,      0.2,     0,     'Warlock - Corruption'),
14157 (980,   0,      0.1,     0,     'Warlock - Curse of Agony'),
14158 (603,   0,      2,       0,     'Warlock - Curse of Doom'),
14159 (18220, 0.96,   0,       0,     'Warlock - Dark Pact'),
14160 (5138,  0,      0,       0,     'Warlock - Drain Mana'),
14161 (1120,  0,      0.4286,  0,     'Warlock - Drain Soul'),
14162 (28176, 0,      0,       0,     'Warlock - Fel Armor'),
14163 (18790, 0,      0,       0,     'Warlock - Fel Stamina'),
14164 (48181, 0.4729, 0,       0,     'Warlock - Haunt'),
14165 (755 ,  0,      0.4485,  0,     'Warlock - Health Funnel'),
14166 (1949,  0,      0.0946,  0,     'Warlock - Hellfire'),
14167 (5857,  0.1428, 0,       0,     'Warlock - Hellfire Effect on Enemy'),
14168 (348,   0.2,    0.2,     0,     'Warlock - Immolate'),
14169 (42223, 0.285714,0,      0,     'Warlock - Rain of Fire Triggered'),
14170 (27243, 0.2129, 0.25,    0,     'Warlock - Seed of Corruption'),
14171 (6229,  0.3,    0,       0,     'Warlock - Shadow Ward'),
14172 (47960, 0,      0.06666, 0,     'Warlock - Shadowflame DoT'),
14173 (47897, 0.1064, 0,       0,     'Warlock - Shadowflame Direct'),
14174 (63106, 0,      0,       0,     'Warlock - Siphon Life Triggered'),
14175 (6353,  1.15,   0,       0,     'Warlock - Soul Fire'),
14176 (30294, 0,      0,       0,     'Warlock - Soul Leech'),
14177 (31117, 1.8,    0,       0,     'Warlock - Unstable Affliction Dispell'),
14178 /* Item */
14179 (56160, 0,      0,       0,     'Item - Glyph of Power Word: Shield'),
14180 (40293, 0,      0,       0,     'Item - Siphon Essence');
14181 /*!40000 ALTER TABLE `spell_bonus_data` ENABLE KEYS */;
14182 UNLOCK TABLES;
14185 -- Table structure for table `spell_chain`
14188 DROP TABLE IF EXISTS `spell_chain`;
14189 CREATE TABLE `spell_chain` (
14190   `spell_id` mediumint(9) NOT NULL default '0',
14191   `prev_spell` mediumint(9) NOT NULL default '0',
14192   `first_spell` mediumint(9) NOT NULL default '0',
14193   `rank` tinyint(4) NOT NULL default '0',
14194   `req_spell` mediumint(9) NOT NULL default '0',
14195   PRIMARY KEY  (`spell_id`)
14196 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell Additinal Data';
14199 -- Dumping data for table `spell_chain`
14202 LOCK TABLES `spell_chain` WRITE;
14203 /*!40000 ALTER TABLE `spell_chain` DISABLE KEYS */;
14204 INSERT INTO spell_chain VALUES
14205 /*------------------
14206 --(0) Not associated with skills
14207 ------------------*/
14208 /* Fire Nova Totem Casted by Totem */
14209 (8443,0,8443,1,0),
14210 (8504,8443,8443,2,0),
14211 (8505,8504,8443,3,0),
14212 (11310,8505,8443,4,0),
14213 (11311,11310,8443,5,0),
14214 (25538,11311,8443,6,0),
14215 (25539,25538,8443,7,0),
14216 (61651,25539,8443,8,0),
14217 (61660,61651,8443,9,0),
14218 /* Flametongue Weapon Proc */
14219 (8026,0,8026,1,0),
14220 (8028,8026,8026,2,0),
14221 (8029,8028,8026,3,0),
14222 (10445,8029,8026,4,0),
14223 (16343,10445,8026,5,0),
14224 (16344,16343,8026,6,0),
14225 (25488,16344,8026,7,0),
14226 (58786,25488,8026,8,0),
14227 (58787,58786,8026,9,0),
14228 (58788,58787,8026,10,0),
14229 /* Frostbrand Attack */
14230 (8034,0,8034,1,0),
14231 (8037,8034,8034,2,0),
14232 (10458,8037,8034,3,0),
14233 (16352,10458,8034,4,0),
14234 (16353,16352,8034,5,0),
14235 (25501,16353,8034,6,0),
14236 (58797,25501,8034,7,0),
14237 (58798,58797,8034,8,0),
14238 (58799,58798,8034,9,0),
14239 /* Instant Poison */
14240 (8680,0,8680,1,0),
14241 (8685,8680,8680,2,0),
14242 (8689,8685,8680,3,0),
14243 (11335,8689,8680,4,0),
14244 (11336,11335,8680,5,0),
14245 (11337,11336,8680,6,0),
14246 (26890,11337,8680,7,0),
14247 (57964,26890,8680,8,0),
14248 (57965,57964,8680,9,0),
14249 /* Magma Totam Passive */
14250 (8188,0,8188,1,0),
14251 (10582,8188,8188,2,0),
14252 (10583,10582,8188,3,0),
14253 (10584,10583,8188,4,0),
14254 (25551,10584,8188,5,0),
14255 (58733,25551,8188,6,0),
14256 (58736,58733,8188,7,0),
14257 /* Searing Totem Attack */
14258 (3606,0,3606,1,0),
14259 (6350,3606,3606,2,0),
14260 (6351,6350,3606,3,0),
14261 (6352,6351,3606,4,0),
14262 (10435,6352,3606,5,0),
14263 (10436,10435,3606,6,0),
14264 (25530,10436,3606,7,0),
14265 (58700,25530,3606,8,0),
14266 (58701,58700,3606,9,0),
14267 (58702,58701,3606,10,0),
14268 /* Wound Poison */
14269 (13218,0,13218,1,0),
14270 (13222,13218,13218,2,0),
14271 (13223,13222,13218,3,0),
14272 (13224,13223,13218,4,0),
14273 (27189,13224,13218,5,0),
14274 (57974,27189,13218,6,0),
14275 (57975,57974,13218,7,0),
14276 /*------------------
14277 --(6) Frost
14278 ------------------*/
14279 /*Blizzard*/
14280 (10,0,10,1,0),
14281 (6141,10,10,2,0),
14282 (8427,6141,10,3,0),
14283 (10185,8427,10,4,0),
14284 (10186,10185,10,5,0),
14285 (10187,10186,10,6,0),
14286 (27085,10187,10,7,0),
14287 (42939,27085,10,8,0),
14288 (42940,42939,10,9,0),
14289 /* Blizzard Triggered Spell */
14290 (42208,0,42208,1,0),
14291 (42209,42208,42208,2,0),
14292 (42210,42209,42208,3,0),
14293 (42211,42210,42208,4,0),
14294 (42212,42211,42208,5,0),
14295 (42213,42212,42208,6,0),
14296 (42198,42213,42208,7,0),
14297 (42937,42198,42208,8,0),
14298 (42938,42937,42208,9,0),
14299 /*ConeofCold*/
14300 (120,0,120,1,0),
14301 (8492,120,120,2,0),
14302 (10159,8492,120,3,0),
14303 (10160,10159,120,4,0),
14304 (10161,10160,120,5,0),
14305 (27087,10161,120,6,0),
14306 (42930,27087,120,7,0),
14307 (42931,42930,120,8,0),
14308 /*FrostArmor*/
14309 (168,0,168,1,0),
14310 (7300,168,168,2,0),
14311 (7301,7300,168,3,0),
14312 /*FrostNova*/
14313 (122,0,122,1,0),
14314 (865,122,122,2,0),
14315 (6131,865,122,3,0),
14316 (10230,6131,122,4,0),
14317 (27088,10230,122,5,0),
14318 (42917,27088,122,6,0),
14319 /*FrostWard*/
14320 (6143,0,6143,1,0),
14321 (8461,6143,6143,2,0),
14322 (8462,8461,6143,3,0),
14323 (10177,8462,6143,4,0),
14324 (28609,10177,6143,5,0),
14325 (32796,28609,6143,6,0),
14326 (43012,32796,6143,7,0),
14327 /*Frostbolt*/
14328 (116,0,116,1,0),
14329 (205,116,116,2,0),
14330 (837,205,116,3,0),
14331 (7322,837,116,4,0),
14332 (8406,7322,116,5,0),
14333 (8407,8406,116,6,0),
14334 (8408,8407,116,7,0),
14335 (10179,8408,116,8,0),
14336 (10180,10179,116,9,0),
14337 (10181,10180,116,10,0),
14338 (25304,10181,116,11,0),
14339 (27071,25304,116,12,0),
14340 (27072,27071,116,13,0),
14341 (38697,27072,116,14,0),
14342 (42841,38697,116,15,0),
14343 (42842,42841,116,16,0),
14344 /*IceArmor*/
14345 (7302,0,7302,1,0),
14346 (7320,7302,7302,2,0),
14347 (10219,7320,7302,3,0),
14348 (10220,10219,7302,4,0),
14349 (27124,10220,7302,5,0),
14350 (43008,27124,7302,6,0),
14351 /*IceBarrier*/
14352 (11426,0,11426,1,0),
14353 (13031,11426,11426,2,0),
14354 (13032,13031,11426,3,0),
14355 (13033,13032,11426,4,0),
14356 (27134,13033,11426,5,0),
14357 (33405,27134,11426,6,0),
14358 (43038,33405,11426,7,0),
14359 (43039,43038,11426,8,0),
14360 /*IceLance*/
14361 (30455,0,30455,1,0),
14362 (42913,30455,30455,2,0),
14363 (42914,42913,30455,3,0),
14364 /*------------------
14365 --(8)Fire
14366 ------------------*/
14367 /*Blast Wave*/
14368 (11113,0,11113,1,0),
14369 (13018,11113,11113,2,0),
14370 (13019,13018,11113,3,0),
14371 (13020,13019,11113,4,0),
14372 (13021,13020,11113,5,0),
14373 (27133,13021,11113,6,0),
14374 (33933,27133,11113,7,0),
14375 (42944,33933,11113,8,0),
14376 (42945,42944,11113,9,0),
14377 /*Dragon's Breath*/
14378 (31661,0,31661,1,0),
14379 (33041,31661,31661,2,0),
14380 (33042,33041,31661,3,0),
14381 (33043,33042,31661,4,0),
14382 (42949,33043,31661,5,0),
14383 (42950,42949,31661,6,0),
14384 /*Fire Blast*/
14385 (2136,0,2136,1,0),
14386 (2137,2136,2136,2,0),
14387 (2138,2137,2136,3,0),
14388 (8412,2138,2136,4,0),
14389 (8413,8412,2136,5,0),
14390 (10197,8413,2136,6,0),
14391 (10199,10197,2136,7,0),
14392 (27078,10199,2136,8,0),
14393 (27079,27078,2136,9,0),
14394 (42872,27079,2136,10,0),
14395 (42873,42872,2136,11,0),
14396 /*Fire Ward*/
14397 (543,0,543,1,0),
14398 (8457,543,543,2,0),
14399 (8458,8457,543,3,0),
14400 (10223,8458,543,4,0),
14401 (10225,10223,543,5,0),
14402 (27128,10225,543,6,0),
14403 (43010,27128,543,7,0),
14404 /*Fireball*/
14405 (133,0,133,1,0),
14406 (143,133,133,2,0),
14407 (145,143,133,3,0),
14408 (3140,145,133,4,0),
14409 (8400,3140,133,5,0),
14410 (8401,8400,133,6,0),
14411 (8402,8401,133,7,0),
14412 (10148,8402,133,8,0),
14413 (10149,10148,133,9,0),
14414 (10150,10149,133,10,0),
14415 (10151,10150,133,11,0),
14416 (25306,10151,133,12,0),
14417 (27070,25306,133,13,0),
14418 (38692,27070,133,14,0),
14419 (42832,38692,133,15,0),
14420 (42833,42832,133,16,0),
14421 /*Fiery Payback*/
14422 (64353,0,64353,1,0),
14423 (64357,64353,64353,2,0),
14424 /*Flamestrike*/
14425 (2120,0,2120,1,0),
14426 (2121,2120,2120,2,0),
14427 (8422,2121,2120,3,0),
14428 (8423,8422,2120,4,0),
14429 (10215,8423,2120,5,0),
14430 (10216,10215,2120,6,0),
14431 (27086,10216,2120,7,0),
14432 (42925,27086,2120,8,0),
14433 (42926,42925,2120,9,0),
14434 /*Frostfire Bolt*/
14435 (44614,0,44614,1,0),
14436 (47610,44614,44614,2,0),
14437 /*Living Bomb*/
14438 (44457,0,44457,1,0),
14439 (55359,44457,44457,2,0),
14440 (55360,55359,44457,3,0),
14441 /*Molten Armor*/
14442 (30482,0,30482,1,0),
14443 (43045,30482,30482,2,0),
14444 (43046,43045,30482,3,0),
14445 /* Molten Armor Triggered */
14446 (34913,0,34913,1,0),
14447 (43043,34913,34913,2,0),
14448 (43044,43043,34913,3,0),
14449 /*Pyroblast*/
14450 (11366,0,11366,1,0),
14451 (12505,11366,11366,2,0),
14452 (12522,12505,11366,3,0),
14453 (12523,12522,11366,4,0),
14454 (12524,12523,11366,5,0),
14455 (12525,12524,11366,6,0),
14456 (12526,12525,11366,7,0),
14457 (18809,12526,11366,8,0),
14458 (27132,18809,11366,9,0),
14459 (33938,27132,11366,10,0),
14460 (42890,33938,11366,11,0),
14461 (42891,42890,11366,12,0),
14462 /*Scorch*/
14463 (2948,0,2948,1,0),
14464 (8444,2948,2948,2,0),
14465 (8445,8444,2948,3,0),
14466 (8446,8445,2948,4,0),
14467 (10205,8446,2948,5,0),
14468 (10206,10205,2948,6,0),
14469 (10207,10206,2948,7,0),
14470 (27073,10207,2948,8,0),
14471 (27074,27073,2948,9,0),
14472 (42858,27074,2948,10,0),
14473 (42859,42858,2948,11,0),
14474 /*------------------
14475 --(26)Arms
14476 ------------------*/
14477 /*Charge*/
14478 (100,0,100,1,0),
14479 (6178,100,100,2,0),
14480 (11578,6178,100,3,0),
14481 /*HeroicStrike*/
14482 (78,0,78,1,0),
14483 (284,78,78,2,0),
14484 (285,284,78,3,0),
14485 (1608,285,78,4,0),
14486 (11564,1608,78,5,0),
14487 (11565,11564,78,6,0),
14488 (11566,11565,78,7,0),
14489 (11567,11566,78,8,0),
14490 (25286,11567,78,9,0),
14491 (29707,25286,78,10,0),
14492 (30324,29707,78,11,0),
14493 (47449,30324,78,12,0),
14494 (47450,47449,78,13,0),
14495 /*MortalStrike*/
14496 (12294,0,12294,1,0),
14497 (21551,12294,12294,2,0),
14498 (21552,21551,12294,3,0),
14499 (21553,21552,12294,4,0),
14500 (25248,21553,12294,5,0),
14501 (30330,25248,12294,6,0),
14502 (47485,30330,12294,7,0),
14503 (47486,47485,12294,8,0),
14504 /*Rend*/
14505 (772,0,772,1,0),
14506 (6546,772,772,2,0),
14507 (6547,6546,772,3,0),
14508 (6548,6547,772,4,0),
14509 (11572,6548,772,5,0),
14510 (11573,11572,772,6,0),
14511 (11574,11573,772,7,0),
14512 (25208,11574,772,8,0),
14513 (46845,25208,772,9,0),
14514 (47465,46845,772,10,0),
14515 /*Taste for Blood*/
14516 (56636,0,56636,1,0),
14517 (56637,56636,56636,2,0),
14518 (56638,56637,56636,3,0),
14519 /*Thunder Clap*/
14520 (6343,0,6343,1,0),
14521 (8198,6343,6343,2,0),
14522 (8204,8198,6343,3,0),
14523 (8205,8204,6343,4,0),
14524 (11580,8205,6343,5,0),
14525 (11581,11580,6343,6,0),
14526 (25264,11581,6343,7,0),
14527 (47501,25264,6343,8,0),
14528 (47502,47501,6343,9,0),
14529 /*------------------
14530 -- (38) Combat (Rogue)
14531 ------------------*/
14532 /*Backstab*/
14533 (53,0,53,1,0),
14534 (2589,53,53,2,0),
14535 (2590,2589,53,3,0),
14536 (2591,2590,53,4,0),
14537 (8721,2591,53,5,0),
14538 (11279,8721,53,6,0),
14539 (11280,11279,53,7,0),
14540 (11281,11280,53,8,0),
14541 (25300,11281,53,9,0),
14542 (26863,25300,53,10,0),
14543 (48656,26863,53,11,0),
14544 (48657,48656,53,12,0),
14545 /*Evasion*/
14546 (5277,0,5277,1,0),
14547 (26669,5277,5277,2,0),
14548 /*Feint*/
14549 (1966,0,1966,1,0),
14550 (6768,1966,1966,2,0),
14551 (8637,6768,1966,3,0),
14552 (11303,8637,1966,4,0),
14553 (25302,11303,1966,5,0),
14554 (27448,25302,1966,6,0),
14555 (48658,27448,1966,7,0),
14556 (48659,48658,1966,8,0),
14557 /*Sinister Strike*/
14558 (1752,0,1752,1,0),
14559 (1757,1752,1752,2,0),
14560 (1758,1757,1752,3,0),
14561 (1759,1758,1752,4,0),
14562 (1760,1759,1752,5,0),
14563 (8621,1760,1752,6,0),
14564 (11293,8621,1752,7,0),
14565 (11294,11293,1752,8,0),
14566 (26861,11294,1752,9,0),
14567 (26862,26861,1752,10,0),
14568 (48637,26862,1752,11,0),
14569 (48638,48637,1752,12,0),
14570 /*Sprint*/
14571 (2983,0,2983,1,0),
14572 (8696,2983,2983,2,0),
14573 (11305,8696,2983,3,0),
14574 /*------------------
14575 --(39)Subtlety
14576 ------------------*/
14577 /*Hemorrhage*/
14578 (16511,0,16511,1,0),
14579 (17347,16511,16511,2,0),
14580 (17348,17347,16511,3,0),
14581 (26864,17348,16511,4,0),
14582 (48660,26864,16511,5,0),
14583 /*Sap*/
14584 (6770,0,6770,1,0),
14585 (2070,6770,6770,2,0),
14586 (11297,2070,6770,3,0),
14587 (51724,11297,6770,4,0),
14588 /*Stealth*/
14589 (1784,0,1784,1,0),
14590 (1785,1784,1784,2,0),
14591 (1786,1785,1784,3,0),
14592 (1787,1786,1784,4,0),
14593 /*Vanish*/
14594 (1856,0,1856,1,0),
14595 (1857,1856,1856,2,0),
14596 (26889,1857,1856,3,0),
14597 /*------------------
14598 -- (50) Beast Mastery
14599 ------------------*/
14600 /*Aspect of the Hawk*/
14601 (13165,0,13165,1,0),
14602 (14318,13165,13165,2,0),
14603 (14319,14318,13165,3,0),
14604 (14320,14319,13165,4,0),
14605 (14321,14320,13165,5,0),
14606 (14322,14321,13165,6,0),
14607 (25296,14322,13165,7,0),
14608 (27044,25296,13165,8,0),
14609 /*Aspect of the Wild*/
14610 (20043,0,20043,1,0),
14611 (20190,20043,20043,2,0),
14612 (27045,20190,20043,3,0),
14613 (49071,27045,20043,4,0),
14614 /*MendPet*/
14615 (136,0,136,1,0),
14616 (3111,136,136,2,0),
14617 (3661,3111,136,3,0),
14618 (3662,3661,136,4,0),
14619 (13542,3662,136,5,0),
14620 (13543,13542,136,6,0),
14621 (13544,13543,136,7,0),
14622 (27046,13544,136,8,0),
14623 (48989,27046,136,9,0),
14624 (48990,48989,136,10,0),
14625 /*ScareBeast*/
14626 (1513,0,1513,1,0),
14627 (14326,1513,1513,2,0),
14628 (14327,14326,1513,3,0),
14629 /*------------------
14630 --(51)Survival
14631 ------------------*/
14632 /*Counterattack*/
14633 (19306,0,19306,1,0),
14634 (20909,19306,19306,2,0),
14635 (20910,20909,19306,3,0),
14636 (27067,20910,19306,4,0),
14637 (48998,27067,19306,5,0),
14638 (48999,48998,19306,6,0),
14639 /*Entrapment*/
14640 (19184,0,19184,1,0),
14641 (19387,19184,19184,2,0),
14642 (19388,19387,19184,3,0),
14643 /*ExplosiveShot*/
14644 (53301,0,53301,1,0),
14645 (60051,53301,53301,2,0),
14646 (60052,60051,53301,3,0),
14647 (60053,60052,53301,4,0),
14648 /*ExplosiveTrap*/
14649 (13813,0,13813,1,0),
14650 (14316,13813,13813,2,0),
14651 (14317,14316,13813,3,0),
14652 (27025,14317,13813,4,0),
14653 (49066,27025,13813,5,0),
14654 (49067,49066,13813,6,0),
14655 /*FreezingTrap*/
14656 (1499,0,1499,1,0),
14657 (14310,1499,1499,2,0),
14658 (14311,14310,1499,3,0),
14659 /*Hunting Party*/
14660 (53290,0,53290,1,0),
14661 (53291,53290,53290,2,0),
14662 (53292,53291,53290,3,0),
14663 /*ImmolationTrap*/
14664 (13795,0,13795,1,0),
14665 (14302,13795,13795,2,0),
14666 (14303,14302,13795,3,0),
14667 (14304,14303,13795,4,0),
14668 (14305,14304,13795,5,0),
14669 (27023,14305,13795,6,0),
14670 (49055,27023,13795,7,0),
14671 (49056,49055,13795,8,0),
14672 /**Master Tactician*/
14673 (34506,0,34506,1,0),
14674 (34507,34506,34506,2,0),
14675 (34508,34507,34506,3,0),
14676 (34838,34508,34506,4,0),
14677 (34839,34838,34506,5,0),
14678 /*MongooseBite*/
14679 (1495,0,1495,1,0),
14680 (14269,1495,1495,2,0),
14681 (14270,14269,1495,3,0),
14682 (14271,14270,1495,4,0),
14683 (36916,14271,1495,5,0),
14684 (53339,36916,1495,6,0),
14685 /*RaptorStrike*/
14686 (2973,0,2973,1,0),
14687 (14260,2973,2973,2,0),
14688 (14261,14260,2973,3,0),
14689 (14262,14261,2973,4,0),
14690 (14263,14262,2973,5,0),
14691 (14264,14263,2973,6,0),
14692 (14265,14264,2973,7,0),
14693 (14266,14265,2973,8,0),
14694 (27014,14266,2973,9,0),
14695 (48995,27014,2973,10,0),
14696 (48996,48995,2973,11,0),
14697 /*WyvernSting*/
14698 (19386,0,19386,1,0),
14699 (24132,19386,19386,2,0),
14700 (24133,24132,19386,3,0),
14701 (27068,24133,19386,4,0),
14702 (49011,27068,19386,5,0),
14703 (49012,49011,19386,6,0),
14704 /*------------------
14705 -- (56) Holy (Priest)
14706 ------------------*/
14707 /*Binding Heal*/
14708 (32546,0,32546,1,0),
14709 (48119,32546,32546,2,0),
14710 (48120,48119,32546,3,0),
14711 /*Body and Soul*/
14712 (64127,0,64127,1,0),
14713 (64129,64127,64127,2,0),
14714 /*Blessed Recovery Proc*/
14715 (27813,0,27813,1,0),
14716 (27817,27813,27813,2,0),
14717 (27818,27817,27813,3,0),
14718 /*Circle of Healing*/
14719 (34861,0,34861,1,0),
14720 (34863,34861,34861,2,0),
14721 (34864,34863,34861,3,0),
14722 (34865,34864,34861,4,0),
14723 (34866,34865,34861,5,0),
14724 (48088,34866,34861,6,0),
14725 (48089,48088,34861,7,0),
14726 /*Desperate Prayer*/
14727 (19236,0,19236,1,0),
14728 (19238,19236,19236,2,0),
14729 (19240,19238,19236,3,0),
14730 (19241,19240,19236,4,0),
14731 (19242,19241,19236,5,0),
14732 (19243,19242,19236,6,0),
14733 (25437,19243,19236,7,0),
14734 (48172,25437,19236,8,0),
14735 (48173,48172,19236,9,0),
14736 /*Empowered Renew*/
14737 (63534,0,63534,1,0),
14738 (63542,63534,63534,2,0),
14739 (63543,63542,63534,3,0),
14740 /*Flash Heal*/
14741 (2061,0,2061,1,0),
14742 (9472,2061,2061,2,0),
14743 (9473,9472,2061,3,0),
14744 (9474,9473,2061,4,0),
14745 (10915,9474,2061,5,0),
14746 (10916,10915,2061,6,0),
14747 (10917,10916,2061,7,0),
14748 (25233,10917,2061,8,0),
14749 (25235,25233,2061,9,0),
14750 (48070,25235,2061,10,0),
14751 (48071,48070,2061,11,0),
14752 /*Greater Heal*/
14753 (2060,0,2060,1,0),
14754 (10963,2060,2060,2,0),
14755 (10964,10963,2060,3,0),
14756 (10965,10964,2060,4,0),
14757 (25314,10965,2060,5,0),
14758 (25210,25314,2060,6,0),
14759 (25213,25210,2060,7,0),
14760 (48062,25213,2060,8,0),
14761 (48063,48062,2060,9,0),
14762 /*Heal*/
14763 (2054,0,2054,1,0),
14764 (2055,2054,2054,2,0),
14765 (6063,2055,2054,3,0),
14766 (6064,6063,2054,4,0),
14767 /*Holy Fire*/
14768 (14914,0,14914,1,0),
14769 (15262,14914,14914,2,0),
14770 (15263,15262,14914,3,0),
14771 (15264,15263,14914,4,0),
14772 (15265,15264,14914,5,0),
14773 (15266,15265,14914,6,0),
14774 (15267,15266,14914,7,0),
14775 (15261,15267,14914,8,0),
14776 (25384,15261,14914,9,0),
14777 (48134,25384,14914,10,0),
14778 (48135,48134,14914,11,0),
14779 /*Holy Nova*/
14780 (15237,0,15237,1,0),
14781 (15430,15237,15237,2,0),
14782 (15431,15430,15237,3,0),
14783 (27799,15431,15237,4,0),
14784 (27800,27799,15237,5,0),
14785 (27801,27800,15237,6,0),
14786 (25331,27801,15237,7,0),
14787 (48077,25331,15237,8,0),
14788 (48078,48077,15237,9,0),
14789 /* Holy Nova Heal */
14790 (23455,0,23455,1,0),
14791 (23458,23455,23455,2,0),
14792 (23459,23458,23455,3,0),
14793 (27803,23459,23455,4,0),
14794 (27804,27803,23455,5,0),
14795 (27805,27804,23455,6,0),
14796 (25329,27805,23455,7,0),
14797 /*Lesser Heal*/
14798 (2050,0,2050,1,0),
14799 (2052,2050,2050,2,0),
14800 (2053,2052,2050,3,0),
14801 /*Lightwell*/
14802 (724,0,724,1,0),
14803 (27870,724,724,2,0),
14804 (27871,27870,724,3,0),
14805 (28275,27871,724,4,0),
14806 (48086,28275,724,5,0),
14807 (48087,48086,724,6,0),
14808 /*Prayer of Healing*/
14809 (596,0,596,1,0),
14810 (996,596,596,2,0),
14811 (10960,996,596,3,0),
14812 (10961,10960,596,4,0),
14813 (25316,10961,596,5,0),
14814 (25308,25316,596,6,0),
14815 (48072,25308,596,7,0),
14816 /*Prayer of Mending*/
14817 (33076,0,33076,1,0),
14818 (48112,33076,33076,2,0),
14819 (48113,48112,33076,3,0),
14820 /*Renew*/
14821 (139,0,139,1,0),
14822 (6074,139,139,2,0),
14823 (6075,6074,139,3,0),
14824 (6076,6075,139,4,0),
14825 (6077,6076,139,5,0),
14826 (6078,6077,139,6,0),
14827 (10927,6078,139,7,0),
14828 (10928,10927,139,8,0),
14829 (10929,10928,139,9,0),
14830 (25315,10929,139,10,0),
14831 (25221,25315,139,11,0),
14832 (25222,25221,139,12,0),
14833 (48067,25222,139,13,0),
14834 (48068,48067,139,14,0),
14835 /*Resurrection*/
14836 (2006,0,2006,1,0),
14837 (2010,2006,2006,2,0),
14838 (10880,2010,2006,3,0),
14839 (10881,10880,2006,4,0),
14840 (20770,10881,2006,5,0),
14841 (25435,20770,2006,6,0),
14842 (48171,25435,2006,7,0),
14843 /*Serendipity*/
14844 (63730,0,63730,1,0),
14845 (63733,63730,63730,2,0),
14846 (63737,63733,63730,3,0),
14847 /*Smite*/
14848 (585,0,585,1,0),
14849 (591,585,585,2,0),
14850 (598,591,585,3,0),
14851 (984,598,585,4,0),
14852 (1004,984,585,5,0),
14853 (6060,1004,585,6,0),
14854 (10933,6060,585,7,0),
14855 (10934,10933,585,8,0),
14856 (25363,10934,585,9,0),
14857 (25364,25363,585,10,0),
14858 (48122,25364,585,11,0),
14859 (48123,48122,585,12,0),
14860 /*------------------
14861 -- (78) Shadow Magic
14862 ------------------*/
14863 /*Devouring Plague*/
14864 (2944,0,2944,1,0),
14865 (19276,2944,2944,2,0),
14866 (19277,19276,2944,3,0),
14867 (19278,19277,2944,4,0),
14868 (19279,19278,2944,5,0),
14869 (19280,19279,2944,6,0),
14870 (25467,19280,2944,7,0),
14871 (48299,25467,2944,8,0),
14872 (48300,48299,2944,9,0),
14873 /*Improved Devouring Plague*/
14874 (63625,0,63625,1,0),
14875 (63626,63625,63625,2,0),
14876 (63627,63626,63625,3,0),
14877 /*Improved Shadowform*/
14878 (47569,0,47569,1,0),
14879 (47570,47569,47569,2,0),
14880 /*Mind Blast*/
14881 (8092,0,8092,1,0),
14882 (8102,8092,8092,2,0),
14883 (8103,8102,8092,3,0),
14884 (8104,8103,8092,4,0),
14885 (8105,8104,8092,5,0),
14886 (8106,8105,8092,6,0),
14887 (10945,8106,8092,7,0),
14888 (10946,10945,8092,8,0),
14889 (10947,10946,8092,9,0),
14890 (25372,10947,8092,10,0),
14891 (25375,25372,8092,11,0),
14892 (48126,25375,8092,12,0),
14893 (48127,48126,8092,13,0),
14894 /*Mind Flay*/
14895 (15407,0,15407,1,0),
14896 (17311,15407,15407,2,0),
14897 (17312,17311,15407,3,0),
14898 (17313,17312,15407,4,0),
14899 (17314,17313,15407,5,0),
14900 (18807,17314,15407,6,0),
14901 (25387,18807,15407,7,0),
14902 (48155,25387,15407,8,0),
14903 (48156,48155,15407,9,0),
14904 /*Mind Sear*/
14905 (48045,0,48045,1,0),
14906 (53023,48045,48045,2,0),
14907 /* Mind Sear Trigger */
14908 (49821,0,49821,1,0),
14909 (53022,49821,49821,2,0),
14910 /*MindVision*/
14911 (2096,0,2096,1,0),
14912 (10909,2096,2096,2,0),
14913 /*Prayer of Shadow Protection*/
14914 (27683,0,27683,1,0),
14915 (39374,27683,27683,2,0),
14916 (48170,39374,27683,3,0),
14917 /*PsychicScream*/
14918 (8122,0,8122,1,0),
14919 (8124,8122,8122,2,0),
14920 (10888,8124,8122,3,0),
14921 (10890,10888,8122,4,0),
14922 /*Shadow Protection*/
14923 (976,0,976,1,0),
14924 (10957,976,976,2,0),
14925 (10958,10957,976,3,0),
14926 (25433,10958,976,4,0),
14927 (48169,25433,976,5,0),
14928 /*ShadowWord:Death*/
14929 (32379,0,32379,1,0),
14930 (32996,32379,32379,2,0),
14931 (48157,32996,32379,3,0),
14932 (48158,48157,32379,4,0),
14933 /*ShadowWord:Pain*/
14934 (589,0,589,1,0),
14935 (594,589,589,2,0),
14936 (970,594,589,3,0),
14937 (992,970,589,4,0),
14938 (2767,992,589,5,0),
14939 (10892,2767,589,6,0),
14940 (10893,10892,589,7,0),
14941 (10894,10893,589,8,0),
14942 (25367,10894,589,9,0),
14943 (25368,25367,589,10,0),
14944 (48124,25368,589,11,0),
14945 (48125,48124,589,12,0),
14946 /*Vampiric Touch*/
14947 (34914,0,34914,1,0),
14948 (34916,34914,34914,2,0),
14949 (34917,34916,34914,3,0),
14950 (48159,34917,34914,4,0),
14951 (48160,48159,34914,5,0),
14952 /*------------------
14953 -- (129) First Aid
14954 ------------------*/
14955 /*First Aid*/
14956 (3273,0,3273,1,0),
14957 (3274,3273,3273,2,0),
14958 (7924,3274,3273,3,0),
14959 (10846,7924,3273,4,0),
14960 (27028,10846,3273,5,0),
14961 (45542,27028,3273,6,0),
14962 /*------------------
14963 -- (134) Feral Combat (Druid)
14964 ------------------*/
14965 /*Bash*/
14966 (5211,0,5211,1,0),
14967 (6798,5211,5211,2,0),
14968 (8983,6798,5211,3,0),
14969 /*Bear Form*/
14970 (5487,0,5487,1,0),
14971 (9634,5487,5487,2,0),
14972 /*Claw*/
14973 (1082,0,1082,1,0),
14974 (3029,1082,1082,2,0),
14975 (5201,3029,1082,3,0),
14976 (9849,5201,1082,4,0),
14977 (9850,9849,1082,5,0),
14978 (27000,9850,1082,6,0),
14979 (48569,27000,1082,7,0),
14980 (48570,48569,1082,8,0),
14981 /*Cower*/
14982 (8998,0,8998,1,0),
14983 (9000,8998,8998,2,0),
14984 (9892,9000,8998,3,0),
14985 (31709,9892,8998,4,0),
14986 (27004,31709,8998,5,0),
14987 (48575,27004,8998,6,0),
14988 /*Dash*/
14989 (1850,0,1850,1,0),
14990 (9821,1850,1850,2,0),
14991 (33357,9821,1850,3,0),
14992 /*Demoralizing Roar*/
14993 (99,0,99,1,0),
14994 (1735,99,99,2,0),
14995 (9490,1735,99,3,0),
14996 (9747,9490,99,4,0),
14997 (9898,9747,99,5,0),
14998 (26998,9898,99,6,0),
14999 (48559,26998,99,7,0),
15000 (48560,48559,99,8,0),
15001 /*Ferocious Bite*/
15002 (22568,0,22568,1,0),
15003 (22827,22568,22568,2,0),
15004 (22828,22827,22568,3,0),
15005 (22829,22828,22568,4,0),
15006 (31018,22829,22568,5,0),
15007 (24248,31018,22568,6,0),
15008 (48576,24248,22568,7,0),
15009 (48577,48576,22568,8,0),
15010 /*Flight Form*/
15011 (33943,0,33943,1,0),
15012 (40120,33943,33943,2,0),
15013 /*Lacerate*/
15014 (33745,0,33745,1,0),
15015 (48567,33745,33745,2,0),
15016 (48568,48567,33745,3,0),
15017 /*Maim*/
15018 (22570,0,22570,1,0),
15019 (49802,22570,22570,2,0),
15020 /*Mangle-Bear*/
15021 (33878,0,33878,1,0),
15022 (33986,33878,33878,2,0),
15023 (33987,33986,33878,3,0),
15024 (48563,33987,33878,4,0),
15025 (48564,48563,33878,5,0),
15026 /*Mangle-Cat*/
15027 (33876,0,33876,1,0),
15028 (33982,33876,33876,2,0),
15029 (33983,33982,33876,3,0),
15030 (48565,33983,33876,4,0),
15031 (48566,48565,33876,5,0),
15032 /*Maul*/
15033 (6807,0,6807,1,0),
15034 (6808,6807,6807,2,0),
15035 (6809,6808,6807,3,0),
15036 (8972,6809,6807,4,0),
15037 (9745,8972,6807,5,0),
15038 (9880,9745,6807,6,0),
15039 (9881,9880,6807,7,0),
15040 (26996,9881,6807,8,0),
15041 (48479,26996,6807,9,0),
15042 (48480,48479,6807,10,0),
15043 /*Pounce*/
15044 (9005,0,9005,1,0),
15045 (9823,9005,9005,2,0),
15046 (9827,9823,9005,3,0),
15047 (27006,9827,9005,4,0),
15048 (49803,27006,9005,5,0),
15049 /*Prowl*/
15050 (5215,0,5215,1,0),
15051 (6783,5215,5215,2,0),
15052 (9913,6783,5215,3,0),
15053 /*Rake*/
15054 (1822,0,1822,1,0),
15055 (1823,1822,1822,2,0),
15056 (1824,1823,1822,3,0),
15057 (9904,1824,1822,4,0),
15058 (27003,9904,1822,5,0),
15059 (48573,27003,1822,6,0),
15060 (48574,48573,1822,7,0),
15061 /*Ravage*/
15062 (6785,0,6785,1,0),
15063 (6787,6785,6785,2,0),
15064 (9866,6787,6785,3,0),
15065 (9867,9866,6785,4,0),
15066 (27005,9867,6785,5,0),
15067 (48578,27005,6785,6,0),
15068 (48579,48578,6785,7,0),
15069 /*Rip*/
15070 (1079,0,1079,1,0),
15071 (9492,1079,1079,2,0),
15072 (9493,9492,1079,3,0),
15073 (9752,9493,1079,4,0),
15074 (9894,9752,1079,5,0),
15075 (9896,9894,1079,6,0),
15076 (27008,9896,1079,7,0),
15077 (49799,27008,1079,8,0),
15078 (49800,49799,1079,9,0),
15079 /*Shred*/
15080 (5221,0,5221,1,0),
15081 (6800,5221,5221,2,0),
15082 (8992,6800,5221,3,0),
15083 (9829,8992,5221,4,0),
15084 (9830,9829,5221,5,0),
15085 (27001,9830,5221,6,0),
15086 (27002,27001,5221,7,0),
15087 (48571,27002,5221,8,0),
15088 (48572,48571,5221,9,0),
15089 /*Swipe*/
15090 (779,0,779,1,0),
15091 (780,779,779,2,0),
15092 (769,780,779,3,0),
15093 (9754,769,779,4,0),
15094 (9908,9754,779,5,0),
15095 (26997,9908,779,6,0),
15096 (48561,26997,779,7,0),
15097 (48562,48561,779,8,0),
15098 /*Tiger's Fury*/
15099 (5217,0,5217,1,0),
15100 (6793,5217,5217,2,0),
15101 (9845,6793,5217,3,0),
15102 (9846,9845,5217,4,0),
15103 (50212,9846,5217,5,0),
15104 (50213,50212,5217,6,0),
15105 /*------------------
15106 --(163)Marksmanship
15107 ------------------*/
15108 /*Aimed Shot*/
15109 (19434,0,19434,1,0),
15110 (20900,19434,19434,2,0),
15111 (20901,20900,19434,3,0),
15112 (20902,20901,19434,4,0),
15113 (20903,20902,19434,5,0),
15114 (20904,20903,19434,6,0),
15115 (27065,20904,19434,7,0),
15116 (49049,27065,19434,8,0),
15117 (49050,49049,19434,9,0),
15118 /*Arcane Shot*/
15119 (3044,0,3044,1,0),
15120 (14281,3044,3044,2,0),
15121 (14282,14281,3044,3,0),
15122 (14283,14282,3044,4,0),
15123 (14284,14283,3044,5,0),
15124 (14285,14284,3044,6,0),
15125 (14286,14285,3044,7,0),
15126 (14287,14286,3044,8,0),
15127 (27019,14287,3044,9,0),
15128 (49044,27019,3044,10,0),
15129 (49045,49044,3044,11,0),
15130 /*Concussive Barrage*/
15131 (35100,0,35100,1,0),
15132 (35102,35100,35100,2,0),
15133 /*Hunter's Mark*/
15134 (1130,0,1130,1,0),
15135 (14323,1130,1130,2,0),
15136 (14324,14323,1130,3,0),
15137 (14325,14324,1130,4,0),
15138 (53338,14325,1130,5,0),
15139 /*Kill Shot*/
15140 (53351,0,53351,1,0),
15141 (61005,53351,53351,2,0),
15142 (61006,61005,53351,3,0),
15143 /*Multi-Shot*/
15144 (2643,0,2643,1,0),
15145 (14288,2643,2643,2,0),
15146 (14289,14288,2643,3,0),
15147 (14290,14289,2643,4,0),
15148 (25294,14290,2643,5,0),
15149 (27021,25294,2643,6,0),
15150 (49047,27021,2643,7,0),
15151 (49048,49047,2643,8,0),
15152 /*SerpentSting*/
15153 (1978,0,1978,1,0),
15154 (13549,1978,1978,2,0),
15155 (13550,13549,1978,3,0),
15156 (13551,13550,1978,4,0),
15157 (13552,13551,1978,5,0),
15158 (13553,13552,1978,6,0),
15159 (13554,13553,1978,7,0),
15160 (13555,13554,1978,8,0),
15161 (25295,13555,1978,9,0),
15162 (27016,25295,1978,10,0),
15163 (49000,27016,1978,11,0),
15164 (49001,49000,1978,12,0),
15165 /*SteadyShot*/
15166 (56641,0,56641,1,0),
15167 (34120,56641,56641,2,0),
15168 (49051,34120,56641,3,0),
15169 (49052,49051,56641,4,0),
15170 /*Volley*/
15171 (1510,0,1510,1,0),
15172 (14294,1510,1510,2,0),
15173 (14295,14294,1510,3,0),
15174 (27022,14295,1510,4,0),
15175 (58431,27022,1510,5,0),
15176 (58434,58431,1510,6,0),
15177 /*------------------
15178 -- (164) Blacksmithing
15179 ------------------*/
15180 /*Blacksmithing*/
15181 (2018,0,2018,1,0),
15182 (3100,2018,2018,2,0),
15183 (3538,3100,2018,3,0),
15184 (9785,3538,2018,4,0),
15185 (9787,9785,2018,5,0),
15186 (9788,9785,2018,5,0),
15187 (29844,9785,2018,5,0),
15188 (17039,9787,2018,6,0),
15189 (17040,9787,2018,6,0),
15190 (17041,9787,2018,6,0),
15191 (51300,29844,2018,6,0),
15192 /*------------------
15193 -- (165) Leatherworking
15194 ------------------*/
15195 /*Leatherworking*/
15196 (2108,0,2108,1,0),
15197 (3104,2108,2108,2,0),
15198 (3811,3104,2108,3,0),
15199 (10662,3811,2108,4,0),
15200 (10656,10662,2108,5,0),
15201 (10658,10662,2108,5,0),
15202 (10660,10662,2108,5,0),
15203 (32549,10662,2108,5,0),
15204 (51302,32549,2108,6,0),
15205 /*------------------
15206 -- (171) Alchemy
15207 ------------------*/
15208 /* Alchemy */
15209 (2259,0,2259,1,0),
15210 (3101,2259,2259,2,0),
15211 (3464,3101,2259,3,0),
15212 (11611,3464,2259,4,0),
15213 (28596,11611,2259,5,0),
15214 (28672,11611,2259,5,0),
15215 (28675,11611,2259,5,0),
15216 (28677,11611,2259,5,0),
15217 (51304,28596,2259,6,0),
15218 /*------------------
15219 -- (182) Herbalizm
15220 ------------------*/
15221 /*Herb Gathering*/
15222 (2366,0,2366,1,0),
15223 (2368,2366,2366,2,0),
15224 (3570,2368,2366,3,0),
15225 (11993,3570,2366,4,0),
15226 (28695,11993,2366,5,0),
15227 (50300,28695,2366,6,0),
15228 /*Lifeblood*/
15229 (55428,0,55428,1,0),
15230 (55480,55428,55428,2,0),
15231 (55500,55480,55428,3,0),
15232 (55501,55500,55428,4,0),
15233 (55502,55501,55428,5,0),
15234 (55503,55502,55428,6,0),
15235 /*------------------
15236 -- (184) Retribution (Paladin)
15237 ------------------*/
15238 /*Blessingof Might*/
15239 (19740,0,19740,1,0),
15240 (19834,19740,19740,2,0),
15241 (19835,19834,19740,3,0),
15242 (19836,19835,19740,4,0),
15243 (19837,19836,19740,5,0),
15244 (19838,19837,19740,6,0),
15245 (25291,19838,19740,7,0),
15246 (27140,25291,19740,8,0),
15247 (48931,27140,19740,9,0),
15248 (48932,48931,19740,10,0),
15249 /*Greater Blessing of Might*/
15250 (25782,0,25782,1,19838),
15251 (25916,25782,25782,2,25291),
15252 (27141,25916,25782,3,27140),
15253 (48933,27141,25782,4,48931),
15254 (48934,48933,25782,5,48932),
15255 /*Hammer of Wrath*/
15256 (24275,0,24275,1,0),
15257 (24274,24275,24275,2,0),
15258 (24239,24274,24275,3,0),
15259 (27180,24239,24275,4,0),
15260 (48805,27180,24275,5,0),
15261 (48806,48805,24275,6,0),
15262 /*Heart of the Crusader*/
15263 (20335, 0, 20335, 1, 0),
15264 (20336, 20335, 20335, 2, 0),
15265 (20337, 20336, 20335, 3, 0),
15266 /*Retribution Aura*/
15267 (7294,0,7294,1,0),
15268 (10298,7294,7294,2,0),
15269 (10299,10298,7294,3,0),
15270 (10300,10299,7294,4,0),
15271 (10301,10300,7294,5,0),
15272 (27150,10301,7294,6,0),
15273 (54043,27150,7294,7,0),
15274 /*Righteous Vengeance*/
15275 (53380,0,53380,1,0),
15276 (53381,53380,53380,2,0),
15277 (53382,53381,53380,3,0),
15278 /*The Art of War*/
15279 (53486,0,53486,1,0),
15280 (53488,53486,53486,2,0),
15281 /*------------------
15282 -- (185) Cooking
15283 ------------------*/
15284 /*Cooking*/
15285 (2550,0,2550,1,0),
15286 (3102,2550,2550,2,0),
15287 (3413,3102,2550,3,0),
15288 (18260,3413,2550,4,0),
15289 (33359,18260,2550,5,0),
15290 (51296,33359,2550,6,0),
15291 /*------------------
15292 -- (186) Mining
15293 ------------------*/
15294 /*Mining*/
15295 (2575,0,2575,1,0),
15296 (2576,2575,2575,2,0),
15297 (3564,2576,2575,3,0),
15298 (10248,3564,2575,4,0),
15299 (29354,10248,2575,5,0),
15300 (50310,29354,2575,6,0),
15301 /*Toughness*/
15302 (53120,0,53120,1,0),
15303 (53121,53120,53120,2,0),
15304 (53122,53121,53120,3,0),
15305 (53123,53122,53120,4,0),
15306 (53124,53123,53120,5,0),
15307 (53040,53124,53120,6,0),
15308 /*------------------
15309 -- (188) Pet - Imp
15310 ------------------*/
15311 /*Blood Pact*/
15312 (6307,0,6307,1,0),
15313 (7804,6307,6307,2,0),
15314 (7805,7804,6307,3,0),
15315 (11766,7805,6307,4,0),
15316 (11767,11766,6307,5,0),
15317 (27268,11767,6307,6,0),
15318 (47982,27268,6307,7,0),
15319 /*FireShield*/
15320 (2947,0,2947,1,0),
15321 (8316,2947,2947,2,0),
15322 (8317,8316,2947,3,0),
15323 (11770,8317,2947,4,0),
15324 (11771,11770,2947,5,0),
15325 (27269,11771,2947,6,0),
15326 (47983,27269,2947,7,0),
15327 /*Firebolt*/
15328 (3110,0,3110,1,0),
15329 (7799,3110,3110,2,0),
15330 (7800,7799,3110,3,0),
15331 (7801,7800,3110,4,0),
15332 (7802,7801,3110,5,0),
15333 (11762,7802,3110,6,0),
15334 (11763,11762,3110,7,0),
15335 (27267,11763,3110,8,0),
15336 (47964,27267,3110,9,0),
15337 /*------------------
15338 --(189)Pet-Felhunter
15339 ------------------*/
15340 /*Devour Magic*/
15341 (19505,0,19505,1,0),
15342 (19731,19505,19505,2,0),
15343 (19734,19731,19505,3,0),
15344 (19736,19734,19505,4,0),
15345 (27276,19736,19505,5,0),
15346 (27277,27276,19505,6,0),
15347 (48011,27277,19505,7,0),
15348 /*Fel Intelligence*/
15349 (54424,0,54424,1,0),
15350 (57564,54424,54424,2,0),
15351 (57565,57564,54424,3,0),
15352 (57566,57565,54424,4,0),
15353 (57567,57566,54424,5,0),
15354 /*Shadow Bite*/
15355 (54049,0,54049,1,0),
15356 (54050,54049,54049,2,0),
15357 (54051,54050,54049,3,0),
15358 (54052,54051,54049,4,0),
15359 (54053,54052,54049,5,0),
15360 /*Spell Lock*/
15361 (19244,0,19244,1,0),
15362 (19647,19244,19244,2,0),
15363 /*------------------
15364 -- (197) Tailoring
15365 ------------------*/
15366 /*Tailoring*/
15367 (3908,0,3908,1,0),
15368 (3909,3908,3908,2,0),
15369 (3910,3909,3908,3,0),
15370 (12180,3910,3908,4,0),
15371 (26790,12180,3908,5,0),
15372 (26797,12180,3908,5,0),
15373 (26798,12180,3908,5,0),
15374 (26801,12180,3908,5,0),
15375 (51309,26790,3908,6,0),
15376 /*------------------
15377 -- (202) Engineering
15378 ------------------*/
15379 /*Engineering*/
15380 (4036,0,4036,1,0),
15381 (4037,4036,4036,2,0),
15382 (4038,4037,4036,3,0),
15383 (12656,4038,4036,4,0),
15384 (20219,12656,4036,5,0),
15385 (20222,12656,4036,5,0),
15386 (30350,12656,4036,5,0),
15387 (51306,30350,4036,6,0),
15388 /*------------------
15389 --(203)Pet-Spider
15390 --(208)Pet-Wolf
15391 --(212)Pet-Crocolisk
15392 --(251)Pet-Turtle
15393 --(653)Pet-Bat
15394 --(766)Pet-WarpStalker
15395 --(767)Pet-Ravager
15396 ------------------*/
15397 /*Bite*/
15398 (17253,0,17253,1,0),
15399 (17255,17253,17253,2,0),
15400 (17256,17255,17253,3,0),
15401 (17257,17256,17253,4,0),
15402 (17258,17257,17253,5,0),
15403 (17259,17258,17253,6,0),
15404 (17260,17259,17253,7,0),
15405 (17261,17260,17253,8,0),
15406 (27050,17261,17253,9,0),
15407 (52473,27050,17253,10,0),
15408 (52474,52473,17253,11,0),
15409 /*------------------
15410 -- (204) Pet - Voidwalker
15411 ------------------*/
15412 /*Consume Shadows*/
15413 (17767,0,17767,1,0),
15414 (17850,17767,17767,2,0),
15415 (17851,17850,17767,3,0),
15416 (17852,17851,17767,4,0),
15417 (17853,17852,17767,5,0),
15418 (17854,17853,17767,6,0),
15419 (27272,17854,17767,7,0),
15420 (47987,27272,17767,8,0),
15421 (47988,47987,17767,9,0),
15422 /*Sacrifice*/
15423 (7812,0,7812,1,0),
15424 (19438,7812,7812,2,0),
15425 (19440,19438,7812,3,0),
15426 (19441,19440,7812,4,0),
15427 (19442,19441,7812,5,0),
15428 (19443,19442,7812,6,0),
15429 (27273,19443,7812,7,0),
15430 (47985,27273,7812,8,0),
15431 (47986,47985,7812,9,0),
15432 /*Suffering*/
15433 (17735,0,17735,1,0),
15434 (17750,17735,17735,2,0),
15435 (17751,17750,17735,3,0),
15436 (17752,17751,17735,4,0),
15437 (27271,17752,17735,5,0),
15438 (33701,27271,17735,6,0),
15439 (47989,33701,17735,7,0),
15440 (47990,47989,17735,8,0),
15441 /*Torment*/
15442 (3716,0,3716,1,0),
15443 (7809,3716,3716,2,0),
15444 (7810,7809,3716,3,0),
15445 (7811,7810,3716,4,0),
15446 (11774,7811,3716,5,0),
15447 (11775,11774,3716,6,0),
15448 (27270,11775,3716,7,0),
15449 (47984,27270,3716,8,0),
15450 /*------------------
15451 --(205)Pet-Succubus
15452 ------------------*/
15453 /*LashofPain*/
15454 (7814,0,7814,1,0),
15455 (7815,7814,7814,2,0),
15456 (7816,7815,7814,3,0),
15457 (11778,7816,7814,4,0),
15458 (11779,11778,7814,5,0),
15459 (11780,11779,7814,6,0),
15460 (27274,11780,7814,7,0),
15461 (47991,27274,7814,8,0),
15462 (47992,47991,7814,9,0),
15463 /*SoothingKiss*/
15464 (6360,0,6360,1,0),
15465 (7813,6360,6360,2,0),
15466 (11784,7813,6360,3,0),
15467 (11785,11784,6360,4,0),
15468 (27275,11785,6360,5,0),
15469 /*------------------
15470 -- (208) Pet - Wolf
15471 ------------------*/
15472 /* Furious Howl */
15473 (24604,0,24604,1,0),
15474 (64491,24604,24604,2,0),
15475 (64492,64491,24604,3,0),
15476 (64493,64492,24604,4,0),
15477 (64494,64493,24604,5,0),
15478 (64495,64494,24604,6,0),
15479 /*------------------
15480 -- (209) Pet - Cat
15481 ------------------*/
15482 /*Prowl*/
15483 (24450,0,24450,1,0),
15484 (24452,24450,24450,2,0),
15485 (24453,24452,24450,3,0),
15486 /*Rake*/
15487 (59881,0,59881,1,0),
15488 (59882,59881,59881,2,0),
15489 (59883,59882,59881,3,0),
15490 (59884,59883,59881,4,0),
15491 (59885,59884,59881,5,0),
15492 (59886,59885,59881,6,0),
15493 /*------------------
15494 --(210)Pet-Bear
15495 ------------------*/
15496 /*Swipe*/
15497 (50256,0,50256,1,0),
15498 (53526,50256,50256,2,0),
15499 (53528,53526,50256,3,0),
15500 (53529,53528,50256,4,0),
15501 (53532,53529,50256,5,0),
15502 (53533,53532,50256,6,0),
15503 /*------------------
15504 --(211)Pet-Boar
15505 ------------------*/
15506 /*Gore*/
15507 (35290,0,35290,1,0),
15508 (35291,35290,35290,2,0),
15509 (35292,35291,35290,3,0),
15510 (35293,35292,35290,4,0),
15511 (35294,35293,35290,5,0),
15512 (35295,35294,35290,6,0),
15513 /*------------------
15514 --(213)Pet-CarrionBird
15515 ------------------*/
15516 /*DemoralizingScreech*/
15517 (24423,0,24423,1,0),
15518 (24577,24423,24423,2,0),
15519 (24578,24577,24423,3,0),
15520 (24579,24578,24423,4,0),
15521 (27051,24579,24423,5,0),
15522 (55487,27051,24423,6,0),
15523 /*------------------
15524 --(215)Pet-Gorilla
15525 --(786)Pet-ExoticRhino
15526 --(775)Pet-Moth
15527 ------------------*/
15528 /*Smack*/
15529 (49966,0,49966,1,0),
15530 (49967,49966,49966,2,0),
15531 (49968,49967,49966,3,0),
15532 (49969,49968,49966,4,0),
15533 (49970,49969,49966,5,0),
15534 (49971,49970,49966,6,0),
15535 (49972,49971,49966,7,0),
15536 (49973,49972,49966,8,0),
15537 (49974,49973,49966,9,0),
15538 (52475,49974,49966,10,0),
15539 (52476,52475,49966,11,0),
15540 /*------------------
15541 --(217)Pet-Raptor
15542 ------------------*/
15543 /*SavageRend*/
15544 (50498,0,50498,1,0),
15545 (53578,50498,50498,2,0),
15546 (53579,53578,50498,3,0),
15547 (53580,53579,50498,4,0),
15548 (53581,53580,50498,5,0),
15549 (53582,53581,50498,6,0),
15550 /*------------------
15551 --(214)Pet-Crab
15552 --(218)Pet-Tallstrider
15553 --(783)Pet-ExoticSilithid
15554 ------------------*/
15555 /*Claw*/
15556 (16827,0,16827,1,0),
15557 (16828,16827,16827,2,0),
15558 (16829,16828,16827,3,0),
15559 (16830,16829,16827,4,0),
15560 (16831,16830,16827,5,0),
15561 (16832,16831,16827,6,0),
15562 (3010,16832,16827,7,0),
15563 (3009,3010,16827,8,0),
15564 (27049,3009,16827,9,0),
15565 (52471,27049,16827,10,0),
15566 (52472,52471,16827,11,0),
15567 /*------------------
15568 --(236)Pet-Scorpid
15569 ------------------*/
15570 /*Scorpid Poison*/
15571 (24640,0,24640,1,0),
15572 (24583,24640,24640,2,0),
15573 (24586,24583,24640,3,0),
15574 (24587,24586,24640,4,0),
15575 (27060,24587,24640,5,0),
15576 (55728,27060,24640,6,0),
15577 /*------------------
15578 --(237)Arcane
15579 ------------------*/
15580 /*Amplify Magic*/
15581 (1008,0,1008,1,0),
15582 (8455,1008,1008,2,0),
15583 (10169,8455,1008,3,0),
15584 (10170,10169,1008,4,0),
15585 (27130,10170,1008,5,0),
15586 (33946,27130,1008,6,0),
15587 (43017,33946,1008,7,0),
15588 /*Arcane Barrage*/
15589 (44425,0,44425,1,0),
15590 (44780,44425,44425,2,0),
15591 (44781,44780,44425,3,0),
15592 /*Arcane Blast*/
15593 (30451,0,30451,1,0),
15594 (42894,30451,30451,2,0),
15595 (42896,42894,30451,3,0),
15596 (42897,42896,30451,4,0),
15597 /*Arcane Brilliance*/
15598 (23028,0,23028,1,0),
15599 (27127,23028,23028,2,0),
15600 (43002,27127,23028,3,0),
15601 /*Arcane Explosion*/
15602 (1449,0,1449,1,0),
15603 (8437,1449,1449,2,0),
15604 (8438,8437,1449,3,0),
15605 (8439,8438,1449,4,0),
15606 (10201,8439,1449,5,0),
15607 (10202,10201,1449,6,0),
15608 (27080,10202,1449,7,0),
15609 (27082,27080,1449,8,0),
15610 (42920,27082,1449,9,0),
15611 (42921,42920,1449,10,0),
15612 /*Arcane Intellect*/
15613 (1459,0,1459,1,0),
15614 (1460,1459,1459,2,0),
15615 (1461,1460,1459,3,0),
15616 (10156,1461,1459,4,0),
15617 (10157,10156,1459,5,0),
15618 (27126,10157,1459,6,0),
15619 (42995,27126,1459,7,0),
15620 /*Arcane Missiles*/
15621 (5143,0,5143,1,0),
15622 (5144,5143,5143,2,0),
15623 (5145,5144,5143,3,0),
15624 (8416,5145,5143,4,0),
15625 (8417,8416,5143,5,0),
15626 (10211,8417,5143,6,0),
15627 (10212,10211,5143,7,0),
15628 (25345,10212,5143,8,0),
15629 (27075,25345,5143,9,0),
15630 (38699,27075,5143,10,0),
15631 (38704,38699,5143,11,0),
15632 (42843,38704,5143,12,0),
15633 (42846,42843,5143,13,0),
15634 /* Arcane Missiles Triggered Spell */
15635 (7268,0,7268,1,0),
15636 (7269,7268,7268,2,0),
15637 (7270,7269,7268,3,0),
15638 (8419,7270,7268,4,0),
15639 (8418,8419,7268,5,0),
15640 (10273,8418,7268,6,0),
15641 (10274,10273,7268,7,0),
15642 (25346,10274,7268,8,0),
15643 (27076,25346,7268,9,0),
15644 (38700,27076,7268,10,0),
15645 (38703,38700,7268,11,0),
15646 (42844,38703,7268,12,0),
15647 (42845,42844,7268,13,0),
15648 /*Conjure Food*/
15649 (587,0,587,1,0),
15650 (597,587,587,2,0),
15651 (990,597,587,3,0),
15652 (6129,990,587,4,0),
15653 (10144,6129,587,5,0),
15654 (10145,10144,587,6,0),
15655 (28612,10145,587,7,0),
15656 (33717,28612,587,8,0),
15657 /*Conjure Mana Gem*/
15658 (759,0,759,1,0),
15659 (3552,759,759,2,0),
15660 (10053,3552,759,3,0),
15661 (10054,10053,759,4,0),
15662 (27101,10054,759,5,0),
15663 (42985,27101,759,6,0),
15664 /*ConjureRefreshment*/
15665 (42955,0,42955,1,0),
15666 (42956,42955,42955,2,0),
15667 /*ConjureWater*/
15668 (5504,0,5504,1,0),
15669 (5505,5504,5504,2,0),
15670 (5506,5505,5504,3,0),
15671 (6127,5506,5504,4,0),
15672 (10138,6127,5504,5,0),
15673 (10139,10138,5504,6,0),
15674 (10140,10139,5504,7,0),
15675 (37420,10140,5504,8,0),
15676 (27090,37420,5504,9,0),
15677 /*DampenMagic*/
15678 (604,0,604,1,0),
15679 (8450,604,604,2,0),
15680 (8451,8450,604,3,0),
15681 (10173,8451,604,4,0),
15682 (10174,10173,604,5,0),
15683 (33944,10174,604,6,0),
15684 (43015,33944,604,7,0),
15685 /*MageArmor*/
15686 (6117,0,6117,1,0),
15687 (22782,6117,6117,2,0),
15688 (22783,22782,6117,3,0),
15689 (27125,22783,6117,4,0),
15690 (43023,27125,6117,5,0),
15691 (43024,43023,6117,6,0),
15692 /*ManaShield*/
15693 (1463,0,1463,1,0),
15694 (8494,1463,1463,2,0),
15695 (8495,8494,1463,3,0),
15696 (10191,8495,1463,4,0),
15697 (10192,10191,1463,5,0),
15698 (10193,10192,1463,6,0),
15699 (27131,10193,1463,7,0),
15700 (43019,27131,1463,8,0),
15701 (43020,43019,1463,9,0),
15702 /*Polymorph*/
15703 (118,0,118,1,0),
15704 (12824,118,118,2,0),
15705 (12825,12824,118,3,0),
15706 (12826,12825,118,4,0),
15707 /*RitualofRefreshment*/
15708 (43987,0,43987,1,0),
15709 (58659,43987,43987,2,0),
15710 /*------------------
15711 --(253)Assassination
15712 ------------------*/
15713 /*Ambush*/
15714 (8676,0,8676,1,0),
15715 (8724,8676,8676,2,0),
15716 (8725,8724,8676,3,0),
15717 (11267,8725,8676,4,0),
15718 (11268,11267,8676,5,0),
15719 (11269,11268,8676,6,0),
15720 (27441,11269,8676,7,0),
15721 (48689,27441,8676,8,0),
15722 (48690,48689,8676,9,0),
15723 (48691,48690,8676,10,0),
15724 /*DeadlyThrow*/
15725 (26679,0,26679,1,0),
15726 (48673,26679,26679,2,0),
15727 (48674,48673,26679,3,0),
15728 /*Envenom*/
15729 (32645,0,32645,1,0),
15730 (32684,32645,32645,2,0),
15731 (57992,32684,32645,3,0),
15732 (57993,57992,32645,4,0),
15733 /*Eviscerate*/
15734 (2098,0,2098,1,0),
15735 (6760,2098,2098,2,0),
15736 (6761,6760,2098,3,0),
15737 (6762,6761,2098,4,0),
15738 (8623,6762,2098,5,0),
15739 (8624,8623,2098,6,0),
15740 (11299,8624,2098,7,0),
15741 (11300,11299,2098,8,0),
15742 (31016,11300,2098,9,0),
15743 (26865,31016,2098,10,0),
15744 (48667,26865,2098,11,0),
15745 (48668,48667,2098,12,0),
15746 /*ExposeArmor*/
15747 (8647,0,8647,1,0),
15748 (8649,8647,8647,2,0),
15749 (8650,8649,8647,3,0),
15750 (11197,8650,8647,4,0),
15751 (11198,11197,8647,5,0),
15752 (26866,11198,8647,6,0),
15753 (48669,26866,8647,7,0),
15754 /*Garrote*/
15755 (703,0,703,1,0),
15756 (8631,703,703,2,0),
15757 (8632,8631,703,3,0),
15758 (8633,8632,703,4,0),
15759 (11289,8633,703,5,0),
15760 (11290,11289,703,6,0),
15761 (26839,11290,703,7,0),
15762 (26884,26839,703,8,0),
15763 (48675,26884,703,9,0),
15764 (48676,48675,703,10,0),
15765 /*KidneyShot*/
15766 (408,0,408,1,0),
15767 (8643,408,408,2,0),
15768 /*Mutilate*/
15769 (1329,0,1329,1,0),
15770 (34411,1329,1329,2,0),
15771 (34412,34411,1329,3,0),
15772 (34413,34412,1329,4,0),
15773 (48663,34413,1329,5,0),
15774 (48666,48663,1329,6,0),
15775 /*Rupture*/
15776 (1943,0,1943,1,0),
15777 (8639,1943,1943,2,0),
15778 (8640,8639,1943,3,0),
15779 (11273,8640,1943,4,0),
15780 (11274,11273,1943,5,0),
15781 (11275,11274,1943,6,0),
15782 (26867,11275,1943,7,0),
15783 (48671,26867,1943,8,0),
15784 (48672,48671,1943,9,0),
15785 /*SliceandDice*/
15786 (5171,0,5171,1,0),
15787 (6774,5171,5171,2,0),
15788 /*------------------
15789 --(256)Fury
15790 ------------------*/
15791 /*BattleShout*/
15792 (6673,0,6673,1,0),
15793 (5242,6673,6673,2,0),
15794 (6192,5242,6673,3,0),
15795 (11549,6192,6673,4,0),
15796 (11550,11549,6673,5,0),
15797 (11551,11550,6673,6,0),
15798 (25289,11551,6673,7,0),
15799 (2048,25289,6673,8,0),
15800 (47436,2048,6673,9,0),
15801 /*Bloodsurge*/
15802 (46913,0,46913,1,0),
15803 (46914,46913,46913,2,0),
15804 (46915,46914,46913,3,0),
15805 /*Cleave*/
15806 (845,0,845,1,0),
15807 (7369,845,845,2,0),
15808 (11608,7369,845,3,0),
15809 (11609,11608,845,4,0),
15810 (20569,11609,845,5,0),
15811 (25231,20569,845,6,0),
15812 (47519,25231,845,7,0),
15813 (47520,47519,845,8,0),
15814 /*CommandingShout*/
15815 (469,0,469,1,0),
15816 (47439,469,469,2,0),
15817 (47440,47439,469,3,0),
15818 /*DemoralizingShout*/
15819 (1160,0,1160,1,0),
15820 (6190,1160,1160,2,0),
15821 (11554,6190,1160,3,0),
15822 (11555,11554,1160,4,0),
15823 (11556,11555,1160,5,0),
15824 (25202,11556,1160,6,0),
15825 (25203,25202,1160,7,0),
15826 (47437,25203,1160,8,0),
15827 /*Execute*/
15828 (5308,0,5308,1,0),
15829 (20658,5308,5308,2,0),
15830 (20660,20658,5308,3,0),
15831 (20661,20660,5308,4,0),
15832 (20662,20661,5308,5,0),
15833 (25234,20662,5308,6,0),
15834 (25236,25234,5308,7,0),
15835 (47470,25236,5308,8,0),
15836 (47471,47470,5308,9,0),
15837 /*Slam*/
15838 (1464,0,1464,1,0),
15839 (8820,1464,1464,2,0),
15840 (11604,8820,1464,3,0),
15841 (11605,11604,1464,4,0),
15842 (25241,11605,1464,5,0),
15843 (25242,25241,1464,6,0),
15844 (47474,25242,1464,7,0),
15845 (47475,47474,1464,8,0),
15846 /*------------------
15847 --(257) Protection (Warrior)
15848 ------------------*/
15849 /*Devastate*/
15850 (20243,0,20243,1,0),
15851 (30016,20243,20243,2,0),
15852 (30022,30016,20243,3,0),
15853 (47497,30022,20243,4,0),
15854 (47498,47497,20243,5,0),
15855 /*Revenge*/
15856 (6572,0,6572,1,0),
15857 (6574,6572,6572,2,0),
15858 (7379,6574,6572,3,0),
15859 (11600,7379,6572,4,0),
15860 (11601,11600,6572,5,0),
15861 (25288,11601,6572,6,0),
15862 (25269,25288,6572,7,0),
15863 (30357,25269,6572,8,0),
15864 (57823,30357,6572,9,0),
15865 /*ShieldSlam*/
15866 (23922,0,23922,1,0),
15867 (23923,23922,23922,2,0),
15868 (23924,23923,23922,3,0),
15869 (23925,23924,23922,4,0),
15870 (25258,23925,23922,5,0),
15871 (30356,25258,23922,6,0),
15872 (47487,30356,23922,7,0),
15873 (47488,47487,23922,8,0),
15874 /*------------------
15875 -- (267) Protection (Paladin)
15876 ------------------*/
15877 /*Avenger'sShield*/
15878 (31935,0,31935,1,0),
15879 (32699,31935,31935,2,0),
15880 (32700,32699,31935,3,0),
15881 (48826,32700,31935,4,0),
15882 (48827,48826,31935,5,0),
15883 /*Devotion Aura*/
15884 (465,0,465,1,0),
15885 (10290,465,465,2,0),
15886 (643,10290,465,3,0),
15887 (10291,643,465,4,0),
15888 (1032,10291,465,5,0),
15889 (10292,1032,465,6,0),
15890 (10293,10292,465,7,0),
15891 (27149,10293,465,8,0),
15892 (48941,27149,465,9,0),
15893 (48942,48941,465,10,0),
15894 /*Divinity*/
15895 (63646,0,63646,1,0),
15896 (63647,63646,63646,2,0),
15897 (63648,63647,63646,3,0),
15898 (63649,63648,63646,4,0),
15899 (63650,63649,63646,5,0),
15900 /*Fire Resistance Aura*/
15901 (19891,0,19891,1,0),
15902 (19899,19891,19891,2,0),
15903 (19900,19899,19891,3,0),
15904 (27153,19900,19891,4,0),
15905 (48947,27153,19891,5,0),
15906 /*Frost Resistance Aura*/
15907 (19888,0,19888,1,0),
15908 (19897,19888,19888,2,0),
15909 (19898,19897,19888,3,0),
15910 (27152,19898,19888,4,0),
15911 (48945,27152,19888,5,0),
15912 /*Greater Blessing of Kings*/
15913 (20217,0,20217,1,0),
15914 (25898,20217,20217,2,0),
15915 /*Greater Blessing of Sanctuary*/
15916 (20911,0,20911,1,0),
15917 (25899,20911,20911,2,0),
15918 /*HammerofJustice*/
15919 (853,0,853,1,0),
15920 (5588,853,853,2,0),
15921 (5589,5588,853,3,0),
15922 (10308,5589,853,4,0),
15923 /*HandofProtection*/
15924 (1022,0,1022,1,0),
15925 (5599,1022,1022,2,0),
15926 (10278,5599,1022,3,0),
15927 /*Holy Shield*/
15928 (20925,0,20925,1,0),
15929 (20927,20925,20925,2,0),
15930 (20928,20927,20925,3,0),
15931 (27179,20928,20925,4,0),
15932 (48951,27179,20925,5,0),
15933 (48952,48951,20925,6,0),
15934 /*Shadow Resistance Aura*/
15935 (19876,0,19876,1,0),
15936 (19895,19876,19876,2,0),
15937 (19896,19895,19876,3,0),
15938 (27151,19896,19876,4,0),
15939 (48943,27151,19876,5,0),
15940 /*Shield of Righteousness*/
15941 (53600,0,53600,1,0),
15942 (61411,53600,53600,2,0),
15943 /*Spiritual Attunement*/
15944 (31785,0,31785,1,0),
15945 (33776,31785,31785,2,0),
15946 /*------------------
15947 --(270)Pet-GenericHunter
15948 ------------------*/
15949 /*Cower*/
15950 (1742,0,1742,1,0),
15951 (1753,1742,1742,2,0),
15952 (1754,1753,1742,3,0),
15953 (1755,1754,1742,4,0),
15954 (1756,1755,1742,5,0),
15955 (16697,1756,1742,6,0),
15956 (27048,16697,1742,7,0),
15957 /*Great Resistance*/
15958 (53427,0,53427,1,0),
15959 (53429,53427,53427,2,0),
15960 (53430,53429,53427,3,0),
15961 /*Growl*/
15962 (2649,0,2649,1,0),
15963 (14916,2649,2649,2,0),
15964 (14917,14916,2649,3,0),
15965 (14918,14917,2649,4,0),
15966 (14919,14918,2649,5,0),
15967 (14920,14919,2649,6,0),
15968 (14921,14920,2649,7,0),
15969 (27047,14921,2649,8,0),
15970 (61676,27047,2649,9,0),
15971 /*Shark Attack*/
15972 (62759,0,62759,1,0),
15973 (62760,62759,62759,2,0),
15974 /*Silverback*/
15975 (62764,0,62764,1,0),
15976 (62765,62764,62764,2,0),
15977 /*Wild Hunt*/
15978 (62758,0,62758,1,0),
15979 (62762,62758,62758,2,0),
15980 /*------------------
15981 -- (333) Enchanting
15982 ------------------*/
15983 /*Enchanting*/
15984 (7411,0,7411,1,0),
15985 (7412,7411,7411,2,0),
15986 (7413,7412,7411,3,0),
15987 (13920,7413,7411,4,0),
15988 (28029,13920,7411,5,0),
15989 (51313,28029,7411,6,0),
15990 /*------------------
15991 --(354)Demonology
15992 ------------------*/
15993 /*Banish*/
15994 (710,0,710,1,0),
15995 (18647,710,710,2,0),
15996 /*CreateFirestone*/
15997 (6366,0,6366,1,0),
15998 (17951,6366,6366,2,0),
15999 (17952,17951,6366,3,0),
16000 (17953,17952,6366,4,0),
16001 (27250,17953,6366,5,0),
16002 (60219,27250,6366,6,0),
16003 (60220,60219,6366,7,0),
16004 /*CreateHealthstone*/
16005 (6201,0,6201,1,0),
16006 (6202,6201,6201,2,0),
16007 (5699,6202,6201,3,0),
16008 (11729,5699,6201,4,0),
16009 (11730,11729,6201,5,0),
16010 (27230,11730,6201,6,0),
16011 (47871,27230,6201,7,0),
16012 (47878,47871,6201,8,0),
16013 /*CreateSoulstone*/
16014 (693,0,693,1,0),
16015 (20752,693,693,2,0),
16016 (20755,20752,693,3,0),
16017 (20756,20755,693,4,0),
16018 (20757,20756,693,5,0),
16019 (27238,20757,693,6,0),
16020 (47884,27238,693,7,0),
16021 /*CreateSpellstone*/
16022 (2362,0,2362,1,0),
16023 (17727,2362,2362,2,0),
16024 (17728,17727,2362,3,0),
16025 (28172,17728,2362,4,0),
16026 (47886,28172,2362,5,0),
16027 (47888,47886,2362,6,0),
16028 /*Decimation*/
16029 (63156,0,63156,1,0),
16030 (63158,63156,63156,2,0),
16031 /*DemonArmor*/
16032 (706,0,706,1,0),
16033 (1086,706,706,2,0),
16034 (11733,1086,706,3,0),
16035 (11734,11733,706,4,0),
16036 (11735,11734,706,5,0),
16037 (27260,11735,706,6,0),
16038 (47793,27260,706,7,0),
16039 (47889,47793,706,8,0),
16040 /*DemonSkin*/
16041 (687,0,687,1,0),
16042 (696,687,687,2,0),
16043 /*EnslaveDemon*/
16044 (1098,0,1098,1,0),
16045 (11725,1098,1098,2,0),
16046 (11726,11725,1098,3,0),
16047 (61191,11726,1098,4,0),
16048 /*FelArmor*/
16049 (28176,0,28176,1,0),
16050 (28189,28176,28176,2,0),
16051 (47892,28189,28176,3,0),
16052 (47893,47892,28176,4,0),
16053 /*HealthFunnel*/
16054 (755,0,755,1,0),
16055 (3698,755,755,2,0),
16056 (3699,3698,755,3,0),
16057 (3700,3699,755,4,0),
16058 (11693,3700,755,5,0),
16059 (11694,11693,755,6,0),
16060 (11695,11694,755,7,0),
16061 (27259,11695,755,8,0),
16062 (47856,27259,755,9,0),
16063 /*Nemesis*/
16064 (63117,0,63117,1,0),
16065 (63121,63117,63117,2,0),
16066 (63123,63121,63117,3,0),
16067 /*RitualofSouls*/
16068 (29893,0,29893,1,0),
16069 (58887,29893,29893,2,0),
16070 /*ShadowWard*/
16071 (6229,0,6229,1,0),
16072 (11739,6229,6229,2,0),
16073 (11740,11739,6229,3,0),
16074 (28610,11740,6229,4,0),
16075 (47890,28610,6229,5,0),
16076 (47891,47890,6229,6,0),
16077 /*------------------
16078 --(355)Affliction
16079 ------------------*/
16080 /*Corruption*/
16081 (172,0,172,1,0),
16082 (6222,172,172,2,0),
16083 (6223,6222,172,3,0),
16084 (7648,6223,172,4,0),
16085 (11671,7648,172,5,0),
16086 (11672,11671,172,6,0),
16087 (25311,11672,172,7,0),
16088 (27216,25311,172,8,0),
16089 (47812,27216,172,9,0),
16090 (47813,47812,172,10,0),
16091 /*Curse of Agony*/
16092 (980,0,980,1,0),
16093 (1014,980,980,2,0),
16094 (6217,1014,980,3,0),
16095 (11711,6217,980,4,0),
16096 (11712,11711,980,5,0),
16097 (11713,11712,980,6,0),
16098 (27218,11713,980,7,0),
16099 (47863,27218,980,8,0),
16100 (47864,47863,980,9,0),
16101 /*Curse of Doom*/
16102 (603,0,603,1,0),
16103 (30910,603,603,2,0),
16104 (47867,30910,603,3,0),
16105 /*Curse of the Elements*/
16106 (1490,0,1490,1,0),
16107 (11721,1490,1490,2,0),
16108 (11722,11721,1490,3,0),
16109 (27228,11722,1490,4,0),
16110 (47865,27228,1490,5,0),
16111 /*Curse of Tongues*/
16112 (1714,0,1714,1,0),
16113 (11719,1714,1714,2,0),
16114 /*Curse of Weakness*/
16115 (702,0,702,1,0),
16116 (1108,702,702,2,0),
16117 (6205,1108,702,3,0),
16118 (7646,6205,702,4,0),
16119 (11707,7646,702,5,0),
16120 (11708,11707,702,6,0),
16121 (27224,11708,702,7,0),
16122 (30909,27224,702,8,0),
16123 (50511,30909,702,9,0),
16124 /*Dark Pact*/
16125 (18220,0,    18220,1,0),
16126 (18937,18220,18220,2,0),
16127 (18938,18937,18220,3,0),
16128 (27265,18938,18220,4,0),
16129 (59092,27265,18220,5,0),
16130 /*Death Coil*/
16131 (6789,0,6789,1,0),
16132 (17925,6789,6789,2,0),
16133 (17926,17925,6789,3,0),
16134 (27223,17926,6789,4,0),
16135 (47859,27223,6789,5,0),
16136 (47860,47859,6789,6,0),
16137 /*Drain Life*/
16138 (689,0,689,1,0),
16139 (699,689,689,2,0),
16140 (709,699,689,3,0),
16141 (7651,709,689,4,0),
16142 (11699,7651,689,5,0),
16143 (11700,11699,689,6,0),
16144 (27219,11700,689,7,0),
16145 (27220,27219,689,8,0),
16146 (47857,27220,689,9,0),
16147 /*Drain Soul*/
16148 (1120,0,1120,1,0),
16149 (8288,1120,1120,2,0),
16150 (8289,8288,1120,3,0),
16151 (11675,8289,1120,4,0),
16152 (27217,11675,1120,5,0),
16153 (47855,27217,1120,6,0),
16154 /*Fear*/
16155 (5782,0,5782,1,0),
16156 (6213,5782,5782,2,0),
16157 (6215,6213,5782,3,0),
16158 /*Haunt*/
16159 (48181,0,48181,1,0),
16160 (59161,48181,48181,2,0),
16161 (59163,59161,48181,3,0),
16162 (59164,59163,48181,4,0),
16163 /*Howl of Terror*/
16164 (5484,0,5484,1,0),
16165 (17928,5484,5484,2,0),
16166 /*Seed of Corruption*/
16167 (27243,0,27243,1,0),
16168 (47835,27243,27243,2,0),
16169 (47836,47835,27243,3,0),
16170 /* Shadow embrace */
16171 (32385,0,32385,1,0),
16172 (32387,32385,32385,2,0),
16173 (32392,32387,32385,3,0),
16174 (32393,32392,32385,4,0),
16175 (32394,32393,32385,5,0),
16176 /*Unstable Affliction*/
16177 (30108,0,30108,1,0),
16178 (30404,30108,30108,2,0),
16179 (30405,30404,30108,3,0),
16180 (47841,30405,30108,4,0),
16181 (47843,47841,30108,5,0),
16182 /*------------------
16183 -- (356) Fishing
16184 ------------------*/
16185 /*Fishing*/
16186 (7620,0,7620,1,0),
16187 (7731,7620,7620,2,0),
16188 (7732,7731,7620,3,0),
16189 (18248,7732,7620,4,0),
16190 (33095,18248,7620,5,0),
16191 (51294,33095,7620,6,0),
16192 /*------------------
16193 --(373) Enhancement
16194 ------------------*/
16195 /*Fire Resistance Totem*/
16196 (8184,0,8184,1,0),
16197 (10537,8184,8184,2,0),
16198 (10538,10537,8184,3,0),
16199 (25563,10538,8184,4,0),
16200 (58737,25563,8184,5,0),
16201 (58739,58737,8184,6,0),
16202 /*Flametongue Totem*/
16203 (8227,0,8227,1,0),
16204 (8249,8227,8227,2,0),
16205 (10526,8249,8227,3,0),
16206 (16387,10526,8227,4,0),
16207 (25557,16387,8227,5,0),
16208 (58649,25557,8227,6,0),
16209 (58652,58649,8227,7,0),
16210 (58656,58652,8227,8,0),
16211 /*Flametongue Weapon*/
16212 (8024,0,8024,1,0),
16213 (8027,8024,8024,2,0),
16214 (8030,8027,8024,3,0),
16215 (16339,8030,8024,4,0),
16216 (16341,16339,8024,5,0),
16217 (16342,16341,8024,6,0),
16218 (25489,16342,8024,7,0),
16219 (58785,25489,8024,8,0),
16220 (58789,58785,8024,9,0),
16221 (58790,58789,8024,10,0),
16222 /*Frost Resistance Totem*/
16223 (8181,0,8181,1,0),
16224 (10478,8181,8181,2,0),
16225 (10479,10478,8181,3,0),
16226 (25560,10479,8181,4,0),
16227 (58741,25560,8181,5,0),
16228 (58745,58741,8181,6,0),
16229 /*Frostbrand Weapon*/
16230 (8033,0,8033,1,0),
16231 (8038,8033,8033,2,0),
16232 (10456,8038,8033,3,0),
16233 (16355,10456,8033,4,0),
16234 (16356,16355,8033,5,0),
16235 (25500,16356,8033,6,0),
16236 (58794,25500,8033,7,0),
16237 (58795,58794,8033,8,0),
16238 (58796,58795,8033,9,0),
16239 /*Frozen Power*/
16240 (63373,0,63373,1,0),
16241 (63374,63373,63373,2,0),
16242 /*Improved Stormstrike*/
16243 (51521,0,51521,1,0),
16244 (51522,51521,51521,2,0),
16245 /*Life Tap*/
16246 (1454,0,1454,1,0),
16247 (1455,1454,1454,2,0),
16248 (1456,1455,1454,3,0),
16249 (11687,1456,1454,4,0),
16250 (11688,11687,1454,5,0),
16251 (11689,11688,1454,6,0),
16252 (27222,11689,1454,7,0),
16253 (57946,27222,1454,8,0),
16254 /*Lightning Shield*/
16255 (324,0,324,1,0),
16256 (325,324,324,2,0),
16257 (905,325,324,3,0),
16258 (945,905,324,4,0),
16259 (8134,945,324,5,0),
16260 (10431,8134,324,6,0),
16261 (10432,10431,324,7,0),
16262 (25469,10432,324,8,0),
16263 (25472,25469,324,9,0),
16264 (49280,25472,324,10,0),
16265 (49281,49280,324,11,0),
16266 /* Lightning Shield Proc */
16267 (26364,0,26364,1,0),
16268 (26365,26364,26364,2,0),
16269 (26366,26365,26364,3,0),
16270 (26367,26366,26364,4,0),
16271 (26369,26367,26364,5,0),
16272 (26370,26369,26364,6,0),
16273 (26363,26370,26364,7,0),
16274 (26371,26363,26364,8,0),
16275 (26372,26371,26364,9,0),
16276 (49278,26372,26364,10,0),
16277 (49279,49278,26364,11,0),
16278 /*Maelstrom Weapon*/
16279 (51528,0,51528,1,0),
16280 (51529,51528,51528,2,0),
16281 (51530,51529,51528,3,0),
16282 (51531,51530,51528,4,0),
16283 (51532,51531,51528,5,0),
16284 /*Nature Resistance Totem*/
16285 (10595,0,10595,1,0),
16286 (10600,10595,10595,2,0),
16287 (10601,10600,10595,3,0),
16288 (25574,10601,10595,4,0),
16289 (58746,25574,10595,5,0),
16290 (58749,58746,10595,6,0),
16291 /*Rockbiter Weapon*/
16292 (8017,0,8017,1,0),
16293 (8018,8017,8017,2,0),
16294 (8019,8018,8017,3,0),
16295 (10399,8019,8017,4,0),
16296 /*Stoneskin Totem*/
16297 (8071,0,8071,1,0),
16298 (8154,8071,8071,2,0),
16299 (8155,8154,8071,3,0),
16300 (10406,8155,8071,4,0),
16301 (10407,10406,8071,5,0),
16302 (10408,10407,8071,6,0),
16303 (25508,10408,8071,7,0),
16304 (25509,25508,8071,8,0),
16305 (58751,25509,8071,9,0),
16306 (58753,58751,8071,10,0),
16307 /*Strength of Earth Totem*/
16308 (8075,0,8075,1,0),
16309 (8160,8075,8075,2,0),
16310 (8161,8160,8075,3,0),
16311 (10442,8161,8075,4,0),
16312 (25361,10442,8075,5,0),
16313 (25528,25361,8075,6,0),
16314 (57622,25528,8075,7,0),
16315 (58643,57622,8075,8,0),
16316 /*WindfuryWeapon*/
16317 (8232,0,8232,1,0),
16318 (8235,8232,8232,2,0),
16319 (10486,8235,8232,3,0),
16320 (16362,10486,8232,4,0),
16321 (25505,16362,8232,5,0),
16322 (58801,25505,8232,6,0),
16323 (58803,58801,8232,7,0),
16324 (58804,58803,8232,8,0),
16325 /*------------------
16326 -- (374) Restoration (Shaman)
16327 ------------------*/
16328 /*AncestralSpirit*/
16329 (2008,0,2008,1,0),
16330 (20609,2008,2008,2,0),
16331 (20610,20609,2008,3,0),
16332 (20776,20610,2008,4,0),
16333 (20777,20776,2008,5,0),
16334 (25590,20777,2008,6,0),
16335 (49277,25590,2008,7,0),
16336 /*ChainHeal*/
16337 (1064,0,1064,1,0),
16338 (10622,1064,1064,2,0),
16339 (10623,10622,1064,3,0),
16340 (25422,10623,1064,4,0),
16341 (25423,25422,1064,5,0),
16342 (55458,25423,1064,6,0),
16343 (55459,55458,1064,7,0),
16344 /*EarthShield*/
16345 (974,0,974,1,0),
16346 (32593,974,974,2,0),
16347 (32594,32593,974,3,0),
16348 (49283,32594,974,4,0),
16349 (49284,49283,974,5,0),
16350 /*EarthlivingWeapon*/
16351 (51730,0,51730,1,0),
16352 (51988,51730,51730,2,0),
16353 (51991,51988,51730,3,0),
16354 (51992,51991,51730,4,0),
16355 (51993,51992,51730,5,0),
16356 (51994,51993,51730,6,0),
16357 /*HealingStreamTotem*/
16358 (5394,0,5394,1,0),
16359 (6375,5394,5394,2,0),
16360 (6377,6375,5394,3,0),
16361 (10462,6377,5394,4,0),
16362 (10463,10462,5394,5,0),
16363 (25567,10463,5394,6,0),
16364 (58755,25567,5394,7,0),
16365 (58756,58755,5394,8,0),
16366 (58757,58756,5394,9,0),
16367 /*HealingWave*/
16368 (331,0,331,1,0),
16369 (332,331,331,2,0),
16370 (547,332,331,3,0),
16371 (913,547,331,4,0),
16372 (939,913,331,5,0),
16373 (959,939,331,6,0),
16374 (8005,959,331,7,0),
16375 (10395,8005,331,8,0),
16376 (10396,10395,331,9,0),
16377 (25357,10396,331,10,0),
16378 (25391,25357,331,11,0),
16379 (25396,25391,331,12,0),
16380 (49272,25396,331,13,0),
16381 (49273,49272,331,14,0),
16382 /*LesserHealingWave*/
16383 (8004,0,8004,1,0),
16384 (8008,8004,8004,2,0),
16385 (8010,8008,8004,3,0),
16386 (10466,8010,8004,4,0),
16387 (10467,10466,8004,5,0),
16388 (10468,10467,8004,6,0),
16389 (25420,10468,8004,7,0),
16390 (49275,25420,8004,8,0),
16391 (49276,49275,8004,9,0),
16392 /*Mana Spring Totem*/
16393 (5675,0,5675,1,0),
16394 (10495,5675,5675,2,0),
16395 (10496,10495,5675,3,0),
16396 (10497,10496,5675,4,0),
16397 (25570,10497,5675,5,0),
16398 (58771,25570,5675,6,0),
16399 (58773,58771,5675,7,0),
16400 (58774,58773,5675,8,0),
16401 /*Riptide*/
16402 (61295,0,61295,1,0),
16403 (61299,61295,61295,2,0),
16404 (61300,61299,61295,3,0),
16405 (61301,61300,61295,4,0),
16406 /*Water Shield*/
16407 (52127,0,52127,1,0),
16408 (52129,52127,52127,2,0),
16409 (52131,52129,52127,3,0),
16410 (52134,52131,52127,4,0),
16411 (52136,52134,52127,5,0),
16412 (52138,52136,52127,6,0),
16413 (24398,52138,52127,7,0),
16414 (33736,24398,52127,8,0),
16415 (57960,33736,52127,9,0),
16416 /*------------------
16417 -- (375) Elemental Combat
16418 ------------------*/
16419 /*Booming Echoes*/
16420 (63370,0,63370,1,0),
16421 (63372,63370,63370,2,0),
16422 /*Chain Lightning*/
16423 (421,0,421,1,0),
16424 (930,421,421,2,0),
16425 (2860,930,421,3,0),
16426 (10605,2860,421,4,0),
16427 (25439,10605,421,5,0),
16428 (25442,25439,421,6,0),
16429 (49270,25442,421,7,0),
16430 (49271,49270,421,8,0),
16431 /*Earth Shock*/
16432 (8042,0,8042,1,0),
16433 (8044,8042,8042,2,0),
16434 (8045,8044,8042,3,0),
16435 (8046,8045,8042,4,0),
16436 (10412,8046,8042,5,0),
16437 (10413,10412,8042,6,0),
16438 (10414,10413,8042,7,0),
16439 (25454,10414,8042,8,0),
16440 (49230,25454,8042,9,0),
16441 (49231,49230,8042,10,0),
16442 /*Fire Nova Totem*/
16443 (1535,0,1535,1,0),
16444 (8498,1535,1535,2,0),
16445 (8499,8498,1535,3,0),
16446 (11314,8499,1535,4,0),
16447 (11315,11314,1535,5,0),
16448 (25546,11315,1535,6,0),
16449 (25547,25546,1535,7,0),
16450 (61649,25547,1535,8,0),
16451 (61657,61649,1535,9,0),
16452 /*Flame Shock*/
16453 (8050,0,8050,1,0),
16454 (8052,8050,8050,2,0),
16455 (8053,8052,8050,3,0),
16456 (10447,8053,8050,4,0),
16457 (10448,10447,8050,5,0),
16458 (29228,10448,8050,6,0),
16459 (25457,29228,8050,7,0),
16460 (49232,25457,8050,8,0),
16461 (49233,49232,8050,9,0),
16462 /*Frost Shock*/
16463 (8056,0,8056,1,0),
16464 (8058,8056,8056,2,0),
16465 (10472,8058,8056,3,0),
16466 (10473,10472,8056,4,0),
16467 (25464,10473,8056,5,0),
16468 (49235,25464,8056,6,0),
16469 (49236,49235,8056,7,0),
16470 /*Lava Burst*/
16471 (51505,0,51505,1,0),
16472 (60043,51505,51505,2,0),
16473 /*Lightning Bolt*/
16474 (403,0,403,1,0),
16475 (529,403,403,2,0),
16476 (548,529,403,3,0),
16477 (915,548,403,4,0),
16478 (943,915,403,5,0),
16479 (6041,943,403,6,0),
16480 (10391,6041,403,7,0),
16481 (10392,10391,403,8,0),
16482 (15207,10392,403,9,0),
16483 (15208,15207,403,10,0),
16484 (25448,15208,403,11,0),
16485 (25449,25448,403,12,0),
16486 (49237,25449,403,13,0),
16487 (49238,49237,403,14,0),
16488 /*Magma Totem*/
16489 (8190,0,8190,1,0),
16490 (10585,8190,8190,2,0),
16491 (10586,10585,8190,3,0),
16492 (10587,10586,8190,4,0),
16493 (25552,10587,8190,5,0),
16494 (58731,25552,8190,6,0),
16495 (58734,58731,8190,7,0),
16496 /*Purge*/
16497 (370,0,370,1,0),
16498 (8012,370,370,2,0),
16499 /*Searing Totem*/
16500 (3599,0,3599,1,0),
16501 (6363,3599,3599,2,0),
16502 (6364,6363,3599,3,0),
16503 (6365,6364,3599,4,0),
16504 (10437,6365,3599,5,0),
16505 (10438,10437,3599,6,0),
16506 (25533,10438,3599,7,0),
16507 (58699,25533,3599,8,0),
16508 (58703,58699,3599,9,0),
16509 (58704,58703,3599,10,0),
16510 /*Stoneclaw Totem*/
16511 (5730,0,5730,1,0),
16512 (6390,5730,5730,2,0),
16513 (6391,6390,5730,3,0),
16514 (6392,6391,5730,4,0),
16515 (10427,6392,5730,5,0),
16516 (10428,10427,5730,6,0),
16517 (25525,10428,5730,7,0),
16518 (58580,25525,5730,8,0),
16519 (58581,58580,5730,9,0),
16520 (58582,58581,5730,10,0),
16521 /*Totemof Wrath*/
16522 (30706,0,30706,1,0),
16523 (57720,30706,30706,2,0),
16524 (57721,57720,30706,3,0),
16525 (57722,57721,30706,4,0),
16526 /*Thunderstorm*/
16527 (51490,0,51490,1,0),
16528 (59156,51490,51490,2,0),
16529 (59158,59156,51490,3,0),
16530 (59159,59158,51490,4,0),
16531 /*------------------
16532 -- (393) Skinning
16533 ------------------*/
16534 /*Skinning*/
16535 (8613,0,8613,1,0),
16536 (8617,8613,8613,2,0),
16537 (8618,8617,8613,3,0),
16538 (10768,8618,8613,4,0),
16539 (32678,10768,8613,5,0),
16540 (50305,32678,8613,6,0),
16541 /*Master of Anatomy*/
16542 (53125,0,53125,1,0),
16543 (53662,53125,53125,2,0),
16544 (53663,53662,53125,3,0),
16545 (53664,53663,53125,4,0),
16546 (53665,53664,53125,5,0),
16547 (53666,53665,53125,6,0),
16548 /*------------------
16549 --(573)Restoration
16550 ------------------*/
16551 /*GiftoftheWild*/
16552 (21849,0,21849,1,0),
16553 (21850,21849,21849,2,0),
16554 (26991,21850,21849,3,0),
16555 (48470,26991,21849,4,0),
16556 /*HealingTouch*/
16557 (5185,0,5185,1,0),
16558 (5186,5185,5185,2,0),
16559 (5187,5186,5185,3,0),
16560 (5188,5187,5185,4,0),
16561 (5189,5188,5185,5,0),
16562 (6778,5189,5185,6,0),
16563 (8903,6778,5185,7,0),
16564 (9758,8903,5185,8,0),
16565 (9888,9758,5185,9,0),
16566 (9889,9888,5185,10,0),
16567 (25297,9889,5185,11,0),
16568 (26978,25297,5185,12,0),
16569 (26979,26978,5185,13,0),
16570 (48377,26979,5185,14,0),
16571 (48378,48377,5185,15,0),
16572 /*Improved Barkskin*/
16573 (63410,0,63410,1,0),
16574 (63411,63410,63410,2,0),
16575 /*Lifebloom*/
16576 (33763,0,33763,1,0),
16577 (48450,33763,33763,2,0),
16578 (48451,48450,33763,3,0),
16579 /*MarkoftheWild*/
16580 (1126,0,1126,1,0),
16581 (5232,1126,1126,2,0),
16582 (6756,5232,1126,3,0),
16583 (5234,6756,1126,4,0),
16584 (8907,5234,1126,5,0),
16585 (9884,8907,1126,6,0),
16586 (9885,9884,1126,7,0),
16587 (26990,9885,1126,8,0),
16588 (48469,26990,1126,9,0),
16589 /*Nourish*/
16590 (50464,0,50464,1,0),
16591 /*Rebirth*/
16592 (20484,0,20484,1,0),
16593 (20739,20484,20484,2,0),
16594 (20742,20739,20484,3,0),
16595 (20747,20742,20484,4,0),
16596 (20748,20747,20484,5,0),
16597 (26994,20748,20484,6,0),
16598 (48477,26994,20484,7,0),
16599 /*Regrowth*/
16600 (8936,0,8936,1,0),
16601 (8938,8936,8936,2,0),
16602 (8939,8938,8936,3,0),
16603 (8940,8939,8936,4,0),
16604 (8941,8940,8936,5,0),
16605 (9750,8941,8936,6,0),
16606 (9856,9750,8936,7,0),
16607 (9857,9856,8936,8,0),
16608 (9858,9857,8936,9,0),
16609 (26980,9858,8936,10,0),
16610 (48442,26980,8936,11,0),
16611 (48443,48442,8936,12,0),
16612 /*Rejuvenation*/
16613 (774,0,774,1,0),
16614 (1058,774,774,2,0),
16615 (1430,1058,774,3,0),
16616 (2090,1430,774,4,0),
16617 (2091,2090,774,5,0),
16618 (3627,2091,774,6,0),
16619 (8910,3627,774,7,0),
16620 (9839,8910,774,8,0),
16621 (9840,9839,774,9,0),
16622 (9841,9840,774,10,0),
16623 (25299,9841,774,11,0),
16624 (26981,25299,774,12,0),
16625 (26982,26981,774,13,0),
16626 (48440,26982,774,14,0),
16627 (48441,48440,774,15,0),
16628 /*Revitalize*/
16629 (48539,0,48539,1,0),
16630 (48544,48539,48539,2,0),
16631 (48545,48544,48539,3,0),
16632 /*Revive*/
16633 (50769,0,50769,1,0),
16634 (50768,50769,50769,2,0),
16635 (50767,50768,50769,3,0),
16636 (50766,50767,50769,4,0),
16637 (50765,50766,50769,5,0),
16638 (50764,50765,50769,6,0),
16639 (50763,50764,50769,7,0),
16640 /*Tranquility*/
16641 (740,0,740,1,0),
16642 (8918,740,740,2,0),
16643 (9862,8918,740,3,0),
16644 (9863,9862,740,4,0),
16645 (26983,9863,740,5,0),
16646 (48446,26983,740,6,0),
16647 (48447,48446,740,7,0),
16648 /*Wild Growth*/
16649 (48438,0,48438,1,0),
16650 (53248,48438,48438,2,0),
16651 (53249,53248,48438,3,0),
16652 (53251,53249,48438,4,0),
16653 /*------------------
16654 --(574)Balance
16655 ------------------*/
16656 /*EntanglingRoots*/
16657 (339,0,339,1,0),
16658 (1062,339,339,2,0),
16659 (5195,1062,339,3,0),
16660 (5196,5195,339,4,0),
16661 (9852,5196,339,5,0),
16662 (9853,9852,339,6,0),
16663 (26989,9853,339,7,0),
16664 (53308,26989,339,8,0),
16665 /*Nature'sGrasp*/
16666 (16689,0,16689,1,339),
16667 (16810,16689,16689,2,1062),
16668 (16811,16810,16689,3,5195),
16669 (16812,16811,16689,4,5196),
16670 (16813,16812,16689,5,9852),
16671 (17329,16813,16689,6,9853),
16672 (27009,17329,16689,7,26989),
16673 (53312,27009,16689,8,53308),
16674 /*Hibernate*/
16675 (2637,0,2637,1,0),
16676 (18657,2637,2637,2,0),
16677 (18658,18657,2637,3,0),
16678 /*Hurricane*/
16679 (16914,0,16914,1,0),
16680 (17401,16914,16914,2,0),
16681 (17402,17401,16914,3,0),
16682 (27012,17402,16914,4,0),
16683 (48467,27012,16914,5,0),
16684 /*Insect Swarm*/
16685 (5570,0,5570,1,0),
16686 (24974,5570,5570,2,0),
16687 (24975,24974,5570,3,0),
16688 (24976,24975,5570,4,0),
16689 (24977,24976,5570,5,0),
16690 (27013,24977,5570,6,0),
16691 (48468,27013,5570,7,0),
16692 /*Moonfire*/
16693 (8921,0,8921,1,0),
16694 (8924,8921,8921,2,0),
16695 (8925,8924,8921,3,0),
16696 (8926,8925,8921,4,0),
16697 (8927,8926,8921,5,0),
16698 (8928,8927,8921,6,0),
16699 (8929,8928,8921,7,0),
16700 (9833,8929,8921,8,0),
16701 (9834,9833,8921,9,0),
16702 (9835,9834,8921,10,0),
16703 (26987,9835,8921,11,0),
16704 (26988,26987,8921,12,0),
16705 (48462,26988,8921,13,0),
16706 (48463,48462,8921,14,0),
16707 /*Soothe Animal*/
16708 (2908,0,2908,1,0),
16709 (8955,2908,2908,2,0),
16710 (9901,8955,2908,3,0),
16711 (26995,9901,2908,4,0),
16712 /*Starfall*/
16713 (48505,0,48505,1,0),
16714 (53199,48505,48505,2,0),
16715 (53200,53199,48505,3,0),
16716 (53201,53200,48505,4,0),
16717 /*Starfall AOE*/
16718 (50294,0,50294,1,0),
16719 (53188,50294,50294,2,0),
16720 (53189,53188,50294,3,0),
16721 (53190,53189,50294,4,0),
16722 /*Starfall Direct*/
16723 (50288,0,50288,1,0),
16724 (53191,50288,50288,2,0),
16725 (53194,53191,50288,3,0),
16726 (53195,53194,50288,4,0),
16727 /*Starfire*/
16728 (2912,0,2912,1,0),
16729 (8949,2912,2912,2,0),
16730 (8950,8949,2912,3,0),
16731 (8951,8950,2912,4,0),
16732 (9875,8951,2912,5,0),
16733 (9876,9875,2912,6,0),
16734 (25298,9876,2912,7,0),
16735 (26986,25298,2912,8,0),
16736 (48464,26986,2912,9,0),
16737 (48465,48464,2912,10,0),
16738 /*Thorns*/
16739 (467,0,467,1,0),
16740 (782,467,467,2,0),
16741 (1075,782,467,3,0),
16742 (8914,1075,467,4,0),
16743 (9756,8914,467,5,0),
16744 (9910,9756,467,6,0),
16745 (26992,9910,467,7,0),
16746 (53307,26992,467,8,0),
16747 /*Typhoon*/
16748 (50516,0,50516,1,0),
16749 (53223,50516,50516,2,0),
16750 (53225,53223,50516,3,0),
16751 (53226,53225,50516,4,0),
16752 (61384,53226,50516,5,0),
16753 /*Typhoon Triggered*/
16754 (61391,0,61391,1,0),
16755 (61390,61391,61391,2,0),
16756 (61388,61390,61391,3,0),
16757 (61387,61388,61391,4,0),
16758 (53227,61387,61391,5,0),
16759 /*Wrath*/
16760 (5176,0,5176,1,0),
16761 (5177,5176,5176,2,0),
16762 (5178,5177,5176,3,0),
16763 (5179,5178,5176,4,0),
16764 (5180,5179,5176,5,0),
16765 (6780,5180,5176,6,0),
16766 (8905,6780,5176,7,0),
16767 (9912,8905,5176,8,0),
16768 (26984,9912,5176,9,0),
16769 (26985,26984,5176,10,0),
16770 (48459,26985,5176,11,0),
16771 (48461,48459,5176,12,0),
16772 /*------------------
16773 --(593)Destruction
16774 ------------------*/
16775 /*Chaos Bolt*/
16776 (50796,0,50796,1,0),
16777 (59170,50796,50796,2,0),
16778 (59171,59170,50796,3,0),
16779 (59172,59171,50796,4,0),
16780 /*Hellfire*/
16781 (1949,0,1949,1,0),
16782 (11683,1949,1949,2,0),
16783 (11684,11683,1949,3,0),
16784 (27213,11684,1949,4,0),
16785 (47823,27213,1949,5,0),
16786 /* Hellfire Effect on Enemy */
16787 (5857,0,5857,1,0),
16788 (11681,5857,5857,2,0),
16789 (11682,11681,5857,3,0),
16790 (27214,11682,5857,4,0),
16791 (47822,27214,5857,5,0),
16792 /*Immolate*/
16793 (348,0,348,1,0),
16794 (707,348,348,2,0),
16795 (1094,707,348,3,0),
16796 (2941,1094,348,4,0),
16797 (11665,2941,348,5,0),
16798 (11667,11665,348,6,0),
16799 (11668,11667,348,7,0),
16800 (25309,11668,348,8,0),
16801 (27215,25309,348,9,0),
16802 (47810,27215,348,10,0),
16803 (47811,47810,348,11,0),
16804 /*Incinerate*/
16805 (29722,0,29722,1,0),
16806 (32231,29722,29722,2,0),
16807 (47837,32231,29722,3,0),
16808 (47838,47837,29722,4,0),
16809 /*Molten Skin*/
16810 (63349,0,63349,1,0),
16811 (63350,63349,63349,2,0),
16812 (63351,63350,63349,3,0),
16813 /*Rain of Fire*/
16814 (5740,0,5740,1,0),
16815 (6219,5740,5740,2,0),
16816 (11677,6219,5740,3,0),
16817 (11678,11677,5740,4,0),
16818 (27212,11678,5740,5,0),
16819 (47819,27212,5740,6,0),
16820 (47820,47819,5740,7,0),
16821 /* Rain of Fire Triggered */
16822 (42223,0,42223,1,0),
16823 (42224,42223,42223,2,0),
16824 (42225,42224,42223,3,0),
16825 (42226,42225,42223,4,0),
16826 (42218,42226,42223,5,0),
16827 (47817,42218,42223,6,0),
16828 (47818,47817,42223,7,0),
16829 /*Searing Pain*/
16830 (5676,0,5676,1,0),
16831 (17919,5676,5676,2,0),
16832 (17920,17919,5676,3,0),
16833 (17921,17920,5676,4,0),
16834 (17922,17921,5676,5,0),
16835 (17923,17922,5676,6,0),
16836 (27210,17923,5676,7,0),
16837 (30459,27210,5676,8,0),
16838 (47814,30459,5676,9,0),
16839 (47815,47814,5676,10,0),
16840 /*Shadow Bolt*/
16841 (686,0,686,1,0),
16842 (695,686,686,2,0),
16843 (705,695,686,3,0),
16844 (1088,705,686,4,0),
16845 (1106,1088,686,5,0),
16846 (7641,1106,686,6,0),
16847 (11659,7641,686,7,0),
16848 (11660,11659,686,8,0),
16849 (11661,11660,686,9,0),
16850 (25307,11661,686,10,0),
16851 (27209,25307,686,11,0),
16852 (47808,27209,686,12,0),
16853 (47809,47808,686,13,0),
16854 /*Shadowburn*/
16855 (17877,0,17877,1,0),
16856 (18867,17877,17877,2,0),
16857 (18868,18867,17877,3,0),
16858 (18869,18868,17877,4,0),
16859 (18870,18869,17877,5,0),
16860 (18871,18870,17877,6,0),
16861 (27263,18871,17877,7,0),
16862 (30546,27263,17877,8,0),
16863 (47826,30546,17877,9,0),
16864 (47827,47826,17877,10,0),
16865 /*Shadowflame*/
16866 (47897,0,47897,1,0),
16867 (61290,47897,47897,2,0),
16868 /*Shadowfury*/
16869 (30283,0,30283,1,0),
16870 (30413,30283,30283,2,0),
16871 (30414,30413,30283,3,0),
16872 (47846,30414,30283,4,0),
16873 (47847,47846,30283,5,0),
16874 /*SoulFire*/
16875 (6353,0,6353,1,0),
16876 (17924,6353,6353,2,0),
16877 (27211,17924,6353,3,0),
16878 (30545,27211,6353,4,0),
16879 (47824,30545,6353,5,0),
16880 (47825,47824,6353,6,0),
16881 /*------------------
16882 --(594) Holy (Paladin)
16883 ------------------*/
16884 /*Blessing of Wisdom*/
16885 (19742,0,19742,1,0),
16886 (19850,19742,19742,2,0),
16887 (19852,19850,19742,3,0),
16888 (19853,19852,19742,4,0),
16889 (19854,19853,19742,5,0),
16890 (25290,19854,19742,6,0),
16891 (27142,25290,19742,7,0),
16892 (48935,27142,19742,8,0),
16893 (48936,48935,19742,9,0),
16894 /*Consecration*/
16895 (26573,0,26573,1,0),
16896 (20116,26573,26573,2,0),
16897 (20922,20116,26573,3,0),
16898 (20923,20922,26573,4,0),
16899 (20924,20923,26573,5,0),
16900 (27173,20924,26573,6,0),
16901 (48818,27173,26573,7,0),
16902 (48819,48818,26573,8,0),
16903 /*Exorcism*/
16904 (879,0,879,1,0),
16905 (5614,879,879,2,0),
16906 (5615,5614,879,3,0),
16907 (10312,5615,879,4,0),
16908 (10313,10312,879,5,0),
16909 (10314,10313,879,6,0),
16910 (27138,10314,879,7,0),
16911 (48800,27138,879,8,0),
16912 (48801,48800,879,9,0),
16913 /*Flash of Light*/
16914 (19750,0,19750,1,0),
16915 (19939,19750,19750,2,0),
16916 (19940,19939,19750,3,0),
16917 (19941,19940,19750,4,0),
16918 (19942,19941,19750,5,0),
16919 (19943,19942,19750,6,0),
16920 (27137,19943,19750,7,0),
16921 (48784,27137,19750,8,0),
16922 (48785,48784,19750,9,0),
16923 /*Greater Blessing of Wisdom*/
16924 (25894,0,25894,1,19854),
16925 (25918,25894,25894,2,25290),
16926 (27143,25918,25894,3,27142),
16927 (48937,27143,25894,4,48935),
16928 (48938,48937,25894,5,48936),
16929 /*Holy Light*/
16930 (635,0,635,1,0),
16931 (639,635,635,2,0),
16932 (647,639,635,3,0),
16933 (1026,647,635,4,0),
16934 (1042,1026,635,5,0),
16935 (3472,1042,635,6,0),
16936 (10328,3472,635,7,0),
16937 (10329,10328,635,8,0),
16938 (25292,10329,635,9,0),
16939 (27135,25292,635,10,0),
16940 (27136,27135,635,11,0),
16941 (48781,27136,635,12,0),
16942 (48782,48781,635,13,0),
16943 /*Holy Shock*/
16944 (20473,0,20473,1,0),
16945 (20929,20473,20473,2,0),
16946 (20930,20929,20473,3,0),
16947 (27174,20930,20473,4,0),
16948 (33072,27174,20473,5,0),
16949 (48824,33072,20473,6,0),
16950 (48825,48824,20473,7,0),
16951 /* Holy Shock Triggered Hurt */
16952 (25912,0,25912,1,0),
16953 (25911,25912,25912,2,0),
16954 (25902,25911,25912,3,0),
16955 (27176,25902,25912,4,0),
16956 (33073,27176,25912,5,0),
16957 (48822,33073,25912,6,0),
16958 (48823,48822,25912,7,0),
16959 /* Holy Shock Triggered Heal */
16960 (25914,0,25914,1,0),
16961 (25913,25914,25914,2,0),
16962 (25903,25913,25914,3,0),
16963 (27175,25903,25914,4,0),
16964 (33074,27175,25914,5,0),
16965 (48820,33074,25914,6,0),
16966 (48821,48820,25914,7,0),
16967 /*Holy Wrath*/
16968 (2812,0,2812,1,0),
16969 (10318,2812,2812,2,0),
16970 (27139,10318,2812,3,0),
16971 (48816,27139,2812,4,0),
16972 (48817,48816,2812,5,0),
16973 /*Lay on Hands*/
16974 (633,0,633,1,0),
16975 (2800,633,633,2,0),
16976 (10310,2800,633,3,0),
16977 (27154,10310,633,4,0),
16978 (48788,27154,633,5,0),
16979 /*Redemption*/
16980 (7328,0,7328,1,0),
16981 (10322,7328,7328,2,0),
16982 (10324,10322,7328,3,0),
16983 (20772,10324,7328,4,0),
16984 (20773,20772,7328,5,0),
16985 (48949,20773,7328,6,0),
16986 (48950,48949,7328,7,0),
16987 /*------------------
16988 --(613)Discipline
16989 ------------------*/
16990 /*DispelMagic*/
16991 (527,0,527,1,0),
16992 (988,527,527,2,0),
16993 /*DivineSpirit*/
16994 (14752,0,14752,1,0),
16995 (14818,14752,14752,2,0),
16996 (14819,14818,14752,3,0),
16997 (27841,14819,14752,4,0),
16998 (25312,27841,14752,5,0),
16999 (48073,25312,14752,6,0),
17000 /*Improved Flash Heal*/
17001 (63504,0,63504,1,0),
17002 (63505,63504,63504,2,0),
17003 (63506,63505,63504,3,0),
17004 /*InnerFire*/
17005 (588,0,588,1,0),
17006 (7128,588,588,2,0),
17007 (602,7128,588,3,0),
17008 (1006,602,588,4,0),
17009 (10951,1006,588,5,0),
17010 (10952,10951,588,6,0),
17011 (25431,10952,588,7,0),
17012 (48040,25431,588,8,0),
17013 (48168,48040,588,9,0),
17014 /*Penance*/
17015 (47540,0,47540,1,0),
17016 (53005,47540,47540,2,0),
17017 (53006,53005,47540,3,0),
17018 (53007,53006,47540,4,0),
17019 /*PowerWord:Fortitude*/
17020 (1243,0,1243,1,0),
17021 (1244,1243,1243,2,0),
17022 (1245,1244,1243,3,0),
17023 (2791,1245,1243,4,0),
17024 (10937,2791,1243,5,0),
17025 (10938,10937,1243,6,0),
17026 (25389,10938,1243,7,0),
17027 (48161,25389,1243,8,0),
17028 /*PowerWord:Shield*/
17029 (17,0,17,1,0),
17030 (592,17,17,2,0),
17031 (600,592,17,3,0),
17032 (3747,600,17,4,0),
17033 (6065,3747,17,5,0),
17034 (6066,6065,17,6,0),
17035 (10898,6066,17,7,0),
17036 (10899,10898,17,8,0),
17037 (10900,10899,17,9,0),
17038 (10901,10900,17,10,0),
17039 (25217,10901,17,11,0),
17040 (25218,25217,17,12,0),
17041 (48065,25218,17,13,0),
17042 (48066,48065,17,14,0),
17043 /*PrayerofFortitude*/
17044 (21562,0,21562,1,0),
17045 (21564,21562,21562,2,0),
17046 (25392,21564,21562,3,0),
17047 (48162,25392,21562,4,0),
17048 /*Prayer of Spirit*/
17049 (27681,14752,14752,2,0),
17050 (32999,27681,14752,3,0),
17051 (48074,32999,14752,4,0),
17052 /*Rapture*/
17053 (47535,0,47535,1,0),
17054 (47536,47535,47535,2,0),
17055 (47537,47536,47535,3,0),
17056 /*ShackleUndead*/
17057 (9484,0,9484,1,0),
17058 (9485,9484,9484,2,0),
17059 (10955,9485,9484,3,0),
17060 /*------------------
17061 --(654)Pet-Hyena
17062 ------------------*/
17063 /*TendonRip*/
17064 (50271,0,50271,1,0),
17065 (53571,50271,50271,2,0),
17066 (53572,53571,50271,3,0),
17067 (53573,53572,50271,4,0),
17068 (53574,53573,50271,5,0),
17069 (53575,53574,50271,6,0),
17070 /*------------------
17071 --(655)Pet-BirdofPrey
17072 ------------------*/
17073 /*Snatch*/
17074 (50541,0,50541,1,0),
17075 (53537,50541,50541,2,0),
17076 (53538,53537,50541,3,0),
17077 (53540,53538,50541,4,0),
17078 (53542,53540,50541,5,0),
17079 (53543,53542,50541,6,0),
17080 /*------------------
17081 --(656)Pet-WindSerpent
17082 ------------------*/
17083 /*LightningBreath*/
17084 (24844,0,24844,1,0),
17085 (25008,24844,24844,2,0),
17086 (25009,25008,24844,3,0),
17087 (25010,25009,24844,4,0),
17088 (25011,25010,24844,5,0),
17089 (25012,25011,24844,6,0),
17090 /*------------------
17091 -- (755) Jewelcrafting
17092 ------------------*/
17093 /*Jewelcrafting*/
17094 (25229,0,25229,1,0),
17095 (25230,25229,25229,2,0),
17096 (28894,25230,25229,3,0),
17097 (28895,28894,25229,4,0),
17098 (28897,28895,25229,5,0),
17099 (51311,28897,25229,6,0),
17100 /*------------------
17101 --(761)Pet-Felguard
17102 ------------------*/
17103 /*Anguish*/
17104 (33698,0,33698,1,0),
17105 (33699,33698,33698,2,0),
17106 (33700,33699,33698,3,0),
17107 (47993,33700,33698,4,0),
17108 /*Cleave*/
17109 (30213,0,30213,1,0),
17110 (30219,30213,30213,2,0),
17111 (30223,30219,30213,3,0),
17112 (47994,30223,30213,4,0),
17113 /*Intercept*/
17114 (30151,0,30151,1,0),
17115 (30194,30151,30151,2,0),
17116 (30198,30194,30151,3,0),
17117 (47996,30198,30151,4,0),
17118 /*------------------
17119 -- (762) Riding
17120 ------------------*/
17121 /*Riding*/
17122 (33388,0,33388,1,0),
17123 (33391,33388,33388,2,0),
17124 (34090,33391,33388,3,0),
17125 (34091,34090,33388,4,0),
17126 /*------------------
17127 --(763)Pet-Dragonhawk
17128 ------------------*/
17129 /*FireBreath*/
17130 (34889,0,34889,1,0),
17131 (35323,34889,34889,2,0),
17132 (55482,35323,34889,3,0),
17133 (55483,55482,34889,4,0),
17134 (55484,55483,34889,5,0),
17135 (55485,55484,34889,6,0),
17136 /*------------------
17137 --(764)Pet-NetherRay
17138 --(765)Pet-Sporebat
17139 ------------------*/
17140 /*SporeCloud*/
17141 (50274,0,50274,1,0),
17142 (53593,50274,50274,2,0),
17143 (53594,53593,50274,3,0),
17144 (53596,53594,50274,4,0),
17145 (53597,53596,50274,5,0),
17146 (53598,53597,50274,6,0),
17147 /*------------------
17148 --(767)Pet - Ravager
17149 ------------------*/
17150 /*Ravage*/
17151 (50518,0,50518,1,0),
17152 (53558,50518,50518,2,0),
17153 (53559,53558,50518,3,0),
17154 (53560,53559,50518,4,0),
17155 (53561,53560,50518,5,0),
17156 (53562,53561,50518,6,0),
17157 /*------------------
17158 --(768)Pet-Serpent
17159 ------------------*/
17160 /*PoisonSpit*/
17161 (35387,0,35387,1,0),
17162 (35389,35387,35387,2,0),
17163 (35392,35389,35387,3,0),
17164 (55555,35392,35387,4,0),
17165 (55556,55555,35387,5,0),
17166 (55557,55556,35387,6,0),
17167 /*------------------
17168 --(770)Blood
17169 ------------------*/
17170 /*Blood Boil*/
17171 (48721,0,48721,1,0),
17172 (49939,48721,48721,2,0),
17173 (49940,49939,48721,3,0),
17174 (49941,49940,48721,4,0),
17175 /*BloodStrike*/
17176 (45902,0,45902,1,0),
17177 (49926,45902,45902,2,0),
17178 (49927,49926,45902,3,0),
17179 (49928,49927,45902,4,0),
17180 (49929,49928,45902,5,0),
17181 (49930,49929,45902,6,0),
17182 /*Death Coil*/
17183 (62900,0,62900,1,0),
17184 (62901,62900,62900,2,0),
17185 (62902,62901,62900,3,0),
17186 (62903,62902,62900,4,0),
17187 (62904,62903,62900,5,0),
17188 /*Heart Strike*/
17189 (55050,0,55050,1,0),
17190 (55258,55050,55050,2,0),
17191 (55259,55258,55050,3,0),
17192 (55260,55259,55050,4,0),
17193 (55261,55260,55050,5,0),
17194 (55262,55261,55050,6,0),
17195 /*Improved Blood Presence*/
17196 (50365,0,50365,1,0),
17197 (50371,50365,50365,2,0),
17198 /*Improved Death Strike*/
17199 (62905,0,62905,1,0),
17200 (62908,62905,62905,2,0),
17201 /*Improved Rune Tap*/
17202 (48985,0,48985,1,0),
17203 (49488,48985,48985,2,0),
17204 (49489,49488,48985,3,0),
17205 /*Pestilence*/
17206 (50842,0,50842,1,0),
17207 (51426,50842,50842,2,0),
17208 (51427,51426,50842,3,0),
17209 (51428,51427,50842,4,0),
17210 (51429,51428,50842,5,0),
17211 /*Strangulate*/
17212 (47476,0,47476,1,0),
17213 (49913,47476,47476,2,0),
17214 (49914,49913,47476,3,0),
17215 (49915,49914,47476,4,0),
17216 (49916,49915,47476,5,0),
17217 /*Vendetta*/
17218 (49015,0,49015,1,0),
17219 (50154,49015,49015,2,0),
17220 (55136,50154,49015,3,0),
17221 /*------------------
17222 --(771)Frost
17223 ------------------*/
17224 /*FrostStrike*/
17225 (49143,0,49143,1,0),
17226 (51416,49143,49143,2,0),
17227 (51417,51416,49143,3,0),
17228 (51418,51417,49143,4,0),
17229 (51419,51418,49143,5,0),
17230 (55268,51419,49143,6,0),
17231 /*HornofWinter*/
17232 (57330,0,57330,1,0),
17233 (57623,57330,57330,2,0),
17234 /*Howling Blast*/
17235 (49184,0,49184,1,0),
17236 (51409,49184,49184,2,0),
17237 (51410,51409,49184,3,0),
17238 (51411,51410,49184,4,0),
17239 /*IcyTalons*/
17240 (50880,0,50880,1,0),
17241 (50884,50880,50880,2,0),
17242 (50885,50884,50880,3,0),
17243 (50886,50885,50880,4,0),
17244 (50887,50886,50880,5,0),
17245 /*IcyTouch*/
17246 (45477,0,45477,1,0),
17247 (49896,45477,45477,2,0),
17248 (49903,49896,45477,3,0),
17249 (49904,49903,45477,4,0),
17250 (49909,49904,45477,5,0),
17251 /*Improved Frost Presence*/
17252 (50384,0,50384,1,0),
17253 (50385,50384,50384,2,0),
17254 /*Improved Icy Touch*/
17255 (49175,0,49175,1,0),
17256 (50031,49175,49175,2,0),
17257 (51456,50031,49175,3,0),
17258 /*Obliterate*/
17259 (49020,0,49020,1,0),
17260 (51423,49020,49020,2,0),
17261 (51424,51423,49020,3,0),
17262 (51425,51424,49020,4,0),
17263 /*Threat of Thassarian*/
17264 (65661,0,65661,1,0),
17265 (66191,65661,65661,2,0),
17266 (66192,66191,65661,3,0),
17267 /*------------------
17268 --(772)Unholy
17269 ------------------*/
17270 /*CorpseExplosion*/
17271 (49158,0,49158,1,0),
17272 (51325,49158,49158,2,0),
17273 (51326,51325,49158,3,0),
17274 (51327,51326,49158,4,0),
17275 (51328,51327,49158,5,0),
17276 /*DeathandDecay*/
17277 (43265,0,43265,1,0),
17278 (49936,43265,43265,2,0),
17279 (49937,49936,43265,3,0),
17280 (49938,49937,43265,4,0),
17281 /*Death Coil*/
17282 (47541,0,47541,1,0),
17283 (49892,47541,47541,2,0),
17284 (49893,49892,47541,3,0),
17285 (49894,49893,47541,4,0),
17286 (49895,49894,47541,5,0),
17287 /*DeathStrike*/
17288 (49998,0,49998,1,0),
17289 (49999,49998,49998,2,0),
17290 (45463,49999,49998,3,0),
17291 (49923,45463,49998,4,0),
17292 (49924,49923,49998,5,0),
17293 /*Improved Unholy Presence*/
17294 (50391,0,50391,1,0),
17295 (50392,50391,50391,2,0),
17296 /*Magic Suppression*/
17297 (49224,0,49224,1,0),
17298 (49610,49224,49224,2,0),
17299 (49611,49610,49224,3,0),
17300 /*Outbreak*/
17301 (49013,0,49013,1,0),
17302 (55236,49013,49013,2,0),
17303 (55237,55236,49013,3,0),
17304 /*PlagueStrike*/
17305 (45462,0,45462,1,0),
17306 (49917,45462,45462,2,0),
17307 (49918,49917,45462,3,0),
17308 (49919,49918,45462,4,0),
17309 (49920,49919,45462,5,0),
17310 (49921,49920,45462,6,0),
17311 /*ScourgeStrike*/
17312 (55090,0,55090,1,0),
17313 (55265,55090,55090,2,0),
17314 (55270,55265,55090,3,0),
17315 (55271,55270,55090,4,0),
17316 /*------------------
17317 -- (773) Inscription
17318 ------------------*/
17319 /*Inscription*/
17320 (45357,0,45357,1,0),
17321 (45358,45357,45357,2,0),
17322 (45359,45358,45357,3,0),
17323 (45360,45359,45357,4,0),
17324 (45361,45360,45357,5,0),
17325 (45363,45361,45357,6,0),
17326 /*------------------
17327 -- (777) Mounts
17328 ------------------*/
17329 (13819,0,13819,1,0),
17330 (23214,13819,13819,2,33391),
17331 (34769,0,34769,1,0),
17332 (34767,34769,34769,2,33391),
17333 /*------------------
17334 --(780)Pet-Exotic Chimaera
17335 ------------------*/
17336 /*Froststorm Breath*/
17337 (54644,0,54644,1,0),
17338 (55488,54644,54644,2,0),
17339 (55489,55488,54644,3,0),
17340 (55490,55489,54644,4,0),
17341 (55491,55490,54644,5,0),
17342 (55492,55491,54644,6,0),
17343 /*------------------
17344 --(781)Pet-Exotic Devlisaur
17345 ------------------*/
17346 /*Monstrous Bite*/
17347 (54680,0,54680,1,0),
17348 (55495,54680,54680,2,0),
17349 (55496,55495,54680,3,0),
17350 (55497,55496,54680,4,0),
17351 (55498,55497,54680,5,0),
17352 (55499,55498,54680,6,0),
17353 /*------------------
17354 --(784)Pet-Exotic Worm
17355 ------------------*/
17356 /*AcidSpit*/
17357 (55749,0,55749,1,0),
17358 (55750,55749,55749,2,0),
17359 (55751,55750,55749,3,0),
17360 (55752,55751,55749,4,0),
17361 (55753,55752,55749,5,0),
17362 (55754,55753,55749,6,0),
17363 /*------------------
17364 --(785)Pet-Wasp
17365 ------------------*/
17366 /*Sting*/
17367 (56626,0,56626,1,0),
17368 (56627,56626,56626,2,0),
17369 (56628,56627,56626,3,0),
17370 (56629,56628,56626,4,0),
17371 (56630,56629,56626,5,0),
17372 (56631,56630,56626,6,0),
17373 /*------------------
17374 --(787)Pet-Exotic Core Hound
17375 ------------------*/
17376 /*Lava Breath*/
17377 (58604,0,58604,1,0),
17378 (58607,58604,58604,2,0),
17379 (58608,58607,58604,3,0),
17380 (58609,58608,58604,4,0),
17381 (58610,58609,58604,5,0),
17382 (58611,58610,58604,6,0),
17383 /*------------------
17384 --(788)Pet-Exotic Spirit Beast
17385 ------------------*/
17386 /*Spirit Strike*/
17387 (61193,0,61193,1,0),
17388 (61194,61193,61193,2,0),
17389 (61195,61194,61193,3,0),
17390 (61196,61195,61193,4,0),
17391 (61197,61196,61193,5,0),
17392 (61198,61197,61193,6,0),
17393 /*------------------
17394 --(-) Not listed in skill abilities
17395 ------------------*/
17396 /*Hurricane*/
17397 (42231,    0,42231,1,0),
17398 (42232,42231,42231,2,0),
17399 (42233,42232,42231,3,0),
17400 (42230,42233,42231,4,0),
17401 (48466,42230,42231,5,0),
17402 /*Shadowflame Triggered DoT*/
17403 (47960,0,47960,1,0),
17404 (61291,47960,47960,2,0),
17405 /*Tranquility*/
17406 (44203,    0,44203,1,0),
17407 (44205,44203,44203,2,0),
17408 (44206,44205,44203,3,0),
17409 (44207,44206,44203,4,0),
17410 (44208,44207,44203,5,0),
17411 (48444,44208,44203,6,0),
17412 (48445,48444,44203,7,0);
17413 /*!40000 ALTER TABLE `spell_chain` ENABLE KEYS */;
17414 UNLOCK TABLES;
17417 -- Table structure for table `spell_elixir`
17420 DROP TABLE IF EXISTS `spell_elixir`;
17421 CREATE TABLE `spell_elixir` (
17422   `entry` int(11) unsigned NOT NULL default '0' COMMENT 'SpellId of potion',
17423   `mask` tinyint(1) unsigned NOT NULL default '0' COMMENT 'Mask 0x1 battle 0x2 guardian 0x3 flask 0x7 unstable flasks 0xB shattrath flasks',
17424   PRIMARY KEY  (`entry`)
17425 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
17428 -- Dumping data for table `spell_elixir`
17431 LOCK TABLES `spell_elixir` WRITE;
17432 /*!40000 ALTER TABLE `spell_elixir` DISABLE KEYS */;
17433 INSERT INTO `spell_elixir` VALUES
17434 (  673,0x2),
17435 ( 2367,0x1),
17436 ( 2374,0x1),
17437 ( 2378,0x2),
17438 ( 2380,0x2),
17439 ( 3160,0x1),
17440 ( 3164,0x1),
17441 ( 3166,0x2),
17442 ( 3219,0x2),
17443 ( 3220,0x2),
17444 ( 3222,0x2),
17445 ( 3223,0x2),
17446 ( 3593,0x2),
17447 ( 7844,0x1),
17448 ( 8212,0x1),
17449 (10667,0x1),
17450 (10668,0x2),
17451 (10669,0x1),
17452 (10692,0x2),
17453 (10693,0x2),
17454 (11319,0x2),
17455 (11328,0x1),
17456 (11334,0x1),
17457 (11348,0x2),
17458 (11349,0x2),
17459 (11364,0x2),
17460 (11371,0x2),
17461 (11390,0x1),
17462 (11396,0x2),
17463 (11405,0x1),
17464 (11406,0x1),
17465 (11474,0x1),
17466 (15231,0x2),
17467 (15233,0x2),
17468 (16321,0x2),
17469 (16322,0x1),
17470 (16323,0x1),
17471 (16325,0x2),
17472 (16326,0x2),
17473 (16327,0x2),
17474 (16329,0x1),
17475 (17038,0x1),
17476 (17535,0x2),
17477 (17537,0x1),
17478 (17538,0x1),
17479 (17539,0x1),
17480 (17624,0x3),
17481 (17626,0x3),
17482 (17627,0x3),
17483 (17629,0x3),
17484 (17628,0x3),
17485 (18191,0x10),
17486 (18192,0x10),
17487 (18193,0x10),
17488 (18194,0x10),
17489 (18222,0x10),
17490 (21920,0x1),
17491 (22730,0x10),
17492 (24361,0x2),
17493 (24363,0x2),
17494 (24382,0x2),
17495 (24383,0x2),
17496 (24417,0x2),
17497 (25661,0x10),
17498 (26276,0x1),
17499 (27652,0x2),
17500 (27653,0x2),
17501 (28486,0x1),
17502 (28488,0x1),
17503 (28490,0x1),
17504 (28491,0x1),
17505 (28493,0x1),
17506 (28497,0x1),
17507 (28501,0x1),
17508 (28502,0x2),
17509 (28503,0x1),
17510 (28509,0x2),
17511 (28514,0x2),
17512 (28518,0x3),
17513 (28519,0x3),
17514 (28520,0x3),
17515 (28521,0x3),
17516 (28540,0x3),
17517 (29348,0x2),
17518 (33720,0x1),
17519 (33721,0x1),
17520 (33726,0x1),
17521 (38954,0x1),
17522 (39625,0x2),
17523 (39626,0x2),
17524 (39627,0x2),
17525 (39628,0x2),
17526 (40567,0x7),
17527 (40568,0x7),
17528 (40572,0x7),
17529 (40573,0x7),
17530 (40575,0x7),
17531 (40576,0x7),
17532 (41608,0xB),
17533 (41609,0xB),
17534 (41610,0xB),
17535 (41611,0xB),
17536 (42735,0x3),
17537 (45373,0x1),
17538 (46837,0xB),
17539 (46839,0xB),
17540 (53747,0x2),
17541 (53748,0x1),
17542 (53746,0x1),
17543 (53749,0x1),
17544 (53751,0x2),
17545 (53752,0x3),
17546 (53755,0x3),
17547 (53758,0x3),
17548 (53760,0x3),
17549 (53763,0x2),
17550 (53764,0x2),
17551 (54212,0x3),
17552 (54452,0x1),
17553 (54494,0x1),
17554 (54497,0x2),
17555 (60340,0x1),
17556 (60341,0x1),
17557 (60343,0x2),
17558 (60344,0x1),
17559 (60345,0x1),
17560 (60346,0x1),
17561 (60347,0x2),
17562 (62380,0x3),
17563 (67016,0x3),
17564 (67017,0x3),
17565 (67018,0x3),
17566 (67019,0x3);
17569 /*!40000 ALTER TABLE `spell_elixir` ENABLE KEYS */;
17570 UNLOCK TABLES;
17573 -- Table structure for table `spell_learn_spell`
17576 DROP TABLE IF EXISTS `spell_learn_spell`;
17577 CREATE TABLE `spell_learn_spell` (
17578   `entry` smallint(5) unsigned NOT NULL default '0',
17579   `SpellID` smallint(5) unsigned NOT NULL default '0',
17580   `Active` tinyint(3) unsigned NOT NULL default '1',
17581   PRIMARY KEY  (`entry`,`SpellID`)
17582 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
17585 -- Dumping data for table `spell_learn_spell`
17588 LOCK TABLES `spell_learn_spell` WRITE;
17589 /*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
17590 INSERT INTO `spell_learn_spell` VALUES
17591 (5784,33388,1),
17592 (13819,33388,1),
17593 (17002,24867,0),
17594 (23161,33391,1),
17595 (23214,33391,1),
17596 (24866,24864,0),
17597 (33872,47179,0),
17598 (33873,47180,0),
17599 (33943,34090,1),
17600 (34767,33391,1),
17601 (34769,33388,1),
17602 (53428,53341,1),
17603 (53428,53343,1),
17604 (56815,56816,0),
17605 (58984,21009,1);
17606 /*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
17607 UNLOCK TABLES;
17610 -- Table structure for table `spell_loot_template`
17613 DROP TABLE IF EXISTS `spell_loot_template`;
17614 CREATE TABLE `spell_loot_template` (
17615   `entry` mediumint(8) unsigned NOT NULL default '0',
17616   `item` mediumint(8) unsigned NOT NULL default '0',
17617   `ChanceOrQuestChance` float NOT NULL default '100',
17618   `groupid` tinyint(3) unsigned NOT NULL default '0',
17619   `mincountOrRef` mediumint(9) NOT NULL default '1',
17620   `maxcount` tinyint(3) unsigned NOT NULL default '1',
17621   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
17622   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
17623   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
17624   PRIMARY KEY  (`entry`,`item`)
17625 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
17628 -- Dumping data for table `spell_loot_template`
17631 LOCK TABLES `spell_loot_template` WRITE;
17632 /*!40000 ALTER TABLE `spell_loot_template` DISABLE KEYS */;
17633 /*!40000 ALTER TABLE `spell_loot_template` ENABLE KEYS */;
17634 UNLOCK TABLES;
17637 -- Table structure for table `spell_pet_auras`
17640 DROP TABLE IF EXISTS `spell_pet_auras`;
17641 CREATE TABLE `spell_pet_auras` (
17642   `spell` mediumint(8) unsigned NOT NULL COMMENT 'dummy spell id',
17643   `effectId` tinyint(3) unsigned NOT NULL default '0',
17644   `pet` mediumint(8) unsigned NOT NULL default '0' COMMENT 'pet id; 0 = all',
17645   `aura` mediumint(8) unsigned NOT NULL COMMENT 'pet aura id',
17646   PRIMARY KEY  (`spell`,`effectId`,`pet`)
17647 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
17650 -- Dumping data for table `spell_pet_auras`
17653 LOCK TABLES `spell_pet_auras` WRITE;
17654 /*!40000 ALTER TABLE `spell_pet_auras` DISABLE KEYS */;
17655 INSERT INTO `spell_pet_auras` VALUES
17656 (19028, 0, 0, 25228),
17657 (19578, 0, 0, 19579),
17658 (20895, 0, 0, 24529),
17659 (28757, 0, 0, 28758),
17660 (35029, 0, 0, 35060),
17661 (35030, 0, 0, 35061),
17662 (35691, 0, 0, 35696),
17663 (35692, 0, 0, 35696),
17664 (35693, 0, 0, 35696),
17665 (56314, 0, 0, 57447),
17666 (56314, 1, 0, 57485),
17667 (56315, 0, 0, 57452),
17668 (56315, 1, 0, 57484),
17669 (56316, 0, 0, 57453),
17670 (56316, 1, 0, 57483),
17671 (56317, 0, 0, 57457),
17672 (56317, 1, 0, 57482),
17673 (56318, 0, 0, 57458),
17674 (56318, 1, 0, 57475),
17675 (23785, 0, 416, 23759),
17676 (23822, 0, 416, 23826),
17677 (23823, 0, 416, 23827),
17678 (23824, 0, 416, 23828),
17679 (23825, 0, 416, 23829),
17680 (23785, 0, 417, 23762),
17681 (23822, 0, 417, 23837),
17682 (23823, 0, 417, 23838),
17683 (23824, 0, 417, 23839),
17684 (23825, 0, 417, 23840),
17685 (23785, 0, 1860, 23760),
17686 (23822, 0, 1860, 23841),
17687 (23823, 0, 1860, 23842),
17688 (23824, 0, 1860, 23843),
17689 (23825, 0, 1860, 23844),
17690 (23785, 0, 1863, 23761),
17691 (23822, 0, 1863, 23833),
17692 (23823, 0, 1863, 23834),
17693 (23824, 0, 1863, 23835),
17694 (23825, 0, 1863, 23836),
17695 (23785, 0, 17252, 35702),
17696 (23822, 0, 17252, 35703),
17697 (23823, 0, 17252, 35704),
17698 (23824, 0, 17252, 35705),
17699 (23825, 0, 17252, 35706),
17700 (58228, 0, 19668, 57989);
17702 /*!40000 ALTER TABLE `spell_pet_auras` ENABLE KEYS */;
17703 UNLOCK TABLES;
17706 -- Table structure for table `spell_proc_event`
17709 DROP TABLE IF EXISTS `spell_proc_event`;
17710 CREATE TABLE `spell_proc_event` (
17711   `entry` mediumint(8) unsigned NOT NULL default '0',
17712   `SchoolMask` tinyint(4) NOT NULL default '0',
17713   `SpellFamilyName` smallint(5) unsigned NOT NULL default '0',
17714   `SpellFamilyMask0` int(10) unsigned NOT NULL default '0',
17715   `SpellFamilyMask1` int(10) unsigned NOT NULL default '0',
17716   `SpellFamilyMask2` int(10) unsigned NOT NULL default '0',
17717   `procFlags` int(10) unsigned NOT NULL default '0',
17718   `procEx` int(10) unsigned NOT NULL default '0',
17719   `ppmRate` float NOT NULL default '0',
17720   `CustomChance` float NOT NULL default '0',
17721   `Cooldown` int(10) unsigned NOT NULL default '0',
17722   PRIMARY KEY  (`entry`)
17723 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
17726 -- Dumping data for table `spell_proc_event`
17729 LOCK TABLES `spell_proc_event` WRITE;
17730 /*!40000 ALTER TABLE `spell_proc_event` DISABLE KEYS */;
17731 INSERT INTO `spell_proc_event` VALUES
17732 (  324, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17733 (  974, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17734 ( 1463, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17735 ( 3232, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17736 ( 5952, 0x00000000,  8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17737 ( 6346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17738 ( 7383, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17739 ( 7434, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17740 ( 8178, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17741 ( 9452, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17742 ( 9782, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17743 ( 9784, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17744 ( 9799, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17745 (11095, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17746 (11119, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17747 (11120, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17748 (11129, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17749 (11180, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17750 (11185, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17751 (11255, 0x00000000,  3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17752 (12169, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17753 (12281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17754 (12289, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17755 (12298, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17756 (12311, 0x00000000,  4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17757 (12317, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17758 (12319, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17759 (12322, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17760 (12487, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17761 (12488, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17762 (12598, 0x00000000,  3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17763 (12668, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17764 (12724, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17765 (12725, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17766 (12726, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17767 (12727, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17768 (12797, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17769 (12799, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17770 (12812, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17771 (12813, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17772 (12814, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17773 (12815, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17774 (12834, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17775 (12846, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17776 (12847, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17777 (12848, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17778 (12849, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17779 (12867, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17780 (12872, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17781 (12873, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17782 (12958, 0x00000000,  4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17783 (12966, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17784 (12967, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17785 (12968, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17786 (12969, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17787 (12970, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17788 (12971, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17789 (12972, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17790 (12973, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17791 (12974, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17792 (12999, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000,  0),
17793 (13000, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17794 (13001, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8.000000, 0.000000,  0),
17795 (13002, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,10.000000, 0.000000,  0),
17796 (13045, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17797 (13046, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17798 (13047, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17799 (13048, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17800 (13163, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
17801 (13165, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17802 (13754, 0x00000000,  8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17803 (13867, 0x00000000,  8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17804 (13983, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
17805 (14070, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
17806 (14071, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
17807 (14156, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17808 (14160, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17809 (14161, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17810 (14186, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17811 (14190, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17812 (14193, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17813 (14194, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17814 (14195, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17815 (14531, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17816 (14774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17817 (14892, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17818 (15088, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17819 (15128, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17820 (15277, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17821 (15286, 0x00000020,  6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17822 (15337, 0x00000000,  6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17823 (15338, 0x00000000,  6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17824 (15346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17825 (15362, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17826 (15363, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17827 (15600, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
17828 (16164, 0x00000000, 11, 0x901000C3, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17829 (16176, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17830 (16180, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17831 (16196, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17832 (16198, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17833 (16235, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17834 (16240, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17835 (16256, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17836 (16257, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17837 (16277, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17838 (16278, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17839 (16279, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17840 (16280, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17841 (16281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17842 (16282, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17843 (16283, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17844 (16284, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17845 (16487, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17846 (16489, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17847 (16492, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17848 (16550, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17849 (16620, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17850 (16624, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17851 (16850, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17852 (16864, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17853 (16880, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17854 (16923, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17855 (16924, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17856 (16952, 0x00000000,  7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17857 (16954, 0x00000000,  7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17858 (16958, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17859 (16961, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17860 (17106, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17861 (17107, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17862 (17108, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17863 (17364, 0x00000008,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17864 (17495, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17865 (17793, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17866 (17796, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17867 (17801, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17868 (17802, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17869 (17803, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17870 (18073, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17871 (18094, 0x00000000,  5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17872 (18095, 0x00000000,  5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17873 (18096, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17874 (18119, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17875 (18120, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17876 (18820, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17877 (19184, 0x00000000,  9, 0x00000010, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17878 (19572, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17879 (19573, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17880 (20049, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17881 (20056, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17882 (20057, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17883 (20128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17884 (20131, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17885 (20132, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17886 (20164, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000,  0),
17887 (20165, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,20.000000, 0.000000,  0),
17888 (20166, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,15.000000, 0.000000,  0),
17889 (20182, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17890 (20210, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17891 (20212, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17892 (20213, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17893 (20214, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17894 (20215, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17895 (20234, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17896 (20235, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17897 (20335, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000100, 0x00000000, 0.000000, 100.000000,0),
17898 (20375, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  1),
17899 (20500, 0x00000000,  4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17900 (20501, 0x00000000,  4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17901 (20705, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17902 (20784, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17903 (20911, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17904 (20925, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17905 (21185, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17906 (21882, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17907 (21890, 0x00000000,  4, 0x2A764EEF, 0x0000036C, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17908 (22007, 0x00000000,  3, 0x00200021, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17909 (22618, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17910 (22648, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17911 (23547, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17912 (23548, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17913 (23551, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17914 (23552, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17915 (23572, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17916 (23578, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17917 (23581, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17918 (23602, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17919 (23686, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17920 (23688, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17921 (23689, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000,  0),
17922 (23695, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17923 (23721, 0x00000000,  9, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17924 (23920, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17925 (24353, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17926 (24389, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17927 (24658, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00014110, 0x00000000, 0.000000, 0.000000,  0),
17928 (24905, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002,15.000000, 0.000000,  0),
17929 (24932, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  6),
17930 (25050, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17931 (25669, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
17932 (25988, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17933 (26016, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17934 (26107, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000064, 0.000000, 0.000000,  0),
17935 (26119, 0x00000000, 10, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17936 (26128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
17937 (26135, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17938 (26480, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17939 (26605, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17940 (27419, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17941 (27498, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17942 (27521, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17943 (27656, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17944 (27774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17945 (27787, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17946 (27811, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17947 (27815, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17948 (27816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17949 (28592, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17950 (28593, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17951 (28716, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00048000, 0x00000000, 0.000000, 0.000000,  0),
17952 (28719, 0x00000000,  7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17953 (28744, 0x00000000,  7, 0x00000040, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0.000000, 0.000000,  0),
17954 (28752, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17955 (28789, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17956 (28802, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17957 (28809, 0x00000000,  6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17958 (28812, 0x00000000,  8, 0x02000006, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17959 (28816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17960 (28823, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17961 (28847, 0x00000000,  7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17962 (28849, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17963 (29074, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17964 (29075, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17965 (29076, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17966 (29150, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17967 (29179, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17968 (29180, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17969 (29385, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
17970 (29441, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  1),
17971 (29444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  1),
17972 (29455, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17973 (29501, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17974 (29593, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17975 (29594, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17976 (29624, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17977 (29625, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17978 (29626, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17979 (29632, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17980 (29633, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17981 (29634, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17982 (29635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17983 (29636, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17984 (29637, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17985 (29801, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17986 (29834, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17987 (29838, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17988 (29977, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17989 (30003, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17990 (30160, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17991 (30293, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17992 (30295, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17993 (30296, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17994 (30299, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17995 (30301, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17996 (30302, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17997 (30675, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17998 (30678, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17999 (30679, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18000 (30701, 0x0000001C,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18001 (30705, 0x0000001C,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18002 (30802, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18003 (30803, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18004 (30804, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18005 (30805, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18006 (30808, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18007 (30809, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18008 (30823, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.500000, 0.000000, 0),
18009 (30881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18010 (30883, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18011 (30884, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18012 (30885, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18013 (30886, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18014 (30937, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18015 (31124, 0x00000000,  8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18016 (31126, 0x00000000,  8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18017 (31244, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000,  0),
18018 (31245, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000,  0),
18019 (31394, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18020 (31569, 0x00000000,  3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18021 (31570, 0x00000000,  3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18022 (31785, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000,  0),
18023 (31794, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18024 (31833, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18025 (31835, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18026 (31836, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18027 (31871, 0x00000000, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18028 (31872, 0x00000000, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18029 (31876, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
18030 (31877, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
18031 (31878, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
18032 (31904, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18033 (32385, 0x00000000,  5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18034 (32409, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18035 (32587, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18036 (32642, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18037 (32734, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18038 (32748, 0x00000000,  8, 0x00000000, 0x00000001, 0x00000000, 0x00000140, 0x00000000, 0.000000, 0.000000,  0),
18039 (32776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18040 (32777, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18041 (32837, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
18042 (32844, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
18043 (32885, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18044 (33076, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
18045 (33089, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18046 (33127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
18047 (33142, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18048 (33145, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18049 (33146, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18050 (33150, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18051 (33151, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18052 (33154, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18053 (33191, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18054 (33192, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18055 (33193, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18056 (33297, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18057 (33299, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18058 (33510, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000,  0),
18059 (33648, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18060 (33719, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18061 (33746, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18062 (33757, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18063 (33759, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18064 (33881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18065 (33882, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18066 (33883, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18067 (33953, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
18068 (34074, 0x00000000,  9, 0x0007FA43, 0x00881081, 0x00000201, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18069 (34080, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
18070 (34138, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18071 (34139, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18072 (34258, 0x00000000, 10, 0x00000400, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18073 (34262, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18074 (34320, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18075 (34355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18076 (34457, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18077 (34497, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18078 (34498, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18079 (34499, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18080 (34500, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18081 (34502, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18082 (34503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18083 (34506, 0x00000000,  9, 0x0007FA01, 0x00801081, 0x08000201, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18084 (34584, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18085 (34586, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000,  0),
18086 (34598, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18087 (34749, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
18088 (34753, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18089 (34774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 20),
18090 (34783, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18091 (34827, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18092 (34859, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18093 (34860, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18094 (34914, 0x00000000,  6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18095 (34935, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
18096 (34938, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
18097 (34939, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
18098 (34950, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18099 (34954, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18100 (35077, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18101 (35080, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 60),
18102 (35083, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18103 (35086, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18104 (35100, 0x00000000,  9, 0x00001000, 0x00000000, 0x00000001, 0x00000100, 0x00000000, 0.000000, 0.000000,  0),
18105 (35121, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18106 (36096, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18107 (36111, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18108 (36541, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18109 (37165, 0x00000000,  8, 0x00200400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18110 (37168, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18111 (37170, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
18112 (37173, 0x00000000,  8, 0x2CBC0598, 0x00000106, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18113 (37189, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
18114 (37193, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18115 (37195, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18116 (37197, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
18117 (37213, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18118 (37214, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18119 (37227, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
18120 (37237, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18121 (37247, 0x00000008,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
18122 (37377, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18123 (37379, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18124 (37384, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18125 (37443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18126 (37514, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18127 (37516, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18128 (37519, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000,  0),
18129 (37523, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18130 (37528, 0x00000000,  4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18131 (37536, 0x00000000,  4, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18132 (37568, 0x00000000,  6, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18133 (37594, 0x00000000,  6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18134 (37600, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18135 (37601, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18136 (37603, 0x00000000,  6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18137 (37655, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18138 (37657, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  3),
18139 (38026, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
18140 (38031, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18141 (38290, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.600000, 0.000000,  0),
18142 (38299, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 12),
18143 (38326, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18144 (38327, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18145 (38334, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18146 (38347, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18147 (38350, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18148 (38394, 0x00000000,  5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18149 (38857, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18150 (39027, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18151 (39372, 0x00000030,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18152 (39437, 0x00000004,  5, 0x00001364, 0x000000C0, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18153 (39442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000,  0),
18154 (39443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18155 (39530, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18156 (39958, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.700000, 0.000000, 40),
18157 (40407, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
18158 (40438, 0x00000000,  6, 0x00008040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18159 (40442, 0x00000000,  7, 0x00000014, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18160 (40444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18161 (40458, 0x00000000,  4, 0x02000000, 0x00000601, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18162 (40463, 0x00000000, 11, 0x00000081, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18163 (40470, 0x00000000, 10, 0xC0800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18164 (40475, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18165 (40478, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18166 (40482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18167 (40485, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18168 (40899, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18169 (41034, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
18170 (41260, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18171 (41262, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18172 (41381, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
18173 (41393, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18174 (41434, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 45),
18175 (41469, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
18176 (41635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
18177 (41989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.500000, 0.000000,  0),
18178 (42083, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18179 (42135, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
18180 (42136, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
18181 (42368, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18182 (42370, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18183 (42770, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18184 (43338, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18185 (43443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18186 (43726, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18187 (43728, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18188 (43737, 0x00000000,  7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18189 (43739, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18190 (43741, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18191 (43745, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18192 (43748, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18193 (43750, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18194 (43819, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18195 (44394, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
18196 (44395, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
18197 (44396, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
18198 (44404, 0x00000000,  3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18199 (44442, 0x00000000,  3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  1),
18200 (44443, 0x00000000,  3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  1),
18201 (44445, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18202 (44446, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18203 (44448, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18204 (44449, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18205 (44469, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18206 (44470, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18207 (44471, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18208 (44472, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18209 (44546, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18210 (44548, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18211 (44549, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18212 (44835, 0x00000000,  7, 0x00000000, 0x00000080, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000,  0),
18213 (45054, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
18214 (45057, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18215 (45234, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18216 (45243, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18217 (45244, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18218 (45354, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18219 (45355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18220 (45481, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18221 (45482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18222 (45483, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18223 (45484, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
18224 (46025, 0x00000020,  6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18225 (46092, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18226 (46098, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18227 (46569, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18228 (46662, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 20),
18229 (46832, 0x00000000,  7, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18230 (46854, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18231 (46855, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18232 (46867, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18233 (46913, 0x00000000,  4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18234 (46916, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18235 (46951, 0x00000000,  4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18236 (46952, 0x00000000,  0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18237 (46953, 0x00000000,  0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18238 (47195, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18239 (47196, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18240 (47197, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18241 (47201, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18242 (47202, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18243 (47203, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18244 (47204, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18245 (47205, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18246 (47245, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18247 (47246, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18248 (47247, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18249 (47258, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18250 (47259, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18251 (47260, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18252 (47263, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
18253 (47264, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
18254 (47265, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
18255 (47509, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18256 (47511, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18257 (47515, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18258 (47516, 0x00000000,  6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18259 (47517, 0x00000000,  6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18260 (47569, 0x00000000,  6, 0x00004000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18261 (47580, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18262 (47581, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18263 (47582, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18264 (48110, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
18265 (48111, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
18266 (48483, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18267 (48484, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18268 (48485, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18269 (48496, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18270 (48499, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18271 (48500, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18272 (48506, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18273 (48510, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18274 (48511, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18275 (48516, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
18276 (48521, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
18277 (48525, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
18278 (48539, 0x00000000,  7, 0x00000010, 0x04000000, 0x00000000, 0x00040000, 0x00000000, 0.000000, 0.000000,  0),
18279 (48833, 0x00000000,  7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18280 (48835, 0x00000000, 10, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18281 (48837, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18282 (48988, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18283 (49018, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18284 (49137, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18285 (49188, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18286 (49208, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18287 (49222, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18288 (49503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18289 (49504, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18290 (49529, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18291 (49530, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18292 (49622, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18293 (49657, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18294 (50781, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  6),
18295 (50880, 0x00000010, 15, 0x00000000, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18296 (51123, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18297 (51127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18298 (51128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18299 (51129, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18300 (51130, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18301 (51346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18302 (51349, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18303 (51352, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18304 (51359, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18305 (51414, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18306 (51466, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18307 (51470, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18308 (51474, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18309 (51478, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18310 (51479, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18311 (51483, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18312 (51485, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18313 (51486, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18314 (51521, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  1),
18315 (51528, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,12.500000, 0.000000,  0),
18316 (51556, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18317 (51557, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18318 (51558, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18319 (51562, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18320 (51563, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18321 (51564, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18322 (51565, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18323 (51566, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18324 (51625, 0x00000000,  8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18325 (51626, 0x00000000,  8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18326 (51627, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18327 (51628, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18328 (51629, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18329 (51634, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18330 (51635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18331 (51636, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18332 (51664, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18333 (51665, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18334 (51667, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18335 (51668, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18336 (51669, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18337 (51672, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  1),
18338 (51674, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  1),
18339 (51679, 0x00000000,  8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18340 (51692, 0x00000000,  8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18341 (51696, 0x00000000,  8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18342 (51698, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
18343 (51700, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
18344 (51701, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
18345 (51940, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18346 (51989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18347 (52004, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18348 (52005, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18349 (52007, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18350 (52008, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18351 (52020, 0x00000000,  7, 0x00008000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18352 (52127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18353 (52420, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18354 (52423, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18355 (52795, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18356 (52797, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18357 (52798, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18358 (52799, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18359 (52800, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18360 (52898, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18361 (53137, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18362 (53138, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18363 (53215, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18364 (53216, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18365 (53217, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18366 (53221, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18367 (53222, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18368 (53224, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18369 (53228, 0x00000000,  9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18370 (53232, 0x00000000,  9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18371 (53234, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18372 (53237, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18373 (53238, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18374 (53256, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18375 (53259, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18376 (53260, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18377 (53290, 0x00000000,  9, 0x00000800, 0x00000001, 0x00000200, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18378 (53380, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18379 (53397, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18380 (53486, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18381 (53501, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18382 (53502, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18383 (53503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18384 (53551, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18385 (53552, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18386 (53553, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18387 (53569, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18388 (53576, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18389 (53601, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  6),
18390 (53646, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18391 (53671, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18392 (53673, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18393 (53817, 0x00000000, 11, 0x000001C3, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18394 (54149, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18395 (54151, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18396 (54154, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18397 (54155, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18398 (54278, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18399 (54486, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18400 (54488, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18401 (54489, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18402 (54490, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18403 (54646, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00015400, 0x00000002, 0.000000, 0.000000,  0),
18404 (54695, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18405 (54707, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18406 (54738, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18407 (54747, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18408 (54749, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18409 (54754, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18410 (54808, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18411 (54838, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18412 (54841, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  3),
18413 (54936, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18414 (54937, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18415 (54939, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18416 (55166, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18417 (55380, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18418 (55440, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18419 (55640, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18420 (55666, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18421 (55667, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18422 (55668, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18423 (55669, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18424 (55670, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18425 (55677, 0x00000000,  6, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18426 (55680, 0x00000000,  6, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18427 (55689, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18428 (55747, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18429 (55768, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18430 (55776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18431 (56218, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18432 (56342, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18433 (56343, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18434 (56344, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18435 (56355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18436 (56364, 0x00000000,  3, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18437 (56372, 0x00000000,  3, 0x00000000, 0x00000080, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18438 (56375, 0x00000000,  3, 0x01000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000,  0),
18439 (56451, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18440 (56611, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18441 (56612, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18442 (56613, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18443 (56614, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18444 (56636, 0x00000000,  4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
18445 (56816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000,  0),
18446 (56821, 0x00000000,  8, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18447 (56822, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18448 (56834, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18449 (56835, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18450 (57345, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18451 (57352, 0x00000000,  0, 0x00000001, 0x00000040, 0x00000000, 0x00010154, 0x00000003, 0.000000, 0.000000, 45),
18452 (57470, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18453 (57472, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18454 (57499, 0x00000000,  4, 0x40000001, 0x00010000, 0x00000000, 0x00014000, 0x00000000, 0.000000, 0.000000,  0),
18455 (57878, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18456 (57880, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18457 (57881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18458 (57989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0.000000, 0.000000,  0),
18459 (58357, 0x00000000,  4, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18460 (58364, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18461 (58372, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18462 (58386, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18463 (58442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
18464 (58444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18465 (58597, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00008000, 0x00000000, 0.000000, 100.000000,6),
18466 (58616, 0x00000000, 15, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18467 (58620, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18468 (58626, 0x00000000, 15, 0x02000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18469 (58631, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18470 (58644, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18471 (58647, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18472 (58677, 0x00000000, 15, 0x00002000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18473 (58872, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18474 (58874, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18475 (58901, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18476 (59057, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18477 (59176, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18478 (59327, 0x00000000, 15, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18479 (59345, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18480 (59630, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18481 (59725, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18482 (60061, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18483 (60063, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18484 (60066, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18485 (60132, 0x00000000, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18486 (60170, 0x00000000,  5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18487 (60172, 0x00000000,  5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18488 (60221, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18489 (60301, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18490 (60306, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18491 (60317, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18492 (60436, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18493 (60442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18494 (60473, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18495 (60482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18496 (60487, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
18497 (60490, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18498 (60493, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18499 (60503, 0x00000000,  4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18500 (60519, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18501 (60529, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18502 (60537, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18503 (60564, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18504 (60571, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18505 (60572, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18506 (60573, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18507 (60574, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18508 (60575, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18509 (60617, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18510 (60710, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18511 (60717, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18512 (60719, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18513 (60722, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18514 (60724, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18515 (60726, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18516 (60770, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18517 (60818, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18518 (60826, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18519 (61062, 0x00000000,  3, 0x00000000, 0x00000100, 0x00000000, 0x00004000, 0x00010000, 0.000000, 0.000000,  0),
18520 (61188, 0x00000000,  5, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18521 (61257, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000202A8, 0x00010000, 0.000000, 0.000000,  0),
18522 (61324, 0x00000000, 10, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18523 (61345, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18524 (61346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18525 (61356, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000002A8, 0x00000002, 0.000000, 0.000000, 45),
18526 (61618, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18527 (61846, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18528 (61847, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18529 (62600, 0x00000000,  7, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18530 (63108, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18531 (63156, 0x00000000,  0, 0x00000001, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18532 (63245, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18533 (63320, 0x00000000,  5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18534 (63373, 0x00000000, 11, 0x80000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000,  0),
18535 (63534, 0x00000000,  6, 0x00000040, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18536 (63625, 0x00000000,  6, 0x02000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000,  0),
18537 (63730, 0x00000000,  6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18538 (64928, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18539 (64976, 0x00000000,  4, 0x00000001, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000,  0),
18540 (65661, 0x00000000, 15, 0x00400011, 0x00020004, 0x00000000, 0x00000010, 0x00000001, 0.000000, 100.000000,0),
18541 (64127, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18542 (67353, 0x00000000,  7, 0x00008000, 0x00100500, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18543 (67667, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18544 (67672, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 50),
18545 (67702, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18546 (67771, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45);
18548 /*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
18549 UNLOCK TABLES;
18552 -- Table structure for spell_proc_item_enchant
18555 DROP TABLE IF EXISTS `spell_proc_item_enchant`;
18556 CREATE TABLE `spell_proc_item_enchant` (
18557   `entry` mediumint unsigned NOT NULL,
18558   `ppmRate` float NOT NULL default '0',
18559   PRIMARY KEY  (`entry`)
18560 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
18563 -- Dumping data for table `spell_proc_item_enchant`
18566 LOCK TABLES `spell_proc_item_enchant` WRITE;
18567 /*!40000 ALTER TABLE `spell_proc_item_enchant` DISABLE KEYS */;
18568 INSERT INTO `spell_proc_item_enchant` (`entry`, `ppmRate`) VALUES
18569 (8034, 9),        -- Frostbrand Weapon
18570 (8680, 8.5714),   -- Instant Poison
18571 (13218, 21.4286); -- Wound Poison
18572 /*!40000 ALTER TABLE `spell_proc_item_enchant` ENABLE KEYS */;
18573 UNLOCK TABLES;
18576 -- Table structure for table `spell_script_target`
18579 DROP TABLE IF EXISTS `spell_script_target`;
18580 CREATE TABLE `spell_script_target` (
18581   `entry` mediumint(8) unsigned NOT NULL,
18582   `type` tinyint(3) unsigned NOT NULL default '0',
18583   `targetEntry` mediumint(8) unsigned NOT NULL default '0',
18584   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
18585 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Spell System';
18588 -- Dumping data for table `spell_script_target`
18591 LOCK TABLES `spell_script_target` WRITE;
18592 /*!40000 ALTER TABLE `spell_script_target` DISABLE KEYS */;
18593 /*!40000 ALTER TABLE `spell_script_target` ENABLE KEYS */;
18594 UNLOCK TABLES;
18597 -- Table structure for table `spell_scripts`
18600 DROP TABLE IF EXISTS `spell_scripts`;
18601 CREATE TABLE `spell_scripts` (
18602   `id` mediumint(8) unsigned NOT NULL default '0',
18603   `delay` int(10) unsigned NOT NULL default '0',
18604   `command` mediumint(8) unsigned NOT NULL default '0',
18605   `datalong` mediumint(8) unsigned NOT NULL default '0',
18606   `datalong2` int(10) unsigned NOT NULL default '0',
18607   `dataint` int(11) NOT NULL default '0',
18608   `x` float NOT NULL default '0',
18609   `y` float NOT NULL default '0',
18610   `z` float NOT NULL default '0',
18611   `o` float NOT NULL default '0'
18612 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
18615 -- Dumping data for table `spell_scripts`
18618 LOCK TABLES `spell_scripts` WRITE;
18619 /*!40000 ALTER TABLE `spell_scripts` DISABLE KEYS */;
18620 /*!40000 ALTER TABLE `spell_scripts` ENABLE KEYS */;
18621 UNLOCK TABLES;
18624 -- Table structure for table `spell_target_position`
18627 DROP TABLE IF EXISTS `spell_target_position`;
18628 CREATE TABLE `spell_target_position` (
18629   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
18630   `target_map` smallint(5) unsigned NOT NULL default '0',
18631   `target_position_x` float NOT NULL default '0',
18632   `target_position_y` float NOT NULL default '0',
18633   `target_position_z` float NOT NULL default '0',
18634   `target_orientation` float NOT NULL default '0',
18635   PRIMARY KEY  (`id`)
18636 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
18639 -- Dumping data for table `spell_target_position`
18642 LOCK TABLES `spell_target_position` WRITE;
18643 /*!40000 ALTER TABLE `spell_target_position` DISABLE KEYS */;
18644 /*!40000 ALTER TABLE `spell_target_position` ENABLE KEYS */;
18645 UNLOCK TABLES;
18648 -- Table structure for table `spell_threat`
18651 DROP TABLE IF EXISTS `spell_threat`;
18652 CREATE TABLE `spell_threat` (
18653   `entry` mediumint(8) unsigned NOT NULL,
18654   `Threat` smallint(6) NOT NULL,
18655   PRIMARY KEY  (`entry`)
18656 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
18659 -- Dumping data for table `spell_threat`
18662 LOCK TABLES `spell_threat` WRITE;
18663 /*!40000 ALTER TABLE `spell_threat` DISABLE KEYS */;
18664 INSERT INTO `spell_threat` VALUES
18665 (72,293),
18666 (78,20),
18667 (99,42),
18668 (284,39),
18669 (285,59),
18670 (469,40),
18671 (676,104),
18672 (770,108),
18673 (845,10),
18674 (1160,16),
18675 (1608,78),
18676 (1672,180),
18677 (1715,61),
18678 (1735,42),
18679 (2048,70),
18680 (2139,300),
18681 (5242,26),
18682 (6190,26),
18683 (6192,32),
18684 (6343,17),
18685 (6572,155),
18686 (6673,18),
18687 (6574,195),
18688 (6807,322),
18689 (6808,322),
18690 (6809,322),
18691 (7369,40),
18692 (7372,101),
18693 (7373,141),
18694 (7379,235),
18695 (7386,100),
18696 (8198,40),
18697 (8204,64),
18698 (8205,96),
18699 (8972,322),
18700 (9490,42),
18701 (9745,322),
18702 (9747,42),
18703 (9880,322),
18704 (9881,322),
18705 (9898,42),
18706 (11549,40),
18707 (11550,48),
18708 (11551,56),
18709 (11554,30),
18710 (11555,37),
18711 (11556,43),
18712 (11564,98),
18713 (11565,118),
18714 (11566,137),
18715 (11567,145),
18716 (11580,143),
18717 (11581,180),
18718 (11600,275),
18719 (11601,315),
18720 (11608,60),
18721 (11609,70),
18722 (11775,395),
18723 (14921,415),
18724 (16857,108),
18725 (17735,200),
18726 (17750,300),
18727 (17751,450),
18728 (17752,600),
18729 (20569,100),
18730 (20736,100),
18731 (20925,20),
18732 (20927,30),
18733 (20928,40),
18734 (23922,160),
18735 (23923,190),
18736 (23924,220),
18737 (23925,250),
18738 (24394,580),
18739 (24583,5),
18740 (25202,50),
18741 (25203,55),
18742 (25231,130),
18743 (25258,286),
18744 (25264,215),
18745 (25269,400),
18746 (25286,175),
18747 (25288,355),
18748 (25289,62),
18749 (26996,322),
18750 (26998,42),
18751 (27179,54),
18752 (29704,230),
18753 (29707,196),
18754 (30324,220),
18755 (30356,323),
18756 (30357,483),
18757 (33745,285),
18758 (33878,129),
18759 (33986,180),
18760 (33987,232),
18761 (47436,78),
18762 (47437,63),
18763 (47439,60),
18764 (47440,80),
18765 (47449,236),
18766 (47450,259),
18767 (47487,520),
18768 (47488,770),
18769 (47497,101),
18770 (47498,101),
18771 (47501,235),
18772 (47502,260),
18773 (47519,180),
18774 (47520,225),
18775 (48479,322),
18776 (48480,322),
18777 (48559,42),
18778 (48560,42),
18779 (48567,285),
18780 (48568,285),
18781 (57823,500);
18782 /*!40000 ALTER TABLE `spell_threat` ENABLE KEYS */;
18783 UNLOCK TABLES;
18786 -- Table structure for table `transports`
18789 DROP TABLE IF EXISTS `transports`;
18790 CREATE TABLE `transports` (
18791   `entry` mediumint(8) unsigned NOT NULL default '0',
18792   `name` text,
18793   `period` mediumint(8) unsigned NOT NULL default '0',
18794   PRIMARY KEY  (`entry`)
18795 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Transports';
18798 -- Dumping data for table `transports`
18801 LOCK TABLES `transports` WRITE;
18802 /*!40000 ALTER TABLE `transports` DISABLE KEYS */;
18803 /*!40000 ALTER TABLE `transports` ENABLE KEYS */;
18804 UNLOCK TABLES;
18805 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
18807 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
18808 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
18809 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
18810 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
18811 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
18812 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
18813 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
18815 -- Dump completed on 2008-03-30 15:34:54