[9924] Implement .server log filter and .server log level comamnds.
[getmangos.git] / sql / mangos.sql
blob869c1e5ae9dd1dbf1e8ca13131a851b9081602aa
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_9924_02_mangos_command` 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   `gender` tinyint(3) default '2',
71   `title_A` mediumint(8) unsigned NOT NULL default '0',
72   `title_H` mediumint(8) unsigned NOT NULL default '0',
73   `item` mediumint(8) unsigned NOT NULL default '0',
74   `sender` mediumint(8) unsigned NOT NULL default '0',
75   `subject` varchar(255) default NULL,
76   `text` text,
77   PRIMARY KEY  (`entry`,`gender`)
78 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
81 -- Dumping data for table `achievement_reward`
84 LOCK TABLES `achievement_reward` WRITE;
85 /*!40000 ALTER TABLE `achievement_reward` DISABLE KEYS */;
86 /*!40000 ALTER TABLE `achievement_reward` ENABLE KEYS */;
87 UNLOCK TABLES;
90 -- Table structure for table `areatrigger_involvedrelation`
93 DROP TABLE IF EXISTS `areatrigger_involvedrelation`;
94 CREATE TABLE `areatrigger_involvedrelation` (
95   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
96   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
97   PRIMARY KEY  (`id`)
98 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
101 -- Dumping data for table `areatrigger_involvedrelation`
104 LOCK TABLES `areatrigger_involvedrelation` WRITE;
105 /*!40000 ALTER TABLE `areatrigger_involvedrelation` DISABLE KEYS */;
106 /*!40000 ALTER TABLE `areatrigger_involvedrelation` ENABLE KEYS */;
107 UNLOCK TABLES;
110 -- Table structure for table `areatrigger_scripts`
113 DROP TABLE IF EXISTS `areatrigger_scripts`;
114 CREATE TABLE `areatrigger_scripts` (
115     `entry` MEDIUMINT( 8 ) NOT NULL ,
116     `ScriptName` CHAR( 64 ) NOT NULL ,
117     PRIMARY KEY ( `entry` )
118 ) ENGINE = MYISAM DEFAULT CHARSET=utf8;
121 -- Dumping data for table `areatrigger_scripts`
124 LOCK TABLES `areatrigger_scripts` WRITE;
125 /*!40000 ALTER TABLE `areatrigger_scripts` DISABLE KEYS */;
126 /*!40000 ALTER TABLE `areatrigger_scripts` ENABLE KEYS */;
127 UNLOCK TABLES;
130 -- Table structure for table `areatrigger_tavern`
133 DROP TABLE IF EXISTS `areatrigger_tavern`;
134 CREATE TABLE `areatrigger_tavern` (
135   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
136   `name` text,
137   PRIMARY KEY  (`id`)
138 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
141 -- Dumping data for table `areatrigger_tavern`
144 LOCK TABLES `areatrigger_tavern` WRITE;
145 /*!40000 ALTER TABLE `areatrigger_tavern` DISABLE KEYS */;
146 /*!40000 ALTER TABLE `areatrigger_tavern` ENABLE KEYS */;
147 UNLOCK TABLES;
150 -- Table structure for table `areatrigger_teleport`
153 DROP TABLE IF EXISTS `areatrigger_teleport`;
154 CREATE TABLE `areatrigger_teleport` (
155   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
156   `name` text,
157   `required_level` tinyint(3) unsigned NOT NULL default '0',
158   `required_item` mediumint(8) unsigned NOT NULL default '0',
159   `required_item2` mediumint(8) unsigned NOT NULL default '0',
160   `heroic_key` mediumint(8) unsigned NOT NULL default '0',
161   `heroic_key2` mediumint(8) unsigned NOT NULL default '0',
162   `required_quest_done` int(11) unsigned NOT NULL default '0',
163   `required_quest_done_heroic` int(11) unsigned NOT NULL default '0',
164   `required_failed_text` text,
165   `target_map` smallint(5) unsigned NOT NULL default '0',
166   `target_position_x` float NOT NULL default '0',
167   `target_position_y` float NOT NULL default '0',
168   `target_position_z` float NOT NULL default '0',
169   `target_orientation` float NOT NULL default '0',
170   PRIMARY KEY  (`id`)
171 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
174 -- Dumping data for table `areatrigger_teleport`
177 LOCK TABLES `areatrigger_teleport` WRITE;
178 /*!40000 ALTER TABLE `areatrigger_teleport` DISABLE KEYS */;
179 /*!40000 ALTER TABLE `areatrigger_teleport` ENABLE KEYS */;
180 UNLOCK TABLES;
183 -- Table structure for table `battleground_events`
186 DROP TABLE IF EXISTS `battleground_events`;
187 CREATE TABLE `battleground_events` (
188   `map` smallint(5) NOT NULL,
189   `event1` tinyint(3) unsigned NOT NULL,
190   `event2` tinyint(3) unsigned NOT NULL,
191   `description` varchar(255) NOT NULL,
192   PRIMARY KEY  (`map`,`event1`,`event2`)
193 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
196 -- Dumping data for table `battleground_events`
199 LOCK TABLES `battleground_events` WRITE;
200 /*!40000 ALTER TABLE `battleground_events` DISABLE KEYS */;
201 INSERT INTO battleground_events (map, event1, event2, description) VALUES
202 -- WS
203 (489, 0, 0, 'Alliance Flag'),
204 (489, 1, 0, 'Horde Flag'),
205 (489, 2, 0, 'Spirit Guides'),
206 (489, 254, 0, 'Doors'),
207 -- AB
208 (529, 0, 0, 'Stables - neutral'),
209 (529, 0, 1, 'Stables - alliance contested'),
210 (529, 0, 2, 'Stables - horde contested'),
211 (529, 0, 3, 'Stables - alliance owned'),
212 (529, 0, 4, 'Stables - horde owned'),
213 (529, 1, 0, 'Blacksmith - neutral'),
214 (529, 1, 1, 'Blacksmith - alliance contested'),
215 (529, 1, 2, 'Blacksmith - horde contested'),
216 (529, 1, 3, 'Blacksmith - alliance owned'),
217 (529, 1, 4, 'Blacksmith - horde owned'),
218 (529, 2, 0, 'Farm - neutral'),
219 (529, 2, 1, 'Farm - alliance contested'),
220 (529, 2, 2, 'Farm - horde contested'),
221 (529, 2, 3, 'Farm - alliance owned'),
222 (529, 2, 4, 'Farm - horde owned'),
223 (529, 3, 0, 'Lumber Mill - neutral'),
224 (529, 3, 1, 'Lumber Mill - alliance contested'),
225 (529, 3, 2, 'Lumber Mill - horde contested'),
226 (529, 3, 3, 'Lumber Mill - alliance owned'),
227 (529, 3, 4, 'Lumber Mill - horde owned'),
228 (529, 4, 0, 'Gold Mine - neutral'),
229 (529, 4, 1, 'Gold Mine - alliance contested'),
230 (529, 4, 2, 'Gold Mine - horde contested'),
231 (529, 4, 3, 'Gold Mine - alliance owned'),
232 (529, 4, 4, 'Gold Mine - horde owned'),
233 (529, 254, 0, 'doors'),
234 -- EY
235 (566, 0, 0, 'Fel Reaver - alliance'),
236 (566, 0, 1, 'Fel Reaver - horde'),
237 (566, 0, 2, 'Fel Reaver - neutral'),
238 (566, 1, 0, 'Blood Elf - alliance'),
239 (566, 1, 1, 'Blood Elf - horde'),
240 (566, 1, 2, 'Blood Elf - neutral'),
241 (566, 2, 0, 'Draenei Ruins - alliance'),
242 (566, 2, 1, 'Draenei Ruins - horde'),
243 (566, 2, 2, 'Draenei Ruins - neutral'),
244 (566, 3, 0, 'Mage Tower - alliance'),
245 (566, 3, 1, 'Mage Tower - horde'),
246 (566, 3, 2, 'Mage Tower - neutral'),
247 (566, 4, 0, 'capture flag - Fel Reaver'),
248 (566, 4, 1, 'capture flag - Blood Elf'),
249 (566, 4, 2, 'capture flag - Draenei Ruins'),
250 (566, 4, 3, 'capture flag - Mage Tower'),
251 (566, 4, 4, 'capture flag - center'),
252 (566, 254, 0, 'doors'),
253 -- arenas
254 (559, 253, 0, 'buffs'),
255 (559, 254, 0, 'doors'),
256 (572, 253, 0, 'buffs'),
257 (572, 254, 0, 'doors'),
258 (562, 253, 0, 'buffs'),
259 (562, 254, 0, 'doors'),
260 -- alterac valley
261 (30, 254, 0, 'Doors'),
263 (30, 0, 0, 'Firstaid Station - Alliance assaulted'),
264 (30, 0, 1, 'Firstaid Station - ALliance control'),
265 (30, 0, 2, 'Firstaid Station - Horde assaulted'),
266 (30, 0, 3, 'Firstaid Station - Horde control'),
268 (30, 1, 0, 'Stormpike Grave - Alliance assaulted'),
269 (30, 1, 1, 'Stormpike Grave - ALliance control'),
270 (30, 1, 2, 'Stormpike Grave - Horde assaulted'),
271 (30, 1, 3, 'Stormpike Grave - Horde control'),
273 (30, 2, 0, 'Stoneheart Grave - Alliance assaulted'),
274 (30, 2, 1, 'Stoneheart Grave - ALliance control'),
275 (30, 2, 2, 'Stoneheart Grave - Horde assaulted'),
276 (30, 2, 3, 'Stoneheart Grave - Horde control'),
278 (30, 3, 0, 'Snowfall Grave - Alliance assaulted'),
279 (30, 3, 1, 'Snowfall Grave - ALliance control'),
280 (30, 3, 2, 'Snowfall Grave - Horde assaulted'),
281 (30, 3, 3, 'Snowfall Grave - Horde control'),
282 (30, 3, 5, 'Snowfall Grave - Neutral control'),
284 (30, 4, 0, 'Iceblood Grave - Alliance assaulted'),
285 (30, 4, 1, 'Iceblood Grave - ALliance control'),
286 (30, 4, 2, 'Iceblood Grave - Horde assaulted'),
287 (30, 4, 3, 'Iceblood Grave - Horde control'),
289 (30, 5, 0, 'Frostwolf Grave - Alliance assaulted'),
290 (30, 5, 1, 'Frostwolf Grave - ALliance control'),
291 (30, 5, 2, 'Frostwolf Grave - Horde assaulted'),
292 (30, 5, 3, 'Frostwolf Grave - Horde control'),
294 (30, 6, 0, 'Frostwolf Hut - Alliance assaulted'),
295 (30, 6, 1, 'Frostwolf Hut - ALliance control'),
296 (30, 6, 2, 'Frostwolf Hut - Horde assaulted'),
297 (30, 6, 3, 'Frostwolf Hut - Horde control'),
299 (30, 7, 1, 'Dunbaldar South - ALliance control'),
300 (30, 7, 2, 'Dunbaldar South - Horde assaulted'),
301 (30, 7, 3, 'Dunbaldar South - Horde control'),
303 (30, 8, 1, 'Dunbaldar North - ALliance control'),
304 (30, 8, 2, 'Dunbaldar North - Horde assaulted'),
305 (30, 8, 3, 'Dunbaldar North - Horde control'),
307 (30, 9, 1, 'Icewing Bunker - ALliance control'),
308 (30, 9, 2, 'Icewing Bunker - Horde assaulted'),
309 (30, 9, 3, 'Icewing Bunker - Horde control'),
311 (30, 10, 1, 'Stoneheart Bunker - ALliance control'),
312 (30, 10, 2, 'Stoneheart Bunker - Horde assaulted'),
313 (30, 10, 3, 'Stoneheart Bunker - Horde control'),
315 (30, 11, 0, 'Iceblood Tower - Alliance assaulted'),
316 (30, 11, 1, 'Iceblood Tower - ALliance control'),
317 (30, 11, 3, 'Iceblood Tower - Horde control'),
319 (30, 12, 0, 'Tower Point - Alliance assaulted'),
320 (30, 12, 1, 'Tower Point - ALliance control'),
321 (30, 12, 3, 'Tower Point - Horde control'),
323 (30, 13, 0, 'Frostwolf east Tower - Alliance assaulted'),
324 (30, 13, 1, 'Frostwolf east Tower - ALliance control'),
325 (30, 13, 3, 'Frostwolf east Tower - Horde control'),
327 (30, 14, 0, 'Frostwolf west Tower - Alliance assaulted'),
328 (30, 14, 1, 'Frostwolf west Tower - ALliance control'),
329 (30, 14, 3, 'Frostwolf west Tower - Horde control'),
332 (30, 15, 0, 'Firstaid Station - Alliance Defender Quest0'),
333 (30, 15, 1, 'Firstaid Station - Alliance Defender Quest1'),
334 (30, 15, 2, 'Firstaid Station - Alliance Defender Quest2'),
335 (30, 15, 3, 'Firstaid Station - Alliance Defender Quest3'),
336 (30, 15, 4, 'Firstaid Station - Horde Defender Quest0'),
337 (30, 15, 5, 'Firstaid Station - Horde Defender Quest1'),
338 (30, 15, 6, 'Firstaid Station - Horde Defender Quest2'),
339 (30, 15, 7, 'Firstaid Station - Horde Defender Quest3'),
341 (30, 16, 0, 'Stormpike Grave - Alliance Defender Quest0'),
342 (30, 16, 1, 'Stormpike Grave - Alliance Defender Quest1'),
343 (30, 16, 2, 'Stormpike Grave - Alliance Defender Quest2'),
344 (30, 16, 3, 'Stormpike Grave - Alliance Defender Quest3'),
345 (30, 16, 4, 'Stormpike Grave - Horde Defender Quest0'),
346 (30, 16, 5, 'Stormpike Grave - Horde Defender Quest1'),
347 (30, 16, 6, 'Stormpike Grave - Horde Defender Quest2'),
348 (30, 16, 7, 'Stormpike Grave - Horde Defender Quest3'),
350 (30, 17, 0, 'Stoneheart Grave - Alliance Defender Quest0'),
351 (30, 17, 1, 'Stoneheart Grave - Alliance Defender Quest1'),
352 (30, 17, 2, 'Stoneheart Grave - Alliance Defender Quest2'),
353 (30, 17, 3, 'Stoneheart Grave - Alliance Defender Quest3'),
354 (30, 17, 4, 'Stoneheart Grave - Horde Defender Quest0'),
355 (30, 17, 5, 'Stoneheart Grave - Horde Defender Quest1'),
356 (30, 17, 6, 'Stoneheart Grave - Horde Defender Quest2'),
357 (30, 17, 7, 'Stoneheart Grave - Horde Defender Quest3'),
359 (30, 18, 0, 'Snowfall Grave - Alliance Defender Quest0'),
360 (30, 18, 1, 'Snowfall Grave - Alliance Defender Quest1'),
361 (30, 18, 2, 'Snowfall Grave - Alliance Defender Quest2'),
362 (30, 18, 3, 'Snowfall Grave - Alliance Defender Quest3'),
363 (30, 18, 4, 'Snowfall Grave - Horde Defender Quest0'),
364 (30, 18, 5, 'Snowfall Grave - Horde Defender Quest1'),
365 (30, 18, 6, 'Snowfall Grave - Horde Defender Quest2'),
366 (30, 18, 7, 'Snowfall Grave - Horde Defender Quest3'),
368 (30, 19, 0, 'Iceblood Grave - Alliance Defender Quest0'),
369 (30, 19, 1, 'Iceblood Grave - Alliance Defender Quest1'),
370 (30, 19, 2, 'Iceblood Grave - Alliance Defender Quest2'),
371 (30, 19, 3, 'Iceblood Grave - Alliance Defender Quest3'),
372 (30, 19, 4, 'Iceblood Grave - Horde Defender Quest0'),
373 (30, 19, 5, 'Iceblood Grave - Horde Defender Quest1'),
374 (30, 19, 6, 'Iceblood Grave - Horde Defender Quest2'),
375 (30, 19, 7, 'Iceblood Grave - Horde Defender Quest3'),
377 (30, 20, 0, 'Frostwolf Grave - Alliance Defender Quest0'),
378 (30, 20, 1, 'Frostwolf Grave - Alliance Defender Quest1'),
379 (30, 20, 2, 'Frostwolf Grave - Alliance Defender Quest2'),
380 (30, 20, 3, 'Frostwolf Grave - Alliance Defender Quest3'),
381 (30, 20, 4, 'Frostwolf Grave - Horde Defender Quest0'),
382 (30, 20, 5, 'Frostwolf Grave - Horde Defender Quest1'),
383 (30, 20, 6, 'Frostwolf Grave - Horde Defender Quest2'),
384 (30, 20, 7, 'Frostwolf Grave - Horde Defender Quest3'),
386 (30, 21, 0, 'Frostwolf Hut - Alliance Defender Quest0'),
387 (30, 21, 1, 'Frostwolf Hut - Alliance Defender Quest1'),
388 (30, 21, 2, 'Frostwolf Hut - Alliance Defender Quest2'),
389 (30, 21, 3, 'Frostwolf Hut - Alliance Defender Quest3'),
390 (30, 21, 4, 'Frostwolf Hut - Horde Defender Quest0'),
391 (30, 21, 5, 'Frostwolf Hut - Horde Defender Quest1'),
392 (30, 21, 6, 'Frostwolf Hut - Horde Defender Quest2'),
393 (30, 21, 7, 'Frostwolf Hut - Horde Defender Quest3'),
395 (30, 46, 0, 'North Mine - Alliance Boss'),
396 (30, 46, 1, 'North Mine - Horde Boss'),
397 (30, 46, 2, 'North Mine - Neutral Boss'),
398 (30, 47, 0, 'South Mine - Alliance Boss'),
399 (30, 47, 1, 'South Mine - Horde Boss'),
400 (30, 47, 2, 'South Mine - Neutral Boss'),
402 (30, 48, 0, 'Alliance Captain'),
403 (30, 49, 0, 'Horde Captain'),
405 (30, 50, 0, 'North Mine - Alliance Control'),
406 (30, 50, 1, 'North Mine - Horde Control'),
407 (30, 50, 2, 'North Mine - Neutral Control'),
408 (30, 51, 0, 'South Mine - Alliance Control'),
409 (30, 51, 1, 'South Mine - Horde Control'),
410 (30, 51, 2, 'South Mine - Neutral Control'),
412 (30, 52, 0, 'Alliance Marshal - Dunbaldar South'),
413 (30, 53, 0, 'Alliance Marshal - Dunbaldar North'),
414 (30, 54, 0, 'Alliance Marshal - Icewing Bunker'),
415 (30, 55, 0, 'Alliance Marshal - Stoneheart Bunker'),
417 (30, 56, 0, 'Horde Marshal - Iceblood Tower'),
418 (30, 57, 0, 'Horde Marshal - Towerpoint'),
419 (30, 58, 0, 'Horde Marshal - East Frostwolf Tower'),
420 (30, 59, 0, 'Horde Marshal - West Frostwolf Tower'),
422 (30, 60, 0, 'Herald - that guy who yells all the time ;)'),
424 (30, 61, 0, 'Alliance - Boss'),
425 (30, 62, 0, 'Horde - Boss'),
427 (30, 63, 0, 'Alliance - Captain Dead'),
428 (30, 64, 0, 'Horde - Captain Dead');
429 /*!40000 ALTER TABLE `battleground_events` ENABLE KEYS */;
430 UNLOCK TABLES;
433 -- Table structure for table `battleground_template`
436 DROP TABLE IF EXISTS `battleground_template`;
437 CREATE TABLE `battleground_template` (
438   `id` mediumint(8) unsigned NOT NULL,
439   `MinPlayersPerTeam` smallint(5) unsigned NOT NULL default '0',
440   `MaxPlayersPerTeam` smallint(5) unsigned NOT NULL default '0',
441   `AllianceStartLoc` mediumint(8) unsigned NOT NULL,
442   `AllianceStartO` float NOT NULL,
443   `HordeStartLoc` mediumint(8) unsigned NOT NULL,
444   `HordeStartO` float NOT NULL,
445   PRIMARY KEY  (`id`)
446 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
449 -- Dumping data for table `battleground_template`
452 LOCK TABLES `battleground_template` WRITE;
453 /*!40000 ALTER TABLE `battleground_template` DISABLE KEYS */;
454 INSERT INTO `battleground_template` VALUES
455 (1,40,40,611,2.72532,610,2.27452),
456 (2,10,10,769,3.14159,770,3.14159),
457 (3,15,15,890,3.40156,889,0.263892),
458 (4,5,5,929,0,936,3.14159),
459 (5,5,5,939,0,940,3.14159),
460 (6,5,5,0,0,0,0),
461 (7,15,15,1103,3.40156,1104,0.263892),
462 (8,5,5,1258,0,1259,3.14159),
463 (9,15,15,1367,0,1368,0),
464 (10,5,5,1362,0,1363,0),
465 (11,5,5,1364,0,1365,0),
466 (30,40,40,1485,0,1486,0),
467 (32,5,40,0,0,0,0);
468 /*!40000 ALTER TABLE `battleground_template` ENABLE KEYS */;
469 UNLOCK TABLES;
472 -- Table structure for table `battlemaster_entry`
475 DROP TABLE IF EXISTS `battlemaster_entry`;
476 CREATE TABLE `battlemaster_entry` (
477   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Entry of a creature',
478   `bg_template` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Battleground template id',
479   PRIMARY KEY  (`entry`)
480 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
483 -- Dumping data for table `battlemaster_entry`
486 LOCK TABLES `battlemaster_entry` WRITE;
487 /*!40000 ALTER TABLE `battlemaster_entry` DISABLE KEYS */;
488 /*!40000 ALTER TABLE `battlemaster_entry` ENABLE KEYS */;
489 UNLOCK TABLES;
492 -- Table structure for table `command`
495 DROP TABLE IF EXISTS `command`;
496 CREATE TABLE `command` (
497   `name` varchar(50) NOT NULL default '',
498   `security` tinyint(3) unsigned NOT NULL default '0',
499   `help` longtext,
500   PRIMARY KEY  (`name`)
501 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Chat System';
504 -- Dumping data for table `command`
507 LOCK TABLES `command` WRITE;
508 /*!40000 ALTER TABLE `command` DISABLE KEYS */;
509 INSERT INTO `command` VALUES
510 ('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account.'),
511 ('account characters',3,'Syntax: .account characters [#accountId|$accountName]\r\n\r\nShow list all characters for account seelcted by provided #accountId or $accountName, or for selected player in game.'),
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 [#accountId|$accountName] #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 [#accountId|$accountName] #level\r\n\r\nSet the security level for targeted player (can''t be used at self) or for #accountId or $accountName 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 (#accountId|$accountName) $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 deleted delete', 4, 'Syntax: .character deleted delete #guid|$name\r\n\r\nCompletely deletes the selected characters.\r\nIf $name is supplied, only characters with that string in their name will be deleted, if #guid is supplied, only the character with that GUID will be deleted.'),
541 ('character deleted list', 3, 'Syntax: .character deleted list [#guid|$name]\r\n\r\nShows a list with all deleted characters.\r\nIf $name is supplied, only characters with that string in their name will be selected, if #guid is supplied, only the character with that GUID will be selected.'),
542 ('character deleted old', 4, 'Syntax: .character deleted old [#keepDays]\r\n\r\nCompletely deletes all characters with deleted time longer #keepDays. If #keepDays not provided the  used value from mangosd.conf option \'CharDelete.KeepDays\'. If referenced config option disabled (use 0 value) then command can\'t be used without #keepDays.'),
543 ('character deleted restore', 3, 'Syntax: .character deleted restore #guid|$name [$newname] [#new account]\r\n\r\nRestores deleted characters.\r\nIf $name is supplied, only characters with that string in their name will be restored, if $guid is supplied, only the character with that GUID will be restored.\r\nIf $newname is set, the character will be restored with that name instead of the original one. If #newaccount is set, the character will be restored to specific account character list. This works only with one character!'),
544 ('character erase',4,'Syntax: .character erase $name\r\n\r\nDelete character $name. Character finally deleted in case any deleting options.'),
545 ('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.'),
546 ('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.'),
547 ('character reputation',2,'Syntax: .character reputation [$player_name]\r\n\r\nShow reputation information for selected player or player find by $player_name.'),
548 ('character titles',2,'Syntax: .character titles [$player_name]\r\n\r\nShow known titles list for selected player or player find by $player_name.'),
549 ('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.'),
550 ('commands',0,'Syntax: .commands\r\n\r\nDisplay a list of available commands for your account level.'),
551 ('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).'),
552 ('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.'),
553 ('debug anim',2,'Syntax: .debug anim #emoteid\r\n\r\nPlay emote #emoteid for your character.'),
554 ('debug arena',3,'Syntax: .debug arena\r\n\r\nToggle debug mode for arenas. In debug mode GM can start arena with single player.'),
555 ('debug bg',3,'Syntax: .debug bg\r\n\r\nToggle debug mode for battlegrounds. In debug mode GM can start battleground with single player.'),
556 ('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.'),
557 ('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'),
558 ('debug play movie',1,'Syntax: .debug play movie #movieid\r\n\r\nPlay movie #movieid for you.'),
559 ('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...'),
560 ('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.'),
561 ('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.'),
562 ('debug Mod32Value',3,'Syntax: .debug Mod32Value #field #value\r\n\r\nAdd #value to field #field of your character.'),
563 ('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.'),
564 ('demorph',2,'Syntax: .demorph\r\n\r\nDemorph the selected player.'),
565 ('die',3,'Syntax: .die\r\n\r\nKill the selected player. If no player is selected, it will kill you.'),
566 ('dismount',0,'Syntax: .dismount\r\n\r\nDismount you, if you are mounted.'),
567 ('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.'),
568 ('event',2,'Syntax: .event #event_id\r\nShow details about event with #event_id.'),
569 ('event list',2,'Syntax: .event list\r\nShow list of currently active events.\r\nShow list of all events'),
570 ('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).'),
571 ('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).'),
572 ('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.'),
573 ('flusharenapoints','3','Syntax: .flusharenapoints\r\n\r\nUse it to distribute arena points based on arena team ratings, and start a new week.'),
574 ('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.'),
575 ('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.'),
576 ('gm fly',3,'Syntax: .gm fly [on/off]\r\nEnable/disable gm fly mode.'),
577 ('gm ingame',0,'Syntax: .gm ingame\r\n\r\nDisplay a list of available in game Game Masters.'),
578 ('gm list',3,'Syntax: .gm list\r\n\r\nDisplay a list of all Game Masters accounts and security levels.'),
579 ('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.'),
580 ('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.'),
581 ('go graveyard',1,'Syntax: .go graveyard #graveyardId\r\n Teleport to graveyard with the graveyardId specified.'),
582 ('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).'),
583 ('go object',1,'Syntax: .go object #object_guid\r\nTeleport your character to gameobject with guid #object_guid'),
584 ('go taxinode',1,'Syntax: .go taxinode #taxinode\r\n\r\nTeleport player to taxinode coordinates. You can look up zone using .lookup taxinode $namepart'),
585 ('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.'),
586 ('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.'),
587 ('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.'),
588 ('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'),
589 ('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.'),
590 ('gobject delete',2,'Syntax: .gobject delete #go_guid\r\nDelete gameobject with guid #go_guid.'),
591 ('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).'),
592 ('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.'),
593 ('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.'),
594 ('gobject turn',2,'Syntax: .gobject turn #goguid \r\n\r\nSet for gameobject #goguid orientation same as current character orientation.'),
595 ('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.'),
596 ('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.'),
597 ('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'),
598 ('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.'),
599 ('guid',2,'Syntax: .guid\r\n\r\nDisplay the GUID for the selected character.'),
600 ('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.'),
601 ('guild delete',2,'Syntax: .guild delete "$GuildName"\r\n\r\nDelete guild $GuildName. Guild name must in quotes.'),
602 ('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.'),
603 ('guild rank',2,'Syntax: .guild rank $CharacterName #Rank\r\n\r\nSet for $CharacterName rank #Rank in a guild.'),
604 ('guild uninvite',2,'Syntax: .guild uninvite [$CharacterName]\r\n\r\nRemove player $CharacterName (or selected) from a guild.'),
605 ('help',0,'Syntax: .help [$command]\r\n\r\nDisplay usage instructions for the given $command. If no $command provided show list available commands.'),
606 ('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.'),
607 ('honor add',2,'Syntax: .honor add $amount\r\n\r\nAdd a certain amount of honor (gained today) to the selected player.'),
608 ('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)'),
609 ('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.'),
610 ('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.'),
611 ('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.'),
612 ('instance listbinds',3,'Syntax: .instance listbinds\r\n  Lists the binds of the selected player.'),
613 ('instance stats',3,'Syntax: .instance stats\r\n  Shows statistics about instances.'),
614 ('instance savedata',3,'Syntax: .instance savedata\r\n  Save the InstanceData for the current player\'s map to the DB.'),
615 ('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'),
616 ('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.'),
617 ('learn',3,'Syntax: .learn #spell [all]\r\n\r\nSelected character learn a spell of id #spell. If \'all\' provided then all ranks learned.'),
618 ('learn all',3,'Syntax: .learn all\r\n\r\nLearn all big set different spell maybe useful for Administaror.'),
619 ('learn all_crafts',2,'Syntax: .learn crafts\r\n\r\nLearn all professions and recipes.'),
620 ('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.'),
621 ('learn all_gm',2,'Syntax: .learn all_gm\r\n\r\nLearn all default spells for Game Masters.'),
622 ('learn all_lang',1,'Syntax: .learn all_lang\r\n\r\nLearn all languages'),
623 ('learn all_myclass',3,'Syntax: .learn all_myclass\r\n\r\nLearn all spells and talents available for his class.'),
624 ('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).'),
625 ('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.'),
626 ('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.'),
627 ('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'),
628 ('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.'),
629 ('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).'),
630 ('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.'),
631 ('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.'),
632 ('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.'),
633 ('list talents',3,'Syntax: .list talents\r\n\r\nShow list all really known (as learned spells) talent rank spells for selected player or self.'),
634 ('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.'),
635 ('lookup account email',2,'Syntax: .lookup account email $emailpart [#limit] \r\n\r\n Searchs accounts, which email including $emailpart with optional parametr #limit of results. If #limit not provided expected 100.'),
636 ('lookup account ip',2,'Syntax: lookup account ip $ippart [#limit] \r\n\r\n Searchs accounts, which last used ip inluding $ippart (textual) with optional parametr #$limit of results. If #limit not provided expected 100.'),
637 ('lookup account name',2,'Syntax: .lookup account name $accountpart [#limit] \r\n\r\n Searchs accounts, which username including $accountpart with optional parametr #limit of results. If #limit not provided expected 100.'),
638 ('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.'),
639 ('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.'),
640 ('lookup event',2,'Syntax: .lookup event $name\r\nAttempts to find the ID of the event with the provided $name.'),
641 ('lookup faction',3,'Syntax: .lookup faction $name\r\nAttempts to find the ID of the faction with the provided $name.'),
642 ('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.'),
643 ('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.'),
644 ('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.'),
645 ('lookup player account',2,'Syntax: .lookup player account $accountpart [#limit] \r\n\r\n Searchs players, which account username including $accountpart with optional parametr #limit of results. If #limit not provided expected 100.'),
646 ('lookup player email',2,'Syntax: .lookup player email $emailpart [#limit] \r\n\r\n Searchs players, which account email including $emailpart with optional parametr #limit of results. If #limit not provided expected 100.'),
647 ('lookup player ip',2,'Syntax: .lookup player ip $ippart [#limit] \r\n\r\n Searchs players, which account last used ip inluding $ippart (textual) with optional parametr #limit of results. If #limit not provided expected 100.'),
648 ('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.'),
649 ('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.'),
650 ('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.'),
651 ('lookup taxinode',3,'Syntax: .lookup taxinode $substring\r\n\r\nSearch and output all taxinodes with provide $substring in name.'),
652 ('lookup tele',1,'Syntax: .lookup tele $substring\r\n\r\nSearch and output all .tele command locations with provide $substring in name.'),
653 ('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.'),
654 ('maxskill',3,'Syntax: .maxskill\r\nSets all skills of the targeted player to their maximum VALUESfor its current level.'),
655 ('modify arena',1,'Syntax: .modify arena #value\r\nAdd $amount arena points to the selected player.'),
656 ('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.'),
657 ('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.'),
658 ('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.'),
659 ('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.'),
660 ('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.'),
661 ('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.'),
662 ('modify fly', 1, 'Syntax: .modify fly #rate\r\n.fly #rate\r\n\r\nModify the flying speed of the selected player to \"normal base fly speed\"*rate. If no player is selected, modify your fly.\r\n\r\n #rate may range from 0.1 to 10.'),
663 ('modify gender',2,'Syntax: .modify gender male/female\r\n\r\nChange gender of selected player.'),
664 ('modify honor',1,'Syntax: .modify honor $amount\r\n\r\nAdd $amount honor points to the selected player.'),
665 ('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.'),
666 ('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.'),
667 ('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.'),
668 ('modify morph',2,'Syntax: .modify morph #displayid\r\n\r\nChange your current model id to #displayid.'),
669 ('modify mount',1,'Syntax: .modify mount #id #speed\r\nDisplay selected player as mounted at #id creature and set speed to #speed value.'),
670 ('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.'),
671 ('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.'),
672 ('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.'),
673 ('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.'),
674 ('modify scale',1,'Syntax: .modify scale #scale\r\n\r\nChange model scale for targeted player (util relogin) or creature (until respawn).'),
675 ('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.'),
676 ('modify spell',1,''),
677 ('modify standstate',2,'Syntax: .modify standstate #emoteid\r\n\r\nChange the emote of your character while standing to #emoteid.'),
678 ('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.'),
679 ('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.'),
680 ('movegens',3,'Syntax: .movegens\r\n  Show movement generators stack for selected creature or player.'),
681 ('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.'),
682 ('namego',1,'Syntax: .namego [$charactername]\r\n\r\nTeleport the given character to you. Character can be offline.'),
683 ('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).'),
684 ('notify',1,'Syntax: .notify $MessageToBroadcast\r\n\r\nSend a global message to all players online in screen.'),
685 ('npc add',2,'Syntax: .npc add #creatureid\r\n\r\nSpawn a creature by the given template id of #creatureid.'),
686 ('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.'),
687 ('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.'),
688 ('npc addweapon',3,'Not yet implemented.'),
689 ('npc allowmove',3,'Syntax: .npc allowmove\r\n\r\nEnable or disable movement creatures in world. Not implemented.'),
690 ('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.'),
691 ('npc delete',2,'Syntax: .npc delete [#guid]\r\n\r\nDelete creature with guid #guid (or the selected if no guid is provided)'),
692 ('npc delitem',2,'Syntax: .npc delitem #itemId\r\n\r\nRemove item #itemid from item list of selected vendor.'),
693 ('npc factionid',2,'Syntax: .npc factionid #factionid\r\n\r\nSet the faction of the selected creature to #factionid.'),
694 ('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.'),
695 ('npc follow',2,'Syntax: .npc follow\r\n\r\nSelected creature start follow you until death/fight/etc.'),
696 ('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.'),
697 ('npc move',2,'Syntax: .npc move [#creature_guid]\r\n\r\nMove the targeted creature spawn point to your coordinates.'),
698 ('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.'),
699 ('npc playemote',3,'Syntax: .npc playemote #emoteid\r\n\r\nMake the selected creature emote with an emote of id #emoteid.'),
700 ('npc say', 1, 'Syntax: .npc say #text\r\nMake the selected npc says #text.'),
701 ('npc setdeathstate',2,'Syntax: .npc setdeathstate on/off\r\n\r\nSet default death state (dead/alive) for npc at spawn.'),
702 ('npc setmodel',2,'Syntax: .npc setmodel #displayid\r\n\r\nChange the model id of the selected creature to #displayid.'),
703 ('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.'),
704 ('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..'),
705 ('npc spawndist',2,'Syntax: .npc spawndist #dist\r\n\r\nAdjust spawndistance of selected creature to dist.'),
706 ('npc spawntime',2,'Syntax: .npc spawntime #time \r\n\r\nAdjust spawntime of selected creature to time.'),
707 ('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.'),
708 ('npc tame',2,'Syntax: .npc tame\r\n\r\nTame selected creature (tameable non pet creature). You don''t must have pet.'),
709 ('npc textemote',1,'Syntax: .npc textemote #emoteid\r\n\r\nMake the selected creature to do textemote with an emote of id #emoteid.'),
710 ('npc whisper',1,'Syntax: .npc whisper #playerguid #text\r\nMake the selected npc whisper #text to  #playerguid.'),
711 ('npc unfollow',2,'Syntax: .npc unfollow\r\n\r\nSelected creature (non pet) stop follow you.'),
712 ('npc yell', 1, 'Syntax: .npc yell #text\r\nMake the selected npc yells #text.'),
713 ('pdump write',3,'Syntax: .pdump write $filename $playerNameOrGUID\r\nWrite character dump with name/guid $playerNameOrGUID to file $filename.'),
714 ('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.'),
715 ('pinfo',2,'Syntax: .pinfo [$player_name]\r\n\r\nOutput account information for selected player or player find by $player_name.'),
716 ('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.'),
717 ('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.'),
718 ('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.'),
719 ('quit',4,'Syntax: quit\r\n\r\nClose RA connection. Command must be typed fully (quit).'),
720 ('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.'),
721 ('reload all',3,'Syntax: .reload all\r\n\r\nReload all tables with reload support added and that can be _safe_ reloaded.'),
722 ('reload all_achievement',3,'Syntax: .reload all_achievement\r\n\r\nReload all `achievement_*` tables if reload support added for this table and this table can be _safe_ reloaded.'),
723 ('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.'),
724 ('reload all_eventai',3,'Syntax: .reload all_eventai\r\n\r\nReload `creature_ai_*` tables if reload support added for these tables and these tables can be _safe_ reloaded.'),
725 ('reload all_item',3,'Syntax: .reload all_item\r\n\r\nReload `item_required_target`, `page_texts` and `item_enchantment_template` tables.'),
726 ('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.'),
727 ('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.'),
728 ('reload all_npc',3,'Syntax: .reload all_npc\r\n\r\nReload `points_of_interest` and `npc_*` tables if reload support added for these tables and these tables can be _safe_ reloaded.'),
729 ('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.'),
730 ('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.'),
731 ('reload all_scripts',3,'Syntax: .reload all_scripts\r\n\r\nReload `*_scripts` tables.'),
732 ('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.'),
733 ('repairitems',2,'Syntax: .repairitems\r\n\r\nRepair all selected player''s items.'),
734 ('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.'),
735 ('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.'),
736 ('reset honor',3,'Syntax: .reset honor [Playername]\r\n  Reset all honor data for targeted character.'),
737 ('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.'),
738 ('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.'),
739 ('reset stats',3,'Syntax: .reset stats [Playername]\r\n  Resets(recalculate) all stats of the targeted player to their original VALUESat current level.'),
740 ('reset specs',3,'Syntax: .reset specs [Playername]\r\n  Removes all talents (for all specs) of the targeted player 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.'),
741 ('reset talents',3,'Syntax: .reset talents [Playername]\r\n  Removes all talents (current spec) of the targeted player or pet or named player. With player talents also will be reset talents for all character\'s pets if any.'),
742 ('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.'),
743 ('revive',3,'Syntax: .revive\r\n\r\nRevive the selected player. If no player is selected, it will revive you.'),
744 ('save',0,'Syntax: .save\r\n\r\nSaves your character.'),
745 ('saveall',1,'Syntax: .saveall\r\n\r\nSave all characters in game.'),
746 ('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.'),
747 ('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 "".'),
748 ('send message',3,'Syntax: .send message $playername $message\r\n\r\nSend screen message to player from ADMINISTRATOR.'),
749 ('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 "".'),
750 ('server corpses',2,'Syntax: .server corpses\r\n\r\nTriggering corpses expire check in world.'),
751 ('server exit',4,'Syntax: .server exit\r\n\r\nTerminate mangosd NOW. Exit code 0.'),
752 ('server info',0,'Syntax: .server info\r\n\r\nDisplay server version and the number of connected players.'),
753 ('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.'),
754 ('server idleshutdown cancel',3,'Syntax: .server idleshutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
755 ('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.'),
756 ('server idlerestart cancel',3,'Syntax: .server idlerestart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
757 ('server log filter',4,'Syntax: .server log filter [($filtername|all) (on|off)]\r\n\r\nShow or set server log filters. If used "all" then all filters will be set to on/off state.'),
758 ('server log level',4,'Syntax: .server log level [#level]\r\n\r\nShow or set server log level (0 - errors only, 1 - basic, 2 - detail, 3 - debug).'),
759 ('server motd',0,'Syntax: .server motd\r\n\r\nShow server Message of the day.'),
760 ('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'),
761 ('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.'),
762 ('server restart cancel',3,'Syntax: .server restart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
763 ('server set motd',3,'Syntax: .server set motd $MOTD\r\n\r\nSet server Message of the day.'),
764 ('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.'),
765 ('server shutdown cancel',3,'Syntax: .server shutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
766 ('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.'),
767 ('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.'),
768 ('start',0,'Syntax: .start\r\n\r\nTeleport you to the starting area of your character.'),
769 ('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.'),
770 ('tele',1,'Syntax: .tele #location\r\n\r\nTeleport player to a given location.'),
771 ('tele add',3,'Syntax: .tele add $name\r\n\r\nAdd current your position to .tele command target locations list with name $name.'),
772 ('tele del',3,'Syntax: .tele del $name\r\n\r\nRemove location with name $name for .tele command locations list.'),
773 ('tele group',1,'Syntax: .tele group#location\r\n\r\nTeleport a selected player and his group members to a given location.'),
774 ('tele name',1,'Syntax: .tele name [#playername] #location\r\n\r\nTeleport the given character to a given location. Character can be offline.'),
775 ('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.'),
776 ('titles add',2,'Syntax: .titles add #title\r\nAdd title #title (id or shift-link) to known titles list for selected player.'),
777 ('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.'),
778 ('titles remove',2,'Syntax: .titles remove #title\r\nRemove title #title (id or shift-link) from known titles list for selected player.'),
779 ('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'),
780 ('unaura',3,'Syntax: .unaura #spellid\r\n\r\nRemove aura due to spell #spellid from the selected Unit.'),
781 ('unban account',3,'Syntax: .unban account $Name\r\nUnban accounts for account name pattern.'),
782 ('unban character',3,'Syntax: .unban character $Name\r\nUnban accounts for character name pattern.'),
783 ('unban ip',3,'Syntax : .unban ip $Ip\r\nUnban accounts for IP pattern.'),
784 ('unlearn',3,'Syntax: .unlearn #spell [all]\r\n\r\nUnlearn for selected player a spell #spell.  If \'all\' provided then all ranks unlearned.'),
785 ('unmute',1,'Syntax: .unmute $playerName\r\n\r\nRestore chat messaging for any character from account of character $playerName.'),
786 ('waterwalk',2,'Syntax: .waterwalk on/off\r\n\r\nSet on/off waterwalk state for selected player.'),
787 ('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.'),
788 ('whispers',1,'Syntax: .whispers on|off\r\nEnable/disable accepting whispers by GM from players. By default use mangosd.conf setting.'),
789 ('wp',2,'Using WP Command:\r\nEach Waypoint Command has it\'s own description!'),
790 ('wp add',2,'Syntax: .wp add [#creature_guid or Select a Creature]'),
791 ('wp export',3,'Syntax: .wp export [#creature_guid or Select a Creature] $filename'),
792 ('wp import',3,'Syntax: .wp import $filename'),
793 ('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!'),
794 ('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!');
795 /*!40000 ALTER TABLE `command` ENABLE KEYS */;
796 UNLOCK TABLES;
799 -- Table structure for table `creature`
802 DROP TABLE IF EXISTS `creature`;
803 CREATE TABLE `creature` (
804   `guid` int(10) unsigned NOT NULL auto_increment COMMENT 'Global Unique Identifier',
805   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Creature Identifier',
806   `map` smallint(5) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
807   `spawnMask` tinyint(3) unsigned NOT NULL default '1',
808   `phaseMask` smallint(5) unsigned NOT NULL default '1',
809   `modelid` mediumint(8) unsigned NOT NULL default '0',
810   `equipment_id` mediumint(9) NOT NULL default '0',
811   `position_x` float NOT NULL default '0',
812   `position_y` float NOT NULL default '0',
813   `position_z` float NOT NULL default '0',
814   `orientation` float NOT NULL default '0',
815   `spawntimesecs` int(10) unsigned NOT NULL default '120',
816   `spawndist` float NOT NULL default '5',
817   `currentwaypoint` mediumint(8) unsigned NOT NULL default '0',
818   `curhealth` int(10) unsigned NOT NULL default '1',
819   `curmana` int(10) unsigned NOT NULL default '0',
820   `DeathState` tinyint(3) unsigned NOT NULL default '0',
821   `MovementType` tinyint(3) unsigned NOT NULL default '0',
822   PRIMARY KEY  (`guid`),
823   KEY `idx_map` (`map`),
824   KEY `index_id` (`id`)
825 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature System';
828 -- Dumping data for table `creature`
831 LOCK TABLES `creature` WRITE;
832 /*!40000 ALTER TABLE `creature` DISABLE KEYS */;
833 /*!40000 ALTER TABLE `creature` ENABLE KEYS */;
834 UNLOCK TABLES;
837 -- Table structure for table `creature_addon`
840 DROP TABLE IF EXISTS `creature_addon`;
841 CREATE TABLE `creature_addon` (
842   `guid` int(11) NOT NULL default '0',
843   `mount` mediumint(8) unsigned NOT NULL default '0',
844   `bytes1` int(10) unsigned NOT NULL default '0',
845   `bytes2` int(10) unsigned NOT NULL default '0',
846   `emote` int(10) unsigned NOT NULL default '0',
847   `moveflags` int(10) unsigned NOT NULL default '0',
848   `auras` text,
849   PRIMARY KEY  (`guid`)
850 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
853 -- Dumping data for table `creature_addon`
856 LOCK TABLES `creature_addon` WRITE;
857 /*!40000 ALTER TABLE `creature_addon` DISABLE KEYS */;
858 /*!40000 ALTER TABLE `creature_addon` ENABLE KEYS */;
859 UNLOCK TABLES;
862 -- Table structure for table `creature_battleground`
865 DROP TABLE IF EXISTS `creature_battleground`;
866 CREATE TABLE `creature_battleground` (
867     `guid` int(10) unsigned NOT NULL COMMENT 'Creature\'s GUID',
868     `event1` tinyint(3) unsigned NOT NULL COMMENT 'main event',
869     `event2` tinyint(3) unsigned NOT NULL COMMENT 'sub event',
870     PRIMARY KEY  (`guid`)
871 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature battleground indexing system';
874 -- Dumping data for table `creature_battleground`
877 LOCK TABLES `creature_battleground` WRITE;
878 /*!40000 ALTER TABLE `creature_battleground` DISABLE KEYS */;
879 /*!40000 ALTER TABLE `creature_battleground` ENABLE KEYS */;
880 UNLOCK TABLES;
883 -- Table structure for table `creature_equip_template`
886 DROP TABLE IF EXISTS `creature_equip_template`;
887 CREATE TABLE `creature_equip_template` (
888   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Unique entry',
889   `equipentry1` mediumint(8) unsigned NOT NULL default '0',
890   `equipentry2` mediumint(8) unsigned NOT NULL default '0',
891   `equipentry3` mediumint(8) unsigned NOT NULL default '0',
892   PRIMARY KEY  (`entry`)
893 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Equipment)';
896 -- Dumping data for table `creature_equip_template`
899 LOCK TABLES `creature_equip_template` WRITE;
900 /*!40000 ALTER TABLE `creature_equip_template` DISABLE KEYS */;
901 /*!40000 ALTER TABLE `creature_equip_template` ENABLE KEYS */;
902 UNLOCK TABLES;
905 -- Table structure for table `creature_involvedrelation`
908 DROP TABLE IF EXISTS `creature_involvedrelation`;
909 CREATE TABLE `creature_involvedrelation` (
910   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
911   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
912   PRIMARY KEY  (`id`,`quest`)
913 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
916 -- Dumping data for table `creature_involvedrelation`
919 LOCK TABLES `creature_involvedrelation` WRITE;
920 /*!40000 ALTER TABLE `creature_involvedrelation` DISABLE KEYS */;
921 /*!40000 ALTER TABLE `creature_involvedrelation` ENABLE KEYS */;
922 UNLOCK TABLES;
925 -- Table structure for table `creature_loot_template`
928 DROP TABLE IF EXISTS `creature_loot_template`;
929 CREATE TABLE `creature_loot_template` (
930   `entry` mediumint(8) unsigned NOT NULL default '0',
931   `item` mediumint(8) unsigned NOT NULL default '0',
932   `ChanceOrQuestChance` float NOT NULL default '100',
933   `groupid` tinyint(3) unsigned NOT NULL default '0',
934   `mincountOrRef` mediumint(9) NOT NULL default '1',
935   `maxcount` tinyint(3) unsigned NOT NULL default '1',
936   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
937   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
938   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
939   PRIMARY KEY  (`entry`,`item`)
940 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
943 -- Dumping data for table `creature_loot_template`
946 LOCK TABLES `creature_loot_template` WRITE;
947 /*!40000 ALTER TABLE `creature_loot_template` DISABLE KEYS */;
948 /*!40000 ALTER TABLE `creature_loot_template` ENABLE KEYS */;
949 UNLOCK TABLES;
952 -- Table structure for table `creature_model_info`
955 DROP TABLE IF EXISTS `creature_model_info`;
956 CREATE TABLE `creature_model_info` (
957   `modelid` mediumint(8) unsigned NOT NULL default '0',
958   `bounding_radius` float NOT NULL default '0',
959   `combat_reach` float NOT NULL default '0',
960   `gender` tinyint(3) unsigned NOT NULL default '2',
961   `modelid_other_gender` mediumint(8) unsigned NOT NULL default '0',
962   PRIMARY KEY  (`modelid`)
963 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Model related info)';
966 -- Dumping data for table `creature_model_info`
969 LOCK TABLES `creature_model_info` WRITE;
970 /*!40000 ALTER TABLE `creature_model_info` DISABLE KEYS */;
971 INSERT INTO `creature_model_info` VALUES
972 (10045, 1, 1.5, 2, 0);
973 /*!40000 ALTER TABLE `creature_model_info` ENABLE KEYS */;
974 UNLOCK TABLES;
977 -- Table structure for table `creature_movement`
980 DROP TABLE IF EXISTS `creature_movement`;
981 CREATE TABLE `creature_movement` (
982   `id` int(10) unsigned NOT NULL COMMENT 'Creature GUID',
983   `point` mediumint(8) unsigned NOT NULL default '0',
984   `position_x` float NOT NULL default '0',
985   `position_y` float NOT NULL default '0',
986   `position_z` float NOT NULL default '0',
987   `waittime` int(10) unsigned NOT NULL default '0',
988   `script_id` int(10) unsigned NOT NULL default '0',
989   `textid1` int(11) NOT NULL default '0',
990   `textid2` int(11) NOT NULL default '0',
991   `textid3` int(11) NOT NULL default '0',
992   `textid4` int(11) NOT NULL default '0',
993   `textid5` int(11) NOT NULL default '0',
994   `emote` mediumint(8) unsigned NOT NULL default '0',
995   `spell` mediumint(8) unsigned NOT NULL default '0',
996   `wpguid` int(11) NOT NULL default '0',
997   `orientation` float NOT NULL default '0',
998   `model1` mediumint(9) NOT NULL default '0',
999   `model2` mediumint(9) NOT NULL default '0',
1000   PRIMARY KEY  (`id`,`point`)
1001 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1004 -- Dumping data for table `creature_movement`
1007 LOCK TABLES `creature_movement` WRITE;
1008 /*!40000 ALTER TABLE `creature_movement` DISABLE KEYS */;
1009 /*!40000 ALTER TABLE `creature_movement` ENABLE KEYS */;
1010 UNLOCK TABLES;
1013 -- Table structure for table `creature_movement_scripts`
1016 DROP TABLE IF EXISTS `creature_movement_scripts`;
1017 CREATE TABLE `creature_movement_scripts` (
1018   `id` mediumint(8) unsigned NOT NULL default '0',
1019   `delay` int(10) unsigned NOT NULL default '0',
1020   `command` mediumint(8) unsigned NOT NULL default '0',
1021   `datalong` mediumint(8) unsigned NOT NULL default '0',
1022   `datalong2` int(10) unsigned NOT NULL default '0',
1023   `datalong3` int(10) unsigned NOT NULL default '0',
1024   `datalong4` int(10) unsigned NOT NULL default '0',
1025   `data_flags` tinyint(3) unsigned NOT NULL default '0',
1026   `dataint` int(11) NOT NULL default '0',
1027   `x` float NOT NULL default '0',
1028   `y` float NOT NULL default '0',
1029   `z` float NOT NULL default '0',
1030   `o` float NOT NULL default '0'
1031 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1034 -- Dumping data for table `creature_movement_scripts`
1037 LOCK TABLES `creature_movement_scripts` WRITE;
1038 /*!40000 ALTER TABLE `creature_movement_scripts` DISABLE KEYS */;
1039 /*!40000 ALTER TABLE `creature_movement_scripts` ENABLE KEYS */;
1040 UNLOCK TABLES;
1043 -- Table structure for table `creature_onkill_reputation`
1046 DROP TABLE IF EXISTS `creature_onkill_reputation`;
1047 CREATE TABLE `creature_onkill_reputation` (
1048   `creature_id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Creature Identifier',
1049   `RewOnKillRepFaction1` smallint(6) NOT NULL default '0',
1050   `RewOnKillRepFaction2` smallint(6) NOT NULL default '0',
1051   `MaxStanding1` tinyint(4) NOT NULL default '0',
1052   `IsTeamAward1` tinyint(4) NOT NULL default '0',
1053   `RewOnKillRepValue1` mediumint(9) NOT NULL default '0',
1054   `MaxStanding2` tinyint(4) NOT NULL default '0',
1055   `IsTeamAward2` tinyint(4) NOT NULL default '0',
1056   `RewOnKillRepValue2` mediumint(9) NOT NULL default '0',
1057   `TeamDependent` tinyint(3) unsigned NOT NULL default '0',
1058   PRIMARY KEY  (`creature_id`)
1059 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature OnKill Reputation gain';
1062 -- Dumping data for table `creature_onkill_reputation`
1065 LOCK TABLES `creature_onkill_reputation` WRITE;
1066 /*!40000 ALTER TABLE `creature_onkill_reputation` DISABLE KEYS */;
1067 /*!40000 ALTER TABLE `creature_onkill_reputation` ENABLE KEYS */;
1068 UNLOCK TABLES;
1071 -- Table structure for table `creature_questrelation`
1074 DROP TABLE IF EXISTS `creature_questrelation`;
1075 CREATE TABLE `creature_questrelation` (
1076   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
1077   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1078   PRIMARY KEY  (`id`,`quest`)
1079 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1082 -- Dumping data for table `creature_questrelation`
1085 LOCK TABLES `creature_questrelation` WRITE;
1086 /*!40000 ALTER TABLE `creature_questrelation` DISABLE KEYS */;
1087 /*!40000 ALTER TABLE `creature_questrelation` ENABLE KEYS */;
1088 UNLOCK TABLES;
1091 -- Table structure for table `creature_respawn`
1094 DROP TABLE IF EXISTS `creature_respawn`;
1095 CREATE TABLE `creature_respawn` (
1096   `guid` int(10) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
1097   `respawntime` bigint(20) NOT NULL default '0',
1098   `instance` mediumint(8) unsigned NOT NULL default '0',
1099   PRIMARY KEY  (`guid`,`instance`),
1100   KEY `instance` (`instance`)
1101 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
1104 -- Dumping data for table `creature_respawn`
1107 LOCK TABLES `creature_respawn` WRITE;
1108 /*!40000 ALTER TABLE `creature_respawn` DISABLE KEYS */;
1109 /*!40000 ALTER TABLE `creature_respawn` ENABLE KEYS */;
1110 UNLOCK TABLES;
1113 -- Table structure for table `creature_template`
1116 DROP TABLE IF EXISTS `creature_template`;
1117 CREATE TABLE `creature_template` (
1118   `entry` mediumint(8) unsigned NOT NULL default '0',
1119   `difficulty_entry_1` mediumint(8) unsigned NOT NULL default '0',
1120   `difficulty_entry_2` mediumint(8) unsigned NOT NULL default '0',
1121   `difficulty_entry_3` mediumint(8) unsigned NOT NULL default '0',
1122   `KillCredit1` int(11) unsigned NOT NULL default '0',
1123   `KillCredit2` int(11) unsigned NOT NULL default '0',
1124   `modelid_A` mediumint(8) unsigned NOT NULL default '0',
1125   `modelid_A2` mediumint(8) unsigned NOT NULL default '0',
1126   `modelid_H` mediumint(8) unsigned NOT NULL default '0',
1127   `modelid_H2` mediumint(8) unsigned NOT NULL default '0',
1128   `name` char(100) NOT NULL default '0',
1129   `subname` char(100) default NULL,
1130   `IconName` char(100) default NULL,
1131   `gossip_menu_id` mediumint(8) unsigned NOT NULL default '0',
1132   `minlevel` tinyint(3) unsigned NOT NULL default '1',
1133   `maxlevel` tinyint(3) unsigned NOT NULL default '1',
1134   `minhealth` int(10) unsigned NOT NULL default '0',
1135   `maxhealth` int(10) unsigned NOT NULL default '0',
1136   `minmana` int(10) unsigned NOT NULL default '0',
1137   `maxmana` int(10) unsigned NOT NULL default '0',
1138   `armor` mediumint(8) unsigned NOT NULL default '0',
1139   `faction_A` smallint(5) unsigned NOT NULL default '0',
1140   `faction_H` smallint(5) unsigned NOT NULL default '0',
1141   `npcflag` int(10) unsigned NOT NULL default '0',
1142   `speed_walk` float NOT NULL default '1' COMMENT 'Result of 2.5/2.5, most common value',
1143   `speed_run` float NOT NULL default '1.14286' COMMENT 'Result of 8.0/7.0, most common value',
1144   `scale` float NOT NULL default '1',
1145   `rank` tinyint(3) unsigned NOT NULL default '0',
1146   `mindmg` float NOT NULL default '0',
1147   `maxdmg` float NOT NULL default '0',
1148   `dmgschool` tinyint(4) NOT NULL default '0',
1149   `attackpower` int(10) unsigned NOT NULL default '0',
1150   `dmg_multiplier` float NOT NULL default '1',
1151   `baseattacktime` int(10) unsigned NOT NULL default '0',
1152   `rangeattacktime` int(10) unsigned NOT NULL default '0',
1153   `unit_class` tinyint(3) unsigned NOT NULL default '0',
1154   `unit_flags` int(10) unsigned NOT NULL default '0',
1155   `dynamicflags` int(10) unsigned NOT NULL default '0',
1156   `family` tinyint(4) NOT NULL default '0',
1157   `trainer_type` tinyint(4) NOT NULL default '0',
1158   `trainer_spell` mediumint(8) unsigned NOT NULL default '0',
1159   `trainer_class` tinyint(3) unsigned NOT NULL default '0',
1160   `trainer_race` tinyint(3) unsigned NOT NULL default '0',
1161   `minrangedmg` float NOT NULL default '0',
1162   `maxrangedmg` float NOT NULL default '0',
1163   `rangedattackpower` smallint(5) unsigned NOT NULL default '0',
1164   `type` tinyint(3) unsigned NOT NULL default '0',
1165   `type_flags` int(10) unsigned NOT NULL default '0',
1166   `lootid` mediumint(8) unsigned NOT NULL default '0',
1167   `pickpocketloot` mediumint(8) unsigned NOT NULL default '0',
1168   `skinloot` mediumint(8) unsigned NOT NULL default '0',
1169   `resistance1` smallint(5) NOT NULL default '0',
1170   `resistance2` smallint(5) NOT NULL default '0',
1171   `resistance3` smallint(5) NOT NULL default '0',
1172   `resistance4` smallint(5) NOT NULL default '0',
1173   `resistance5` smallint(5) NOT NULL default '0',
1174   `resistance6` smallint(5) NOT NULL default '0',
1175   `spell1` mediumint(8) unsigned NOT NULL default '0',
1176   `spell2` mediumint(8) unsigned NOT NULL default '0',
1177   `spell3` mediumint(8) unsigned NOT NULL default '0',
1178   `spell4` mediumint(8) unsigned NOT NULL default '0',
1179   `PetSpellDataId` mediumint(8) unsigned NOT NULL default '0',
1180   `mingold` mediumint(8) unsigned NOT NULL default '0',
1181   `maxgold` mediumint(8) unsigned NOT NULL default '0',
1182   `AIName` char(64) NOT NULL default '',
1183   `MovementType` tinyint(3) unsigned NOT NULL default '0',
1184   `InhabitType` tinyint(3) unsigned NOT NULL default '3',
1185   `unk16` float NOT NULL default '1',
1186   `unk17` float NOT NULL default '1',
1187   `RacialLeader` tinyint(3) unsigned NOT NULL default '0',
1188   `questItem1` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1189   `questItem2` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1190   `questItem3` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1191   `questItem4` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1192   `questItem5` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1193   `questItem6` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1194   `movementId` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1195   `RegenHealth` tinyint(3) unsigned NOT NULL default '1',
1196   `equipment_id` mediumint(8) unsigned NOT NULL default '0',
1197   `mechanic_immune_mask` int(10) unsigned NOT NULL default '0',
1198   `flags_extra` int(10) unsigned NOT NULL default '0',
1199   `ScriptName` char(64) NOT NULL default '',
1200   PRIMARY KEY  (`entry`)
1201 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
1204 -- Dumping data for table `creature_template`
1207 LOCK TABLES `creature_template` WRITE;
1208 /*!40000 ALTER TABLE `creature_template` DISABLE KEYS */;
1209 INSERT INTO `creature_template` VALUES
1210 (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,5,35,35,0,0.91,1.14286,1,0,2,3,0,10,1,2000,2200,8,4096,0,0,0,0,0,0,1,2,100,8,5242886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1,1,0,0,0,0,0,0,0,0,1,0,0,130,'');
1211 /*!40000 ALTER TABLE `creature_template` ENABLE KEYS */;
1212 UNLOCK TABLES;
1215 -- Table structure for table `creature_template_addon`
1218 DROP TABLE IF EXISTS `creature_template_addon`;
1219 CREATE TABLE `creature_template_addon` (
1220   `entry` mediumint(8) unsigned NOT NULL default '0',
1221   `mount` mediumint(8) unsigned NOT NULL default '0',
1222   `bytes1` int(10) unsigned NOT NULL default '0',
1223   `bytes2` int(10) unsigned NOT NULL default '0',
1224   `emote` mediumint(8) unsigned NOT NULL default '0',
1225   `moveflags` int(10) unsigned NOT NULL default '0',
1226   `auras` text,
1227   PRIMARY KEY  (`entry`)
1228 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1231 -- Dumping data for table `creature_template_addon`
1234 LOCK TABLES `creature_template_addon` WRITE;
1235 /*!40000 ALTER TABLE `creature_template_addon` DISABLE KEYS */;
1236 /*!40000 ALTER TABLE `creature_template_addon` ENABLE KEYS */;
1237 UNLOCK TABLES;
1240 -- Table structure for table `db_script_string`
1243 DROP TABLE IF EXISTS `db_script_string`;
1244 CREATE TABLE `db_script_string` (
1245   `entry` int(11) unsigned NOT NULL default '0',
1246   `content_default` text NOT NULL,
1247   `content_loc1` text,
1248   `content_loc2` text,
1249   `content_loc3` text,
1250   `content_loc4` text,
1251   `content_loc5` text,
1252   `content_loc6` text,
1253   `content_loc7` text,
1254   `content_loc8` text,
1255   PRIMARY KEY  (`entry`)
1256 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1259 -- Dumping data for table `db_script_string`
1262 LOCK TABLES `db_script_string` WRITE;
1263 /*!40000 ALTER TABLE `db_script_string` DISABLE KEYS */;
1264 /*!40000 ALTER TABLE `db_script_string` ENABLE KEYS */;
1265 UNLOCK TABLES;
1268 -- Table structure for table `disenchant_loot_template`
1271 DROP TABLE IF EXISTS `disenchant_loot_template`;
1272 CREATE TABLE `disenchant_loot_template` (
1273   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Recommended id selection: item_level*100 + item_quality',
1274   `item` mediumint(8) unsigned NOT NULL default '0',
1275   `ChanceOrQuestChance` float NOT NULL default '100',
1276   `groupid` tinyint(3) unsigned NOT NULL default '0',
1277   `mincountOrRef` mediumint(9) NOT NULL default '1',
1278   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1279   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1280   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1281   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1282   PRIMARY KEY  (`entry`,`item`)
1283 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1286 -- Dumping data for table `disenchant_loot_template`
1289 LOCK TABLES `disenchant_loot_template` WRITE;
1290 /*!40000 ALTER TABLE `disenchant_loot_template` DISABLE KEYS */;
1291 /*!40000 ALTER TABLE `disenchant_loot_template` ENABLE KEYS */;
1292 UNLOCK TABLES;
1295 -- Table structure for table `creature_ai_scripts`
1298 DROP TABLE IF EXISTS `creature_ai_scripts`;
1299 CREATE TABLE `creature_ai_scripts` (
1300   `id` int(11) unsigned NOT NULL COMMENT 'Identifier' AUTO_INCREMENT,
1301   `creature_id` int(11) unsigned NOT NULL default '0' COMMENT 'Creature Template Identifier',
1302   `event_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Event Type',
1303   `event_inverse_phase_mask` int(11) signed NOT NULL default '0' COMMENT 'Mask which phases this event will not trigger in',
1304   `event_chance` int(3) unsigned NOT NULL default '100',
1305   `event_flags` int(3) unsigned NOT NULL default '0',
1306   `event_param1` int(11) signed NOT NULL default '0',
1307   `event_param2` int(11) signed NOT NULL default '0',
1308   `event_param3` int(11) signed NOT NULL default '0',
1309   `event_param4` int(11) signed NOT NULL default '0',
1310   `action1_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1311   `action1_param1` int(11) signed NOT NULL default '0',
1312   `action1_param2` int(11) signed NOT NULL default '0',
1313   `action1_param3` int(11) signed NOT NULL default '0',
1314   `action2_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1315   `action2_param1` int(11) signed NOT NULL default '0',
1316   `action2_param2` int(11) signed NOT NULL default '0',
1317   `action2_param3` int(11) signed NOT NULL default '0',
1318   `action3_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1319   `action3_param1` int(11) signed NOT NULL default '0',
1320   `action3_param2` int(11) signed NOT NULL default '0',
1321   `action3_param3` int(11) signed NOT NULL default '0',
1322   `comment` varchar(255) NOT NULL default '' COMMENT 'Event Comment',
1323   PRIMARY KEY (`id`)
1324 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Scripts';
1327 -- Dumping data for table `creature_ai_scripts`
1330 LOCK TABLES `creature_ai_scripts` WRITE;
1331 /*!40000 ALTER TABLE `creature_ai_scripts` DISABLE KEYS */;
1332 /*!40000 ALTER TABLE `creature_ai_scripts` ENABLE KEYS */;
1333 UNLOCK TABLES;
1336 -- Table structure for table `creature_ai_summons`
1339 DROP TABLE IF EXISTS `creature_ai_summons`;
1340 CREATE TABLE `creature_ai_summons` (
1341   `id` int(11) unsigned NOT NULL COMMENT 'Location Identifier' AUTO_INCREMENT,
1342   `position_x` float NOT NULL default '0',
1343   `position_y` float NOT NULL default '0',
1344   `position_z` float NOT NULL default '0',
1345   `orientation` float NOT NULL default '0',
1346   `spawntimesecs` int(11) unsigned NOT NULL default '120',
1347   `comment` varchar(255) NOT NULL default '' COMMENT 'Summon Comment',
1348   PRIMARY KEY (`id`)
1349 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Summoning Locations';
1352 -- Dumping data for table `creature_ai_summons`
1355 LOCK TABLES `creature_ai_summons` WRITE;
1356 /*!40000 ALTER TABLE `creature_ai_summons` DISABLE KEYS */;
1357 /*!40000 ALTER TABLE `creature_ai_summons` ENABLE KEYS */;
1358 UNLOCK TABLES;
1361 -- Table structure for table `creature_ai_texts`
1364 DROP TABLE IF EXISTS `creature_ai_texts`;
1365 CREATE TABLE `creature_ai_texts` (
1366   `entry` mediumint(8) NOT NULL,
1367   `content_default` text NOT NULL,
1368   `content_loc1` text,
1369   `content_loc2` text,
1370   `content_loc3` text,
1371   `content_loc4` text,
1372   `content_loc5` text,
1373   `content_loc6` text,
1374   `content_loc7` text,
1375   `content_loc8` text,
1376   `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
1377   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
1378   `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
1379   `emote` smallint(5) unsigned NOT NULL DEFAULT '0',
1380   `comment` text,
1381   PRIMARY KEY (`entry`)
1382 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
1385 -- Dumping data for table `creature_ai_texts`
1388 LOCK TABLES `creature_ai_texts` WRITE;
1389 /*!40000 ALTER TABLE `creature_ai_texts` DISABLE KEYS */;
1390 /*!40000 ALTER TABLE `creature_ai_texts` ENABLE KEYS */;
1391 UNLOCK TABLES;
1394 -- Table structure for table `event_scripts`
1397 DROP TABLE IF EXISTS `event_scripts`;
1398 CREATE TABLE `event_scripts` (
1399   `id` mediumint(8) unsigned NOT NULL default '0',
1400   `delay` int(10) unsigned NOT NULL default '0',
1401   `command` mediumint(8) unsigned NOT NULL default '0',
1402   `datalong` mediumint(8) unsigned NOT NULL default '0',
1403   `datalong2` int(10) unsigned NOT NULL default '0',
1404   `datalong3` int(10) unsigned NOT NULL default '0',
1405   `datalong4` int(10) unsigned NOT NULL default '0',
1406   `data_flags` tinyint(3) unsigned NOT NULL default '0',
1407   `dataint` int(11) NOT NULL default '0',
1408   `x` float NOT NULL default '0',
1409   `y` float NOT NULL default '0',
1410   `z` float NOT NULL default '0',
1411   `o` float NOT NULL default '0'
1412 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1415 -- Dumping data for table `event_scripts`
1418 LOCK TABLES `event_scripts` WRITE;
1419 /*!40000 ALTER TABLE `event_scripts` DISABLE KEYS */;
1420 /*!40000 ALTER TABLE `event_scripts` ENABLE KEYS */;
1421 UNLOCK TABLES;
1424 -- Table structure for table `exploration_basexp`
1427 DROP TABLE IF EXISTS `exploration_basexp`;
1428 CREATE TABLE `exploration_basexp` (
1429   `level` tinyint(4) NOT NULL default '0',
1430   `basexp` mediumint(9) NOT NULL default '0',
1431   PRIMARY KEY  (`level`)
1432 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Exploration System';
1435 -- Dumping data for table `exploration_basexp`
1438 LOCK TABLES `exploration_basexp` WRITE;
1439 /*!40000 ALTER TABLE `exploration_basexp` DISABLE KEYS */;
1440 INSERT INTO `exploration_basexp` VALUES
1441 (0,0),
1442 (1,5),
1443 (2,15),
1444 (3,25),
1445 (4,35),
1446 (5,45),
1447 (6,55),
1448 (7,65),
1449 (8,70),
1450 (9,80),
1451 (10,85),
1452 (11,90),
1453 (12,90),
1454 (13,90),
1455 (14,100),
1456 (15,105),
1457 (16,115),
1458 (17,125),
1459 (18,135),
1460 (19,145),
1461 (20,155),
1462 (21,165),
1463 (22,175),
1464 (23,185),
1465 (24,195),
1466 (25,200),
1467 (26,210),
1468 (27,220),
1469 (28,230),
1470 (29,240),
1471 (30,245),
1472 (31,250),
1473 (32,255),
1474 (33,265),
1475 (34,270),
1476 (35,275),
1477 (36,280),
1478 (37,285),
1479 (38,285),
1480 (39,300),
1481 (40,315),
1482 (41,330),
1483 (42,345),
1484 (43,360),
1485 (44,375),
1486 (45,390),
1487 (46,405),
1488 (47,420),
1489 (48,440),
1490 (49,455),
1491 (50,470),
1492 (51,490),
1493 (52,510),
1494 (53,530),
1495 (54,540),
1496 (55,560),
1497 (56,580),
1498 (57,600),
1499 (58,620),
1500 (59,640),
1501 (60,660),
1502 (61,970),
1503 (62,1000),
1504 (63,1050),
1505 (64,1080),
1506 (65,1100),
1507 (66,1130),
1508 (67,1160),
1509 (68,1200),
1510 (69,1230),
1511 (70,1250);
1512 /*!40000 ALTER TABLE `exploration_basexp` ENABLE KEYS */;
1513 UNLOCK TABLES;
1516 -- Table structure for table `fishing_loot_template`
1519 DROP TABLE IF EXISTS `fishing_loot_template`;
1520 CREATE TABLE `fishing_loot_template` (
1521   `entry` mediumint(8) unsigned NOT NULL default '0',
1522   `item` mediumint(8) unsigned NOT NULL default '0',
1523   `ChanceOrQuestChance` float NOT NULL default '100',
1524   `groupid` tinyint(3) unsigned NOT NULL default '0',
1525   `mincountOrRef` mediumint(9) NOT NULL default '1',
1526   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1527   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1528   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1529   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1530   PRIMARY KEY  (`entry`,`item`)
1531 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1534 -- Dumping data for table `fishing_loot_template`
1537 LOCK TABLES `fishing_loot_template` WRITE;
1538 /*!40000 ALTER TABLE `fishing_loot_template` DISABLE KEYS */;
1539 /*!40000 ALTER TABLE `fishing_loot_template` ENABLE KEYS */;
1540 UNLOCK TABLES;
1543 -- Table structure for table `game_event`
1546 DROP TABLE IF EXISTS `game_event`;
1547 CREATE TABLE `game_event` (
1548   `entry` mediumint(8) unsigned NOT NULL COMMENT 'Entry of the game event',
1549   `start_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Absolute start date, the event will never start before',
1550   `end_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Absolute end date, the event will never start afler',
1551   `occurence` bigint(20) unsigned NOT NULL default '86400' COMMENT 'Delay in minutes between occurences of the event',
1552   `length` bigint(20) unsigned NOT NULL default '43200' COMMENT 'Length in minutes of the event',
1553   `holiday` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Client side holiday id',
1554   `description` varchar(255) default NULL COMMENT 'Description of the event displayed in console',
1555   PRIMARY KEY  (`entry`)
1556 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1559 -- Dumping data for table `game_event`
1562 LOCK TABLES `game_event` WRITE;
1563 /*!40000 ALTER TABLE `game_event` DISABLE KEYS */;
1564 /*!40000 ALTER TABLE `game_event` ENABLE KEYS */;
1565 UNLOCK TABLES;
1568 -- Table structure for table `game_event_creature`
1571 DROP TABLE IF EXISTS `game_event_creature`;
1572 CREATE TABLE `game_event_creature` (
1573   `guid` int(10) unsigned NOT NULL,
1574   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
1575   PRIMARY KEY  (`guid`)
1576 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1579 -- Dumping data for table `game_event_creature`
1582 LOCK TABLES `game_event_creature` WRITE;
1583 /*!40000 ALTER TABLE `game_event_creature` DISABLE KEYS */;
1584 /*!40000 ALTER TABLE `game_event_creature` ENABLE KEYS */;
1585 UNLOCK TABLES;
1588 -- Table structure for table `game_event_creature_quest`
1591 DROP TABLE IF EXISTS `game_event_creature_quest`;
1592 CREATE TABLE `game_event_creature_quest` (
1593   `id` mediumint(8) unsigned NOT NULL default '0',
1594   `quest` mediumint(8) unsigned NOT NULL default '0',
1595   `event` smallint(5) unsigned NOT NULL default '0',
1596   PRIMARY KEY  (`id`,`quest`)
1597 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1600 -- Dumping data for table `game_event_creature_quest`
1603 LOCK TABLES `game_event_creature_quest` WRITE;
1604 /*!40000 ALTER TABLE `game_event_creature_quest` DISABLE KEYS */;
1605 /*!40000 ALTER TABLE `game_event_creature_quest` ENABLE KEYS */;
1606 UNLOCK TABLES;
1609 -- Table structure for table `game_event_gameobject`
1612 DROP TABLE IF EXISTS `game_event_gameobject`;
1613 CREATE TABLE `game_event_gameobject` (
1614   `guid` int(10) unsigned NOT NULL,
1615   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
1616   PRIMARY KEY  (`guid`)
1617 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1620 -- Dumping data for table `game_event_gameobject`
1623 LOCK TABLES `game_event_gameobject` WRITE;
1624 /*!40000 ALTER TABLE `game_event_gameobject` DISABLE KEYS */;
1625 /*!40000 ALTER TABLE `game_event_gameobject` ENABLE KEYS */;
1626 UNLOCK TABLES;
1629 -- Table structure for table `game_event_model_equip`
1632 DROP TABLE IF EXISTS `game_event_model_equip`;
1633 CREATE TABLE `game_event_model_equip` (
1634   `guid` int(10) unsigned NOT NULL default '0',
1635   `modelid` mediumint(8) unsigned NOT NULL default '0',
1636   `equipment_id` mediumint(8) unsigned NOT NULL default '0',
1637   `event` smallint(5) unsigned NOT NULL default '0',
1638   PRIMARY KEY  (`guid`)
1639 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1642 -- Dumping data for table `game_event_model_equip`
1645 LOCK TABLES `game_event_model_equip` WRITE;
1646 /*!40000 ALTER TABLE `game_event_model_equip` DISABLE KEYS */;
1647 /*!40000 ALTER TABLE `game_event_model_equip` ENABLE KEYS */;
1648 UNLOCK TABLES;
1651 -- Table structure for table `game_graveyard_zone`
1654 DROP TABLE IF EXISTS `game_graveyard_zone`;
1655 CREATE TABLE `game_graveyard_zone` (
1656   `id` mediumint(8) unsigned NOT NULL default '0',
1657   `ghost_zone` mediumint(8) unsigned NOT NULL default '0',
1658   `faction` smallint(5) unsigned NOT NULL default '0',
1659   PRIMARY KEY  (`id`,`ghost_zone`)
1660 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Trigger System';
1663 -- Dumping data for table `game_graveyard_zone`
1666 LOCK TABLES `game_graveyard_zone` WRITE;
1667 /*!40000 ALTER TABLE `game_graveyard_zone` DISABLE KEYS */;
1668 /*!40000 ALTER TABLE `game_graveyard_zone` ENABLE KEYS */;
1669 UNLOCK TABLES;
1672 -- Table structure for table `game_tele`
1675 DROP TABLE IF EXISTS `game_tele`;
1676 CREATE TABLE `game_tele` (
1677   `id` mediumint(8) unsigned NOT NULL auto_increment,
1678   `position_x` float NOT NULL default '0',
1679   `position_y` float NOT NULL default '0',
1680   `position_z` float NOT NULL default '0',
1681   `orientation` float NOT NULL default '0',
1682   `map` smallint(5) unsigned NOT NULL default '0',
1683   `name` varchar(100) NOT NULL default '',
1684   PRIMARY KEY  (`id`)
1685 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tele Command';
1688 -- Dumping data for table `game_tele`
1691 LOCK TABLES `game_tele` WRITE;
1692 /*!40000 ALTER TABLE `game_tele` DISABLE KEYS */;
1693 /*!40000 ALTER TABLE `game_tele` ENABLE KEYS */;
1694 UNLOCK TABLES;
1697 -- Table structure for table `game_weather`
1700 DROP TABLE IF EXISTS `game_weather`;
1701 CREATE TABLE `game_weather` (
1702   `zone` mediumint(8) unsigned NOT NULL default '0',
1703   `spring_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1704   `spring_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1705   `spring_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1706   `summer_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1707   `summer_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1708   `summer_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1709   `fall_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1710   `fall_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1711   `fall_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1712   `winter_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1713   `winter_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1714   `winter_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1715   PRIMARY KEY  (`zone`)
1716 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Weather System';
1719 -- Dumping data for table `game_weather`
1722 LOCK TABLES `game_weather` WRITE;
1723 /*!40000 ALTER TABLE `game_weather` DISABLE KEYS */;
1724 /*!40000 ALTER TABLE `game_weather` ENABLE KEYS */;
1725 UNLOCK TABLES;
1728 -- Table structure for table `gameobject`
1731 DROP TABLE IF EXISTS `gameobject`;
1732 CREATE TABLE `gameobject` (
1733   `guid` int(10) unsigned NOT NULL auto_increment COMMENT 'Global Unique Identifier',
1734   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Gameobject Identifier',
1735   `map` smallint(5) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
1736   `spawnMask` tinyint(3) unsigned NOT NULL default '1',
1737   `phaseMask` smallint(5) unsigned NOT NULL default '1',
1738   `position_x` float NOT NULL default '0',
1739   `position_y` float NOT NULL default '0',
1740   `position_z` float NOT NULL default '0',
1741   `orientation` float NOT NULL default '0',
1742   `rotation0` float NOT NULL default '0',
1743   `rotation1` float NOT NULL default '0',
1744   `rotation2` float NOT NULL default '0',
1745   `rotation3` float NOT NULL default '0',
1746   `spawntimesecs` int(11) NOT NULL default '0',
1747   `animprogress` tinyint(3) unsigned NOT NULL default '0',
1748   `state` tinyint(3) unsigned NOT NULL default '0',
1749   PRIMARY KEY  (`guid`),
1750   KEY `idx_map` (`map`),
1751   KEY `idx_id` (`id`)
1752 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
1755 -- Dumping data for table `gameobject`
1758 LOCK TABLES `gameobject` WRITE;
1759 /*!40000 ALTER TABLE `gameobject` DISABLE KEYS */;
1760 /*!40000 ALTER TABLE `gameobject` ENABLE KEYS */;
1761 UNLOCK TABLES;
1764 -- Table structure for table `gameobject_battleground`
1767 DROP TABLE IF EXISTS `gameobject_battleground`;
1768 CREATE TABLE `gameobject_battleground` (
1769     `guid` int(10) unsigned NOT NULL COMMENT 'GameObject\'s GUID',
1770     `event1` tinyint(3) unsigned NOT NULL COMMENT 'main event',
1771     `event2` tinyint(3) unsigned NOT NULL COMMENT 'sub event',
1772     PRIMARY KEY  (`guid`)
1773 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='GameObject battleground indexing system';
1776 -- Dumping data for table `gameobject_battleground`
1779 LOCK TABLES `gameobject_battleground` WRITE;
1780 /*!40000 ALTER TABLE `gameobject_battleground` DISABLE KEYS */;
1781 /*!40000 ALTER TABLE `gameobject_battleground` ENABLE KEYS */;
1782 UNLOCK TABLES;
1785 -- Table structure for table `gameobject_involvedrelation`
1788 DROP TABLE IF EXISTS `gameobject_involvedrelation`;
1789 CREATE TABLE `gameobject_involvedrelation` (
1790   `id` mediumint(8) unsigned NOT NULL default '0',
1791   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1792   PRIMARY KEY  (`id`,`quest`)
1793 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1796 -- Dumping data for table `gameobject_involvedrelation`
1799 LOCK TABLES `gameobject_involvedrelation` WRITE;
1800 /*!40000 ALTER TABLE `gameobject_involvedrelation` DISABLE KEYS */;
1801 /*!40000 ALTER TABLE `gameobject_involvedrelation` ENABLE KEYS */;
1802 UNLOCK TABLES;
1805 -- Table structure for table `gameobject_loot_template`
1808 DROP TABLE IF EXISTS `gameobject_loot_template`;
1809 CREATE TABLE `gameobject_loot_template` (
1810   `entry` mediumint(8) unsigned NOT NULL default '0',
1811   `item` mediumint(8) unsigned NOT NULL default '0',
1812   `ChanceOrQuestChance` float NOT NULL default '100',
1813   `groupid` tinyint(3) unsigned NOT NULL default '0',
1814   `mincountOrRef` mediumint(9) NOT NULL default '1',
1815   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1816   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1817   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1818   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1819   PRIMARY KEY  (`entry`,`item`)
1820 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1823 -- Dumping data for table `gameobject_loot_template`
1826 LOCK TABLES `gameobject_loot_template` WRITE;
1827 /*!40000 ALTER TABLE `gameobject_loot_template` DISABLE KEYS */;
1828 /*!40000 ALTER TABLE `gameobject_loot_template` ENABLE KEYS */;
1829 UNLOCK TABLES;
1832 -- Table structure for table `gameobject_questrelation`
1835 DROP TABLE IF EXISTS `gameobject_questrelation`;
1836 CREATE TABLE `gameobject_questrelation` (
1837   `id` mediumint(8) unsigned NOT NULL default '0',
1838   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1839   PRIMARY KEY  (`id`,`quest`)
1840 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1843 -- Dumping data for table `gameobject_questrelation`
1846 LOCK TABLES `gameobject_questrelation` WRITE;
1847 /*!40000 ALTER TABLE `gameobject_questrelation` DISABLE KEYS */;
1848 /*!40000 ALTER TABLE `gameobject_questrelation` ENABLE KEYS */;
1849 UNLOCK TABLES;
1852 -- Table structure for table `gameobject_respawn`
1855 DROP TABLE IF EXISTS `gameobject_respawn`;
1856 CREATE TABLE `gameobject_respawn` (
1857   `guid` int(10) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
1858   `respawntime` bigint(20) NOT NULL default '0',
1859   `instance` mediumint(8) unsigned NOT NULL default '0',
1860   PRIMARY KEY  (`guid`,`instance`),
1861   KEY `instance` (`instance`)
1862 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
1865 -- Dumping data for table `gameobject_respawn`
1868 LOCK TABLES `gameobject_respawn` WRITE;
1869 /*!40000 ALTER TABLE `gameobject_respawn` DISABLE KEYS */;
1870 /*!40000 ALTER TABLE `gameobject_respawn` ENABLE KEYS */;
1871 UNLOCK TABLES;
1874 -- Table structure for table `gameobject_scripts`
1877 DROP TABLE IF EXISTS `gameobject_scripts`;
1878 CREATE TABLE `gameobject_scripts` (
1879   `id` mediumint(8) unsigned NOT NULL default '0',
1880   `delay` int(10) unsigned NOT NULL default '0',
1881   `command` mediumint(8) unsigned NOT NULL default '0',
1882   `datalong` mediumint(8) unsigned NOT NULL default '0',
1883   `datalong2` int(10) unsigned NOT NULL default '0',
1884   `datalong3` int(10) unsigned NOT NULL default '0',
1885   `datalong4` int(10) unsigned NOT NULL default '0',
1886   `data_flags` tinyint(3) unsigned NOT NULL default '0',
1887   `dataint` int(11) NOT NULL default '0',
1888   `x` float NOT NULL default '0',
1889   `y` float NOT NULL default '0',
1890   `z` float NOT NULL default '0',
1891   `o` float NOT NULL default '0'
1892 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1895 -- Dumping data for table `gameobject_scripts`
1898 LOCK TABLES `gameobject_scripts` WRITE;
1899 /*!40000 ALTER TABLE `gameobject_scripts` DISABLE KEYS */;
1900 /*!40000 ALTER TABLE `gameobject_scripts` ENABLE KEYS */;
1901 UNLOCK TABLES;
1904 -- Table structure for table `gameobject_template`
1907 DROP TABLE IF EXISTS `gameobject_template`;
1908 CREATE TABLE `gameobject_template` (
1909   `entry` mediumint(8) unsigned NOT NULL default '0',
1910   `type` tinyint(3) unsigned NOT NULL default '0',
1911   `displayId` mediumint(8) unsigned NOT NULL default '0',
1912   `name` varchar(100) NOT NULL default '',
1913   `IconName` varchar(100) NOT NULL default '',
1914   `castBarCaption` varchar(100) NOT NULL default '',
1915   `unk1` varchar(100) NOT NULL default '',
1916   `faction` smallint(5) unsigned NOT NULL default '0',
1917   `flags` int(10) unsigned NOT NULL default '0',
1918   `size` float NOT NULL default '1',
1919   `questItem1` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1920   `questItem2` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1921   `questItem3` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1922   `questItem4` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1923   `questItem5` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1924   `questItem6` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1925   `data0` int(10) unsigned NOT NULL default '0',
1926   `data1` int(10) unsigned NOT NULL default '0',
1927   `data2` int(10) unsigned NOT NULL default '0',
1928   `data3` int(10) unsigned NOT NULL default '0',
1929   `data4` int(10) unsigned NOT NULL default '0',
1930   `data5` int(10) unsigned NOT NULL default '0',
1931   `data6` int(10) unsigned NOT NULL default '0',
1932   `data7` int(10) unsigned NOT NULL default '0',
1933   `data8` int(10) unsigned NOT NULL default '0',
1934   `data9` int(10) unsigned NOT NULL default '0',
1935   `data10` int(10) unsigned NOT NULL default '0',
1936   `data11` int(10) unsigned NOT NULL default '0',
1937   `data12` int(10) unsigned NOT NULL default '0',
1938   `data13` int(10) unsigned NOT NULL default '0',
1939   `data14` int(10) unsigned NOT NULL default '0',
1940   `data15` int(10) unsigned NOT NULL default '0',
1941   `data16` int(10) unsigned NOT NULL default '0',
1942   `data17` int(10) unsigned NOT NULL default '0',
1943   `data18` int(10) unsigned NOT NULL default '0',
1944   `data19` int(10) unsigned NOT NULL default '0',
1945   `data20` int(10) unsigned NOT NULL default '0',
1946   `data21` int(10) unsigned NOT NULL default '0',
1947   `data22` int(10) unsigned NOT NULL default '0',
1948   `data23` int(10) unsigned NOT NULL default '0',
1949   `mingold` mediumint(8) unsigned NOT NULL default '0',
1950   `maxgold` mediumint(8) unsigned NOT NULL default '0',
1951   `ScriptName` varchar(64) NOT NULL default '',
1952   PRIMARY KEY  (`entry`)
1953 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
1956 -- Dumping data for table `gameobject_template`
1959 LOCK TABLES `gameobject_template` WRITE;
1960 /*!40000 ALTER TABLE `gameobject_template` DISABLE KEYS */;
1961 /*!40000 ALTER TABLE `gameobject_template` ENABLE KEYS */;
1962 UNLOCK TABLES;
1965 -- Table structure for table `gossip_menu`
1968 DROP TABLE IF EXISTS gossip_menu;
1969 CREATE TABLE gossip_menu (
1970   entry smallint(6) unsigned NOT NULL default '0',
1971   text_id mediumint(8) unsigned NOT NULL default '0',
1972   cond_1 tinyint(3) unsigned NOT NULL default '0',
1973   cond_1_val_1 mediumint(8) unsigned NOT NULL default '0',
1974   cond_1_val_2 mediumint(8) unsigned NOT NULL default '0',
1975   cond_2 tinyint(3) unsigned NOT NULL default '0',
1976   cond_2_val_1 mediumint(8) unsigned NOT NULL default '0',
1977   cond_2_val_2 mediumint(8) unsigned NOT NULL default '0',
1978   PRIMARY KEY (entry, text_id)
1979 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1982 -- Dumping data for table `gossip_menu`
1985 LOCK TABLES `gossip_menu` WRITE;
1986 /*!40000 ALTER TABLE `gossip_menu` DISABLE KEYS */;
1987 /*!40000 ALTER TABLE `gossip_menu` ENABLE KEYS */;
1988 UNLOCK TABLES;
1991 -- Table structure for table `gossip_menu_option`
1994 DROP TABLE IF EXISTS gossip_menu_option;
1995 CREATE TABLE gossip_menu_option (
1996   menu_id smallint(6) unsigned NOT NULL default '0',
1997   id smallint(6) unsigned NOT NULL default '0',
1998   option_icon mediumint(8) unsigned NOT NULL default '0',
1999   option_text text,
2000   option_id tinyint(3) unsigned NOT NULL default '0',
2001   npc_option_npcflag int(10) unsigned NOT NULL default '0',
2002   action_menu_id mediumint(8) unsigned NOT NULL default '0',
2003   action_poi_id mediumint(8) unsigned NOT NULL default '0',
2004   action_script_id mediumint(8) unsigned NOT NULL default '0',
2005   box_coded tinyint(3) unsigned NOT NULL default '0',
2006   box_money int(11) unsigned NOT NULL default '0',
2007   box_text text,
2008   cond_1 tinyint(3) unsigned NOT NULL default '0',
2009   cond_1_val_1 mediumint(8) unsigned NOT NULL default '0',
2010   cond_1_val_2 mediumint(8) unsigned NOT NULL default '0',
2011   cond_2 tinyint(3) unsigned NOT NULL default '0',
2012   cond_2_val_1 mediumint(8) unsigned NOT NULL default '0',
2013   cond_2_val_2 mediumint(8) unsigned NOT NULL default '0',
2014   cond_3 tinyint(3) unsigned NOT NULL default '0',
2015   cond_3_val_1 mediumint(8) unsigned NOT NULL default '0',
2016   cond_3_val_2 mediumint(8) unsigned NOT NULL default '0',
2017   PRIMARY KEY (menu_id, id)
2018 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2021 -- Dumping data for table `gossip_menu_option`
2024 LOCK TABLES `gossip_menu_option` WRITE;
2025 /*!40000 ALTER TABLE `gossip_menu_option` DISABLE KEYS */;
2026 INSERT INTO gossip_menu_option VALUES
2027 (0, 0,0,'GOSSIP_OPTION_QUESTGIVER',       2,0x000002,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2028 (0, 1,1,'GOSSIP_OPTION_VENDOR',           3,0x000080,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2029 (0, 2,2,'GOSSIP_OPTION_TAXIVENDOR',       4,0x002000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2030 (0, 3,3,'GOSSIP_OPTION_TRAINER',          5,0x000010,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2031 (0, 4,4,'GOSSIP_OPTION_SPIRITHEALER',     6,0x004000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2032 (0, 5,4,'GOSSIP_OPTION_SPIRITGUIDE',      7,0x008000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2033 (0, 6,5,'GOSSIP_OPTION_INNKEEPER',        8,0x010000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2034 (0, 7,6,'GOSSIP_OPTION_BANKER',           9,0x020000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2035 (0, 8,7,'GOSSIP_OPTION_PETITIONER',      10,0x040000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2036 (0, 9,8,'GOSSIP_OPTION_TABARDDESIGNER',  11,0x080000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2037 (0,10,9,'GOSSIP_OPTION_BATTLEFIELD',     12,0x100000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2038 (0,11,6,'GOSSIP_OPTION_AUCTIONEER',      13,0x200000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2039 (0,12,0,'GOSSIP_OPTION_STABLEPET',       14,0x400000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2040 (0,13,1,'GOSSIP_OPTION_ARMORER',         15,0x001000,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2041 (0,14,0,'GOSSIP_OPTION_UNLEARNTALENTS',  16,0x000010,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),
2042 (0,15,2,'GOSSIP_OPTION_UNLEARNPETSKILLS',17,0x000010,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0);
2043 /*!40000 ALTER TABLE `gossip_menu_option` ENABLE KEYS */;
2044 UNLOCK TABLES;
2047 -- Table structure for table `gossip_scripts`
2050 DROP TABLE IF EXISTS `gossip_scripts`;
2051 CREATE TABLE `gossip_scripts` (
2052   `id` mediumint(8) unsigned NOT NULL default '0',
2053   `delay` int(10) unsigned NOT NULL default '0',
2054   `command` mediumint(8) unsigned NOT NULL default '0',
2055   `datalong` mediumint(8) unsigned NOT NULL default '0',
2056   `datalong2` int(10) unsigned NOT NULL default '0',
2057   `datalong3` int(10) unsigned NOT NULL default '0',
2058   `datalong4` int(10) unsigned NOT NULL default '0',
2059   `data_flags` tinyint(3) unsigned NOT NULL default '0',
2060   `dataint` int(11) NOT NULL default '0',
2061   `x` float NOT NULL default '0',
2062   `y` float NOT NULL default '0',
2063   `z` float NOT NULL default '0',
2064   `o` float NOT NULL default '0'
2065 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2068 -- Dumping data for table `gossip_scripts`
2071 LOCK TABLES `gossip_scripts` WRITE;
2072 /*!40000 ALTER TABLE `gossip_scripts` DISABLE KEYS */;
2073 /*!40000 ALTER TABLE `gossip_scripts` ENABLE KEYS */;
2074 UNLOCK TABLES;
2077 -- Table structure for table `instance_template`
2080 DROP TABLE IF EXISTS `instance_template`;
2081 CREATE TABLE `instance_template` (
2082   `map` smallint(5) unsigned NOT NULL,
2083   `parent` smallint(5) unsigned NOT NULL default '0',
2084   `levelMin` tinyint(3) unsigned NOT NULL default '0',
2085   `levelMax` tinyint(3) unsigned NOT NULL default '0',
2086   `script` varchar(128) NOT NULL default '',
2087   PRIMARY KEY  (`map`)
2088 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2091 -- Dumping data for table `instance_template`
2094 LOCK TABLES `instance_template` WRITE;
2095 /*!40000 ALTER TABLE `instance_template` DISABLE KEYS */;
2096 /*!40000 ALTER TABLE `instance_template` ENABLE KEYS */;
2097 UNLOCK TABLES;
2100 -- Table structure for table `item_enchantment_template`
2103 DROP TABLE IF EXISTS `item_enchantment_template`;
2104 CREATE TABLE `item_enchantment_template` (
2105   `entry` mediumint(8) unsigned NOT NULL default '0',
2106   `ench` mediumint(8) unsigned NOT NULL default '0',
2107   `chance` float unsigned NOT NULL default '0',
2108   PRIMARY KEY  (`entry`,`ench`)
2109 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System';
2112 -- Dumping data for table `item_enchantment_template`
2115 LOCK TABLES `item_enchantment_template` WRITE;
2116 /*!40000 ALTER TABLE `item_enchantment_template` DISABLE KEYS */;
2117 /*!40000 ALTER TABLE `item_enchantment_template` ENABLE KEYS */;
2118 UNLOCK TABLES;
2121 -- Table structure for table `item_loot_template`
2124 DROP TABLE IF EXISTS `item_loot_template`;
2125 CREATE TABLE `item_loot_template` (
2126   `entry` mediumint(8) unsigned NOT NULL default '0',
2127   `item` mediumint(8) unsigned NOT NULL default '0',
2128   `ChanceOrQuestChance` float NOT NULL default '100',
2129   `groupid` tinyint(3) unsigned NOT NULL default '0',
2130   `mincountOrRef` mediumint(9) NOT NULL default '1',
2131   `maxcount` tinyint(3) unsigned NOT NULL default '1',
2132   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
2133   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
2134   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
2135   PRIMARY KEY  (`entry`,`item`)
2136 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
2139 -- Dumping data for table `item_loot_template`
2142 LOCK TABLES `item_loot_template` WRITE;
2143 /*!40000 ALTER TABLE `item_loot_template` DISABLE KEYS */;
2144 /*!40000 ALTER TABLE `item_loot_template` ENABLE KEYS */;
2145 UNLOCK TABLES;
2148 -- Table structure for table `item_required_target`
2151 DROP TABLE IF EXISTS `item_required_target`;
2152 CREATE TABLE `item_required_target` (
2153   `entry` mediumint(8) unsigned NOT NULL,
2154   `type` tinyint(3) unsigned NOT NULL default '0',
2155   `targetEntry` mediumint(8) unsigned NOT NULL default '0',
2156   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
2157 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
2160 -- Dumping data for table `item_required_target`
2163 LOCK TABLES `item_required_target` WRITE;
2164 /*!40000 ALTER TABLE `item_required_target` DISABLE KEYS */;
2165 /*!40000 ALTER TABLE `item_required_target` ENABLE KEYS */;
2166 UNLOCK TABLES;
2169 -- Table structure for table `item_template`
2172 DROP TABLE IF EXISTS `item_template`;
2173 CREATE TABLE `item_template` (
2174   `entry` mediumint(8) unsigned NOT NULL default '0',
2175   `class` tinyint(3) unsigned NOT NULL default '0',
2176   `subclass` tinyint(3) unsigned NOT NULL default '0',
2177   `unk0` int(11) NOT NULL default '-1',
2178   `name` varchar(255) NOT NULL default '',
2179   `displayid` mediumint(8) unsigned NOT NULL default '0',
2180   `Quality` tinyint(3) unsigned NOT NULL default '0',
2181   `Flags` int(10) unsigned NOT NULL default '0',
2182   `Faction` int(11) UNSIGNED NOT NULL default '0',
2183   `BuyCount` tinyint(3) unsigned NOT NULL default '1',
2184   `BuyPrice` int(10) unsigned NOT NULL default '0',
2185   `SellPrice` int(10) unsigned NOT NULL default '0',
2186   `InventoryType` tinyint(3) unsigned NOT NULL default '0',
2187   `AllowableClass` mediumint(9) NOT NULL default '-1',
2188   `AllowableRace` mediumint(9) NOT NULL default '-1',
2189   `ItemLevel` smallint(5) unsigned NOT NULL default '0',
2190   `RequiredLevel` tinyint(3) unsigned NOT NULL default '0',
2191   `RequiredSkill` smallint(5) unsigned NOT NULL default '0',
2192   `RequiredSkillRank` smallint(5) unsigned NOT NULL default '0',
2193   `requiredspell` mediumint(8) unsigned NOT NULL default '0',
2194   `requiredhonorrank` mediumint(8) unsigned NOT NULL default '0',
2195   `RequiredCityRank` mediumint(8) unsigned NOT NULL default '0',
2196   `RequiredReputationFaction` smallint(5) unsigned NOT NULL default '0',
2197   `RequiredReputationRank` smallint(5) unsigned NOT NULL default '0',
2198   `maxcount` smallint(5) NOT NULL default '-1',
2199   `stackable` smallint(5) NOT NULL default '1',
2200   `ContainerSlots` tinyint(3) unsigned NOT NULL default '0',
2201   `StatsCount` tinyint(3) unsigned NOT NULL default '0',
2202   `stat_type1` tinyint(3) unsigned NOT NULL default '0',
2203   `stat_value1` smallint(6) NOT NULL default '0',
2204   `stat_type2` tinyint(3) unsigned NOT NULL default '0',
2205   `stat_value2` smallint(6) NOT NULL default '0',
2206   `stat_type3` tinyint(3) unsigned NOT NULL default '0',
2207   `stat_value3` smallint(6) NOT NULL default '0',
2208   `stat_type4` tinyint(3) unsigned NOT NULL default '0',
2209   `stat_value4` smallint(6) NOT NULL default '0',
2210   `stat_type5` tinyint(3) unsigned NOT NULL default '0',
2211   `stat_value5` smallint(6) NOT NULL default '0',
2212   `stat_type6` tinyint(3) unsigned NOT NULL default '0',
2213   `stat_value6` smallint(6) NOT NULL default '0',
2214   `stat_type7` tinyint(3) unsigned NOT NULL default '0',
2215   `stat_value7` smallint(6) NOT NULL default '0',
2216   `stat_type8` tinyint(3) unsigned NOT NULL default '0',
2217   `stat_value8` smallint(6) NOT NULL default '0',
2218   `stat_type9` tinyint(3) unsigned NOT NULL default '0',
2219   `stat_value9` smallint(6) NOT NULL default '0',
2220   `stat_type10` tinyint(3) unsigned NOT NULL default '0',
2221   `stat_value10` smallint(6) NOT NULL default '0',
2222   `ScalingStatDistribution` smallint(6) NOT NULL default '0',
2223   `ScalingStatValue` int(6) unsigned NOT NULL default '0',
2224   `dmg_min1` float NOT NULL default '0',
2225   `dmg_max1` float NOT NULL default '0',
2226   `dmg_type1` tinyint(3) unsigned NOT NULL default '0',
2227   `dmg_min2` float NOT NULL default '0',
2228   `dmg_max2` float NOT NULL default '0',
2229   `dmg_type2` tinyint(3) unsigned NOT NULL default '0',
2230   `armor` smallint(5) unsigned NOT NULL default '0',
2231   `holy_res` tinyint(3) unsigned NOT NULL default '0',
2232   `fire_res` tinyint(3) unsigned NOT NULL default '0',
2233   `nature_res` tinyint(3) unsigned NOT NULL default '0',
2234   `frost_res` tinyint(3) unsigned NOT NULL default '0',
2235   `shadow_res` tinyint(3) unsigned NOT NULL default '0',
2236   `arcane_res` tinyint(3) unsigned NOT NULL default '0',
2237   `delay` smallint(5) unsigned NOT NULL default '1000',
2238   `ammo_type` tinyint(3) unsigned NOT NULL default '0',
2239   `RangedModRange` float NOT NULL default '0',
2240   `spellid_1` mediumint(8) unsigned NOT NULL default '0',
2241   `spelltrigger_1` tinyint(3) unsigned NOT NULL default '0',
2242   `spellcharges_1` smallint(5) NOT NULL default '0',
2243   `spellppmRate_1` float NOT NULL default '0',
2244   `spellcooldown_1` int(11) NOT NULL default '-1',
2245   `spellcategory_1` smallint(5) unsigned NOT NULL default '0',
2246   `spellcategorycooldown_1` int(11) NOT NULL default '-1',
2247   `spellid_2` mediumint(8) unsigned NOT NULL default '0',
2248   `spelltrigger_2` tinyint(3) unsigned NOT NULL default '0',
2249   `spellcharges_2` smallint(5) NOT NULL default '0',
2250   `spellppmRate_2` float NOT NULL default '0',
2251   `spellcooldown_2` int(11) NOT NULL default '-1',
2252   `spellcategory_2` smallint(5) unsigned NOT NULL default '0',
2253   `spellcategorycooldown_2` int(11) NOT NULL default '-1',
2254   `spellid_3` mediumint(8) unsigned NOT NULL default '0',
2255   `spelltrigger_3` tinyint(3) unsigned NOT NULL default '0',
2256   `spellcharges_3` smallint(5) NOT NULL default '0',
2257   `spellppmRate_3` float NOT NULL default '0',
2258   `spellcooldown_3` int(11) NOT NULL default '-1',
2259   `spellcategory_3` smallint(5) unsigned NOT NULL default '0',
2260   `spellcategorycooldown_3` int(11) NOT NULL default '-1',
2261   `spellid_4` mediumint(8) unsigned NOT NULL default '0',
2262   `spelltrigger_4` tinyint(3) unsigned NOT NULL default '0',
2263   `spellcharges_4` smallint(5) NOT NULL default '0',
2264   `spellppmRate_4` float NOT NULL default '0',
2265   `spellcooldown_4` int(11) NOT NULL default '-1',
2266   `spellcategory_4` smallint(5) unsigned NOT NULL default '0',
2267   `spellcategorycooldown_4` int(11) NOT NULL default '-1',
2268   `spellid_5` mediumint(8) unsigned NOT NULL default '0',
2269   `spelltrigger_5` tinyint(3) unsigned NOT NULL default '0',
2270   `spellcharges_5` smallint(5) NOT NULL default '0',
2271   `spellppmRate_5` float NOT NULL default '0',
2272   `spellcooldown_5` int(11) NOT NULL default '-1',
2273   `spellcategory_5` smallint(5) unsigned NOT NULL default '0',
2274   `spellcategorycooldown_5` int(11) NOT NULL default '-1',
2275   `bonding` tinyint(3) unsigned NOT NULL default '0',
2276   `description` varchar(255) NOT NULL default '',
2277   `PageText` mediumint(8) unsigned NOT NULL default '0',
2278   `LanguageID` tinyint(3) unsigned NOT NULL default '0',
2279   `PageMaterial` tinyint(3) unsigned NOT NULL default '0',
2280   `startquest` mediumint(8) unsigned NOT NULL default '0',
2281   `lockid` mediumint(8) unsigned NOT NULL default '0',
2282   `Material` tinyint(4) NOT NULL default '0',
2283   `sheath` tinyint(3) unsigned NOT NULL default '0',
2284   `RandomProperty` mediumint(8) unsigned NOT NULL default '0',
2285   `RandomSuffix` mediumint(8) unsigned NOT NULL default '0',
2286   `block` mediumint(8) unsigned NOT NULL default '0',
2287   `itemset` mediumint(8) unsigned NOT NULL default '0',
2288   `MaxDurability` smallint(5) unsigned NOT NULL default '0',
2289   `area` mediumint(8) unsigned NOT NULL default '0',
2290   `Map` smallint(6) NOT NULL default '0',
2291   `BagFamily` mediumint(9) NOT NULL default '0',
2292   `TotemCategory` mediumint(9) NOT NULL default '0',
2293   `socketColor_1` tinyint(4) NOT NULL default '0',
2294   `socketContent_1` mediumint(9) NOT NULL default '0',
2295   `socketColor_2` tinyint(4) NOT NULL default '0',
2296   `socketContent_2` mediumint(9) NOT NULL default '0',
2297   `socketColor_3` tinyint(4) NOT NULL default '0',
2298   `socketContent_3` mediumint(9) NOT NULL default '0',
2299   `socketBonus` mediumint(9) NOT NULL default '0',
2300   `GemProperties` mediumint(9) NOT NULL default '0',
2301   `RequiredDisenchantSkill` smallint(6) NOT NULL default '-1',
2302   `ArmorDamageModifier` float NOT NULL default '0',
2303   `Duration` int(11) UNSIGNED DEFAULT '0' NOT NULL COMMENT 'Duration in seconds.',
2304   `ItemLimitCategory` smallint(6) NOT NULL default '0',
2305   `HolidayId` int(11) UNSIGNED DEFAULT '0' NOT NULL,
2306   `ScriptName` varchar(64) NOT NULL default '',
2307   `DisenchantID` mediumint(8) unsigned NOT NULL default '0',
2308   `FoodType` tinyint(3) unsigned NOT NULL default '0',
2309   `minMoneyLoot` int(10) unsigned NOT NULL default '0',
2310   `maxMoneyLoot` int(10) unsigned NOT NULL default '0',
2311   `ExtraFlags` tinyint(1) UNSIGNED NOT NULL default '0',
2312   PRIMARY KEY  (`entry`),
2313   KEY `items_index` (`class`)
2314 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
2317 -- Dumping data for table `item_template`
2320 LOCK TABLES `item_template` WRITE;
2321 /*!40000 ALTER TABLE `item_template` DISABLE KEYS */;
2322 INSERT INTO `item_template` VALUES
2323 (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,0),
2324 (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,0),
2325 (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,0),
2326 (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,0),
2327 (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,0),
2328 (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,0),
2329 (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,0),
2330 (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,0),
2331 (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,0),
2332 (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,0),
2333 (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,0),
2334 (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,0),
2335 (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,0),
2336 (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,0),
2337 (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,0),
2338 (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,0),
2339 (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,0),
2340 (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,0),
2341 (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,0),
2342 (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,0),
2343 (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,0),
2344 (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,0),
2345 (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,0),
2346 (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,0),
2347 (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,0),
2348 (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,0),
2349 (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,0),
2350 (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,0),
2351 (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,0),
2352 (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,0),
2353 (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,0),
2354 (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,0),
2355 (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,0),
2356 (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,0),
2357 (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,0),
2358 (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,0),
2359 (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,0),
2360 (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,0),
2361 (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,0),
2362 (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,0),
2363 (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,0),
2364 (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,0),
2365 (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,0),
2366 (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,0),
2367 (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,0),
2368 (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,0),
2369 (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,0),
2370 (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,0),
2371 (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,0),
2372 (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,0),
2373 (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,0),
2374 (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,0),
2375 (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,0),
2376 (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,0),
2377 (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,0),
2378 (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,0),
2379 (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,0),
2380 (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,0),
2381 (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,0),
2382 (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,0),
2383 (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,0),
2384 (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,0),
2385 (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,0),
2386 (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,0),
2387 (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,0),
2388 (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,0),
2389 (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,0),
2390 (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,0),
2391 (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,0),
2392 (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,0),
2393 (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,0),
2394 (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,0),
2395 (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,0),
2396 (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,0),
2397 (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,0),
2398 (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,0),
2399 (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,0),
2400 (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,0),
2401 (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,0),
2402 (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,0),
2403 (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,0),
2404 (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,0),
2405 (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,0),
2406 (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,0),
2407 (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,0),
2408 (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,0),
2409 (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,0);
2410 /*!40000 ALTER TABLE `item_template` ENABLE KEYS */;
2411 UNLOCK TABLES;
2414 -- Table structure for table `locales_achievement_reward`
2417 DROP TABLE IF EXISTS `locales_achievement_reward`;
2418 CREATE TABLE `locales_achievement_reward` (
2419   `entry` mediumint(8) unsigned NOT NULL default '0',
2420   `gender` tinyint(3) default '2',
2421   `subject_loc1` varchar(100) NOT NULL default '',
2422   `subject_loc2` varchar(100) NOT NULL default '',
2423   `subject_loc3` varchar(100) NOT NULL default '',
2424   `subject_loc4` varchar(100) NOT NULL default '',
2425   `subject_loc5` varchar(100) NOT NULL default '',
2426   `subject_loc6` varchar(100) NOT NULL default '',
2427   `subject_loc7` varchar(100) NOT NULL default '',
2428   `subject_loc8` varchar(100) NOT NULL default '',
2429   `text_loc1` text default NULL,
2430   `text_loc2` text default NULL,
2431   `text_loc3` text default NULL,
2432   `text_loc4` text default NULL,
2433   `text_loc5` text default NULL,
2434   `text_loc6` text default NULL,
2435   `text_loc7` text default NULL,
2436   `text_loc8` text default NULL,
2437   PRIMARY KEY  (`entry`,`gender`)
2438 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2441 -- Dumping data for table `locales_achievement_reward`
2444 LOCK TABLES `locales_achievement_reward` WRITE;
2445 /*!40000 ALTER TABLE `locales_achievement_reward` DISABLE KEYS */;
2446 /*!40000 ALTER TABLE `locales_achievement_reward` ENABLE KEYS */;
2447 UNLOCK TABLES;
2450 -- Table structure for table `locales_creature`
2453 DROP TABLE IF EXISTS `locales_creature`;
2454 CREATE TABLE `locales_creature` (
2455   `entry` mediumint(8) unsigned NOT NULL default '0',
2456   `name_loc1` varchar(100) NOT NULL default '',
2457   `name_loc2` varchar(100) NOT NULL default '',
2458   `name_loc3` varchar(100) NOT NULL default '',
2459   `name_loc4` varchar(100) NOT NULL default '',
2460   `name_loc5` varchar(100) NOT NULL default '',
2461   `name_loc6` varchar(100) NOT NULL default '',
2462   `name_loc7` varchar(100) NOT NULL default '',
2463   `name_loc8` varchar(100) NOT NULL default '',
2464   `subname_loc1` varchar(100) default NULL,
2465   `subname_loc2` varchar(100) default NULL,
2466   `subname_loc3` varchar(100) default NULL,
2467   `subname_loc4` varchar(100) default NULL,
2468   `subname_loc5` varchar(100) default NULL,
2469   `subname_loc6` varchar(100) default NULL,
2470   `subname_loc7` varchar(100) default NULL,
2471   `subname_loc8` varchar(100) default NULL,
2472   PRIMARY KEY  (`entry`)
2473 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2476 -- Dumping data for table `locales_creature`
2479 LOCK TABLES `locales_creature` WRITE;
2480 /*!40000 ALTER TABLE `locales_creature` DISABLE KEYS */;
2481 /*!40000 ALTER TABLE `locales_creature` ENABLE KEYS */;
2482 UNLOCK TABLES;
2485 -- Table structure for table `locales_gameobject`
2488 DROP TABLE IF EXISTS `locales_gameobject`;
2489 CREATE TABLE `locales_gameobject` (
2490   `entry` mediumint(8) unsigned NOT NULL default '0',
2491   `name_loc1` varchar(100) NOT NULL default '',
2492   `name_loc2` varchar(100) NOT NULL default '',
2493   `name_loc3` varchar(100) NOT NULL default '',
2494   `name_loc4` varchar(100) NOT NULL default '',
2495   `name_loc5` varchar(100) NOT NULL default '',
2496   `name_loc6` varchar(100) NOT NULL default '',
2497   `name_loc7` varchar(100) NOT NULL default '',
2498   `name_loc8` varchar(100) NOT NULL default '',
2499   `castbarcaption_loc1` varchar(100) NOT NULL default '',
2500   `castbarcaption_loc2` varchar(100) NOT NULL default '',
2501   `castbarcaption_loc3` varchar(100) NOT NULL default '',
2502   `castbarcaption_loc4` varchar(100) NOT NULL default '',
2503   `castbarcaption_loc5` varchar(100) NOT NULL default '',
2504   `castbarcaption_loc6` varchar(100) NOT NULL default '',
2505   `castbarcaption_loc7` varchar(100) NOT NULL default '',
2506   `castbarcaption_loc8` varchar(100) NOT NULL default '',
2507   PRIMARY KEY  (`entry`)
2508 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2511 -- Dumping data for table `locales_gameobject`
2514 LOCK TABLES `locales_gameobject` WRITE;
2515 /*!40000 ALTER TABLE `locales_gameobject` DISABLE KEYS */;
2516 /*!40000 ALTER TABLE `locales_gameobject` ENABLE KEYS */;
2517 UNLOCK TABLES;
2520 -- Table structure for table `locales_gossip_menu_option`
2523 DROP TABLE IF EXISTS `locales_gossip_menu_option`;
2524 CREATE TABLE `locales_gossip_menu_option` (
2525   `menu_id` smallint(6) unsigned NOT NULL default '0',
2526   `id` smallint(6) unsigned NOT NULL default '0',
2527   `option_text_loc1` text,
2528   `option_text_loc2` text,
2529   `option_text_loc3` text,
2530   `option_text_loc4` text,
2531   `option_text_loc5` text,
2532   `option_text_loc6` text,
2533   `option_text_loc7` text,
2534   `option_text_loc8` text,
2535   `box_text_loc1` text,
2536   `box_text_loc2` text,
2537   `box_text_loc3` text,
2538   `box_text_loc4` text,
2539   `box_text_loc5` text,
2540   `box_text_loc6` text,
2541   `box_text_loc7` text,
2542   `box_text_loc8` text,
2543   PRIMARY KEY  (`menu_id`, `id`)
2544 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2547 -- Dumping data for table `locales_gossip_menu_option`
2550 LOCK TABLES `locales_gossip_menu_option` WRITE;
2551 /*!40000 ALTER TABLE `locales_gossip_menu_option` DISABLE KEYS */;
2552 /*!40000 ALTER TABLE `locales_gossip_menu_option` ENABLE KEYS */;
2553 UNLOCK TABLES;
2556 -- Table structure for table `locales_item`
2559 DROP TABLE IF EXISTS `locales_item`;
2560 CREATE TABLE `locales_item` (
2561   `entry` mediumint(8) unsigned NOT NULL default '0',
2562   `name_loc1` varchar(100) NOT NULL default '',
2563   `name_loc2` varchar(100) NOT NULL default '',
2564   `name_loc3` varchar(100) NOT NULL default '',
2565   `name_loc4` varchar(100) NOT NULL default '',
2566   `name_loc5` varchar(100) NOT NULL default '',
2567   `name_loc6` varchar(100) NOT NULL default '',
2568   `name_loc7` varchar(100) NOT NULL default '',
2569   `name_loc8` varchar(100) NOT NULL default '',
2570   `description_loc1` varchar(255) default NULL,
2571   `description_loc2` varchar(255) default NULL,
2572   `description_loc3` varchar(255) default NULL,
2573   `description_loc4` varchar(255) default NULL,
2574   `description_loc5` varchar(255) default NULL,
2575   `description_loc6` varchar(255) default NULL,
2576   `description_loc7` varchar(255) default NULL,
2577   `description_loc8` varchar(255) default NULL,
2578   PRIMARY KEY  (`entry`)
2579 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2582 -- Dumping data for table `locales_item`
2585 LOCK TABLES `locales_item` WRITE;
2586 /*!40000 ALTER TABLE `locales_item` DISABLE KEYS */;
2587 /*!40000 ALTER TABLE `locales_item` ENABLE KEYS */;
2588 UNLOCK TABLES;
2591 -- Table structure for table `locales_npc_text`
2594 DROP TABLE IF EXISTS `locales_npc_text`;
2595 CREATE TABLE `locales_npc_text` (
2596   `entry` mediumint(8) unsigned NOT NULL default '0',
2597   `Text0_0_loc1` longtext,
2598   `Text0_0_loc2` longtext,
2599   `Text0_0_loc3` longtext,
2600   `Text0_0_loc4` longtext,
2601   `Text0_0_loc5` longtext,
2602   `Text0_0_loc6` longtext,
2603   `Text0_0_loc7` longtext,
2604   `Text0_0_loc8` longtext,
2605   `Text0_1_loc1` longtext,
2606   `Text0_1_loc2` longtext,
2607   `Text0_1_loc3` longtext,
2608   `Text0_1_loc4` longtext,
2609   `Text0_1_loc5` longtext,
2610   `Text0_1_loc6` longtext,
2611   `Text0_1_loc7` longtext,
2612   `Text0_1_loc8` longtext,
2613   `Text1_0_loc1` longtext,
2614   `Text1_0_loc2` longtext,
2615   `Text1_0_loc3` longtext,
2616   `Text1_0_loc4` longtext,
2617   `Text1_0_loc5` longtext,
2618   `Text1_0_loc6` longtext,
2619   `Text1_0_loc7` longtext,
2620   `Text1_0_loc8` longtext,
2621   `Text1_1_loc1` longtext,
2622   `Text1_1_loc2` longtext,
2623   `Text1_1_loc3` longtext,
2624   `Text1_1_loc4` longtext,
2625   `Text1_1_loc5` longtext,
2626   `Text1_1_loc6` longtext,
2627   `Text1_1_loc7` longtext,
2628   `Text1_1_loc8` longtext,
2629   `Text2_0_loc1` longtext,
2630   `Text2_0_loc2` longtext,
2631   `Text2_0_loc3` longtext,
2632   `Text2_0_loc4` longtext,
2633   `Text2_0_loc5` longtext,
2634   `Text2_0_loc6` longtext,
2635   `Text2_0_loc7` longtext,
2636   `Text2_0_loc8` longtext,
2637   `Text2_1_loc1` longtext,
2638   `Text2_1_loc2` longtext,
2639   `Text2_1_loc3` longtext,
2640   `Text2_1_loc4` longtext,
2641   `Text2_1_loc5` longtext,
2642   `Text2_1_loc6` longtext,
2643   `Text2_1_loc7` longtext,
2644   `Text2_1_loc8` longtext,
2645   `Text3_0_loc1` longtext,
2646   `Text3_0_loc2` longtext,
2647   `Text3_0_loc3` longtext,
2648   `Text3_0_loc4` longtext,
2649   `Text3_0_loc5` longtext,
2650   `Text3_0_loc6` longtext,
2651   `Text3_0_loc7` longtext,
2652   `Text3_0_loc8` longtext,
2653   `Text3_1_loc1` longtext,
2654   `Text3_1_loc2` longtext,
2655   `Text3_1_loc3` longtext,
2656   `Text3_1_loc4` longtext,
2657   `Text3_1_loc5` longtext,
2658   `Text3_1_loc6` longtext,
2659   `Text3_1_loc7` longtext,
2660   `Text3_1_loc8` longtext,
2661   `Text4_0_loc1` longtext,
2662   `Text4_0_loc2` longtext,
2663   `Text4_0_loc3` longtext,
2664   `Text4_0_loc4` longtext,
2665   `Text4_0_loc5` longtext,
2666   `Text4_0_loc6` longtext,
2667   `Text4_0_loc7` longtext,
2668   `Text4_0_loc8` longtext,
2669   `Text4_1_loc1` longtext,
2670   `Text4_1_loc2` longtext,
2671   `Text4_1_loc3` longtext,
2672   `Text4_1_loc4` longtext,
2673   `Text4_1_loc5` longtext,
2674   `Text4_1_loc6` longtext,
2675   `Text4_1_loc7` longtext,
2676   `Text4_1_loc8` longtext,
2677   `Text5_0_loc1` longtext,
2678   `Text5_0_loc2` longtext,
2679   `Text5_0_loc3` longtext,
2680   `Text5_0_loc4` longtext,
2681   `Text5_0_loc5` longtext,
2682   `Text5_0_loc6` longtext,
2683   `Text5_0_loc7` longtext,
2684   `Text5_0_loc8` longtext,
2685   `Text5_1_loc1` longtext,
2686   `Text5_1_loc2` longtext,
2687   `Text5_1_loc3` longtext,
2688   `Text5_1_loc4` longtext,
2689   `Text5_1_loc5` longtext,
2690   `Text5_1_loc6` longtext,
2691   `Text5_1_loc7` longtext,
2692   `Text5_1_loc8` longtext,
2693   `Text6_0_loc1` longtext,
2694   `Text6_0_loc2` longtext,
2695   `Text6_0_loc3` longtext,
2696   `Text6_0_loc4` longtext,
2697   `Text6_0_loc5` longtext,
2698   `Text6_0_loc6` longtext,
2699   `Text6_0_loc7` longtext,
2700   `Text6_0_loc8` longtext,
2701   `Text6_1_loc1` longtext,
2702   `Text6_1_loc2` longtext,
2703   `Text6_1_loc3` longtext,
2704   `Text6_1_loc4` longtext,
2705   `Text6_1_loc5` longtext,
2706   `Text6_1_loc6` longtext,
2707   `Text6_1_loc7` longtext,
2708   `Text6_1_loc8` longtext,
2709   `Text7_0_loc1` longtext,
2710   `Text7_0_loc2` longtext,
2711   `Text7_0_loc3` longtext,
2712   `Text7_0_loc4` longtext,
2713   `Text7_0_loc5` longtext,
2714   `Text7_0_loc6` longtext,
2715   `Text7_0_loc7` longtext,
2716   `Text7_0_loc8` longtext,
2717   `Text7_1_loc1` longtext,
2718   `Text7_1_loc2` longtext,
2719   `Text7_1_loc3` longtext,
2720   `Text7_1_loc4` longtext,
2721   `Text7_1_loc5` longtext,
2722   `Text7_1_loc6` longtext,
2723   `Text7_1_loc7` longtext,
2724   `Text7_1_loc8` longtext,
2725   PRIMARY KEY  (`entry`)
2726 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2729 -- Dumping data for table `locales_npc_text`
2732 LOCK TABLES `locales_npc_text` WRITE;
2733 /*!40000 ALTER TABLE `locales_npc_text` DISABLE KEYS */;
2734 /*!40000 ALTER TABLE `locales_npc_text` ENABLE KEYS */;
2735 UNLOCK TABLES;
2738 -- Table structure for table `locales_page_text`
2741 DROP TABLE IF EXISTS `locales_page_text`;
2742 CREATE TABLE `locales_page_text` (
2743   `entry` mediumint(8) unsigned NOT NULL default '0',
2744   `Text_loc1` longtext,
2745   `Text_loc2` longtext,
2746   `Text_loc3` longtext,
2747   `Text_loc4` longtext,
2748   `Text_loc5` longtext,
2749   `Text_loc6` longtext,
2750   `Text_loc7` longtext,
2751   `Text_loc8` longtext,
2752   PRIMARY KEY  (`entry`)
2753 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2756 -- Dumping data for table `locales_page_text`
2759 LOCK TABLES `locales_page_text` WRITE;
2760 /*!40000 ALTER TABLE `locales_page_text` DISABLE KEYS */;
2761 /*!40000 ALTER TABLE `locales_page_text` ENABLE KEYS */;
2762 UNLOCK TABLES;
2765 -- Table structure for table `locales_points_of_interest`
2768 DROP TABLE IF EXISTS `locales_points_of_interest`;
2769 CREATE TABLE `locales_points_of_interest` (
2770   `entry` mediumint(8) unsigned NOT NULL default '0',
2771   `icon_name_loc1` text,
2772   `icon_name_loc2` text,
2773   `icon_name_loc3` text,
2774   `icon_name_loc4` text,
2775   `icon_name_loc5` text,
2776   `icon_name_loc6` text,
2777   `icon_name_loc7` text,
2778   `icon_name_loc8` text,
2779   PRIMARY KEY  (`entry`)
2780 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2783 -- Dumping data for table `locales_points_of_interest`
2786 LOCK TABLES `locales_points_of_interest` WRITE;
2787 /*!40000 ALTER TABLE `locales_points_of_interest` DISABLE KEYS */;
2788 /*!40000 ALTER TABLE `locales_points_of_interest` ENABLE KEYS */;
2789 UNLOCK TABLES;
2792 -- Table structure for table `locales_quest`
2795 DROP TABLE IF EXISTS `locales_quest`;
2796 CREATE TABLE `locales_quest` (
2797   `entry` mediumint(8) unsigned NOT NULL default '0',
2798   `Title_loc1` text,
2799   `Title_loc2` text,
2800   `Title_loc3` text,
2801   `Title_loc4` text,
2802   `Title_loc5` text,
2803   `Title_loc6` text,
2804   `Title_loc7` text,
2805   `Title_loc8` text,
2806   `Details_loc1` text,
2807   `Details_loc2` text,
2808   `Details_loc3` text,
2809   `Details_loc4` text,
2810   `Details_loc5` text,
2811   `Details_loc6` text,
2812   `Details_loc7` text,
2813   `Details_loc8` text,
2814   `Objectives_loc1` text,
2815   `Objectives_loc2` text,
2816   `Objectives_loc3` text,
2817   `Objectives_loc4` text,
2818   `Objectives_loc5` text,
2819   `Objectives_loc6` text,
2820   `Objectives_loc7` text,
2821   `Objectives_loc8` text,
2822   `OfferRewardText_loc1` text,
2823   `OfferRewardText_loc2` text,
2824   `OfferRewardText_loc3` text,
2825   `OfferRewardText_loc4` text,
2826   `OfferRewardText_loc5` text,
2827   `OfferRewardText_loc6` text,
2828   `OfferRewardText_loc7` text,
2829   `OfferRewardText_loc8` text,
2830   `RequestItemsText_loc1` text,
2831   `RequestItemsText_loc2` text,
2832   `RequestItemsText_loc3` text,
2833   `RequestItemsText_loc4` text,
2834   `RequestItemsText_loc5` text,
2835   `RequestItemsText_loc6` text,
2836   `RequestItemsText_loc7` text,
2837   `RequestItemsText_loc8` text,
2838   `EndText_loc1` text,
2839   `EndText_loc2` text,
2840   `EndText_loc3` text,
2841   `EndText_loc4` text,
2842   `EndText_loc5` text,
2843   `EndText_loc6` text,
2844   `EndText_loc7` text,
2845   `EndText_loc8` text,
2846   `CompletedText_loc1` text,
2847   `CompletedText_loc2` text,
2848   `CompletedText_loc3` text,
2849   `CompletedText_loc4` text,
2850   `CompletedText_loc5` text,
2851   `CompletedText_loc6` text,
2852   `CompletedText_loc7` text,
2853   `CompletedText_loc8` text,
2854   `ObjectiveText1_loc1` text,
2855   `ObjectiveText1_loc2` text,
2856   `ObjectiveText1_loc3` text,
2857   `ObjectiveText1_loc4` text,
2858   `ObjectiveText1_loc5` text,
2859   `ObjectiveText1_loc6` text,
2860   `ObjectiveText1_loc7` text,
2861   `ObjectiveText1_loc8` text,
2862   `ObjectiveText2_loc1` text,
2863   `ObjectiveText2_loc2` text,
2864   `ObjectiveText2_loc3` text,
2865   `ObjectiveText2_loc4` text,
2866   `ObjectiveText2_loc5` text,
2867   `ObjectiveText2_loc6` text,
2868   `ObjectiveText2_loc7` text,
2869   `ObjectiveText2_loc8` text,
2870   `ObjectiveText3_loc1` text,
2871   `ObjectiveText3_loc2` text,
2872   `ObjectiveText3_loc3` text,
2873   `ObjectiveText3_loc4` text,
2874   `ObjectiveText3_loc5` text,
2875   `ObjectiveText3_loc6` text,
2876   `ObjectiveText3_loc7` text,
2877   `ObjectiveText3_loc8` text,
2878   `ObjectiveText4_loc1` text,
2879   `ObjectiveText4_loc2` text,
2880   `ObjectiveText4_loc3` text,
2881   `ObjectiveText4_loc4` text,
2882   `ObjectiveText4_loc5` text,
2883   `ObjectiveText4_loc6` text,
2884   `ObjectiveText4_loc7` text,
2885   `ObjectiveText4_loc8` text,
2886   PRIMARY KEY  (`entry`)
2887 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2890 -- Dumping data for table `locales_quest`
2893 LOCK TABLES `locales_quest` WRITE;
2894 /*!40000 ALTER TABLE `locales_quest` DISABLE KEYS */;
2895 /*!40000 ALTER TABLE `locales_quest` ENABLE KEYS */;
2896 UNLOCK TABLES;
2899 -- Table structure for table `mail_level_reward`
2902 DROP TABLE IF EXISTS `mail_level_reward`;
2903 CREATE TABLE `mail_level_reward` (
2904   `level` mediumint(8) unsigned NOT NULL default '0',
2905   `raceMask` mediumint(8) unsigned NOT NULL default '0',
2906   `mailTemplateId` mediumint(8) unsigned NOT NULL default '0',
2907   `senderEntry`    mediumint(8) unsigned NOT NULL default '0',
2908   PRIMARY KEY  (`level`,`raceMask`)
2909 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Mail System';
2912 -- Dumping data for table `mail_level_reward`
2915 LOCK TABLES `mail_level_reward` WRITE;
2916 /*!40000 ALTER TABLE `mail_level_reward` DISABLE KEYS */;
2917 /*!40000 ALTER TABLE `mail_level_reward` ENABLE KEYS */;
2918 UNLOCK TABLES;
2921 -- Table structure for table `mail_loot_template`
2924 DROP TABLE IF EXISTS `mail_loot_template`;
2925 CREATE TABLE `mail_loot_template` (
2926   `entry` mediumint(8) unsigned NOT NULL default '0',
2927   `item` mediumint(8) unsigned NOT NULL default '0',
2928   `ChanceOrQuestChance` float NOT NULL default '100',
2929   `groupid` tinyint(3) unsigned NOT NULL default '0',
2930   `mincountOrRef` mediumint(9) NOT NULL default '1',
2931   `maxcount` tinyint(3) unsigned NOT NULL default '1',
2932   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
2933   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
2934   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
2935   PRIMARY KEY  (`entry`,`item`)
2936 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
2939 -- Dumping data for table `mail_loot_template`
2942 LOCK TABLES `mail_loot_template` WRITE;
2943 /*!40000 ALTER TABLE `mail_loot_template` DISABLE KEYS */;
2944 /*!40000 ALTER TABLE `mail_loot_template` ENABLE KEYS */;
2945 UNLOCK TABLES;
2948 -- Table structure for table `mangos_string`
2951 DROP TABLE IF EXISTS `mangos_string`;
2952 CREATE TABLE `mangos_string` (
2953   `entry` mediumint(8) unsigned NOT NULL default '0',
2954   `content_default` text NOT NULL,
2955   `content_loc1` text,
2956   `content_loc2` text,
2957   `content_loc3` text,
2958   `content_loc4` text,
2959   `content_loc5` text,
2960   `content_loc6` text,
2961   `content_loc7` text,
2962   `content_loc8` text,
2963   PRIMARY KEY  (`entry`)
2964 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2967 -- Dumping data for table `mangos_string`
2970 LOCK TABLES `mangos_string` WRITE;
2971 /*!40000 ALTER TABLE `mangos_string` DISABLE KEYS */;
2972 INSERT INTO `mangos_string` VALUES
2973 (1,'You should select a character or a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2974 (2,'You should select a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2975 (3,'|cffff0000[System Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2976 (4,'|cffff0000[Event Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2977 (5,'There is no help for that command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2978 (6,'There is no such command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2979 (7,'There is no such subcommand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2980 (8,'Command %s have subcommands:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2981 (9,'Commands available to you:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2982 (10,'Incorrect syntax.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2983 (11,'Your account level is: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2984 (12,'Online players: %u (max: %u) Queued players: %u (max: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2985 (13,'Server uptime: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2986 (14,'Player saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2987 (15,'All players saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2988 (16,'There are the following active GMs on this server:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2989 (17,'There are no GMs currently logged in on this server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2990 (18,'Cannot do that while flying.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2991 (19,'Cannot do that in Battlegrounds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2992 (20,'Target is flying you can\'t do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2993 (21,'%s is flying command failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2994 (22,'You are not mounted so you can\'t dismount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2995 (23,'Cannot do that while fighting.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2996 (24,'You used it recently.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2997 (25,'Password not changed (unknown error)!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2998 (26,'The password was changed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2999 (27,'The new passwords do not match or the old password is wrong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3000 (28,'Your account is now locked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3001 (29,'Your account is now unlocked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3002 (30,', rank ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3003 (31,' [known]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3004 (32,' [learn]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3005 (33,' [passive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3006 (34,' [talent]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3007 (35,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3008 (36,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3009 (37,' (offline)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3010 (38,'on',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3011 (39,'off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3012 (40,'You are: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3013 (41,'visible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3014 (42,'invisible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3015 (43,'done',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3016 (44,'You',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3017 (45,' <unknown> ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3018 (46,'<error>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3019 (47,'<non-existing character>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3020 (48,'UNKNOWN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3021 (49,'You must be at least level %u to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3022 (50,'You must be at least level %u and have item %s to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3023 (51,'Hello! Ready for some training?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3024 (52,'Invaid item count (%u) for item %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3025 (53,'Mail can\'t have more %u item stacks',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3026 (54,'The new passwords do not match',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3027 (55,'Your password can\'t be longer than 16 characters (client limit), password not changed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3028 (56,'Current Message of the day: \r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3029 (57,'Using World DB: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3030 (58,'Using script library: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3031 (59,'Using creature EventAI: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3032 (61,'Username: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3033 (62,'Password: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3034 (100,'Global notify: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3035 (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),
3036 (102,'%s is already being teleported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3037 (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),
3038 (104,'You cannot go to the player\'s instance because you are in a party now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3039 (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),
3040 (106,'You can not go to player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3041 (107,'You can not summon player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3042 (108,'You are summoning %s%s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3043 (109,'You are being summoned by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3044 (110,'You are teleporting %s%s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3045 (111,'You are being teleported by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3046 (112,'Player (%s) does not exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3047 (113,'Appearing at %s\'s location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3048 (114,'%s is appearing to your location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3049 (115,'Incorrect values.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3050 (116,'No character selected.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3051 (117,'%s is not in a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3052 (118,'You changed HP of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3053 (119,'%s changed your HP to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3054 (120,'You changed MANA of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3055 (121,'%s changed your MANA to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3056 (122,'You changed ENERGY of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3057 (123,'%s changed your ENERGY to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3058 (124,'Current energy: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3059 (125,'You changed rage of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3060 (126,'%s changed your rage to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3061 (127,'You changed level of %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3062 (128,'GUID %i, faction is %i, flags is %i, npcflag is %i, DY flag is %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3063 (129,'Wrong faction: %u (not found in factiontemplate.dbc).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3064 (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),
3065 (131,'You changed the spellflatid=%i, val= %i, mark =%i to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3066 (132,'%s changed your spellflatid=%i, val= %i, mark =%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3067 (133,'%s has access to all taxi nodes now (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3068 (134,'%s has no more access to all taxi nodes now (only visited accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3069 (135,'%s has given you access to all taxi nodes (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3070 (136,'%s has removed access to all taxi nodes (only visited still accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3071 (137,'You set all speeds to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3072 (138,'%s set all your speeds to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3073 (139,'You set the speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3074 (140,'%s set your speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3075 (141,'You set the swim speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3076 (142,'%s set your swim speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3077 (143,'You set the backwards run speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3078 (144,'%s set your backwards run speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3079 (145,'You set the fly speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3080 (146,'%s set your fly speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3081 (147,'You set the size %2.2f of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3082 (148,'%s set your size to %2.2f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3083 (149,'There is no such mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3084 (150,'You give a mount to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3085 (151,'%s gave you a mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3086 (152,'USER1: %i, ADD: %i, DIF: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3087 (153,'You take all copper of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3088 (154,'%s took you all of your copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3089 (155,'You take %i copper from %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3090 (156,'%s took %i copper from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3091 (157,'You give %i copper to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3092 (158,'%s gave you %i copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3093 (159,'You hear sound %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3094 (160,'USER2: %i, ADD: %i, RESULT: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3095 (161,'Removed bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3096 (162,'Set bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3097 (163,'Teleport location table is empty!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3098 (164,'Teleport location not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3099 (165,'Requires search parameter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3100 (166,'There are no teleport locations matching your request.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3101 (168,'Locations found are:\n %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3102 (169,'Mail sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3103 (170,'You try to hear sound %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3104 (171,'You can\'t teleport self to self!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3105 (172,'server console command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3106 (173,'You changed runic power of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3107 (174,'%s changed your runic power to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3108 (175,'Liquid level: %f, ground: %f, type: %d, status: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3109 (200,'No selection.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3110 (201,'Object GUID is: lowpart %u highpart %X',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3111 (202,'The name was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3112 (203,'Error, name can only contain characters A-Z and a-z.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3113 (204,'The subname was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3114 (205,'Not yet implemented',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3115 (206,'Item \'%i\' \'%s\' added to list with maxcount \'%i\' and incrtime \'%i\' and extendedcost \'%i\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3116 (207,'Item \'%i\' not found in database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3117 (208,'Item \'%i\' \'%s\' deleted from vendor list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3118 (209,'Item \'%i\' not found in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3119 (210,'Item \'%i\' (with extended cost %u) already in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3120 (211,'Spells of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3121 (212,'Spells of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3122 (213,'Talents of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3123 (214,'Talents of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3124 (215,'Your spells have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3125 (216,'Your talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3126 (217,'Unknown case \'%s\' for .resetall command. Type full correct case name.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3127 (218,'Spells will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3128 (219,'Talents will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3129 (220,'Creature (GUID: %u) No waypoint found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3130 (221,'Creature (GUID: %u) Last waypoint not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3131 (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),
3132 (223,'Creature (GUID: %u) No waypoints found - This is a MaNGOS db problem (single float).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3133 (224,'Selected creature is ignored - provided GUID is used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3134 (225,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3135 (226,'You must select a visual waypoint.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3136 (227,'No visual waypoints found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3137 (228,'Could not create visual waypoint with creatureID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3138 (229,'All visual waypoints removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3139 (230,'Could not create waypoint-creature with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3140 (231,'No GUID provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3141 (232,'No waypoint number provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3142 (233,'Argument required for \'%s\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3143 (234,'Waypoint %i added to GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3144 (235,'Waypoint %d added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3145 (236,'Waypoint changed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3146 (237,'Waypoint %s modified.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3147 (238,'WP export successfull.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3148 (239,'No waypoints found inside the database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3149 (240,'File imported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3150 (241,'Waypoint removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3151 (242,'Warning: Could not delete WP from the world with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3152 (243,'This happens if the waypoint is too far away from your char.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3153 (244,'The WP is deleted from the database, but not from the world here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3154 (245,'They will disappear after a server restart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3155 (246,'Waypoint %d: Info for creature: %s, GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3156 (247,'Waittime: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3157 (248,'Model %d: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3158 (249,'Emote: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3159 (250,'Spell: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3160 (251,'Text%d (ID: %i): %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3161 (252,'AIScript: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3162 (253,'Forced rename for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3163 (254,'Forced rename for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3164 (255,'Waypoint-Creature (GUID: %u) Not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3165 (256,'Could not find NPC...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3166 (257,'Creature movement type set to \'%s\', waypoints removed (if any).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3167 (258,'Creature movement type set to \'%s\', waypoints were not removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3168 (259,'Incorrect value, use on or off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3169 (260,'Value saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3170 (261,'Value saved, you may need to rejoin or clean your client cache.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3171 (262,'Areatrigger ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3172 (263,'Target map or coordinates is invalid (X: %f Y: %f MapId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3173 (264,'Zone coordinates is invalid (X: %f Y: %f AreaId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3174 (265,'Zone %u (%s) is part of instanceable map %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3175 (266,'Nothing found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3176 (267,'Object not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3177 (268,'Creature not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3178 (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),
3179 (270,'Creature Removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3180 (271,'Creature moved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3181 (272,'Creature (GUID:%u) must be on the same map as player!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3182 (273,'Game Object (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3183 (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),
3184 (275,'Game Object (GUID: %u) removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3185 (276,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) turned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3186 (277,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) moved',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3187 (278,'You must select a vendor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3188 (279,'You must send id for item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3189 (280,'Vendor has too many items (max 128)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3190 (281,'You can\'t kick self, logout instead',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3191 (282,'Player %s kicked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3192 (284,'Accepting Whisper: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3193 (285,'Accepting Whisper: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3194 (286,'Accepting Whisper: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3195 (287,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3196 (288,'Tickets count: %i show new tickets: %s\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3197 (289,'New ticket from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3198 (290,'Ticket of %s (Last updated: %s):\n%s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3199 (291,'New ticket show: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3200 (292,'New ticket show: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3201 (293,'Ticket %i doesn\'t exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3202 (294,'All tickets deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3203 (295,'Character %s ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3204 (296,'Ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3205 (297,'Spawn distance changed to: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3206 (298,'Spawn time changed to: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3207 (299,'The honor of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3208 (300,'Your chat has been disabled for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3209 (301,'You have disabled %s\'s chat for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3210 (302,'Player\'s chat is already enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3211 (303,'Your chat has been enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3212 (304,'You have enabled %s\'s chat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3213 (305, 'Faction %s (%u) reputation of %s was set to %5d!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3214 (306, 'The arena points of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3215 (307, 'No faction found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3216 (308, 'Faction %i unknown!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3217 (309, 'Invalid parameter %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3218 (310, 'delta must be between 0 and %d (inclusive)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3219 (311, '%d - |cffffffff|Hfaction:%d|h[%s]|h|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3220 (312, ' [visible]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3221 (313, ' [at war]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3222 (314, ' [peace forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3223 (315, ' [hidden]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3224 (316, ' [invisible forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3225 (317, ' [inactive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3226 (318, 'Hated',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3227 (319, 'Hostile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3228 (320, 'Unfriendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3229 (321, 'Neutral',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3230 (322, 'Friendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3231 (323, 'Honored',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3232 (324, 'Revered',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3233 (325, 'Exalted',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3234 (326, 'Faction %s (%u) can\'not have reputation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3235 (327, ' [no reputation]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3236 (328,'Characters at account %s (Id: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3237 (329,'  %s (GUID %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3238 (330,'No players found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3239 (331,'Extended item cost %u not exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3240 (332,'GM mode is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3241 (333,'GM mode is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3242 (334,'GM Chat Badge is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3243 (335,'GM Chat Badge is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3244 (336,'You repair all %s''s items.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3245 (337,'All your items repaired by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3246 (338,'You set waterwalk mode %s for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3247 (339,'Your waterwalk mode %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3248 (340,'%s is now following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3249 (341,'%s is not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3250 (342,'%s is now not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3251 (343,'Creature (Entry: %u) cannot be tamed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3252 (344,'You already have pet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3253 (345,'Forced customize for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3254 (346,'Forced customize for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3255 (347,'TaxiNode ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3256 (348,'Game Object (Entry: %u) have invalid data and can\'t be spawned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3257 (349,'%d (idx:%d) - |cffffffff|Htitle:%d|h[%s %s]|h|r %s %s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3258 (350,'%d (idx:%d) - [%s %s] %s %s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3259 (351,'No titles found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3260 (352,'Invalid title id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3261 (353,'Title %u (%s) added to known titles list for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3262 (354,'Title %u (%s) removed from known titles list for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3263 (355,'Title %u (%s) set as current selected title for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3264 (356,'Current selected title for player %s reset as not known now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3265 (400,'|cffff0000[System Message]:|rScripts reloaded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3266 (401,'You change security level of account %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3267 (402,'%s changed your security level to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3268 (403,'You have low security level for this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3269 (404,'Creature movement disabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3270 (405,'Creature movement enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3271 (406,'Weather can\'t be changed for this zone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3272 (407,'Weather system disabled at server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3273 (408,'%s is banned for %s. Reason: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3274 (409,'%s is banned permanently for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3275 (410,'%s %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3276 (411,'%s unbanned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3277 (412,'There was an error removing the ban on %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3278 (413,'Account not exist: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3279 (414,'There is no such character.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3280 (415,'There is no such IP in banlist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3281 (416,'Account %s has never been banned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3282 (417,'Ban history for account %s:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3283 (418,'Ban Date: %s Bantime: %s Still active: %s  Reason: %s Set by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3284 (419,'Inf.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3285 (420,'Never',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3286 (421,'Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3287 (422,'No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3288 (423,'IP: %s\nBan Date: %s\nUnban Date: %s\nRemaining: %s\nReason: %s\nSet by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3289 (424,'There is no matching IPban.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3290 (425,'There is no matching account.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3291 (426,'There is no banned account owning a character matching this part.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3292 (427,'The following IPs match your pattern:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3293 (428,'The following accounts match your query:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3294 (429,'You learned many spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3295 (430,'You learned all spells for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3296 (431,'You learned all talents for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3297 (432,'You learned all languages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3298 (433,'You learned all craft skills and recipes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3299 (434,'Could not find \'%s\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3300 (435,'Invalid item id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3301 (436,'No items found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3302 (437,'Invalid gameobject id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3303 (438,'Found items %u: %u ( inventory %u mail %u auction %u guild %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3304 (439,'Found gameobjects %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3305 (440,'Invalid creature id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3306 (441,'Found creatures %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3307 (442,'No area found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3308 (443,'No item sets found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3309 (444,'No skills found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3310 (445,'No spells found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3311 (446,'No quests found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3312 (447,'No creatures found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3313 (448,'No gameobjects found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3314 (449,'Graveyard #%u doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3315 (450,'Graveyard #%u already linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3316 (451,'Graveyard #%u linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3317 (452,'Graveyard #%u can\'t be linked to subzone or not existed zone #%u (internal error).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3318 (454,'No faction in Graveyard with id= #%u , fix your DB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3319 (455,'invalid team, please fix database',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3320 (456,'any',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3321 (457,'alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3322 (458,'horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3323 (459,'Graveyard #%u (faction: %s) is nearest from linked to zone #%u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3324 (460,'Zone #%u doesn\'t have linked graveyards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3325 (461,'Zone #%u doesn\'t have linked graveyards for faction: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3326 (462,'Teleport location already exists!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3327 (463,'Teleport location added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3328 (464,'Teleport location NOT added: database error.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3329 (465,'Teleport location deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3330 (466,'No taxinodes found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3331 (467,'Target unit has %d auras:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3332 (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),
3333 (469,'Target unit has %d auras of type %d:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3334 (470,'id: %d eff: %d name: %s%s%s caster: %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3335 (471,'Quest %u not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3336 (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),
3337 (473,'Quest removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3338 (474,' [rewarded]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3339 (475,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3340 (476,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3341 (477,'%s\'s Fly Mode %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3342 (478,'Opcode %u sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3343 (479,'Character loaded successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3344 (480,'Failed to load the character!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3345 (481,'Character dumped successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3346 (482,'Character dump failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3347 (483,'Spell %u broken and not allowed to cast or learn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3348 (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),
3349 (485,'Player %s must have skill %u (%s) before using this command.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3350 (486,'Invalid skill id (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3351 (487,'You learned default GM spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3352 (488,'You already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3353 (489,'Target(%s) already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3354 (490,'%s doesn\'t know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3355 (491,'You already forgot that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3356 (492,'All spell cooldowns removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3357 (493,'Spell %u cooldown removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3358 (494,'Command : Additem, itemId = %i, amount = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3359 (495,'Command : Additemset, itemsetId = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3360 (496,'Removed itemID = %i, amount = %i from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3361 (497,'Cannot create item \'%i\' (amount: %i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3362 (498,'You need to provide a guild name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3363 (499,'Player not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3364 (500,'Player already has a guild!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3365 (501,'Guild not created! (already exists?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3366 (502,'No items from itemset \'%u\' found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3367 (503,'The distance is: (3D) %f (2D) %f yards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3368 (504,'Item \'%i\' \'%s\' Item Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3369 (505,'Item \'%i\' doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3370 (506,'Item \'%i\' \'%s\' Added to Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3371 (507,'Item save failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3372 (508,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3373 (509,'%d - sender: %s (guid: %u account: %u ) receiver: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3374 (510,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3375 (511,'Wrong link type!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3376 (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),
3377 (513,'%d - |cffffffff|Hquest:%d:%d|h[%s]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3378 (514,'%d - |cffffffff|Hcreature_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3379 (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),
3380 (516,'%d - |cffffffff|Hgameobject_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3381 (517,'%d, Entry %d - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3382 (518,'%d - |cffffffff|Hitemset:%d|h[%s %s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3383 (519,'|cffffffff|Htele:%s|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3384 (520,'%d - |cffffffff|Hspell:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3385 (521,'%d - |cffffffff|Hskill:%d|h[%s %s]|h|r %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3386 (522,'Game Object (Entry: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3387 (523,'>> Game Object %s (GUID: %u) at %f %f %f. Orientation %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3388 (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),
3389 (525,'>> Add Game Object \'%i\' (%s) (GUID: %i) added at \'%f %f %f\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3390 (526,'%s (lowguid: %u) movement generators stack:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3391 (527,'   Idle',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3392 (528,'   Random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3393 (529,'   Waypoint',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3394 (530,'   Animal random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3395 (531,'   Confused',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3396 (532,'   Targeted to player %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3397 (533,'   Targeted to creature %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3398 (534,'   Targeted to <NULL>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3399 (535,'   Home movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3400 (536,'   Home movement used for player?!?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3401 (537,'   Taxi flight',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3402 (538,'   Unknown movement generator (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3403 (539,'Player selected NPC\nGUID: %u.\nFaction: %u.\nnpcFlags: %u.\nEntry: %u.\nDisplayID: %u (Native: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3404 (540,'Level: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3405 (541,'Health (base): %u. (max): %u. (current): %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3406 (542,'Unit Flags: %u.\nDynamic Flags: %u.\nFaction Template: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3407 (543,'Loot: %u Pickpocket: %u Skinning: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3408 (544,'Position: %f %f %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3409 (545,'*** Is a vendor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3410 (546,'*** Is a trainer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3411 (547,'InstanceID: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3412 (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),
3413 (549,'Played time: %s Level: %u Money: %ug%us%uc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3414 (550,'Command .pinfo doesn\'t support \'rep\' option for offline players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3415 (551,'%s has explored all zones now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3416 (552,'%s has no more explored zones.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3417 (553,'%s has explored all zones for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3418 (554,'%s has hidden all zones from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3419 (555,'Hover enabled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3420 (556,'Hover disabled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3421 (557,'%s level up you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3422 (558,'%s level down you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3423 (559,'%s reset your level progress.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3424 (560,'The area has been set as explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3425 (561,'The area has been set as not explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3426 (562,'GUID=%i \'s updateIndex: %i, value:  %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3427 (563,'You change GUID=%i \'s UpdateIndex: %i value to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3428 (564,'The value index %u is too big to %u(count: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3429 (565,'Set %u uint32 Value:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3430 (566,'You Set %u Field:%u to uint32 Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3431 (567,'Set %u float Value:[OPCODE]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3432 (568,'You Set %u Field:%i to float Value: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3433 (569,'Get %u uint32 Value:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3434 (570,'The uint32 value of %u in %u is: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3435 (571,'Get %u float Value:[OPCODE]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3436 (572,'The float of %u value in %u is: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3437 (575,'.Mod32Value:[OPCODE]:%u [VALUE]:%i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3438 (576,'You modified the value of Field:%u to Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3439 (577,'You are now invisible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3440 (578,'You are now visible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3441 (579,'Selected player or creature not have victim.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3442 (580,'You learned all default spells for race/class and completed quests rewarded spells.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3443 (581,'Found near gameobjects (distance %f): %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3444 (582,'SpawnTime: Full:%s Remain:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3445 (583,'%d - |cffffffff|Hgameevent:%d|h[%s]|h|r%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3446 (584,'No event found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3447 (585,'Event not exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3448 (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),
3449 (587,'Event %u already active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3450 (588,'Event %u not active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3451 (589,'   Point movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3452 (590,'   Fear movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3453 (591,'   Distract movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3454 (592,'You have learned all spells in craft: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3455 (593,'Currently Banned Accounts:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3456 (594,'|    Account    |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3457 (595,'Currently Banned IPs:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3458 (596,'|      IP       |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3459 (597,'Current gamemasters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3460 (598,'|    Account    |  GM  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3461 (599,'No gamemasters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3462 (600,'The Alliance wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3463 (601,'The Horde wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3464 (602,'The battle for Warsong Gulch begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3465 (603,'The battle for Warsong Gulch begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3466 (604,'Let the battle for Warsong Gulch begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3467 (605,'$n captured the Horde flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3468 (606,'$n captured the Alliance flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3469 (607,'The Horde flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3470 (608,'The Alliance Flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3471 (609,'The Alliance Flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3472 (610,'The Horde flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3473 (611,'The Horde flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3474 (612,'The Alliance Flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3475 (613,'The flags are now placed at their bases.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3476 (614,'The Alliance flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3477 (615,'The Horde flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3478 (636,'The battle begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3479 (637,'The battle begins in 30 seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3480 (638,'The battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3481 (650,'Alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3482 (651,'Horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3483 (652,'stables',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3484 (653,'blacksmith',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3485 (654,'farm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3486 (655,'lumber mill',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3487 (656,'mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3488 (657,'The %s has taken the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3489 (658,'$n has defended the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3490 (659,'$n has assaulted the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3491 (660,'$n claims the %s! If left unchallenged, the %s will control it in 1 minute!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3492 (661,'The battle for Arathi Basin begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3493 (662,'The battle for Arathi Basin begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3494 (663,'The battle for Arathi Basin has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3495 (664,'The Alliance has gathered $1776W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3496 (665,'The Horde has gathered $1777W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3497 (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),
3498 (667,'The Alliance has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3499 (668,'The Horde has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3500 (669,'The Alliance has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3501 (670,'The Horde has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3502 (671,'The Alliance has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3503 (672,'The Horde has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3504 (673,'The Alliance has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3505 (674,'The Horde has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3506 (675,'The Alliance has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3507 (676,'The Horde has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3508 (677,'The Alliance has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3509 (678,'The Horde has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3510 (679,'The Alliance has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3511 (680,'The Horde has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3512 (681,'The Alliance has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3513 (682,'The Horde has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3514 (683,'%s has taken the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3515 (684,'The Alliance have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3516 (685,'The Horde have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3517 (686,'The flag has been dropped.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3518 (687,'The flag has been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3519 (700,'You must be level %u to form an arena team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3520 (701,'One minute until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3521 (702,'Thirty seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3522 (703,'Fifteen seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3523 (704,'The Arena battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3524 (705,'You must wait %s before speaking again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3525 (706,'This item(s) have problems with equipping/storing in inventory.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3526 (707,'%s wishes to not be disturbed and cannot receive whisper messages: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3527 (708,'%s is Away from Keyboard: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3528 (709,'Do not Disturb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3529 (710,'Away from Keyboard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3530 (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),
3531 (712,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] A: %u/%u, H: %u/%u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3532 (713,'You must be level %u to join an arena team!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3533 (715,'You don\'t meet Battleground level requirements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3534 (717,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] Started!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3535 (718,'|cffff0000[Arena Queue Announcer]:|r All Arenas -- Joined : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3536 (719,'|cffff0000[Arena Queue Announcer]:|r All Arenas -- Exited : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3537 (720,'Your group is too large for this battleground. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3538 (721,'Your group is too large for this arena. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3539 (722,'Your group has members not in your arena team. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3540 (723,'Your group does not have enough players to join this match.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3541 (724,'The Gold Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3542 (725,'The Green Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3543 (727,'Your group has an offline member. Please remove him before joining.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3544 (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),
3545 (729,'Your group has players from different battleground brakets. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3546 (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),
3547 (731,'Someone in your party is Deserter. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3548 (732,'Someone in your party is already in three battleground queues. You cannot join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3549 (733,'You cannot teleport to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3550 (734,'You cannot summon players to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3551 (735,'You must be in GM mode to teleport to a player in a battleground.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3552 (736,'You cannot teleport to a battleground from another battleground. Please leave the current battleground first.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3553 (737,'Arenas are set to 1v1 for debugging. So, don\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3554 (738,'Arenas are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3555 (739,'Battlegrounds are set to 1v0 for debugging.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3556 (740,'Battlegrounds are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3557 (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),
3558 (742,'Distributing arena points to players...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3559 (743,'Finished setting arena points for online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3560 (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),
3561 (745,'Modification done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3562 (746,'Done flushing Arena points.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3563 (750,'Not enough players. This game will close in %u mins.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3564 (751,'Not enough players. This game will close in %u seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3565 (752,'Only the Alliance can use that portal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3566 (753,'Only the Horde can use that portal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3567 (759,'%s was destroyed by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3568 (760,'The %s is under attack! If left unchecked, the %s will destroy it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3569 (761,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3570 (762,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), -- WTF? why 3 same strings?
3571 (763,'The %s was taken by the %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3572 (764,'The %s is under attack! If left unchecked, the %s will capture it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3573 (765,'The %s has taken the %s! Its supplies will now be used for reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3574 (766,'Irondeep Mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3575 (767,'Coldtooth Mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3576 (768,'Stormpike Aid Station',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3577 (769,'Dun Baldar South Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3578 (770,'Dun Baldar North Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3579 (771,'Stormpike Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3580 (772,'Icewing Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3581 (773,'Stonehearth Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3582 (774,'Stonehearth Bunker',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3583 (775,'Snowfall Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3584 (776,'Iceblood Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3585 (777,'Iceblood Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3586 (778,'Tower Point',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3587 (779,'Frostwolf Graveyard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3588 (780,'East Frostwolf Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3589 (781,'West Frostwolf Tower',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3590 (782,'Frostwolf Relief Hut',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3591 (784,'1 minute until the battle for Alterac Valley begins.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3592 (785,'30 seconds until the battle for Alterac Valley begins. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3593 (786,'The battle for Alterac Valley has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3594 (787,'The Alliance Team is running out of reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3595 (788,'The Horde Team is running out of reinforcements!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3596 (789,'The Frostwolf General is Dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3597 (790,'The Stormpike General is Dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3598 (801,'You do not have enough gold',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3599 (802,'You do not have enough free slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3600 (803,'Your partner does not have enough free bag slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3601 (804,'You do not have permission to perform that function',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3602 (805,'Unknown language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3603 (806,'You don\'t know that language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3604 (807,'Please provide character name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3605 (808,'Player %s not found or offline',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3606 (809,'Account for character %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3607 (810,'|Hplayer:$N|h[$N]|h has earned the achievement $a!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3608 (811,'Guild Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3609 (812,'Officer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3610 (813,'Veteran',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3611 (814,'Member',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3612 (815,'Initiate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3613 (1000,'Exiting daemon...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3614 (1001,'Account deleted: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3615 (1002,'Account %s NOT deleted (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3616 (1003,'Account %s NOT deleted (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3617 (1004,'Account created: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3618 (1005,'Account name can\'t be longer than 16 characters (client limit), account not created!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3619 (1006,'Account with this name already exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3620 (1007,'Account %s NOT created (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3621 (1008,'Account %s NOT created (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3622 (1009,'Player %s (Guid: %u) Account %s (Id: %u) deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3623 (1010,'| ID         |    Account    |       Character      |       IP        | GM | Expansion |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3624 (1012,'========================================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3625 (1013,'| %10u |%15s| %20s | %15s |%4d| %9d |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3626 (1014,'No online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3627 (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),
3628 (1016, '| GUID       | Name                 | Account                      | Delete Date         |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3629 (1017, '| %10u | %20s | %15s (%10u) | %19s |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3630 (1018, '==========================================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3631 (1019, 'No characters found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3632 (1020, 'Restoring the following characters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3633 (1021, 'Deleting the following characters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3634 (1022, 'ERROR: You can only assign a new name if you have only selected a single character!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3635 (1023, 'Character \'%s\' (GUID: %u Account %u) can\'t be restored: account not exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3636 (1024, 'Character \'%s\' (GUID: %u Account %u) can\'t be restored: account character list full!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3637 (1025, 'Character \'%s\' (GUID: %u Account %u) can\'t be restored: new name already used!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3638 (1026, 'GUID: %u Name: %s Account: %s (%u) Date: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3639 (1027, 'Log filters state:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3640 (1028, 'All log filters set to: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3641 (1100,'Account %s (Id: %u) have up to %u expansion allowed now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3642 (1101,'Message of the day changed to:\r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3643 (1102,'Message sent to %s: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3644 (1103,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3645 (1104,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3646 (1105,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3647 (1106,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3648 (1107,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3649 (1108,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3650 (1109,'%d - %s %s %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3651 (1110,'%d - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3652 (1111,'%d - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3653 (1112,'Failed to open file: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3654 (1113,'Account %s (%u) have max amount allowed characters (client limit)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3655 (1114,'Dump file have broken data!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3656 (1115,'Invalid character name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3657 (1116,'Invalid character guid!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3658 (1117,'Character guid %u in use!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3659 (1118,'%d - guild: %s (guid: %u) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3660 (1119,'You must use male or female as gender.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3661 (1120,'You change gender of %s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3662 (1121,'Your gender changed to %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3663 (1122,'(%u/%u +perm %u +temp %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3664 (1123,'Not pet found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3665 (1124,'Wrong pet type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3666 (1125,'Your pet learned all talents',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3667 (1126,'Your pet talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3668 (1127,'Talents of %s\'s pet reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3669 (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),
3670 (1129,'%d - %s %s (Map:%u X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3671 (1130,'event started %u "%s"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3672 (1131,'event stopped %u "%s"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3673 (1132,'   Follow player %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3674 (1133,'   Follow creature %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3675 (1134,'   Follow <NULL>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3676 (1135,'List known talents:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3677 (1136,'   (Found talents: %u used talent points: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3678 (1137,'%d - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3679 (1138, '=================================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3680 (1139, '| GUID       | Name                 | Race            | Class           | Level |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3681 (1140, '| %10u | %20s | %15s | %15s | %5u |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3682 (1141, '%u - |cffffffff|Hplayer:%s|h[%s]|h|r %s %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3683 (1142,'%u - %s (Online:%s IP:%s GM:%u Expansion:%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3684 (1200,'You try to view cinemitic %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3685 (1201,'You try to view movie %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3686 /*!40000 ALTER TABLE `mangos_string` ENABLE KEYS */;
3687 UNLOCK TABLES;
3690 -- Table structure for table `milling_loot_template`
3693 DROP TABLE IF EXISTS `milling_loot_template`;
3694 CREATE TABLE `milling_loot_template` (
3695   `entry` mediumint(8) unsigned NOT NULL default '0',
3696   `item` mediumint(8) unsigned NOT NULL default '0',
3697   `ChanceOrQuestChance` float NOT NULL default '100',
3698   `groupid` tinyint(3) unsigned NOT NULL default '0',
3699   `mincountOrRef` mediumint(9) NOT NULL default '1',
3700   `maxcount` tinyint(3) unsigned NOT NULL default '1',
3701   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
3702   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
3703   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
3704   PRIMARY KEY  (`entry`,`item`)
3705 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
3708 -- Dumping data for table `milling_loot_template`
3711 LOCK TABLES `milling_loot_template` WRITE;
3712 /*!40000 ALTER TABLE `milling_loot_template` DISABLE KEYS */;
3713 /*!40000 ALTER TABLE `milling_loot_template` ENABLE KEYS */;
3714 UNLOCK TABLES;
3717 -- Table structure for table `npc_gossip`
3720 DROP TABLE IF EXISTS `npc_gossip`;
3721 CREATE TABLE `npc_gossip` (
3722   `npc_guid` int(10) unsigned NOT NULL default '0',
3723   `textid` mediumint(8) unsigned NOT NULL default '0',
3724   PRIMARY KEY  (`npc_guid`)
3725 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3728 -- Dumping data for table `npc_gossip`
3731 LOCK TABLES `npc_gossip` WRITE;
3732 /*!40000 ALTER TABLE `npc_gossip` DISABLE KEYS */;
3733 /*!40000 ALTER TABLE `npc_gossip` ENABLE KEYS */;
3734 UNLOCK TABLES;
3737 -- Table structure for table `npc_spellclick_spells`
3740 DROP TABLE IF EXISTS `npc_spellclick_spells`;
3741 CREATE TABLE `npc_spellclick_spells` (
3742     `npc_entry`   int unsigned NOT NULL COMMENT 'reference to creature_template',
3743     `spell_id`    int unsigned NOT NULL COMMENT 'spell which should be casted ',
3744     `quest_start`        mediumint(8) unsigned NOT NULL COMMENT 'reference to quest_template',
3745     `quest_start_active` tinyint(1) unsigned NOT NULL default '0',
3746     `quest_end`          mediumint(8) unsigned NOT NULL default '0',
3747     `cast_flags`  tinyint unsigned NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit'
3748 ) ENGINE = MYISAM DEFAULT CHARSET=utf8;
3751 -- Dumping data for table `npc_spellclick_spells`
3754 LOCK TABLES `npc_spellclick_spells` WRITE;
3755 /*!40000 ALTER TABLE `npc_spellclick_spells` DISABLE KEYS */;
3756 /*!40000 ALTER TABLE `npc_spellclick_spells` ENABLE KEYS */;
3757 UNLOCK TABLES;
3760 -- Table structure for table `npc_text`
3763 DROP TABLE IF EXISTS `npc_text`;
3764 CREATE TABLE `npc_text` (
3765   `ID` mediumint(8) unsigned NOT NULL default '0',
3766   `text0_0` longtext,
3767   `text0_1` longtext,
3768   `lang0` tinyint(3) unsigned NOT NULL default '0',
3769   `prob0` float NOT NULL default '0',
3770   `em0_0` smallint(5) unsigned NOT NULL default '0',
3771   `em0_1` smallint(5) unsigned NOT NULL default '0',
3772   `em0_2` smallint(5) unsigned NOT NULL default '0',
3773   `em0_3` smallint(5) unsigned NOT NULL default '0',
3774   `em0_4` smallint(5) unsigned NOT NULL default '0',
3775   `em0_5` smallint(5) unsigned NOT NULL default '0',
3776   `text1_0` longtext,
3777   `text1_1` longtext,
3778   `lang1` tinyint(3) unsigned NOT NULL default '0',
3779   `prob1` float NOT NULL default '0',
3780   `em1_0` smallint(5) unsigned NOT NULL default '0',
3781   `em1_1` smallint(5) unsigned NOT NULL default '0',
3782   `em1_2` smallint(5) unsigned NOT NULL default '0',
3783   `em1_3` smallint(5) unsigned NOT NULL default '0',
3784   `em1_4` smallint(5) unsigned NOT NULL default '0',
3785   `em1_5` smallint(5) unsigned NOT NULL default '0',
3786   `text2_0` longtext,
3787   `text2_1` longtext,
3788   `lang2` tinyint(3) unsigned NOT NULL default '0',
3789   `prob2` float NOT NULL default '0',
3790   `em2_0` smallint(5) unsigned NOT NULL default '0',
3791   `em2_1` smallint(5) unsigned NOT NULL default '0',
3792   `em2_2` smallint(5) unsigned NOT NULL default '0',
3793   `em2_3` smallint(5) unsigned NOT NULL default '0',
3794   `em2_4` smallint(5) unsigned NOT NULL default '0',
3795   `em2_5` smallint(5) unsigned NOT NULL default '0',
3796   `text3_0` longtext,
3797   `text3_1` longtext,
3798   `lang3` tinyint(3) unsigned NOT NULL default '0',
3799   `prob3` float NOT NULL default '0',
3800   `em3_0` smallint(5) unsigned NOT NULL default '0',
3801   `em3_1` smallint(5) unsigned NOT NULL default '0',
3802   `em3_2` smallint(5) unsigned NOT NULL default '0',
3803   `em3_3` smallint(5) unsigned NOT NULL default '0',
3804   `em3_4` smallint(5) unsigned NOT NULL default '0',
3805   `em3_5` smallint(5) unsigned NOT NULL default '0',
3806   `text4_0` longtext,
3807   `text4_1` longtext,
3808   `lang4` tinyint(3) unsigned NOT NULL default '0',
3809   `prob4` float NOT NULL default '0',
3810   `em4_0` smallint(5) unsigned NOT NULL default '0',
3811   `em4_1` smallint(5) unsigned NOT NULL default '0',
3812   `em4_2` smallint(5) unsigned NOT NULL default '0',
3813   `em4_3` smallint(5) unsigned NOT NULL default '0',
3814   `em4_4` smallint(5) unsigned NOT NULL default '0',
3815   `em4_5` smallint(5) unsigned NOT NULL default '0',
3816   `text5_0` longtext,
3817   `text5_1` longtext,
3818   `lang5` tinyint(3) unsigned NOT NULL default '0',
3819   `prob5` float NOT NULL default '0',
3820   `em5_0` smallint(5) unsigned NOT NULL default '0',
3821   `em5_1` smallint(5) unsigned NOT NULL default '0',
3822   `em5_2` smallint(5) unsigned NOT NULL default '0',
3823   `em5_3` smallint(5) unsigned NOT NULL default '0',
3824   `em5_4` smallint(5) unsigned NOT NULL default '0',
3825   `em5_5` smallint(5) unsigned NOT NULL default '0',
3826   `text6_0` longtext,
3827   `text6_1` longtext,
3828   `lang6` tinyint(3) unsigned NOT NULL default '0',
3829   `prob6` float NOT NULL default '0',
3830   `em6_0` smallint(5) unsigned NOT NULL default '0',
3831   `em6_1` smallint(5) unsigned NOT NULL default '0',
3832   `em6_2` smallint(5) unsigned NOT NULL default '0',
3833   `em6_3` smallint(5) unsigned NOT NULL default '0',
3834   `em6_4` smallint(5) unsigned NOT NULL default '0',
3835   `em6_5` smallint(5) unsigned NOT NULL default '0',
3836   `text7_0` longtext,
3837   `text7_1` longtext,
3838   `lang7` tinyint(3) unsigned NOT NULL default '0',
3839   `prob7` float NOT NULL default '0',
3840   `em7_0` smallint(5) unsigned NOT NULL default '0',
3841   `em7_1` smallint(5) unsigned NOT NULL default '0',
3842   `em7_2` smallint(5) unsigned NOT NULL default '0',
3843   `em7_3` smallint(5) unsigned NOT NULL default '0',
3844   `em7_4` smallint(5) unsigned NOT NULL default '0',
3845   `em7_5` smallint(5) unsigned NOT NULL default '0',
3846   PRIMARY KEY  (`ID`)
3847 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3850 -- Dumping data for table `npc_text`
3853 LOCK TABLES `npc_text` WRITE;
3854 /*!40000 ALTER TABLE `npc_text` DISABLE KEYS */;
3855 /*!40000 ALTER TABLE `npc_text` ENABLE KEYS */;
3856 UNLOCK TABLES;
3859 -- Table structure for table `npc_trainer`
3862 DROP TABLE IF EXISTS `npc_trainer`;
3863 CREATE TABLE `npc_trainer` (
3864   `entry` mediumint(8) unsigned NOT NULL default '0',
3865   `spell` mediumint(8) unsigned NOT NULL default '0',
3866   `spellcost` int(10) unsigned NOT NULL default '0',
3867   `reqskill` smallint(5) unsigned NOT NULL default '0',
3868   `reqskillvalue` smallint(5) unsigned NOT NULL default '0',
3869   `reqlevel` tinyint(3) unsigned NOT NULL default '0',
3870   UNIQUE KEY `entry_spell` (`entry`,`spell`)
3871 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3874 -- Dumping data for table `npc_trainer`
3877 LOCK TABLES `npc_trainer` WRITE;
3878 /*!40000 ALTER TABLE `npc_trainer` DISABLE KEYS */;
3879 /*!40000 ALTER TABLE `npc_trainer` ENABLE KEYS */;
3880 UNLOCK TABLES;
3883 -- Table structure for table `npc_vendor`
3886 DROP TABLE IF EXISTS `npc_vendor`;
3887 CREATE TABLE `npc_vendor` (
3888   `entry` mediumint(8) unsigned NOT NULL default '0',
3889   `item` mediumint(8) unsigned NOT NULL default '0',
3890   `maxcount` tinyint(3) unsigned NOT NULL default '0',
3891   `incrtime` int(10) unsigned NOT NULL default '0',
3892   `ExtendedCost` mediumint(8) unsigned NOT NULL default '0',
3893   PRIMARY KEY  (`entry`,`item`,`ExtendedCost`)
3894 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Npc System';
3897 -- Dumping data for table `npc_vendor`
3900 LOCK TABLES `npc_vendor` WRITE;
3901 /*!40000 ALTER TABLE `npc_vendor` DISABLE KEYS */;
3902 /*!40000 ALTER TABLE `npc_vendor` ENABLE KEYS */;
3903 UNLOCK TABLES;
3906 -- Table structure for table `page_text`
3909 DROP TABLE IF EXISTS `page_text`;
3910 CREATE TABLE `page_text` (
3911   `entry` mediumint(8) unsigned NOT NULL default '0',
3912   `text` longtext NOT NULL,
3913   `next_page` mediumint(8) unsigned NOT NULL default '0',
3914   PRIMARY KEY  (`entry`)
3915 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
3918 -- Dumping data for table `page_text`
3921 LOCK TABLES `page_text` WRITE;
3922 /*!40000 ALTER TABLE `page_text` DISABLE KEYS */;
3923 /*!40000 ALTER TABLE `page_text` ENABLE KEYS */;
3924 UNLOCK TABLES;
3927 -- Table structure for table `pet_levelstats`
3930 DROP TABLE IF EXISTS `pet_levelstats`;
3931 CREATE TABLE `pet_levelstats` (
3932   `creature_entry` mediumint(8) unsigned NOT NULL,
3933   `level` tinyint(3) unsigned NOT NULL,
3934   `hp` smallint(5) unsigned NOT NULL,
3935   `mana` smallint(5) unsigned NOT NULL,
3936   `armor` int(10) unsigned NOT NULL default '0',
3937   `str` smallint(5) unsigned NOT NULL,
3938   `agi` smallint(5) unsigned NOT NULL,
3939   `sta` smallint(5) unsigned NOT NULL,
3940   `inte` smallint(5) unsigned NOT NULL,
3941   `spi` smallint(5) unsigned NOT NULL,
3942   PRIMARY KEY  (`creature_entry`,`level`)
3943 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores pet levels stats.';
3946 -- Dumping data for table `pet_levelstats`
3949 LOCK TABLES `pet_levelstats` WRITE;
3950 /*!40000 ALTER TABLE `pet_levelstats` DISABLE KEYS */;
3951 /*!40000 ALTER TABLE `pet_levelstats` ENABLE KEYS */;
3952 UNLOCK TABLES;
3955 -- Table structure for table `pet_name_generation`
3958 DROP TABLE IF EXISTS `pet_name_generation`;
3959 CREATE TABLE `pet_name_generation` (
3960   `id` mediumint(8) unsigned NOT NULL auto_increment,
3961   `word` tinytext NOT NULL,
3962   `entry` mediumint(8) unsigned NOT NULL default '0',
3963   `half` tinyint(4) NOT NULL default '0',
3964   PRIMARY KEY  (`id`)
3965 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3968 -- Dumping data for table `pet_name_generation`
3971 LOCK TABLES `pet_name_generation` WRITE;
3972 /*!40000 ALTER TABLE `pet_name_generation` DISABLE KEYS */;
3973 INSERT INTO `pet_name_generation` (`word`,`entry`,`half`) VALUES
3974 ('Aba',416,0),
3975 ('Az',416,0),
3976 ('Bel',416,0),
3977 ('Biz',416,0),
3978 ('Cho',416,0),
3979 ('Dag',416,0),
3980 ('Gak',416,0),
3981 ('Gar',416,0),
3982 ('Gel',416,0),
3983 ('Gho',416,0),
3984 ('Gob',416,0),
3985 ('Gra',416,0),
3986 ('Jak',416,0),
3987 ('Jub',416,0),
3988 ('Kar',416,0),
3989 ('Kup',416,0),
3990 ('Laz',416,0),
3991 ('Nal',416,0),
3992 ('Nok',416,0),
3993 ('Pag',416,0),
3994 ('Pig',416,0),
3995 ('Pip',416,0),
3996 ('Piz',416,0),
3997 ('Quz',416,0),
3998 ('Rui',416,0),
3999 ('Rul',416,0),
4000 ('Rup',416,0),
4001 ('Tar',416,0),
4002 ('Vol',416,0),
4003 ('Yaz',416,0),
4004 ('Zep',416,0),
4005 ('Zig',416,0),
4006 ('Zil',416,0),
4007 ('Zor',416,0),
4008 ('bis',416,1),
4009 ('fip',416,1),
4010 ('gup',416,1),
4011 ('ham',416,1),
4012 ('jub',416,1),
4013 ('kin',416,1),
4014 ('kol',416,1),
4015 ('lop',416,1),
4016 ('loz',416,1),
4017 ('mat',416,1),
4018 ('mir',416,1),
4019 ('nam',416,1),
4020 ('nar',416,1),
4021 ('nik',416,1),
4022 ('nip',416,1),
4023 ('pad',416,1),
4024 ('pep',416,1),
4025 ('pit',416,1),
4026 ('qua',416,1),
4027 ('rai',416,1),
4028 ('rin',416,1),
4029 ('rot',416,1),
4030 ('tai',416,1),
4031 ('tal',416,1),
4032 ('tik',416,1),
4033 ('tip',416,1),
4034 ('tog',416,1),
4035 ('tuk',416,1),
4036 ('uri',416,1),
4037 ('yal',416,1),
4038 ('yap',416,1),
4039 ('Bhee',417,0),
4040 ('Bruu',417,0),
4041 ('Czaa',417,0),
4042 ('Droo',417,0),
4043 ('Flaa',417,0),
4044 ('Fzuu',417,0),
4045 ('Ghaa',417,0),
4046 ('Gree',417,0),
4047 ('Gzaa',417,0),
4048 ('Haa',417,0),
4049 ('Haad',417,0),
4050 ('Haag',417,0),
4051 ('Haap',417,0),
4052 ('Jhaa',417,0),
4053 ('Jhuu',417,0),
4054 ('Khaa',417,0),
4055 ('Khii',417,0),
4056 ('Khuu',417,0),
4057 ('Kree',417,0),
4058 ('Luu',417,0),
4059 ('Maa',417,0),
4060 ('Nhee',417,0),
4061 ('Phuu',417,0),
4062 ('Pryy',417,0),
4063 ('Rhuu',417,0),
4064 ('Shaa',417,0),
4065 ('Sloo',417,0),
4066 ('Sruu',417,0),
4067 ('Thoo',417,0),
4068 ('Traa',417,0),
4069 ('Wraa',417,0),
4070 ('Zhaa',417,0),
4071 ('dhon',417,1),
4072 ('dhum',417,1),
4073 ('dhun',417,1),
4074 ('dom',417,1),
4075 ('don',417,1),
4076 ('drom',417,1),
4077 ('dym',417,1),
4078 ('fenn',417,1),
4079 ('fum',417,1),
4080 ('fun',417,1),
4081 ('ghon',417,1),
4082 ('ghun',417,1),
4083 ('grom',417,1),
4084 ('grym',417,1),
4085 ('hom',417,1),
4086 ('hon',417,1),
4087 ('hun',417,1),
4088 ('jhom',417,1),
4089 ('kun',417,1),
4090 ('lum',417,1),
4091 ('mmon',417,1),
4092 ('mon',417,1),
4093 ('myn',417,1),
4094 ('nam',417,1),
4095 ('nem',417,1),
4096 ('nhym',417,1),
4097 ('nom',417,1),
4098 ('num',417,1),
4099 ('phom',417,1),
4100 ('roon',417,1),
4101 ('rym',417,1),
4102 ('shon',417,1),
4103 ('thun',417,1),
4104 ('tom',417,1),
4105 ('zhem',417,1),
4106 ('zhum',417,1),
4107 ('zun',417,1),
4108 ('Bar',1860,0),
4109 ('Bel',1860,0),
4110 ('Char',1860,0),
4111 ('Grak\'',1860,0),
4112 ('Graz\'',1860,0),
4113 ('Grim',1860,0),
4114 ('Hath',1860,0),
4115 ('Hel',1860,0),
4116 ('Hok',1860,0),
4117 ('Huk',1860,0),
4118 ('Jhaz',1860,0),
4119 ('Jhom',1860,0),
4120 ('Juk\'',1860,0),
4121 ('Kal\'',1860,0),
4122 ('Klath',1860,0),
4123 ('Kon',1860,0),
4124 ('Krag',1860,0),
4125 ('Krak',1860,0),
4126 ('Mak',1860,0),
4127 ('Mezz',1860,0),
4128 ('Orm',1860,0),
4129 ('Phan',1860,0),
4130 ('Sar',1860,0),
4131 ('Tang',1860,0),
4132 ('Than',1860,0),
4133 ('Thog',1860,0),
4134 ('Thok',1860,0),
4135 ('Thul',1860,0),
4136 ('Zag\'',1860,0),
4137 ('Zang',1860,0),
4138 ('Zhar\'',1860,0),
4139 ('kath',1860,1),
4140 ('doc',1860,1),
4141 ('dok',1860,1),
4142 ('gak',1860,1),
4143 ('garth',1860,1),
4144 ('gore',1860,1),
4145 ('gorg',1860,1),
4146 ('grave',1860,1),
4147 ('gron',1860,1),
4148 ('juk',1860,1),
4149 ('krast',1860,1),
4150 ('kresh',1860,1),
4151 ('krit',1860,1),
4152 ('los',1860,1),
4153 ('mon',1860,1),
4154 ('mos',1860,1),
4155 ('moth',1860,1),
4156 ('nagma',1860,1),
4157 ('nak',1860,1),
4158 ('nar',1860,1),
4159 ('nos',1860,1),
4160 ('nuz',1860,1),
4161 ('phog',1860,1),
4162 ('rath',1860,1),
4163 ('tast',1860,1),
4164 ('taz',1860,1),
4165 ('thak',1860,1),
4166 ('thang',1860,1),
4167 ('thyk',1860,1),
4168 ('vhug',1860,1),
4169 ('zazt',1860,1),
4170 ('Ael',1863,0),
4171 ('Aez',1863,0),
4172 ('Ang',1863,0),
4173 ('Ban',1863,0),
4174 ('Bet',1863,0),
4175 ('Bro',1863,0),
4176 ('Bry',1863,0),
4177 ('Cat',1863,0),
4178 ('Dir',1863,0),
4179 ('Dis',1863,0),
4180 ('Dom',1863,0),
4181 ('Drus',1863,0),
4182 ('Fie',1863,0),
4183 ('Fier',1863,0),
4184 ('Gly',1863,0),
4185 ('Hel',1863,0),
4186 ('Hes',1863,0),
4187 ('Kal',1863,0),
4188 ('Lyn',1863,0),
4189 ('Mir',1863,0),
4190 ('Nim',1863,0),
4191 ('Sar',1863,0),
4192 ('Sel',1863,0),
4193 ('Vil',1863,0),
4194 ('Zah',1863,0),
4195 ('aith',1863,1),
4196 ('anda',1863,1),
4197 ('antia',1863,1),
4198 ('evere',1863,1),
4199 ('lia',1863,1),
4200 ('lissa',1863,1),
4201 ('neri',1863,1),
4202 ('neth',1863,1),
4203 ('nia',1863,1),
4204 ('nlissa',1863,1),
4205 ('nora',1863,1),
4206 ('nva',1863,1),
4207 ('nys',1863,1),
4208 ('ola',1863,1),
4209 ('ona',1863,1),
4210 ('ora',1863,1),
4211 ('rah',1863,1),
4212 ('riana',1863,1),
4213 ('riel',1863,1),
4214 ('rona',1863,1),
4215 ('tai',1863,1),
4216 ('tevere',1863,1),
4217 ('thea',1863,1),
4218 ('vina',1863,1),
4219 ('wena',1863,1),
4220 ('wyn',1863,1),
4221 ('xia',1863,1),
4222 ('yla',1863,1),
4223 ('yssa',1863,1),
4224 ('Flaa',17252,0),
4225 ('Haa',17252,0),
4226 ('Jhuu',17252,0),
4227 ('Shaa',17252,0),
4228 ('Thoo',17252,0),
4229 ('dhun',17252,1),
4230 ('ghun',17252,1),
4231 ('roon',17252,1),
4232 ('thun',17252,1),
4233 ('tom',17252,1);
4235 /*!40000 ALTER TABLE `pet_name_generation` ENABLE KEYS */;
4236 UNLOCK TABLES;
4239 -- Table structure for table `pickpocketing_loot_template`
4242 DROP TABLE IF EXISTS `pickpocketing_loot_template`;
4243 CREATE TABLE `pickpocketing_loot_template` (
4244   `entry` mediumint(8) unsigned NOT NULL default '0',
4245   `item` mediumint(8) unsigned NOT NULL default '0',
4246   `ChanceOrQuestChance` float NOT NULL default '100',
4247   `groupid` tinyint(3) unsigned NOT NULL default '0',
4248   `mincountOrRef` mediumint(9) NOT NULL default '1',
4249   `maxcount` tinyint(3) unsigned NOT NULL default '1',
4250   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
4251   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
4252   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
4253   PRIMARY KEY  (`entry`,`item`)
4254 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
4257 -- Dumping data for table `pickpocketing_loot_template`
4260 LOCK TABLES `pickpocketing_loot_template` WRITE;
4261 /*!40000 ALTER TABLE `pickpocketing_loot_template` DISABLE KEYS */;
4262 /*!40000 ALTER TABLE `pickpocketing_loot_template` ENABLE KEYS */;
4263 UNLOCK TABLES;
4266 -- Table structure for table `player_classlevelstats`
4269 DROP TABLE IF EXISTS `player_classlevelstats`;
4270 CREATE TABLE `player_classlevelstats` (
4271   `class` tinyint(3) unsigned NOT NULL,
4272   `level` tinyint(3) unsigned NOT NULL,
4273   `basehp` smallint(5) unsigned NOT NULL,
4274   `basemana` smallint(5) unsigned NOT NULL,
4275   PRIMARY KEY  (`class`,`level`)
4276 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
4279 -- Dumping data for table `player_classlevelstats`
4282 LOCK TABLES `player_classlevelstats` WRITE;
4283 /*!40000 ALTER TABLE `player_classlevelstats` DISABLE KEYS */;
4284 INSERT INTO `player_classlevelstats` VALUES
4285 (1,1,20,0),
4286 (1,2,29,0),
4287 (1,3,38,0),
4288 (1,4,47,0),
4289 (1,5,56,0),
4290 (1,6,65,0),
4291 (1,7,74,0),
4292 (1,8,83,0),
4293 (1,9,92,0),
4294 (1,10,101,0),
4295 (1,11,100,0),
4296 (1,12,109,0),
4297 (1,13,118,0),
4298 (1,14,128,0),
4299 (1,15,139,0),
4300 (1,16,151,0),
4301 (1,17,154,0),
4302 (1,18,168,0),
4303 (1,19,183,0),
4304 (1,20,199,0),
4305 (1,21,206,0),
4306 (1,22,224,0),
4307 (1,23,243,0),
4308 (1,24,253,0),
4309 (1,25,274,0),
4310 (1,26,296,0),
4311 (1,27,309,0),
4312 (1,28,333,0),
4313 (1,29,348,0),
4314 (1,30,374,0),
4315 (1,31,401,0),
4316 (1,32,419,0),
4317 (1,33,448,0),
4318 (1,34,468,0),
4319 (1,35,499,0),
4320 (1,36,521,0),
4321 (1,37,545,0),
4322 (1,38,581,0),
4323 (1,39,609,0),
4324 (1,40,649,0),
4325 (1,41,681,0),
4326 (1,42,715,0),
4327 (1,43,761,0),
4328 (1,44,799,0),
4329 (1,45,839,0),
4330 (1,46,881,0),
4331 (1,47,935,0),
4332 (1,48,981,0),
4333 (1,49,1029,0),
4334 (1,50,1079,0),
4335 (1,51,1131,0),
4336 (1,52,1185,0),
4337 (1,53,1241,0),
4338 (1,54,1299,0),
4339 (1,55,1359,0),
4340 (1,56,1421,0),
4341 (1,57,1485,0),
4342 (1,58,1551,0),
4343 (1,59,1619,0),
4344 (1,60,1689,0),
4345 (1,61,1902,0),
4346 (1,62,2129,0),
4347 (1,63,2357,0),
4348 (1,64,2612,0),
4349 (1,65,2883,0),
4350 (1,66,3169,0),
4351 (1,67,3455,0),
4352 (1,68,3774,0),
4353 (1,69,4109,0),
4354 (1,70,4444,0),
4355 (1,71,4720,0),
4356 (1,72,5013,0),
4357 (1,73,5325,0),
4358 (1,74,5656,0),
4359 (1,75,6008,0),
4360 (1,76,6381,0),
4361 (1,77,6778,0),
4362 (1,78,7198,0),
4363 (1,79,7646,0),
4364 (1,80,8121,0),
4365 (2,1,28,60),
4366 (2,2,36,78),
4367 (2,3,44,98),
4368 (2,4,52,104),
4369 (2,5,60,111),
4370 (2,6,68,134),
4371 (2,7,76,143),
4372 (2,8,84,153),
4373 (2,9,92,179),
4374 (2,10,100,192),
4375 (2,11,108,205),
4376 (2,12,116,219),
4377 (2,13,124,249),
4378 (2,14,132,265),
4379 (2,15,131,282),
4380 (2,16,141,315),
4381 (2,17,152,334),
4382 (2,18,164,354),
4383 (2,19,177,390),
4384 (2,20,191,412),
4385 (2,21,206,435),
4386 (2,22,222,459),
4387 (2,23,239,499),
4388 (2,24,247,525),
4389 (2,25,266,552),
4390 (2,26,286,579),
4391 (2,27,307,621),
4392 (2,28,329,648),
4393 (2,29,342,675),
4394 (2,30,366,702),
4395 (2,31,391,729),
4396 (2,32,407,756),
4397 (2,33,434,798),
4398 (2,34,462,825),
4399 (2,35,481,852),
4400 (2,36,511,879),
4401 (2,37,542,906),
4402 (2,38,564,933),
4403 (2,39,597,960),
4404 (2,40,621,987),
4405 (2,41,656,1014),
4406 (2,42,682,1041),
4407 (2,43,719,1068),
4408 (2,44,747,1110),
4409 (2,45,786,1137),
4410 (2,46,816,1164),
4411 (2,47,857,1176),
4412 (2,48,889,1203),
4413 (2,49,922,1230),
4414 (2,50,966,1257),
4415 (2,51,1001,1284),
4416 (2,52,1037,1311),
4417 (2,53,1084,1338),
4418 (2,54,1122,1365),
4419 (2,55,1161,1392),
4420 (2,56,1201,1419),
4421 (2,57,1252,1446),
4422 (2,58,1294,1458),
4423 (2,59,1337,1485),
4424 (2,60,1381,1512),
4425 (2,61,1540,1656),
4426 (2,62,1708,1800),
4427 (2,63,1884,1944),
4428 (2,64,2068,2088),
4429 (2,65,2262,2232),
4430 (2,66,2466,2377),
4431 (2,67,2679,2521),
4432 (2,68,2901,2665),
4433 (2,69,3134,2809),
4434 (2,70,3377,2953),
4435 (2,71,3629,3097),
4436 (2,72,3900,3241),
4437 (2,73,4191,3385),
4438 (2,74,4503,3529),
4439 (2,75,4839,3673),
4440 (2,76,5200,3817),
4441 (2,77,5588,3962),
4442 (2,78,6005,4106),
4443 (2,79,6453,4250),
4444 (2,80,6934,4394),
4445 (3,1,46,65),
4446 (3,2,53,70),
4447 (3,3,60,76),
4448 (3,4,67,98),
4449 (3,5,74,106),
4450 (3,6,81,130),
4451 (3,7,88,140),
4452 (3,8,95,166),
4453 (3,9,102,193),
4454 (3,10,109,206),
4455 (3,11,116,235),
4456 (3,12,123,250),
4457 (3,13,130,266),
4458 (3,14,138,298),
4459 (3,15,147,316),
4460 (3,16,157,350),
4461 (3,17,168,370),
4462 (3,18,180,391),
4463 (3,19,193,428),
4464 (3,20,207,451),
4465 (3,21,222,475),
4466 (3,22,238,515),
4467 (3,23,255,541),
4468 (3,24,273,568),
4469 (3,25,292,611),
4470 (3,26,312,640),
4471 (3,27,333,670),
4472 (3,28,355,715),
4473 (3,29,378,745),
4474 (3,30,402,775),
4475 (3,31,417,805),
4476 (3,32,443,850),
4477 (3,33,470,880),
4478 (3,34,498,910),
4479 (3,35,527,940),
4480 (3,36,547,970),
4481 (3,37,578,1015),
4482 (3,38,610,1045),
4483 (3,39,643,1075),
4484 (3,40,667,1105),
4485 (3,41,702,1135),
4486 (3,42,738,1180),
4487 (3,43,775,1210),
4488 (3,44,803,1240),
4489 (3,45,842,1270),
4490 (3,46,872,1300),
4491 (3,47,913,1330),
4492 (3,48,955,1360),
4493 (3,49,994,1390),
4494 (3,50,1047,1420),
4495 (3,51,1067,1450),
4496 (3,52,1113,1480),
4497 (3,53,1150,1510),
4498 (3,54,1198,1540),
4499 (3,55,1237,1570),
4500 (3,56,1287,1600),
4501 (3,57,1328,1630),
4502 (3,58,1370,1660),
4503 (3,59,1423,1690),
4504 (3,60,1467,1720),
4505 (3,61,1633,1886),
4506 (3,62,1819,2053),
4507 (3,63,2003,2219),
4508 (3,64,2195,2385),
4509 (3,65,2397,2552),
4510 (3,66,2623,2718),
4511 (3,67,2844,2884),
4512 (3,68,3075,3050),
4513 (3,69,3316,3217),
4514 (3,70,3568,3383),
4515 (3,71,3834,3549),
4516 (3,72,4120,3716),
4517 (3,73,4427,3882),
4518 (3,74,4757,4048),
4519 (3,75,5112,4215),
4520 (3,76,5493,4381),
4521 (3,77,5903,4547),
4522 (3,78,6343,4713),
4523 (3,79,6816,4880),
4524 (3,80,7324,5046),
4525 (4,1,25,0),
4526 (4,2,32,0),
4527 (4,3,49,0),
4528 (4,4,56,0),
4529 (4,5,63,0),
4530 (4,6,70,0),
4531 (4,7,87,0),
4532 (4,8,94,0),
4533 (4,9,101,0),
4534 (4,10,118,0),
4535 (4,11,125,0),
4536 (4,12,142,0),
4537 (4,13,149,0),
4538 (4,14,156,0),
4539 (4,15,173,0),
4540 (4,16,181,0),
4541 (4,17,190,0),
4542 (4,18,200,0),
4543 (4,19,221,0),
4544 (4,20,233,0),
4545 (4,21,246,0),
4546 (4,22,260,0),
4547 (4,23,275,0),
4548 (4,24,301,0),
4549 (4,25,318,0),
4550 (4,26,336,0),
4551 (4,27,355,0),
4552 (4,28,375,0),
4553 (4,29,396,0),
4554 (4,30,428,0),
4555 (4,31,451,0),
4556 (4,32,475,0),
4557 (4,33,500,0),
4558 (4,34,526,0),
4559 (4,35,553,0),
4560 (4,36,581,0),
4561 (4,37,610,0),
4562 (4,38,640,0),
4563 (4,39,671,0),
4564 (4,40,703,0),
4565 (4,41,736,0),
4566 (4,42,770,0),
4567 (4,43,805,0),
4568 (4,44,841,0),
4569 (4,45,878,0),
4570 (4,46,916,0),
4571 (4,47,955,0),
4572 (4,48,995,0),
4573 (4,49,1026,0),
4574 (4,50,1068,0),
4575 (4,51,1111,0),
4576 (4,52,1155,0),
4577 (4,53,1200,0),
4578 (4,54,1246,0),
4579 (4,55,1283,0),
4580 (4,56,1331,0),
4581 (4,57,1380,0),
4582 (4,58,1430,0),
4583 (4,59,1471,0),
4584 (4,60,1523,0),
4585 (4,61,1702,0),
4586 (4,62,1879,0),
4587 (4,63,2077,0),
4588 (4,64,2285,0),
4589 (4,65,2489,0),
4590 (4,66,2717,0),
4591 (4,67,2941,0),
4592 (4,68,3190,0),
4593 (4,69,3450,0),
4594 (4,70,3704,0),
4595 (4,71,3980,0),
4596 (4,72,4277,0),
4597 (4,73,4596,0),
4598 (4,74,4939,0),
4599 (4,75,5307,0),
4600 (4,76,5703,0),
4601 (4,77,6128,0),
4602 (4,78,6585,0),
4603 (4,79,7076,0),
4604 (4,80,7604,0),
4605 (5,1,52,73),
4606 (5,2,57,76),
4607 (5,3,72,95),
4608 (5,4,77,114),
4609 (5,5,92,133),
4610 (5,6,97,152),
4611 (5,7,112,171),
4612 (5,8,117,190),
4613 (5,9,132,209),
4614 (5,10,137,212),
4615 (5,11,142,215),
4616 (5,12,157,234),
4617 (5,13,172,254),
4618 (5,14,177,260),
4619 (5,15,192,282),
4620 (5,16,197,305),
4621 (5,17,212,329),
4622 (5,18,227,339),
4623 (5,19,232,365),
4624 (5,20,247,377),
4625 (5,21,252,405),
4626 (5,22,268,434),
4627 (5,23,275,449),
4628 (5,24,293,480),
4629 (5,25,302,497),
4630 (5,26,322,530),
4631 (5,27,343,549),
4632 (5,28,355,584),
4633 (5,29,378,605),
4634 (5,30,392,627),
4635 (5,31,417,665),
4636 (5,32,433,689),
4637 (5,33,460,728),
4638 (5,34,478,752),
4639 (5,35,507,776),
4640 (5,36,527,800),
4641 (5,37,548,839),
4642 (5,38,580,863),
4643 (5,39,603,887),
4644 (5,40,637,911),
4645 (5,41,662,950),
4646 (5,42,698,974),
4647 (5,43,725,998),
4648 (5,44,763,1022),
4649 (5,45,792,1046),
4650 (5,46,822,1070),
4651 (5,47,863,1094),
4652 (5,48,895,1118),
4653 (5,49,928,1142),
4654 (5,50,972,1166),
4655 (5,51,1007,1190),
4656 (5,52,1053,1214),
4657 (5,53,1090,1238),
4658 (5,54,1128,1262),
4659 (5,55,1177,1271),
4660 (5,56,1217,1295),
4661 (5,57,1258,1319),
4662 (5,58,1300,1343),
4663 (5,59,1353,1352),
4664 (5,60,1397,1376),
4665 (5,61,1557,1500),
4666 (5,62,1738,1625),
4667 (5,63,1916,1749),
4668 (5,64,2101,1873),
4669 (5,65,2295,1998),
4670 (5,66,2495,2122),
4671 (5,67,2719,2247),
4672 (5,68,2936,2371),
4673 (5,69,3160,2495),
4674 (5,70,3391,2620),
4675 (5,71,3644,2744),
4676 (5,72,3916,2868),
4677 (5,73,4208,2993),
4678 (5,74,4522,3117),
4679 (5,75,4859,3242),
4680 (5,76,5221,3366),
4681 (5,77,5610,3490),
4682 (5,78,6028,3615),
4683 (5,79,6477,3739),
4684 (5,80,6960,3863),
4685 (6,1,22,0),
4686 (6,2,27,0),
4687 (6,3,32,0),
4688 (6,4,37,0),
4689 (6,5,42,0),
4690 (6,6,47,0),
4691 (6,7,52,0),
4692 (6,8,58,0),
4693 (6,9,64,0),
4694 (6,10,70,0),
4695 (6,11,77,0),
4696 (6,12,84,0),
4697 (6,13,92,0),
4698 (6,14,100,0),
4699 (6,15,117,0),
4700 (6,16,127,0),
4701 (6,17,138,0),
4702 (6,18,150,0),
4703 (6,19,163,0),
4704 (6,20,177,0),
4705 (6,21,192,0),
4706 (6,22,208,0),
4707 (6,23,225,0),
4708 (6,24,239,0),
4709 (6,25,258,0),
4710 (6,26,278,0),
4711 (6,27,299,0),
4712 (6,28,321,0),
4713 (6,29,344,0),
4714 (6,30,368,0),
4715 (6,31,393,0),
4716 (6,32,419,0),
4717 (6,33,446,0),
4718 (6,34,474,0),
4719 (6,35,503,0),
4720 (6,36,533,0),
4721 (6,37,564,0),
4722 (6,38,596,0),
4723 (6,39,629,0),
4724 (6,40,698,0),
4725 (6,41,698,0),
4726 (6,42,734,0),
4727 (6,43,771,0),
4728 (6,44,809,0),
4729 (6,45,849,0),
4730 (6,46,891,0),
4731 (6,47,935,0),
4732 (6,48,981,0),
4733 (6,49,1029,0),
4734 (6,50,1079,0),
4735 (6,51,1131,0),
4736 (6,52,1185,0),
4737 (6,53,1241,0),
4738 (6,54,1299,0),
4739 (6,55,1359,0),
4740 (6,56,1421,0),
4741 (6,57,1485,0),
4742 (6,58,1551,0),
4743 (6,59,1619,0),
4744 (6,60,1689,0),
4745 (6,61,1902,0),
4746 (6,62,2129,0),
4747 (6,63,2357,0),
4748 (6,64,2612,0),
4749 (6,65,2883,0),
4750 (6,66,3169,0),
4751 (6,67,3455,0),
4752 (6,68,3774,0),
4753 (6,69,4109,0),
4754 (6,70,4444,0),
4755 (6,71,4720,0),
4756 (6,72,5013,0),
4757 (6,73,5325,0),
4758 (6,74,5656,0),
4759 (6,75,6008,0),
4760 (6,76,6381,0),
4761 (6,77,6778,0),
4762 (6,78,7199,0),
4763 (6,79,7646,0),
4764 (6,80,8121,0),
4765 (7,1,37,85),
4766 (7,2,44,91),
4767 (7,3,51,98),
4768 (7,4,58,106),
4769 (7,5,65,115),
4770 (7,6,72,125),
4771 (7,7,79,136),
4772 (7,8,86,148),
4773 (7,9,93,161),
4774 (7,10,100,175),
4775 (7,11,107,190),
4776 (7,12,114,206),
4777 (7,13,121,223),
4778 (7,14,128,241),
4779 (7,15,135,260),
4780 (7,16,142,280),
4781 (7,17,150,301),
4782 (7,18,159,323),
4783 (7,19,169,346),
4784 (7,20,180,370),
4785 (7,21,192,395),
4786 (7,22,205,421),
4787 (7,23,219,448),
4788 (7,24,234,476),
4789 (7,25,240,505),
4790 (7,26,257,535),
4791 (7,27,275,566),
4792 (7,28,294,598),
4793 (7,29,314,631),
4794 (7,30,335,665),
4795 (7,31,347,699),
4796 (7,32,370,733),
4797 (7,33,394,767),
4798 (7,34,419,786),
4799 (7,35,435,820),
4800 (7,36,462,854),
4801 (7,37,490,888),
4802 (7,38,509,922),
4803 (7,39,539,941),
4804 (7,40,570,975),
4805 (7,41,592,1009),
4806 (7,42,625,1028),
4807 (7,43,649,1062),
4808 (7,44,684,1096),
4809 (7,45,710,1115),
4810 (7,46,747,1149),
4811 (7,47,775,1183),
4812 (7,48,814,1202),
4813 (7,49,844,1236),
4814 (7,50,885,1255),
4815 (7,51,917,1289),
4816 (7,52,960,1323),
4817 (7,53,994,1342),
4818 (7,54,1029,1376),
4819 (7,55,1075,1395),
4820 (7,56,1112,1414),
4821 (7,57,1150,1448),
4822 (7,58,1199,1467),
4823 (7,59,1239,1501),
4824 (7,60,1330,1520),
4825 (7,61,1428,1664),
4826 (7,62,1583,1808),
4827 (7,63,1760,1951),
4828 (7,64,1932,2095),
4829 (7,65,2114,2239),
4830 (7,66,2304,2383),
4831 (7,67,2504,2527),
4832 (7,68,2713,2670),
4833 (7,69,2931,2814),
4834 (7,70,3159,2958),
4835 (7,71,3395,3102),
4836 (7,72,3648,3246),
4837 (7,73,3920,3389),
4838 (7,74,4212,3533),
4839 (7,75,4526,3677),
4840 (7,76,4863,3821),
4841 (7,77,5226,3965),
4842 (7,78,5616,4108),
4843 (7,79,6035,4252),
4844 (7,80,6485,4396),
4845 (8,1,32,100),
4846 (8,2,47,110),
4847 (8,3,52,106),
4848 (8,4,67,118),
4849 (8,5,82,131),
4850 (8,6,97,130),
4851 (8,7,102,145),
4852 (8,8,117,146),
4853 (8,9,132,163),
4854 (8,10,137,196),
4855 (8,11,152,215),
4856 (8,12,167,220),
4857 (8,13,172,241),
4858 (8,14,187,263),
4859 (8,15,202,271),
4860 (8,16,207,295),
4861 (8,17,222,305),
4862 (8,18,237,331),
4863 (8,19,242,343),
4864 (8,20,257,371),
4865 (8,21,272,385),
4866 (8,22,277,415),
4867 (8,23,292,431),
4868 (8,24,298,463),
4869 (8,25,315,481),
4870 (8,26,333,515),
4871 (8,27,342,535),
4872 (8,28,362,556),
4873 (8,29,373,592),
4874 (8,30,395,613),
4875 (8,31,418,634),
4876 (8,32,432,670),
4877 (8,33,457,691),
4878 (8,34,473,712),
4879 (8,35,500,733),
4880 (8,36,518,754),
4881 (8,37,547,790),
4882 (8,38,577,811),
4883 (8,39,598,832),
4884 (8,40,630,853),
4885 (8,41,653,874),
4886 (8,42,687,895),
4887 (8,43,712,916),
4888 (8,44,748,937),
4889 (8,45,775,958),
4890 (8,46,813,979),
4891 (8,47,842,1000),
4892 (8,48,882,1021),
4893 (8,49,913,1042),
4894 (8,50,955,1048),
4895 (8,51,988,1069),
4896 (8,52,1032,1090),
4897 (8,53,1067,1111),
4898 (8,54,1103,1117),
4899 (8,55,1150,1138),
4900 (8,56,1188,1159),
4901 (8,57,1237,1165),
4902 (8,58,1277,1186),
4903 (8,59,1328,1192),
4904 (8,60,1370,1213),
4905 (8,61,1526,1316),
4906 (8,62,1702,1419),
4907 (8,63,1875,1521),
4908 (8,64,2070,1624),
4909 (8,65,2261,1727),
4910 (8,66,2461,1830),
4911 (8,67,2686,1932),
4912 (8,68,2906,2035),
4913 (8,69,3136,2138),
4914 (8,70,3393,2241),
4915 (8,71,3646,2343),
4916 (8,72,3918,2446),
4917 (8,73,4210,2549),
4918 (8,74,4524,2652),
4919 (8,75,4861,2754),
4920 (8,76,5223,2857),
4921 (8,77,5612,2960),
4922 (8,78,6030,3063),
4923 (8,79,6480,3165),
4924 (8,80,6963,3268),
4925 (9,1,23,90),
4926 (9,2,28,98),
4927 (9,3,43,107),
4928 (9,4,48,102),
4929 (9,5,63,113),
4930 (9,6,68,126),
4931 (9,7,83,144),
4932 (9,8,88,162),
4933 (9,9,93,180),
4934 (9,10,108,198),
4935 (9,11,123,200),
4936 (9,12,128,218),
4937 (9,13,143,237),
4938 (9,14,148,257),
4939 (9,15,153,278),
4940 (9,16,168,300),
4941 (9,17,173,308),
4942 (9,18,189,332),
4943 (9,19,196,357),
4944 (9,20,204,383),
4945 (9,21,223,395),
4946 (9,22,233,423),
4947 (9,23,244,452),
4948 (9,24,266,467),
4949 (9,25,279,498),
4950 (9,26,293,530),
4951 (9,27,318,548),
4952 (9,28,334,582),
4953 (9,29,351,602),
4954 (9,30,379,638),
4955 (9,31,398,674),
4956 (9,32,418,695),
4957 (9,33,439,731),
4958 (9,34,471,752),
4959 (9,35,494,788),
4960 (9,36,518,809),
4961 (9,37,543,830),
4962 (9,38,569,866),
4963 (9,39,606,887),
4964 (9,40,634,923),
4965 (9,41,663,944),
4966 (9,42,693,965),
4967 (9,43,724,1001),
4968 (9,44,756,1022),
4969 (9,45,799,1043),
4970 (9,46,832,1064),
4971 (9,47,868,1100),
4972 (9,48,904,1121),
4973 (9,49,941,1142),
4974 (9,50,979,1163),
4975 (9,51,1018,1184),
4976 (9,52,1058,1205),
4977 (9,53,1099,1226),
4978 (9,54,1141,1247),
4979 (9,55,1184,1268),
4980 (9,56,1228,1289),
4981 (9,57,1273,1310),
4982 (9,58,1319,1331),
4983 (9,59,1366,1352),
4984 (9,60,1414,1373),
4985 (9,61,1580,1497),
4986 (9,62,1755,1621),
4987 (9,63,1939,1745),
4988 (9,64,2133,1870),
4989 (9,65,2323,1994),
4990 (9,66,2535,2118),
4991 (9,67,2758,2242),
4992 (9,68,2991,2366),
4993 (9,69,3235,2490),
4994 (9,70,3490,2615),
4995 (9,71,3750,2739),
4996 (9,72,4025,2863),
4997 (9,73,4330,2987),
4998 (9,74,4646,3111),
4999 (9,75,4997,3235),
5000 (9,76,5373,3360),
5001 (9,77,5774,3483),
5002 (9,78,6207,3608),
5003 (9,79,6667,3732),
5004 (9,80,7136,3856),
5005 (11,1,44,60),
5006 (11,2,51,66),
5007 (11,3,58,73),
5008 (11,4,75,81),
5009 (11,5,82,90),
5010 (11,6,89,100),
5011 (11,7,106,111),
5012 (11,8,113,123),
5013 (11,9,120,136),
5014 (11,10,137,150),
5015 (11,11,144,165),
5016 (11,12,151,182),
5017 (11,13,168,200),
5018 (11,14,175,219),
5019 (11,15,182,239),
5020 (11,16,199,260),
5021 (11,17,206,282),
5022 (11,18,214,305),
5023 (11,19,233,329),
5024 (11,20,243,354),
5025 (11,21,254,380),
5026 (11,22,266,392),
5027 (11,23,289,420),
5028 (11,24,303,449),
5029 (11,25,318,479),
5030 (11,26,334,509),
5031 (11,27,361,524),
5032 (11,28,379,554),
5033 (11,29,398,584),
5034 (11,30,418,614),
5035 (11,31,439,629),
5036 (11,32,461,659),
5037 (11,33,494,689),
5038 (11,34,518,704),
5039 (11,35,543,734),
5040 (11,36,569,749),
5041 (11,37,596,779),
5042 (11,38,624,809),
5043 (11,39,653,824),
5044 (11,40,683,854),
5045 (11,41,714,869),
5046 (11,42,746,899),
5047 (11,43,779,914),
5048 (11,44,823,944),
5049 (11,45,858,959),
5050 (11,46,894,989),
5051 (11,47,921,1004),
5052 (11,48,959,1019),
5053 (11,49,998,1049),
5054 (11,50,1038,1064),
5055 (11,51,1079,1079),
5056 (11,52,1121,1109),
5057 (11,53,1164,1124),
5058 (11,54,1208,1139),
5059 (11,55,1253,1154),
5060 (11,56,1299,1169),
5061 (11,57,1346,1199),
5062 (11,58,1384,1214),
5063 (11,59,1433,1229),
5064 (11,60,1483,1244),
5065 (11,61,1657,1357),
5066 (11,62,1840,1469),
5067 (11,63,2020,1582),
5068 (11,64,2222,1694),
5069 (11,65,2433,1807),
5070 (11,66,2640,1919),
5071 (11,67,2872,2032),
5072 (11,68,3114,2145),
5073 (11,69,3351,2257),
5074 (11,70,3614,2370),
5075 (11,71,3883,2482),
5076 (11,72,4172,2595),
5077 (11,73,4483,2708),
5078 (11,74,4817,2820),
5079 (11,75,5176,2933),
5080 (11,76,5562,3045),
5081 (11,77,5977,3158),
5082 (11,78,6423,3270),
5083 (11,79,6902,3383),
5084 (11,80,7417,3496);
5085 /*!40000 ALTER TABLE `player_classlevelstats` ENABLE KEYS */;
5086 UNLOCK TABLES;
5089 -- Table structure for table `player_levelstats`
5092 DROP TABLE IF EXISTS `player_levelstats`;
5093 CREATE TABLE `player_levelstats` (
5094   `race` tinyint(3) unsigned NOT NULL,
5095   `class` tinyint(3) unsigned NOT NULL,
5096   `level` tinyint(3) unsigned NOT NULL,
5097   `str` tinyint(3) unsigned NOT NULL,
5098   `agi` tinyint(3) unsigned NOT NULL,
5099   `sta` tinyint(3) unsigned NOT NULL,
5100   `inte` tinyint(3) unsigned NOT NULL,
5101   `spi` tinyint(3) unsigned NOT NULL,
5102   PRIMARY KEY  (`race`,`class`,`level`)
5103 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
5106 -- Dumping data for table `player_levelstats`
5109 LOCK TABLES `player_levelstats` WRITE;
5110 /*!40000 ALTER TABLE `player_levelstats` DISABLE KEYS */;
5111 INSERT INTO `player_levelstats` VALUES
5112 (1,1,1,23,20,22,20,20),
5113 (1,1,2,24,21,23,20,20),
5114 (1,1,3,26,22,24,20,21),
5115 (1,1,4,27,22,26,20,21),
5116 (1,1,5,28,23,27,20,21),
5117 (1,1,6,30,24,28,20,21),
5118 (1,1,7,31,25,29,21,22),
5119 (1,1,8,32,26,30,21,22),
5120 (1,1,9,34,26,32,21,22),
5121 (1,1,10,35,27,33,21,23),
5122 (1,1,11,36,28,34,21,23),
5123 (1,1,12,38,29,35,21,23),
5124 (1,1,13,39,30,37,21,24),
5125 (1,1,14,41,31,38,21,24),
5126 (1,1,15,42,32,39,21,24),
5127 (1,1,16,44,33,41,21,25),
5128 (1,1,17,45,34,42,22,25),
5129 (1,1,18,47,34,43,22,25),
5130 (1,1,19,48,35,45,22,26),
5131 (1,1,20,50,36,46,22,26),
5132 (1,1,21,51,37,48,22,26),
5133 (1,1,22,53,38,49,22,27),
5134 (1,1,23,54,39,51,22,27),
5135 (1,1,24,56,40,52,23,28),
5136 (1,1,25,58,41,53,23,28),
5137 (1,1,26,59,42,55,23,28),
5138 (1,1,27,61,43,56,23,29),
5139 (1,1,28,63,44,58,23,29),
5140 (1,1,29,64,45,59,23,30),
5141 (1,1,30,66,46,61,24,30),
5142 (1,1,31,68,47,62,24,30),
5143 (1,1,32,69,48,64,24,31),
5144 (1,1,33,71,50,66,24,31),
5145 (1,1,34,73,51,67,24,32),
5146 (1,1,35,74,52,69,24,32),
5147 (1,1,36,76,53,70,25,33),
5148 (1,1,37,78,54,72,25,33),
5149 (1,1,38,80,55,74,25,34),
5150 (1,1,39,82,56,75,25,34),
5151 (1,1,40,83,57,77,25,35),
5152 (1,1,41,85,58,79,26,35),
5153 (1,1,42,87,60,80,26,35),
5154 (1,1,43,89,61,82,26,36),
5155 (1,1,44,91,62,84,26,36),
5156 (1,1,45,93,63,85,26,37),
5157 (1,1,46,95,64,87,27,37),
5158 (1,1,47,97,66,89,27,38),
5159 (1,1,48,99,67,91,27,38),
5160 (1,1,49,101,68,93,27,39),
5161 (1,1,50,103,69,94,28,40),
5162 (1,1,51,105,71,96,28,40),
5163 (1,1,52,107,72,98,28,41),
5164 (1,1,53,109,73,100,28,41),
5165 (1,1,54,111,74,102,29,42),
5166 (1,1,55,113,76,103,29,42),
5167 (1,1,56,115,77,105,29,43),
5168 (1,1,57,117,78,107,29,43),
5169 (1,1,58,119,79,109,30,44),
5170 (1,1,59,121,81,111,30,44),
5171 (1,1,60,123,82,113,30,45),
5172 (1,1,61,125,83,115,30,46),
5173 (1,1,62,127,85,117,31,46),
5174 (1,1,63,129,86,119,31,47),
5175 (1,1,64,132,88,121,31,47),
5176 (1,1,65,134,89,123,32,48),
5177 (1,1,66,136,90,125,32,49),
5178 (1,1,67,138,92,127,32,49),
5179 (1,1,68,140,93,129,32,50),
5180 (1,1,69,143,95,131,33,50),
5181 (1,1,70,145,96,133,33,51),
5182 (1,1,71,148,97,140,33,53),
5183 (1,1,72,156,99,143,33,54),
5184 (1,1,73,162,101,148,33,55),
5185 (1,1,74,162,102,148,34,55),
5186 (1,1,75,165,104,150,34,56),
5187 (1,1,76,171,106,156,34,57),
5188 (1,1,77,171,108,157,35,58),
5189 (1,1,78,174,109,159,35,58),
5190 (1,1,79,181,111,165,35,59),
5191 (1,1,80,184,113,168,36,60),
5192 (1,2,1,22,20,22,20,21),
5193 (1,2,2,23,21,23,21,22),
5194 (1,2,3,24,21,24,21,22),
5195 (1,2,4,25,22,25,22,23),
5196 (1,2,5,26,22,26,23,24),
5197 (1,2,6,28,23,27,23,25),
5198 (1,2,7,29,24,28,24,25),
5199 (1,2,8,30,24,29,25,26),
5200 (1,2,9,31,25,30,25,27),
5201 (1,2,10,32,25,32,26,27),
5202 (1,2,11,33,26,33,27,28),
5203 (1,2,12,35,27,34,27,29),
5204 (1,2,13,36,27,35,28,30),
5205 (1,2,14,37,28,36,29,31),
5206 (1,2,15,38,29,37,30,31),
5207 (1,2,16,40,29,38,30,32),
5208 (1,2,17,41,30,40,31,33),
5209 (1,2,18,42,31,41,32,34),
5210 (1,2,19,43,31,42,33,35),
5211 (1,2,20,45,32,43,33,35),
5212 (1,2,21,46,33,45,34,36),
5213 (1,2,22,47,33,46,35,37),
5214 (1,2,23,49,34,47,36,38),
5215 (1,2,24,50,35,48,37,39),
5216 (1,2,25,51,36,50,37,40),
5217 (1,2,26,53,36,51,38,41),
5218 (1,2,27,54,37,52,39,42),
5219 (1,2,28,56,38,54,40,43),
5220 (1,2,29,57,39,55,41,43),
5221 (1,2,30,58,39,56,42,44),
5222 (1,2,31,60,40,58,43,45),
5223 (1,2,32,61,41,59,43,46),
5224 (1,2,33,63,42,60,44,47),
5225 (1,2,34,64,43,62,45,48),
5226 (1,2,35,66,44,63,46,49),
5227 (1,2,36,67,44,65,47,50),
5228 (1,2,37,69,45,66,48,51),
5229 (1,2,38,70,46,67,49,52),
5230 (1,2,39,72,47,69,50,53),
5231 (1,2,40,73,48,70,51,54),
5232 (1,2,41,75,49,72,52,55),
5233 (1,2,42,77,49,73,53,56),
5234 (1,2,43,78,50,75,54,57),
5235 (1,2,44,80,51,76,55,58),
5236 (1,2,45,81,52,78,56,59),
5237 (1,2,46,83,53,79,57,61),
5238 (1,2,47,85,54,81,58,62),
5239 (1,2,48,86,55,83,59,63),
5240 (1,2,49,88,56,84,60,64),
5241 (1,2,50,90,57,86,61,65),
5242 (1,2,51,91,58,87,62,66),
5243 (1,2,52,93,59,89,63,67),
5244 (1,2,53,95,60,91,64,68),
5245 (1,2,54,97,61,92,65,69),
5246 (1,2,55,98,61,94,66,71),
5247 (1,2,56,100,62,95,67,72),
5248 (1,2,57,102,63,97,68,73),
5249 (1,2,58,104,64,99,69,74),
5250 (1,2,59,105,65,101,70,75),
5251 (1,2,60,107,66,102,71,77),
5252 (1,2,61,109,67,104,73,78),
5253 (1,2,62,111,69,106,74,79),
5254 (1,2,63,113,70,107,75,80),
5255 (1,2,64,115,71,109,76,81),
5256 (1,2,65,116,72,111,77,83),
5257 (1,2,66,118,73,113,78,84),
5258 (1,2,67,120,74,115,79,85),
5259 (1,2,68,122,75,116,81,86),
5260 (1,2,69,124,76,118,82,88),
5261 (1,2,70,126,77,120,83,89),
5262 (1,2,71,148,78,122,84,92),
5263 (1,2,72,150,79,125,86,94),
5264 (1,2,73,152,80,127,87,96),
5265 (1,2,74,156,82,129,89,97),
5266 (1,2,75,158,83,131,90,99),
5267 (1,2,76,162,84,134,92,100),
5268 (1,2,77,164,86,136,93,103),
5269 (1,2,78,167,87,138,95,105),
5270 (1,2,79,170,88,153,96,106),
5271 (1,2,80,173,90,160,98,108),
5272 (1,4,1,21,23,21,20,20),
5273 (1,4,2,22,24,22,20,20),
5274 (1,4,3,23,26,22,20,21),
5275 (1,4,4,23,27,23,20,21),
5276 (1,4,5,24,29,24,21,21),
5277 (1,4,6,25,30,25,21,22),
5278 (1,4,7,26,32,25,21,22),
5279 (1,4,8,26,33,26,21,23),
5280 (1,4,9,27,35,27,21,23),
5281 (1,4,10,28,36,27,21,23),
5282 (1,4,11,29,38,28,22,24),
5283 (1,4,12,30,39,29,22,24),
5284 (1,4,13,31,41,30,22,25),
5285 (1,4,14,31,43,31,22,25),
5286 (1,4,15,32,44,31,22,25),
5287 (1,4,16,33,46,32,23,26),
5288 (1,4,17,34,48,33,23,26),
5289 (1,4,18,35,49,34,23,27),
5290 (1,4,19,36,51,35,23,27),
5291 (1,4,20,37,53,35,23,28),
5292 (1,4,21,38,54,36,24,28),
5293 (1,4,22,39,56,37,24,29),
5294 (1,4,23,40,58,38,24,29),
5295 (1,4,24,41,60,39,24,30),
5296 (1,4,25,42,61,40,25,30),
5297 (1,4,26,43,63,41,25,31),
5298 (1,4,27,44,65,42,25,31),
5299 (1,4,28,45,67,43,25,32),
5300 (1,4,29,46,69,43,25,32),
5301 (1,4,30,47,71,44,26,33),
5302 (1,4,31,48,72,45,26,33),
5303 (1,4,32,49,74,46,26,34),
5304 (1,4,33,50,76,47,27,34),
5305 (1,4,34,51,78,48,27,35),
5306 (1,4,35,52,80,49,27,35),
5307 (1,4,36,53,82,50,27,36),
5308 (1,4,37,54,84,51,28,36),
5309 (1,4,38,55,86,52,28,37),
5310 (1,4,39,56,88,53,28,38),
5311 (1,4,40,57,90,54,28,38),
5312 (1,4,41,58,92,55,29,39),
5313 (1,4,42,60,94,56,29,39),
5314 (1,4,43,61,96,57,29,40),
5315 (1,4,44,62,98,58,30,40),
5316 (1,4,45,63,100,59,30,41),
5317 (1,4,46,64,103,61,30,42),
5318 (1,4,47,65,105,62,31,42),
5319 (1,4,48,66,107,63,31,43),
5320 (1,4,49,68,109,64,31,44),
5321 (1,4,50,69,111,65,32,44),
5322 (1,4,51,70,113,66,32,45),
5323 (1,4,52,71,116,67,32,45),
5324 (1,4,53,73,118,68,33,46),
5325 (1,4,54,74,120,69,33,47),
5326 (1,4,55,75,122,71,33,47),
5327 (1,4,56,76,125,72,34,48),
5328 (1,4,57,78,127,73,34,49),
5329 (1,4,58,79,129,74,34,49),
5330 (1,4,59,80,131,75,35,50),
5331 (1,4,60,81,134,77,35,51),
5332 (1,4,61,83,136,78,35,51),
5333 (1,4,62,84,138,79,36,52),
5334 (1,4,63,85,141,80,36,53),
5335 (1,4,64,87,143,81,37,54),
5336 (1,4,65,88,146,83,37,54),
5337 (1,4,66,89,148,84,37,55),
5338 (1,4,67,91,151,85,38,56),
5339 (1,4,68,92,153,86,38,57),
5340 (1,4,69,94,156,88,39,57),
5341 (1,4,70,95,158,89,39,58),
5342 (1,4,71,97,161,90,39,60),
5343 (1,4,72,99,164,92,40,60),
5344 (1,4,73,100,167,94,40,61),
5345 (1,4,74,102,170,95,41,62),
5346 (1,4,75,104,173,97,41,63),
5347 (1,4,76,105,176,98,41,64),
5348 (1,4,77,107,179,100,42,65),
5349 (1,4,78,109,183,106,42,66),
5350 (1,4,79,111,186,107,43,67),
5351 (1,4,80,113,189,109,43,69),
5352 (1,5,1,20,20,20,22,23),
5353 (1,5,2,20,20,20,23,24),
5354 (1,5,3,20,20,21,25,26),
5355 (1,5,4,20,21,21,26,27),
5356 (1,5,5,21,21,21,27,28),
5357 (1,5,6,21,21,22,29,30),
5358 (1,5,7,21,21,22,30,31),
5359 (1,5,8,21,22,23,31,33),
5360 (1,5,9,21,22,23,33,34),
5361 (1,5,10,21,22,23,34,36),
5362 (1,5,11,22,22,24,36,37),
5363 (1,5,12,22,23,24,37,39),
5364 (1,5,13,22,23,25,38,40),
5365 (1,5,14,22,23,25,40,42),
5366 (1,5,15,22,23,25,41,43),
5367 (1,5,16,23,24,26,43,45),
5368 (1,5,17,23,24,26,44,46),
5369 (1,5,18,23,24,27,46,48),
5370 (1,5,19,23,24,27,47,49),
5371 (1,5,20,23,25,28,49,51),
5372 (1,5,21,24,25,28,51,53),
5373 (1,5,22,24,25,29,52,54),
5374 (1,5,23,24,26,29,54,56),
5375 (1,5,24,24,26,30,55,58),
5376 (1,5,25,25,26,30,57,59),
5377 (1,5,26,25,27,31,59,61),
5378 (1,5,27,25,27,31,60,63),
5379 (1,5,28,25,27,32,62,65),
5380 (1,5,29,25,28,32,64,66),
5381 (1,5,30,26,28,33,65,68),
5382 (1,5,31,26,28,33,67,70),
5383 (1,5,32,26,29,34,69,72),
5384 (1,5,33,27,29,34,70,73),
5385 (1,5,34,27,29,35,72,75),
5386 (1,5,35,27,30,35,74,77),
5387 (1,5,36,27,30,36,76,79),
5388 (1,5,37,28,30,36,78,81),
5389 (1,5,38,28,31,37,79,83),
5390 (1,5,39,28,31,38,81,85),
5391 (1,5,40,28,31,38,83,87),
5392 (1,5,41,29,32,39,85,88),
5393 (1,5,42,29,32,39,87,90),
5394 (1,5,43,29,33,40,89,92),
5395 (1,5,44,30,33,40,91,94),
5396 (1,5,45,30,33,41,92,96),
5397 (1,5,46,30,34,42,94,98),
5398 (1,5,47,31,34,42,96,100),
5399 (1,5,48,31,35,43,98,102),
5400 (1,5,49,31,35,44,100,104),
5401 (1,5,50,32,36,44,102,106),
5402 (1,5,51,32,36,45,104,109),
5403 (1,5,52,32,36,45,106,111),
5404 (1,5,53,33,37,46,108,113),
5405 (1,5,54,33,37,47,110,115),
5406 (1,5,55,33,38,47,112,117),
5407 (1,5,56,34,38,48,114,119),
5408 (1,5,57,34,39,49,117,121),
5409 (1,5,58,34,39,49,119,124),
5410 (1,5,59,35,40,50,121,126),
5411 (1,5,60,35,40,51,123,128),
5412 (1,5,61,35,41,51,125,130),
5413 (1,5,62,36,41,52,127,132),
5414 (1,5,63,36,41,53,129,135),
5415 (1,5,64,37,42,54,132,137),
5416 (1,5,65,37,42,54,134,139),
5417 (1,5,66,37,43,55,136,142),
5418 (1,5,67,38,43,56,138,144),
5419 (1,5,68,38,44,57,140,146),
5420 (1,5,69,39,44,57,143,149),
5421 (1,5,70,39,45,58,145,151),
5422 (1,5,71,39,46,59,148,158),
5423 (1,5,72,40,46,59,151,161),
5424 (1,5,73,40,47,60,154,164),
5425 (1,5,74,41,47,61,156,167),
5426 (1,5,75,41,48,62,159,170),
5427 (1,5,76,41,49,63,162,174),
5428 (1,5,77,42,49,64,165,177),
5429 (1,5,78,42,50,65,168,180),
5430 (1,5,79,43,50,66,171,183),
5431 (1,5,80,43,51,67,174,186),
5432 (1,6,1,23,20,22,20,20),
5433 (1,6,2,24,21,23,20,20),
5434 (1,6,3,26,22,24,20,21),
5435 (1,6,4,27,22,26,20,21),
5436 (1,6,5,28,23,27,20,21),
5437 (1,6,6,30,24,28,20,21),
5438 (1,6,7,31,25,29,21,22),
5439 (1,6,8,32,26,30,21,22),
5440 (1,6,9,34,26,32,21,22),
5441 (1,6,10,35,27,33,21,23),
5442 (1,6,11,36,28,34,21,23),
5443 (1,6,12,38,29,35,21,23),
5444 (1,6,13,39,30,37,21,24),
5445 (1,6,14,41,31,38,21,24),
5446 (1,6,15,42,32,39,21,24),
5447 (1,6,16,44,33,41,21,25),
5448 (1,6,17,45,34,42,22,25),
5449 (1,6,18,47,34,43,22,25),
5450 (1,6,19,48,35,45,22,26),
5451 (1,6,20,50,36,46,22,26),
5452 (1,6,21,51,37,48,22,26),
5453 (1,6,22,53,38,49,22,27),
5454 (1,6,23,54,39,51,22,27),
5455 (1,6,24,56,40,52,23,28),
5456 (1,6,25,58,41,53,23,28),
5457 (1,6,26,59,42,55,23,28),
5458 (1,6,27,61,43,56,23,29),
5459 (1,6,28,63,44,58,23,29),
5460 (1,6,29,64,45,59,23,30),
5461 (1,6,30,66,46,61,24,30),
5462 (1,6,31,68,47,62,24,30),
5463 (1,6,32,69,48,64,24,31),
5464 (1,6,33,71,50,66,24,31),
5465 (1,6,34,73,51,67,24,32),
5466 (1,6,35,74,52,69,24,32),
5467 (1,6,36,76,53,70,25,33),
5468 (1,6,37,78,54,72,25,33),
5469 (1,6,38,80,55,74,25,34),
5470 (1,6,39,82,56,75,25,34),
5471 (1,6,40,83,57,77,25,35),
5472 (1,6,41,85,58,79,26,35),
5473 (1,6,42,87,60,80,26,35),
5474 (1,6,43,89,61,82,26,36),
5475 (1,6,44,91,62,84,26,36),
5476 (1,6,45,93,63,85,26,37),
5477 (1,6,46,95,64,87,27,37),
5478 (1,6,47,97,66,89,27,38),
5479 (1,6,48,99,67,91,27,38),
5480 (1,6,49,101,68,93,27,39),
5481 (1,6,50,103,69,94,28,40),
5482 (1,6,51,105,71,96,28,40),
5483 (1,6,52,106,72,97,28,41),
5484 (1,6,53,107,72,98,28,41),
5485 (1,6,54,107,73,98,29,42),
5486 (1,6,55,108,73,99,29,43),
5487 (1,6,56,111,75,102,29,44),
5488 (1,6,57,113,76,104,29,44),
5489 (1,6,58,118,77,106,30,45),
5490 (1,6,59,118,79,108,30,45),
5491 (1,6,60,123,80,110,30,46),
5492 (1,6,61,125,81,112,30,47),
5493 (1,6,62,128,83,114,30,47),
5494 (1,6,63,130,84,117,31,48),
5495 (1,6,64,130,86,119,31,48),
5496 (1,6,65,140,87,128,31,49),
5497 (1,6,66,143,89,131,31,50),
5498 (1,6,67,146,90,133,32,50),
5499 (1,6,68,148,92,135,32,51),
5500 (1,6,69,151,93,138,32,52),
5501 (1,6,70,154,95,140,32,52),
5502 (1,6,71,162,97,144,33,53),
5503 (1,6,72,164,98,146,33,54),
5504 (1,6,73,165,100,148,33,55),
5505 (1,6,74,166,102,151,33,55),
5506 (1,6,75,169,103,154,34,56),
5507 (1,6,76,172,105,157,34,57),
5508 (1,6,77,175,107,157,34,58),
5509 (1,6,78,176,108,157,34,58),
5510 (1,6,79,177,110,157,35,59),
5511 (1,6,80,180,112,160,35,60),
5512 (1,8,1,20,20,20,23,22),
5513 (1,8,2,20,20,20,24,23),
5514 (1,8,3,20,20,21,26,25),
5515 (1,8,4,20,20,21,27,26),
5516 (1,8,5,20,21,21,28,27),
5517 (1,8,6,20,21,21,30,29),
5518 (1,8,7,21,21,22,31,30),
5519 (1,8,8,21,21,22,33,31),
5520 (1,8,9,21,21,22,34,33),
5521 (1,8,10,21,21,23,36,34),
5522 (1,8,11,21,22,23,37,36),
5523 (1,8,12,21,22,23,39,37),
5524 (1,8,13,21,22,24,40,38),
5525 (1,8,14,21,22,24,42,40),
5526 (1,8,15,21,22,24,43,41),
5527 (1,8,16,21,23,25,45,43),
5528 (1,8,17,22,23,25,46,44),
5529 (1,8,18,22,23,25,48,46),
5530 (1,8,19,22,23,26,49,47),
5531 (1,8,20,22,23,26,51,49),
5532 (1,8,21,22,24,26,53,51),
5533 (1,8,22,22,24,27,54,52),
5534 (1,8,23,22,24,27,56,54),
5535 (1,8,24,23,24,28,58,55),
5536 (1,8,25,23,25,28,59,57),
5537 (1,8,26,23,25,28,61,59),
5538 (1,8,27,23,25,29,63,60),
5539 (1,8,28,23,25,29,65,62),
5540 (1,8,29,23,25,30,66,64),
5541 (1,8,30,24,26,30,68,65),
5542 (1,8,31,24,26,30,70,67),
5543 (1,8,32,24,26,31,72,69),
5544 (1,8,33,24,27,31,73,70),
5545 (1,8,34,24,27,32,75,72),
5546 (1,8,35,24,27,32,77,74),
5547 (1,8,36,25,27,33,79,76),
5548 (1,8,37,25,28,33,81,78),
5549 (1,8,38,25,28,34,83,79),
5550 (1,8,39,25,28,34,85,81),
5551 (1,8,40,25,28,35,87,83),
5552 (1,8,41,26,29,35,88,85),
5553 (1,8,42,26,29,35,90,87),
5554 (1,8,43,26,29,36,92,89),
5555 (1,8,44,26,30,36,94,91),
5556 (1,8,45,26,30,37,96,92),
5557 (1,8,46,27,30,37,98,94),
5558 (1,8,47,27,31,38,100,96),
5559 (1,8,48,27,31,38,102,98),
5560 (1,8,49,27,31,39,104,100),
5561 (1,8,50,28,32,40,106,102),
5562 (1,8,51,28,32,40,109,104),
5563 (1,8,52,28,32,41,111,106),
5564 (1,8,53,28,33,41,113,108),
5565 (1,8,54,29,33,42,115,110),
5566 (1,8,55,29,33,42,117,112),
5567 (1,8,56,29,34,43,119,114),
5568 (1,8,57,29,34,43,121,117),
5569 (1,8,58,30,34,44,124,119),
5570 (1,8,59,30,35,44,126,121),
5571 (1,8,60,30,35,45,128,123),
5572 (1,8,61,30,35,46,130,125),
5573 (1,8,62,31,36,46,132,127),
5574 (1,8,63,31,36,47,135,129),
5575 (1,8,64,31,37,47,137,132),
5576 (1,8,65,32,37,48,139,134),
5577 (1,8,66,32,37,49,142,136),
5578 (1,8,67,32,38,49,144,138),
5579 (1,8,68,32,38,50,146,140),
5580 (1,8,69,33,39,50,149,143),
5581 (1,8,70,33,39,51,151,145),
5582 (1,8,71,33,39,52,154,152),
5583 (1,8,72,33,40,53,160,155),
5584 (1,8,73,33,40,54,160,158),
5585 (1,8,74,34,41,54,163,160),
5586 (1,8,75,34,41,55,166,163),
5587 (1,8,76,34,41,56,169,166),
5588 (1,8,77,35,42,57,172,169),
5589 (1,8,78,35,42,57,175,173),
5590 (1,8,79,35,43,58,178,176),
5591 (1,8,80,36,43,59,181,179),
5592 (1,9,1,20,20,21,22,22),
5593 (1,9,2,20,20,22,23,23),
5594 (1,9,3,21,21,22,24,24),
5595 (1,9,4,21,21,23,26,25),
5596 (1,9,5,21,21,23,27,27),
5597 (1,9,6,21,22,24,28,28),
5598 (1,9,7,22,22,24,29,29),
5599 (1,9,8,22,23,25,30,30),
5600 (1,9,9,22,23,26,32,31),
5601 (1,9,10,23,23,26,33,33),
5602 (1,9,11,23,24,27,34,34),
5603 (1,9,12,23,24,27,35,35),
5604 (1,9,13,24,25,28,37,36),
5605 (1,9,14,24,25,29,38,38),
5606 (1,9,15,24,25,29,39,39),
5607 (1,9,16,25,26,30,41,40),
5608 (1,9,17,25,26,31,42,42),
5609 (1,9,18,25,27,31,43,43),
5610 (1,9,19,26,27,32,45,44),
5611 (1,9,20,26,28,33,46,46),
5612 (1,9,21,26,28,33,48,47),
5613 (1,9,22,27,29,34,49,49),
5614 (1,9,23,27,29,35,51,50),
5615 (1,9,24,28,30,35,52,51),
5616 (1,9,25,28,30,36,53,53),
5617 (1,9,26,28,31,37,55,54),
5618 (1,9,27,29,31,37,56,56),
5619 (1,9,28,29,32,38,58,57),
5620 (1,9,29,30,32,39,59,59),
5621 (1,9,30,30,33,40,61,60),
5622 (1,9,31,30,33,40,62,62),
5623 (1,9,32,31,34,41,64,63),
5624 (1,9,33,31,34,42,66,65),
5625 (1,9,34,32,35,43,67,66),
5626 (1,9,35,32,35,44,69,68),
5627 (1,9,36,33,36,44,70,69),
5628 (1,9,37,33,36,45,72,71),
5629 (1,9,38,34,37,46,74,73),
5630 (1,9,39,34,38,47,75,74),
5631 (1,9,40,35,38,48,77,76),
5632 (1,9,41,35,39,48,79,78),
5633 (1,9,42,35,39,49,80,79),
5634 (1,9,43,36,40,50,82,81),
5635 (1,9,44,36,40,51,84,83),
5636 (1,9,45,37,41,52,85,84),
5637 (1,9,46,37,42,53,87,86),
5638 (1,9,47,38,42,54,89,88),
5639 (1,9,48,38,43,55,91,89),
5640 (1,9,49,39,44,55,93,91),
5641 (1,9,50,40,44,56,94,93),
5642 (1,9,51,40,45,57,96,95),
5643 (1,9,52,41,45,58,98,97),
5644 (1,9,53,41,46,59,100,98),
5645 (1,9,54,42,47,60,102,100),
5646 (1,9,55,42,47,61,103,102),
5647 (1,9,56,43,48,62,105,104),
5648 (1,9,57,43,49,63,107,106),
5649 (1,9,58,44,49,64,109,108),
5650 (1,9,59,44,50,65,111,109),
5651 (1,9,60,45,51,66,113,111),
5652 (1,9,61,46,51,67,115,113),
5653 (1,9,62,46,52,68,117,115),
5654 (1,9,63,47,53,69,119,117),
5655 (1,9,64,47,54,70,121,119),
5656 (1,9,65,48,54,71,123,121),
5657 (1,9,66,49,55,72,125,123),
5658 (1,9,67,49,56,73,127,125),
5659 (1,9,68,50,57,74,129,127),
5660 (1,9,69,50,57,75,131,129),
5661 (1,9,70,51,58,76,133,131),
5662 (1,9,71,52,59,78,135,146),
5663 (1,9,72,53,59,79,138,148),
5664 (1,9,73,54,60,80,140,151),
5665 (1,9,74,54,61,89,143,154),
5666 (1,9,75,55,62,91,145,156),
5667 (1,9,76,56,63,92,148,159),
5668 (1,9,77,57,64,93,151,162),
5669 (1,9,78,57,65,95,153,165),
5670 (1,9,79,58,66,96,156,168),
5671 (1,9,80,59,67,97,159,170),
5672 (2,1,1,26,17,24,17,23),
5673 (2,1,2,27,18,25,17,23),
5674 (2,1,3,29,19,26,17,24),
5675 (2,1,4,30,19,27,17,24),
5676 (2,1,5,31,20,29,17,24),
5677 (2,1,6,32,21,30,17,24),
5678 (2,1,7,34,22,31,18,25),
5679 (2,1,8,35,23,32,18,25),
5680 (2,1,9,37,24,34,18,25),
5681 (2,1,10,38,24,35,18,26),
5682 (2,1,11,39,25,36,18,26),
5683 (2,1,12,41,26,37,18,26),
5684 (2,1,13,42,27,39,18,27),
5685 (2,1,14,44,28,40,18,27),
5686 (2,1,15,45,29,41,18,27),
5687 (2,1,16,47,30,43,19,28),
5688 (2,1,17,48,31,44,19,28),
5689 (2,1,18,50,32,45,19,28),
5690 (2,1,19,51,33,47,19,29),
5691 (2,1,20,53,34,48,19,29),
5692 (2,1,21,54,34,50,19,29),
5693 (2,1,22,56,35,51,19,30),
5694 (2,1,23,57,36,52,20,30),
5695 (2,1,24,59,37,54,20,30),
5696 (2,1,25,60,38,55,20,31),
5697 (2,1,26,62,39,57,20,31),
5698 (2,1,27,64,40,58,20,32),
5699 (2,1,28,65,41,60,20,32),
5700 (2,1,29,67,43,61,21,32),
5701 (2,1,30,69,44,63,21,33),
5702 (2,1,31,70,45,64,21,33),
5703 (2,1,32,72,46,66,21,34),
5704 (2,1,33,74,47,67,21,34),
5705 (2,1,34,76,48,69,21,35),
5706 (2,1,35,77,49,71,22,35),
5707 (2,1,36,79,50,72,22,36),
5708 (2,1,37,81,51,74,22,36),
5709 (2,1,38,83,52,76,22,36),
5710 (2,1,39,84,53,77,22,37),
5711 (2,1,40,86,55,79,23,37),
5712 (2,1,41,88,56,81,23,38),
5713 (2,1,42,90,57,82,23,38),
5714 (2,1,43,92,58,84,23,39),
5715 (2,1,44,94,59,86,23,39),
5716 (2,1,45,96,60,87,24,40),
5717 (2,1,46,98,62,89,24,40),
5718 (2,1,47,100,63,91,24,41),
5719 (2,1,48,101,64,93,24,41),
5720 (2,1,49,103,65,94,25,42),
5721 (2,1,50,105,66,96,25,42),
5722 (2,1,51,107,68,98,25,43),
5723 (2,1,52,109,69,100,25,43),
5724 (2,1,53,111,70,102,25,44),
5725 (2,1,54,113,71,104,26,45),
5726 (2,1,55,115,73,105,26,45),
5727 (2,1,56,118,74,107,26,46),
5728 (2,1,57,120,75,109,26,46),
5729 (2,1,58,122,77,111,27,47),
5730 (2,1,59,124,78,113,27,47),
5731 (2,1,60,126,79,115,27,48),
5732 (2,1,61,128,81,117,27,48),
5733 (2,1,62,130,82,119,28,49),
5734 (2,1,63,132,83,121,28,50),
5735 (2,1,64,135,85,123,28,50),
5736 (2,1,65,137,86,125,29,51),
5737 (2,1,66,139,87,127,29,52),
5738 (2,1,67,141,89,129,29,52),
5739 (2,1,68,143,90,131,29,53),
5740 (2,1,69,146,92,133,30,53),
5741 (2,1,70,148,93,135,30,54),
5742 (2,1,71,157,94,142,30,55),
5743 (2,1,72,162,96,148,30,56),
5744 (2,1,73,165,98,150,30,57),
5745 (2,1,74,168,99,153,31,57),
5746 (2,1,75,170,101,154,31,58),
5747 (2,1,76,172,103,156,31,59),
5748 (2,1,77,174,105,159,32,60),
5749 (2,1,78,179,106,162,32,60),
5750 (2,1,79,184,108,167,32,61),
5751 (2,1,80,187,110,170,33,62),
5752 (2,3,1,23,20,23,17,24),
5753 (2,3,2,23,21,24,18,25),
5754 (2,3,3,24,23,25,18,25),
5755 (2,3,4,24,24,26,19,26),
5756 (2,3,5,25,25,27,19,26),
5757 (2,3,6,25,27,28,20,27),
5758 (2,3,7,26,28,28,21,28),
5759 (2,3,8,26,30,29,21,28),
5760 (2,3,9,26,31,30,22,29),
5761 (2,3,10,27,33,31,22,30),
5762 (2,3,11,27,34,32,23,30),
5763 (2,3,12,28,36,33,24,31),
5764 (2,3,13,28,37,34,24,32),
5765 (2,3,14,29,39,35,25,33),
5766 (2,3,15,29,40,36,26,33),
5767 (2,3,16,30,42,37,26,34),
5768 (2,3,17,30,43,39,27,35),
5769 (2,3,18,31,45,40,28,35),
5770 (2,3,19,31,47,41,28,36),
5771 (2,3,20,32,48,42,29,37),
5772 (2,3,21,32,50,43,30,38),
5773 (2,3,22,33,51,44,31,39),
5774 (2,3,23,34,53,45,31,39),
5775 (2,3,24,34,55,46,32,40),
5776 (2,3,25,35,57,47,33,41),
5777 (2,3,26,35,58,48,34,42),
5778 (2,3,27,36,60,50,34,43),
5779 (2,3,28,36,62,51,35,43),
5780 (2,3,29,37,63,52,36,44),
5781 (2,3,30,38,65,53,37,45),
5782 (2,3,31,38,67,54,37,46),
5783 (2,3,32,39,69,56,38,47),
5784 (2,3,33,39,71,57,39,48),
5785 (2,3,34,40,72,58,40,49),
5786 (2,3,35,41,74,59,41,49),
5787 (2,3,36,41,76,61,42,50),
5788 (2,3,37,42,78,62,42,51),
5789 (2,3,38,43,80,63,43,52),
5790 (2,3,39,43,82,64,44,53),
5791 (2,3,40,44,84,66,45,54),
5792 (2,3,41,45,86,67,46,55),
5793 (2,3,42,45,88,68,47,56),
5794 (2,3,43,46,90,70,47,57),
5795 (2,3,44,47,91,71,48,58),
5796 (2,3,45,47,93,72,49,59),
5797 (2,3,46,48,95,74,50,60),
5798 (2,3,47,49,98,75,51,61),
5799 (2,3,48,50,100,77,52,62),
5800 (2,3,49,50,102,78,53,63),
5801 (2,3,50,51,104,79,54,64),
5802 (2,3,51,52,106,81,55,65),
5803 (2,3,52,52,108,82,56,66),
5804 (2,3,53,53,110,84,57,67),
5805 (2,3,54,54,112,85,58,68),
5806 (2,3,55,55,114,87,59,69),
5807 (2,3,56,55,116,88,60,70),
5808 (2,3,57,56,118,90,61,71),
5809 (2,3,58,57,121,91,62,72),
5810 (2,3,59,58,123,93,63,73),
5811 (2,3,60,59,125,94,64,74),
5812 (2,3,61,59,127,96,65,76),
5813 (2,3,62,60,130,97,66,77),
5814 (2,3,63,61,132,99,67,78),
5815 (2,3,64,62,134,100,68,79),
5816 (2,3,65,63,136,102,69,80),
5817 (2,3,66,64,139,104,70,81),
5818 (2,3,67,64,141,105,71,82),
5819 (2,3,68,65,143,107,72,84),
5820 (2,3,69,66,146,108,73,85),
5821 (2,3,70,67,148,110,74,86),
5822 (2,3,71,68,151,112,75,87),
5823 (2,3,72,69,154,114,76,88),
5824 (2,3,73,70,157,116,77,90),
5825 (2,3,74,71,160,118,79,91),
5826 (2,3,75,72,163,120,80,93),
5827 (2,3,76,73,166,122,81,94),
5828 (2,3,77,74,169,124,83,96),
5829 (2,3,78,75,172,126,84,97),
5830 (2,3,79,76,175,128,85,99),
5831 (2,3,80,77,178,130,87,100),
5832 (2,4,1,24,20,23,17,23),
5833 (2,4,2,25,21,24,17,23),
5834 (2,4,3,25,23,24,17,24),
5835 (2,4,4,26,24,25,17,24),
5836 (2,4,5,27,26,26,18,24),
5837 (2,4,6,28,27,26,18,25),
5838 (2,4,7,29,29,27,18,25),
5839 (2,4,8,29,30,28,18,26),
5840 (2,4,9,30,32,29,18,26),
5841 (2,4,10,31,33,29,19,26),
5842 (2,4,11,32,35,30,19,27),
5843 (2,4,12,33,37,31,19,27),
5844 (2,4,13,34,38,32,19,28),
5845 (2,4,14,34,40,32,19,28),
5846 (2,4,15,35,41,33,19,28),
5847 (2,4,16,36,43,34,20,29),
5848 (2,4,17,37,45,35,20,29),
5849 (2,4,18,38,46,36,20,30),
5850 (2,4,19,39,48,37,20,30),
5851 (2,4,20,40,50,37,21,31),
5852 (2,4,21,41,52,38,21,31),
5853 (2,4,22,42,53,39,21,31),
5854 (2,4,23,43,55,40,21,32),
5855 (2,4,24,43,57,41,21,32),
5856 (2,4,25,44,59,42,22,33),
5857 (2,4,26,45,60,43,22,33),
5858 (2,4,27,46,62,44,22,34),
5859 (2,4,28,47,64,44,22,34),
5860 (2,4,29,48,66,45,23,35),
5861 (2,4,30,49,68,46,23,35),
5862 (2,4,31,50,70,47,23,36),
5863 (2,4,32,51,72,48,23,36),
5864 (2,4,33,53,73,49,24,37),
5865 (2,4,34,54,75,50,24,38),
5866 (2,4,35,55,77,51,24,38),
5867 (2,4,36,56,79,52,24,39),
5868 (2,4,37,57,81,53,25,39),
5869 (2,4,38,58,83,54,25,40),
5870 (2,4,39,59,85,55,25,40),
5871 (2,4,40,60,87,56,26,41),
5872 (2,4,41,61,89,57,26,41),
5873 (2,4,42,62,91,58,26,42),
5874 (2,4,43,63,93,59,27,43),
5875 (2,4,44,65,95,60,27,43),
5876 (2,4,45,66,98,61,27,44),
5877 (2,4,46,67,100,62,27,44),
5878 (2,4,47,68,102,64,28,45),
5879 (2,4,48,69,104,65,28,46),
5880 (2,4,49,71,106,66,28,46),
5881 (2,4,50,72,108,67,29,47),
5882 (2,4,51,73,110,68,29,48),
5883 (2,4,52,74,113,69,29,48),
5884 (2,4,53,75,115,70,30,49),
5885 (2,4,54,77,117,71,30,50),
5886 (2,4,55,78,119,73,30,50),
5887 (2,4,56,79,122,74,31,51),
5888 (2,4,57,80,124,75,31,52),
5889 (2,4,58,82,126,76,31,52),
5890 (2,4,59,83,129,77,32,53),
5891 (2,4,60,84,131,78,32,54),
5892 (2,4,61,86,133,80,33,54),
5893 (2,4,62,87,136,81,33,55),
5894 (2,4,63,88,138,82,33,56),
5895 (2,4,64,90,140,83,34,57),
5896 (2,4,65,91,143,85,34,57),
5897 (2,4,66,92,145,86,34,58),
5898 (2,4,67,94,148,87,35,59),
5899 (2,4,68,95,150,88,35,59),
5900 (2,4,69,97,153,90,36,60),
5901 (2,4,70,98,155,91,36,61),
5902 (2,4,71,100,158,92,36,62),
5903 (2,4,72,102,161,94,37,62),
5904 (2,4,73,103,164,99,37,63),
5905 (2,4,74,105,167,100,38,64),
5906 (2,4,75,107,170,102,38,65),
5907 (2,4,76,108,173,102,38,66),
5908 (2,4,77,110,176,102,39,67),
5909 (2,4,78,112,180,103,39,68),
5910 (2,4,79,114,183,105,40,69),
5911 (2,4,80,116,186,107,40,70),
5912 (2,6,1,26,17,24,17,23),
5913 (2,6,2,27,18,25,17,23),
5914 (2,6,3,29,19,26,17,24),
5915 (2,6,4,30,19,27,17,24),
5916 (2,6,5,31,20,29,17,24),
5917 (2,6,6,32,21,30,17,24),
5918 (2,6,7,34,22,31,18,25),
5919 (2,6,8,35,23,32,18,25),
5920 (2,6,9,37,24,34,18,25),
5921 (2,6,10,38,24,35,18,26),
5922 (2,6,11,39,25,36,18,26),
5923 (2,6,12,41,26,37,18,26),
5924 (2,6,13,42,27,39,18,27),
5925 (2,6,14,44,28,40,18,27),
5926 (2,6,15,45,29,41,18,27),
5927 (2,6,16,47,30,43,19,28),
5928 (2,6,17,48,31,44,19,28),
5929 (2,6,18,50,32,45,19,28),
5930 (2,6,19,51,33,47,19,29),
5931 (2,6,20,53,34,48,19,29),
5932 (2,6,21,54,34,50,19,29),
5933 (2,6,22,56,35,51,19,30),
5934 (2,6,23,57,36,52,20,30),
5935 (2,6,24,59,37,54,20,30),
5936 (2,6,25,60,38,55,20,31),
5937 (2,6,26,62,39,57,20,31),
5938 (2,6,27,64,40,58,20,32),
5939 (2,6,28,65,41,60,20,32),
5940 (2,6,29,67,43,61,21,32),
5941 (2,6,30,69,44,63,21,33),
5942 (2,6,31,70,45,64,21,33),
5943 (2,6,32,72,46,66,21,34),
5944 (2,6,33,74,47,67,21,34),
5945 (2,6,34,76,48,69,21,35),
5946 (2,6,35,77,49,71,22,35),
5947 (2,6,36,79,50,72,22,36),
5948 (2,6,37,81,51,74,22,36),
5949 (2,6,38,83,52,76,22,36),
5950 (2,6,39,84,53,77,22,37),
5951 (2,6,40,86,55,79,23,37),
5952 (2,6,41,88,56,81,23,38),
5953 (2,6,42,90,57,82,23,38),
5954 (2,6,43,92,58,84,23,39),
5955 (2,6,44,94,59,86,23,39),
5956 (2,6,45,96,60,87,24,40),
5957 (2,6,46,98,62,89,24,40),
5958 (2,6,47,100,63,91,24,41),
5959 (2,6,48,101,64,93,24,41),
5960 (2,6,49,103,65,94,25,42),
5961 (2,6,50,105,66,96,25,42),
5962 (2,6,51,107,68,98,25,43),
5963 (2,6,52,109,69,100,25,43),
5964 (2,6,53,110,69,100,25,44),
5965 (2,6,54,111,70,101,26,45),
5966 (2,6,55,111,70,101,26,45),
5967 (2,6,56,114,72,104,26,46),
5968 (2,6,57,116,73,106,26,46),
5969 (2,6,58,118,74,108,27,47),
5970 (2,6,59,124,76,110,27,47),
5971 (2,6,60,126,77,112,27,48),
5972 (2,6,61,128,78,114,27,49),
5973 (2,6,62,131,80,116,27,49),
5974 (2,6,63,133,81,119,28,50),
5975 (2,6,64,136,83,121,28,50),
5976 (2,6,65,136,84,123,28,51),
5977 (2,6,66,142,86,126,28,52),
5978 (2,6,67,145,87,128,29,52),
5979 (2,6,68,147,89,130,29,53),
5980 (2,6,69,150,90,133,29,54),
5981 (2,6,70,157,92,135,29,54),
5982 (2,6,71,160,94,138,30,55),
5983 (2,6,72,163,95,140,30,56),
5984 (2,6,73,166,97,151,30,57),
5985 (2,6,74,169,99,154,30,57),
5986 (2,6,75,172,100,156,31,58),
5987 (2,6,76,175,102,160,31,59),
5988 (2,6,77,179,104,162,31,60),
5989 (2,6,78,182,105,165,31,60),
5990 (2,6,79,191,107,168,32,61),
5991 (2,6,80,194,109,171,32,62),
5992 (2,7,1,24,17,23,18,25),
5993 (2,7,2,25,17,24,19,26),
5994 (2,7,3,26,18,25,20,27),
5995 (2,7,4,26,18,26,21,28),
5996 (2,7,5,27,19,27,22,29),
5997 (2,7,6,28,19,28,23,30),
5998 (2,7,7,29,20,29,24,31),
5999 (2,7,8,30,20,30,25,32),
6000 (2,7,9,31,21,31,26,33),
6001 (2,7,10,32,21,32,27,34),
6002 (2,7,11,33,22,33,28,36),
6003 (2,7,12,34,22,34,29,37),
6004 (2,7,13,34,23,35,30,38),
6005 (2,7,14,35,23,36,31,39),
6006 (2,7,15,36,24,37,32,40),
6007 (2,7,16,37,24,39,33,41),
6008 (2,7,17,38,25,40,34,43),
6009 (2,7,18,39,25,41,35,44),
6010 (2,7,19,40,26,42,36,45),
6011 (2,7,20,41,26,43,37,46),
6012 (2,7,21,42,27,44,38,47),
6013 (2,7,22,43,27,45,39,49),
6014 (2,7,23,44,28,47,40,50),
6015 (2,7,24,45,28,48,41,51),
6016 (2,7,25,47,29,49,43,52),
6017 (2,7,26,48,30,50,44,54),
6018 (2,7,27,49,30,52,45,55),
6019 (2,7,28,50,31,53,46,56),
6020 (2,7,29,51,31,54,47,58),
6021 (2,7,30,52,32,55,48,59),
6022 (2,7,31,53,33,57,50,60),
6023 (2,7,32,54,33,58,51,62),
6024 (2,7,33,55,34,59,52,63),
6025 (2,7,34,57,34,61,53,65),
6026 (2,7,35,58,35,62,55,66),
6027 (2,7,36,59,36,63,56,67),
6028 (2,7,37,60,36,65,57,69),
6029 (2,7,38,61,37,66,58,70),
6030 (2,7,39,62,38,67,60,72),
6031 (2,7,40,64,38,69,61,73),
6032 (2,7,41,65,39,70,62,75),
6033 (2,7,42,66,40,72,64,76),
6034 (2,7,43,67,40,73,65,78),
6035 (2,7,44,69,41,74,66,79),
6036 (2,7,45,70,42,76,68,81),
6037 (2,7,46,71,42,77,69,82),
6038 (2,7,47,72,43,79,70,84),
6039 (2,7,48,74,44,80,72,85),
6040 (2,7,49,75,45,82,73,87),
6041 (2,7,50,76,45,83,75,89),
6042 (2,7,51,78,46,85,76,90),
6043 (2,7,52,79,47,86,77,92),
6044 (2,7,53,80,47,88,79,93),
6045 (2,7,54,82,48,90,80,95),
6046 (2,7,55,83,49,91,82,97),
6047 (2,7,56,85,50,93,83,98),
6048 (2,7,57,86,50,94,85,100),
6049 (2,7,58,87,51,96,86,102),
6050 (2,7,59,89,52,97,88,103),
6051 (2,7,60,90,53,99,89,105),
6052 (2,7,61,92,54,101,91,107),
6053 (2,7,62,93,54,102,92,109),
6054 (2,7,63,95,55,104,94,110),
6055 (2,7,64,96,56,106,95,112),
6056 (2,7,65,97,57,107,97,114),
6057 (2,7,66,99,58,109,99,116),
6058 (2,7,67,100,58,111,100,118),
6059 (2,7,68,102,59,113,102,119),
6060 (2,7,69,103,60,114,103,121),
6061 (2,7,70,105,61,116,105,123),
6062 (2,7,71,106,62,118,117,125),
6063 (2,7,72,108,63,120,119,128),
6064 (2,7,73,110,64,122,122,130),
6065 (2,7,74,112,65,125,124,132),
6066 (2,7,75,114,66,127,126,134),
6067 (2,7,76,116,67,129,128,137),
6068 (2,7,77,117,68,131,128,139),
6069 (2,7,78,119,69,133,133,141),
6070 (2,7,79,121,70,136,135,144),
6071 (2,7,80,123,71,138,137,146),
6072 (2,9,1,23,17,23,19,25),
6073 (2,9,2,23,17,24,20,26),
6074 (2,9,3,24,18,24,21,27),
6075 (2,9,4,24,18,25,23,28),
6076 (2,9,5,24,18,25,24,30),
6077 (2,9,6,24,19,26,25,31),
6078 (2,9,7,25,19,26,26,32),
6079 (2,9,8,25,20,27,27,33),
6080 (2,9,9,25,20,27,29,34),
6081 (2,9,10,26,20,28,30,36),
6082 (2,9,11,26,21,29,31,37),
6083 (2,9,12,26,21,29,33,38),
6084 (2,9,13,27,22,30,34,39),
6085 (2,9,14,27,22,31,35,41),
6086 (2,9,15,27,23,31,37,42),
6087 (2,9,16,28,23,32,38,43),
6088 (2,9,17,28,23,32,39,45),
6089 (2,9,18,28,24,33,41,46),
6090 (2,9,19,29,24,34,42,47),
6091 (2,9,20,29,25,34,43,49),
6092 (2,9,21,29,25,35,45,50),
6093 (2,9,22,30,26,36,46,51),
6094 (2,9,23,30,26,37,48,53),
6095 (2,9,24,30,27,37,49,54),
6096 (2,9,25,31,27,38,51,56),
6097 (2,9,26,31,28,39,52,57),
6098 (2,9,27,32,28,39,54,59),
6099 (2,9,28,32,29,40,55,60),
6100 (2,9,29,32,29,41,57,62),
6101 (2,9,30,33,30,42,58,63),
6102 (2,9,31,33,30,42,60,65),
6103 (2,9,32,34,31,43,61,66),
6104 (2,9,33,34,31,44,63,68),
6105 (2,9,34,35,32,45,64,69),
6106 (2,9,35,35,32,45,66,71),
6107 (2,9,36,36,33,46,68,72),
6108 (2,9,37,36,34,47,69,74),
6109 (2,9,38,36,34,48,71,76),
6110 (2,9,39,37,35,49,72,77),
6111 (2,9,40,37,35,50,74,79),
6112 (2,9,41,38,36,50,76,80),
6113 (2,9,42,38,36,51,77,82),
6114 (2,9,43,39,37,52,79,84),
6115 (2,9,44,39,38,53,81,85),
6116 (2,9,45,40,38,54,83,87),
6117 (2,9,46,40,39,55,84,89),
6118 (2,9,47,41,39,56,86,91),
6119 (2,9,48,41,40,56,88,92),
6120 (2,9,49,42,41,57,90,94),
6121 (2,9,50,42,41,58,91,96),
6122 (2,9,51,43,42,59,93,98),
6123 (2,9,52,43,43,60,95,99),
6124 (2,9,53,44,43,61,97,101),
6125 (2,9,54,45,44,62,99,103),
6126 (2,9,55,45,45,63,101,105),
6127 (2,9,56,46,45,64,102,107),
6128 (2,9,57,46,46,65,104,109),
6129 (2,9,58,47,47,66,106,110),
6130 (2,9,59,47,47,67,108,112),
6131 (2,9,60,48,48,68,110,114),
6132 (2,9,61,48,49,69,112,116),
6133 (2,9,62,49,49,70,114,118),
6134 (2,9,63,50,50,71,116,120),
6135 (2,9,64,50,51,72,118,122),
6136 (2,9,65,51,51,73,120,124),
6137 (2,9,66,52,52,74,122,126),
6138 (2,9,67,52,53,75,124,128),
6139 (2,9,68,53,54,76,126,130),
6140 (2,9,69,53,54,77,128,132),
6141 (2,9,70,54,55,78,130,134),
6142 (2,9,71,55,56,88,134,145),
6143 (2,9,72,56,56,89,135,147),
6144 (2,9,73,57,57,90,137,150),
6145 (2,9,74,57,58,91,142,153),
6146 (2,9,75,58,59,93,142,155),
6147 (2,9,76,59,60,94,145,158),
6148 (2,9,77,60,61,95,148,161),
6149 (2,9,78,60,62,97,150,164),
6150 (2,9,79,61,63,98,153,167),
6151 (2,9,80,62,64,99,156,169),
6152 (3,1,1,25,16,25,19,19),
6153 (3,1,2,26,17,26,19,19),
6154 (3,1,3,28,18,27,19,20),
6155 (3,1,4,29,18,28,19,20),
6156 (3,1,5,30,19,30,19,20),
6157 (3,1,6,31,20,31,19,20),
6158 (3,1,7,33,21,32,20,21),
6159 (3,1,8,34,22,33,20,21),
6160 (3,1,9,36,23,35,20,21),
6161 (3,1,10,37,23,36,20,22),
6162 (3,1,11,38,24,37,20,22),
6163 (3,1,12,40,25,38,20,22),
6164 (3,1,13,41,26,40,20,23),
6165 (3,1,14,43,27,41,20,23),
6166 (3,1,15,44,28,42,20,23),
6167 (3,1,16,46,29,44,21,24),
6168 (3,1,17,47,30,45,21,24),
6169 (3,1,18,49,31,46,21,24),
6170 (3,1,19,50,32,48,21,25),
6171 (3,1,20,52,33,49,21,25),
6172 (3,1,21,53,34,51,21,26),
6173 (3,1,22,55,34,52,21,26),
6174 (3,1,23,56,35,53,21,26),
6175 (3,1,24,58,36,55,22,27),
6176 (3,1,25,59,37,56,22,27),
6177 (3,1,26,61,38,58,22,27),
6178 (3,1,27,63,39,59,22,28),
6179 (3,1,28,64,41,61,22,28),
6180 (3,1,29,66,42,62,22,29),
6181 (3,1,30,68,43,64,23,29),
6182 (3,1,31,69,44,65,23,30),
6183 (3,1,32,71,45,67,23,30),
6184 (3,1,33,73,46,68,23,30),
6185 (3,1,34,75,47,70,23,31),
6186 (3,1,35,76,48,72,24,31),
6187 (3,1,36,78,49,73,24,32),
6188 (3,1,37,80,50,75,24,32),
6189 (3,1,38,82,51,76,24,33),
6190 (3,1,39,84,52,78,24,33),
6191 (3,1,40,85,54,80,24,34),
6192 (3,1,41,87,55,81,25,34),
6193 (3,1,42,89,56,83,25,35),
6194 (3,1,43,91,57,85,25,35),
6195 (3,1,44,93,58,87,25,36),
6196 (3,1,45,95,59,88,26,36),
6197 (3,1,46,97,61,90,26,37),
6198 (3,1,47,99,62,92,26,37),
6199 (3,1,48,101,63,94,26,38),
6200 (3,1,49,102,64,95,26,38),
6201 (3,1,50,104,65,97,27,39),
6202 (3,1,51,106,67,99,27,39),
6203 (3,1,52,108,68,101,27,40),
6204 (3,1,53,110,69,103,27,40),
6205 (3,1,54,112,70,104,28,41),
6206 (3,1,55,115,72,106,28,41),
6207 (3,1,56,117,73,108,28,42),
6208 (3,1,57,119,74,110,28,42),
6209 (3,1,58,121,76,112,29,43),
6210 (3,1,59,123,77,114,29,43),
6211 (3,1,60,125,78,116,29,44),
6212 (3,1,61,127,80,118,29,45),
6213 (3,1,62,129,81,120,30,45),
6214 (3,1,63,131,82,122,30,46),
6215 (3,1,64,134,84,124,30,46),
6216 (3,1,65,136,85,126,31,47),
6217 (3,1,66,138,86,128,31,48),
6218 (3,1,67,140,88,130,31,48),
6219 (3,1,68,142,89,132,31,49),
6220 (3,1,69,145,91,134,32,49),
6221 (3,1,70,147,92,136,32,50),
6222 (3,1,71,150,93,138,32,51),
6223 (3,1,72,152,95,141,32,52),
6224 (3,1,73,164,97,151,32,53),
6225 (3,1,74,164,98,151,33,53),
6226 (3,1,75,170,100,156,33,54),
6227 (3,1,76,173,102,160,33,55),
6228 (3,1,77,173,104,160,34,56),
6229 (3,1,78,176,105,162,34,56),
6230 (3,1,79,183,107,168,34,57),
6231 (3,1,80,186,109,171,35,58),
6232 (3,2,1,24,16,25,19,20),
6233 (3,2,2,25,17,26,20,21),
6234 (3,2,3,26,17,27,20,21),
6235 (3,2,4,27,18,28,21,22),
6236 (3,2,5,28,18,29,22,23),
6237 (3,2,6,29,19,30,22,24),
6238 (3,2,7,31,20,31,23,24),
6239 (3,2,8,32,20,32,24,25),
6240 (3,2,9,33,21,33,24,26),
6241 (3,2,10,34,21,34,25,26),
6242 (3,2,11,35,22,36,26,27),
6243 (3,2,12,36,23,37,26,28),
6244 (3,2,13,38,23,38,27,29),
6245 (3,2,14,39,24,39,28,30),
6246 (3,2,15,40,25,40,29,30),
6247 (3,2,16,41,25,41,29,31),
6248 (3,2,17,43,26,43,30,32),
6249 (3,2,18,44,27,44,31,33),
6250 (3,2,19,45,28,45,32,34),
6251 (3,2,20,47,28,46,32,35),
6252 (3,2,21,48,29,47,33,35),
6253 (3,2,22,49,30,49,34,36),
6254 (3,2,23,51,30,50,35,37),
6255 (3,2,24,52,31,51,36,38),
6256 (3,2,25,53,32,52,36,39),
6257 (3,2,26,55,33,54,37,40),
6258 (3,2,27,56,33,55,38,41),
6259 (3,2,28,57,34,56,39,42),
6260 (3,2,29,59,35,58,40,43),
6261 (3,2,30,60,36,59,41,43),
6262 (3,2,31,62,37,60,42,44),
6263 (3,2,32,63,37,62,42,45),
6264 (3,2,33,65,38,63,43,46),
6265 (3,2,34,66,39,65,44,47),
6266 (3,2,35,68,40,66,45,48),
6267 (3,2,36,69,41,67,46,49),
6268 (3,2,37,71,41,69,47,50),
6269 (3,2,38,72,42,70,48,51),
6270 (3,2,39,74,43,72,49,52),
6271 (3,2,40,75,44,73,50,53),
6272 (3,2,41,77,45,75,51,54),
6273 (3,2,42,78,46,76,52,55),
6274 (3,2,43,80,47,78,53,56),
6275 (3,2,44,82,47,79,54,57),
6276 (3,2,45,83,48,81,55,59),
6277 (3,2,46,85,49,82,56,60),
6278 (3,2,47,87,50,84,57,61),
6279 (3,2,48,88,51,85,58,62),
6280 (3,2,49,90,52,87,59,63),
6281 (3,2,50,92,53,89,60,64),
6282 (3,2,51,93,54,90,61,65),
6283 (3,2,52,95,55,92,62,66),
6284 (3,2,53,97,56,93,63,67),
6285 (3,2,54,98,57,95,64,69),
6286 (3,2,55,100,58,97,65,70),
6287 (3,2,56,102,59,98,66,71),
6288 (3,2,57,104,60,100,67,72),
6289 (3,2,58,106,61,102,68,73),
6290 (3,2,59,107,62,103,69,74),
6291 (3,2,60,109,63,105,70,76),
6292 (3,2,61,111,64,107,72,77),
6293 (3,2,62,113,65,109,73,78),
6294 (3,2,63,115,66,110,74,79),
6295 (3,2,64,117,67,112,75,80),
6296 (3,2,65,118,68,114,76,82),
6297 (3,2,66,120,69,116,77,83),
6298 (3,2,67,122,70,118,78,84),
6299 (3,2,68,124,71,119,80,85),
6300 (3,2,69,126,72,121,81,87),
6301 (3,2,70,128,73,123,82,88),
6302 (3,2,71,150,74,125,83,89),
6303 (3,2,72,152,75,128,85,91),
6304 (3,2,73,156,76,130,86,93),
6305 (3,2,74,158,78,132,88,94),
6306 (3,2,75,161,79,134,89,96),
6307 (3,2,76,164,80,137,91,97),
6308 (3,2,77,166,82,139,92,99),
6309 (3,2,78,170,83,141,94,101),
6310 (3,2,79,172,84,144,95,102),
6311 (3,2,80,175,86,146,97,104),
6312 (3,3,1,22,19,24,19,20),
6313 (3,3,2,22,20,25,20,21),
6314 (3,3,3,23,22,26,20,21),
6315 (3,3,4,23,23,27,21,22),
6316 (3,3,5,24,25,28,21,23),
6317 (3,3,6,24,26,29,22,23),
6318 (3,3,7,25,27,29,23,24),
6319 (3,3,8,25,29,30,23,25),
6320 (3,3,9,25,30,31,24,25),
6321 (3,3,10,26,32,32,24,26),
6322 (3,3,11,26,33,33,25,27),
6323 (3,3,12,27,35,34,26,27),
6324 (3,3,13,27,36,35,26,28),
6325 (3,3,14,28,38,36,27,29),
6326 (3,3,15,28,39,37,28,29),
6327 (3,3,16,29,41,38,28,30),
6328 (3,3,17,29,42,39,29,31),
6329 (3,3,18,30,44,41,30,32),
6330 (3,3,19,30,46,42,30,32),
6331 (3,3,20,31,47,43,31,33),
6332 (3,3,21,32,49,44,32,34),
6333 (3,3,22,32,51,45,33,35),
6334 (3,3,23,33,52,46,33,36),
6335 (3,3,24,33,54,47,34,36),
6336 (3,3,25,34,56,48,35,37),
6337 (3,3,26,34,57,49,35,38),
6338 (3,3,27,35,59,51,36,39),
6339 (3,3,28,35,61,52,37,40),
6340 (3,3,29,36,63,53,38,40),
6341 (3,3,30,37,64,54,39,41),
6342 (3,3,31,37,66,55,39,42),
6343 (3,3,32,38,68,57,40,43),
6344 (3,3,33,38,70,58,41,44),
6345 (3,3,34,39,71,59,42,45),
6346 (3,3,35,40,73,60,43,46),
6347 (3,3,36,40,75,62,43,47),
6348 (3,3,37,41,77,63,44,47),
6349 (3,3,38,42,79,64,45,48),
6350 (3,3,39,42,81,65,46,49),
6351 (3,3,40,43,83,67,47,50),
6352 (3,3,41,44,85,68,48,51),
6353 (3,3,42,44,87,69,49,52),
6354 (3,3,43,45,89,71,49,53),
6355 (3,3,44,46,91,72,50,54),
6356 (3,3,45,46,93,73,51,55),
6357 (3,3,46,47,95,75,52,56),
6358 (3,3,47,48,97,76,53,57),
6359 (3,3,48,49,99,78,54,58),
6360 (3,3,49,49,101,79,55,59),
6361 (3,3,50,50,103,80,56,60),
6362 (3,3,51,51,105,82,57,61),
6363 (3,3,52,51,107,83,58,62),
6364 (3,3,53,52,109,85,59,63),
6365 (3,3,54,53,111,86,60,64),
6366 (3,3,55,54,113,88,61,65),
6367 (3,3,56,55,115,89,62,66),
6368 (3,3,57,55,118,91,62,67),
6369 (3,3,58,56,120,92,63,68),
6370 (3,3,59,57,122,94,64,70),
6371 (3,3,60,58,124,95,65,71),
6372 (3,3,61,58,126,97,67,72),
6373 (3,3,62,59,129,98,68,73),
6374 (3,3,63,60,131,100,69,74),
6375 (3,3,64,61,133,101,70,75),
6376 (3,3,65,62,135,103,71,76),
6377 (3,3,66,63,138,105,72,77),
6378 (3,3,67,63,140,106,73,78),
6379 (3,3,68,64,142,108,74,80),
6380 (3,3,69,65,145,109,75,81),
6381 (3,3,70,66,147,111,76,82),
6382 (3,3,71,67,150,113,77,83),
6383 (3,3,72,68,153,115,78,84),
6384 (3,3,73,69,156,117,79,86),
6385 (3,3,74,70,159,119,81,87),
6386 (3,3,75,71,162,121,82,89),
6387 (3,3,76,72,165,123,83,90),
6388 (3,3,77,73,168,125,85,92),
6389 (3,3,78,74,171,127,86,93),
6390 (3,3,79,75,174,129,87,95),
6391 (3,3,80,76,177,131,89,96),
6392 (3,4,1,23,19,24,19,19),
6393 (3,4,2,24,20,25,19,19),
6394 (3,4,3,24,22,25,19,20),
6395 (3,4,4,25,23,26,19,20),
6396 (3,4,5,26,25,27,20,20),
6397 (3,4,6,27,26,27,20,21),
6398 (3,4,7,28,28,28,20,21),
6399 (3,4,8,28,29,29,20,22),
6400 (3,4,9,29,31,30,20,22),
6401 (3,4,10,30,32,30,20,22),
6402 (3,4,11,31,34,31,21,23),
6403 (3,4,12,32,36,32,21,23),
6404 (3,4,13,33,37,33,21,24),
6405 (3,4,14,33,39,33,21,24),
6406 (3,4,15,34,40,34,21,25),
6407 (3,4,16,35,42,35,22,25),
6408 (3,4,17,36,44,36,22,25),
6409 (3,4,18,37,45,37,22,26),
6410 (3,4,19,38,47,38,22,26),
6411 (3,4,20,39,49,38,22,27),
6412 (3,4,21,40,51,39,23,27),
6413 (3,4,22,41,52,40,23,28),
6414 (3,4,23,42,54,41,23,28),
6415 (3,4,24,43,56,42,23,29),
6416 (3,4,25,44,58,43,24,29),
6417 (3,4,26,44,59,44,24,30),
6418 (3,4,27,45,61,44,24,30),
6419 (3,4,28,46,63,45,24,31),
6420 (3,4,29,47,65,46,25,31),
6421 (3,4,30,48,67,47,25,32),
6422 (3,4,31,49,69,48,25,32),
6423 (3,4,32,51,71,49,25,33),
6424 (3,4,33,52,72,50,26,33),
6425 (3,4,34,53,74,51,26,34),
6426 (3,4,35,54,76,52,26,34),
6427 (3,4,36,55,78,53,26,35),
6428 (3,4,37,56,80,54,27,35),
6429 (3,4,38,57,82,55,27,36),
6430 (3,4,39,58,84,56,27,37),
6431 (3,4,40,59,86,57,28,37),
6432 (3,4,41,60,88,58,28,38),
6433 (3,4,42,61,90,59,28,38),
6434 (3,4,43,63,92,60,28,39),
6435 (3,4,44,64,95,61,29,39),
6436 (3,4,45,65,97,62,29,40),
6437 (3,4,46,66,99,63,29,41),
6438 (3,4,47,67,101,64,30,41),
6439 (3,4,48,68,103,66,30,42),
6440 (3,4,49,70,105,67,30,43),
6441 (3,4,50,71,107,68,31,43),
6442 (3,4,51,72,110,69,31,44),
6443 (3,4,52,73,112,70,31,44),
6444 (3,4,53,74,114,71,32,45),
6445 (3,4,54,76,116,72,32,46),
6446 (3,4,55,77,118,73,32,46),
6447 (3,4,56,78,121,75,33,47),
6448 (3,4,57,80,123,76,33,48),
6449 (3,4,58,81,125,77,33,48),
6450 (3,4,59,82,128,78,34,49),
6451 (3,4,60,83,130,79,34,50),
6452 (3,4,61,85,132,81,34,51),
6453 (3,4,62,86,135,82,35,51),
6454 (3,4,63,87,137,83,35,52),
6455 (3,4,64,89,139,84,36,53),
6456 (3,4,65,90,142,86,36,53),
6457 (3,4,66,91,144,87,36,54),
6458 (3,4,67,93,147,88,37,55),
6459 (3,4,68,94,149,89,37,56),
6460 (3,4,69,96,152,91,38,56),
6461 (3,4,70,97,154,92,38,57),
6462 (3,4,71,99,157,93,38,58),
6463 (3,4,72,101,160,96,39,58),
6464 (3,4,73,102,163,97,39,59),
6465 (3,4,74,104,166,98,40,60),
6466 (3,4,75,106,169,100,40,61),
6467 (3,4,76,107,172,101,40,62),
6468 (3,4,77,109,175,103,41,63),
6469 (3,4,78,111,179,105,41,64),
6470 (3,4,79,113,182,106,42,65),
6471 (3,4,80,115,185,108,42,66),
6472 (3,5,1,22,16,23,21,22),
6473 (3,5,2,22,16,23,22,23),
6474 (3,5,3,22,16,24,24,25),
6475 (3,5,4,22,17,24,25,26),
6476 (3,5,5,23,17,24,26,27),
6477 (3,5,6,23,17,25,28,29),
6478 (3,5,7,23,17,25,29,30),
6479 (3,5,8,23,18,26,30,32),
6480 (3,5,9,23,18,26,32,33),
6481 (3,5,10,23,18,26,33,35),
6482 (3,5,11,24,18,27,35,36),
6483 (3,5,12,24,19,27,36,38),
6484 (3,5,13,24,19,28,37,39),
6485 (3,5,14,24,19,28,39,41),
6486 (3,5,15,24,19,28,40,42),
6487 (3,5,16,24,20,29,42,44),
6488 (3,5,17,25,20,29,43,45),
6489 (3,5,18,25,20,30,45,47),
6490 (3,5,19,25,21,30,46,49),
6491 (3,5,20,25,21,31,48,50),
6492 (3,5,21,25,21,31,50,52),
6493 (3,5,22,26,22,31,51,53),
6494 (3,5,23,26,22,32,53,55),
6495 (3,5,24,26,22,32,54,57),
6496 (3,5,25,26,22,33,56,58),
6497 (3,5,26,27,23,33,58,60),
6498 (3,5,27,27,23,34,59,62),
6499 (3,5,28,27,23,34,61,64),
6500 (3,5,29,27,24,35,63,65),
6501 (3,5,30,28,24,35,64,67),
6502 (3,5,31,28,24,36,66,69),
6503 (3,5,32,28,25,36,68,71),
6504 (3,5,33,28,25,37,70,72),
6505 (3,5,34,29,26,38,71,74),
6506 (3,5,35,29,26,38,73,76),
6507 (3,5,36,29,26,39,75,78),
6508 (3,5,37,29,27,39,77,80),
6509 (3,5,38,30,27,40,78,82),
6510 (3,5,39,30,27,40,80,84),
6511 (3,5,40,30,28,41,82,86),
6512 (3,5,41,31,28,41,84,88),
6513 (3,5,42,31,29,42,86,89),
6514 (3,5,43,31,29,43,88,91),
6515 (3,5,44,32,29,43,90,93),
6516 (3,5,45,32,30,44,92,95),
6517 (3,5,46,32,30,44,93,97),
6518 (3,5,47,32,30,45,95,99),
6519 (3,5,48,33,31,46,97,101),
6520 (3,5,49,33,31,46,99,103),
6521 (3,5,50,33,32,47,101,106),
6522 (3,5,51,34,32,48,103,108),
6523 (3,5,52,34,33,48,105,110),
6524 (3,5,53,35,33,49,107,112),
6525 (3,5,54,35,33,50,109,114),
6526 (3,5,55,35,34,50,111,116),
6527 (3,5,56,36,34,51,113,118),
6528 (3,5,57,36,35,52,116,120),
6529 (3,5,58,36,35,52,118,123),
6530 (3,5,59,37,36,53,120,125),
6531 (3,5,60,37,36,54,122,127),
6532 (3,5,61,37,37,54,124,129),
6533 (3,5,62,38,37,55,126,131),
6534 (3,5,63,38,38,56,128,134),
6535 (3,5,64,39,38,57,131,136),
6536 (3,5,65,39,39,57,133,138),
6537 (3,5,66,39,39,58,135,141),
6538 (3,5,67,40,40,59,137,143),
6539 (3,5,68,40,40,59,139,145),
6540 (3,5,69,41,40,60,142,148),
6541 (3,5,70,41,41,61,144,150),
6542 (3,5,71,41,42,62,147,153),
6543 (3,5,72,42,42,62,150,163),
6544 (3,5,73,42,43,63,153,166),
6545 (3,5,74,43,43,64,155,170),
6546 (3,5,75,43,44,65,158,173),
6547 (3,5,76,43,45,66,161,176),
6548 (3,5,77,44,45,67,164,179),
6549 (3,5,78,44,46,68,167,182),
6550 (3,5,79,45,46,69,170,184),
6551 (3,5,80,45,47,70,173,189),
6552 (3,6,1,25,16,25,19,19),
6553 (3,6,2,26,17,26,19,19),
6554 (3,6,3,28,18,27,19,20),
6555 (3,6,4,29,18,28,19,20),
6556 (3,6,5,30,19,30,19,20),
6557 (3,6,6,31,20,31,19,20),
6558 (3,6,7,33,21,32,20,21),
6559 (3,6,8,34,22,33,20,21),
6560 (3,6,9,36,23,35,20,21),
6561 (3,6,10,37,23,36,20,22),
6562 (3,6,11,38,24,37,20,22),
6563 (3,6,12,40,25,38,20,22),
6564 (3,6,13,41,26,40,20,23),
6565 (3,6,14,43,27,41,20,23),
6566 (3,6,15,44,28,42,20,23),
6567 (3,6,16,46,29,44,21,24),
6568 (3,6,17,47,30,45,21,24),
6569 (3,6,18,49,31,46,21,24),
6570 (3,6,19,50,32,48,21,25),
6571 (3,6,20,52,33,49,21,25),
6572 (3,6,21,53,34,51,21,26),
6573 (3,6,22,55,34,52,21,26),
6574 (3,6,23,56,35,53,21,26),
6575 (3,6,24,58,36,55,22,27),
6576 (3,6,25,59,37,56,22,27),
6577 (3,6,26,61,38,58,22,27),
6578 (3,6,27,63,39,59,22,28),
6579 (3,6,28,64,41,61,22,28),
6580 (3,6,29,66,42,62,22,29),
6581 (3,6,30,68,43,64,23,29),
6582 (3,6,31,69,44,65,23,30),
6583 (3,6,32,71,45,67,23,30),
6584 (3,6,33,73,46,68,23,30),
6585 (3,6,34,75,47,70,23,31),
6586 (3,6,35,76,48,72,24,31),
6587 (3,6,36,78,49,73,24,32),
6588 (3,6,37,80,50,75,24,32),
6589 (3,6,38,82,51,76,24,33),
6590 (3,6,39,84,52,78,24,33),
6591 (3,6,40,85,54,80,24,34),
6592 (3,6,41,87,55,81,25,34),
6593 (3,6,42,89,56,83,25,35),
6594 (3,6,43,91,57,85,25,35),
6595 (3,6,44,93,58,87,25,36),
6596 (3,6,45,95,59,88,26,36),
6597 (3,6,46,97,61,90,26,37),
6598 (3,6,47,99,62,92,26,37),
6599 (3,6,48,101,63,94,26,38),
6600 (3,6,49,102,64,95,26,38),
6601 (3,6,50,104,65,97,27,39),
6602 (3,6,51,106,67,99,27,39),
6603 (3,6,52,108,68,99,27,40),
6604 (3,6,53,109,68,101,27,40),
6605 (3,6,54,110,69,101,28,41),
6606 (3,6,55,110,69,102,28,41),
6607 (3,6,56,113,71,105,28,42),
6608 (3,6,57,118,72,107,28,42),
6609 (3,6,58,120,73,109,29,43),
6610 (3,6,59,123,75,111,29,43),
6611 (3,6,60,125,76,113,29,44),
6612 (3,6,61,126,77,115,29,45),
6613 (3,6,62,127,79,117,29,45),
6614 (3,6,63,129,80,120,30,46),
6615 (3,6,64,132,82,122,30,46),
6616 (3,6,65,135,83,124,30,47),
6617 (3,6,66,137,85,127,30,48),
6618 (3,6,67,144,86,129,31,48),
6619 (3,6,68,146,88,131,31,49),
6620 (3,6,69,149,89,133,31,50),
6621 (3,6,70,152,91,136,31,50),
6622 (3,6,71,154,93,139,32,51),
6623 (3,6,72,157,94,141,32,52),
6624 (3,6,73,160,96,144,32,53),
6625 (3,6,74,163,98,146,32,53),
6626 (3,6,75,166,99,150,33,54),
6627 (3,6,76,169,101,152,33,55),
6628 (3,6,77,172,103,155,33,56),
6629 (3,6,78,176,104,157,33,56),
6630 (3,6,79,179,106,160,34,57),
6631 (3,6,80,182,108,163,34,58),
6632 (4,1,1,20,25,21,20,20),
6633 (4,1,2,21,26,22,20,20),
6634 (4,1,3,23,27,23,20,21),
6635 (4,1,4,24,27,25,20,21),
6636 (4,1,5,25,28,26,20,21),
6637 (4,1,6,27,29,27,20,21),
6638 (4,1,7,28,30,28,21,22),
6639 (4,1,8,29,31,29,21,22),
6640 (4,1,9,31,31,31,21,22),
6641 (4,1,10,32,32,32,21,23),
6642 (4,1,11,33,33,33,21,23),
6643 (4,1,12,35,34,34,21,23),
6644 (4,1,13,36,35,36,21,24),
6645 (4,1,14,38,36,37,21,24),
6646 (4,1,15,39,37,38,21,24),
6647 (4,1,16,41,37,40,21,25),
6648 (4,1,17,42,38,41,22,25),
6649 (4,1,18,44,39,43,22,25),
6650 (4,1,19,45,40,44,22,26),
6651 (4,1,20,47,41,45,22,26),
6652 (4,1,21,48,42,47,22,26),
6653 (4,1,22,50,43,48,22,27),
6654 (4,1,23,52,44,50,22,27),
6655 (4,1,24,53,45,51,23,28),
6656 (4,1,25,55,46,52,23,28),
6657 (4,1,26,56,47,54,23,28),
6658 (4,1,27,58,48,55,23,29),
6659 (4,1,28,60,49,57,23,29),
6660 (4,1,29,61,50,58,23,30),
6661 (4,1,30,63,51,60,24,30),
6662 (4,1,31,65,52,62,24,30),
6663 (4,1,32,66,53,63,24,31),
6664 (4,1,33,68,54,65,24,31),
6665 (4,1,34,70,55,66,24,32),
6666 (4,1,35,72,56,68,24,32),
6667 (4,1,36,73,58,69,25,33),
6668 (4,1,37,75,59,71,25,33),
6669 (4,1,38,77,60,73,25,34),
6670 (4,1,39,79,61,74,25,34),
6671 (4,1,40,81,62,76,25,35),
6672 (4,1,41,82,63,78,26,35),
6673 (4,1,42,84,64,79,26,35),
6674 (4,1,43,86,66,81,26,36),
6675 (4,1,44,88,67,83,26,36),
6676 (4,1,45,90,68,85,26,37),
6677 (4,1,46,92,69,86,27,37),
6678 (4,1,47,94,70,88,27,38),
6679 (4,1,48,96,72,90,27,38),
6680 (4,1,49,98,73,92,27,39),
6681 (4,1,50,100,74,93,28,40),
6682 (4,1,51,102,75,95,28,40),
6683 (4,1,52,104,77,97,28,41),
6684 (4,1,53,106,78,99,28,41),
6685 (4,1,54,108,79,101,29,42),
6686 (4,1,55,110,80,103,29,42),
6687 (4,1,56,112,82,104,29,43),
6688 (4,1,57,114,83,106,29,43),
6689 (4,1,58,116,84,108,30,44),
6690 (4,1,59,118,86,110,30,44),
6691 (4,1,60,120,87,112,30,45),
6692 (4,1,61,122,88,114,30,46),
6693 (4,1,62,124,90,116,31,46),
6694 (4,1,63,127,91,118,31,47),
6695 (4,1,64,129,92,120,31,47),
6696 (4,1,65,131,94,122,32,48),
6697 (4,1,66,133,95,124,32,49),
6698 (4,1,67,135,97,126,32,49),
6699 (4,1,68,138,98,128,32,50),
6700 (4,1,69,140,100,130,33,50),
6701 (4,1,70,142,101,132,33,51),
6702 (4,1,71,145,102,134,33,52),
6703 (4,1,72,147,104,137,33,53),
6704 (4,1,73,150,106,139,33,54),
6705 (4,1,74,153,107,142,34,54),
6706 (4,1,75,156,109,144,34,55),
6707 (4,1,76,159,111,148,34,56),
6708 (4,1,77,162,113,150,35,57),
6709 (4,1,78,165,114,152,35,57),
6710 (4,1,79,178,116,164,35,58),
6711 (4,1,80,181,118,167,36,59),
6712 (4,3,1,17,28,20,20,21),
6713 (4,3,2,17,29,21,21,22),
6714 (4,3,3,18,31,22,21,22),
6715 (4,3,4,18,32,23,22,23),
6716 (4,3,5,19,33,24,22,24),
6717 (4,3,6,19,35,25,23,24),
6718 (4,3,7,20,36,26,24,25),
6719 (4,3,8,20,38,27,24,25),
6720 (4,3,9,21,39,27,25,26),
6721 (4,3,10,21,40,28,25,27),
6722 (4,3,11,22,42,29,26,28),
6723 (4,3,12,22,43,30,27,28),
6724 (4,3,13,23,45,31,27,29),
6725 (4,3,14,23,46,32,28,30),
6726 (4,3,15,24,48,34,29,30),
6727 (4,3,16,24,50,35,29,31),
6728 (4,3,17,25,51,36,30,32),
6729 (4,3,18,25,53,37,31,33),
6730 (4,3,19,26,54,38,31,33),
6731 (4,3,20,26,56,39,32,34),
6732 (4,3,21,27,57,40,33,35),
6733 (4,3,22,27,59,41,33,36),
6734 (4,3,23,28,61,42,34,36),
6735 (4,3,24,28,62,43,35,37),
6736 (4,3,25,29,64,44,36,38),
6737 (4,3,26,30,66,46,36,39),
6738 (4,3,27,30,68,47,37,40),
6739 (4,3,28,31,69,48,38,41),
6740 (4,3,29,31,71,49,39,41),
6741 (4,3,30,32,73,50,39,42),
6742 (4,3,31,33,75,52,40,43),
6743 (4,3,32,33,76,53,41,44),
6744 (4,3,33,34,78,54,42,45),
6745 (4,3,34,34,80,55,43,46),
6746 (4,3,35,35,82,57,44,47),
6747 (4,3,36,36,84,58,44,48),
6748 (4,3,37,36,86,59,45,48),
6749 (4,3,38,37,87,60,46,49),
6750 (4,3,39,38,89,62,47,50),
6751 (4,3,40,38,91,63,48,51),
6752 (4,3,41,39,93,64,49,52),
6753 (4,3,42,40,95,66,49,53),
6754 (4,3,43,40,97,67,50,54),
6755 (4,3,44,41,99,68,51,55),
6756 (4,3,45,42,101,70,52,56),
6757 (4,3,46,42,103,71,53,57),
6758 (4,3,47,43,105,72,54,58),
6759 (4,3,48,44,107,74,55,59),
6760 (4,3,49,45,109,75,56,60),
6761 (4,3,50,45,111,77,57,61),
6762 (4,3,51,46,113,78,58,62),
6763 (4,3,52,47,115,79,59,63),
6764 (4,3,53,47,118,81,60,64),
6765 (4,3,54,48,120,82,61,65),
6766 (4,3,55,49,122,84,61,66),
6767 (4,3,56,50,124,85,62,67),
6768 (4,3,57,50,126,87,63,68),
6769 (4,3,58,51,128,88,64,69),
6770 (4,3,59,52,131,90,65,70),
6771 (4,3,60,53,133,91,66,72),
6772 (4,3,61,54,135,93,67,73),
6773 (4,3,62,54,137,94,69,74),
6774 (4,3,63,55,140,96,70,75),
6775 (4,3,64,56,142,97,71,76),
6776 (4,3,65,57,144,99,72,77),
6777 (4,3,66,58,147,101,73,78),
6778 (4,3,67,58,149,102,74,79),
6779 (4,3,68,59,151,104,75,81),
6780 (4,3,69,60,154,105,76,82),
6781 (4,3,70,61,156,107,77,83),
6782 (4,3,71,62,159,109,78,84),
6783 (4,3,72,63,162,111,79,85),
6784 (4,3,73,64,165,113,80,87),
6785 (4,3,74,65,168,115,82,88),
6786 (4,3,75,66,171,117,83,90),
6787 (4,3,76,67,174,119,84,91),
6788 (4,3,77,68,177,121,86,93),
6789 (4,3,78,69,180,123,87,94),
6790 (4,3,79,70,190,125,91,96),
6791 (4,3,80,71,193,127,93,97),
6792 (4,4,1,18,28,20,20,20),
6793 (4,4,2,19,29,21,20,20),
6794 (4,4,3,20,31,21,20,21),
6795 (4,4,4,20,32,22,20,21),
6796 (4,4,5,21,34,23,21,21),
6797 (4,4,6,22,35,24,21,22),
6798 (4,4,7,23,37,24,21,22),
6799 (4,4,8,24,38,25,21,23),
6800 (4,4,9,24,40,26,21,23),
6801 (4,4,10,25,41,26,21,23),
6802 (4,4,11,26,43,27,22,24),
6803 (4,4,12,27,44,28,22,24),
6804 (4,4,13,28,46,29,22,25),
6805 (4,4,14,29,48,30,22,25),
6806 (4,4,15,29,49,30,22,25),
6807 (4,4,16,30,51,31,23,26),
6808 (4,4,17,31,52,32,23,26),
6809 (4,4,18,32,54,33,23,27),
6810 (4,4,19,33,56,34,23,27),
6811 (4,4,20,34,57,35,23,28),
6812 (4,4,21,35,59,35,24,28),
6813 (4,4,22,36,61,36,24,29),
6814 (4,4,23,37,63,37,24,29),
6815 (4,4,24,38,64,38,24,30),
6816 (4,4,25,39,66,39,25,30),
6817 (4,4,26,40,68,40,25,31),
6818 (4,4,27,41,70,41,25,31),
6819 (4,4,28,42,72,42,25,32),
6820 (4,4,29,43,73,43,25,32),
6821 (4,4,30,44,75,43,26,33),
6822 (4,4,31,45,77,44,26,33),
6823 (4,4,32,46,79,45,26,34),
6824 (4,4,33,47,81,46,27,34),
6825 (4,4,34,48,83,47,27,35),
6826 (4,4,35,49,85,48,27,35),
6827 (4,4,36,50,87,49,27,36),
6828 (4,4,37,51,89,50,28,36),
6829 (4,4,38,52,91,51,28,37),
6830 (4,4,39,53,93,52,28,38),
6831 (4,4,40,54,95,53,28,38),
6832 (4,4,41,56,97,54,29,39),
6833 (4,4,42,57,99,55,29,39),
6834 (4,4,43,58,101,56,29,40),
6835 (4,4,44,59,103,57,30,40),
6836 (4,4,45,60,105,59,30,41),
6837 (4,4,46,61,107,60,30,42),
6838 (4,4,47,62,109,61,31,42),
6839 (4,4,48,64,112,62,31,43),
6840 (4,4,49,65,114,63,31,44),
6841 (4,4,50,66,116,64,32,44),
6842 (4,4,51,67,118,65,32,45),
6843 (4,4,52,68,120,66,32,45),
6844 (4,4,53,70,123,67,33,46),
6845 (4,4,54,71,125,69,33,47),
6846 (4,4,55,72,127,70,33,47),
6847 (4,4,56,73,129,71,34,48),
6848 (4,4,57,75,132,72,34,49),
6849 (4,4,58,76,134,73,34,49),
6850 (4,4,59,77,136,74,35,50),
6851 (4,4,60,79,139,76,35,51),
6852 (4,4,61,80,141,77,35,51),
6853 (4,4,62,81,143,78,36,52),
6854 (4,4,63,82,146,79,36,53),
6855 (4,4,64,84,148,80,37,54),
6856 (4,4,65,85,151,82,37,54),
6857 (4,4,66,87,153,83,37,55),
6858 (4,4,67,88,156,84,38,56),
6859 (4,4,68,89,158,85,38,57),
6860 (4,4,69,91,160,87,39,57),
6861 (4,4,70,92,163,88,39,58),
6862 (4,4,71,94,166,90,39,59),
6863 (4,4,72,96,169,91,40,59),
6864 (4,4,73,97,172,93,40,60),
6865 (4,4,74,99,175,94,41,61),
6866 (4,4,75,101,178,96,41,62),
6867 (4,4,76,102,181,97,41,63),
6868 (4,4,77,104,184,99,42,64),
6869 (4,4,78,106,188,101,42,65),
6870 (4,4,79,108,191,102,43,66),
6871 (4,4,80,110,194,104,43,67),
6872 (4,5,1,17,25,19,22,23),
6873 (4,5,2,17,25,19,23,24),
6874 (4,5,3,17,25,20,25,26),
6875 (4,5,4,17,26,20,26,27),
6876 (4,5,5,18,26,20,27,28),
6877 (4,5,6,18,26,21,29,30),
6878 (4,5,7,18,26,21,30,31),
6879 (4,5,8,18,26,22,31,33),
6880 (4,5,9,18,27,22,33,34),
6881 (4,5,10,19,27,22,34,36),
6882 (4,5,11,19,27,23,36,37),
6883 (4,5,12,19,27,23,37,39),
6884 (4,5,13,19,28,24,38,40),
6885 (4,5,14,19,28,24,40,42),
6886 (4,5,15,19,28,25,41,43),
6887 (4,5,16,20,28,25,43,45),
6888 (4,5,17,20,29,25,44,46),
6889 (4,5,18,20,29,26,46,48),
6890 (4,5,19,20,29,26,47,49),
6891 (4,5,20,21,30,27,49,51),
6892 (4,5,21,21,30,27,51,53),
6893 (4,5,22,21,30,28,52,54),
6894 (4,5,23,21,30,28,54,56),
6895 (4,5,24,21,31,29,55,58),
6896 (4,5,25,22,31,29,57,59),
6897 (4,5,26,22,31,30,59,61),
6898 (4,5,27,22,32,30,60,63),
6899 (4,5,28,22,32,31,62,65),
6900 (4,5,29,23,32,31,64,66),
6901 (4,5,30,23,33,32,65,68),
6902 (4,5,31,23,33,32,67,70),
6903 (4,5,32,23,33,33,69,72),
6904 (4,5,33,24,34,33,70,73),
6905 (4,5,34,24,34,34,72,75),
6906 (4,5,35,24,34,34,74,77),
6907 (4,5,36,24,35,35,76,79),
6908 (4,5,37,25,35,35,78,81),
6909 (4,5,38,25,35,36,79,83),
6910 (4,5,39,25,36,37,81,85),
6911 (4,5,40,26,36,37,83,87),
6912 (4,5,41,26,37,38,85,88),
6913 (4,5,42,26,37,38,87,90),
6914 (4,5,43,27,37,39,89,92),
6915 (4,5,44,27,38,39,91,94),
6916 (4,5,45,27,38,40,92,96),
6917 (4,5,46,27,39,41,94,98),
6918 (4,5,47,28,39,41,96,100),
6919 (4,5,48,28,39,42,98,102),
6920 (4,5,49,28,40,43,100,104),
6921 (4,5,50,29,40,43,102,106),
6922 (4,5,51,29,41,44,104,109),
6923 (4,5,52,29,41,44,106,111),
6924 (4,5,53,30,42,45,108,113),
6925 (4,5,54,30,42,46,110,115),
6926 (4,5,55,30,43,46,112,117),
6927 (4,5,56,31,43,47,114,119),
6928 (4,5,57,31,43,48,117,121),
6929 (4,5,58,31,44,48,119,124),
6930 (4,5,59,32,44,49,121,126),
6931 (4,5,60,32,45,50,123,128),
6932 (4,5,61,33,45,51,125,130),
6933 (4,5,62,33,46,51,127,132),
6934 (4,5,63,33,46,52,129,135),
6935 (4,5,64,34,47,53,132,137),
6936 (4,5,65,34,47,53,134,139),
6937 (4,5,66,34,48,54,136,142),
6938 (4,5,67,35,48,55,138,144),
6939 (4,5,68,35,49,56,140,146),
6940 (4,5,69,36,49,56,143,149),
6941 (4,5,70,36,50,57,145,151),
6942 (4,5,71,36,51,58,148,161),
6943 (4,5,72,37,51,58,151,164),
6944 (4,5,73,37,52,59,154,168),
6945 (4,5,74,38,52,60,156,171),
6946 (4,5,75,38,53,61,159,174),
6947 (4,5,76,38,54,62,162,177),
6948 (4,5,77,39,54,63,165,180),
6949 (4,5,78,39,55,64,168,183),
6950 (4,5,79,40,55,65,171,186),
6951 (4,5,80,40,56,66,200,191),
6952 (4,6,1,20,25,21,20,20),
6953 (4,6,2,21,26,22,20,20),
6954 (4,6,3,23,27,23,20,21),
6955 (4,6,4,24,27,25,20,21),
6956 (4,6,5,25,28,26,20,21),
6957 (4,6,6,27,29,27,20,21),
6958 (4,6,7,28,30,28,21,22),
6959 (4,6,8,29,31,29,21,22),
6960 (4,6,9,31,31,31,21,22),
6961 (4,6,10,32,32,32,21,23),
6962 (4,6,11,33,33,33,21,23),
6963 (4,6,12,35,34,34,21,23),
6964 (4,6,13,36,35,36,21,24),
6965 (4,6,14,38,36,37,21,24),
6966 (4,6,15,39,37,38,21,24),
6967 (4,6,16,41,37,40,21,25),
6968 (4,6,17,42,38,41,22,25),
6969 (4,6,18,44,39,43,22,25),
6970 (4,6,19,45,40,44,22,26),
6971 (4,6,20,47,41,45,22,26),
6972 (4,6,21,48,42,47,22,26),
6973 (4,6,22,50,43,48,22,27),
6974 (4,6,23,52,44,50,22,27),
6975 (4,6,24,53,45,51,23,28),
6976 (4,6,25,55,46,52,23,28),
6977 (4,6,26,56,47,54,23,28),
6978 (4,6,27,58,48,55,23,29),
6979 (4,6,28,60,49,57,23,29),
6980 (4,6,29,61,50,58,23,30),
6981 (4,6,30,63,51,60,24,30),
6982 (4,6,31,65,52,62,24,30),
6983 (4,6,32,66,53,63,24,31),
6984 (4,6,33,68,54,65,24,31),
6985 (4,6,34,70,55,66,24,32),
6986 (4,6,35,72,56,68,24,32),
6987 (4,6,36,73,58,69,25,33),
6988 (4,6,37,75,59,71,25,33),
6989 (4,6,38,77,60,73,25,34),
6990 (4,6,39,79,61,74,25,34),
6991 (4,6,40,81,62,76,25,35),
6992 (4,6,41,82,63,78,26,35),
6993 (4,6,42,84,64,79,26,35),
6994 (4,6,43,86,66,81,26,36),
6995 (4,6,44,88,67,83,26,36),
6996 (4,6,45,90,68,85,26,37),
6997 (4,6,46,92,69,86,27,37),
6998 (4,6,47,94,70,88,27,38),
6999 (4,6,48,96,72,90,27,38),
7000 (4,6,49,98,73,92,27,39),
7001 (4,6,50,100,74,93,28,40),
7002 (4,6,51,101,75,94,28,40),
7003 (4,6,52,102,76,95,28,41),
7004 (4,6,53,103,77,96,28,41),
7005 (4,6,54,104,77,97,29,42),
7006 (4,6,55,105,78,98,29,42),
7007 (4,6,56,108,80,101,29,43),
7008 (4,6,57,113,81,103,29,43),
7009 (4,6,58,115,82,105,30,44),
7010 (4,6,59,115,84,107,30,44),
7011 (4,6,60,120,85,109,30,45),
7012 (4,6,61,122,86,111,30,46),
7013 (4,6,62,122,88,113,30,46),
7014 (4,6,63,127,89,116,31,47),
7015 (4,6,64,127,91,118,31,47),
7016 (4,6,65,133,92,120,31,48),
7017 (4,6,66,135,94,123,31,49),
7018 (4,6,67,136,95,125,32,49),
7019 (4,6,68,137,97,127,32,50),
7020 (4,6,69,140,98,130,32,51),
7021 (4,6,70,147,100,132,32,51),
7022 (4,6,71,154,102,135,33,52),
7023 (4,6,72,156,103,137,33,53),
7024 (4,6,73,157,105,140,33,54),
7025 (4,6,74,158,107,142,33,54),
7026 (4,6,75,161,108,145,34,55),
7027 (4,6,76,164,110,148,34,56),
7028 (4,6,77,167,112,150,34,57),
7029 (4,6,78,170,113,153,34,57),
7030 (4,6,79,172,115,156,35,58),
7031 (4,6,80,177,117,159,35,59),
7032 (4,11,1,18,25,19,22,22),
7033 (4,11,2,19,25,20,23,23),
7034 (4,11,3,19,26,20,24,24),
7035 (4,11,4,20,26,21,25,26),
7036 (4,11,5,20,27,22,26,27),
7037 (4,11,6,21,27,22,27,28),
7038 (4,11,7,21,28,23,28,29),
7039 (4,11,8,22,28,24,29,30),
7040 (4,11,9,23,29,24,30,32),
7041 (4,11,10,23,29,25,32,33),
7042 (4,11,11,24,30,26,33,34),
7043 (4,11,12,24,31,26,34,35),
7044 (4,11,13,25,31,27,35,37),
7045 (4,11,14,26,32,28,36,38),
7046 (4,11,15,26,32,29,37,39),
7047 (4,11,16,27,33,29,38,41),
7048 (4,11,17,28,33,30,40,42),
7049 (4,11,18,28,34,31,41,43),
7050 (4,11,19,29,35,32,42,45),
7051 (4,11,20,30,35,32,43,46),
7052 (4,11,21,30,36,33,45,48),
7053 (4,11,22,31,36,34,46,49),
7054 (4,11,23,32,37,35,47,51),
7055 (4,11,24,32,38,36,48,52),
7056 (4,11,25,33,38,36,50,53),
7057 (4,11,26,34,39,37,51,55),
7058 (4,11,27,35,40,38,52,56),
7059 (4,11,28,35,40,39,54,58),
7060 (4,11,29,36,41,40,55,59),
7061 (4,11,30,37,42,41,56,61),
7062 (4,11,31,38,42,42,58,62),
7063 (4,11,32,38,43,42,59,64),
7064 (4,11,33,39,44,43,60,66),
7065 (4,11,34,40,44,44,62,67),
7066 (4,11,35,41,45,45,63,69),
7067 (4,11,36,42,46,46,65,70),
7068 (4,11,37,42,47,47,66,72),
7069 (4,11,38,43,47,48,67,74),
7070 (4,11,39,44,48,49,69,75),
7071 (4,11,40,45,49,50,70,77),
7072 (4,11,41,46,50,51,72,79),
7073 (4,11,42,46,50,52,73,80),
7074 (4,11,43,47,51,53,75,82),
7075 (4,11,44,48,52,54,76,84),
7076 (4,11,45,49,53,55,78,85),
7077 (4,11,46,50,54,56,79,87),
7078 (4,11,47,51,54,57,81,89),
7079 (4,11,48,52,55,58,83,91),
7080 (4,11,49,53,56,59,84,93),
7081 (4,11,50,53,57,60,86,94),
7082 (4,11,51,54,58,61,87,96),
7083 (4,11,52,55,59,62,89,98),
7084 (4,11,53,56,59,63,91,100),
7085 (4,11,54,57,60,64,92,102),
7086 (4,11,55,58,61,65,94,103),
7087 (4,11,56,59,62,66,95,105),
7088 (4,11,57,60,63,67,97,107),
7089 (4,11,58,61,64,68,99,109),
7090 (4,11,59,62,65,69,101,111),
7091 (4,11,60,63,66,70,102,113),
7092 (4,11,61,64,66,72,104,115),
7093 (4,11,62,65,67,73,106,117),
7094 (4,11,63,66,68,74,107,119),
7095 (4,11,64,67,69,75,109,121),
7096 (4,11,65,68,70,76,111,123),
7097 (4,11,66,69,71,77,113,125),
7098 (4,11,67,70,72,78,115,127),
7099 (4,11,68,71,73,80,116,129),
7100 (4,11,69,72,74,81,118,131),
7101 (4,11,70,73,75,82,120,133),
7102 (4,11,71,75,76,83,122,135),
7103 (4,11,72,76,78,85,125,138),
7104 (4,11,73,77,79,86,127,140),
7105 (4,11,74,78,80,88,131,143),
7106 (4,11,75,80,81,89,133,145),
7107 (4,11,76,81,82,91,134,148),
7108 (4,11,77,82,83,92,136,151),
7109 (4,11,78,84,85,94,138,153),
7110 (4,11,79,85,86,95,141,156),
7111 (4,11,80,86,87,97,143,159),
7112 (5,1,1,22,18,23,18,25),
7113 (5,1,2,23,19,24,18,25),
7114 (5,1,3,25,20,25,18,26),
7115 (5,1,4,26,20,26,18,26),
7116 (5,1,5,27,21,28,18,26),
7117 (5,1,6,29,22,29,18,26),
7118 (5,1,7,30,23,30,19,27),
7119 (5,1,8,31,24,31,19,27),
7120 (5,1,9,33,25,33,19,27),
7121 (5,1,10,34,25,34,19,28),
7122 (5,1,11,35,26,35,19,28),
7123 (5,1,12,37,27,36,19,28),
7124 (5,1,13,38,28,38,19,28),
7125 (5,1,14,40,29,39,19,29),
7126 (5,1,15,41,30,40,19,29),
7127 (5,1,16,43,31,42,20,29),
7128 (5,1,17,44,32,43,20,30),
7129 (5,1,18,46,33,44,20,30),
7130 (5,1,19,47,34,46,20,31),
7131 (5,1,20,49,34,47,20,31),
7132 (5,1,21,50,35,49,20,31),
7133 (5,1,22,52,36,50,20,32),
7134 (5,1,23,53,37,51,21,32),
7135 (5,1,24,55,38,53,21,32),
7136 (5,1,25,57,39,54,21,33),
7137 (5,1,26,58,40,56,21,33),
7138 (5,1,27,60,41,57,21,34),
7139 (5,1,28,62,42,59,21,34),
7140 (5,1,29,63,43,60,21,34),
7141 (5,1,30,65,44,62,22,35),
7142 (5,1,31,67,46,63,22,35),
7143 (5,1,32,68,47,65,22,36),
7144 (5,1,33,70,48,67,22,36),
7145 (5,1,34,72,49,68,22,36),
7146 (5,1,35,74,50,70,23,37),
7147 (5,1,36,75,51,71,23,37),
7148 (5,1,37,77,52,73,23,38),
7149 (5,1,38,79,53,75,23,38),
7150 (5,1,39,81,54,76,23,39),
7151 (5,1,40,83,55,78,24,39),
7152 (5,1,41,84,57,80,24,40),
7153 (5,1,42,86,58,81,24,40),
7154 (5,1,43,88,59,83,24,41),
7155 (5,1,44,90,60,85,24,41),
7156 (5,1,45,92,61,86,25,42),
7157 (5,1,46,94,62,88,25,42),
7158 (5,1,47,96,64,90,25,43),
7159 (5,1,48,98,65,92,25,43),
7160 (5,1,49,100,66,93,25,44),
7161 (5,1,50,102,67,95,26,44),
7162 (5,1,51,104,69,97,26,45),
7163 (5,1,52,106,70,99,26,45),
7164 (5,1,53,108,71,101,26,46),
7165 (5,1,54,110,72,103,27,46),
7166 (5,1,55,112,74,104,27,47),
7167 (5,1,56,114,75,106,27,48),
7168 (5,1,57,116,76,108,27,48),
7169 (5,1,58,118,78,110,28,49),
7170 (5,1,59,120,79,112,28,49),
7171 (5,1,60,122,80,114,28,50),
7172 (5,1,61,124,82,116,28,50),
7173 (5,1,62,126,83,118,29,51),
7174 (5,1,63,128,84,120,29,52),
7175 (5,1,64,131,86,122,29,52),
7176 (5,1,65,133,87,124,30,53),
7177 (5,1,66,135,88,126,30,53),
7178 (5,1,67,137,90,128,30,54),
7179 (5,1,68,139,91,130,30,55),
7180 (5,1,69,142,93,132,31,55),
7181 (5,1,70,144,94,134,31,56),
7182 (5,1,71,147,95,136,31,57),
7183 (5,1,72,150,97,139,31,58),
7184 (5,1,73,152,99,141,31,59),
7185 (5,1,74,155,100,144,32,59),
7186 (5,1,75,158,102,146,32,60),
7187 (5,1,76,163,104,149,32,61),
7188 (5,1,77,167,106,152,33,62),
7189 (5,1,78,167,107,154,33,62),
7190 (5,1,79,170,109,157,33,63),
7191 (5,1,80,173,111,160,34,64),
7192 (5,4,1,20,21,22,18,25),
7193 (5,4,2,21,22,23,18,25),
7194 (5,4,3,22,24,23,18,26),
7195 (5,4,4,22,25,24,18,26),
7196 (5,4,5,23,27,25,19,26),
7197 (5,4,6,24,28,25,19,27),
7198 (5,4,7,25,30,26,19,27),
7199 (5,4,8,25,31,27,19,27),
7200 (5,4,9,26,33,28,19,28),
7201 (5,4,10,27,34,28,19,28),
7202 (5,4,11,28,36,29,20,29),
7203 (5,4,12,29,38,30,20,29),
7204 (5,4,13,30,39,31,20,29),
7205 (5,4,14,31,41,32,20,30),
7206 (5,4,15,31,42,32,20,30),
7207 (5,4,16,32,44,33,21,31),
7208 (5,4,17,33,46,34,21,31),
7209 (5,4,18,34,47,35,21,32),
7210 (5,4,19,35,49,36,21,32),
7211 (5,4,20,36,51,36,21,32),
7212 (5,4,21,37,52,37,22,33),
7213 (5,4,22,38,54,38,22,33),
7214 (5,4,23,39,56,39,22,34),
7215 (5,4,24,40,58,40,22,34),
7216 (5,4,25,41,60,41,23,35),
7217 (5,4,26,42,61,42,23,35),
7218 (5,4,27,43,63,43,23,36),
7219 (5,4,28,44,65,44,23,36),
7220 (5,4,29,45,67,44,24,37),
7221 (5,4,30,46,69,45,24,37),
7222 (5,4,31,47,71,46,24,38),
7223 (5,4,32,48,72,47,24,38),
7224 (5,4,33,49,74,48,25,39),
7225 (5,4,34,50,76,49,25,39),
7226 (5,4,35,51,78,50,25,40),
7227 (5,4,36,52,80,51,25,41),
7228 (5,4,37,53,82,52,26,41),
7229 (5,4,38,54,84,53,26,42),
7230 (5,4,39,55,86,54,26,42),
7231 (5,4,40,56,88,55,27,43),
7232 (5,4,41,57,90,56,27,43),
7233 (5,4,42,59,92,57,27,44),
7234 (5,4,43,60,94,58,27,45),
7235 (5,4,44,61,96,59,28,45),
7236 (5,4,45,62,99,60,28,46),
7237 (5,4,46,63,101,61,28,46),
7238 (5,4,47,64,103,63,29,47),
7239 (5,4,48,66,105,64,29,48),
7240 (5,4,49,67,107,65,29,48),
7241 (5,4,50,68,109,66,30,49),
7242 (5,4,51,69,111,67,30,50),
7243 (5,4,52,70,114,68,30,50),
7244 (5,4,53,72,116,69,31,51),
7245 (5,4,54,73,118,70,31,52),
7246 (5,4,55,74,120,72,31,52),
7247 (5,4,56,75,123,73,32,53),
7248 (5,4,57,77,125,74,32,54),
7249 (5,4,58,78,127,75,32,54),
7250 (5,4,59,79,130,76,33,55),
7251 (5,4,60,81,132,77,33,56),
7252 (5,4,61,82,134,79,34,56),
7253 (5,4,62,83,137,80,34,57),
7254 (5,4,63,84,139,81,34,58),
7255 (5,4,64,86,141,82,35,59),
7256 (5,4,65,87,144,84,35,59),
7257 (5,4,66,88,146,85,35,60),
7258 (5,4,67,90,149,86,36,61),
7259 (5,4,68,91,151,87,36,61),
7260 (5,4,69,93,154,89,37,62),
7261 (5,4,70,94,156,90,37,63),
7262 (5,4,71,96,159,91,37,64),
7263 (5,4,72,98,162,93,38,64),
7264 (5,4,73,99,165,95,38,65),
7265 (5,4,74,101,168,96,39,66),
7266 (5,4,75,103,171,98,39,67),
7267 (5,4,76,104,174,99,39,68),
7268 (5,4,77,106,177,101,40,69),
7269 (5,4,78,108,181,103,40,70),
7270 (5,4,79,110,184,104,41,71),
7271 (5,4,80,112,187,106,41,72),
7272 (5,5,1,19,18,21,20,28),
7273 (5,5,2,19,18,21,21,29),
7274 (5,5,3,19,18,22,23,31),
7275 (5,5,4,19,19,22,24,32),
7276 (5,5,5,20,19,22,25,33),
7277 (5,5,6,20,19,23,27,35),
7278 (5,5,7,20,19,23,28,36),
7279 (5,5,8,20,20,24,29,38),
7280 (5,5,9,20,20,24,31,39),
7281 (5,5,10,20,20,24,32,40),
7282 (5,5,11,21,20,25,34,42),
7283 (5,5,12,21,21,25,35,43),
7284 (5,5,13,21,21,26,37,45),
7285 (5,5,14,21,21,26,38,46),
7286 (5,5,15,21,21,26,39,48),
7287 (5,5,16,22,22,27,41,50),
7288 (5,5,17,22,22,27,42,51),
7289 (5,5,18,22,22,28,44,53),
7290 (5,5,19,22,23,28,46,54),
7291 (5,5,20,22,23,29,47,56),
7292 (5,5,21,23,23,29,49,57),
7293 (5,5,22,23,23,30,50,59),
7294 (5,5,23,23,24,30,52,61),
7295 (5,5,24,23,24,31,53,62),
7296 (5,5,25,24,24,31,55,64),
7297 (5,5,26,24,25,32,57,66),
7298 (5,5,27,24,25,32,58,68),
7299 (5,5,28,24,25,33,60,69),
7300 (5,5,29,25,26,33,62,71),
7301 (5,5,30,25,26,34,63,73),
7302 (5,5,31,25,26,34,65,75),
7303 (5,5,32,25,27,35,67,76),
7304 (5,5,33,26,27,35,69,78),
7305 (5,5,34,26,27,36,70,80),
7306 (5,5,35,26,28,36,72,82),
7307 (5,5,36,26,28,37,74,84),
7308 (5,5,37,27,28,37,76,86),
7309 (5,5,38,27,29,38,77,87),
7310 (5,5,39,27,29,38,79,89),
7311 (5,5,40,28,30,39,81,91),
7312 (5,5,41,28,30,40,83,93),
7313 (5,5,42,28,30,40,85,95),
7314 (5,5,43,28,31,41,87,97),
7315 (5,5,44,29,31,41,89,99),
7316 (5,5,45,29,32,42,91,101),
7317 (5,5,46,29,32,43,92,103),
7318 (5,5,47,30,32,43,94,105),
7319 (5,5,48,30,33,44,96,107),
7320 (5,5,49,30,33,44,98,109),
7321 (5,5,50,31,34,45,100,111),
7322 (5,5,51,31,34,46,102,113),
7323 (5,5,52,31,35,46,104,115),
7324 (5,5,53,32,35,47,106,118),
7325 (5,5,54,32,35,48,108,120),
7326 (5,5,55,32,36,48,110,122),
7327 (5,5,56,33,36,49,113,124),
7328 (5,5,57,33,37,50,115,126),
7329 (5,5,58,33,37,50,117,128),
7330 (5,5,59,34,38,51,119,131),
7331 (5,5,60,34,38,52,121,133),
7332 (5,5,61,34,39,52,123,135),
7333 (5,5,62,35,39,53,125,137),
7334 (5,5,63,35,40,54,127,140),
7335 (5,5,64,36,40,55,130,142),
7336 (5,5,65,36,41,55,132,144),
7337 (5,5,66,36,41,56,134,147),
7338 (5,5,67,37,41,57,136,149),
7339 (5,5,68,37,42,58,138,151),
7340 (5,5,69,38,42,58,141,154),
7341 (5,5,70,38,43,59,143,156),
7342 (5,5,71,38,44,60,146,159),
7343 (5,5,72,39,44,60,149,162),
7344 (5,5,73,39,45,61,152,165),
7345 (5,5,74,40,45,62,157,168),
7346 (5,5,75,40,46,63,157,171),
7347 (5,5,76,40,47,64,160,174),
7348 (5,5,77,41,47,65,163,177),
7349 (5,5,78,41,48,66,166,180),
7350 (5,5,79,42,48,67,169,183),
7351 (5,5,80,42,49,68,172,186),
7352 (5,6,1,22,18,23,18,25),
7353 (5,6,2,23,19,24,18,25),
7354 (5,6,3,25,20,25,18,26),
7355 (5,6,4,26,20,26,18,26),
7356 (5,6,5,27,21,28,18,26),
7357 (5,6,6,29,22,29,18,26),
7358 (5,6,7,30,23,30,19,27),
7359 (5,6,8,31,24,31,19,27),
7360 (5,6,9,33,25,33,19,27),
7361 (5,6,10,34,25,34,19,28),
7362 (5,6,11,35,26,35,19,28),
7363 (5,6,12,37,27,36,19,28),
7364 (5,6,13,38,28,38,19,28),
7365 (5,6,14,40,29,39,19,29),
7366 (5,6,15,41,30,40,19,29),
7367 (5,6,16,43,31,42,20,29),
7368 (5,6,17,44,32,43,20,30),
7369 (5,6,18,46,33,44,20,30),
7370 (5,6,19,47,34,46,20,31),
7371 (5,6,20,49,34,47,20,31),
7372 (5,6,21,50,35,49,20,31),
7373 (5,6,22,52,36,50,20,32),
7374 (5,6,23,53,37,51,21,32),
7375 (5,6,24,55,38,53,21,32),
7376 (5,6,25,57,39,54,21,33),
7377 (5,6,26,58,40,56,21,33),
7378 (5,6,27,60,41,57,21,34),
7379 (5,6,28,62,42,59,21,34),
7380 (5,6,29,63,43,60,21,34),
7381 (5,6,30,65,44,62,22,35),
7382 (5,6,31,67,46,63,22,35),
7383 (5,6,32,68,47,65,22,36),
7384 (5,6,33,70,48,67,22,36),
7385 (5,6,34,72,49,68,22,36),
7386 (5,6,35,74,50,70,23,37),
7387 (5,6,36,75,51,71,23,37),
7388 (5,6,37,77,52,73,23,38),
7389 (5,6,38,79,53,75,23,38),
7390 (5,6,39,81,54,76,23,39),
7391 (5,6,40,83,55,78,24,39),
7392 (5,6,41,84,57,80,24,40),
7393 (5,6,42,86,58,81,24,40),
7394 (5,6,43,88,59,83,24,41),
7395 (5,6,44,90,60,85,24,41),
7396 (5,6,45,92,61,86,25,42),
7397 (5,6,46,94,62,88,25,42),
7398 (5,6,47,96,64,90,25,43),
7399 (5,6,48,98,65,92,25,43),
7400 (5,6,49,100,66,93,25,44),
7401 (5,6,50,102,67,95,26,44),
7402 (5,6,51,103,67,96,26,45),
7403 (5,6,52,104,68,97,26,45),
7404 (5,6,53,105,69,98,26,46),
7405 (5,6,54,106,70,99,27,46),
7406 (5,6,55,107,71,100,27,47),
7407 (5,6,56,110,73,103,27,48),
7408 (5,6,57,112,74,105,27,48),
7409 (5,6,58,114,75,107,28,49),
7410 (5,6,59,119,77,109,28,49),
7411 (5,6,60,122,78,111,28,50),
7412 (5,6,61,124,79,113,28,51),
7413 (5,6,62,127,81,115,28,51),
7414 (5,6,63,129,82,118,29,52),
7415 (5,6,64,136,84,120,29,52),
7416 (5,6,65,137,85,123,29,53),
7417 (5,6,66,138,87,125,29,54),
7418 (5,6,67,141,88,127,30,54),
7419 (5,6,68,143,90,129,30,55),
7420 (5,6,69,146,91,132,30,56),
7421 (5,6,70,149,93,134,30,56),
7422 (5,6,71,152,95,137,31,57),
7423 (5,6,72,154,96,139,31,58),
7424 (5,6,73,157,98,142,31,59),
7425 (5,6,74,158,100,145,31,59),
7426 (5,6,75,159,101,147,32,60),
7427 (5,6,76,162,103,150,32,61),
7428 (5,6,77,167,105,152,32,62),
7429 (5,6,78,173,106,155,32,62),
7430 (5,6,79,174,108,158,33,63),
7431 (5,6,80,174,110,161,33,64),
7432 (5,8,1,19,18,21,21,27),
7433 (5,8,2,19,18,21,22,28),
7434 (5,8,3,19,18,22,24,30),
7435 (5,8,4,19,18,22,25,31),
7436 (5,8,5,19,19,22,26,32),
7437 (5,8,6,19,19,22,28,34),
7438 (5,8,7,20,19,23,29,35),
7439 (5,8,8,20,19,23,31,36),
7440 (5,8,9,20,19,23,32,38),
7441 (5,8,10,20,19,24,34,39),
7442 (5,8,11,20,20,24,35,40),
7443 (5,8,12,20,20,24,37,42),
7444 (5,8,13,20,20,25,38,43),
7445 (5,8,14,20,20,25,40,45),
7446 (5,8,15,20,20,25,41,46),
7447 (5,8,16,21,21,26,43,48),
7448 (5,8,17,21,21,26,44,49),
7449 (5,8,18,21,21,26,46,51),
7450 (5,8,19,21,21,27,48,52),
7451 (5,8,20,21,21,27,49,54),
7452 (5,8,21,21,22,27,51,55),
7453 (5,8,22,21,22,28,52,57),
7454 (5,8,23,21,22,28,54,58),
7455 (5,8,24,22,22,29,56,60),
7456 (5,8,25,22,23,29,57,62),
7457 (5,8,26,22,23,29,59,63),
7458 (5,8,27,22,23,30,61,65),
7459 (5,8,28,22,23,30,63,67),
7460 (5,8,29,22,24,31,64,68),
7461 (5,8,30,23,24,31,66,70),
7462 (5,8,31,23,24,31,68,72),
7463 (5,8,32,23,24,32,70,73),
7464 (5,8,33,23,25,32,72,75),
7465 (5,8,34,23,25,33,73,77),
7466 (5,8,35,24,25,33,75,79),
7467 (5,8,36,24,25,34,77,80),
7468 (5,8,37,24,26,34,79,82),
7469 (5,8,38,24,26,35,81,84),
7470 (5,8,39,24,26,35,83,86),
7471 (5,8,40,24,27,35,85,88),
7472 (5,8,41,25,27,36,87,90),
7473 (5,8,42,25,27,36,89,91),
7474 (5,8,43,25,27,37,90,93),
7475 (5,8,44,25,28,37,92,95),
7476 (5,8,45,26,28,38,94,97),
7477 (5,8,46,26,28,38,96,99),
7478 (5,8,47,26,29,39,98,101),
7479 (5,8,48,26,29,39,100,103),
7480 (5,8,49,26,29,40,103,105),
7481 (5,8,50,27,30,40,105,107),
7482 (5,8,51,27,30,41,107,109),
7483 (5,8,52,27,30,42,109,111),
7484 (5,8,53,27,31,42,111,113),
7485 (5,8,54,28,31,43,113,115),
7486 (5,8,55,28,31,43,115,117),
7487 (5,8,56,28,32,44,117,119),
7488 (5,8,57,28,32,44,119,121),
7489 (5,8,58,29,32,45,122,123),
7490 (5,8,59,29,33,45,124,126),
7491 (5,8,60,29,33,46,126,128),
7492 (5,8,61,29,34,47,128,130),
7493 (5,8,62,30,34,47,131,132),
7494 (5,8,63,30,34,48,133,134),
7495 (5,8,64,30,35,48,135,136),
7496 (5,8,65,31,35,49,137,139),
7497 (5,8,66,31,35,50,140,141),
7498 (5,8,67,31,36,50,142,143),
7499 (5,8,68,31,36,51,144,145),
7500 (5,8,69,32,37,51,147,148),
7501 (5,8,70,32,37,52,149,150),
7502 (5,8,71,32,37,53,152,153),
7503 (5,8,72,32,38,54,155,156),
7504 (5,8,73,32,38,55,158,159),
7505 (5,8,74,33,39,55,161,161),
7506 (5,8,75,33,39,56,164,164),
7507 (5,8,76,33,39,57,167,167),
7508 (5,8,77,34,40,58,170,170),
7509 (5,8,78,34,40,58,173,173),
7510 (5,8,79,34,41,59,176,176),
7511 (5,8,80,35,41,60,179,179),
7512 (5,9,1,19,18,22,20,27),
7513 (5,9,2,19,18,23,21,28),
7514 (5,9,3,20,19,23,22,29),
7515 (5,9,4,20,19,24,24,30),
7516 (5,9,5,20,19,24,25,32),
7517 (5,9,6,20,20,25,26,33),
7518 (5,9,7,21,20,25,27,34),
7519 (5,9,8,21,21,26,28,35),
7520 (5,9,9,21,21,26,30,36),
7521 (5,9,10,22,21,27,31,38),
7522 (5,9,11,22,22,28,32,39),
7523 (5,9,12,22,22,28,34,40),
7524 (5,9,13,23,23,29,35,41),
7525 (5,9,14,23,23,30,36,43),
7526 (5,9,15,23,24,30,37,44),
7527 (5,9,16,24,24,31,39,45),
7528 (5,9,17,24,24,31,40,47),
7529 (5,9,18,24,25,32,42,48),
7530 (5,9,19,25,25,33,43,49),
7531 (5,9,20,25,26,33,44,51),
7532 (5,9,21,26,26,34,46,52),
7533 (5,9,22,26,27,35,47,53),
7534 (5,9,23,26,27,36,49,55),
7535 (5,9,24,27,28,36,50,56),
7536 (5,9,25,27,28,37,52,58),
7537 (5,9,26,27,29,38,53,59),
7538 (5,9,27,28,29,38,55,60),
7539 (5,9,28,28,30,39,56,62),
7540 (5,9,29,29,30,40,58,63),
7541 (5,9,30,29,31,41,59,65),
7542 (5,9,31,30,31,41,61,66),
7543 (5,9,32,30,32,42,62,68),
7544 (5,9,33,30,32,43,64,69),
7545 (5,9,34,31,33,44,65,71),
7546 (5,9,35,31,33,45,67,73),
7547 (5,9,36,32,34,45,69,74),
7548 (5,9,37,32,34,46,70,76),
7549 (5,9,38,33,35,47,72,77),
7550 (5,9,39,33,36,48,73,79),
7551 (5,9,40,34,36,49,75,81),
7552 (5,9,41,34,37,49,77,82),
7553 (5,9,42,35,37,50,78,84),
7554 (5,9,43,35,38,51,80,86),
7555 (5,9,44,36,39,52,82,87),
7556 (5,9,45,36,39,53,84,89),
7557 (5,9,46,37,40,54,85,91),
7558 (5,9,47,37,40,55,87,92),
7559 (5,9,48,38,41,55,89,94),
7560 (5,9,49,38,42,56,91,96),
7561 (5,9,50,39,42,57,92,98),
7562 (5,9,51,39,43,58,94,100),
7563 (5,9,52,40,44,59,96,101),
7564 (5,9,53,40,44,60,98,103),
7565 (5,9,54,41,45,61,100,105),
7566 (5,9,55,41,45,62,102,107),
7567 (5,9,56,42,46,63,103,109),
7568 (5,9,57,42,47,64,105,111),
7569 (5,9,58,43,47,65,107,112),
7570 (5,9,59,43,48,66,109,114),
7571 (5,9,60,44,49,67,111,116),
7572 (5,9,61,45,50,68,113,118),
7573 (5,9,62,45,50,69,115,120),
7574 (5,9,63,46,51,70,117,122),
7575 (5,9,64,46,52,71,119,124),
7576 (5,9,65,47,52,72,121,126),
7577 (5,9,66,48,53,73,123,128),
7578 (5,9,67,48,54,74,125,130),
7579 (5,9,68,49,55,75,127,132),
7580 (5,9,69,49,55,76,129,134),
7581 (5,9,70,50,56,77,131,136),
7582 (5,9,71,51,57,86,135,147),
7583 (5,9,72,52,57,88,136,149),
7584 (5,9,73,53,58,89,138,152),
7585 (5,9,74,53,59,90,141,155),
7586 (5,9,75,54,60,92,143,157),
7587 (5,9,76,55,61,93,146,160),
7588 (5,9,77,56,62,94,149,163),
7589 (5,9,78,56,63,96,151,166),
7590 (5,9,79,57,64,97,154,169),
7591 (5,9,80,58,65,99,157,171),
7592 (6,1,1,28,15,24,15,22),
7593 (6,1,2,29,16,25,15,22),
7594 (6,1,3,31,17,26,15,23),
7595 (6,1,4,32,17,27,15,23),
7596 (6,1,5,33,18,29,15,23),
7597 (6,1,6,34,19,30,15,23),
7598 (6,1,7,36,20,31,16,24),
7599 (6,1,8,37,21,32,16,24),
7600 (6,1,9,38,22,34,16,24),
7601 (6,1,10,40,22,35,16,25),
7602 (6,1,11,41,23,36,16,25),
7603 (6,1,12,43,24,37,16,25),
7604 (6,1,13,44,25,39,16,26),
7605 (6,1,14,46,26,40,16,26),
7606 (6,1,15,47,27,41,17,26),
7607 (6,1,16,48,28,43,17,27),
7608 (6,1,17,50,29,44,17,27),
7609 (6,1,18,51,30,45,17,27),
7610 (6,1,19,53,31,47,17,28),
7611 (6,1,20,54,32,48,17,28),
7612 (6,1,21,56,33,50,17,28),
7613 (6,1,22,58,34,51,18,29),
7614 (6,1,23,59,35,52,18,29),
7615 (6,1,24,61,36,54,18,30),
7616 (6,1,25,62,37,55,18,30),
7617 (6,1,26,64,38,57,18,30),
7618 (6,1,27,66,39,58,18,31),
7619 (6,1,28,67,40,60,18,31),
7620 (6,1,29,69,41,61,19,32),
7621 (6,1,30,71,42,63,19,32),
7622 (6,1,31,72,43,64,19,32),
7623 (6,1,32,74,44,66,19,33),
7624 (6,1,33,76,45,67,19,33),
7625 (6,1,34,77,46,69,20,34),
7626 (6,1,35,79,47,71,20,34),
7627 (6,1,36,81,48,72,20,35),
7628 (6,1,37,83,49,74,20,35),
7629 (6,1,38,85,50,76,20,35),
7630 (6,1,39,86,51,77,21,36),
7631 (6,1,40,88,53,79,21,36),
7632 (6,1,41,90,54,81,21,37),
7633 (6,1,42,92,55,82,21,37),
7634 (6,1,43,94,56,84,21,38),
7635 (6,1,44,96,57,86,22,38),
7636 (6,1,45,98,58,87,22,39),
7637 (6,1,46,99,60,89,22,39),
7638 (6,1,47,101,61,91,22,40),
7639 (6,1,48,103,62,93,22,40),
7640 (6,1,49,105,63,94,23,41),
7641 (6,1,50,107,65,96,23,41),
7642 (6,1,51,109,66,98,23,42),
7643 (6,1,52,111,67,100,23,42),
7644 (6,1,53,113,68,102,24,43),
7645 (6,1,54,115,70,104,24,44),
7646 (6,1,55,117,71,105,24,44),
7647 (6,1,56,119,72,107,24,45),
7648 (6,1,57,122,73,109,25,45),
7649 (6,1,58,124,75,111,25,46),
7650 (6,1,59,126,76,113,25,46),
7651 (6,1,60,128,77,115,25,47),
7652 (6,1,61,130,79,117,26,48),
7653 (6,1,62,132,80,119,26,48),
7654 (6,1,63,134,81,121,26,49),
7655 (6,1,64,137,83,123,26,49),
7656 (6,1,65,139,84,125,27,50),
7657 (6,1,66,141,85,127,27,51),
7658 (6,1,67,143,87,129,27,51),
7659 (6,1,68,145,88,131,27,52),
7660 (6,1,69,148,90,133,28,52),
7661 (6,1,70,150,91,135,28,53),
7662 (6,1,71,153,92,137,28,54),
7663 (6,1,72,155,94,140,28,55),
7664 (6,1,73,158,96,142,28,56),
7665 (6,1,74,161,97,145,29,56),
7666 (6,1,75,164,99,147,29,57),
7667 (6,1,76,167,101,150,29,58),
7668 (6,1,77,170,103,153,30,59),
7669 (6,1,78,173,104,155,30,59),
7670 (6,1,79,176,106,164,30,60),
7671 (6,1,80,179,108,170,31,61),
7672 (6,3,1,25,18,23,15,23),
7673 (6,3,2,25,19,24,16,24),
7674 (6,3,3,26,21,25,16,24),
7675 (6,3,4,26,22,26,17,25),
7676 (6,3,5,27,24,27,17,25),
7677 (6,3,6,27,25,28,18,26),
7678 (6,3,7,28,26,28,19,27),
7679 (6,3,8,28,28,29,19,27),
7680 (6,3,9,28,29,30,20,28),
7681 (6,3,10,29,31,31,20,29),
7682 (6,3,11,29,32,32,21,29),
7683 (6,3,12,30,34,33,22,30),
7684 (6,3,13,30,35,34,22,31),
7685 (6,3,14,31,37,35,23,32),
7686 (6,3,15,31,38,36,24,32),
7687 (6,3,16,32,40,37,24,33),
7688 (6,3,17,32,41,39,25,34),
7689 (6,3,18,33,43,40,26,35),
7690 (6,3,19,33,45,41,27,35),
7691 (6,3,20,34,46,42,27,36),
7692 (6,3,21,34,48,43,28,37),
7693 (6,3,22,35,50,44,29,38),
7694 (6,3,23,35,51,45,29,38),
7695 (6,3,24,36,53,46,30,39),
7696 (6,3,25,37,55,47,31,40),
7697 (6,3,26,37,56,48,32,41),
7698 (6,3,27,38,58,50,32,42),
7699 (6,3,28,38,60,51,33,42),
7700 (6,3,29,39,62,52,34,43),
7701 (6,3,30,39,63,53,35,44),
7702 (6,3,31,40,65,54,36,45),
7703 (6,3,32,41,67,56,36,46),
7704 (6,3,33,41,69,57,37,47),
7705 (6,3,34,42,71,58,38,48),
7706 (6,3,35,43,72,59,39,48),
7707 (6,3,36,43,74,61,40,49),
7708 (6,3,37,44,76,62,40,50),
7709 (6,3,38,45,78,63,41,51),
7710 (6,3,39,45,80,64,42,52),
7711 (6,3,40,46,82,66,43,53),
7712 (6,3,41,47,84,67,44,54),
7713 (6,3,42,47,86,68,45,55),
7714 (6,3,43,48,88,70,46,56),
7715 (6,3,44,49,90,71,46,57),
7716 (6,3,45,49,92,72,47,58),
7717 (6,3,46,50,94,74,48,59),
7718 (6,3,47,51,96,75,49,60),
7719 (6,3,48,51,98,77,50,61),
7720 (6,3,49,52,100,78,51,62),
7721 (6,3,50,53,102,79,52,63),
7722 (6,3,51,54,104,81,53,64),
7723 (6,3,52,54,106,82,54,65),
7724 (6,3,53,55,108,84,55,66),
7725 (6,3,54,56,110,85,56,67),
7726 (6,3,55,57,112,87,57,68),
7727 (6,3,56,57,114,88,58,69),
7728 (6,3,57,58,117,90,59,70),
7729 (6,3,58,59,119,91,60,71),
7730 (6,3,59,60,121,93,61,72),
7731 (6,3,60,61,123,94,62,74),
7732 (6,3,61,61,125,96,63,75),
7733 (6,3,62,62,128,97,64,76),
7734 (6,3,63,63,130,99,65,77),
7735 (6,3,64,64,132,100,66,78),
7736 (6,3,65,65,134,102,67,79),
7737 (6,3,66,66,137,104,68,80),
7738 (6,3,67,66,139,105,69,81),
7739 (6,3,68,67,141,107,70,83),
7740 (6,3,69,68,144,108,71,84),
7741 (6,3,70,69,146,110,72,85),
7742 (6,3,71,70,149,112,73,86),
7743 (6,3,72,71,152,114,74,87),
7744 (6,3,73,72,155,116,75,89),
7745 (6,3,74,73,158,118,77,90),
7746 (6,3,75,74,161,120,78,92),
7747 (6,3,76,75,164,122,79,93),
7748 (6,3,77,76,167,124,81,95),
7749 (6,3,78,77,176,126,85,96),
7750 (6,3,79,78,179,128,86,98),
7751 (6,3,80,79,183,130,88,99),
7752 (6,6,1,28,15,24,15,22),
7753 (6,6,2,29,16,25,15,22),
7754 (6,6,3,31,17,26,15,23),
7755 (6,6,4,32,17,27,15,23),
7756 (6,6,5,33,18,29,15,23),
7757 (6,6,6,34,19,30,15,23),
7758 (6,6,7,36,20,31,16,24),
7759 (6,6,8,37,21,32,16,24),
7760 (6,6,9,38,22,34,16,24),
7761 (6,6,10,40,22,35,16,25),
7762 (6,6,11,41,23,36,16,25),
7763 (6,6,12,43,24,37,16,25),
7764 (6,6,13,44,25,39,16,26),
7765 (6,6,14,46,26,40,16,26),
7766 (6,6,15,47,27,41,17,26),
7767 (6,6,16,48,28,43,17,27),
7768 (6,6,17,50,29,44,17,27),
7769 (6,6,18,51,30,45,17,27),
7770 (6,6,19,53,31,47,17,28),
7771 (6,6,20,54,32,48,17,28),
7772 (6,6,21,56,33,50,17,28),
7773 (6,6,22,58,34,51,18,29),
7774 (6,6,23,59,35,52,18,29),
7775 (6,6,24,61,36,54,18,30),
7776 (6,6,25,62,37,55,18,30),
7777 (6,6,26,64,38,57,18,30),
7778 (6,6,27,66,39,58,18,31),
7779 (6,6,28,67,40,60,18,31),
7780 (6,6,29,69,41,61,19,32),
7781 (6,6,30,71,42,63,19,32),
7782 (6,6,31,72,43,64,19,32),
7783 (6,6,32,74,44,66,19,33),
7784 (6,6,33,76,45,67,19,33),
7785 (6,6,34,77,46,69,20,34),
7786 (6,6,35,79,47,71,20,34),
7787 (6,6,36,81,48,72,20,35),
7788 (6,6,37,83,49,74,20,35),
7789 (6,6,38,85,50,76,20,35),
7790 (6,6,39,86,51,77,21,36),
7791 (6,6,40,88,53,79,21,36),
7792 (6,6,41,90,54,81,21,37),
7793 (6,6,42,92,55,82,21,37),
7794 (6,6,43,94,56,84,21,38),
7795 (6,6,44,96,57,86,22,38),
7796 (6,6,45,98,58,87,22,39),
7797 (6,6,46,99,60,89,22,39),
7798 (6,6,47,101,60,91,22,40),
7799 (6,6,48,103,61,93,22,40),
7800 (6,6,49,105,62,94,23,41),
7801 (6,6,50,107,63,96,23,41),
7802 (6,6,51,109,64,97,23,42),
7803 (6,6,52,110,65,98,23,42),
7804 (6,6,53,111,66,99,24,43),
7805 (6,6,54,112,67,100,24,44),
7806 (6,6,55,113,68,101,24,44),
7807 (6,6,56,116,70,104,24,45),
7808 (6,6,57,121,71,106,24,45),
7809 (6,6,58,123,72,108,25,46),
7810 (6,6,59,123,74,110,25,46),
7811 (6,6,60,125,75,112,25,47),
7812 (6,6,61,127,76,114,25,48),
7813 (6,6,62,133,78,116,25,48),
7814 (6,6,63,135,79,119,26,49),
7815 (6,6,64,139,81,121,26,49),
7816 (6,6,65,142,82,123,26,50),
7817 (6,6,66,146,84,126,26,51),
7818 (6,6,67,150,85,132,27,51),
7819 (6,6,68,153,87,137,27,52),
7820 (6,6,69,157,88,140,27,53),
7821 (6,6,70,160,90,143,27,53),
7822 (6,6,71,163,92,146,28,54),
7823 (6,6,72,165,93,148,28,55),
7824 (6,6,73,167,95,150,28,56),
7825 (6,6,74,171,97,153,28,56),
7826 (6,6,75,174,98,156,29,57),
7827 (6,6,76,178,100,156,29,58),
7828 (6,6,77,179,102,156,29,59),
7829 (6,6,78,179,103,156,29,59),
7830 (6,6,79,182,105,159,30,60),
7831 (6,6,80,185,107,162,30,61),
7832 (6,7,1,26,15,23,16,24),
7833 (6,7,2,27,15,24,17,25),
7834 (6,7,3,28,16,25,18,26),
7835 (6,7,4,28,16,26,19,27),
7836 (6,7,5,29,17,27,20,28),
7837 (6,7,6,30,17,28,21,29),
7838 (6,7,7,31,18,29,22,30),
7839 (6,7,8,32,18,30,23,31),
7840 (6,7,9,33,19,31,24,32),
7841 (6,7,10,34,19,32,25,33),
7842 (6,7,11,35,20,33,26,35),
7843 (6,7,12,35,20,34,27,36),
7844 (6,7,13,36,21,35,28,37),
7845 (6,7,14,37,21,36,29,38),
7846 (6,7,15,38,22,37,30,39),
7847 (6,7,16,39,22,39,31,40),
7848 (6,7,17,40,23,40,32,42),
7849 (6,7,18,41,23,41,33,43),
7850 (6,7,19,42,24,42,34,44),
7851 (6,7,20,43,24,43,35,45),
7852 (6,7,21,44,25,44,36,46),
7853 (6,7,22,45,25,45,37,48),
7854 (6,7,23,46,26,47,38,49),
7855 (6,7,24,47,27,48,40,50),
7856 (6,7,25,48,27,49,41,51),
7857 (6,7,26,49,28,50,42,53),
7858 (6,7,27,51,28,52,43,54),
7859 (6,7,28,52,29,53,44,55),
7860 (6,7,29,53,29,54,45,57),
7861 (6,7,30,54,30,55,47,58),
7862 (6,7,31,55,31,57,48,59),
7863 (6,7,32,56,31,58,49,61),
7864 (6,7,33,57,32,59,50,62),
7865 (6,7,34,58,33,61,51,64),
7866 (6,7,35,60,33,62,53,65),
7867 (6,7,36,61,34,63,54,66),
7868 (6,7,37,62,34,65,55,68),
7869 (6,7,38,63,35,66,57,69),
7870 (6,7,39,64,36,67,58,71),
7871 (6,7,40,66,36,69,59,72),
7872 (6,7,41,67,37,70,60,74),
7873 (6,7,42,68,38,72,62,75),
7874 (6,7,43,69,38,73,63,77),
7875 (6,7,44,70,39,74,64,78),
7876 (6,7,45,72,40,76,66,80),
7877 (6,7,46,73,41,77,67,81),
7878 (6,7,47,74,41,79,69,83),
7879 (6,7,48,76,42,80,70,84),
7880 (6,7,49,77,43,82,71,86),
7881 (6,7,50,78,43,83,73,88),
7882 (6,7,51,80,44,85,74,89),
7883 (6,7,52,81,45,86,76,91),
7884 (6,7,53,82,46,88,77,92),
7885 (6,7,54,84,46,90,78,94),
7886 (6,7,55,85,47,91,80,96),
7887 (6,7,56,86,48,93,81,97),
7888 (6,7,57,88,49,94,83,99),
7889 (6,7,58,89,49,96,84,101),
7890 (6,7,59,91,50,97,86,102),
7891 (6,7,60,92,51,99,87,104),
7892 (6,7,61,94,52,101,89,106),
7893 (6,7,62,95,52,102,90,108),
7894 (6,7,63,96,53,104,92,109),
7895 (6,7,64,98,54,106,93,111),
7896 (6,7,65,99,55,107,95,113),
7897 (6,7,66,101,56,109,97,115),
7898 (6,7,67,102,57,111,98,117),
7899 (6,7,68,104,57,113,100,118),
7900 (6,7,69,105,58,114,101,120),
7901 (6,7,70,107,59,116,103,122),
7902 (6,7,71,108,60,118,113,124),
7903 (6,7,72,110,61,120,117,127),
7904 (6,7,73,112,62,122,119,129),
7905 (6,7,74,114,63,125,122,131),
7906 (6,7,75,116,64,127,124,133),
7907 (6,7,76,118,65,129,126,136),
7908 (6,7,77,119,66,131,128,138),
7909 (6,7,78,121,67,133,130,140),
7910 (6,7,79,123,68,136,133,143),
7911 (6,7,80,125,69,138,135,145),
7912 (6,11,1,26,15,22,17,24),
7913 (6,11,2,27,16,23,18,25),
7914 (6,11,3,27,16,23,19,26),
7915 (6,11,4,28,17,24,20,27),
7916 (6,11,5,28,17,25,21,29),
7917 (6,11,6,29,18,25,22,30),
7918 (6,11,7,29,18,26,23,31),
7919 (6,11,8,30,19,27,24,32),
7920 (6,11,9,30,19,27,26,34),
7921 (6,11,10,31,20,28,27,35),
7922 (6,11,11,32,20,29,28,36),
7923 (6,11,12,32,21,29,29,37),
7924 (6,11,13,33,21,30,30,39),
7925 (6,11,14,33,22,31,31,40),
7926 (6,11,15,34,23,32,32,41),
7927 (6,11,16,35,23,32,34,43),
7928 (6,11,17,35,24,33,35,44),
7929 (6,11,18,36,24,34,36,45),
7930 (6,11,19,37,25,35,37,47),
7931 (6,11,20,37,26,35,39,48),
7932 (6,11,21,38,26,36,40,50),
7933 (6,11,22,39,27,37,41,51),
7934 (6,11,23,39,28,38,42,52),
7935 (6,11,24,40,28,39,44,54),
7936 (6,11,25,41,29,39,45,55),
7937 (6,11,26,41,30,40,46,57),
7938 (6,11,27,42,30,41,47,58),
7939 (6,11,28,43,31,42,49,60),
7940 (6,11,29,44,32,43,50,61),
7941 (6,11,30,44,32,44,52,63),
7942 (6,11,31,45,33,44,53,64),
7943 (6,11,32,46,34,45,54,66),
7944 (6,11,33,47,34,46,56,67),
7945 (6,11,34,47,35,47,57,69),
7946 (6,11,35,48,36,48,58,71),
7947 (6,11,36,49,36,49,60,72),
7948 (6,11,37,50,37,50,61,74),
7949 (6,11,38,51,38,51,63,76),
7950 (6,11,39,52,39,52,64,77),
7951 (6,11,40,52,39,53,66,79),
7952 (6,11,41,53,40,54,67,81),
7953 (6,11,42,54,41,55,69,82),
7954 (6,11,43,55,42,56,70,84),
7955 (6,11,44,56,43,57,72,86),
7956 (6,11,45,57,43,57,73,87),
7957 (6,11,46,57,44,58,75,89),
7958 (6,11,47,58,45,60,76,91),
7959 (6,11,48,59,46,61,78,93),
7960 (6,11,49,60,47,62,79,94),
7961 (6,11,50,61,47,63,81,96),
7962 (6,11,51,62,48,64,83,98),
7963 (6,11,52,63,49,65,84,100),
7964 (6,11,53,64,50,66,86,102),
7965 (6,11,54,65,51,67,87,104),
7966 (6,11,55,66,51,68,89,105),
7967 (6,11,56,67,52,69,91,107),
7968 (6,11,57,68,53,70,92,109),
7969 (6,11,58,69,54,71,94,111),
7970 (6,11,59,70,55,72,96,113),
7971 (6,11,60,71,56,73,97,115),
7972 (6,11,61,72,57,74,99,117),
7973 (6,11,62,73,58,76,101,119),
7974 (6,11,63,74,59,77,103,121),
7975 (6,11,64,75,59,78,104,123),
7976 (6,11,65,76,60,79,106,125),
7977 (6,11,66,77,61,80,108,127),
7978 (6,11,67,78,62,81,110,129),
7979 (6,11,68,79,63,83,111,131),
7980 (6,11,69,80,64,84,113,133),
7981 (6,11,70,81,65,85,115,135),
7982 (6,11,71,83,66,86,117,137),
7983 (6,11,72,84,68,88,120,140),
7984 (6,11,73,85,69,89,122,142),
7985 (6,11,74,86,70,91,124,145),
7986 (6,11,75,88,71,92,126,147),
7987 (6,11,76,89,72,94,128,150),
7988 (6,11,77,90,73,95,131,153),
7989 (6,11,78,92,75,97,133,155),
7990 (6,11,79,93,76,98,136,158),
7991 (6,11,80,94,77,100,138,185),
7992 (7,1,1,18,23,21,24,20),
7993 (7,1,2,19,24,22,24,20),
7994 (7,1,3,21,25,23,24,21),
7995 (7,1,4,22,25,25,24,21),
7996 (7,1,5,23,26,26,24,21),
7997 (7,1,6,25,27,27,24,21),
7998 (7,1,7,26,28,28,24,22),
7999 (7,1,8,27,29,29,25,22),
8000 (7,1,9,29,29,31,25,22),
8001 (7,1,10,30,30,32,25,23),
8002 (7,1,11,32,31,33,25,23),
8003 (7,1,12,33,32,34,25,23),
8004 (7,1,13,34,33,36,25,24),
8005 (7,1,14,36,34,37,25,24),
8006 (7,1,15,37,35,38,25,24),
8007 (7,1,16,39,36,40,25,25),
8008 (7,1,17,40,36,41,25,25),
8009 (7,1,18,42,37,43,26,25),
8010 (7,1,19,43,38,44,26,26),
8011 (7,1,20,45,39,45,26,26),
8012 (7,1,21,47,40,47,26,26),
8013 (7,1,22,48,41,48,26,27),
8014 (7,1,23,50,42,50,26,27),
8015 (7,1,24,51,43,51,26,28),
8016 (7,1,25,53,44,52,27,28),
8017 (7,1,26,55,45,54,27,28),
8018 (7,1,27,56,46,55,27,29),
8019 (7,1,28,58,47,57,27,29),
8020 (7,1,29,59,48,58,27,30),
8021 (7,1,30,61,49,60,27,30),
8022 (7,1,31,63,50,62,27,30),
8023 (7,1,32,65,51,63,28,31),
8024 (7,1,33,66,52,65,28,31),
8025 (7,1,34,68,53,66,28,32),
8026 (7,1,35,70,55,68,28,32),
8027 (7,1,36,72,56,69,28,33),
8028 (7,1,37,73,57,71,29,33),
8029 (7,1,38,75,58,73,29,34),
8030 (7,1,39,77,59,74,29,34),
8031 (7,1,40,79,60,76,29,35),
8032 (7,1,41,81,61,78,29,35),
8033 (7,1,42,82,62,79,30,35),
8034 (7,1,43,84,64,81,30,36),
8035 (7,1,44,86,65,83,30,36),
8036 (7,1,45,88,66,85,30,37),
8037 (7,1,46,90,67,86,30,37),
8038 (7,1,47,92,68,88,31,38),
8039 (7,1,48,94,70,90,31,38),
8040 (7,1,49,96,71,92,31,39),
8041 (7,1,50,98,72,93,31,40),
8042 (7,1,51,100,73,95,32,40),
8043 (7,1,52,102,75,97,32,41),
8044 (7,1,53,104,76,99,32,41),
8045 (7,1,54,106,77,101,32,42),
8046 (7,1,55,108,78,103,33,42),
8047 (7,1,56,110,80,104,33,43),
8048 (7,1,57,112,81,106,33,43),
8049 (7,1,58,114,82,108,33,44),
8050 (7,1,59,116,84,110,34,44),
8051 (7,1,60,118,85,112,34,45),
8052 (7,1,61,120,86,114,34,46),
8053 (7,1,62,122,88,116,35,46),
8054 (7,1,63,125,89,118,35,47),
8055 (7,1,64,127,91,120,35,47),
8056 (7,1,65,129,92,122,35,48),
8057 (7,1,66,131,93,124,36,49),
8058 (7,1,67,133,95,126,36,49),
8059 (7,1,68,136,96,128,36,50),
8060 (7,1,69,138,98,130,37,50),
8061 (7,1,70,140,99,132,37,51),
8062 (7,1,71,143,100,134,37,52),
8063 (7,1,72,145,102,137,37,53),
8064 (7,1,73,148,104,139,37,54),
8065 (7,1,74,151,105,142,38,54),
8066 (7,1,75,154,107,144,38,55),
8067 (7,1,76,157,109,147,38,56),
8068 (7,1,77,163,111,153,39,57),
8069 (7,1,78,169,112,158,39,57),
8070 (7,1,79,172,114,161,39,58),
8071 (7,1,80,175,116,164,40,59),
8072 (7,4,1,16,26,20,24,20),
8073 (7,4,2,17,27,21,24,20),
8074 (7,4,3,18,29,21,24,21),
8075 (7,4,4,18,30,22,24,21),
8076 (7,4,5,19,32,23,25,21),
8077 (7,4,6,20,33,24,25,22),
8078 (7,4,7,21,35,24,25,22),
8079 (7,4,8,22,36,25,25,23),
8080 (7,4,9,22,38,26,25,23),
8081 (7,4,10,23,39,26,25,23),
8082 (7,4,11,24,41,27,25,24),
8083 (7,4,12,25,42,28,26,24),
8084 (7,4,13,26,44,29,26,25),
8085 (7,4,14,27,46,30,26,25),
8086 (7,4,15,28,47,30,26,25),
8087 (7,4,16,28,49,31,26,26),
8088 (7,4,17,29,50,32,27,26),
8089 (7,4,18,30,52,33,27,27),
8090 (7,4,19,31,54,34,27,27),
8091 (7,4,20,32,56,35,27,28),
8092 (7,4,21,33,57,35,27,28),
8093 (7,4,22,34,59,36,28,29),
8094 (7,4,23,35,61,37,28,29),
8095 (7,4,24,36,62,38,28,30),
8096 (7,4,25,37,64,39,28,30),
8097 (7,4,26,38,66,40,29,31),
8098 (7,4,27,39,68,41,29,31),
8099 (7,4,28,40,70,42,29,32),
8100 (7,4,29,41,72,43,29,32),
8101 (7,4,30,42,73,43,29,33),
8102 (7,4,31,43,75,44,30,33),
8103 (7,4,32,44,77,45,30,34),
8104 (7,4,33,45,79,46,30,34),
8105 (7,4,34,46,81,47,31,35),
8106 (7,4,35,47,83,48,31,35),
8107 (7,4,36,48,85,49,31,36),
8108 (7,4,37,49,87,50,31,36),
8109 (7,4,38,50,89,51,32,37),
8110 (7,4,39,51,91,52,32,38),
8111 (7,4,40,53,93,53,32,38),
8112 (7,4,41,54,95,54,33,39),
8113 (7,4,42,55,97,55,33,39),
8114 (7,4,43,56,99,56,33,40),
8115 (7,4,44,57,101,57,33,40),
8116 (7,4,45,58,103,59,34,41),
8117 (7,4,46,59,105,60,34,42),
8118 (7,4,47,61,107,61,34,42),
8119 (7,4,48,62,110,62,35,43),
8120 (7,4,49,63,112,63,35,44),
8121 (7,4,50,64,114,64,35,44),
8122 (7,4,51,65,116,65,36,45),
8123 (7,4,52,67,118,66,36,45),
8124 (7,4,53,68,121,67,36,46),
8125 (7,4,54,69,123,69,37,47),
8126 (7,4,55,70,125,70,37,47),
8127 (7,4,56,72,127,71,37,48),
8128 (7,4,57,73,130,72,38,49),
8129 (7,4,58,74,132,73,38,49),
8130 (7,4,59,75,134,74,39,50),
8131 (7,4,60,77,137,76,39,51),
8132 (7,4,61,78,139,77,39,51),
8133 (7,4,62,79,141,78,40,52),
8134 (7,4,63,81,144,79,40,53),
8135 (7,4,64,82,146,80,41,54),
8136 (7,4,65,83,149,82,41,54),
8137 (7,4,66,85,151,83,41,55),
8138 (7,4,67,86,154,84,42,56),
8139 (7,4,68,87,156,85,42,57),
8140 (7,4,69,89,158,87,43,57),
8141 (7,4,70,90,161,88,43,58),
8142 (7,4,71,92,164,89,44,59),
8143 (7,4,72,94,167,91,45,59),
8144 (7,4,73,95,170,93,45,60),
8145 (7,4,74,97,173,94,46,61),
8146 (7,4,75,99,176,96,46,62),
8147 (7,4,76,100,179,97,46,63),
8148 (7,4,77,102,182,102,47,64),
8149 (7,4,78,104,186,105,47,65),
8150 (7,4,79,106,189,106,48,66),
8151 (7,4,80,108,192,108,48,67),
8152 (7,6,1,18,23,21,24,20),
8153 (7,6,2,19,24,22,24,20),
8154 (7,6,3,21,25,23,24,21),
8155 (7,6,4,22,25,25,24,21),
8156 (7,6,5,23,26,26,24,21),
8157 (7,6,6,25,27,27,24,21),
8158 (7,6,7,26,28,28,24,22),
8159 (7,6,8,27,29,29,25,22),
8160 (7,6,9,29,29,31,25,22),
8161 (7,6,10,30,30,32,25,23),
8162 (7,6,11,32,31,33,25,23),
8163 (7,6,12,33,32,34,25,23),
8164 (7,6,13,34,33,36,25,24),
8165 (7,6,14,36,34,37,25,24),
8166 (7,6,15,37,35,38,25,24),
8167 (7,6,16,39,36,40,25,25),
8168 (7,6,17,40,36,41,25,25),
8169 (7,6,18,42,37,43,26,25),
8170 (7,6,19,43,38,44,26,26),
8171 (7,6,20,45,39,45,26,26),
8172 (7,6,21,47,40,47,26,26),
8173 (7,6,22,48,41,48,26,27),
8174 (7,6,23,50,42,50,26,27),
8175 (7,6,24,51,43,51,26,28),
8176 (7,6,25,53,44,52,27,28),
8177 (7,6,26,55,45,54,27,28),
8178 (7,6,27,56,46,55,27,29),
8179 (7,6,28,58,47,57,27,29),
8180 (7,6,29,59,48,58,27,30),
8181 (7,6,30,61,49,60,27,30),
8182 (7,6,31,63,50,62,27,30),
8183 (7,6,32,65,51,63,28,31),
8184 (7,6,33,66,52,65,28,31),
8185 (7,6,34,68,53,66,28,32),
8186 (7,6,35,70,55,68,28,32),
8187 (7,6,36,72,56,69,28,33),
8188 (7,6,37,73,57,71,29,33),
8189 (7,6,38,75,58,73,29,34),
8190 (7,6,39,77,59,74,29,34),
8191 (7,6,40,79,60,76,29,35),
8192 (7,6,41,81,61,78,29,35),
8193 (7,6,42,82,62,79,30,35),
8194 (7,6,43,84,64,81,30,36),
8195 (7,6,44,86,65,83,30,36),
8196 (7,6,45,88,66,85,30,37),
8197 (7,6,46,90,67,86,30,37),
8198 (7,6,47,92,68,88,31,38),
8199 (7,6,48,94,70,90,31,38),
8200 (7,6,49,96,71,92,31,39),
8201 (7,6,50,98,72,93,31,40),
8202 (7,6,51,99,72,93,32,40),
8203 (7,6,52,100,73,95,32,41),
8204 (7,6,53,101,74,96,32,41),
8205 (7,6,54,102,75,97,32,42),
8206 (7,6,55,103,76,98,33,42),
8207 (7,6,56,106,78,101,33,43),
8208 (7,6,57,111,79,103,33,43),
8209 (7,6,58,113,80,105,34,44),
8210 (7,6,59,116,82,107,34,44),
8211 (7,6,60,118,83,109,34,45),
8212 (7,6,61,120,84,111,34,46),
8213 (7,6,62,127,86,119,34,46),
8214 (7,6,63,129,87,122,35,47),
8215 (7,6,64,132,89,125,35,47),
8216 (7,6,65,135,90,127,35,48),
8217 (7,6,66,137,92,130,35,49),
8218 (7,6,67,138,93,130,36,49),
8219 (7,6,68,140,95,131,36,50),
8220 (7,6,69,142,96,131,36,51),
8221 (7,6,70,145,98,132,36,51),
8222 (7,6,71,148,100,135,37,52),
8223 (7,6,72,150,101,137,37,53),
8224 (7,6,73,153,103,140,37,54),
8225 (7,6,74,154,105,142,37,54),
8226 (7,6,75,155,106,145,38,55),
8227 (7,6,76,158,108,151,38,56),
8228 (7,6,77,161,110,157,38,57),
8229 (7,6,78,164,111,162,38,57),
8230 (7,6,79,167,113,165,39,58),
8231 (7,6,80,170,115,168,39,59),
8232 (7,8,1,15,23,19,27,22),
8233 (7,8,2,15,23,19,28,23),
8234 (7,8,3,15,23,20,30,25),
8235 (7,8,4,15,23,20,31,26),
8236 (7,8,5,15,24,20,32,27),
8237 (7,8,6,15,24,20,34,29),
8238 (7,8,7,16,24,21,35,30),
8239 (7,8,8,16,24,21,37,31),
8240 (7,8,9,16,24,21,38,33),
8241 (7,8,10,16,24,22,40,34),
8242 (7,8,11,16,25,22,41,36),
8243 (7,8,12,16,25,22,42,37),
8244 (7,8,13,16,25,23,44,38),
8245 (7,8,14,16,25,23,45,40),
8246 (7,8,15,17,25,23,47,41),
8247 (7,8,16,17,25,24,49,43),
8248 (7,8,17,17,26,24,50,44),
8249 (7,8,18,17,26,24,52,46),
8250 (7,8,19,17,26,25,53,47),
8251 (7,8,20,17,26,25,55,49),
8252 (7,8,21,17,26,26,57,51),
8253 (7,8,22,18,27,26,58,52),
8254 (7,8,23,18,27,26,60,54),
8255 (7,8,24,18,27,27,61,55),
8256 (7,8,25,18,27,27,63,57),
8257 (7,8,26,18,28,27,65,59),
8258 (7,8,27,18,28,28,67,60),
8259 (7,8,28,18,28,28,68,62),
8260 (7,8,29,19,28,29,70,64),
8261 (7,8,30,19,29,29,72,65),
8262 (7,8,31,19,29,30,74,67),
8263 (7,8,32,19,29,30,75,69),
8264 (7,8,33,19,29,30,77,70),
8265 (7,8,34,20,30,31,79,72),
8266 (7,8,35,20,30,31,81,74),
8267 (7,8,36,20,30,32,83,76),
8268 (7,8,37,20,30,32,85,78),
8269 (7,8,38,20,31,33,86,79),
8270 (7,8,39,21,31,33,88,81),
8271 (7,8,40,21,31,34,90,83),
8272 (7,8,41,21,32,34,92,85),
8273 (7,8,42,21,32,35,94,87),
8274 (7,8,43,21,32,35,96,89),
8275 (7,8,44,22,32,36,98,91),
8276 (7,8,45,22,33,36,100,92),
8277 (7,8,46,22,33,37,102,94),
8278 (7,8,47,22,33,37,104,96),
8279 (7,8,48,22,34,38,106,98),
8280 (7,8,49,23,34,38,108,100),
8281 (7,8,50,23,34,39,110,102),
8282 (7,8,51,23,35,39,112,104),
8283 (7,8,52,23,35,40,114,106),
8284 (7,8,53,24,35,40,117,108),
8285 (7,8,54,24,36,41,119,110),
8286 (7,8,55,24,36,41,121,112),
8287 (7,8,56,24,37,42,123,114),
8288 (7,8,57,25,37,42,125,117),
8289 (7,8,58,25,37,43,127,119),
8290 (7,8,59,25,38,43,130,121),
8291 (7,8,60,25,38,44,132,123),
8292 (7,8,61,26,38,45,134,125),
8293 (7,8,62,26,39,45,136,127),
8294 (7,8,63,26,39,46,139,129),
8295 (7,8,64,26,40,46,141,132),
8296 (7,8,65,27,40,47,143,134),
8297 (7,8,66,27,40,48,146,136),
8298 (7,8,67,27,41,48,148,138),
8299 (7,8,68,27,41,49,150,140),
8300 (7,8,69,28,42,49,153,143),
8301 (7,8,70,28,42,50,155,145),
8302 (7,8,71,28,42,51,168,148),
8303 (7,8,72,28,43,52,168,151),
8304 (7,8,73,28,43,53,171,154),
8305 (7,8,74,29,44,53,174,156),
8306 (7,8,75,29,44,54,177,159),
8307 (7,8,76,29,44,55,180,162),
8308 (7,8,77,30,45,56,183,165),
8309 (7,8,78,30,45,56,186,168),
8310 (7,8,79,30,46,57,190,171),
8311 (7,8,80,31,46,58,193,174),
8312 (7,9,1,15,23,20,26,22),
8313 (7,9,2,15,23,21,27,23),
8314 (7,9,3,16,24,21,28,24),
8315 (7,9,4,16,24,22,29,25),
8316 (7,9,5,16,24,22,31,27),
8317 (7,9,6,17,25,23,32,28),
8318 (7,9,7,17,25,23,33,29),
8319 (7,9,8,17,26,24,34,30),
8320 (7,9,9,17,26,25,36,31),
8321 (7,9,10,18,26,25,37,33),
8322 (7,9,11,18,27,26,38,34),
8323 (7,9,12,18,27,26,39,35),
8324 (7,9,13,19,28,27,41,36),
8325 (7,9,14,19,28,28,42,38),
8326 (7,9,15,20,28,28,43,39),
8327 (7,9,16,20,29,29,45,40),
8328 (7,9,17,20,29,30,46,42),
8329 (7,9,18,21,30,30,47,43),
8330 (7,9,19,21,30,31,49,44),
8331 (7,9,20,21,31,32,50,46),
8332 (7,9,21,22,31,32,51,47),
8333 (7,9,22,22,31,33,53,49),
8334 (7,9,23,23,32,34,54,50),
8335 (7,9,24,23,32,34,56,51),
8336 (7,9,25,23,33,35,57,53),
8337 (7,9,26,24,33,36,59,54),
8338 (7,9,27,24,34,37,60,56),
8339 (7,9,28,25,34,37,62,57),
8340 (7,9,29,25,35,38,63,59),
8341 (7,9,30,25,35,39,65,60),
8342 (7,9,31,26,36,40,66,62),
8343 (7,9,32,26,36,40,68,63),
8344 (7,9,33,27,37,41,69,65),
8345 (7,9,34,27,38,42,71,66),
8346 (7,9,35,28,38,43,73,68),
8347 (7,9,36,28,39,43,74,69),
8348 (7,9,37,28,39,44,76,71),
8349 (7,9,38,29,40,45,77,73),
8350 (7,9,39,29,40,46,79,74),
8351 (7,9,40,30,41,47,81,76),
8352 (7,9,41,30,41,48,82,78),
8353 (7,9,42,31,42,48,84,79),
8354 (7,9,43,31,43,49,86,81),
8355 (7,9,44,32,43,50,88,83),
8356 (7,9,45,32,44,51,89,84),
8357 (7,9,46,33,44,52,91,86),
8358 (7,9,47,33,45,53,93,88),
8359 (7,9,48,34,46,54,95,89),
8360 (7,9,49,34,46,54,96,91),
8361 (7,9,50,35,47,55,98,93),
8362 (7,9,51,35,48,56,100,95),
8363 (7,9,52,36,48,57,102,97),
8364 (7,9,53,36,49,58,104,98),
8365 (7,9,54,37,50,59,105,100),
8366 (7,9,55,37,50,60,107,102),
8367 (7,9,56,38,51,61,109,104),
8368 (7,9,57,38,52,62,111,106),
8369 (7,9,58,39,52,63,113,108),
8370 (7,9,59,40,53,64,115,109),
8371 (7,9,60,40,54,65,117,111),
8372 (7,9,61,41,54,66,119,113),
8373 (7,9,62,41,55,67,121,115),
8374 (7,9,63,42,56,68,123,117),
8375 (7,9,64,42,57,69,125,119),
8376 (7,9,65,43,57,70,127,121),
8377 (7,9,66,44,58,71,129,123),
8378 (7,9,67,44,59,72,131,125),
8379 (7,9,68,45,59,73,133,127),
8380 (7,9,69,45,60,74,135,129),
8381 (7,9,70,46,61,75,137,131),
8382 (7,9,71,47,62,84,147,142),
8383 (7,9,72,48,62,85,148,144),
8384 (7,9,73,49,63,85,153,147),
8385 (7,9,74,49,64,88,153,150),
8386 (7,9,75,50,65,90,155,152),
8387 (7,9,76,51,66,91,158,155),
8388 (7,9,77,52,67,92,161,158),
8389 (7,9,78,52,68,93,163,161),
8390 (7,9,79,53,69,95,166,164),
8391 (7,9,80,54,70,96,170,166),
8392 (8,1,1,24,22,23,16,21),
8393 (8,1,2,25,23,24,16,21),
8394 (8,1,3,27,24,25,16,22),
8395 (8,1,4,28,24,26,16,22),
8396 (8,1,5,29,25,28,16,22),
8397 (8,1,6,31,26,29,16,22),
8398 (8,1,7,32,27,30,17,23),
8399 (8,1,8,33,28,31,17,23),
8400 (8,1,9,35,28,33,17,23),
8401 (8,1,10,36,29,34,17,24),
8402 (8,1,11,37,30,35,17,24),
8403 (8,1,12,39,31,36,17,24),
8404 (8,1,13,40,32,38,17,25),
8405 (8,1,14,42,33,39,17,25),
8406 (8,1,15,43,34,40,18,25),
8407 (8,1,16,45,35,42,18,26),
8408 (8,1,17,46,35,43,18,26),
8409 (8,1,18,48,36,44,18,26),
8410 (8,1,19,49,37,46,18,27),
8411 (8,1,20,51,38,47,18,27),
8412 (8,1,21,52,39,49,18,27),
8413 (8,1,22,54,40,50,18,28),
8414 (8,1,23,55,41,51,19,28),
8415 (8,1,24,57,42,53,19,29),
8416 (8,1,25,59,43,54,19,29),
8417 (8,1,26,60,44,56,19,29),
8418 (8,1,27,62,45,57,19,30),
8419 (8,1,28,63,46,59,19,30),
8420 (8,1,29,65,47,60,20,31),
8421 (8,1,30,67,48,62,20,31),
8422 (8,1,31,69,49,63,20,31),
8423 (8,1,32,70,50,65,20,32),
8424 (8,1,33,72,51,67,20,32),
8425 (8,1,34,74,53,68,20,33),
8426 (8,1,35,75,54,70,21,33),
8427 (8,1,36,77,55,71,21,34),
8428 (8,1,37,79,56,73,21,34),
8429 (8,1,38,81,57,75,21,35),
8430 (8,1,39,83,58,76,21,35),
8431 (8,1,40,84,59,78,22,35),
8432 (8,1,41,86,60,80,22,36),
8433 (8,1,42,88,62,81,22,36),
8434 (8,1,43,90,63,83,22,37),
8435 (8,1,44,92,64,85,22,37),
8436 (8,1,45,94,65,86,23,38),
8437 (8,1,46,96,66,88,23,38),
8438 (8,1,47,98,67,90,23,39),
8439 (8,1,48,100,69,92,23,39),
8440 (8,1,49,102,70,93,24,40),
8441 (8,1,50,103,71,95,24,40),
8442 (8,1,51,105,72,97,24,41),
8443 (8,1,52,107,74,99,24,42),
8444 (8,1,53,109,75,101,25,42),
8445 (8,1,54,112,76,103,25,43),
8446 (8,1,55,114,78,104,25,43),
8447 (8,1,56,116,79,106,25,44),
8448 (8,1,57,118,80,108,25,44),
8449 (8,1,58,120,81,110,26,45),
8450 (8,1,59,122,83,112,26,45),
8451 (8,1,60,124,84,114,26,46),
8452 (8,1,61,126,85,116,27,47),
8453 (8,1,62,128,87,118,27,47),
8454 (8,1,63,130,88,120,27,48),
8455 (8,1,64,133,90,122,27,48),
8456 (8,1,65,135,91,124,28,49),
8457 (8,1,66,137,92,126,28,50),
8458 (8,1,67,139,94,128,28,50),
8459 (8,1,68,141,95,130,28,51),
8460 (8,1,69,144,97,132,29,51),
8461 (8,1,70,146,98,134,29,52),
8462 (8,1,71,149,99,136,29,53),
8463 (8,1,72,151,101,139,29,54),
8464 (8,1,73,154,103,141,29,55),
8465 (8,1,74,157,104,144,30,55),
8466 (8,1,75,166,106,151,30,56),
8467 (8,1,76,172,108,157,30,57),
8468 (8,1,77,175,110,161,31,58),
8469 (8,1,78,179,111,163,31,58),
8470 (8,1,79,182,113,164,31,59),
8471 (8,1,80,185,115,169,32,60),
8472 (8,3,1,21,25,22,16,22),
8473 (8,3,2,21,26,23,17,23),
8474 (8,3,3,22,28,24,17,23),
8475 (8,3,4,22,29,25,18,24),
8476 (8,3,5,23,30,26,18,25),
8477 (8,3,6,23,32,27,19,25),
8478 (8,3,7,24,33,28,20,26),
8479 (8,3,8,24,35,28,20,26),
8480 (8,3,9,25,36,29,21,27),
8481 (8,3,10,25,38,30,21,28),
8482 (8,3,11,25,39,31,22,29),
8483 (8,3,12,26,41,32,23,29),
8484 (8,3,13,26,42,33,23,30),
8485 (8,3,14,27,44,34,24,31),
8486 (8,3,15,27,45,35,25,31),
8487 (8,3,16,28,47,36,25,32),
8488 (8,3,17,28,48,38,26,33),
8489 (8,3,18,29,50,39,27,34),
8490 (8,3,19,29,51,40,28,34),
8491 (8,3,20,30,53,41,28,35),
8492 (8,3,21,31,55,42,29,36),
8493 (8,3,22,31,56,43,30,37),
8494 (8,3,23,32,58,44,30,37),
8495 (8,3,24,32,60,45,31,38),
8496 (8,3,25,33,61,46,32,39),
8497 (8,3,26,33,63,48,33,40),
8498 (8,3,27,34,65,49,33,41),
8499 (8,3,28,35,66,50,34,41),
8500 (8,3,29,35,68,51,35,42),
8501 (8,3,30,36,70,52,36,43),
8502 (8,3,31,36,72,53,37,44),
8503 (8,3,32,37,73,55,37,45),
8504 (8,3,33,38,75,56,38,46),
8505 (8,3,34,38,77,57,39,47),
8506 (8,3,35,39,79,58,40,48),
8507 (8,3,36,39,81,60,41,48),
8508 (8,3,37,40,83,61,41,49),
8509 (8,3,38,41,85,62,42,50),
8510 (8,3,39,41,86,63,43,51),
8511 (8,3,40,42,88,65,44,52),
8512 (8,3,41,43,90,66,45,53),
8513 (8,3,42,43,92,67,46,54),
8514 (8,3,43,44,94,69,47,55),
8515 (8,3,44,45,96,70,47,56),
8516 (8,3,45,45,98,71,48,57),
8517 (8,3,46,46,100,73,49,58),
8518 (8,3,47,47,102,74,50,59),
8519 (8,3,48,48,104,76,51,60),
8520 (8,3,49,48,106,77,52,61),
8521 (8,3,50,49,108,78,53,62),
8522 (8,3,51,50,110,80,54,63),
8523 (8,3,52,51,113,81,55,64),
8524 (8,3,53,51,115,83,56,65),
8525 (8,3,54,52,117,84,57,66),
8526 (8,3,55,53,119,86,58,67),
8527 (8,3,56,54,121,87,59,68),
8528 (8,3,57,54,123,89,60,69),
8529 (8,3,58,55,126,90,61,70),
8530 (8,3,59,56,128,92,62,71),
8531 (8,3,60,57,130,93,63,73),
8532 (8,3,61,58,132,95,64,74),
8533 (8,3,62,58,134,96,65,75),
8534 (8,3,63,59,137,98,66,76),
8535 (8,3,64,60,139,99,67,77),
8536 (8,3,65,61,141,101,68,78),
8537 (8,3,66,62,144,103,69,79),
8538 (8,3,67,62,146,104,70,80),
8539 (8,3,68,63,148,106,71,82),
8540 (8,3,69,64,151,107,72,83),
8541 (8,3,70,65,153,109,73,84),
8542 (8,3,71,66,156,111,74,85),
8543 (8,3,72,67,159,113,75,86),
8544 (8,3,73,68,162,115,76,88),
8545 (8,3,74,69,165,117,78,89),
8546 (8,3,75,70,174,119,82,91),
8547 (8,3,76,71,177,121,83,92),
8548 (8,3,77,72,180,123,85,94),
8549 (8,3,78,73,184,125,86,95),
8550 (8,3,79,74,187,127,87,97),
8551 (8,3,80,75,190,129,89,98),
8552 (8,4,1,22,25,22,16,21),
8553 (8,4,2,23,26,23,16,21),
8554 (8,4,3,24,28,23,16,22),
8555 (8,4,4,24,29,24,16,22),
8556 (8,4,5,25,31,25,17,22),
8557 (8,4,6,26,32,25,17,23),
8558 (8,4,7,27,34,26,17,23),
8559 (8,4,8,27,35,27,17,24),
8560 (8,4,9,28,37,28,17,24),
8561 (8,4,10,29,38,28,18,24),
8562 (8,4,11,30,40,29,18,25),
8563 (8,4,12,31,41,30,18,25),
8564 (8,4,13,32,43,31,18,26),
8565 (8,4,14,32,45,32,18,26),
8566 (8,4,15,33,46,32,19,26),
8567 (8,4,16,34,48,33,19,27),
8568 (8,4,17,35,50,34,19,27),
8569 (8,4,18,36,51,35,19,28),
8570 (8,4,19,37,53,36,19,28),
8571 (8,4,20,38,55,36,20,29),
8572 (8,4,21,39,56,37,20,29),
8573 (8,4,22,40,58,38,20,30),
8574 (8,4,23,41,60,39,20,30),
8575 (8,4,24,42,62,40,20,31),
8576 (8,4,25,43,63,41,21,31),
8577 (8,4,26,44,65,42,21,32),
8578 (8,4,27,45,67,43,21,32),
8579 (8,4,28,46,69,44,21,33),
8580 (8,4,29,47,71,44,22,33),
8581 (8,4,30,48,72,45,22,34),
8582 (8,4,31,49,74,46,22,34),
8583 (8,4,32,50,76,47,22,35),
8584 (8,4,33,51,78,48,23,35),
8585 (8,4,34,52,80,49,23,36),
8586 (8,4,35,53,82,50,23,36),
8587 (8,4,36,54,84,51,24,37),
8588 (8,4,37,55,86,52,24,37),
8589 (8,4,38,56,88,53,24,38),
8590 (8,4,39,57,90,54,24,38),
8591 (8,4,40,58,92,55,25,39),
8592 (8,4,41,59,94,56,25,40),
8593 (8,4,42,60,96,57,25,40),
8594 (8,4,43,62,98,58,26,41),
8595 (8,4,44,63,100,59,26,41),
8596 (8,4,45,64,102,60,26,42),
8597 (8,4,46,65,104,61,27,43),
8598 (8,4,47,66,107,63,27,43),
8599 (8,4,48,67,109,64,27,44),
8600 (8,4,49,69,111,65,27,44),
8601 (8,4,50,70,113,66,28,45),
8602 (8,4,51,71,115,67,28,46),
8603 (8,4,52,72,117,68,28,46),
8604 (8,4,53,74,120,69,29,47),
8605 (8,4,54,75,122,70,29,48),
8606 (8,4,55,76,124,72,29,48),
8607 (8,4,56,77,126,73,30,49),
8608 (8,4,57,79,129,74,30,50),
8609 (8,4,58,80,131,75,30,50),
8610 (8,4,59,81,133,76,31,51),
8611 (8,4,60,82,136,77,31,52),
8612 (8,4,61,84,138,79,32,52),
8613 (8,4,62,85,140,80,32,53),
8614 (8,4,63,86,143,81,32,54),
8615 (8,4,64,88,145,82,33,55),
8616 (8,4,65,89,148,84,33,55),
8617 (8,4,66,90,150,85,33,56),
8618 (8,4,67,92,153,86,34,57),
8619 (8,4,68,93,155,87,34,58),
8620 (8,4,69,95,157,89,35,58),
8621 (8,4,70,96,160,90,35,59),
8622 (8,4,71,98,163,94,35,60),
8623 (8,4,72,100,166,96,36,60),
8624 (8,4,73,101,169,96,36,61),
8625 (8,4,74,103,172,97,37,62),
8626 (8,4,75,105,175,98,37,63),
8627 (8,4,76,106,178,99,37,64),
8628 (8,4,77,108,181,105,38,65),
8629 (8,4,78,110,185,107,38,66),
8630 (8,4,79,112,188,109,39,67),
8631 (8,4,80,114,191,110,39,68),
8632 (8,5,1,21,22,21,18,24),
8633 (8,5,2,21,22,21,19,25),
8634 (8,5,3,21,22,22,21,27),
8635 (8,5,4,21,23,22,22,28),
8636 (8,5,5,22,23,22,23,29),
8637 (8,5,6,22,23,23,25,31),
8638 (8,5,7,22,23,23,26,32),
8639 (8,5,8,22,24,24,27,34),
8640 (8,5,9,22,24,24,29,35),
8641 (8,5,10,22,24,24,30,37),
8642 (8,5,11,23,24,25,32,38),
8643 (8,5,12,23,24,25,33,40),
8644 (8,5,13,23,25,26,35,41),
8645 (8,5,14,23,25,26,36,43),
8646 (8,5,15,23,25,26,38,44),
8647 (8,5,16,24,26,27,39,46),
8648 (8,5,17,24,26,27,41,47),
8649 (8,5,18,24,26,28,42,49),
8650 (8,5,19,24,26,28,44,50),
8651 (8,5,20,24,27,29,45,52),
8652 (8,5,21,25,27,29,47,54),
8653 (8,5,22,25,27,30,48,55),
8654 (8,5,23,25,28,30,50,57),
8655 (8,5,24,25,28,31,52,59),
8656 (8,5,25,25,28,31,53,60),
8657 (8,5,26,26,28,32,55,62),
8658 (8,5,27,26,29,32,56,64),
8659 (8,5,28,26,29,33,58,65),
8660 (8,5,29,26,29,33,60,67),
8661 (8,5,30,27,30,34,62,69),
8662 (8,5,31,27,30,34,63,71),
8663 (8,5,32,27,30,35,65,73),
8664 (8,5,33,27,31,35,67,74),
8665 (8,5,34,28,31,36,68,76),
8666 (8,5,35,28,32,36,70,78),
8667 (8,5,36,28,32,37,72,80),
8668 (8,5,37,29,32,37,74,82),
8669 (8,5,38,29,33,38,76,84),
8670 (8,5,39,29,33,38,77,86),
8671 (8,5,40,29,33,39,79,87),
8672 (8,5,41,30,34,40,81,89),
8673 (8,5,42,30,34,40,83,91),
8674 (8,5,43,30,35,41,85,93),
8675 (8,5,44,31,35,41,87,95),
8676 (8,5,45,31,35,42,89,97),
8677 (8,5,46,31,36,43,91,99),
8678 (8,5,47,32,36,43,93,101),
8679 (8,5,48,32,37,44,94,103),
8680 (8,5,49,32,37,44,96,105),
8681 (8,5,50,33,37,45,98,107),
8682 (8,5,51,33,38,46,100,110),
8683 (8,5,52,33,38,46,102,112),
8684 (8,5,53,34,39,47,104,114),
8685 (8,5,54,34,39,48,106,116),
8686 (8,5,55,34,40,48,109,118),
8687 (8,5,56,35,40,49,111,120),
8688 (8,5,57,35,41,50,113,122),
8689 (8,5,58,35,41,50,115,125),
8690 (8,5,59,36,42,51,117,127),
8691 (8,5,60,36,42,52,119,129),
8692 (8,5,61,36,42,52,121,131),
8693 (8,5,62,37,43,53,123,133),
8694 (8,5,63,37,43,54,125,136),
8695 (8,5,64,38,44,55,128,138),
8696 (8,5,65,38,44,55,130,140),
8697 (8,5,66,38,45,56,132,143),
8698 (8,5,67,39,45,57,134,145),
8699 (8,5,68,39,46,58,136,147),
8700 (8,5,69,40,46,58,139,150),
8701 (8,5,70,40,47,59,141,152),
8702 (8,5,71,40,48,60,144,155),
8703 (8,5,72,41,48,60,147,158),
8704 (8,5,73,41,49,61,150,161),
8705 (8,5,74,42,49,62,152,164),
8706 (8,5,75,42,50,63,155,167),
8707 (8,5,76,42,51,64,158,170),
8708 (8,5,77,43,51,65,161,173),
8709 (8,5,78,43,52,66,164,176),
8710 (8,5,79,44,52,67,167,179),
8711 (8,5,80,44,53,68,170,182),
8712 (8,6,1,24,22,23,16,21),
8713 (8,6,2,25,23,24,16,21),
8714 (8,6,3,27,24,25,16,22),
8715 (8,6,4,28,24,26,16,22),
8716 (8,6,5,29,25,28,16,22),
8717 (8,6,6,31,26,29,16,22),
8718 (8,6,7,32,27,30,17,23),
8719 (8,6,8,33,28,31,17,23),
8720 (8,6,9,35,28,33,17,23),
8721 (8,6,10,36,29,34,17,24),
8722 (8,6,11,37,30,35,17,24),
8723 (8,6,12,39,31,36,17,24),
8724 (8,6,13,40,32,38,17,25),
8725 (8,6,14,42,33,39,17,25),
8726 (8,6,15,43,34,40,18,25),
8727 (8,6,16,45,35,42,18,26),
8728 (8,6,17,46,35,43,18,26),
8729 (8,6,18,48,36,44,18,26),
8730 (8,6,19,49,37,46,18,27),
8731 (8,6,20,51,38,47,18,27),
8732 (8,6,21,52,39,49,18,27),
8733 (8,6,22,54,40,50,18,28),
8734 (8,6,23,55,41,51,19,28),
8735 (8,6,24,57,42,53,19,29),
8736 (8,6,25,59,43,54,19,29),
8737 (8,6,26,60,44,56,19,29),
8738 (8,6,27,62,45,57,19,30),
8739 (8,6,28,63,46,59,19,30),
8740 (8,6,29,65,47,60,20,31),
8741 (8,6,30,67,48,62,20,31),
8742 (8,6,31,69,49,63,20,31),
8743 (8,6,32,70,50,65,20,32),
8744 (8,6,33,72,51,67,20,32),
8745 (8,6,34,74,53,68,20,33),
8746 (8,6,35,75,54,70,21,33),
8747 (8,6,36,77,55,71,21,34),
8748 (8,6,37,79,56,73,21,34),
8749 (8,6,38,81,57,75,21,35),
8750 (8,6,39,83,58,76,21,35),
8751 (8,6,40,84,59,78,22,35),
8752 (8,6,41,86,60,80,22,36),
8753 (8,6,42,88,62,81,22,36),
8754 (8,6,43,90,63,83,22,37),
8755 (8,6,44,92,64,85,22,37),
8756 (8,6,45,94,65,86,23,38),
8757 (8,6,46,96,66,88,23,38),
8758 (8,6,47,98,67,90,23,39),
8759 (8,6,48,100,69,92,23,39),
8760 (8,6,49,102,70,93,24,40),
8761 (8,6,50,103,71,95,24,40),
8762 (8,6,51,105,72,96,24,41),
8763 (8,6,52,106,74,97,24,42),
8764 (8,6,53,107,73,98,25,42),
8765 (8,6,54,108,74,99,25,43),
8766 (8,6,55,109,75,100,25,43),
8767 (8,6,56,112,77,103,25,44),
8768 (8,6,57,114,78,105,25,44),
8769 (8,6,58,118,79,107,26,45),
8770 (8,6,59,119,81,109,26,45),
8771 (8,6,60,121,82,111,26,46),
8772 (8,6,61,123,83,113,26,47),
8773 (8,6,62,126,85,115,26,47),
8774 (8,6,63,128,86,118,27,48),
8775 (8,6,64,131,88,120,27,48),
8776 (8,6,65,138,89,122,27,49),
8777 (8,6,66,140,91,125,27,50),
8778 (8,6,67,143,92,127,28,50),
8779 (8,6,68,145,94,129,28,51),
8780 (8,6,69,148,95,132,28,52),
8781 (8,6,70,151,97,134,28,52),
8782 (8,6,71,154,99,137,29,53),
8783 (8,6,72,156,100,139,29,54),
8784 (8,6,73,159,102,142,29,55),
8785 (8,6,74,162,104,144,29,55),
8786 (8,6,75,165,105,147,30,56),
8787 (8,6,76,168,107,150,30,57),
8788 (8,6,77,169,109,153,30,58),
8789 (8,6,78,170,110,155,30,58),
8790 (8,6,79,178,112,158,31,59),
8791 (8,6,80,181,114,161,31,60),
8792 (8,7,1,22,22,22,17,23),
8793 (8,7,2,23,22,23,18,24),
8794 (8,7,3,24,23,24,19,25),
8795 (8,7,4,25,23,25,20,26),
8796 (8,7,5,25,24,26,21,27),
8797 (8,7,6,26,24,27,22,28),
8798 (8,7,7,27,25,28,23,29),
8799 (8,7,8,28,25,29,24,30),
8800 (8,7,9,29,25,30,25,31),
8801 (8,7,10,30,26,31,26,33),
8802 (8,7,11,31,26,32,27,34),
8803 (8,7,12,32,27,33,28,35),
8804 (8,7,13,33,27,34,29,36),
8805 (8,7,14,34,28,35,30,37),
8806 (8,7,15,34,28,36,31,38),
8807 (8,7,16,35,29,38,32,39),
8808 (8,7,17,36,29,39,33,41),
8809 (8,7,18,37,30,40,34,42),
8810 (8,7,19,38,30,41,35,43),
8811 (8,7,20,39,31,42,36,44),
8812 (8,7,21,40,32,43,37,45),
8813 (8,7,22,41,32,45,38,47),
8814 (8,7,23,43,33,46,39,48),
8815 (8,7,24,44,33,47,40,49),
8816 (8,7,25,45,34,48,42,51),
8817 (8,7,26,46,34,49,43,52),
8818 (8,7,27,47,35,51,44,53),
8819 (8,7,28,48,35,52,45,54),
8820 (8,7,29,49,36,53,46,56),
8821 (8,7,30,50,37,54,48,57),
8822 (8,7,31,51,37,56,49,59),
8823 (8,7,32,52,38,57,50,60),
8824 (8,7,33,53,38,58,51,61),
8825 (8,7,34,55,39,60,52,63),
8826 (8,7,35,56,40,61,54,64),
8827 (8,7,36,57,40,62,55,66),
8828 (8,7,37,58,41,64,56,67),
8829 (8,7,38,59,42,65,57,68),
8830 (8,7,39,61,42,66,59,70),
8831 (8,7,40,62,43,68,60,71),
8832 (8,7,41,63,44,69,61,73),
8833 (8,7,42,64,44,71,63,74),
8834 (8,7,43,65,45,72,64,76),
8835 (8,7,44,67,46,74,65,77),
8836 (8,7,45,68,46,75,67,79),
8837 (8,7,46,69,47,76,68,80),
8838 (8,7,47,71,48,78,69,82),
8839 (8,7,48,72,49,79,71,83),
8840 (8,7,49,73,49,81,72,85),
8841 (8,7,50,74,50,82,74,87),
8842 (8,7,51,76,51,84,75,88),
8843 (8,7,52,77,51,85,77,90),
8844 (8,7,53,78,52,87,78,92),
8845 (8,7,54,80,53,89,79,93),
8846 (8,7,55,81,54,90,81,95),
8847 (8,7,56,83,55,92,82,96),
8848 (8,7,57,84,55,93,84,98),
8849 (8,7,58,85,56,95,85,100),
8850 (8,7,59,87,57,97,87,102),
8851 (8,7,60,88,58,98,88,103),
8852 (8,7,61,90,58,100,90,105),
8853 (8,7,62,91,59,101,91,107),
8854 (8,7,63,93,60,103,93,108),
8855 (8,7,64,94,61,105,94,110),
8856 (8,7,65,95,62,106,96,112),
8857 (8,7,66,97,63,108,98,114),
8858 (8,7,67,98,63,110,99,116),
8859 (8,7,68,100,64,112,101,117),
8860 (8,7,69,101,65,113,102,119),
8861 (8,7,70,103,66,115,104,121),
8862 (8,7,71,104,67,117,116,123),
8863 (8,7,72,106,68,119,118,126),
8864 (8,7,73,108,69,121,121,128),
8865 (8,7,74,110,70,124,123,130),
8866 (8,7,75,112,71,126,125,132),
8867 (8,7,76,114,72,128,127,135),
8868 (8,7,77,115,73,130,129,137),
8869 (8,7,78,117,74,132,132,139),
8870 (8,7,79,119,75,135,134,142),
8871 (8,7,80,121,76,137,136,144),
8872 (8,8,1,21,22,21,19,23),
8873 (8,8,2,21,22,21,20,24),
8874 (8,8,3,21,22,22,22,26),
8875 (8,8,4,21,22,22,23,27),
8876 (8,8,5,21,23,22,25,28),
8877 (8,8,6,21,23,22,26,30),
8878 (8,8,7,21,23,23,27,31),
8879 (8,8,8,22,23,23,29,32),
8880 (8,8,9,22,23,23,30,34),
8881 (8,8,10,22,23,24,32,35),
8882 (8,8,11,22,24,24,33,37),
8883 (8,8,12,22,24,24,35,38),
8884 (8,8,13,22,24,25,36,39),
8885 (8,8,14,22,24,25,38,41),
8886 (8,8,15,22,24,25,39,42),
8887 (8,8,16,22,24,26,41,44),
8888 (8,8,17,23,25,26,42,45),
8889 (8,8,18,23,25,26,44,47),
8890 (8,8,19,23,25,27,46,48),
8891 (8,8,20,23,25,27,47,50),
8892 (8,8,21,23,25,27,49,51),
8893 (8,8,22,23,26,28,51,53),
8894 (8,8,23,23,26,28,52,55),
8895 (8,8,24,24,26,29,54,56),
8896 (8,8,25,24,26,29,56,58),
8897 (8,8,26,24,27,29,57,60),
8898 (8,8,27,24,27,30,59,61),
8899 (8,8,28,24,27,30,61,63),
8900 (8,8,29,24,27,31,63,65),
8901 (8,8,30,24,28,31,64,66),
8902 (8,8,31,25,28,31,66,68),
8903 (8,8,32,25,28,32,68,70),
8904 (8,8,33,25,28,32,70,71),
8905 (8,8,34,25,29,33,71,73),
8906 (8,8,35,25,29,33,73,75),
8907 (8,8,36,26,29,34,75,77),
8908 (8,8,37,26,29,34,77,79),
8909 (8,8,38,26,30,35,79,80),
8910 (8,8,39,26,30,35,81,82),
8911 (8,8,40,26,30,35,83,84),
8912 (8,8,41,27,31,36,85,86),
8913 (8,8,42,27,31,36,87,88),
8914 (8,8,43,27,31,37,89,90),
8915 (8,8,44,27,32,37,91,91),
8916 (8,8,45,27,32,38,93,93),
8917 (8,8,46,28,32,38,95,95),
8918 (8,8,47,28,32,39,97,97),
8919 (8,8,48,28,33,39,99,99),
8920 (8,8,49,28,33,40,101,101),
8921 (8,8,50,29,33,40,103,103),
8922 (8,8,51,29,34,41,105,105),
8923 (8,8,52,29,34,42,107,107),
8924 (8,8,53,29,35,42,109,109),
8925 (8,8,54,30,35,43,111,111),
8926 (8,8,55,30,35,43,113,113),
8927 (8,8,56,30,36,44,115,115),
8928 (8,8,57,30,36,44,118,118),
8929 (8,8,58,31,36,45,120,120),
8930 (8,8,59,31,37,45,122,122),
8931 (8,8,60,31,37,46,124,124),
8932 (8,8,61,31,37,47,126,126),
8933 (8,8,62,32,38,47,129,128),
8934 (8,8,63,32,38,48,131,130),
8935 (8,8,64,32,39,48,133,133),
8936 (8,8,65,33,39,49,135,135),
8937 (8,8,66,33,39,50,138,137),
8938 (8,8,67,33,40,50,140,139),
8939 (8,8,68,33,40,51,142,141),
8940 (8,8,69,34,41,51,145,144),
8941 (8,8,70,34,41,52,147,146),
8942 (8,8,71,34,41,53,150,149),
8943 (8,8,72,34,42,54,153,152),
8944 (8,8,73,34,42,55,156,155),
8945 (8,8,74,35,43,55,159,157),
8946 (8,8,75,35,43,56,162,160),
8947 (8,8,76,35,43,57,168,163),
8948 (8,8,77,36,44,58,168,166),
8949 (8,8,78,36,44,58,171,169),
8950 (8,8,79,36,45,59,177,172),
8951 (8,8,80,37,45,60,177,175),
8952 (10,2,1,19,22,21,24,20),
8953 (10,2,2,20,23,22,25,21),
8954 (10,2,3,21,23,23,25,21),
8955 (10,2,4,22,24,24,26,22),
8956 (10,2,5,23,24,25,27,23),
8957 (10,2,6,25,25,26,27,24),
8958 (10,2,7,26,25,27,28,24),
8959 (10,2,8,27,26,28,29,25),
8960 (10,2,9,28,27,29,29,26),
8961 (10,2,10,29,27,31,30,26),
8962 (10,2,11,30,28,32,31,27),
8963 (10,2,12,32,29,33,31,28),
8964 (10,2,13,33,29,34,32,29),
8965 (10,2,14,34,30,35,33,30),
8966 (10,2,15,35,31,36,33,30),
8967 (10,2,16,37,31,37,34,31),
8968 (10,2,17,38,32,39,35,32),
8969 (10,2,18,39,33,40,36,33),
8970 (10,2,19,40,33,41,36,34),
8971 (10,2,20,42,34,42,37,35),
8972 (10,2,21,43,35,44,38,35),
8973 (10,2,22,44,35,45,39,36),
8974 (10,2,23,46,36,46,40,37),
8975 (10,2,24,47,37,47,40,38),
8976 (10,2,25,49,38,49,41,39),
8977 (10,2,26,50,38,50,42,40),
8978 (10,2,27,51,39,51,43,41),
8979 (10,2,28,53,40,53,44,42),
8980 (10,2,29,54,41,54,45,43),
8981 (10,2,30,56,41,55,45,43),
8982 (10,2,31,57,42,57,46,44),
8983 (10,2,32,58,43,58,47,45),
8984 (10,2,33,60,44,59,48,46),
8985 (10,2,34,61,45,61,49,47),
8986 (10,2,35,63,45,62,50,48),
8987 (10,2,36,64,46,64,51,49),
8988 (10,2,37,66,47,65,52,50),
8989 (10,2,38,67,48,67,53,51),
8990 (10,2,39,69,49,68,54,52),
8991 (10,2,40,71,50,69,55,53),
8992 (10,2,41,72,50,71,55,54),
8993 (10,2,42,74,51,72,56,55),
8994 (10,2,43,75,52,74,57,56),
8995 (10,2,44,77,53,75,58,57),
8996 (10,2,45,79,54,77,59,59),
8997 (10,2,46,80,55,78,60,60),
8998 (10,2,47,82,56,80,61,61),
8999 (10,2,48,83,57,82,62,62),
9000 (10,2,49,85,58,83,63,63),
9001 (10,2,50,87,59,85,64,64),
9002 (10,2,51,89,60,86,66,65),
9003 (10,2,52,90,61,88,67,66),
9004 (10,2,53,92,61,90,68,67),
9005 (10,2,54,94,62,91,69,69),
9006 (10,2,55,95,63,93,70,70),
9007 (10,2,56,97,64,95,71,71),
9008 (10,2,57,99,65,96,72,72),
9009 (10,2,58,101,66,98,73,73),
9010 (10,2,59,102,67,100,74,74),
9011 (10,2,60,104,68,101,75,76),
9012 (10,2,61,106,69,103,76,77),
9013 (10,2,62,108,70,105,78,78),
9014 (10,2,63,110,72,106,79,79),
9015 (10,2,64,112,73,108,80,80),
9016 (10,2,65,113,74,110,81,82),
9017 (10,2,66,115,75,112,82,83),
9018 (10,2,67,117,76,114,83,84),
9019 (10,2,68,119,77,115,85,85),
9020 (10,2,69,121,78,117,86,87),
9021 (10,2,70,123,79,119,87,88),
9022 (10,2,71,125,80,120,88,89),
9023 (10,2,72,128,81,123,90,91),
9024 (10,2,73,130,82,125,91,93),
9025 (10,2,74,133,84,127,93,94),
9026 (10,2,75,135,85,129,94,96),
9027 (10,2,76,137,86,132,96,97),
9028 (10,2,77,140,88,134,97,99),
9029 (10,2,78,143,89,136,99,101),
9030 (10,2,79,145,90,139,100,102),
9031 (10,2,80,148,92,141,102,104),
9032 (10,3,1,17,25,20,24,20),
9033 (10,3,2,17,26,21,25,21),
9034 (10,3,3,18,28,22,25,21),
9035 (10,3,4,18,29,23,26,22),
9036 (10,3,5,19,30,24,26,23),
9037 (10,3,6,19,32,25,27,23),
9038 (10,3,7,20,33,26,27,24),
9039 (10,3,8,20,35,27,28,25),
9040 (10,3,9,21,36,27,29,25),
9041 (10,3,10,21,38,28,29,26),
9042 (10,3,11,22,39,29,30,27),
9043 (10,3,12,22,41,30,31,27),
9044 (10,3,13,23,42,31,31,28),
9045 (10,3,14,23,44,32,32,29),
9046 (10,3,15,24,45,34,32,29),
9047 (10,3,16,24,47,35,33,30),
9048 (10,3,17,25,48,36,34,31),
9049 (10,3,18,25,50,37,34,32),
9050 (10,3,19,26,51,38,35,32),
9051 (10,3,20,26,53,39,36,33),
9052 (10,3,21,27,55,40,37,34),
9053 (10,3,22,27,56,41,37,35),
9054 (10,3,23,28,58,42,38,36),
9055 (10,3,24,28,60,43,39,36),
9056 (10,3,25,29,61,44,39,37),
9057 (10,3,26,30,63,46,40,38),
9058 (10,3,27,30,65,47,41,39),
9059 (10,3,28,31,66,48,42,40),
9060 (10,3,29,31,68,49,42,40),
9061 (10,3,30,32,70,50,43,41),
9062 (10,3,31,33,72,52,44,42),
9063 (10,3,32,33,73,53,45,43),
9064 (10,3,33,34,75,54,46,44),
9065 (10,3,34,34,77,55,46,45),
9066 (10,3,35,35,79,57,47,46),
9067 (10,3,36,36,81,58,48,47),
9068 (10,3,37,36,83,59,49,47),
9069 (10,3,38,37,85,60,50,48),
9070 (10,3,39,38,86,62,51,49),
9071 (10,3,40,38,88,63,51,50),
9072 (10,3,41,39,90,64,52,51),
9073 (10,3,42,40,92,66,53,52),
9074 (10,3,43,40,94,67,54,53),
9075 (10,3,44,41,96,68,55,54),
9076 (10,3,45,42,98,70,56,55),
9077 (10,3,46,42,100,71,57,56),
9078 (10,3,47,43,102,72,58,57),
9079 (10,3,48,44,104,74,59,58),
9080 (10,3,49,45,106,75,60,59),
9081 (10,3,50,45,108,77,61,60),
9082 (10,3,51,46,110,78,61,61),
9083 (10,3,52,47,113,79,62,62),
9084 (10,3,53,47,115,81,63,63),
9085 (10,3,54,48,117,82,64,64),
9086 (10,3,55,49,119,84,65,65),
9087 (10,3,56,50,121,85,66,66),
9088 (10,3,57,50,123,87,67,67),
9089 (10,3,58,51,126,88,68,68),
9090 (10,3,59,52,128,90,69,70),
9091 (10,3,60,53,130,91,70,71),
9092 (10,3,61,54,132,93,71,72),
9093 (10,3,62,54,134,94,72,73),
9094 (10,3,63,55,137,96,73,74),
9095 (10,3,64,56,139,97,75,75),
9096 (10,3,65,57,141,99,76,76),
9097 (10,3,66,58,144,101,77,77),
9098 (10,3,67,58,146,102,78,78),
9099 (10,3,68,59,148,104,79,80),
9100 (10,3,69,60,151,105,80,81),
9101 (10,3,70,61,153,107,81,82),
9102 (10,3,71,62,156,108,82,83),
9103 (10,3,72,63,159,110,83,84),
9104 (10,3,73,64,162,112,84,86),
9105 (10,3,74,65,165,114,86,87),
9106 (10,3,75,66,168,116,87,89),
9107 (10,3,76,67,171,118,89,90),
9108 (10,3,77,68,174,120,90,92),
9109 (10,3,78,69,177,122,91,93),
9110 (10,3,79,70,180,124,92,95),
9111 (10,3,80,71,183,126,94,96),
9112 (10,4,1,18,25,20,24,19),
9113 (10,4,2,19,26,21,24,19),
9114 (10,4,3,20,28,21,24,20),
9115 (10,4,4,20,29,22,24,20),
9116 (10,4,5,21,31,23,25,20),
9117 (10,4,6,22,32,24,25,21),
9118 (10,4,7,23,34,24,25,21),
9119 (10,4,8,24,35,25,25,22),
9120 (10,4,9,24,37,26,25,22),
9121 (10,4,10,25,38,26,25,22),
9122 (10,4,11,26,40,27,25,23),
9123 (10,4,12,27,41,28,26,23),
9124 (10,4,13,28,43,29,26,24),
9125 (10,4,14,29,45,30,26,24),
9126 (10,4,15,29,46,30,26,25),
9127 (10,4,16,30,48,31,26,25),
9128 (10,4,17,31,50,32,27,25),
9129 (10,4,18,32,51,33,27,26),
9130 (10,4,19,33,53,34,27,26),
9131 (10,4,20,34,55,35,27,27),
9132 (10,4,21,35,56,35,27,27),
9133 (10,4,22,36,58,36,28,28),
9134 (10,4,23,37,60,37,28,28),
9135 (10,4,24,38,62,38,28,29),
9136 (10,4,25,39,63,39,28,29),
9137 (10,4,26,40,65,40,29,30),
9138 (10,4,27,41,67,41,29,30),
9139 (10,4,28,42,69,42,29,31),
9140 (10,4,29,43,71,43,29,31),
9141 (10,4,30,44,72,43,29,32),
9142 (10,4,31,45,74,44,30,32),
9143 (10,4,32,46,76,45,30,33),
9144 (10,4,33,47,78,46,30,33),
9145 (10,4,34,48,80,47,31,34),
9146 (10,4,35,49,82,48,31,34),
9147 (10,4,36,50,84,49,31,35),
9148 (10,4,37,51,86,50,31,35),
9149 (10,4,38,52,88,51,32,36),
9150 (10,4,39,53,90,52,32,37),
9151 (10,4,40,54,92,53,32,37),
9152 (10,4,41,56,94,54,33,38),
9153 (10,4,42,57,96,55,33,38),
9154 (10,4,43,58,98,56,33,39),
9155 (10,4,44,59,100,57,33,39),
9156 (10,4,45,60,102,59,34,40),
9157 (10,4,46,61,104,60,34,41),
9158 (10,4,47,62,107,61,34,41),
9159 (10,4,48,64,109,62,35,42),
9160 (10,4,49,65,111,63,35,43),
9161 (10,4,50,66,113,64,35,43),
9162 (10,4,51,67,115,65,36,44),
9163 (10,4,52,68,117,66,36,44),
9164 (10,4,53,70,120,67,36,45),
9165 (10,4,54,71,122,69,37,46),
9166 (10,4,55,72,124,70,37,46),
9167 (10,4,56,73,126,71,37,47),
9168 (10,4,57,75,129,72,38,48),
9169 (10,4,58,76,131,73,38,48),
9170 (10,4,59,77,133,74,39,49),
9171 (10,4,60,79,136,76,39,50),
9172 (10,4,61,80,138,77,39,51),
9173 (10,4,62,81,140,78,40,51),
9174 (10,4,63,82,143,79,40,52),
9175 (10,4,64,84,145,80,41,53),
9176 (10,4,65,85,148,82,41,53),
9177 (10,4,66,87,150,83,41,54),
9178 (10,4,67,88,153,84,42,55),
9179 (10,4,68,89,155,85,42,56),
9180 (10,4,69,91,157,87,43,56),
9181 (10,4,70,92,160,88,43,57),
9182 (10,4,71,94,163,88,43,58),
9183 (10,4,72,96,166,90,44,58),
9184 (10,4,73,97,169,92,44,59),
9185 (10,4,74,99,172,93,45,60),
9186 (10,4,75,101,175,95,45,61),
9187 (10,4,76,102,178,96,45,62),
9188 (10,4,77,104,181,101,46,63),
9189 (10,4,78,106,185,104,46,64),
9190 (10,4,79,108,188,105,47,65),
9191 (10,4,80,110,191,107,47,66),
9192 (10,5,1,17,22,19,26,22),
9193 (10,5,2,17,22,19,27,23),
9194 (10,5,3,17,22,20,29,25),
9195 (10,5,4,17,23,20,30,26),
9196 (10,5,5,18,23,20,31,27),
9197 (10,5,6,18,23,21,33,29),
9198 (10,5,7,18,23,21,34,30),
9199 (10,5,8,18,24,22,35,32),
9200 (10,5,9,18,24,22,37,33),
9201 (10,5,10,19,24,22,38,35),
9202 (10,5,11,19,24,23,39,36),
9203 (10,5,12,19,24,23,41,38),
9204 (10,5,13,19,25,24,42,39),
9205 (10,5,14,19,25,24,44,41),
9206 (10,5,15,19,25,25,45,42),
9207 (10,5,16,20,26,25,47,44),
9208 (10,5,17,20,26,25,48,45),
9209 (10,5,18,20,26,26,50,47),
9210 (10,5,19,20,26,26,51,49),
9211 (10,5,20,21,27,27,53,50),
9212 (10,5,21,21,27,27,54,52),
9213 (10,5,22,21,27,28,56,53),
9214 (10,5,23,21,28,28,58,55),
9215 (10,5,24,21,28,29,59,57),
9216 (10,5,25,22,28,29,61,58),
9217 (10,5,26,22,28,30,62,60),
9218 (10,5,27,22,29,30,64,62),
9219 (10,5,28,22,29,31,66,64),
9220 (10,5,29,23,29,31,67,65),
9221 (10,5,30,23,30,32,69,67),
9222 (10,5,31,23,30,32,71,69),
9223 (10,5,32,23,30,33,72,71),
9224 (10,5,33,24,31,33,74,72),
9225 (10,5,34,24,31,34,76,74),
9226 (10,5,35,24,32,34,78,76),
9227 (10,5,36,24,32,35,80,78),
9228 (10,5,37,25,32,35,81,80),
9229 (10,5,38,25,33,36,83,82),
9230 (10,5,39,25,33,37,85,84),
9231 (10,5,40,26,33,37,87,86),
9232 (10,5,41,26,34,38,89,88),
9233 (10,5,42,26,34,38,91,89),
9234 (10,5,43,27,35,39,92,91),
9235 (10,5,44,27,35,39,94,93),
9236 (10,5,45,27,35,40,96,95),
9237 (10,5,46,27,36,41,98,97),
9238 (10,5,47,28,36,41,100,99),
9239 (10,5,48,28,37,42,102,101),
9240 (10,5,49,28,37,43,104,103),
9241 (10,5,50,29,37,43,106,106),
9242 (10,5,51,29,38,44,108,108),
9243 (10,5,52,29,38,44,110,110),
9244 (10,5,53,30,39,45,112,112),
9245 (10,5,54,30,39,46,114,114),
9246 (10,5,55,30,40,46,116,116),
9247 (10,5,56,31,40,47,118,118),
9248 (10,5,57,31,41,48,120,120),
9249 (10,5,58,31,41,48,123,123),
9250 (10,5,59,32,42,49,125,125),
9251 (10,5,60,32,42,50,127,127),
9252 (10,5,61,33,42,51,129,129),
9253 (10,5,62,33,43,51,131,131),
9254 (10,5,63,33,43,52,133,134),
9255 (10,5,64,34,44,53,135,136),
9256 (10,5,65,34,44,53,138,138),
9257 (10,5,66,34,45,54,140,141),
9258 (10,5,67,35,45,55,142,143),
9259 (10,5,68,35,46,56,144,145),
9260 (10,5,69,36,46,56,147,148),
9261 (10,5,70,36,47,57,149,150),
9262 (10,5,71,36,48,57,152,153),
9263 (10,5,72,37,48,57,155,156),
9264 (10,5,73,37,49,58,158,159),
9265 (10,5,74,38,49,59,160,163),
9266 (10,5,75,38,50,60,163,165),
9267 (10,5,76,38,51,61,166,170),
9268 (10,5,77,39,51,62,168,175),
9269 (10,5,78,39,52,63,172,174),
9270 (10,5,79,40,52,64,175,177),
9271 (10,5,80,40,53,65,178,180),
9272 (10,6,1,18,23,21,24,20),
9273 (10,6,2,19,24,22,24,20),
9274 (10,6,3,21,25,23,24,21),
9275 (10,6,4,22,25,25,24,21),
9276 (10,6,5,23,26,26,24,21),
9277 (10,6,6,25,27,27,24,21),
9278 (10,6,7,26,28,28,24,22),
9279 (10,6,8,27,29,29,25,22),
9280 (10,6,9,29,29,31,25,22),
9281 (10,6,10,30,30,32,25,23),
9282 (10,6,11,32,31,33,25,23),
9283 (10,6,12,33,32,34,25,23),
9284 (10,6,13,34,33,36,25,24),
9285 (10,6,14,36,34,37,25,24),
9286 (10,6,15,37,35,38,25,24),
9287 (10,6,16,39,36,40,25,25),
9288 (10,6,17,40,36,41,25,25),
9289 (10,6,18,42,37,43,26,25),
9290 (10,6,19,43,38,44,26,26),
9291 (10,6,20,45,39,45,26,26),
9292 (10,6,21,47,40,47,26,26),
9293 (10,6,22,48,41,48,26,27),
9294 (10,6,23,50,42,50,26,27),
9295 (10,6,24,51,43,51,26,28),
9296 (10,6,25,53,44,52,27,28),
9297 (10,6,26,55,45,54,27,28),
9298 (10,6,27,56,46,55,27,29),
9299 (10,6,28,58,47,57,27,29),
9300 (10,6,29,59,48,58,27,30),
9301 (10,6,30,61,49,60,27,30),
9302 (10,6,31,63,50,62,27,30),
9303 (10,6,32,65,51,63,28,31),
9304 (10,6,33,66,52,65,28,31),
9305 (10,6,34,68,53,66,28,32),
9306 (10,6,35,70,55,68,28,32),
9307 (10,6,36,72,56,69,28,33),
9308 (10,6,37,73,57,71,29,33),
9309 (10,6,38,75,58,73,29,34),
9310 (10,6,39,77,59,74,29,34),
9311 (10,6,40,79,60,76,29,35),
9312 (10,6,41,81,61,78,29,35),
9313 (10,6,42,82,62,79,30,35),
9314 (10,6,43,84,64,81,30,36),
9315 (10,6,44,86,65,83,30,36),
9316 (10,6,45,88,66,85,30,37),
9317 (10,6,46,90,67,86,30,37),
9318 (10,6,47,92,68,88,31,38),
9319 (10,6,48,94,69,90,31,38),
9320 (10,6,49,96,69,92,31,39),
9321 (10,6,50,98,70,93,31,40),
9322 (10,6,51,100,71,95,32,40),
9323 (10,6,52,102,72,96,32,41),
9324 (10,6,53,103,73,97,32,41),
9325 (10,6,54,104,74,98,32,41),
9326 (10,6,55,105,75,97,33,41),
9327 (10,6,56,108,77,100,33,42),
9328 (10,6,57,113,78,102,33,42),
9329 (10,6,58,115,79,104,34,43),
9330 (10,6,59,117,81,106,34,43),
9331 (10,6,60,118,82,108,34,44),
9332 (10,6,61,119,83,110,34,45),
9333 (10,6,62,121,85,112,34,45),
9334 (10,6,63,124,86,115,35,46),
9335 (10,6,64,127,88,117,35,46),
9336 (10,6,65,133,89,119,35,47),
9337 (10,6,66,135,91,122,35,48),
9338 (10,6,67,139,92,124,36,48),
9339 (10,6,68,141,94,126,36,49),
9340 (10,6,69,142,95,129,36,50),
9341 (10,6,70,145,97,131,36,50),
9342 (10,6,71,150,99,134,37,51),
9343 (10,6,72,152,100,136,37,52),
9344 (10,6,73,155,102,139,37,53),
9345 (10,6,74,158,104,141,37,53),
9346 (10,6,75,159,105,144,38,54),
9347 (10,6,76,160,107,147,38,55),
9348 (10,6,77,163,109,149,38,56),
9349 (10,6,78,166,110,152,38,56),
9350 (10,6,79,169,112,155,39,57),
9351 (10,6,80,172,114,158,39,58),
9352 (10,8,1,17,22,19,27,21),
9353 (10,8,2,17,22,19,28,22),
9354 (10,8,3,17,22,20,30,24),
9355 (10,8,4,17,22,20,31,25),
9356 (10,8,5,17,23,20,32,26),
9357 (10,8,6,17,23,20,34,28),
9358 (10,8,7,18,23,21,35,29),
9359 (10,8,8,18,23,21,37,30),
9360 (10,8,9,18,23,21,38,32),
9361 (10,8,10,18,23,22,40,33),
9362 (10,8,11,18,24,22,41,35),
9363 (10,8,12,18,24,22,42,36),
9364 (10,8,13,18,24,23,44,37),
9365 (10,8,14,18,24,23,45,39),
9366 (10,8,15,18,24,23,47,40),
9367 (10,8,16,19,24,24,49,42),
9368 (10,8,17,19,25,24,50,43),
9369 (10,8,18,19,25,24,52,45),
9370 (10,8,19,19,25,25,53,46),
9371 (10,8,20,19,25,25,55,48),
9372 (10,8,21,19,25,26,57,50),
9373 (10,8,22,19,26,26,58,51),
9374 (10,8,23,20,26,26,60,53),
9375 (10,8,24,20,26,27,61,54),
9376 (10,8,25,20,26,27,63,56),
9377 (10,8,26,20,27,27,65,58),
9378 (10,8,27,20,27,28,67,59),
9379 (10,8,28,20,27,28,68,61),
9380 (10,8,29,21,27,29,70,63),
9381 (10,8,30,21,28,29,72,64),
9382 (10,8,31,21,28,30,74,66),
9383 (10,8,32,21,28,30,75,68),
9384 (10,8,33,21,28,30,77,70),
9385 (10,8,34,21,29,31,79,71),
9386 (10,8,35,22,29,31,81,73),
9387 (10,8,36,22,29,32,83,75),
9388 (10,8,37,22,29,32,85,77),
9389 (10,8,38,22,30,33,86,78),
9390 (10,8,39,22,30,33,88,80),
9391 (10,8,40,23,30,34,90,82),
9392 (10,8,41,23,31,34,92,84),
9393 (10,8,42,23,31,35,94,86),
9394 (10,8,43,23,31,35,96,88),
9395 (10,8,44,23,32,36,98,90),
9396 (10,8,45,24,32,36,100,92),
9397 (10,8,46,24,32,37,102,93),
9398 (10,8,47,24,32,37,104,95),
9399 (10,8,48,24,33,38,106,97),
9400 (10,8,49,25,33,38,108,99),
9401 (10,8,50,25,33,39,110,101),
9402 (10,8,51,25,34,39,112,103),
9403 (10,8,52,25,34,40,114,105),
9404 (10,8,53,25,35,40,117,107),
9405 (10,8,54,26,35,41,119,109),
9406 (10,8,55,26,35,41,121,111),
9407 (10,8,56,26,36,42,123,113),
9408 (10,8,57,26,36,42,125,116),
9409 (10,8,58,27,36,43,127,118),
9410 (10,8,59,27,37,43,130,120),
9411 (10,8,60,27,37,44,132,122),
9412 (10,8,61,27,37,45,134,124),
9413 (10,8,62,28,38,45,136,126),
9414 (10,8,63,28,38,46,139,128),
9415 (10,8,64,28,39,46,141,131),
9416 (10,8,65,29,39,47,143,133),
9417 (10,8,66,29,39,48,146,135),
9418 (10,8,67,29,40,48,148,137),
9419 (10,8,68,29,40,49,150,139),
9420 (10,8,69,30,41,49,153,142),
9421 (10,8,70,30,41,50,155,144),
9422 (10,8,71,30,41,50,158,147),
9423 (10,8,72,30,42,51,161,150),
9424 (10,8,73,30,42,52,164,153),
9425 (10,8,74,31,43,52,167,155),
9426 (10,8,75,31,43,53,170,158),
9427 (10,8,76,31,43,54,173,161),
9428 (10,8,77,32,44,55,176,164),
9429 (10,8,78,32,44,55,179,167),
9430 (10,8,79,32,45,56,182,170),
9431 (10,8,80,33,45,57,185,173),
9432 (10,9,1,17,22,20,26,21),
9433 (10,9,2,17,22,21,27,22),
9434 (10,9,3,18,23,21,28,23),
9435 (10,9,4,18,23,22,29,24),
9436 (10,9,5,18,23,22,31,26),
9437 (10,9,6,18,24,23,32,27),
9438 (10,9,7,19,24,23,33,28),
9439 (10,9,8,19,25,24,34,29),
9440 (10,9,9,19,25,25,36,30),
9441 (10,9,10,20,25,25,37,32),
9442 (10,9,11,20,26,26,38,33),
9443 (10,9,12,20,26,26,39,34),
9444 (10,9,13,21,27,27,41,36),
9445 (10,9,14,21,27,28,42,37),
9446 (10,9,15,21,27,28,43,38),
9447 (10,9,16,22,28,29,45,39),
9448 (10,9,17,22,28,30,46,41),
9449 (10,9,18,23,29,30,47,42),
9450 (10,9,19,23,29,31,49,43),
9451 (10,9,20,23,30,32,50,45),
9452 (10,9,21,24,30,32,51,46),
9453 (10,9,22,24,31,33,53,48),
9454 (10,9,23,24,31,34,54,49),
9455 (10,9,24,25,31,34,56,50),
9456 (10,9,25,25,32,35,57,52),
9457 (10,9,26,26,32,36,59,53),
9458 (10,9,27,26,33,37,60,55),
9459 (10,9,28,26,33,37,62,56),
9460 (10,9,29,27,34,38,63,58),
9461 (10,9,30,27,34,39,65,59),
9462 (10,9,31,28,35,40,66,61),
9463 (10,9,32,28,36,40,68,62),
9464 (10,9,33,29,36,41,69,64),
9465 (10,9,34,29,37,42,71,65),
9466 (10,9,35,29,37,43,73,67),
9467 (10,9,36,30,38,43,74,69),
9468 (10,9,37,30,38,44,76,70),
9469 (10,9,38,31,39,45,77,72),
9470 (10,9,39,31,39,46,79,73),
9471 (10,9,40,32,40,47,81,75),
9472 (10,9,41,32,41,48,82,77),
9473 (10,9,42,33,41,48,84,78),
9474 (10,9,43,33,42,49,86,80),
9475 (10,9,44,34,42,50,88,82),
9476 (10,9,45,34,43,51,89,83),
9477 (10,9,46,35,44,52,91,85),
9478 (10,9,47,35,44,53,93,87),
9479 (10,9,48,36,45,54,95,89),
9480 (10,9,49,36,45,54,96,90),
9481 (10,9,50,37,46,55,98,92),
9482 (10,9,51,37,47,56,100,94),
9483 (10,9,52,38,47,57,102,96),
9484 (10,9,53,38,48,58,104,97),
9485 (10,9,54,39,49,59,105,99),
9486 (10,9,55,39,49,60,107,101),
9487 (10,9,56,40,50,61,109,103),
9488 (10,9,57,40,51,62,111,105),
9489 (10,9,58,41,51,63,113,107),
9490 (10,9,59,42,52,64,115,108),
9491 (10,9,60,42,53,65,117,110),
9492 (10,9,61,43,53,66,119,112),
9493 (10,9,62,43,54,67,121,114),
9494 (10,9,63,44,55,68,123,116),
9495 (10,9,64,44,56,69,125,118),
9496 (10,9,65,45,56,70,127,120),
9497 (10,9,66,46,57,71,129,122),
9498 (10,9,67,46,58,72,131,124),
9499 (10,9,68,47,58,73,133,126),
9500 (10,9,69,47,59,74,135,128),
9501 (10,9,70,48,60,75,137,130),
9502 (10,9,71,49,61,83,139,141),
9503 (10,9,72,50,61,84,142,143),
9504 (10,9,73,51,62,84,144,146),
9505 (10,9,74,51,63,86,147,149),
9506 (10,9,75,52,64,89,149,151),
9507 (10,9,76,53,65,90,155,154),
9508 (10,9,77,54,66,91,155,157),
9509 (10,9,78,54,67,93,157,160),
9510 (10,9,79,55,68,94,160,163),
9511 (10,9,80,56,69,95,163,165),
9512 (11,1,1,24,17,21,21,22),
9513 (11,1,2,25,18,22,21,22),
9514 (11,1,3,27,19,23,21,23),
9515 (11,1,4,28,19,25,21,23),
9516 (11,1,5,29,20,26,21,23),
9517 (11,1,6,31,21,27,21,23),
9518 (11,1,7,32,22,28,21,24),
9519 (11,1,8,33,23,29,22,24),
9520 (11,1,9,35,24,31,22,24),
9521 (11,1,10,36,24,32,22,25),
9522 (11,1,11,37,25,33,22,25),
9523 (11,1,12,39,26,34,22,25),
9524 (11,1,13,40,27,36,22,26),
9525 (11,1,14,42,28,37,22,26),
9526 (11,1,15,43,29,38,22,26),
9527 (11,1,16,45,30,40,22,27),
9528 (11,1,17,46,31,41,23,27),
9529 (11,1,18,48,32,43,23,27),
9530 (11,1,19,49,33,44,23,28),
9531 (11,1,20,51,34,45,23,28),
9532 (11,1,21,52,34,47,23,28),
9533 (11,1,22,54,35,48,23,29),
9534 (11,1,23,55,36,50,23,29),
9535 (11,1,24,57,37,51,24,30),
9536 (11,1,25,59,38,52,24,30),
9537 (11,1,26,60,39,54,24,30),
9538 (11,1,27,62,40,55,24,31),
9539 (11,1,28,63,41,57,24,31),
9540 (11,1,29,65,43,58,24,32),
9541 (11,1,30,67,44,60,24,32),
9542 (11,1,31,69,45,62,25,32),
9543 (11,1,32,70,46,63,25,33),
9544 (11,1,33,72,47,65,25,33),
9545 (11,1,34,74,48,66,25,34),
9546 (11,1,35,75,49,68,25,34),
9547 (11,1,36,77,50,69,26,35),
9548 (11,1,37,79,51,71,26,35),
9549 (11,1,38,81,52,73,26,35),
9550 (11,1,39,83,53,74,26,36),
9551 (11,1,40,84,55,76,26,36),
9552 (11,1,41,86,56,78,27,37),
9553 (11,1,42,88,57,79,27,37),
9554 (11,1,43,90,58,81,27,38),
9555 (11,1,44,92,59,83,27,38),
9556 (11,1,45,94,60,85,27,39),
9557 (11,1,46,96,62,86,28,39),
9558 (11,1,47,98,63,88,28,40),
9559 (11,1,48,100,64,90,28,40),
9560 (11,1,49,102,65,92,28,41),
9561 (11,1,50,103,66,93,29,41),
9562 (11,1,51,105,68,95,29,42),
9563 (11,1,52,107,69,97,29,42),
9564 (11,1,53,109,70,99,29,43),
9565 (11,1,54,112,71,101,30,44),
9566 (11,1,55,114,73,103,30,44),
9567 (11,1,56,116,74,104,30,45),
9568 (11,1,57,118,75,106,30,45),
9569 (11,1,58,120,77,108,31,46),
9570 (11,1,59,122,78,110,31,46),
9571 (11,1,60,124,79,112,31,47),
9572 (11,1,61,126,81,114,31,48),
9573 (11,1,62,128,82,116,32,48),
9574 (11,1,63,130,83,118,32,49),
9575 (11,1,64,133,85,120,32,49),
9576 (11,1,65,135,86,122,33,50),
9577 (11,1,66,137,87,124,33,51),
9578 (11,1,67,139,89,126,33,51),
9579 (11,1,68,141,90,128,33,52),
9580 (11,1,69,144,92,130,34,52),
9581 (11,1,70,146,93,132,34,53),
9582 (11,1,71,149,94,134,34,54),
9583 (11,1,72,151,96,137,34,55),
9584 (11,1,73,154,98,139,34,56),
9585 (11,1,74,157,99,142,35,56),
9586 (11,1,75,166,101,149,35,57),
9587 (11,1,76,172,103,155,35,58),
9588 (11,1,77,175,105,159,36,59),
9589 (11,1,78,179,106,161,36,59),
9590 (11,1,79,182,108,164,36,60),
9591 (11,1,80,185,110,167,37,61),
9592 (11,2,1,23,17,21,21,23),
9593 (11,2,2,24,18,22,22,24),
9594 (11,2,3,25,18,23,22,24),
9595 (11,2,4,26,19,24,23,25),
9596 (11,2,5,27,19,25,24,26),
9597 (11,2,6,29,20,26,24,26),
9598 (11,2,7,30,21,27,25,27),
9599 (11,2,8,31,21,28,26,28),
9600 (11,2,9,32,22,29,26,29),
9601 (11,2,10,33,22,31,27,29),
9602 (11,2,11,34,23,32,28,30),
9603 (11,2,12,36,24,33,28,31),
9604 (11,2,13,37,24,34,29,32),
9605 (11,2,14,38,25,35,30,32),
9606 (11,2,15,39,26,36,31,33),
9607 (11,2,16,40,26,37,31,34),
9608 (11,2,17,42,27,39,32,35),
9609 (11,2,18,43,28,40,33,36),
9610 (11,2,19,44,28,41,34,37),
9611 (11,2,20,46,29,42,34,37),
9612 (11,2,21,47,30,44,35,38),
9613 (11,2,22,48,31,45,36,39),
9614 (11,2,23,50,31,46,37,40),
9615 (11,2,24,51,32,47,38,41),
9616 (11,2,25,52,33,49,38,42),
9617 (11,2,26,54,34,50,39,43),
9618 (11,2,27,55,34,51,40,44),
9619 (11,2,28,56,35,53,41,44),
9620 (11,2,29,58,36,54,42,45),
9621 (11,2,30,59,37,55,43,46),
9622 (11,2,31,61,37,57,43,47),
9623 (11,2,32,62,38,58,44,48),
9624 (11,2,33,64,39,59,45,49),
9625 (11,2,34,65,40,61,46,50),
9626 (11,2,35,67,41,62,47,51),
9627 (11,2,36,68,42,64,48,52),
9628 (11,2,37,70,42,65,49,53),
9629 (11,2,38,71,43,67,50,54),
9630 (11,2,39,73,44,68,51,55),
9631 (11,2,40,74,45,69,52,56),
9632 (11,2,41,76,46,71,53,57),
9633 (11,2,42,78,47,72,54,58),
9634 (11,2,43,79,47,74,55,59),
9635 (11,2,44,81,48,75,56,60),
9636 (11,2,45,82,49,77,57,61),
9637 (11,2,46,84,50,78,58,62),
9638 (11,2,47,86,51,80,59,64),
9639 (11,2,48,87,52,82,60,65),
9640 (11,2,49,89,53,83,61,66),
9641 (11,2,50,91,54,85,62,67),
9642 (11,2,51,92,55,86,63,68),
9643 (11,2,52,94,56,88,64,69),
9644 (11,2,53,96,57,90,65,70),
9645 (11,2,54,97,58,91,66,71),
9646 (11,2,55,99,59,93,67,73),
9647 (11,2,56,101,60,95,68,74),
9648 (11,2,57,103,61,96,69,75),
9649 (11,2,58,105,62,98,70,76),
9650 (11,2,59,106,63,100,71,77),
9651 (11,2,60,108,64,101,72,78),
9652 (11,2,61,110,65,103,74,80),
9653 (11,2,62,112,66,105,75,81),
9654 (11,2,63,114,67,106,76,82),
9655 (11,2,64,116,68,108,77,83),
9656 (11,2,65,117,69,110,78,85),
9657 (11,2,66,119,70,112,79,86),
9658 (11,2,67,121,71,114,80,87),
9659 (11,2,68,123,72,115,82,88),
9660 (11,2,69,125,73,117,83,90),
9661 (11,2,70,127,74,119,84,91),
9662 (11,2,71,130,75,121,87,92),
9663 (11,2,72,132,76,124,90,94),
9664 (11,2,73,134,77,126,93,96),
9665 (11,2,74,137,79,128,97,97),
9666 (11,2,75,139,80,130,101,99),
9667 (11,2,76,142,81,133,106,100),
9668 (11,2,77,144,83,135,108,102),
9669 (11,2,78,147,84,137,110,104),
9670 (11,2,79,149,85,140,111,105),
9671 (11,2,80,152,87,142,113,107),
9672 (11,3,1,21,20,20,21,23),
9673 (11,3,2,21,21,21,22,24),
9674 (11,3,3,22,23,22,22,24),
9675 (11,3,4,22,24,23,23,25),
9676 (11,3,5,23,25,24,23,25),
9677 (11,3,6,23,27,25,24,26),
9678 (11,3,7,24,28,26,24,27),
9679 (11,3,8,24,30,27,25,27),
9680 (11,3,9,25,31,27,26,28),
9681 (11,3,10,25,33,28,26,29),
9682 (11,3,11,25,34,29,27,29),
9683 (11,3,12,26,36,30,28,30),
9684 (11,3,13,26,37,31,28,31),
9685 (11,3,14,27,39,32,29,32),
9686 (11,3,15,27,40,34,30,32),
9687 (11,3,16,28,42,35,30,33),
9688 (11,3,17,28,43,36,31,34),
9689 (11,3,18,29,45,37,32,35),
9690 (11,3,19,29,47,38,32,35),
9691 (11,3,20,30,48,39,33,36),
9692 (11,3,21,31,50,40,34,37),
9693 (11,3,22,31,51,41,34,38),
9694 (11,3,23,32,53,42,35,38),
9695 (11,3,24,32,55,43,36,39),
9696 (11,3,25,33,57,44,37,40),
9697 (11,3,26,33,58,46,37,41),
9698 (11,3,27,34,60,47,38,42),
9699 (11,3,28,35,62,48,39,42),
9700 (11,3,29,35,63,49,40,43),
9701 (11,3,30,36,65,50,40,44),
9702 (11,3,31,36,67,52,41,45),
9703 (11,3,32,37,69,53,42,46),
9704 (11,3,33,38,71,54,43,47),
9705 (11,3,34,38,72,55,44,48),
9706 (11,3,35,39,74,57,44,48),
9707 (11,3,36,39,76,58,45,49),
9708 (11,3,37,40,78,59,46,50),
9709 (11,3,38,41,80,60,47,51),
9710 (11,3,39,41,82,62,48,52),
9711 (11,3,40,42,84,63,49,53),
9712 (11,3,41,43,86,64,50,54),
9713 (11,3,42,43,88,66,50,55),
9714 (11,3,43,44,90,67,51,56),
9715 (11,3,44,45,91,68,52,57),
9716 (11,3,45,45,93,70,53,58),
9717 (11,3,46,46,95,71,54,59),
9718 (11,3,47,47,98,72,55,60),
9719 (11,3,48,48,100,74,56,61),
9720 (11,3,49,48,102,75,57,62),
9721 (11,3,50,49,104,77,58,63),
9722 (11,3,51,50,106,78,59,64),
9723 (11,3,52,51,108,79,60,65),
9724 (11,3,53,51,110,81,61,66),
9725 (11,3,54,52,112,82,61,67),
9726 (11,3,55,53,114,84,62,68),
9727 (11,3,56,54,116,85,63,69),
9728 (11,3,57,54,118,87,64,70),
9729 (11,3,58,55,121,88,65,71),
9730 (11,3,59,56,123,90,66,72),
9731 (11,3,60,57,125,91,67,74),
9732 (11,3,61,58,127,93,68,75),
9733 (11,3,62,58,130,94,69,76),
9734 (11,3,63,59,132,96,71,77),
9735 (11,3,64,60,134,97,72,78),
9736 (11,3,65,61,136,99,73,79),
9737 (11,3,66,62,139,101,74,80),
9738 (11,3,67,62,141,102,75,81),
9739 (11,3,68,63,143,104,76,83),
9740 (11,3,69,64,146,105,77,84),
9741 (11,3,70,65,148,107,78,85),
9742 (11,3,71,66,151,109,79,86),
9743 (11,3,72,67,154,111,80,87),
9744 (11,3,73,68,157,113,81,89),
9745 (11,3,74,69,160,115,83,90),
9746 (11,3,75,70,163,117,84,92),
9747 (11,3,76,71,166,119,85,93),
9748 (11,3,77,72,169,121,87,95),
9749 (11,3,78,73,172,123,88,96),
9750 (11,3,79,74,175,125,89,98),
9751 (11,3,80,75,178,127,91,99),
9752 (11,5,1,21,17,19,23,25),
9753 (11,5,2,21,17,19,24,26),
9754 (11,5,3,21,17,20,26,28),
9755 (11,5,4,21,18,20,27,29),
9756 (11,5,5,22,18,20,28,30),
9757 (11,5,6,22,18,21,30,32),
9758 (11,5,7,22,18,21,31,33),
9759 (11,5,8,22,19,22,32,35),
9760 (11,5,9,22,19,22,34,36),
9761 (11,5,10,22,19,22,35,38),
9762 (11,5,11,23,19,23,37,39),
9763 (11,5,12,23,20,23,38,41),
9764 (11,5,13,23,20,24,39,42),
9765 (11,5,14,23,20,24,41,44),
9766 (11,5,15,23,20,25,42,45),
9767 (11,5,16,24,21,25,44,47),
9768 (11,5,17,24,21,25,45,48),
9769 (11,5,18,24,21,26,47,50),
9770 (11,5,19,24,22,26,48,51),
9771 (11,5,20,24,22,27,50,53),
9772 (11,5,21,25,22,27,51,55),
9773 (11,5,22,25,22,28,53,56),
9774 (11,5,23,25,23,28,55,58),
9775 (11,5,24,25,23,29,56,60),
9776 (11,5,25,25,23,29,58,61),
9777 (11,5,26,26,24,30,60,63),
9778 (11,5,27,26,24,30,61,65),
9779 (11,5,28,26,24,31,63,66),
9780 (11,5,29,26,25,31,65,68),
9781 (11,5,30,27,25,32,66,70),
9782 (11,5,31,27,25,32,68,72),
9783 (11,5,32,27,26,33,70,73),
9784 (11,5,33,27,26,33,71,75),
9785 (11,5,34,28,26,34,73,77),
9786 (11,5,35,28,27,34,75,79),
9787 (11,5,36,28,27,35,77,81),
9788 (11,5,37,29,28,35,79,83),
9789 (11,5,38,29,28,36,80,85),
9790 (11,5,39,29,28,37,82,86),
9791 (11,5,40,29,29,37,84,88),
9792 (11,5,41,30,29,38,86,90),
9793 (11,5,42,30,29,38,88,92),
9794 (11,5,43,30,30,39,90,94),
9795 (11,5,44,31,30,39,91,96),
9796 (11,5,45,31,31,40,93,98),
9797 (11,5,46,31,31,41,95,100),
9798 (11,5,47,32,31,41,97,102),
9799 (11,5,48,32,32,42,99,104),
9800 (11,5,49,32,32,43,101,106),
9801 (11,5,50,33,33,43,103,108),
9802 (11,5,51,33,33,44,105,110),
9803 (11,5,52,33,34,44,107,113),
9804 (11,5,53,34,34,45,109,115),
9805 (11,5,54,34,34,46,111,117),
9806 (11,5,55,34,35,46,113,119),
9807 (11,5,56,35,35,47,115,121),
9808 (11,5,57,35,36,48,118,123),
9809 (11,5,58,35,36,48,120,126),
9810 (11,5,59,36,37,49,122,128),
9811 (11,5,60,36,37,50,124,130),
9812 (11,5,61,36,38,51,126,132),
9813 (11,5,62,37,38,51,128,134),
9814 (11,5,63,37,39,52,130,137),
9815 (11,5,64,38,39,53,133,139),
9816 (11,5,65,38,40,53,135,141),
9817 (11,5,66,38,40,54,137,144),
9818 (11,5,67,39,40,55,139,146),
9819 (11,5,68,39,41,56,141,148),
9820 (11,5,69,40,41,56,144,151),
9821 (11,5,70,40,42,57,146,153),
9822 (11,5,71,40,43,58,149,156),
9823 (11,5,72,41,43,58,155,159),
9824 (11,5,73,41,44,59,157,160),
9825 (11,5,74,42,44,61,160,163),
9826 (11,5,75,42,45,62,164,166),
9827 (11,5,76,42,46,62,167,169),
9828 (11,5,77,43,46,63,168,172),
9829 (11,5,78,43,47,64,169,177),
9830 (11,5,79,44,47,65,172,180),
9831 (11,5,80,44,48,66,175,183),
9832 (11,6,1,24,17,21,21,22),
9833 (11,6,2,25,18,22,21,22),
9834 (11,6,3,27,19,23,21,23),
9835 (11,6,4,28,19,25,21,23),
9836 (11,6,5,29,20,26,21,23),
9837 (11,6,6,31,21,27,21,23),
9838 (11,6,7,32,22,28,21,24),
9839 (11,6,8,33,23,29,22,24),
9840 (11,6,9,35,24,31,22,24),
9841 (11,6,10,36,24,32,22,25),
9842 (11,6,11,37,25,33,22,25),
9843 (11,6,12,39,26,34,22,25),
9844 (11,6,13,40,27,36,22,26),
9845 (11,6,14,42,28,37,22,26),
9846 (11,6,15,43,29,38,22,26),
9847 (11,6,16,45,30,40,22,27),
9848 (11,6,17,46,31,41,23,27),
9849 (11,6,18,48,32,43,23,27),
9850 (11,6,19,49,33,44,23,28),
9851 (11,6,20,51,34,45,23,28),
9852 (11,6,21,52,34,47,23,28),
9853 (11,6,22,54,35,48,23,29),
9854 (11,6,23,55,36,50,23,29),
9855 (11,6,24,57,37,51,24,30),
9856 (11,6,25,59,38,52,24,30),
9857 (11,6,26,60,39,54,24,30),
9858 (11,6,27,62,40,55,24,31),
9859 (11,6,28,63,41,57,24,31),
9860 (11,6,29,65,43,58,24,32),
9861 (11,6,30,67,44,60,24,32),
9862 (11,6,31,69,45,62,25,32),
9863 (11,6,32,70,46,63,25,33),
9864 (11,6,33,72,47,65,25,33),
9865 (11,6,34,74,48,66,25,34),
9866 (11,6,35,75,49,68,25,34),
9867 (11,6,36,77,50,69,26,35),
9868 (11,6,37,79,51,71,26,35),
9869 (11,6,38,81,52,73,26,35),
9870 (11,6,39,83,53,74,26,36),
9871 (11,6,40,84,55,76,26,36),
9872 (11,6,41,86,56,78,27,37),
9873 (11,6,42,88,57,79,27,37),
9874 (11,6,43,90,58,81,27,38),
9875 (11,6,44,92,59,83,27,38),
9876 (11,6,45,94,60,85,27,39),
9877 (11,6,46,96,62,86,28,39),
9878 (11,6,47,98,63,88,28,40),
9879 (11,6,48,100,64,90,28,40),
9880 (11,6,49,102,65,92,28,41),
9881 (11,6,50,103,65,93,29,41),
9882 (11,6,51,105,66,94,29,42),
9883 (11,6,52,106,67,95,29,42),
9884 (11,6,53,107,68,96,29,43),
9885 (11,6,54,108,69,97,30,44),
9886 (11,6,55,109,70,98,30,44),
9887 (11,6,56,112,72,101,30,45),
9888 (11,6,57,114,73,103,30,45),
9889 (11,6,58,117,74,105,31,46),
9890 (11,6,59,119,76,107,31,46),
9891 (11,6,60,121,77,109,31,47),
9892 (11,6,61,123,78,111,31,48),
9893 (11,6,62,126,80,113,31,48),
9894 (11,6,63,128,81,116,32,49),
9895 (11,6,64,131,83,118,32,49),
9896 (11,6,65,136,84,120,32,50),
9897 (11,6,66,140,86,123,32,51),
9898 (11,6,67,141,87,125,33,51),
9899 (11,6,68,141,89,127,33,52),
9900 (11,6,69,144,90,130,33,53),
9901 (11,6,70,147,92,132,33,53),
9902 (11,6,71,150,94,135,34,54),
9903 (11,6,72,152,95,137,34,55),
9904 (11,6,73,155,97,140,34,56),
9905 (11,6,74,162,99,142,34,56),
9906 (11,6,75,165,100,145,35,57),
9907 (11,6,76,167,102,146,35,58),
9908 (11,6,77,169,104,150,35,59),
9909 (11,6,78,170,105,152,35,59),
9910 (11,6,79,173,107,156,36,60),
9911 (11,6,80,176,109,159,36,61),
9912 (11,7,1,22,17,20,22,24),
9913 (11,7,2,23,17,21,23,25),
9914 (11,7,3,24,18,22,24,26),
9915 (11,7,4,25,18,23,25,27),
9916 (11,7,5,25,19,24,26,28),
9917 (11,7,6,26,19,25,27,29),
9918 (11,7,7,27,20,26,28,30),
9919 (11,7,8,28,20,27,28,31),
9920 (11,7,9,29,21,28,29,32),
9921 (11,7,10,30,21,29,30,33),
9922 (11,7,11,31,22,30,31,35),
9923 (11,7,12,32,22,31,32,36),
9924 (11,7,13,33,23,32,33,37),
9925 (11,7,14,34,23,33,34,38),
9926 (11,7,15,34,24,35,35,39),
9927 (11,7,16,35,24,36,36,40),
9928 (11,7,17,36,25,37,38,42),
9929 (11,7,18,37,25,38,39,43),
9930 (11,7,19,38,26,39,40,44),
9931 (11,7,20,39,26,40,41,45),
9932 (11,7,21,40,27,41,42,46),
9933 (11,7,22,41,27,43,43,48),
9934 (11,7,23,43,28,44,44,49),
9935 (11,7,24,44,28,45,45,50),
9936 (11,7,25,45,29,46,46,51),
9937 (11,7,26,46,30,47,48,53),
9938 (11,7,27,47,30,49,49,54),
9939 (11,7,28,48,31,50,50,55),
9940 (11,7,29,49,31,51,51,57),
9941 (11,7,30,50,32,53,52,58),
9942 (11,7,31,51,33,54,53,59),
9943 (11,7,32,52,33,55,55,61),
9944 (11,7,33,53,34,56,56,62),
9945 (11,7,34,55,34,58,57,64),
9946 (11,7,35,56,35,59,58,65),
9947 (11,7,36,57,36,60,60,66),
9948 (11,7,37,58,36,62,61,68),
9949 (11,7,38,59,37,63,62,69),
9950 (11,7,39,61,38,65,63,71),
9951 (11,7,40,62,38,66,65,72),
9952 (11,7,41,63,39,67,66,74),
9953 (11,7,42,64,40,69,67,75),
9954 (11,7,43,65,40,70,69,77),
9955 (11,7,44,67,41,72,70,78),
9956 (11,7,45,68,42,73,71,80),
9957 (11,7,46,69,42,75,73,81),
9958 (11,7,47,71,43,76,74,83),
9959 (11,7,48,72,44,78,76,84),
9960 (11,7,49,73,45,79,77,86),
9961 (11,7,50,74,45,81,78,88),
9962 (11,7,51,76,46,82,80,89),
9963 (11,7,52,77,47,84,81,91),
9964 (11,7,53,78,47,85,83,92),
9965 (11,7,54,80,48,87,84,94),
9966 (11,7,55,81,49,88,86,96),
9967 (11,7,56,83,50,90,87,97),
9968 (11,7,57,84,50,91,89,99),
9969 (11,7,58,85,51,93,90,101),
9970 (11,7,59,87,52,95,92,102),
9971 (11,7,60,88,53,96,93,104),
9972 (11,7,61,90,54,98,95,106),
9973 (11,7,62,91,54,99,96,108),
9974 (11,7,63,93,55,101,98,109),
9975 (11,7,64,94,56,103,99,111),
9976 (11,7,65,95,57,104,101,113),
9977 (11,7,66,97,58,106,103,115),
9978 (11,7,67,98,58,108,104,117),
9979 (11,7,68,100,59,110,106,118),
9980 (11,7,69,101,60,111,107,120),
9981 (11,7,70,103,61,113,109,122),
9982 (11,7,71,104,62,115,122,124),
9983 (11,7,72,106,63,117,124,127),
9984 (11,7,73,108,64,119,126,129),
9985 (11,7,74,110,65,122,128,131),
9986 (11,7,75,112,66,124,130,133),
9987 (11,7,76,114,67,126,133,136),
9988 (11,7,77,115,68,128,135,138),
9989 (11,7,78,117,69,130,137,140),
9990 (11,7,79,119,70,133,139,143),
9991 (11,7,80,121,71,135,141,145),
9992 (11,8,1,21,17,19,24,24),
9993 (11,8,2,21,17,19,25,25),
9994 (11,8,3,21,17,20,27,27),
9995 (11,8,4,21,17,20,28,28),
9996 (11,8,5,21,18,20,29,29),
9997 (11,8,6,21,18,20,31,31),
9998 (11,8,7,21,18,21,32,32),
9999 (11,8,8,22,18,21,34,33),
10000 (11,8,9,22,18,21,35,35),
10001 (11,8,10,22,19,22,37,36),
10002 (11,8,11,22,19,22,38,37),
10003 (11,8,12,22,19,22,40,39),
10004 (11,8,13,22,19,23,41,40),
10005 (11,8,14,22,19,23,43,42),
10006 (11,8,15,22,19,23,44,43),
10007 (11,8,16,22,20,24,46,45),
10008 (11,8,17,23,20,24,47,46),
10009 (11,8,18,23,20,24,49,48),
10010 (11,8,19,23,20,25,50,49),
10011 (11,8,20,23,21,25,52,51),
10012 (11,8,21,23,21,26,54,52),
10013 (11,8,22,23,21,26,55,54),
10014 (11,8,23,23,21,26,57,56),
10015 (11,8,24,24,21,27,59,57),
10016 (11,8,25,24,22,27,60,59),
10017 (11,8,26,24,22,27,62,60),
10018 (11,8,27,24,22,28,64,62),
10019 (11,8,28,24,22,28,65,64),
10020 (11,8,29,24,23,29,67,65),
10021 (11,8,30,24,23,29,69,67),
10022 (11,8,31,25,23,30,71,69),
10023 (11,8,32,25,23,30,73,71),
10024 (11,8,33,25,24,30,74,72),
10025 (11,8,34,25,24,31,76,74),
10026 (11,8,35,25,24,31,78,76),
10027 (11,8,36,26,24,32,80,78),
10028 (11,8,37,26,25,32,82,79),
10029 (11,8,38,26,25,33,84,81),
10030 (11,8,39,26,25,33,86,83),
10031 (11,8,40,26,26,34,87,85),
10032 (11,8,41,27,26,34,89,87),
10033 (11,8,42,27,26,35,91,89),
10034 (11,8,43,27,27,35,93,91),
10035 (11,8,44,27,27,36,95,92),
10036 (11,8,45,27,27,36,97,94),
10037 (11,8,46,28,27,37,99,96),
10038 (11,8,47,28,28,37,101,98),
10039 (11,8,48,28,28,38,103,100),
10040 (11,8,49,28,28,38,105,102),
10041 (11,8,50,29,29,39,107,104),
10042 (11,8,51,29,29,39,110,106),
10043 (11,8,52,29,29,40,112,108),
10044 (11,8,53,29,30,40,114,110),
10045 (11,8,54,30,30,41,116,112),
10046 (11,8,55,30,30,41,118,114),
10047 (11,8,56,30,31,42,120,116),
10048 (11,8,57,30,31,42,122,118),
10049 (11,8,58,31,31,43,125,121),
10050 (11,8,59,31,32,43,127,123),
10051 (11,8,60,31,32,44,129,125),
10052 (11,8,61,31,33,45,131,127),
10053 (11,8,62,32,33,45,133,129),
10054 (11,8,63,32,33,46,136,131),
10055 (11,8,64,32,34,46,138,134),
10056 (11,8,65,33,34,47,140,136),
10057 (11,8,66,33,34,48,143,138),
10058 (11,8,67,33,35,48,145,140),
10059 (11,8,68,33,35,49,147,142),
10060 (11,8,69,34,36,49,150,145),
10061 (11,8,70,34,36,50,152,147),
10062 (11,8,71,34,36,51,155,150),
10063 (11,8,72,34,37,52,161,153),
10064 (11,8,73,34,37,53,161,156),
10065 (11,8,74,35,38,53,164,158),
10066 (11,8,75,35,38,54,167,161),
10067 (11,8,76,35,38,55,170,164),
10068 (11,8,77,36,39,56,173,167),
10069 (11,8,78,36,39,56,176,170),
10070 (11,8,79,36,40,57,179,173),
10071 (11,8,80,37,40,58,182,176);
10072 /*!40000 ALTER TABLE `player_levelstats` ENABLE KEYS */;
10073 UNLOCK TABLES;
10075 -- ----------------------------
10076 -- Table structure for player_xp_for_level
10077 -- ----------------------------
10078 DROP TABLE IF EXISTS `player_xp_for_level`;
10079 CREATE TABLE `player_xp_for_level` (
10080   `lvl` int(3) unsigned NOT NULL,
10081   `xp_for_next_level` int(10) unsigned NOT NULL,
10082   PRIMARY KEY  (`lvl`)
10083 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10086 -- Dumping data for table `player_xp_for_level`
10089 LOCK TABLES `player_xp_for_level` WRITE;
10090 /*!40000 ALTER TABLE `player_xp_for_level` DISABLE KEYS */;
10091 INSERT INTO `player_xp_for_level` VALUES
10092 ('1', '400'),
10093 ('2', '900'),
10094 ('3', '1400'),
10095 ('4', '2100'),
10096 ('5', '2800'),
10097 ('6', '3600'),
10098 ('7', '4500'),
10099 ('8', '5400'),
10100 ('9', '6500'),
10101 ('10', '7600'),
10102 ('11', '8700'),
10103 ('12', '9800'),
10104 ('13', '11000'),
10105 ('14', '12300'),
10106 ('15', '13600'),
10107 ('16', '15000'),
10108 ('17', '16400'),
10109 ('18', '17800'),
10110 ('19', '19300'),
10111 ('20', '20800'),
10112 ('21', '22400'),
10113 ('22', '24000'),
10114 ('23', '25500'),
10115 ('24', '27200'),
10116 ('25', '28900'),
10117 ('26', '30500'),
10118 ('27', '32200'),
10119 ('28', '33900'),
10120 ('29', '36300'),
10121 ('30', '38800'),
10122 ('31', '41600'),
10123 ('32', '44600'),
10124 ('33', '48000'),
10125 ('34', '51400'),
10126 ('35', '55000'),
10127 ('36', '58700'),
10128 ('37', '62400'),
10129 ('38', '66200'),
10130 ('39', '70200'),
10131 ('40', '74300'),
10132 ('41', '78500'),
10133 ('42', '82800'),
10134 ('43', '87100'),
10135 ('44', '91600'),
10136 ('45', '96300'),
10137 ('46', '101000'),
10138 ('47', '105800'),
10139 ('48', '110700'),
10140 ('49', '115700'),
10141 ('50', '120900'),
10142 ('51', '126100'),
10143 ('52', '131500'),
10144 ('53', '137000'),
10145 ('54', '142500'),
10146 ('55', '148200'),
10147 ('56', '154000'),
10148 ('57', '159900'),
10149 ('58', '165800'),
10150 ('59', '172000'),
10151 ('60', '290000'),
10152 ('61', '317000'),
10153 ('62', '349000'),
10154 ('63', '386000'),
10155 ('64', '428000'),
10156 ('65', '475000'),
10157 ('66', '527000'),
10158 ('67', '585000'),
10159 ('68', '648000'),
10160 ('69', '717000'),
10161 ('70', '1523800'),
10162 ('71', '1539600'),
10163 ('72', '1555700'),
10164 ('73', '1571800'),
10165 ('74', '1587900'),
10166 ('75', '1604200'),
10167 ('76', '1620700'),
10168 ('77', '1637400'),
10169 ('78', '1653900'),
10170 ('79', '1670800');
10171 /*!40000 ALTER TABLE `player_xp_for_level` ENABLE KEYS */;
10172 UNLOCK TABLES;
10175 -- Table structure for table `playercreateinfo`
10178 DROP TABLE IF EXISTS `playercreateinfo`;
10179 CREATE TABLE `playercreateinfo` (
10180   `race` tinyint(3) unsigned NOT NULL default '0',
10181   `class` tinyint(3) unsigned NOT NULL default '0',
10182   `map` smallint(5) unsigned NOT NULL default '0',
10183   `zone` mediumint(8) unsigned NOT NULL default '0',
10184   `position_x` float NOT NULL default '0',
10185   `position_y` float NOT NULL default '0',
10186   `position_z` float NOT NULL default '0',
10187   PRIMARY KEY  (`race`,`class`)
10188 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10191 -- Dumping data for table `playercreateinfo`
10194 LOCK TABLES `playercreateinfo` WRITE;
10195 /*!40000 ALTER TABLE `playercreateinfo` DISABLE KEYS */;
10196 INSERT INTO `playercreateinfo` VALUES
10197 (1,1,0,12,-8949,-132,84),
10198 (1,2,0,12,-8949,-132,84),
10199 (1,4,0,12,-8949,-132,84),
10200 (1,5,0,12,-8949,-132,84),
10201 (1,6,609,4298,2355.84,-5664.77,426.028),
10202 (1,8,0,12,-8949,-132,84),
10203 (1,9,0,12,-8949,-132,84),
10204 (2,1,1,14,-618,-4251,39),
10205 (2,3,1,14,-618,-4251,39),
10206 (2,4,1,14,-618,-4251,39),
10207 (2,6,609,4298,2358.44,-5666.9,426.023),
10208 (2,7,1,14,-618,-4251,39),
10209 (2,9,1,14,-618,-4251,39),
10210 (3,1,0,1,-6240,331,383),
10211 (3,2,0,1,-6240,331,383),
10212 (3,3,0,1,-6240,331,383),
10213 (3,4,0,1,-6240,331,383),
10214 (3,5,0,1,-6240,331,383),
10215 (3,6,609,4298,2358.44,-5666.9,426.023),
10216 (4,1,1,141,10311,832,1327),
10217 (4,3,1,141,10311,832,1327),
10218 (4,4,1,141,10311,832,1327),
10219 (4,5,1,141,10311,832,1327),
10220 (4,6,609,4298,2356.21,-5662.21,426.026),
10221 (4,11,1,141,10311,832,1327),
10222 (5,1,0,85,1676,1677,122),
10223 (5,4,0,85,1676,1677,122),
10224 (5,5,0,85,1676,1677,122),
10225 (5,8,0,85,1676,1677,122),
10226 (5,9,0,85,1676,1677,122),
10227 (5,6,609,4298,2356.21,-5662.21,426.026),
10228 (6,1,1,215,-2917,-257,53),
10229 (6,3,1,215,-2917,-257,53),
10230 (6,6,609,4298,2358.17,-5663.21,426.027),
10231 (6,7,1,215,-2917,-257,53),
10232 (6,11,1,215,-2917,-257,53),
10233 (7,1,0,1,-6240,331,383),
10234 (7,4,0,1,-6240,331,383),
10235 (7,6,609,4298,2355.05,-5661.7, 426.026),
10236 (7,8,0,1,-6240,331,383),
10237 (7,9,0,1,-6240,331,383),
10238 (8,1,1,14,-618,-4251,39),
10239 (8,3,1,14,-618,-4251,39),
10240 (8,4,1,14,-618,-4251,39),
10241 (8,5,1,14,-618,-4251,39),
10242 (8,6,609,4298,2355.05,-5661.7, 426.026),
10243 (8,7,1,14,-618,-4251,39),
10244 (8,8,1,14,-618,-4251,39),
10245 (10,2,530,3431,10349.6,-6357.29,33.4026),
10246 (10,3,530,3431,10349.6,-6357.29,33.4026),
10247 (10,4,530,3431,10349.6,-6357.29,33.4026),
10248 (10,5,530,3431,10349.6,-6357.29,33.4026),
10249 (10,6,609,4298,2355.84,-5664.77,426.028),
10250 (10,8,530,3431,10349.6,-6357.29,33.4026),
10251 (10,9,530,3431,10349.6,-6357.29,33.4026),
10252 (11,1,530,3526,-3961.64,-13931.2,100.615),
10253 (11,2,530,3526,-3961.64,-13931.2,100.615),
10254 (11,3,530,3526,-3961.64,-13931.2,100.615),
10255 (11,5,530,3526,-3961.64,-13931.2,100.615),
10256 (11,6,609,4298,2358.17,-5663.21,426.027),
10257 (11,7,530,3526,-3961.64,-13931.2,100.615),
10258 (11,8,530,3526,-3961.64,-13931.2,100.615);
10259 /*!40000 ALTER TABLE `playercreateinfo` ENABLE KEYS */;
10260 UNLOCK TABLES;
10263 -- Table structure for table `playercreateinfo_action`
10266 DROP TABLE IF EXISTS `playercreateinfo_action`;
10267 CREATE TABLE `playercreateinfo_action` (
10268   `race` tinyint(3) unsigned NOT NULL default '0',
10269   `class` tinyint(3) unsigned NOT NULL default '0',
10270   `button` smallint(5) unsigned NOT NULL default '0',
10271   `action` int(11) unsigned NOT NULL default '0',
10272   `type` smallint(5) unsigned NOT NULL default '0',
10273   KEY `playercreateinfo_race_class_index` (`race`,`class`),
10274   PRIMARY KEY (`race`,`class`,`button`)
10275 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10278 -- Dumping data for table `playercreateinfo_action`
10281 LOCK TABLES `playercreateinfo_action` WRITE;
10282 /*!40000 ALTER TABLE `playercreateinfo_action` DISABLE KEYS */;
10283 INSERT INTO `playercreateinfo_action` VALUES
10284 (1,1,0,6603,0),
10285 (1,1,11,117,128),
10286 (1,1,72,6603,0),
10287 (1,1,73,78,0),
10288 (1,1,82,59752,0),
10289 (1,1,83,117,128),
10290 (1,1,84,6603,0),
10291 (1,1,96,6603,0),
10292 (1,1,108,6603,0),
10293 (1,2,0,6603,0),
10294 (1,2,1,21084,0),
10295 (1,2,2,635,0),
10296 (1,2,9,59752,0),
10297 (1,2,10,159,128),
10298 (1,2,11,2070,128),
10299 (1,4,0,6603,0),
10300 (1,4,1,1752,0),
10301 (1,4,2,2098,0),
10302 (1,4,3,2764,0),
10303 (1,4,10,59752,0),
10304 (1,4,11,2070,128),
10305 (1,5,0,6603,0),
10306 (1,5,1,585,0),
10307 (1,5,2,2050,0),
10308 (1,5,9,59752,0),
10309 (1,5,10,159,128),
10310 (1,5,11,2070,128),
10311 (1,6,0,6603,0),
10312 (1,6,1,49576,0),
10313 (1,6,2,45477,0),
10314 (1,6,3,45462,0),
10315 (1,6,4,45902,0),
10316 (1,6,5,47541,0),
10317 (1,6,11,59752,0),
10318 (1,8,0,6603,0),
10319 (1,8,1,133,0),
10320 (1,8,2,168,0),
10321 (1,8,9,59752,0),
10322 (1,8,10,159,128),
10323 (1,8,11,2070,128),
10324 (1,9,0,6603,0),
10325 (1,9,1,686,0),
10326 (1,9,2,687,0),
10327 (1,9,9,59752,0),
10328 (1,9,10,159,128),
10329 (1,9,11,4604,128),
10330 (2,1,0,6603,0),
10331 (2,1,72,6603,0),
10332 (2,1,73,78,0),
10333 (2,1,74,20572,0),
10334 (2,1,83,117,128),
10335 (2,1,84,6603,0),
10336 (2,1,96,6603,0),
10337 (2,1,108,6603,0),
10338 (2,3,0,6603,0),
10339 (2,3,1,2973,0),
10340 (2,3,2,75,0),
10341 (2,3,9,20572,0),
10342 (2,3,10,159,128),
10343 (2,3,11,117,128),
10344 (2,4,0,6603,0),
10345 (2,4,1,1752,0),
10346 (2,4,2,2098,0),
10347 (2,4,3,2764,0),
10348 (2,4,4,20572,0),
10349 (2,4,11,117,128),
10350 (2,6,0,6603,0),
10351 (2,6,1,49576,0),
10352 (2,6,2,45477,0),
10353 (2,6,3,45462,0),
10354 (2,6,4,45902,0),
10355 (2,6,5,47541,0),
10356 (2,6,10,20572,0),
10357 (2,7,0,6603,0),
10358 (2,7,1,403,0),
10359 (2,7,2,331,0),
10360 (2,7,3,33697,0),
10361 (2,7,10,159,128),
10362 (2,7,11,117,128),
10363 (2,9,0,6603,0),
10364 (2,9,1,686,0),
10365 (2,9,2,687,0),
10366 (2,9,3,33702,0),
10367 (2,9,10,159,128),
10368 (2,9,11,117,128),
10369 (3,1,0,6603,0),
10370 (3,1,1,78,0),
10371 (3,1,11,117,128),
10372 (3,1,72,6603,0),
10373 (3,1,73,78,0),
10374 (3,1,74,20594,0),
10375 (3,1,75,2481,0),
10376 (3,1,83,117,128),
10377 (3,1,84,6603,0),
10378 (3,1,96,6603,0),
10379 (3,1,108,6603,0),
10380 (3,2,0,6603,0),
10381 (3,2,1,21084,0),
10382 (3,2,2,635,0),
10383 (3,2,3,20594,0),
10384 (3,2,4,2481,0),
10385 (3,2,10,159,128),
10386 (3,2,11,4540,128),
10387 (3,3,0,6603,0),
10388 (3,3,1,2973,0),
10389 (3,3,2,75,0),
10390 (3,3,3,20594,0),
10391 (3,3,4,2481,0),
10392 (3,3,10,159,128),
10393 (3,3,11,117,128),
10394 (3,3,75,20594,0),
10395 (3,3,76,2481,0),
10396 (3,4,0,6603,0),
10397 (3,4,1,1752,0),
10398 (3,4,2,2098,0),
10399 (3,4,3,2764,0),
10400 (3,4,4,20594,0),
10401 (3,4,5,2481,0),
10402 (3,4,11,4540,128),
10403 (3,5,0,6603,0),
10404 (3,5,1,585,0),
10405 (3,5,2,2050,0),
10406 (3,5,3,20594,0),
10407 (3,5,4,2481,0),
10408 (3,5,10,159,128),
10409 (3,5,11,4540,128),
10410 (3,6,0,6603,0),
10411 (3,6,1,49576,0),
10412 (3,6,2,45477,0),
10413 (3,6,3,45462,0),
10414 (3,6,4,45902,0),
10415 (3,6,5,47541,0),
10416 (3,6,10,2481,0),
10417 (4,1,72,6603,0),
10418 (4,1,73,78,0),
10419 (4,1,82,58984,0),
10420 (4,1,83,117,128),
10421 (4,1,85,6603,0),
10422 (4,1,97,6603,0),
10423 (4,1,109,6603,0),
10424 (4,3,0,6603,0),
10425 (4,3,1,2973,0),
10426 (4,3,2,75,0),
10427 (4,3,3,58984,0),
10428 (4,3,10,159,128),
10429 (4,3,11,117,128),
10430 (4,4,0,6603,0),
10431 (4,4,1,1752,0),
10432 (4,4,2,2098,0),
10433 (4,4,3,2764,0),
10434 (4,4,10,58984,0),
10435 (4,4,11,4540,128),
10436 (4,4,82,58984,0),
10437 (4,5,0,6603,0),
10438 (4,5,1,585,0),
10439 (4,5,2,2050,0),
10440 (4,5,3,58984,0),
10441 (4,5,10,159,128),
10442 (4,5,11,2070,128),
10443 (4,6,0,6603,0),
10444 (4,6,1,49576,0),
10445 (4,6,2,45477,0),
10446 (4,6,3,45462,0),
10447 (4,6,4,45902,0),
10448 (4,6,5,47541,0),
10449 (4,6,10,58984,0),
10450 (4,6,83,58984,0),
10451 (4,11,0,6603,0),
10452 (4,11,1,5176,0),
10453 (4,11,2,5185,0),
10454 (4,11,9,58984,0),
10455 (4,11,10,159,128),
10456 (4,11,11,4536,128),
10457 (5,1,0,6603,0),
10458 (5,1,72,6603,0),
10459 (5,1,73,78,0),
10460 (5,1,74,20577,0),
10461 (5,1,83,4604,128),
10462 (5,1,84,6603,0),
10463 (5,1,96,6603,0),
10464 (5,1,108,6603,0),
10465 (5,4,0,6603,0),
10466 (5,4,1,1752,0),
10467 (5,4,2,2098,0),
10468 (5,4,3,2764,0),
10469 (5,4,4,20577,0),
10470 (5,4,11,4604,128),
10471 (5,5,0,6603,0),
10472 (5,5,1,585,0),
10473 (5,5,2,2050,0),
10474 (5,5,3,20577,0),
10475 (5,5,10,159,128),
10476 (5,5,11,4604,128),
10477 (5,6,0,6603,0),
10478 (5,6,1,49576,0),
10479 (5,6,2,45477,0),
10480 (5,6,3,45462,0),
10481 (5,6,4,45902,0),
10482 (5,6,5,47541,0),
10483 (5,6,10,20577,0),
10484 (5,8,0,6603,0),
10485 (5,8,1,133,0),
10486 (5,8,2,168,0),
10487 (5,8,3,20577,0),
10488 (5,8,10,159,128),
10489 (5,8,11,4604,128),
10490 (5,9,0,6603,0),
10491 (5,9,1,686,0),
10492 (5,9,2,687,0),
10493 (5,9,3,20577,0),
10494 (5,9,10,159,128),
10495 (5,9,11,4604,128),
10496 (6,1,0,6603,0),
10497 (6,1,1,78,0),
10498 (6,1,3,20549,0),
10499 (6,1,72,6603,0),
10500 (6,1,73,78,0),
10501 (6,1,74,20549,0),
10502 (6,1,83,4540,128),
10503 (6,1,84,6603,0),
10504 (6,1,96,6603,0),
10505 (6,1,108,6603,0),
10506 (6,3,0,6603,0),
10507 (6,3,1,2973,0),
10508 (6,3,2,75,0),
10509 (6,3,3,20549,0),
10510 (6,3,10,159,128),
10511 (6,3,11,117,128),
10512 (6,3,76,20549,0),
10513 (6,6,0,6603,0),
10514 (6,6,1,49576,0),
10515 (6,6,2,45477,0),
10516 (6,6,3,45462,0),
10517 (6,6,4,45902,0),
10518 (6,6,5,47541,0),
10519 (6,6,10,20549,0),
10520 (6,6,75,20549,0),
10521 (6,7,0,6603,0),
10522 (6,7,1,403,0),
10523 (6,7,2,331,0),
10524 (6,7,3,20549,0),
10525 (6,7,10,159,128),
10526 (6,7,11,4604,128),
10527 (6,7,76,20549,0),
10528 (6,11,0,6603,0),
10529 (6,11,1,5176,0),
10530 (6,11,2,5185,0),
10531 (6,11,3,20549,0),
10532 (6,11,10,159,128),
10533 (6,11,11,4536,128),
10534 (6,11,73,6603,0),
10535 (6,11,76,20549,0),
10536 (6,11,85,6603,0),
10537 (6,11,97,6603,0),
10538 (6,11,109,6603,0),
10539 (7,1,0,6603,0),
10540 (7,1,1,78,0),
10541 (7,1,10,20589,0),
10542 (7,1,11,117,128),
10543 (7,1,72,6603,0),
10544 (7,1,73,78,0),
10545 (7,1,82,20589,0),
10546 (7,1,83,117,128),
10547 (7,1,84,6603,0),
10548 (7,1,96,6603,0),
10549 (7,1,108,6603,0),
10550 (7,4,0,6603,0),
10551 (7,4,1,1752,0),
10552 (7,4,2,2098,0),
10553 (7,4,3,2764,0),
10554 (7,4,10,20589,0),
10555 (7,4,11,117,128),
10556 (7,6,0,6603,0),
10557 (7,6,1,49576,0),
10558 (7,6,2,45477,0),
10559 (7,6,3,45462,0),
10560 (7,6,4,45902,0),
10561 (7,6,5,47541,0),
10562 (7,6,10,20589,0),
10563 (7,6,11,41751,128),
10564 (7,6,72,6603,0),
10565 (7,6,83,41751,128),
10566 (7,6,84,6603,0),
10567 (7,6,96,6603,0),
10568 (7,6,108,6603,0),
10569 (7,8,0,6603,0),
10570 (7,8,1,133,0),
10571 (7,8,2,168,0),
10572 (7,8,9,20589,0),
10573 (7,8,10,159,128),
10574 (7,8,11,4536,128),
10575 (7,9,0,6603,0),
10576 (7,9,1,686,0),
10577 (7,9,2,687,0),
10578 (7,9,9,20589,0),
10579 (7,9,10,159,128),
10580 (7,9,11,4604,128),
10581 (8,1,0,6603,0),
10582 (8,1,72,6603,0),
10583 (8,1,73,78,0),
10584 (8,1,74,2764,0),
10585 (8,1,75,26297,0),
10586 (8,1,83,117,128),
10587 (8,1,84,6603,0),
10588 (8,1,96,6603,0),
10589 (8,1,108,6603,0),
10590 (8,3,0,6603,0),
10591 (8,3,1,2973,0),
10592 (8,3,2,75,0),
10593 (8,3,3,26297,0),
10594 (8,3,10,159,128),
10595 (8,3,11,4604,128),
10596 (8,4,0,6603,0),
10597 (8,4,1,1752,0),
10598 (8,4,2,2098,0),
10599 (8,4,3,2764,0),
10600 (8,4,4,26297,0),
10601 (8,4,11,117,128),
10602 (8,5,0,6603,0),
10603 (8,5,1,585,0),
10604 (8,5,2,2050,0),
10605 (8,5,3,26297,0),
10606 (8,5,10,159,128),
10607 (8,5,11,4540,128),
10608 (8,6,0,6603,0),
10609 (8,6,1,49576,0),
10610 (8,6,2,45477,0),
10611 (8,6,3,45462,0),
10612 (8,6,4,45902,0),
10613 (8,6,5,47541,0),
10614 (8,6,10,26297,0),
10615 (8,7,0,6603,0),
10616 (8,7,1,403,0),
10617 (8,7,2,331,0),
10618 (8,7,3,26297,0),
10619 (8,7,10,159,128),
10620 (8,7,11,117,128),
10621 (8,8,0,6603,0),
10622 (8,8,1,133,0),
10623 (8,8,2,168,0),
10624 (8,8,3,26297,0),
10625 (8,8,10,159,128),
10626 (8,8,11,117,128),
10627 (10,2,0,6603,0),
10628 (10,2,1,21084,0),
10629 (10,2,2,635,0),
10630 (10,2,3,28730,0),
10631 (10,2,10,159,128),
10632 (10,2,11,20857,128),
10633 (10,3,0,6603,0),
10634 (10,3,1,2973,0),
10635 (10,3,2,75,0),
10636 (10,3,3,28730,0),
10637 (10,3,10,159,128),
10638 (10,3,11,20857,128),
10639 (10,4,0,6603,0),
10640 (10,4,1,1752,0),
10641 (10,4,2,2098,0),
10642 (10,4,3,2764,0),
10643 (10,4,4,25046,0),
10644 (10,4,11,20857,128),
10645 (10,5,0,6603,0),
10646 (10,5,1,585,0),
10647 (10,5,2,2050,0),
10648 (10,5,3,28730,0),
10649 (10,5,10,159,128),
10650 (10,5,11,20857,128),
10651 (10,6,0,6603,0),
10652 (10,6,1,49576,0),
10653 (10,6,2,45477,0),
10654 (10,6,3,45462,0),
10655 (10,6,4,45902,0),
10656 (10,6,5,47541,0),
10657 (10,6,6,50613,0),
10658 (10,8,0,6603,0),
10659 (10,8,1,133,0),
10660 (10,8,2,168,0),
10661 (10,8,3,28730,0),
10662 (10,8,10,159,128),
10663 (10,8,11,20857,128),
10664 (10,9,0,6603,0),
10665 (10,9,1,686,0),
10666 (10,9,2,687,0),
10667 (10,9,3,28730,0),
10668 (10,9,10,159,128),
10669 (10,9,11,20857,128),
10670 (11,1,0,6603,0),
10671 (11,1,72,6603,0),
10672 (11,1,73,78,0),
10673 (11,1,74,28880,0),
10674 (11,1,83,4540,128),
10675 (11,1,84,6603,0),
10676 (11,1,96,6603,0),
10677 (11,1,108,6603,0),
10678 (11,2,0,6603,0),
10679 (11,2,1,21084,0),
10680 (11,2,2,635,0),
10681 (11,2,3,59542,0),
10682 (11,2,10,159,128),
10683 (11,2,11,4540,128),
10684 (11,2,83,4540,128),
10685 (11,3,0,6603,0),
10686 (11,3,1,2973,0),
10687 (11,3,2,75,0),
10688 (11,3,3,59543,0),
10689 (11,3,10,159,128),
10690 (11,3,11,4540,128),
10691 (11,3,72,6603,0),
10692 (11,3,73,2973,0),
10693 (11,3,74,75,0),
10694 (11,3,82,159,128),
10695 (11,3,83,4540,128),
10696 (11,5,0,6603,0),
10697 (11,5,1,585,0),
10698 (11,5,2,2050,0),
10699 (11,5,3,59544,0),
10700 (11,5,10,159,128),
10701 (11,5,11,4540,128),
10702 (11,5,83,4540,128),
10703 (11,6,0,6603,0),
10704 (11,6,1,49576,0),
10705 (11,6,2,45477,0),
10706 (11,6,3,45462,0),
10707 (11,6,4,45902,0),
10708 (11,6,5,47541,0),
10709 (11,6,10,59545,0),
10710 (11,6,11,41751,128),
10711 (11,7,0,6603,0),
10712 (11,7,1,403,0),
10713 (11,7,2,331,0),
10714 (11,7,3,59547,0),
10715 (11,7,10,159,128),
10716 (11,7,11,4540,128),
10717 (11,8,0,6603,0),
10718 (11,8,1,133,0),
10719 (11,8,2,168,0),
10720 (11,8,3,59548,0),
10721 (11,8,10,159,128),
10722 (11,8,11,4540,128),
10723 (11,8,83,4540,128);
10724 /*!40000 ALTER TABLE `playercreateinfo_action` ENABLE KEYS */;
10725 UNLOCK TABLES;
10728 -- Table structure for table `playercreateinfo_item`
10731 DROP TABLE IF EXISTS `playercreateinfo_item`;
10732 CREATE TABLE `playercreateinfo_item` (
10733   `race` tinyint(3) unsigned NOT NULL default '0',
10734   `class` tinyint(3) unsigned NOT NULL default '0',
10735   `itemid` mediumint(8) unsigned NOT NULL default '0',
10736   `amount` tinyint(3) unsigned NOT NULL default '1',
10737   KEY `playercreateinfo_race_class_index` (`race`,`class`)
10738 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10741 -- Dumping data for table `playercreateinfo_item`
10744 LOCK TABLES `playercreateinfo_item` WRITE;
10745 /*!40000 ALTER TABLE `playercreateinfo_item` DISABLE KEYS */;
10746 /*!40000 ALTER TABLE `playercreateinfo_item` ENABLE KEYS */;
10747 UNLOCK TABLES;
10750 -- Table structure for table `playercreateinfo_spell`
10753 DROP TABLE IF EXISTS `playercreateinfo_spell`;
10754 CREATE TABLE `playercreateinfo_spell` (
10755   `race` tinyint(3) unsigned NOT NULL default '0',
10756   `class` tinyint(3) unsigned NOT NULL default '0',
10757   `Spell` mediumint(8) unsigned NOT NULL default '0',
10758   `Note` varchar(255) default NULL,
10759   PRIMARY KEY  (`race`,`class`,`Spell`)
10760 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10763 -- Dumping data for table `playercreateinfo_spell`
10766 LOCK TABLES `playercreateinfo_spell` WRITE;
10767 /*!40000 ALTER TABLE `playercreateinfo_spell` DISABLE KEYS */;
10768 INSERT INTO `playercreateinfo_spell` VALUES
10769 (1,1,78,'Heroic Strike'),
10770 (1,1,81,'Dodge'),
10771 (1,1,107,'Block'),
10772 (1,1,196,'One-Handed Axes'),
10773 (1,1,198,'One-Handed Maces'),
10774 (1,1,201,'One-Handed Swords'),
10775 (1,1,202,'Two-Handed Swords'),
10776 (1,1,203,'Unarmed'),
10777 (1,1,204,'Defense'),
10778 (1,1,522,'SPELLDEFENSE (DND)'),
10779 (1,1,668,'Language Common'),
10780 (1,1,1843,'Disarm'),
10781 (1,1,2382,'Generic'),
10782 (1,1,2457,'Battle Stance'),
10783 (1,1,2479,'Honorless Target'),
10784 (1,1,3050,'Detect'),
10785 (1,1,3365,'Opening'),
10786 (1,1,5301,'Defensive State (DND)'),
10787 (1,1,6233,'Closing'),
10788 (1,1,6246,'Closing'),
10789 (1,1,6247,'Opening'),
10790 (1,1,6477,'Opening'),
10791 (1,1,6478,'Opening'),
10792 (1,1,6603,'Attack'),
10793 (1,1,7266,'Duel'),
10794 (1,1,7267,'Grovel'),
10795 (1,1,7355,'Stuck'),
10796 (1,1,8386,'Attacking'),
10797 (1,1,8737,'Mail'),
10798 (1,1,9077,'Leather'),
10799 (1,1,9078,'Cloth'),
10800 (1,1,9116,'Shield'),
10801 (1,1,9125,'Generic'),
10802 (1,1,20597,'Sword Specialization'),
10803 (1,1,20598,'The Human Spirit'),
10804 (1,1,20599,'Diplomacy'),
10805 (1,1,20864,'Mace Specialization'),
10806 (1,1,21651,'Opening'),
10807 (1,1,21652,'Closing'),
10808 (1,1,22027,'Remove Insignia'),
10809 (1,1,22810,'Opening - No Text'),
10810 (1,1,32215,'Victorious State'),
10811 (1,1,45927,'Summon Friend'),
10812 (1,1,58985,'Perception'),
10813 (1,1,59752,'Every Man for Himself'),
10814 (1,1,61437,'Opening'),
10815 (1,2,81,'Dodge'),
10816 (1,2,107,'Block'),
10817 (1,2,198,'One-Handed Maces'),
10818 (1,2,199,'Two-Handed Maces'),
10819 (1,2,203,'Unarmed'),
10820 (1,2,204,'Defense'),
10821 (1,2,522,'SPELLDEFENSE (DND)'),
10822 (1,2,635,'Holy Light'),
10823 (1,2,668,'Language Common'),
10824 (1,2,1843,'Disarm'),
10825 (1,2,2382,'Generic'),
10826 (1,2,2479,'Honorless Target'),
10827 (1,2,3050,'Detect'),
10828 (1,2,3365,'Opening'),
10829 (1,2,6233,'Closing'),
10830 (1,2,6246,'Closing'),
10831 (1,2,6247,'Opening'),
10832 (1,2,6477,'Opening'),
10833 (1,2,6478,'Opening'),
10834 (1,2,6603,'Attack'),
10835 (1,2,7266,'Duel'),
10836 (1,2,7267,'Grovel'),
10837 (1,2,7355,'Stuck'),
10838 (1,2,8386,'Attacking'),
10839 (1,2,8737,'Mail'),
10840 (1,2,9077,'Leather'),
10841 (1,2,9078,'Cloth'),
10842 (1,2,9116,'Shield'),
10843 (1,2,9125,'Generic'),
10844 (1,2,21084,'Seal of Righteousness'),
10845 (1,2,20597,'Sword Specialization'),
10846 (1,2,20598,'The Human Spirit'),
10847 (1,2,20599,'Diplomacy'),
10848 (1,2,20864,'Mace Specialization'),
10849 (1,2,21651,'Opening'),
10850 (1,2,21652,'Closing'),
10851 (1,2,22027,'Remove Insignia'),
10852 (1,2,22810,'Opening - No Text'),
10853 (1,2,27762,'Libram'),
10854 (1,2,45927,'Summon Friend'),
10855 (1,2,58985,'Perception'),
10856 (1,2,59752,'Every Man for Himself'),
10857 (1,2,61437,'Opening'),
10858 (1,4,81,'Dodge'),
10859 (1,4,203,'Unarmed'),
10860 (1,4,204,'Defense'),
10861 (1,4,522,'SPELLDEFENSE (DND)'),
10862 (1,4,668,'Language Common'),
10863 (1,4,674,'Dual Wield'),
10864 (1,4,1180,'Daggers'),
10865 (1,4,1752,'Sinister Strike'),
10866 (1,4,1843,'Disarm'),
10867 (1,4,2098,'Eviscerate'),
10868 (1,4,2382,'Generic'),
10869 (1,4,2479,'Honorless Target'),
10870 (1,4,2567,'Thrown'),
10871 (1,4,2764,'Throw'),
10872 (1,4,3050,'Detect'),
10873 (1,4,3365,'Opening'),
10874 (1,4,6233,'Closing'),
10875 (1,4,6246,'Closing'),
10876 (1,4,6247,'Opening'),
10877 (1,4,6477,'Opening'),
10878 (1,4,6478,'Opening'),
10879 (1,4,6603,'Attack'),
10880 (1,4,7266,'Duel'),
10881 (1,4,7267,'Grovel'),
10882 (1,4,7355,'Stuck'),
10883 (1,4,8386,'Attacking'),
10884 (1,4,9077,'Leather'),
10885 (1,4,9078,'Cloth'),
10886 (1,4,9125,'Generic'),
10887 (1,4,16092,'Defensive State (DND)'),
10888 (1,4,20597,'Sword Specialization'),
10889 (1,4,20598,'The Human Spirit'),
10890 (1,4,20599,'Diplomacy'),
10891 (1,4,20864,'Mace Specialization'),
10892 (1,4,21184,'Rogue Passive (DND)'),
10893 (1,4,21651,'Opening'),
10894 (1,4,21652,'Closing'),
10895 (1,4,22027,'Remove Insignia'),
10896 (1,4,22810,'Opening - No Text'),
10897 (1,4,45927,'Summon Friend'),
10898 (1,4,58985,'Perception'),
10899 (1,4,59752,'Every Man for Himself'),
10900 (1,4,61437,'Opening'),
10901 (1,5,81,'Dodge'),
10902 (1,5,198,'One-Handed Maces'),
10903 (1,5,203,'Unarmed'),
10904 (1,5,204,'Defense'),
10905 (1,5,227,'Staves'),
10906 (1,5,522,'SPELLDEFENSE (DND)'),
10907 (1,5,585,'Smite'),
10908 (1,5,668,'Language Common'),
10909 (1,5,1843,'Disarm'),
10910 (1,5,2050,'Lesser Heal'),
10911 (1,5,2382,'Generic'),
10912 (1,5,2479,'Honorless Target'),
10913 (1,5,3050,'Detect'),
10914 (1,5,3365,'Opening'),
10915 (1,5,5009,'Wands'),
10916 (1,5,5019,'Shoot'),
10917 (1,5,6233,'Closing'),
10918 (1,5,6246,'Closing'),
10919 (1,5,6247,'Opening'),
10920 (1,5,6477,'Opening'),
10921 (1,5,6478,'Opening'),
10922 (1,5,6603,'Attack'),
10923 (1,5,7266,'Duel'),
10924 (1,5,7267,'Grovel'),
10925 (1,5,7355,'Stuck'),
10926 (1,5,8386,'Attacking'),
10927 (1,5,9078,'Cloth'),
10928 (1,5,9125,'Generic'),
10929 (1,5,20597,'Sword Specialization'),
10930 (1,5,20598,'The Human Spirit'),
10931 (1,5,20599,'Diplomacy'),
10932 (1,5,20864,'Mace Specialization'),
10933 (1,5,21651,'Opening'),
10934 (1,5,21652,'Closing'),
10935 (1,5,22027,'Remove Insignia'),
10936 (1,5,22810,'Opening - No Text'),
10937 (1,5,45927,'Summon Friend'),
10938 (1,5,58985,'Perception'),
10939 (1,5,59752,'Every Man for Himself'),
10940 (1,5,61437,'Opening'),
10941 (1,6,81,'Dodge'),
10942 (1,6,196,'One-Handed Axes'),
10943 (1,6,197,'Two-Handed Axes'),
10944 (1,6,200,'Polearms'),
10945 (1,6,201,'One-Handed Swords'),
10946 (1,6,202,'Two-Handed Swords'),
10947 (1,6,203,'Unarmed'),
10948 (1,6,204,'Defense'),
10949 (1,6,522,'SPELLDEFENSE (DND)'),
10950 (1,6,668,'Language Common'),
10951 (1,6,674,'Dual Wield'),
10952 (1,6,750,'Plate Mail'),
10953 (1,6,1843,'Disarm'),
10954 (1,6,2382,'Generic'),
10955 (1,6,2479,'Honorless Target'),
10956 (1,6,3050,'Detect'),
10957 (1,6,3127,'Parry'),
10958 (1,6,3275,'Linen Bandage'),
10959 (1,6,3276,'Heavy Linen Bandage'),
10960 (1,6,3277,'Wool Bandage'),
10961 (1,6,3278,'Heavy Wool Bandage'),
10962 (1,6,3365,'Opening'),
10963 (1,6,6233,'Closing'),
10964 (1,6,6246,'Closing'),
10965 (1,6,6247,'Opening'),
10966 (1,6,6477,'Opening'),
10967 (1,6,6478,'Opening'),
10968 (1,6,6603,'Attack'),
10969 (1,6,7266,'Duel'),
10970 (1,6,7267,'Grovel'),
10971 (1,6,7355,'Stuck'),
10972 (1,6,7928,'Silk Bandage'),
10973 (1,6,7929,'Heavy Silk Bandage'),
10974 (1,6,7934,'Anti-Venom'),
10975 (1,6,8386,'Attacking'),
10976 (1,6,8737,'Mail'),
10977 (1,6,9077,'Leather'),
10978 (1,6,9078,'Cloth'),
10979 (1,6,9125,'Generic'),
10980 (1,6,10840,'Mageweave Bandage'),
10981 (1,6,10841,'Heavy Mageweave Bandage'),
10982 (1,6,10846,'First Aid'),
10983 (1,6,18629,'Runecloth Bandage'),
10984 (1,6,18630,'Heavy Runecloth Bandage'),
10985 (1,6,20597,'Sword Specialization'),
10986 (1,6,20598,'The Human Spirit'),
10987 (1,6,20599,'Diplomacy'),
10988 (1,6,20864,'Mace Specialization'),
10989 (1,6,21651,'Opening'),
10990 (1,6,21652,'Closing'),
10991 (1,6,22027,'Remove Insignia'),
10992 (1,6,22810,'Opening - No Text'),
10993 (1,6,33391,'Journeyman Riding'),
10994 (1,6,45462,'Plague Strike'),
10995 (1,6,45477,'Icy Touch'),
10996 (1,6,45902,'Blood Strike'),
10997 (1,6,45903,'Offensive State (DND)'),
10998 (1,6,45927,'Summon Friend'),
10999 (1,6,47541,'Death Coil'),
11000 (1,6,48266,'Blood Presence'),
11001 (1,6,49410,'Forceful Deflection'),
11002 (1,6,49576,'Death Grip'),
11003 (1,6,52665,'Sigil'),
11004 (1,6,58985,'Perception'),
11005 (1,6,59752,'Every Man for Himself'),
11006 (1,6,59879,'Blood Plague'),
11007 (1,6,59921,'Frost Fever'),
11008 (1,6,61437,'Opening'),
11009 (1,6,61455,'Runic Focus'),
11010 (1,8,81,'Dodge'),
11011 (1,8,133,'Fireball'),
11012 (1,8,168,'Frost Armor'),
11013 (1,8,203,'Unarmed'),
11014 (1,8,204,'Defense'),
11015 (1,8,227,'Staves'),
11016 (1,8,522,'SPELLDEFENSE (DND)'),
11017 (1,8,668,'Language Common'),
11018 (1,8,1843,'Disarm'),
11019 (1,8,2382,'Generic'),
11020 (1,8,2479,'Honorless Target'),
11021 (1,8,3050,'Detect'),
11022 (1,8,3365,'Opening'),
11023 (1,8,5009,'Wands'),
11024 (1,8,5019,'Shoot'),
11025 (1,8,6233,'Closing'),
11026 (1,8,6246,'Closing'),
11027 (1,8,6247,'Opening'),
11028 (1,8,6477,'Opening'),
11029 (1,8,6478,'Opening'),
11030 (1,8,6603,'Attack'),
11031 (1,8,7266,'Duel'),
11032 (1,8,7267,'Grovel'),
11033 (1,8,7355,'Stuck'),
11034 (1,8,8386,'Attacking'),
11035 (1,8,9078,'Cloth'),
11036 (1,8,9125,'Generic'),
11037 (1,8,20597,'Sword Specialization'),
11038 (1,8,20598,'The Human Spirit'),
11039 (1,8,20599,'Diplomacy'),
11040 (1,8,20864,'Mace Specialization'),
11041 (1,8,21651,'Opening'),
11042 (1,8,21652,'Closing'),
11043 (1,8,22027,'Remove Insignia'),
11044 (1,8,22810,'Opening - No Text'),
11045 (1,8,45927,'Summon Friend'),
11046 (1,8,58985,'Perception'),
11047 (1,8,59752,'Every Man for Himself'),
11048 (1,8,61437,'Opening'),
11049 (1,9,81,'Dodge'),
11050 (1,9,203,'Unarmed'),
11051 (1,9,204,'Defense'),
11052 (1,9,227,'Staves'),
11053 (1,9,522,'SPELLDEFENSE (DND)'),
11054 (1,9,668,'Language Common'),
11055 (1,9,686,'Shadow Bolt'),
11056 (1,9,687,'Demon Skin'),
11057 (1,9,1180,'Daggers'),
11058 (1,9,1843,'Disarm'),
11059 (1,9,2382,'Generic'),
11060 (1,9,2479,'Honorless Target'),
11061 (1,9,3050,'Detect'),
11062 (1,9,3365,'Opening'),
11063 (1,9,5009,'Wands'),
11064 (1,9,5019,'Shoot'),
11065 (1,9,6233,'Closing'),
11066 (1,9,6246,'Closing'),
11067 (1,9,6247,'Opening'),
11068 (1,9,6477,'Opening'),
11069 (1,9,6478,'Opening'),
11070 (1,9,6603,'Attack'),
11071 (1,9,7266,'Duel'),
11072 (1,9,7267,'Grovel'),
11073 (1,9,7355,'Stuck'),
11074 (1,9,8386,'Attacking'),
11075 (1,9,9078,'Cloth'),
11076 (1,9,9125,'Generic'),
11077 (1,9,20597,'Sword Specialization'),
11078 (1,9,20598,'The Human Spirit'),
11079 (1,9,20599,'Diplomacy'),
11080 (1,9,20864,'Mace Specialization'),
11081 (1,9,21651,'Opening'),
11082 (1,9,21652,'Closing'),
11083 (1,9,22027,'Remove Insignia'),
11084 (1,9,22810,'Opening - No Text'),
11085 (1,9,45927,'Summon Friend'),
11086 (1,9,58284,'Chaos Bolt Passive'),
11087 (1,9,58985,'Perception'),
11088 (1,9,59752,'Every Man for Himself'),
11089 (1,9,61437,'Opening'),
11090 (2,1,78,'Heroic Strike'),
11091 (2,1,81,'Dodge'),
11092 (2,1,107,'Block'),
11093 (2,1,196,'One-Handed Axes'),
11094 (2,1,197,'Two-Handed Axes'),
11095 (2,1,201,'One-Handed Swords'),
11096 (2,1,203,'Unarmed'),
11097 (2,1,204,'Defense'),
11098 (2,1,522,'SPELLDEFENSE (DND)'),
11099 (2,1,669,'Language Orcish'),
11100 (2,1,1843,'Disarm'),
11101 (2,1,2382,'Generic'),
11102 (2,1,2457,'Battle Stance'),
11103 (2,1,2479,'Honorless Target'),
11104 (2,1,3050,'Detect'),
11105 (2,1,3365,'Opening'),
11106 (2,1,5301,'Defensive State (DND)'),
11107 (2,1,6233,'Closing'),
11108 (2,1,6246,'Closing'),
11109 (2,1,6247,'Opening'),
11110 (2,1,6477,'Opening'),
11111 (2,1,6478,'Opening'),
11112 (2,1,6603,'Attack'),
11113 (2,1,7266,'Duel'),
11114 (2,1,7267,'Grovel'),
11115 (2,1,7355,'Stuck'),
11116 (2,1,8386,'Attacking'),
11117 (2,1,8737,'Mail'),
11118 (2,1,9077,'Leather'),
11119 (2,1,9078,'Cloth'),
11120 (2,1,9116,'Shield'),
11121 (2,1,9125,'Generic'),
11122 (2,1,20572,'Blood Fury'),
11123 (2,1,20573,'Hardiness'),
11124 (2,1,20574,'Axe Specialization'),
11125 (2,1,21563,'Command'),
11126 (2,1,21651,'Opening'),
11127 (2,1,21652,'Closing'),
11128 (2,1,22027,'Remove Insignia'),
11129 (2,1,22810,'Opening - No Text'),
11130 (2,1,32215,'Victorious State'),
11131 (2,1,45927,'Summon Friend'),
11132 (2,1,61437,'Opening'),
11133 (2,3,75,'Auto Shot'),
11134 (2,3,81,'Dodge'),
11135 (2,3,196,'One-Handed Axes'),
11136 (2,3,197,'Two-Handed Axes'),
11137 (2,3,203,'Unarmed'),
11138 (2,3,204,'Defense'),
11139 (2,3,264,'Bows'),
11140 (2,3,522,'SPELLDEFENSE (DND)'),
11141 (2,3,669,'Language Orcish'),
11142 (2,3,1843,'Disarm'),
11143 (2,3,2382,'Generic'),
11144 (2,3,2479,'Honorless Target'),
11145 (2,3,2973,'Raptor Strike'),
11146 (2,3,3050,'Detect'),
11147 (2,3,3365,'Opening'),
11148 (2,3,6233,'Closing'),
11149 (2,3,6246,'Closing'),
11150 (2,3,6247,'Opening'),
11151 (2,3,6477,'Opening'),
11152 (2,3,6478,'Opening'),
11153 (2,3,6603,'Attack'),
11154 (2,3,7266,'Duel'),
11155 (2,3,7267,'Grovel'),
11156 (2,3,7355,'Stuck'),
11157 (2,3,8386,'Attacking'),
11158 (2,3,9077,'Leather'),
11159 (2,3,9078,'Cloth'),
11160 (2,3,9125,'Generic'),
11161 (2,3,13358,'Defensive State (DND)'),
11162 (2,3,20572,'Blood Fury'),
11163 (2,3,20573,'Hardiness'),
11164 (2,3,20574,'Axe Specialization'),
11165 (2,3,20576,'Command'),
11166 (2,3,21651,'Opening'),
11167 (2,3,21652,'Closing'),
11168 (2,3,22027,'Remove Insignia'),
11169 (2,3,22810,'Opening - No Text'),
11170 (2,3,24949,'Defensive State 2 (DND)'),
11171 (2,3,34082,'Advantaged State (DND)'),
11172 (2,3,45927,'Summon Friend'),
11173 (2,3,61437,'Opening'),
11174 (2,4,81,'Dodge'),
11175 (2,4,203,'Unarmed'),
11176 (2,4,204,'Defense'),
11177 (2,4,522,'SPELLDEFENSE (DND)'),
11178 (2,4,669,'Language Orcish'),
11179 (2,4,674,'Dual Wield'),
11180 (2,4,1180,'Daggers'),
11181 (2,4,1752,'Sinister Strike'),
11182 (2,4,1843,'Disarm'),
11183 (2,4,2098,'Eviscerate'),
11184 (2,4,2382,'Generic'),
11185 (2,4,2479,'Honorless Target'),
11186 (2,4,2567,'Thrown'),
11187 (2,4,2764,'Throw'),
11188 (2,4,3050,'Detect'),
11189 (2,4,3365,'Opening'),
11190 (2,4,6233,'Closing'),
11191 (2,4,6246,'Closing'),
11192 (2,4,6247,'Opening'),
11193 (2,4,6477,'Opening'),
11194 (2,4,6478,'Opening'),
11195 (2,4,6603,'Attack'),
11196 (2,4,7266,'Duel'),
11197 (2,4,7267,'Grovel'),
11198 (2,4,7355,'Stuck'),
11199 (2,4,8386,'Attacking'),
11200 (2,4,9077,'Leather'),
11201 (2,4,9078,'Cloth'),
11202 (2,4,9125,'Generic'),
11203 (2,4,16092,'Defensive State (DND)'),
11204 (2,4,20572,'Blood Fury'),
11205 (2,4,20573,'Hardiness'),
11206 (2,4,20574,'Axe Specialization'),
11207 (2,4,21184,'Rogue Passive (DND)'),
11208 (2,4,21563,'Command'),
11209 (2,4,21651,'Opening'),
11210 (2,4,21652,'Closing'),
11211 (2,4,22027,'Remove Insignia'),
11212 (2,4,22810,'Opening - No Text'),
11213 (2,4,45927,'Summon Friend'),
11214 (2,4,61437,'Opening'),
11215 (2,6,81,'Dodge'),
11216 (2,6,196,'One-Handed Axes'),
11217 (2,6,197,'Two-Handed Axes'),
11218 (2,6,200,'Polearms'),
11219 (2,6,201,'One-Handed Swords'),
11220 (2,6,202,'Two-Handed Swords'),
11221 (2,6,203,'Unarmed'),
11222 (2,6,204,'Defense'),
11223 (2,6,522,'SPELLDEFENSE (DND)'),
11224 (2,6,669,'Language Orcish'),
11225 (2,6,674,'Dual Wield'),
11226 (2,6,750,'Plate Mail'),
11227 (2,6,1843,'Disarm'),
11228 (2,6,2382,'Generic'),
11229 (2,6,2479,'Honorless Target'),
11230 (2,6,3050,'Detect'),
11231 (2,6,3127,'Parry'),
11232 (2,6,3275,'Linen Bandage'),
11233 (2,6,3276,'Heavy Linen Bandage'),
11234 (2,6,3277,'Wool Bandage'),
11235 (2,6,3278,'Heavy Wool Bandage'),
11236 (2,6,3365,'Opening'),
11237 (2,6,6233,'Closing'),
11238 (2,6,6246,'Closing'),
11239 (2,6,6247,'Opening'),
11240 (2,6,6477,'Opening'),
11241 (2,6,6478,'Opening'),
11242 (2,6,6603,'Attack'),
11243 (2,6,7266,'Duel'),
11244 (2,6,7267,'Grovel'),
11245 (2,6,7355,'Stuck'),
11246 (2,6,7928,'Silk Bandage'),
11247 (2,6,7929,'Heavy Silk Bandage'),
11248 (2,6,7934,'Anti-Venom'),
11249 (2,6,8386,'Attacking'),
11250 (2,6,8737,'Mail'),
11251 (2,6,9077,'Leather'),
11252 (2,6,9078,'Cloth'),
11253 (2,6,9125,'Generic'),
11254 (2,6,10840,'Mageweave Bandage'),
11255 (2,6,10841,'Heavy Mageweave Bandage'),
11256 (2,6,10846,'First Aid'),
11257 (2,6,18629,'Runecloth Bandage'),
11258 (2,6,18630,'Heavy Runecloth Bandage'),
11259 (2,6,20572,'Blood Fury'),
11260 (2,6,20573,'Hardiness'),
11261 (2,6,20574,'Axe Specialization'),
11262 (2,6,21651,'Opening'),
11263 (2,6,21652,'Closing'),
11264 (2,6,22027,'Remove Insignia'),
11265 (2,6,22810,'Opening - No Text'),
11266 (2,6,33391,'Journeyman Riding'),
11267 (2,6,45462,'Plague Strike'),
11268 (2,6,45477,'Icy Touch'),
11269 (2,6,45902,'Blood Strike'),
11270 (2,6,45903,'Offensive State (DND)'),
11271 (2,6,45927,'Summon Friend'),
11272 (2,6,47541,'Death Coil'),
11273 (2,6,48266,'Blood Presence'),
11274 (2,6,49410,'Forceful Deflection'),
11275 (2,6,49576,'Death Grip'),
11276 (2,6,52665,'Sigil'),
11277 (2,6,54562,'Command'),
11278 (2,6,59879,'Blood Plague'),
11279 (2,6,59921,'Frost Fever'),
11280 (2,6,61437,'Opening'),
11281 (2,6,61455,'Runic Focus'),
11282 (2,7,81,'Dodge'),
11283 (2,7,107,'Block'),
11284 (2,7,198,'One-Handed Maces'),
11285 (2,7,203,'Unarmed'),
11286 (2,7,204,'Defense'),
11287 (2,7,227,'Staves'),
11288 (2,7,331,'Healing Wave'),
11289 (2,7,403,'Lightning Bolt'),
11290 (2,7,522,'SPELLDEFENSE (DND)'),
11291 (2,7,669,'Language Orcish'),
11292 (2,7,1843,'Disarm'),
11293 (2,7,2382,'Generic'),
11294 (2,7,2479,'Honorless Target'),
11295 (2,7,3050,'Detect'),
11296 (2,7,3365,'Opening'),
11297 (2,7,6233,'Closing'),
11298 (2,7,6246,'Closing'),
11299 (2,7,6247,'Opening'),
11300 (2,7,6477,'Opening'),
11301 (2,7,6478,'Opening'),
11302 (2,7,6603,'Attack'),
11303 (2,7,7266,'Duel'),
11304 (2,7,7267,'Grovel'),
11305 (2,7,7355,'Stuck'),
11306 (2,7,8386,'Attacking'),
11307 (2,7,9077,'Leather'),
11308 (2,7,9078,'Cloth'),
11309 (2,7,9116,'Shield'),
11310 (2,7,9125,'Generic'),
11311 (2,7,20573,'Hardiness'),
11312 (2,7,20574,'Axe Specialization'),
11313 (2,7,21563,'Command'),
11314 (2,7,21651,'Opening'),
11315 (2,7,21652,'Closing'),
11316 (2,7,22027,'Remove Insignia'),
11317 (2,7,22810,'Opening - No Text'),
11318 (2,7,27763,'Totem'),
11319 (2,7,33697,'Blood Fury'),
11320 (2,7,45927,'Summon Friend'),
11321 (2,7,61437,'Opening'),
11322 (2,9,81,'Dodge'),
11323 (2,9,203,'Unarmed'),
11324 (2,9,204,'Defense'),
11325 (2,9,227,'Staves'),
11326 (2,9,522,'SPELLDEFENSE (DND)'),
11327 (2,9,669,'Language Orcish'),
11328 (2,9,686,'Shadow Bolt'),
11329 (2,9,687,'Demon Skin'),
11330 (2,9,1180,'Daggers'),
11331 (2,9,1843,'Disarm'),
11332 (2,9,2382,'Generic'),
11333 (2,9,2479,'Honorless Target'),
11334 (2,9,3050,'Detect'),
11335 (2,9,3365,'Opening'),
11336 (2,9,5009,'Wands'),
11337 (2,9,5019,'Shoot'),
11338 (2,9,6233,'Closing'),
11339 (2,9,6246,'Closing'),
11340 (2,9,6247,'Opening'),
11341 (2,9,6477,'Opening'),
11342 (2,9,6478,'Opening'),
11343 (2,9,6603,'Attack'),
11344 (2,9,7266,'Duel'),
11345 (2,9,7267,'Grovel'),
11346 (2,9,7355,'Stuck'),
11347 (2,9,8386,'Attacking'),
11348 (2,9,9078,'Cloth'),
11349 (2,9,9125,'Generic'),
11350 (2,9,20573,'Hardiness'),
11351 (2,9,20574,'Axe Specialization'),
11352 (2,9,20575,'Command'),
11353 (2,9,21651,'Opening'),
11354 (2,9,21652,'Closing'),
11355 (2,9,22027,'Remove Insignia'),
11356 (2,9,22810,'Opening - No Text'),
11357 (2,9,33702,'Blood Fury'),
11358 (2,9,45927,'Summon Friend'),
11359 (2,9,58284,'Chaos Bolt Passive'),
11360 (2,9,61437,'Opening'),
11361 (3,1,78,'Heroic Strike'),
11362 (3,1,81,'Dodge'),
11363 (3,1,107,'Block'),
11364 (3,1,196,'One-Handed Axes'),
11365 (3,1,197,'Two-Handed Axes'),
11366 (3,1,198,'One-Handed Maces'),
11367 (3,1,203,'Unarmed'),
11368 (3,1,204,'Defense'),
11369 (3,1,522,'SPELLDEFENSE (DND)'),
11370 (3,1,668,'Language Common'),
11371 (3,1,672,'Language Dwarven'),
11372 (3,1,1843,'Disarm'),
11373 (3,1,2382,'Generic'),
11374 (3,1,2457,'Battle Stance'),
11375 (3,1,2479,'Honorless Target'),
11376 (3,1,2481,'Find Treasure'),
11377 (3,1,3050,'Detect'),
11378 (3,1,3365,'Opening'),
11379 (3,1,5301,'Defensive State (DND)'),
11380 (3,1,6233,'Closing'),
11381 (3,1,6246,'Closing'),
11382 (3,1,6247,'Opening'),
11383 (3,1,6477,'Opening'),
11384 (3,1,6478,'Opening'),
11385 (3,1,6603,'Attack'),
11386 (3,1,7266,'Duel'),
11387 (3,1,7267,'Grovel'),
11388 (3,1,7355,'Stuck'),
11389 (3,1,8386,'Attacking'),
11390 (3,1,8737,'Mail'),
11391 (3,1,9077,'Leather'),
11392 (3,1,9078,'Cloth'),
11393 (3,1,9116,'Shield'),
11394 (3,1,9125,'Generic'),
11395 (3,1,20594,'Stoneform'),
11396 (3,1,20595,'Gun Specialization'),
11397 (3,1,20596,'Frost Resistance'),
11398 (3,1,21651,'Opening'),
11399 (3,1,21652,'Closing'),
11400 (3,1,22027,'Remove Insignia'),
11401 (3,1,22810,'Opening - No Text'),
11402 (3,1,32215,'Victorious State'),
11403 (3,1,45927,'Summon Friend'),
11404 (3,1,59224,'Mace Specialization'),
11405 (3,1,61437,'Opening'),
11406 (3,2,81,'Dodge'),
11407 (3,2,107,'Block'),
11408 (3,2,198,'One-Handed Maces'),
11409 (3,2,199,'Two-Handed Maces'),
11410 (3,2,203,'Unarmed'),
11411 (3,2,204,'Defense'),
11412 (3,2,522,'SPELLDEFENSE (DND)'),
11413 (3,2,635,'Holy Light'),
11414 (3,2,668,'Language Common'),
11415 (3,2,672,'Language Dwarven'),
11416 (3,2,1843,'Disarm'),
11417 (3,2,2382,'Generic'),
11418 (3,2,2479,'Honorless Target'),
11419 (3,2,2481,'Find Treasure'),
11420 (3,2,3050,'Detect'),
11421 (3,2,3365,'Opening'),
11422 (3,2,6233,'Closing'),
11423 (3,2,6246,'Closing'),
11424 (3,2,6247,'Opening'),
11425 (3,2,6477,'Opening'),
11426 (3,2,6478,'Opening'),
11427 (3,2,6603,'Attack'),
11428 (3,2,7266,'Duel'),
11429 (3,2,7267,'Grovel'),
11430 (3,2,7355,'Stuck'),
11431 (3,2,8386,'Attacking'),
11432 (3,2,8737,'Mail'),
11433 (3,2,9077,'Leather'),
11434 (3,2,9078,'Cloth'),
11435 (3,2,9116,'Shield'),
11436 (3,2,9125,'Generic'),
11437 (3,2,21084,'Seal of Righteousness'),
11438 (3,2,20594,'Stoneform'),
11439 (3,2,20595,'Gun Specialization'),
11440 (3,2,20596,'Frost Resistance'),
11441 (3,2,21651,'Opening'),
11442 (3,2,21652,'Closing'),
11443 (3,2,22027,'Remove Insignia'),
11444 (3,2,22810,'Opening - No Text'),
11445 (3,2,27762,'Libram'),
11446 (3,2,45927,'Summon Friend'),
11447 (3,2,59224,'Mace Specialization'),
11448 (3,2,61437,'Opening'),
11449 (3,3,75,'Auto Shot'),
11450 (3,3,81,'Dodge'),
11451 (3,3,196,'One-Handed Axes'),
11452 (3,3,197,'Two-Handed Axes'),
11453 (3,3,203,'Unarmed'),
11454 (3,3,204,'Defense'),
11455 (3,3,266,'Guns'),
11456 (3,3,522,'SPELLDEFENSE (DND)'),
11457 (3,3,668,'Language Common'),
11458 (3,3,672,'Language Dwarven'),
11459 (3,3,1843,'Disarm'),
11460 (3,3,2382,'Generic'),
11461 (3,3,2479,'Honorless Target'),
11462 (3,3,2481,'Find Treasure'),
11463 (3,3,2973,'Raptor Strike'),
11464 (3,3,3050,'Detect'),
11465 (3,3,3365,'Opening'),
11466 (3,3,6233,'Closing'),
11467 (3,3,6246,'Closing'),
11468 (3,3,6247,'Opening'),
11469 (3,3,6477,'Opening'),
11470 (3,3,6478,'Opening'),
11471 (3,3,6603,'Attack'),
11472 (3,3,7266,'Duel'),
11473 (3,3,7267,'Grovel'),
11474 (3,3,7355,'Stuck'),
11475 (3,3,8386,'Attacking'),
11476 (3,3,9077,'Leather'),
11477 (3,3,9078,'Cloth'),
11478 (3,3,9125,'Generic'),
11479 (3,3,13358,'Defensive State (DND)'),
11480 (3,3,20594,'Stoneform'),
11481 (3,3,20595,'Gun Specialization'),
11482 (3,3,20596,'Frost Resistance'),
11483 (3,3,21651,'Opening'),
11484 (3,3,21652,'Closing'),
11485 (3,3,22027,'Remove Insignia'),
11486 (3,3,22810,'Opening - No Text'),
11487 (3,3,24949,'Defensive State 2 (DND)'),
11488 (3,3,34082,'Advantaged State (DND)'),
11489 (3,3,45927,'Summon Friend'),
11490 (3,3,59224,'Mace Specialization'),
11491 (3,3,61437,'Opening'),
11492 (3,4,81,'Dodge'),
11493 (3,4,203,'Unarmed'),
11494 (3,4,204,'Defense'),
11495 (3,4,522,'SPELLDEFENSE (DND)'),
11496 (3,4,668,'Language Common'),
11497 (3,4,672,'Language Dwarven'),
11498 (3,4,674,'Dual Wield'),
11499 (3,4,1180,'Daggers'),
11500 (3,4,1752,'Sinister Strike'),
11501 (3,4,1843,'Disarm'),
11502 (3,4,2098,'Eviscerate'),
11503 (3,4,2382,'Generic'),
11504 (3,4,2479,'Honorless Target'),
11505 (3,4,2481,'Find Treasure'),
11506 (3,4,2567,'Thrown'),
11507 (3,4,2764,'Throw'),
11508 (3,4,3050,'Detect'),
11509 (3,4,3365,'Opening'),
11510 (3,4,6233,'Closing'),
11511 (3,4,6246,'Closing'),
11512 (3,4,6247,'Opening'),
11513 (3,4,6477,'Opening'),
11514 (3,4,6478,'Opening'),
11515 (3,4,6603,'Attack'),
11516 (3,4,7266,'Duel'),
11517 (3,4,7267,'Grovel'),
11518 (3,4,7355,'Stuck'),
11519 (3,4,8386,'Attacking'),
11520 (3,4,9077,'Leather'),
11521 (3,4,9078,'Cloth'),
11522 (3,4,9125,'Generic'),
11523 (3,4,16092,'Defensive State (DND)'),
11524 (3,4,20594,'Stoneform'),
11525 (3,4,20595,'Gun Specialization'),
11526 (3,4,20596,'Frost Resistance'),
11527 (3,4,21184,'Rogue Passive (DND)'),
11528 (3,4,21651,'Opening'),
11529 (3,4,21652,'Closing'),
11530 (3,4,22027,'Remove Insignia'),
11531 (3,4,22810,'Opening - No Text'),
11532 (3,4,45927,'Summon Friend'),
11533 (3,4,59224,'Mace Specialization'),
11534 (3,4,61437,'Opening'),
11535 (3,5,81,'Dodge'),
11536 (3,5,198,'One-Handed Maces'),
11537 (3,5,203,'Unarmed'),
11538 (3,5,204,'Defense'),
11539 (3,5,227,'Staves'),
11540 (3,5,522,'SPELLDEFENSE (DND)'),
11541 (3,5,585,'Smite'),
11542 (3,5,668,'Language Common'),
11543 (3,5,672,'Language Dwarven'),
11544 (3,5,1843,'Disarm'),
11545 (3,5,2050,'Lesser Heal'),
11546 (3,5,2382,'Generic'),
11547 (3,5,2479,'Honorless Target'),
11548 (3,5,2481,'Find Treasure'),
11549 (3,5,3050,'Detect'),
11550 (3,5,3365,'Opening'),
11551 (3,5,5009,'Wands'),
11552 (3,5,5019,'Shoot'),
11553 (3,5,6233,'Closing'),
11554 (3,5,6246,'Closing'),
11555 (3,5,6247,'Opening'),
11556 (3,5,6477,'Opening'),
11557 (3,5,6478,'Opening'),
11558 (3,5,6603,'Attack'),
11559 (3,5,7266,'Duel'),
11560 (3,5,7267,'Grovel'),
11561 (3,5,7355,'Stuck'),
11562 (3,5,8386,'Attacking'),
11563 (3,5,9078,'Cloth'),
11564 (3,5,9125,'Generic'),
11565 (3,5,20594,'Stoneform'),
11566 (3,5,20595,'Gun Specialization'),
11567 (3,5,20596,'Frost Resistance'),
11568 (3,5,21651,'Opening'),
11569 (3,5,21652,'Closing'),
11570 (3,5,22027,'Remove Insignia'),
11571 (3,5,22810,'Opening - No Text'),
11572 (3,5,45927,'Summon Friend'),
11573 (3,5,59224,'Mace Specialization'),
11574 (3,5,61437,'Opening'),
11575 (3,6,81,'Dodge'),
11576 (3,6,196,'One-Handed Axes'),
11577 (3,6,197,'Two-Handed Axes'),
11578 (3,6,200,'Polearms'),
11579 (3,6,201,'One-Handed Swords'),
11580 (3,6,202,'Two-Handed Swords'),
11581 (3,6,203,'Unarmed'),
11582 (3,6,204,'Defense'),
11583 (3,6,522,'SPELLDEFENSE (DND)'),
11584 (3,6,668,'Language Common'),
11585 (3,6,672,'Language Dwarven'),
11586 (3,6,674,'Dual Wield'),
11587 (3,6,750,'Plate Mail'),
11588 (3,6,1843,'Disarm'),
11589 (3,6,2382,'Generic'),
11590 (3,6,2479,'Honorless Target'),
11591 (3,6,2481,'Find Treasure'),
11592 (3,6,3050,'Detect'),
11593 (3,6,3127,'Parry'),
11594 (3,6,3275,'Linen Bandage'),
11595 (3,6,3276,'Heavy Linen Bandage'),
11596 (3,6,3277,'Wool Bandage'),
11597 (3,6,3278,'Heavy Wool Bandage'),
11598 (3,6,3365,'Opening'),
11599 (3,6,6233,'Closing'),
11600 (3,6,6246,'Closing'),
11601 (3,6,6247,'Opening'),
11602 (3,6,6477,'Opening'),
11603 (3,6,6478,'Opening'),
11604 (3,6,6603,'Attack'),
11605 (3,6,7266,'Duel'),
11606 (3,6,7267,'Grovel'),
11607 (3,6,7355,'Stuck'),
11608 (3,6,7928,'Silk Bandage'),
11609 (3,6,7929,'Heavy Silk Bandage'),
11610 (3,6,7934,'Anti-Venom'),
11611 (3,6,8386,'Attacking'),
11612 (3,6,8737,'Mail'),
11613 (3,6,9077,'Leather'),
11614 (3,6,9078,'Cloth'),
11615 (3,6,9125,'Generic'),
11616 (3,6,10840,'Mageweave Bandage'),
11617 (3,6,10841,'Heavy Mageweave Bandage'),
11618 (3,6,10846,'First Aid'),
11619 (3,6,18629,'Runecloth Bandage'),
11620 (3,6,18630,'Heavy Runecloth Bandage'),
11621 (3,6,20594,'Stoneform'),
11622 (3,6,20595,'Gun Specialization'),
11623 (3,6,20596,'Frost Resistance'),
11624 (3,6,21651,'Opening'),
11625 (3,6,21652,'Closing'),
11626 (3,6,22027,'Remove Insignia'),
11627 (3,6,22810,'Opening - No Text'),
11628 (3,6,33391,'Journeyman Riding'),
11629 (3,6,45462,'Plague Strike'),
11630 (3,6,45477,'Icy Touch'),
11631 (3,6,45902,'Blood Strike'),
11632 (3,6,45903,'Offensive State (DND)'),
11633 (3,6,45927,'Summon Friend'),
11634 (3,6,47541,'Death Coil'),
11635 (3,6,48266,'Blood Presence'),
11636 (3,6,49410,'Forceful Deflection'),
11637 (3,6,49576,'Death Grip'),
11638 (3,6,52665,'Sigil'),
11639 (3,6,59224,'Mace Specialization'),
11640 (3,6,59879,'Blood Plague'),
11641 (3,6,59921,'Frost Fever'),
11642 (3,6,61437,'Opening'),
11643 (3,6,61455,'Runic Focus'),
11644 (4,1,78,'Heroic Strike'),
11645 (4,1,81,'Dodge'),
11646 (4,1,107,'Block'),
11647 (4,1,198,'One-Handed Maces'),
11648 (4,1,201,'One-Handed Swords'),
11649 (4,1,202,'Two-Handed Swords'),
11650 (4,1,203,'Unarmed'),
11651 (4,1,204,'Defense'),
11652 (4,1,522,'SPELLDEFENSE (DND)'),
11653 (4,1,668,'Language Common'),
11654 (4,1,671,'Language Darnassian'),
11655 (4,1,1180,'Daggers'),
11656 (4,1,1843,'Disarm'),
11657 (4,1,2382,'Generic'),
11658 (4,1,2457,'Battle Stance'),
11659 (4,1,2479,'Honorless Target'),
11660 (4,1,3050,'Detect'),
11661 (4,1,3365,'Opening'),
11662 (4,1,5301,'Defensive State (DND)'),
11663 (4,1,6233,'Closing'),
11664 (4,1,6246,'Closing'),
11665 (4,1,6247,'Opening'),
11666 (4,1,6477,'Opening'),
11667 (4,1,6478,'Opening'),
11668 (4,1,6603,'Attack'),
11669 (4,1,7266,'Duel'),
11670 (4,1,7267,'Grovel'),
11671 (4,1,7355,'Stuck'),
11672 (4,1,8386,'Attacking'),
11673 (4,1,8737,'Mail'),
11674 (4,1,9077,'Leather'),
11675 (4,1,9078,'Cloth'),
11676 (4,1,9116,'Shield'),
11677 (4,1,9125,'Generic'),
11678 (4,1,20582,'Quickness'),
11679 (4,1,20583,'Nature Resistance'),
11680 (4,1,20585,'Wisp Spirit'),
11681 (4,1,21651,'Opening'),
11682 (4,1,21652,'Closing'),
11683 (4,1,22027,'Remove Insignia'),
11684 (4,1,22810,'Opening - No Text'),
11685 (4,1,32215,'Victorious State'),
11686 (4,1,45927,'Summon Friend'),
11687 (4,1,58984,'Shadowmelt'),
11688 (4,1,61437,'Opening'),
11689 (4,3,75,'Auto Shot'),
11690 (4,3,81,'Dodge'),
11691 (4,3,197,'Two-Handed Axes'),
11692 (4,3,203,'Unarmed'),
11693 (4,3,204,'Defense'),
11694 (4,3,264,'Bows'),
11695 (4,3,522,'SPELLDEFENSE (DND)'),
11696 (4,3,668,'Language Common'),
11697 (4,3,671,'Language Darnassian'),
11698 (4,3,1180,'Daggers'),
11699 (4,3,1843,'Disarm'),
11700 (4,3,2382,'Generic'),
11701 (4,3,2479,'Honorless Target'),
11702 (4,3,2973,'Raptor Strike'),
11703 (4,3,3050,'Detect'),
11704 (4,3,3365,'Opening'),
11705 (4,3,6233,'Closing'),
11706 (4,3,6246,'Closing'),
11707 (4,3,6247,'Opening'),
11708 (4,3,6477,'Opening'),
11709 (4,3,6478,'Opening'),
11710 (4,3,6603,'Attack'),
11711 (4,3,7266,'Duel'),
11712 (4,3,7267,'Grovel'),
11713 (4,3,7355,'Stuck'),
11714 (4,3,8386,'Attacking'),
11715 (4,3,9077,'Leather'),
11716 (4,3,9078,'Cloth'),
11717 (4,3,9125,'Generic'),
11718 (4,3,13358,'Defensive State (DND)'),
11719 (4,3,20582,'Quickness'),
11720 (4,3,20583,'Nature Resistance'),
11721 (4,3,20585,'Wisp Spirit'),
11722 (4,3,21651,'Opening'),
11723 (4,3,21652,'Closing'),
11724 (4,3,22027,'Remove Insignia'),
11725 (4,3,22810,'Opening - No Text'),
11726 (4,3,24949,'Defensive State 2 (DND)'),
11727 (4,3,34082,'Advantaged State (DND)'),
11728 (4,3,45927,'Summon Friend'),
11729 (4,3,58984,'Shadowmelt'),
11730 (4,3,61437,'Opening'),
11731 (4,4,81,'Dodge'),
11732 (4,4,203,'Unarmed'),
11733 (4,4,204,'Defense'),
11734 (4,4,522,'SPELLDEFENSE (DND)'),
11735 (4,4,668,'Language Common'),
11736 (4,4,671,'Language Darnassian'),
11737 (4,4,674,'Dual Wield'),
11738 (4,4,1180,'Daggers'),
11739 (4,4,1752,'Sinister Strike'),
11740 (4,4,1843,'Disarm'),
11741 (4,4,2098,'Eviscerate'),
11742 (4,4,2382,'Generic'),
11743 (4,4,2479,'Honorless Target'),
11744 (4,4,2567,'Thrown'),
11745 (4,4,2764,'Throw'),
11746 (4,4,3050,'Detect'),
11747 (4,4,3365,'Opening'),
11748 (4,4,6233,'Closing'),
11749 (4,4,6246,'Closing'),
11750 (4,4,6247,'Opening'),
11751 (4,4,6477,'Opening'),
11752 (4,4,6478,'Opening'),
11753 (4,4,6603,'Attack'),
11754 (4,4,7266,'Duel'),
11755 (4,4,7267,'Grovel'),
11756 (4,4,7355,'Stuck'),
11757 (4,4,8386,'Attacking'),
11758 (4,4,9077,'Leather'),
11759 (4,4,9078,'Cloth'),
11760 (4,4,9125,'Generic'),
11761 (4,4,16092,'Defensive State (DND)'),
11762 (4,4,20582,'Quickness'),
11763 (4,4,20583,'Nature Resistance'),
11764 (4,4,20585,'Wisp Spirit'),
11765 (4,4,21184,'Rogue Passive (DND)'),
11766 (4,4,21651,'Opening'),
11767 (4,4,21652,'Closing'),
11768 (4,4,22027,'Remove Insignia'),
11769 (4,4,22810,'Opening - No Text'),
11770 (4,4,45927,'Summon Friend'),
11771 (4,4,58984,'Shadowmelt'),
11772 (4,4,61437,'Opening'),
11773 (4,5,81,'Dodge'),
11774 (4,5,198,'One-Handed Maces'),
11775 (4,5,203,'Unarmed'),
11776 (4,5,204,'Defense'),
11777 (4,5,227,'Staves'),
11778 (4,5,522,'SPELLDEFENSE (DND)'),
11779 (4,5,585,'Smite'),
11780 (4,5,668,'Language Common'),
11781 (4,5,671,'Language Darnassian'),
11782 (4,5,1843,'Disarm'),
11783 (4,5,2050,'Lesser Heal'),
11784 (4,5,2382,'Generic'),
11785 (4,5,2479,'Honorless Target'),
11786 (4,5,3050,'Detect'),
11787 (4,5,3365,'Opening'),
11788 (4,5,5009,'Wands'),
11789 (4,5,5019,'Shoot'),
11790 (4,5,6233,'Closing'),
11791 (4,5,6246,'Closing'),
11792 (4,5,6247,'Opening'),
11793 (4,5,6477,'Opening'),
11794 (4,5,6478,'Opening'),
11795 (4,5,6603,'Attack'),
11796 (4,5,7266,'Duel'),
11797 (4,5,7267,'Grovel'),
11798 (4,5,7355,'Stuck'),
11799 (4,5,8386,'Attacking'),
11800 (4,5,9078,'Cloth'),
11801 (4,5,9125,'Generic'),
11802 (4,5,20582,'Quickness'),
11803 (4,5,20583,'Nature Resistance'),
11804 (4,5,20585,'Wisp Spirit'),
11805 (4,5,21651,'Opening'),
11806 (4,5,21652,'Closing'),
11807 (4,5,22027,'Remove Insignia'),
11808 (4,5,22810,'Opening - No Text'),
11809 (4,5,45927,'Summon Friend'),
11810 (4,5,58984,'Shadowmelt'),
11811 (4,5,61437,'Opening'),
11812 (4,6,81,'Dodge'),
11813 (4,6,196,'One-Handed Axes'),
11814 (4,6,197,'Two-Handed Axes'),
11815 (4,6,200,'Polearms'),
11816 (4,6,201,'One-Handed Swords'),
11817 (4,6,202,'Two-Handed Swords'),
11818 (4,6,203,'Unarmed'),
11819 (4,6,204,'Defense'),
11820 (4,6,522,'SPELLDEFENSE (DND)'),
11821 (4,6,668,'Language Common'),
11822 (4,6,671,'Language Darnassian'),
11823 (4,6,674,'Dual Wield'),
11824 (4,6,750,'Plate Mail'),
11825 (4,6,1843,'Disarm'),
11826 (4,6,2382,'Generic'),
11827 (4,6,2479,'Honorless Target'),
11828 (4,6,3050,'Detect'),
11829 (4,6,3127,'Parry'),
11830 (4,6,3275,'Linen Bandage'),
11831 (4,6,3276,'Heavy Linen Bandage'),
11832 (4,6,3277,'Wool Bandage'),
11833 (4,6,3278,'Heavy Wool Bandage'),
11834 (4,6,3365,'Opening'),
11835 (4,6,6233,'Closing'),
11836 (4,6,6246,'Closing'),
11837 (4,6,6247,'Opening'),
11838 (4,6,6477,'Opening'),
11839 (4,6,6478,'Opening'),
11840 (4,6,6603,'Attack'),
11841 (4,6,7266,'Duel'),
11842 (4,6,7267,'Grovel'),
11843 (4,6,7355,'Stuck'),
11844 (4,6,7928,'Silk Bandage'),
11845 (4,6,7929,'Heavy Silk Bandage'),
11846 (4,6,7934,'Anti-Venom'),
11847 (4,6,8386,'Attacking'),
11848 (4,6,8737,'Mail'),
11849 (4,6,9077,'Leather'),
11850 (4,6,9078,'Cloth'),
11851 (4,6,9125,'Generic'),
11852 (4,6,10840,'Mageweave Bandage'),
11853 (4,6,10841,'Heavy Mageweave Bandage'),
11854 (4,6,10846,'First Aid'),
11855 (4,6,18629,'Runecloth Bandage'),
11856 (4,6,18630,'Heavy Runecloth Bandage'),
11857 (4,6,20582,'Quickness'),
11858 (4,6,20583,'Nature Resistance'),
11859 (4,6,20585,'Wisp Spirit'),
11860 (4,6,21651,'Opening'),
11861 (4,6,21652,'Closing'),
11862 (4,6,22027,'Remove Insignia'),
11863 (4,6,22810,'Opening - No Text'),
11864 (4,6,33391,'Journeyman Riding'),
11865 (4,6,45462,'Plague Strike'),
11866 (4,6,45477,'Icy Touch'),
11867 (4,6,45902,'Blood Strike'),
11868 (4,6,45903,'Offensive State (DND)'),
11869 (4,6,45927,'Summon Friend'),
11870 (4,6,47541,'Death Coil'),
11871 (4,6,48266,'Blood Presence'),
11872 (4,6,49410,'Forceful Deflection'),
11873 (4,6,49576,'Death Grip'),
11874 (4,6,52665,'Sigil'),
11875 (4,6,58984,'Shadowmeld'),
11876 (4,6,59879,'Blood Plague'),
11877 (4,6,59921,'Frost Fever'),
11878 (4,6,61437,'Opening'),
11879 (4,6,61455,'Runic Focus'),
11880 (4,11,81,'Dodge'),
11881 (4,11,203,'Unarmed'),
11882 (4,11,204,'Defense'),
11883 (4,11,227,'Staves'),
11884 (4,11,522,'SPELLDEFENSE (DND)'),
11885 (4,11,668,'Language Common'),
11886 (4,11,671,'Language Darnassian'),
11887 (4,11,1180,'Daggers'),
11888 (4,11,1843,'Disarm'),
11889 (4,11,2382,'Generic'),
11890 (4,11,2479,'Honorless Target'),
11891 (4,11,3050,'Detect'),
11892 (4,11,3365,'Opening'),
11893 (4,11,5176,'Wrath'),
11894 (4,11,5185,'Healing Touch'),
11895 (4,11,6233,'Closing'),
11896 (4,11,6246,'Closing'),
11897 (4,11,6247,'Opening'),
11898 (4,11,6477,'Opening'),
11899 (4,11,6478,'Opening'),
11900 (4,11,6603,'Attack'),
11901 (4,11,7266,'Duel'),
11902 (4,11,7267,'Grovel'),
11903 (4,11,7355,'Stuck'),
11904 (4,11,8386,'Attacking'),
11905 (4,11,9077,'Leather'),
11906 (4,11,9078,'Cloth'),
11907 (4,11,9125,'Generic'),
11908 (4,11,20582,'Quickness'),
11909 (4,11,20583,'Nature Resistance'),
11910 (4,11,20585,'Wisp Spirit'),
11911 (4,11,21651,'Opening'),
11912 (4,11,21652,'Closing'),
11913 (4,11,22027,'Remove Insignia'),
11914 (4,11,22810,'Opening - No Text'),
11915 (4,11,27764,'Fetish'),
11916 (4,11,45927,'Summon Friend'),
11917 (4,11,58984,'Shadowmelt'),
11918 (4,11,61437,'Opening'),
11919 (5,1,78,'Heroic Strike'),
11920 (5,1,81,'Dodge'),
11921 (5,1,107,'Block'),
11922 (5,1,201,'One-Handed Swords'),
11923 (5,1,202,'Two-Handed Swords'),
11924 (5,1,203,'Unarmed'),
11925 (5,1,204,'Defense'),
11926 (5,1,522,'SPELLDEFENSE (DND)'),
11927 (5,1,669,'Language Orcish'),
11928 (5,1,1180,'Daggers'),
11929 (5,1,1843,'Disarm'),
11930 (5,1,2382,'Generic'),
11931 (5,1,2457,'Battle Stance'),
11932 (5,1,2479,'Honorless Target'),
11933 (5,1,3050,'Detect'),
11934 (5,1,3365,'Opening'),
11935 (5,1,5227,'Underwater Breathing'),
11936 (5,1,5301,'Defensive State (DND)'),
11937 (5,1,6233,'Closing'),
11938 (5,1,6246,'Closing'),
11939 (5,1,6247,'Opening'),
11940 (5,1,6477,'Opening'),
11941 (5,1,6478,'Opening'),
11942 (5,1,6603,'Attack'),
11943 (5,1,7266,'Duel'),
11944 (5,1,7267,'Grovel'),
11945 (5,1,7355,'Stuck'),
11946 (5,1,7744,'Will of the Forsaken'),
11947 (5,1,8386,'Attacking'),
11948 (5,1,8737,'Mail'),
11949 (5,1,9077,'Leather'),
11950 (5,1,9078,'Cloth'),
11951 (5,1,9116,'Shield'),
11952 (5,1,9125,'Generic'),
11953 (5,1,17737,'Language Gutterspeak'),
11954 (5,1,20577,'Cannibalize'),
11955 (5,1,20579,'Shadow Resistance'),
11956 (5,1,21651,'Opening'),
11957 (5,1,21652,'Closing'),
11958 (5,1,22027,'Remove Insignia'),
11959 (5,1,22810,'Opening - No Text'),
11960 (5,1,32215,'Victorious State'),
11961 (5,1,45927,'Summon Friend'),
11962 (5,1,61437,'Opening'),
11963 (5,4,81,'Dodge'),
11964 (5,4,203,'Unarmed'),
11965 (5,4,204,'Defense'),
11966 (5,4,522,'SPELLDEFENSE (DND)'),
11967 (5,4,669,'Language Orcish'),
11968 (5,4,674,'Dual Wield'),
11969 (5,4,1180,'Daggers'),
11970 (5,4,1752,'Sinister Strike'),
11971 (5,4,1843,'Disarm'),
11972 (5,4,2098,'Eviscerate'),
11973 (5,4,2382,'Generic'),
11974 (5,4,2479,'Honorless Target'),
11975 (5,4,2567,'Thrown'),
11976 (5,4,2764,'Throw'),
11977 (5,4,3050,'Detect'),
11978 (5,4,3365,'Opening'),
11979 (5,4,5227,'Underwater Breathing'),
11980 (5,4,6233,'Closing'),
11981 (5,4,6246,'Closing'),
11982 (5,4,6247,'Opening'),
11983 (5,4,6477,'Opening'),
11984 (5,4,6478,'Opening'),
11985 (5,4,6603,'Attack'),
11986 (5,4,7266,'Duel'),
11987 (5,4,7267,'Grovel'),
11988 (5,4,7355,'Stuck'),
11989 (5,4,7744,'Will of the Forsaken'),
11990 (5,4,8386,'Attacking'),
11991 (5,4,9077,'Leather'),
11992 (5,4,9078,'Cloth'),
11993 (5,4,9125,'Generic'),
11994 (5,4,16092,'Defensive State (DND)'),
11995 (5,4,17737,'Language Gutterspeak'),
11996 (5,4,20577,'Cannibalize'),
11997 (5,4,20579,'Shadow Resistance'),
11998 (5,4,21184,'Rogue Passive (DND)'),
11999 (5,4,21651,'Opening'),
12000 (5,4,21652,'Closing'),
12001 (5,4,22027,'Remove Insignia'),
12002 (5,4,22810,'Opening - No Text'),
12003 (5,4,45927,'Summon Friend'),
12004 (5,4,61437,'Opening'),
12005 (5,5,81,'Dodge'),
12006 (5,5,198,'One-Handed Maces'),
12007 (5,5,203,'Unarmed'),
12008 (5,5,204,'Defense'),
12009 (5,5,227,'Staves'),
12010 (5,5,522,'SPELLDEFENSE (DND)'),
12011 (5,5,585,'Smite'),
12012 (5,5,669,'Language Orcish'),
12013 (5,5,1843,'Disarm'),
12014 (5,5,2050,'Lesser Heal'),
12015 (5,5,2382,'Generic'),
12016 (5,5,2479,'Honorless Target'),
12017 (5,5,3050,'Detect'),
12018 (5,5,3365,'Opening'),
12019 (5,5,5009,'Wands'),
12020 (5,5,5019,'Shoot'),
12021 (5,5,5227,'Underwater Breathing'),
12022 (5,5,6233,'Closing'),
12023 (5,5,6246,'Closing'),
12024 (5,5,6247,'Opening'),
12025 (5,5,6477,'Opening'),
12026 (5,5,6478,'Opening'),
12027 (5,5,6603,'Attack'),
12028 (5,5,7266,'Duel'),
12029 (5,5,7267,'Grovel'),
12030 (5,5,7355,'Stuck'),
12031 (5,5,7744,'Will of the Forsaken'),
12032 (5,5,8386,'Attacking'),
12033 (5,5,9078,'Cloth'),
12034 (5,5,9125,'Generic'),
12035 (5,5,17737,'Language Gutterspeak'),
12036 (5,5,20577,'Cannibalize'),
12037 (5,5,20579,'Shadow Resistance'),
12038 (5,5,21651,'Opening'),
12039 (5,5,21652,'Closing'),
12040 (5,5,22027,'Remove Insignia'),
12041 (5,5,22810,'Opening - No Text'),
12042 (5,5,45927,'Summon Friend'),
12043 (5,5,61437,'Opening'),
12044 (5,6,81,'Dodge'),
12045 (5,6,196,'One-Handed Axes'),
12046 (5,6,197,'Two-Handed Axes'),
12047 (5,6,200,'Polearms'),
12048 (5,6,201,'One-Handed Swords'),
12049 (5,6,202,'Two-Handed Swords'),
12050 (5,6,203,'Unarmed'),
12051 (5,6,204,'Defense'),
12052 (5,6,522,'SPELLDEFENSE (DND)'),
12053 (5,6,669,'Language Orcish'),
12054 (5,6,674,'Dual Wield'),
12055 (5,6,750,'Plate Mail'),
12056 (5,6,1843,'Disarm'),
12057 (5,6,2382,'Generic'),
12058 (5,6,2479,'Honorless Target'),
12059 (5,6,3050,'Detect'),
12060 (5,6,3127,'Parry'),
12061 (5,6,3275,'Linen Bandage'),
12062 (5,6,3276,'Heavy Linen Bandage'),
12063 (5,6,3277,'Wool Bandage'),
12064 (5,6,3278,'Heavy Wool Bandage'),
12065 (5,6,3365,'Opening'),
12066 (5,6,5227,'Underwater Breathing'),
12067 (5,6,6233,'Closing'),
12068 (5,6,6246,'Closing'),
12069 (5,6,6247,'Opening'),
12070 (5,6,6477,'Opening'),
12071 (5,6,6478,'Opening'),
12072 (5,6,6603,'Attack'),
12073 (5,6,7266,'Duel'),
12074 (5,6,7267,'Grovel'),
12075 (5,6,7355,'Stuck'),
12076 (5,6,7744,'Will of the Forsaken'),
12077 (5,6,7928,'Silk Bandage'),
12078 (5,6,7929,'Heavy Silk Bandage'),
12079 (5,6,7934,'Anti-Venom'),
12080 (5,6,8386,'Attacking'),
12081 (5,6,8737,'Mail'),
12082 (5,6,9077,'Leather'),
12083 (5,6,9078,'Cloth'),
12084 (5,6,9125,'Generic'),
12085 (5,6,10840,'Mageweave Bandage'),
12086 (5,6,10841,'Heavy Mageweave Bandage'),
12087 (5,6,10846,'First Aid'),
12088 (5,6,17737,'Language Gutterspeak'),
12089 (5,6,18629,'Runecloth Bandage'),
12090 (5,6,18630,'Heavy Runecloth Bandage'),
12091 (5,6,20577,'Cannibalize'),
12092 (5,6,20579,'Shadow Resistance'),
12093 (5,6,21651,'Opening'),
12094 (5,6,21652,'Closing'),
12095 (5,6,22027,'Remove Insignia'),
12096 (5,6,22810,'Opening - No Text'),
12097 (5,6,33391,'Journeyman Riding'),
12098 (5,6,45462,'Plague Strike'),
12099 (5,6,45477,'Icy Touch'),
12100 (5,6,45902,'Blood Strike'),
12101 (5,6,45903,'Offensive State (DND)'),
12102 (5,6,45927,'Summon Friend'),
12103 (5,6,47541,'Death Coil'),
12104 (5,6,48266,'Blood Presence'),
12105 (5,6,49410,'Forceful Deflection'),
12106 (5,6,49576,'Death Grip'),
12107 (5,6,52665,'Sigil'),
12108 (5,6,59879,'Blood Plague'),
12109 (5,6,59921,'Frost Fever'),
12110 (5,6,61437,'Opening'),
12111 (5,6,61455,'Runic Focus'),
12112 (5,8,81,'Dodge'),
12113 (5,8,133,'Fireball'),
12114 (5,8,168,'Frost Armor'),
12115 (5,8,203,'Unarmed'),
12116 (5,8,204,'Defense'),
12117 (5,8,227,'Staves'),
12118 (5,8,522,'SPELLDEFENSE (DND)'),
12119 (5,8,669,'Language Orcish'),
12120 (5,8,1843,'Disarm'),
12121 (5,8,2382,'Generic'),
12122 (5,8,2479,'Honorless Target'),
12123 (5,8,3050,'Detect'),
12124 (5,8,3365,'Opening'),
12125 (5,8,5009,'Wands'),
12126 (5,8,5019,'Shoot'),
12127 (5,8,5227,'Underwater Breathing'),
12128 (5,8,6233,'Closing'),
12129 (5,8,6246,'Closing'),
12130 (5,8,6247,'Opening'),
12131 (5,8,6477,'Opening'),
12132 (5,8,6478,'Opening'),
12133 (5,8,6603,'Attack'),
12134 (5,8,7266,'Duel'),
12135 (5,8,7267,'Grovel'),
12136 (5,8,7355,'Stuck'),
12137 (5,8,7744,'Will of the Forsaken'),
12138 (5,8,8386,'Attacking'),
12139 (5,8,9078,'Cloth'),
12140 (5,8,9125,'Generic'),
12141 (5,8,17737,'Language Gutterspeak'),
12142 (5,8,20577,'Cannibalize'),
12143 (5,8,20579,'Shadow Resistance'),
12144 (5,8,21651,'Opening'),
12145 (5,8,21652,'Closing'),
12146 (5,8,22027,'Remove Insignia'),
12147 (5,8,22810,'Opening - No Text'),
12148 (5,8,45927,'Summon Friend'),
12149 (5,8,61437,'Opening'),
12150 (5,9,81,'Dodge'),
12151 (5,9,203,'Unarmed'),
12152 (5,9,204,'Defense'),
12153 (5,9,227,'Staves'),
12154 (5,9,522,'SPELLDEFENSE (DND)'),
12155 (5,9,669,'Language Orcish'),
12156 (5,9,686,'Shadow Bolt'),
12157 (5,9,687,'Demon Skin'),
12158 (5,9,1180,'Daggers'),
12159 (5,9,1843,'Disarm'),
12160 (5,9,2382,'Generic'),
12161 (5,9,2479,'Honorless Target'),
12162 (5,9,3050,'Detect'),
12163 (5,9,3365,'Opening'),
12164 (5,9,5009,'Wands'),
12165 (5,9,5019,'Shoot'),
12166 (5,9,5227,'Underwater Breathing'),
12167 (5,9,6233,'Closing'),
12168 (5,9,6246,'Closing'),
12169 (5,9,6247,'Opening'),
12170 (5,9,6477,'Opening'),
12171 (5,9,6478,'Opening'),
12172 (5,9,6603,'Attack'),
12173 (5,9,7266,'Duel'),
12174 (5,9,7267,'Grovel'),
12175 (5,9,7355,'Stuck'),
12176 (5,9,7744,'Will of the Forsaken'),
12177 (5,9,8386,'Attacking'),
12178 (5,9,9078,'Cloth'),
12179 (5,9,9125,'Generic'),
12180 (5,9,17737,'Language Gutterspeak'),
12181 (5,9,20577,'Cannibalize'),
12182 (5,9,20579,'Shadow Resistance'),
12183 (5,9,21651,'Opening'),
12184 (5,9,21652,'Closing'),
12185 (5,9,22027,'Remove Insignia'),
12186 (5,9,22810,'Opening - No Text'),
12187 (5,9,45927,'Summon Friend'),
12188 (5,9,58284,'Chaos Bolt Passive'),
12189 (5,9,61437,'Opening'),
12190 (6,1,78,'Heroic Strike'),
12191 (6,1,81,'Dodge'),
12192 (6,1,107,'Block'),
12193 (6,1,196,'One-Handed Axes'),
12194 (6,1,198,'One-Handed Maces'),
12195 (6,1,199,'Two-Handed Maces'),
12196 (6,1,203,'Unarmed'),
12197 (6,1,204,'Defense'),
12198 (6,1,522,'SPELLDEFENSE (DND)'),
12199 (6,1,669,'Language Orcish'),
12200 (6,1,670,'Language Taurahe'),
12201 (6,1,1843,'Disarm'),
12202 (6,1,2382,'Generic'),
12203 (6,1,2457,'Battle Stance'),
12204 (6,1,2479,'Honorless Target'),
12205 (6,1,3050,'Detect'),
12206 (6,1,3365,'Opening'),
12207 (6,1,5301,'Defensive State (DND)'),
12208 (6,1,6233,'Closing'),
12209 (6,1,6246,'Closing'),
12210 (6,1,6247,'Opening'),
12211 (6,1,6477,'Opening'),
12212 (6,1,6478,'Opening'),
12213 (6,1,6603,'Attack'),
12214 (6,1,7266,'Duel'),
12215 (6,1,7267,'Grovel'),
12216 (6,1,7355,'Stuck'),
12217 (6,1,8386,'Attacking'),
12218 (6,1,8737,'Mail'),
12219 (6,1,9077,'Leather'),
12220 (6,1,9078,'Cloth'),
12221 (6,1,9116,'Shield'),
12222 (6,1,9125,'Generic'),
12223 (6,1,20549,'War Stomp'),
12224 (6,1,20550,'Endurance'),
12225 (6,1,20551,'Nature Resistance'),
12226 (6,1,20552,'Cultivation'),
12227 (6,1,21651,'Opening'),
12228 (6,1,21652,'Closing'),
12229 (6,1,22027,'Remove Insignia'),
12230 (6,1,22810,'Opening - No Text'),
12231 (6,1,32215,'Victorious State'),
12232 (6,1,45927,'Summon Friend'),
12233 (6,1,61437,'Opening'),
12234 (6,3,75,'Auto Shot'),
12235 (6,3,81,'Dodge'),
12236 (6,3,196,'One-Handed Axes'),
12237 (6,3,197,'Two-Handed Axes'),
12238 (6,3,203,'Unarmed'),
12239 (6,3,204,'Defense'),
12240 (6,3,266,'Guns'),
12241 (6,3,522,'SPELLDEFENSE (DND)'),
12242 (6,3,669,'Language Orcish'),
12243 (6,3,670,'Language Taurahe'),
12244 (6,3,1843,'Disarm'),
12245 (6,3,2382,'Generic'),
12246 (6,3,2479,'Honorless Target'),
12247 (6,3,2973,'Raptor Strike'),
12248 (6,3,3050,'Detect'),
12249 (6,3,3365,'Opening'),
12250 (6,3,6233,'Closing'),
12251 (6,3,6246,'Closing'),
12252 (6,3,6247,'Opening'),
12253 (6,3,6477,'Opening'),
12254 (6,3,6478,'Opening'),
12255 (6,3,6603,'Attack'),
12256 (6,3,7266,'Duel'),
12257 (6,3,7267,'Grovel'),
12258 (6,3,7355,'Stuck'),
12259 (6,3,8386,'Attacking'),
12260 (6,3,9077,'Leather'),
12261 (6,3,9078,'Cloth'),
12262 (6,3,9125,'Generic'),
12263 (6,3,13358,'Defensive State (DND)'),
12264 (6,3,20549,'War Stomp'),
12265 (6,3,20550,'Endurance'),
12266 (6,3,20551,'Nature Resistance'),
12267 (6,3,20552,'Cultivation'),
12268 (6,3,21651,'Opening'),
12269 (6,3,21652,'Closing'),
12270 (6,3,22027,'Remove Insignia'),
12271 (6,3,22810,'Opening - No Text'),
12272 (6,3,24949,'Defensive State 2 (DND)'),
12273 (6,3,34082,'Advantaged State (DND)'),
12274 (6,3,45927,'Summon Friend'),
12275 (6,3,61437,'Opening'),
12276 (6,6,81,'Dodge'),
12277 (6,6,196,'One-Handed Axes'),
12278 (6,6,197,'Two-Handed Axes'),
12279 (6,6,200,'Polearms'),
12280 (6,6,201,'One-Handed Swords'),
12281 (6,6,202,'Two-Handed Swords'),
12282 (6,6,203,'Unarmed'),
12283 (6,6,204,'Defense'),
12284 (6,6,522,'SPELLDEFENSE (DND)'),
12285 (6,6,669,'Language Orcish'),
12286 (6,6,670,'Language Taurahe'),
12287 (6,6,674,'Dual Wield'),
12288 (6,6,750,'Plate Mail'),
12289 (6,6,1843,'Disarm'),
12290 (6,6,2382,'Generic'),
12291 (6,6,2479,'Honorless Target'),
12292 (6,6,3050,'Detect'),
12293 (6,6,3127,'Parry'),
12294 (6,6,3275,'Linen Bandage'),
12295 (6,6,3276,'Heavy Linen Bandage'),
12296 (6,6,3277,'Wool Bandage'),
12297 (6,6,3278,'Heavy Wool Bandage'),
12298 (6,6,3365,'Opening'),
12299 (6,6,6233,'Closing'),
12300 (6,6,6246,'Closing'),
12301 (6,6,6247,'Opening'),
12302 (6,6,6477,'Opening'),
12303 (6,6,6478,'Opening'),
12304 (6,6,6603,'Attack'),
12305 (6,6,7266,'Duel'),
12306 (6,6,7267,'Grovel'),
12307 (6,6,7355,'Stuck'),
12308 (6,6,7928,'Silk Bandage'),
12309 (6,6,7929,'Heavy Silk Bandage'),
12310 (6,6,7934,'Anti-Venom'),
12311 (6,6,8386,'Attacking'),
12312 (6,6,8737,'Mail'),
12313 (6,6,9077,'Leather'),
12314 (6,6,9078,'Cloth'),
12315 (6,6,9125,'Generic'),
12316 (6,6,10840,'Mageweave Bandage'),
12317 (6,6,10841,'Heavy Mageweave Bandage'),
12318 (6,6,10846,'First Aid'),
12319 (6,6,18629,'Runecloth Bandage'),
12320 (6,6,18630,'Heavy Runecloth Bandage'),
12321 (6,6,20549,'War Stomp'),
12322 (6,6,20550,'Endurance'),
12323 (6,6,20551,'Nature Resistance'),
12324 (6,6,20552,'Cultivation'),
12325 (6,6,21651,'Opening'),
12326 (6,6,21652,'Closing'),
12327 (6,6,22027,'Remove Insignia'),
12328 (6,6,22810,'Opening - No Text'),
12329 (6,6,33391,'Journeyman Riding'),
12330 (6,6,45462,'Plague Strike'),
12331 (6,6,45477,'Icy Touch'),
12332 (6,6,45902,'Blood Strike'),
12333 (6,6,45903,'Offensive State (DND)'),
12334 (6,6,45927,'Summon Friend'),
12335 (6,6,47541,'Death Coil'),
12336 (6,6,48266,'Blood Presence'),
12337 (6,6,49410,'Forceful Deflection'),
12338 (6,6,49576,'Death Grip'),
12339 (6,6,52665,'Sigil'),
12340 (6,6,59879,'Blood Plague'),
12341 (6,6,59921,'Frost Fever'),
12342 (6,6,61437,'Opening'),
12343 (6,6,61455,'Runic Focus'),
12344 (6,7,81,'Dodge'),
12345 (6,7,107,'Block'),
12346 (6,7,198,'One-Handed Maces'),
12347 (6,7,203,'Unarmed'),
12348 (6,7,204,'Defense'),
12349 (6,7,227,'Staves'),
12350 (6,7,331,'Healing Wave'),
12351 (6,7,403,'Lightning Bolt'),
12352 (6,7,522,'SPELLDEFENSE (DND)'),
12353 (6,7,669,'Language Orcish'),
12354 (6,7,670,'Language Taurahe'),
12355 (6,7,1843,'Disarm'),
12356 (6,7,2382,'Generic'),
12357 (6,7,2479,'Honorless Target'),
12358 (6,7,3050,'Detect'),
12359 (6,7,3365,'Opening'),
12360 (6,7,6233,'Closing'),
12361 (6,7,6246,'Closing'),
12362 (6,7,6247,'Opening'),
12363 (6,7,6477,'Opening'),
12364 (6,7,6478,'Opening'),
12365 (6,7,6603,'Attack'),
12366 (6,7,7266,'Duel'),
12367 (6,7,7267,'Grovel'),
12368 (6,7,7355,'Stuck'),
12369 (6,7,8386,'Attacking'),
12370 (6,7,9077,'Leather'),
12371 (6,7,9078,'Cloth'),
12372 (6,7,9116,'Shield'),
12373 (6,7,9125,'Generic'),
12374 (6,7,20549,'War Stomp'),
12375 (6,7,20550,'Endurance'),
12376 (6,7,20551,'Nature Resistance'),
12377 (6,7,20552,'Cultivation'),
12378 (6,7,21651,'Opening'),
12379 (6,7,21652,'Closing'),
12380 (6,7,22027,'Remove Insignia'),
12381 (6,7,22810,'Opening - No Text'),
12382 (6,7,27763,'Totem'),
12383 (6,7,45927,'Summon Friend'),
12384 (6,7,61437,'Opening'),
12385 (6,11,81,'Dodge'),
12386 (6,11,198,'One-Handed Maces'),
12387 (6,11,203,'Unarmed'),
12388 (6,11,204,'Defense'),
12389 (6,11,227,'Staves'),
12390 (6,11,522,'SPELLDEFENSE (DND)'),
12391 (6,11,669,'Language Orcish'),
12392 (6,11,670,'Language Taurahe'),
12393 (6,11,1843,'Disarm'),
12394 (6,11,2382,'Generic'),
12395 (6,11,2479,'Honorless Target'),
12396 (6,11,3050,'Detect'),
12397 (6,11,3365,'Opening'),
12398 (6,11,5176,'Wrath'),
12399 (6,11,5185,'Healing Touch'),
12400 (6,11,6233,'Closing'),
12401 (6,11,6246,'Closing'),
12402 (6,11,6247,'Opening'),
12403 (6,11,6477,'Opening'),
12404 (6,11,6478,'Opening'),
12405 (6,11,6603,'Attack'),
12406 (6,11,7266,'Duel'),
12407 (6,11,7267,'Grovel'),
12408 (6,11,7355,'Stuck'),
12409 (6,11,8386,'Attacking'),
12410 (6,11,9077,'Leather'),
12411 (6,11,9078,'Cloth'),
12412 (6,11,9125,'Generic'),
12413 (6,11,20549,'War Stomp'),
12414 (6,11,20550,'Endurance'),
12415 (6,11,20551,'Nature Resistance'),
12416 (6,11,20552,'Cultivation'),
12417 (6,11,21651,'Opening'),
12418 (6,11,21652,'Closing'),
12419 (6,11,22027,'Remove Insignia'),
12420 (6,11,22810,'Opening - No Text'),
12421 (6,11,27764,'Fetish'),
12422 (6,11,45927,'Summon Friend'),
12423 (6,11,61437,'Opening'),
12424 (7,1,78,'Heroic Strike'),
12425 (7,1,81,'Dodge'),
12426 (7,1,107,'Block'),
12427 (7,1,198,'One-Handed Maces'),
12428 (7,1,201,'One-Handed Swords'),
12429 (7,1,202,'Two-Handed Swords'),
12430 (7,1,203,'Unarmed'),
12431 (7,1,204,'Defense'),
12432 (7,1,522,'SPELLDEFENSE (DND)'),
12433 (7,1,668,'Language Common'),
12434 (7,1,1180,'Daggers'),
12435 (7,1,1843,'Disarm'),
12436 (7,1,2382,'Generic'),
12437 (7,1,2457,'Battle Stance'),
12438 (7,1,2479,'Honorless Target'),
12439 (7,1,3050,'Detect'),
12440 (7,1,3365,'Opening'),
12441 (7,1,5301,'Defensive State (DND)'),
12442 (7,1,6233,'Closing'),
12443 (7,1,6246,'Closing'),
12444 (7,1,6247,'Opening'),
12445 (7,1,6477,'Opening'),
12446 (7,1,6478,'Opening'),
12447 (7,1,6603,'Attack'),
12448 (7,1,7266,'Duel'),
12449 (7,1,7267,'Grovel'),
12450 (7,1,7340,'Language Gnomish'),
12451 (7,1,7355,'Stuck'),
12452 (7,1,8386,'Attacking'),
12453 (7,1,8737,'Mail'),
12454 (7,1,9077,'Leather'),
12455 (7,1,9078,'Cloth'),
12456 (7,1,9116,'Shield'),
12457 (7,1,9125,'Generic'),
12458 (7,1,20589,'Escape Artist'),
12459 (7,1,20591,'Expansive Mind'),
12460 (7,1,20592,'Arcane Resistance'),
12461 (7,1,20593,'Engineering Specialization'),
12462 (7,1,21651,'Opening'),
12463 (7,1,21652,'Closing'),
12464 (7,1,22027,'Remove Insignia'),
12465 (7,1,22810,'Opening - No Text'),
12466 (7,1,32215,'Victorious State'),
12467 (7,1,45927,'Summon Friend'),
12468 (7,1,61437,'Opening'),
12469 (7,4,81,'Dodge'),
12470 (7,4,203,'Unarmed'),
12471 (7,4,204,'Defense'),
12472 (7,4,522,'SPELLDEFENSE (DND)'),
12473 (7,4,674,'Dual Wield'),
12474 (7,4,668,'Language Common'),
12475 (7,4,1180,'Daggers'),
12476 (7,4,1752,'Sinister Strike'),
12477 (7,4,1843,'Disarm'),
12478 (7,4,2098,'Eviscerate'),
12479 (7,4,2382,'Generic'),
12480 (7,4,2479,'Honorless Target'),
12481 (7,4,2567,'Thrown'),
12482 (7,4,2764,'Throw'),
12483 (7,4,3050,'Detect'),
12484 (7,4,3365,'Opening'),
12485 (7,4,6233,'Closing'),
12486 (7,4,6246,'Closing'),
12487 (7,4,6247,'Opening'),
12488 (7,4,6477,'Opening'),
12489 (7,4,6478,'Opening'),
12490 (7,4,6603,'Attack'),
12491 (7,4,7266,'Duel'),
12492 (7,4,7267,'Grovel'),
12493 (7,4,7340,'Language Gnomish'),
12494 (7,4,7355,'Stuck'),
12495 (7,4,8386,'Attacking'),
12496 (7,4,9077,'Leather'),
12497 (7,4,9078,'Cloth'),
12498 (7,4,9125,'Generic'),
12499 (7,4,16092,'Defensive State (DND)'),
12500 (7,4,20589,'Escape Artist'),
12501 (7,4,20591,'Expansive Mind'),
12502 (7,4,20592,'Arcane Resistance'),
12503 (7,4,20593,'Engineering Specialization'),
12504 (7,4,21184,'Rogue Passive (DND)'),
12505 (7,4,21651,'Opening'),
12506 (7,4,21652,'Closing'),
12507 (7,4,22027,'Remove Insignia'),
12508 (7,4,22810,'Opening - No Text'),
12509 (7,4,45927,'Summon Friend'),
12510 (7,4,61437,'Opening'),
12511 (7,6,81,'Dodge'),
12512 (7,6,196,'One-Handed Axes'),
12513 (7,6,197,'Two-Handed Axes'),
12514 (7,6,200,'Polearms'),
12515 (7,6,201,'One-Handed Swords'),
12516 (7,6,202,'Two-Handed Swords'),
12517 (7,6,203,'Unarmed'),
12518 (7,6,204,'Defense'),
12519 (7,6,522,'SPELLDEFENSE (DND)'),
12520 (7,6,668,'Language Common'),
12521 (7,6,674,'Dual Wield'),
12522 (7,6,750,'Plate Mail'),
12523 (7,6,1843,'Disarm'),
12524 (7,6,2382,'Generic'),
12525 (7,6,2479,'Honorless Target'),
12526 (7,6,3050,'Detect'),
12527 (7,6,3127,'Parry'),
12528 (7,6,3275,'Linen Bandage'),
12529 (7,6,3276,'Heavy Linen Bandage'),
12530 (7,6,3277,'Wool Bandage'),
12531 (7,6,3278,'Heavy Wool Bandage'),
12532 (7,6,3365,'Opening'),
12533 (7,6,6233,'Closing'),
12534 (7,6,6246,'Closing'),
12535 (7,6,6247,'Opening'),
12536 (7,6,6477,'Opening'),
12537 (7,6,6478,'Opening'),
12538 (7,6,6603,'Attack'),
12539 (7,6,7266,'Duel'),
12540 (7,6,7267,'Grovel'),
12541 (7,6,7340,'Language Gnomish'),
12542 (7,6,7355,'Stuck'),
12543 (7,6,7928,'Silk Bandage'),
12544 (7,6,7929,'Heavy Silk Bandage'),
12545 (7,6,7934,'Anti-Venom'),
12546 (7,6,8386,'Attacking'),
12547 (7,6,8737,'Mail'),
12548 (7,6,9077,'Leather'),
12549 (7,6,9078,'Cloth'),
12550 (7,6,9125,'Generic'),
12551 (7,6,10840,'Mageweave Bandage'),
12552 (7,6,10841,'Heavy Mageweave Bandage'),
12553 (7,6,10846,'First Aid'),
12554 (7,6,18629,'Runecloth Bandage'),
12555 (7,6,18630,'Heavy Runecloth Bandage'),
12556 (7,6,20589,'Escape Artist'),
12557 (7,6,20591,'Expansive Mind'),
12558 (7,6,20592,'Arcane Resistance'),
12559 (7,6,20593,'Engineering Specialization'),
12560 (7,6,21651,'Opening'),
12561 (7,6,21652,'Closing'),
12562 (7,6,22027,'Remove Insignia'),
12563 (7,6,22810,'Opening - No Text'),
12564 (7,6,33391,'Journeyman Riding'),
12565 (7,6,45462,'Plague Strike'),
12566 (7,6,45477,'Icy Touch'),
12567 (7,6,45902,'Blood Strike'),
12568 (7,6,45903,'Offensive State (DND)'),
12569 (7,6,45927,'Summon Friend'),
12570 (7,6,47541,'Death Coil'),
12571 (7,6,48266,'Blood Presence'),
12572 (7,6,49410,'Forceful Deflection'),
12573 (7,6,49576,'Death Grip'),
12574 (7,6,52665,'Sigil'),
12575 (7,6,59879,'Blood Plague'),
12576 (7,6,59921,'Frost Fever'),
12577 (7,6,61437,'Opening'),
12578 (7,6,61455,'Runic Focus'),
12579 (7,8,81,'Dodge'),
12580 (7,8,133,'Fireball'),
12581 (7,8,168,'Frost Armor'),
12582 (7,8,203,'Unarmed'),
12583 (7,8,204,'Defense'),
12584 (7,8,227,'Staves'),
12585 (7,8,522,'SPELLDEFENSE (DND)'),
12586 (7,8,668,'Language Common'),
12587 (7,8,1843,'Disarm'),
12588 (7,8,2382,'Generic'),
12589 (7,8,2479,'Honorless Target'),
12590 (7,8,3050,'Detect'),
12591 (7,8,3365,'Opening'),
12592 (7,8,5009,'Wands'),
12593 (7,8,5019,'Shoot'),
12594 (7,8,6233,'Closing'),
12595 (7,8,6246,'Closing'),
12596 (7,8,6247,'Opening'),
12597 (7,8,6477,'Opening'),
12598 (7,8,6478,'Opening'),
12599 (7,8,6603,'Attack'),
12600 (7,8,7266,'Duel'),
12601 (7,8,7267,'Grovel'),
12602 (7,8,7340,'Language Gnomish'),
12603 (7,8,7355,'Stuck'),
12604 (7,8,8386,'Attacking'),
12605 (7,8,9078,'Cloth'),
12606 (7,8,9125,'Generic'),
12607 (7,8,20589,'Escape Artist'),
12608 (7,8,20591,'Expansive Mind'),
12609 (7,8,20592,'Arcane Resistance'),
12610 (7,8,20593,'Engineering Specialization'),
12611 (7,8,21651,'Opening'),
12612 (7,8,21652,'Closing'),
12613 (7,8,22027,'Remove Insignia'),
12614 (7,8,22810,'Opening - No Text'),
12615 (7,8,45927,'Summon Friend'),
12616 (7,8,61437,'Opening'),
12617 (7,9,81,'Dodge'),
12618 (7,9,203,'Unarmed'),
12619 (7,9,204,'Defense'),
12620 (7,9,227,'Staves'),
12621 (7,9,522,'SPELLDEFENSE (DND)'),
12622 (7,9,668,'Language Common'),
12623 (7,9,686,'Shadow Bolt'),
12624 (7,9,687,'Demon Skin'),
12625 (7,9,1180,'Daggers'),
12626 (7,9,1843,'Disarm'),
12627 (7,9,2382,'Generic'),
12628 (7,9,2479,'Honorless Target'),
12629 (7,9,3050,'Detect'),
12630 (7,9,3365,'Opening'),
12631 (7,9,5009,'Wands'),
12632 (7,9,5019,'Shoot'),
12633 (7,9,6233,'Closing'),
12634 (7,9,6246,'Closing'),
12635 (7,9,6247,'Opening'),
12636 (7,9,6477,'Opening'),
12637 (7,9,6478,'Opening'),
12638 (7,9,6603,'Attack'),
12639 (7,9,7266,'Duel'),
12640 (7,9,7267,'Grovel'),
12641 (7,9,7340,'Language Gnomish'),
12642 (7,9,7355,'Stuck'),
12643 (7,9,8386,'Attacking'),
12644 (7,9,9078,'Cloth'),
12645 (7,9,9125,'Generic'),
12646 (7,9,20589,'Escape Artist'),
12647 (7,9,20591,'Expansive Mind'),
12648 (7,9,20592,'Arcane Resistance'),
12649 (7,9,20593,'Engineering Specialization'),
12650 (7,9,21651,'Opening'),
12651 (7,9,21652,'Closing'),
12652 (7,9,22027,'Remove Insignia'),
12653 (7,9,22810,'Opening - No Text'),
12654 (7,9,45927,'Summon Friend'),
12655 (7,9,58284,'Chaos Bolt Passive'),
12656 (7,9,61437,'Opening'),
12657 (8,1,78,'Heroic Strike'),
12658 (8,1,81,'Dodge'),
12659 (8,1,107,'Block'),
12660 (8,1,196,'One-Handed Axes'),
12661 (8,1,202,'Two-Handed Swords'),
12662 (8,1,203,'Unarmed'),
12663 (8,1,204,'Defense'),
12664 (8,1,522,'SPELLDEFENSE (DND)'),
12665 (8,1,669,'Language Orcish'),
12666 (8,1,1180,'Daggers'),
12667 (8,1,1843,'Disarm'),
12668 (8,1,2382,'Generic'),
12669 (8,1,2457,'Battle Stance'),
12670 (8,1,2479,'Honorless Target'),
12671 (8,1,2567,'Thrown'),
12672 (8,1,2764,'Throw'),
12673 (8,1,3050,'Detect'),
12674 (8,1,3365,'Opening'),
12675 (8,1,5301,'Defensive State (DND)'),
12676 (8,1,6233,'Closing'),
12677 (8,1,6246,'Closing'),
12678 (8,1,6247,'Opening'),
12679 (8,1,6477,'Opening'),
12680 (8,1,6478,'Opening'),
12681 (8,1,6603,'Attack'),
12682 (8,1,7266,'Duel'),
12683 (8,1,7267,'Grovel'),
12684 (8,1,7341,'Language Troll'),
12685 (8,1,7355,'Stuck'),
12686 (8,1,8386,'Attacking'),
12687 (8,1,8737,'Mail'),
12688 (8,1,9077,'Leather'),
12689 (8,1,9078,'Cloth'),
12690 (8,1,9116,'Shield'),
12691 (8,1,9125,'Generic'),
12692 (8,1,20555,'Regeneration'),
12693 (8,1,20557,'Beast Slaying'),
12694 (8,1,20558,'Throwing Specialization'),
12695 (8,1,21651,'Opening'),
12696 (8,1,21652,'Closing'),
12697 (8,1,22027,'Remove Insignia'),
12698 (8,1,22810,'Opening - No Text'),
12699 (8,1,26290,'Bow Specialization'),
12700 (8,1,26297,'Berserking'),
12701 (8,1,32215,'Victorious State'),
12702 (8,1,45927,'Summon Friend'),
12703 (8,1,58943,'Da Voodoo Shuffle'),
12704 (8,1,61437,'Opening'),
12705 (8,3,75,'Auto Shot'),
12706 (8,3,81,'Dodge'),
12707 (8,3,196,'One-Handed Axes'),
12708 (8,3,197,'Two-Handed Axes'),
12709 (8,3,203,'Unarmed'),
12710 (8,3,204,'Defense'),
12711 (8,3,264,'Bows'),
12712 (8,3,522,'SPELLDEFENSE (DND)'),
12713 (8,3,669,'Language Orcish'),
12714 (8,3,1843,'Disarm'),
12715 (8,3,2382,'Generic'),
12716 (8,3,2479,'Honorless Target'),
12717 (8,3,2973,'Raptor Strike'),
12718 (8,3,3050,'Detect'),
12719 (8,3,3365,'Opening'),
12720 (8,3,6233,'Closing'),
12721 (8,3,6246,'Closing'),
12722 (8,3,6247,'Opening'),
12723 (8,3,6477,'Opening'),
12724 (8,3,6478,'Opening'),
12725 (8,3,6603,'Attack'),
12726 (8,3,7266,'Duel'),
12727 (8,3,7267,'Grovel'),
12728 (8,3,7341,'Language Troll'),
12729 (8,3,7355,'Stuck'),
12730 (8,3,8386,'Attacking'),
12731 (8,3,9077,'Leather'),
12732 (8,3,9078,'Cloth'),
12733 (8,3,9125,'Generic'),
12734 (8,3,13358,'Defensive State (DND)'),
12735 (8,3,26297,'Berserking'),
12736 (8,3,20555,'Regeneration'),
12737 (8,3,20557,'Beast Slaying'),
12738 (8,3,20558,'Throwing Specialization'),
12739 (8,3,21651,'Opening'),
12740 (8,3,21652,'Closing'),
12741 (8,3,22027,'Remove Insignia'),
12742 (8,3,22810,'Opening - No Text'),
12743 (8,3,24949,'Defensive State 2 (DND)'),
12744 (8,3,26290,'Bow Specialization'),
12745 (8,3,34082,'Advantaged State (DND)'),
12746 (8,3,45927,'Summon Friend'),
12747 (8,3,58943,'Da Voodoo Shuffle'),
12748 (8,3,61437,'Opening'),
12749 (8,4,81,'Dodge'),
12750 (8,4,203,'Unarmed'),
12751 (8,4,204,'Defense'),
12752 (8,4,522,'SPELLDEFENSE (DND)'),
12753 (8,4,669,'Language Orcish'),
12754 (8,4,674,'Dual Wield'),
12755 (8,4,1180,'Daggers'),
12756 (8,4,1752,'Sinister Strike'),
12757 (8,4,1843,'Disarm'),
12758 (8,4,2098,'Eviscerate'),
12759 (8,4,2382,'Generic'),
12760 (8,4,2479,'Honorless Target'),
12761 (8,4,2567,'Thrown'),
12762 (8,4,2764,'Throw'),
12763 (8,4,3050,'Detect'),
12764 (8,4,3365,'Opening'),
12765 (8,4,6233,'Closing'),
12766 (8,4,6246,'Closing'),
12767 (8,4,6247,'Opening'),
12768 (8,4,6477,'Opening'),
12769 (8,4,6478,'Opening'),
12770 (8,4,6603,'Attack'),
12771 (8,4,7266,'Duel'),
12772 (8,4,7267,'Grovel'),
12773 (8,4,7341,'Language Troll'),
12774 (8,4,7355,'Stuck'),
12775 (8,4,8386,'Attacking'),
12776 (8,4,9077,'Leather'),
12777 (8,4,9078,'Cloth'),
12778 (8,4,9125,'Generic'),
12779 (8,4,16092,'Defensive State (DND)'),
12780 (8,4,20555,'Regeneration'),
12781 (8,4,20557,'Beast Slaying'),
12782 (8,4,20558,'Throwing Specialization'),
12783 (8,4,21184,'Rogue Passive (DND)'),
12784 (8,4,21651,'Opening'),
12785 (8,4,21652,'Closing'),
12786 (8,4,22027,'Remove Insignia'),
12787 (8,4,22810,'Opening - No Text'),
12788 (8,4,26290,'Bow Specialization'),
12789 (8,4,26297,'Berserking'),
12790 (8,4,45927,'Summon Friend'),
12791 (8,4,58943,'Da Voodoo Shuffle'),
12792 (8,4,61437,'Opening'),
12793 (8,5,81,'Dodge'),
12794 (8,5,198,'One-Handed Maces'),
12795 (8,5,203,'Unarmed'),
12796 (8,5,204,'Defense'),
12797 (8,5,227,'Staves'),
12798 (8,5,522,'SPELLDEFENSE (DND)'),
12799 (8,5,585,'Smite'),
12800 (8,5,669,'Language Orcish'),
12801 (8,5,1843,'Disarm'),
12802 (8,5,2050,'Lesser Heal'),
12803 (8,5,2382,'Generic'),
12804 (8,5,2479,'Honorless Target'),
12805 (8,5,3050,'Detect'),
12806 (8,5,3365,'Opening'),
12807 (8,5,5009,'Wands'),
12808 (8,5,5019,'Shoot'),
12809 (8,5,6233,'Closing'),
12810 (8,5,6246,'Closing'),
12811 (8,5,6247,'Opening'),
12812 (8,5,6477,'Opening'),
12813 (8,5,6478,'Opening'),
12814 (8,5,6603,'Attack'),
12815 (8,5,7266,'Duel'),
12816 (8,5,7267,'Grovel'),
12817 (8,5,7341,'Language Troll'),
12818 (8,5,7355,'Stuck'),
12819 (8,5,8386,'Attacking'),
12820 (8,5,9078,'Cloth'),
12821 (8,5,9125,'Generic'),
12822 (8,5,26297,'Berserking'),
12823 (8,5,20555,'Regeneration'),
12824 (8,5,20557,'Beast Slaying'),
12825 (8,5,20558,'Throwing Specialization'),
12826 (8,5,21651,'Opening'),
12827 (8,5,21652,'Closing'),
12828 (8,5,22027,'Remove Insignia'),
12829 (8,5,22810,'Opening - No Text'),
12830 (8,5,26290,'Bow Specialization'),
12831 (8,5,45927,'Summon Friend'),
12832 (8,5,58943,'Da Voodoo Shuffle'),
12833 (8,5,61437,'Opening'),
12834 (8,6,81,'Dodge'),
12835 (8,6,196,'One-Handed Axes'),
12836 (8,6,197,'Two-Handed Axes'),
12837 (8,6,200,'Polearms'),
12838 (8,6,201,'One-Handed Swords'),
12839 (8,6,202,'Two-Handed Swords'),
12840 (8,6,203,'Unarmed'),
12841 (8,6,204,'Defense'),
12842 (8,6,522,'SPELLDEFENSE (DND)'),
12843 (8,6,669,'Language Orcish'),
12844 (8,6,674,'Dual Wield'),
12845 (8,6,750,'Plate Mail'),
12846 (8,6,1843,'Disarm'),
12847 (8,6,2382,'Generic'),
12848 (8,6,2479,'Honorless Target'),
12849 (8,6,3050,'Detect'),
12850 (8,6,3127,'Parry'),
12851 (8,6,3275,'Linen Bandage'),
12852 (8,6,3276,'Heavy Linen Bandage'),
12853 (8,6,3277,'Wool Bandage'),
12854 (8,6,3278,'Heavy Wool Bandage'),
12855 (8,6,3365,'Opening'),
12856 (8,6,6233,'Closing'),
12857 (8,6,6246,'Closing'),
12858 (8,6,6247,'Opening'),
12859 (8,6,6477,'Opening'),
12860 (8,6,6478,'Opening'),
12861 (8,6,6603,'Attack'),
12862 (8,6,7266,'Duel'),
12863 (8,6,7267,'Grovel'),
12864 (8,6,7341,'Language Troll'),
12865 (8,6,7355,'Stuck'),
12866 (8,6,7928,'Silk Bandage'),
12867 (8,6,7929,'Heavy Silk Bandage'),
12868 (8,6,7934,'Anti-Venom'),
12869 (8,6,8386,'Attacking'),
12870 (8,6,8737,'Mail'),
12871 (8,6,9077,'Leather'),
12872 (8,6,9078,'Cloth'),
12873 (8,6,9125,'Generic'),
12874 (8,6,10840,'Mageweave Bandage'),
12875 (8,6,10841,'Heavy Mageweave Bandage'),
12876 (8,6,10846,'First Aid'),
12877 (8,6,18629,'Runecloth Bandage'),
12878 (8,6,18630,'Heavy Runecloth Bandage'),
12879 (8,6,20555,'Regeneration'),
12880 (8,6,20557,'Beast Slaying'),
12881 (8,6,20558,'Throwing Specialization'),
12882 (8,6,21651,'Opening'),
12883 (8,6,21652,'Closing'),
12884 (8,6,22027,'Remove Insignia'),
12885 (8,6,22810,'Opening - No Text'),
12886 (8,6,26290,'Bow Specialization'),
12887 (8,6,33391,'Journeyman Riding'),
12888 (8,6,45462,'Plague Strike'),
12889 (8,6,45477,'Icy Touch'),
12890 (8,6,45902,'Blood Strike'),
12891 (8,6,45903,'Offensive State (DND)'),
12892 (8,6,45927,'Summon Friend'),
12893 (8,6,47541,'Death Coil'),
12894 (8,6,48266,'Blood Presence'),
12895 (8,6,49410,'Forceful Deflection'),
12896 (8,6,49576,'Death Grip'),
12897 (8,6,26297,'Berserking'),
12898 (8,6,52665,'Sigil'),
12899 (8,6,58943,'Da Voodoo Shuffle'),
12900 (8,6,59879,'Blood Plague'),
12901 (8,6,59921,'Frost Fever'),
12902 (8,6,61437,'Opening'),
12903 (8,6,61455,'Runic Focus'),
12904 (8,7,81,'Dodge'),
12905 (8,7,107,'Block'),
12906 (8,7,198,'One-Handed Maces'),
12907 (8,7,203,'Unarmed'),
12908 (8,7,204,'Defense'),
12909 (8,7,227,'Staves'),
12910 (8,7,331,'Healing Wave'),
12911 (8,7,403,'Lightning Bolt'),
12912 (8,7,522,'SPELLDEFENSE (DND)'),
12913 (8,7,669,'Language Orcish'),
12914 (8,7,1843,'Disarm'),
12915 (8,7,2382,'Generic'),
12916 (8,7,2479,'Honorless Target'),
12917 (8,7,3050,'Detect'),
12918 (8,7,3365,'Opening'),
12919 (8,7,6233,'Closing'),
12920 (8,7,6246,'Closing'),
12921 (8,7,6247,'Opening'),
12922 (8,7,6477,'Opening'),
12923 (8,7,6478,'Opening'),
12924 (8,7,6603,'Attack'),
12925 (8,7,7266,'Duel'),
12926 (8,7,7267,'Grovel'),
12927 (8,7,7341,'Language Troll'),
12928 (8,7,7355,'Stuck'),
12929 (8,7,8386,'Attacking'),
12930 (8,7,9077,'Leather'),
12931 (8,7,9078,'Cloth'),
12932 (8,7,9116,'Shield'),
12933 (8,7,9125,'Generic'),
12934 (8,7,26297,'Berserking'),
12935 (8,7,20555,'Regeneration'),
12936 (8,7,20557,'Beast Slaying'),
12937 (8,7,20558,'Throwing Specialization'),
12938 (8,7,21651,'Opening'),
12939 (8,7,21652,'Closing'),
12940 (8,7,22027,'Remove Insignia'),
12941 (8,7,22810,'Opening - No Text'),
12942 (8,7,26290,'Bow Specialization'),
12943 (8,7,27763,'Totem'),
12944 (8,7,45927,'Summon Friend'),
12945 (8,7,58943,'Da Voodoo Shuffle'),
12946 (8,7,61437,'Opening'),
12947 (8,8,81,'Dodge'),
12948 (8,8,133,'Fireball'),
12949 (8,8,168,'Frost Armor'),
12950 (8,8,203,'Unarmed'),
12951 (8,8,204,'Defense'),
12952 (8,8,227,'Staves'),
12953 (8,8,522,'SPELLDEFENSE (DND)'),
12954 (8,8,669,'Language Orcish'),
12955 (8,8,1843,'Disarm'),
12956 (8,8,2382,'Generic'),
12957 (8,8,2479,'Honorless Target'),
12958 (8,8,3050,'Detect'),
12959 (8,8,3365,'Opening'),
12960 (8,8,5009,'Wands'),
12961 (8,8,5019,'Shoot'),
12962 (8,8,6233,'Closing'),
12963 (8,8,6246,'Closing'),
12964 (8,8,6247,'Opening'),
12965 (8,8,6477,'Opening'),
12966 (8,8,6478,'Opening'),
12967 (8,8,6603,'Attack'),
12968 (8,8,7266,'Duel'),
12969 (8,8,7267,'Grovel'),
12970 (8,8,7341,'Language Troll'),
12971 (8,8,7355,'Stuck'),
12972 (8,8,8386,'Attacking'),
12973 (8,8,9078,'Cloth'),
12974 (8,8,9125,'Generic'),
12975 (8,8,26297,'Berserking'),
12976 (8,8,20555,'Regeneration'),
12977 (8,8,20557,'Beast Slaying'),
12978 (8,8,20558,'Throwing Specialization'),
12979 (8,8,21651,'Opening'),
12980 (8,8,21652,'Closing'),
12981 (8,8,22027,'Remove Insignia'),
12982 (8,8,22810,'Opening - No Text'),
12983 (8,8,26290,'Bow Specialization'),
12984 (8,8,45927,'Summon Friend'),
12985 (8,8,58943,'Da Voodoo Shuffle'),
12986 (8,8,61437,'Opening'),
12987 (10,2,81,'Dodge'),
12988 (10,2,107,'Block'),
12989 (10,2,201,'One-Handed Swords'),
12990 (10,2,202,'Two-Handed Swords'),
12991 (10,2,203,'Unarmed'),
12992 (10,2,204,'Defense'),
12993 (10,2,522,'SPELLDEFENSE (DND)'),
12994 (10,2,635,'Holy Light'),
12995 (10,2,669,'Language Orcish'),
12996 (10,2,813,'Language Thalassian'),
12997 (10,2,822,'Magic Resistance'),
12998 (10,2,2382,'Generic'),
12999 (10,2,2479,'Honorless Target'),
13000 (10,2,3050,'Detect'),
13001 (10,2,3365,'Opening'),
13002 (10,2,6233,'Closing'),
13003 (10,2,6246,'Closing'),
13004 (10,2,6247,'Opening'),
13005 (10,2,6477,'Opening'),
13006 (10,2,6478,'Opening'),
13007 (10,2,6603,'Attack'),
13008 (10,2,7266,'Duel'),
13009 (10,2,7267,'Grovel'),
13010 (10,2,7355,'Stuck'),
13011 (10,2,8386,'Attacking'),
13012 (10,2,8737,'Mail'),
13013 (10,2,9077,'Leather'),
13014 (10,2,9078,'Cloth'),
13015 (10,2,9116,'Shield'),
13016 (10,2,9125,'Generic'),
13017 (10,2,21084,'Seal of Righteousness'),
13018 (10,2,21651,'Opening'),
13019 (10,2,21652,'Closing'),
13020 (10,2,22027,'Remove Insignia'),
13021 (10,2,22810,'Opening - No Text'),
13022 (10,2,27762,'Libram'),
13023 (10,2,28730,'Arcane Torrent'),
13024 (10,2,28877,'Arcane Affinity'),
13025 (10,3,75,'Auto Shot'),
13026 (10,3,81,'Dodge'),
13027 (10,3,197,'Two-Handed Axes'),
13028 (10,3,203,'Unarmed'),
13029 (10,3,204,'Defense'),
13030 (10,3,264,'Bows'),
13031 (10,3,522,'SPELLDEFENSE (DND)'),
13032 (10,3,669,'Language Orcish'),
13033 (10,3,813,'Language Thalassian'),
13034 (10,3,822,'Magic Resistance'),
13035 (10,3,1180,'Daggers'),
13036 (10,3,2382,'Generic'),
13037 (10,3,2479,'Honorless Target'),
13038 (10,3,2973,'Raptor Strike'),
13039 (10,3,3050,'Detect'),
13040 (10,3,3365,'Opening'),
13041 (10,3,6233,'Closing'),
13042 (10,3,6246,'Closing'),
13043 (10,3,6247,'Opening'),
13044 (10,3,6477,'Opening'),
13045 (10,3,6478,'Opening'),
13046 (10,3,6603,'Attack'),
13047 (10,3,7266,'Duel'),
13048 (10,3,7267,'Grovel'),
13049 (10,3,7355,'Stuck'),
13050 (10,3,8386,'Attacking'),
13051 (10,3,9077,'Leather'),
13052 (10,3,9078,'Cloth'),
13053 (10,3,9125,'Generic'),
13054 (10,3,13358,'Defensive State (DND)'),
13055 (10,3,21651,'Opening'),
13056 (10,3,21652,'Closing'),
13057 (10,3,22027,'Remove Insignia'),
13058 (10,3,22810,'Opening - No Text'),
13059 (10,3,24949,'Defensive State 2 (DND)'),
13060 (10,3,28730,'Arcane Torrent'),
13061 (10,3,28877,'Arcane Affinity'),
13062 (10,3,34082,'Advantaged State (DND)'),
13063 (10,4,81,'Dodge'),
13064 (10,4,203,'Unarmed'),
13065 (10,4,204,'Defense'),
13066 (10,4,522,'SPELLDEFENSE (DND)'),
13067 (10,4,669,'Language Orcish'),
13068 (10,4,674,'Dual Wield'),
13069 (10,4,813,'Language Thalassian'),
13070 (10,4,822,'Magic Resistance'),
13071 (10,4,1180,'Daggers'),
13072 (10,4,1752,'Sinister Strike'),
13073 (10,4,2098,'Eviscerate'),
13074 (10,4,2382,'Generic'),
13075 (10,4,2479,'Honorless Target'),
13076 (10,4,2567,'Thrown'),
13077 (10,4,2764,'Throw'),
13078 (10,4,3050,'Detect'),
13079 (10,4,3365,'Opening'),
13080 (10,4,6233,'Closing'),
13081 (10,4,6246,'Closing'),
13082 (10,4,6247,'Opening'),
13083 (10,4,6477,'Opening'),
13084 (10,4,6478,'Opening'),
13085 (10,4,6603,'Attack'),
13086 (10,4,7266,'Duel'),
13087 (10,4,7267,'Grovel'),
13088 (10,4,7355,'Stuck'),
13089 (10,4,8386,'Attacking'),
13090 (10,4,9077,'Leather'),
13091 (10,4,9078,'Cloth'),
13092 (10,4,9125,'Generic'),
13093 (10,4,16092,'Defensive State (DND)'),
13094 (10,4,21184,'Rogue Passive (DND)'),
13095 (10,4,21651,'Opening'),
13096 (10,4,21652,'Closing'),
13097 (10,4,22027,'Remove Insignia'),
13098 (10,4,22810,'Opening - No Text'),
13099 (10,4,25046,'Arcane Torrent'),
13100 (10,4,28877,'Arcane Affinity'),
13101 (10,5,81,'Dodge'),
13102 (10,5,198,'One-Handed Maces'),
13103 (10,5,203,'Unarmed'),
13104 (10,5,204,'Defense'),
13105 (10,5,227,'Staves'),
13106 (10,5,522,'SPELLDEFENSE (DND)'),
13107 (10,5,585,'Smite'),
13108 (10,5,669,'Language Orcish'),
13109 (10,5,813,'Language Thalassian'),
13110 (10,5,822,'Magic Resistance'),
13111 (10,5,2050,'Lesser Heal'),
13112 (10,5,2382,'Generic'),
13113 (10,5,2479,'Honorless Target'),
13114 (10,5,3050,'Detect'),
13115 (10,5,3365,'Opening'),
13116 (10,5,5009,'Wands'),
13117 (10,5,5019,'Shoot'),
13118 (10,5,6233,'Closing'),
13119 (10,5,6246,'Closing'),
13120 (10,5,6247,'Opening'),
13121 (10,5,6477,'Opening'),
13122 (10,5,6478,'Opening'),
13123 (10,5,6603,'Attack'),
13124 (10,5,7266,'Duel'),
13125 (10,5,7267,'Grovel'),
13126 (10,5,7355,'Stuck'),
13127 (10,5,8386,'Attacking'),
13128 (10,5,9078,'Cloth'),
13129 (10,5,9125,'Generic'),
13130 (10,5,21651,'Opening'),
13131 (10,5,21652,'Closing'),
13132 (10,5,22027,'Remove Insignia'),
13133 (10,5,22810,'Opening - No Text'),
13134 (10,5,28730,'Arcane Torrent'),
13135 (10,5,28877,'Arcane Affinity'),
13136 (10,6,81,'Dodge'),
13137 (10,6,196,'One-Handed Axes'),
13138 (10,6,197,'Two-Handed Axes'),
13139 (10,6,200,'Polearms'),
13140 (10,6,201,'One-Handed Swords'),
13141 (10,6,202,'Two-Handed Swords'),
13142 (10,6,203,'Unarmed'),
13143 (10,6,204,'Defense'),
13144 (10,6,522,'SPELLDEFENSE (DND)'),
13145 (10,6,669,'Language Orcish'),
13146 (10,6,674,'Dual Wield'),
13147 (10,6,750,'Plate Mail'),
13148 (10,6,813,'Language Thalassian'),
13149 (10,6,822,'Magic Resistance'),
13150 (10,6,1843,'Disarm'),
13151 (10,6,2382,'Generic'),
13152 (10,6,2479,'Honorless Target'),
13153 (10,6,3050,'Detect'),
13154 (10,6,3127,'Parry'),
13155 (10,6,3275,'Linen Bandage'),
13156 (10,6,3276,'Heavy Linen Bandage'),
13157 (10,6,3277,'Wool Bandage'),
13158 (10,6,3278,'Heavy Wool Bandage'),
13159 (10,6,3365,'Opening'),
13160 (10,6,6233,'Closing'),
13161 (10,6,6246,'Closing'),
13162 (10,6,6247,'Opening'),
13163 (10,6,6477,'Opening'),
13164 (10,6,6478,'Opening'),
13165 (10,6,6603,'Attack'),
13166 (10,6,7266,'Duel'),
13167 (10,6,7267,'Grovel'),
13168 (10,6,7355,'Stuck'),
13169 (10,6,7928,'Silk Bandage'),
13170 (10,6,7929,'Heavy Silk Bandage'),
13171 (10,6,7934,'Anti-Venom'),
13172 (10,6,8386,'Attacking'),
13173 (10,6,8737,'Mail'),
13174 (10,6,9077,'Leather'),
13175 (10,6,9078,'Cloth'),
13176 (10,6,9125,'Generic'),
13177 (10,6,10840,'Mageweave Bandage'),
13178 (10,6,10841,'Heavy Mageweave Bandage'),
13179 (10,6,10846,'First Aid'),
13180 (10,6,18629,'Runecloth Bandage'),
13181 (10,6,18630,'Heavy Runecloth Bandage'),
13182 (10,6,21651,'Opening'),
13183 (10,6,21652,'Closing'),
13184 (10,6,22027,'Remove Insignia'),
13185 (10,6,22810,'Opening - No Text'),
13186 (10,6,28877,'Arcane Affinity'),
13187 (10,6,33391,'Journeyman Riding'),
13188 (10,6,45462,'Plague Strike'),
13189 (10,6,45477,'Icy Touch'),
13190 (10,6,45902,'Blood Strike'),
13191 (10,6,45903,'Offensive State (DND)'),
13192 (10,6,45927,'Summon Friend'),
13193 (10,6,47541,'Death Coil'),
13194 (10,6,48266,'Blood Presence'),
13195 (10,6,49410,'Forceful Deflection'),
13196 (10,6,49576,'Death Grip'),
13197 (10,6,50613,'Arcane Torrent'),
13198 (10,6,52665,'Sigil'),
13199 (10,6,59879,'Blood Plague'),
13200 (10,6,59921,'Frost Fever'),
13201 (10,6,61437,'Opening'),
13202 (10,6,61455,'Runic Focus'),
13203 (10,8,81,'Dodge'),
13204 (10,8,133,'Fireball'),
13205 (10,8,168,'Frost Armor'),
13206 (10,8,203,'Unarmed'),
13207 (10,8,204,'Defense'),
13208 (10,8,227,'Staves'),
13209 (10,8,522,'SPELLDEFENSE (DND)'),
13210 (10,8,669,'Language Orcish'),
13211 (10,8,813,'Language Thalassian'),
13212 (10,8,822,'Magic Resistance'),
13213 (10,8,2382,'Generic'),
13214 (10,8,2479,'Honorless Target'),
13215 (10,8,3050,'Detect'),
13216 (10,8,3365,'Opening'),
13217 (10,8,5009,'Wands'),
13218 (10,8,5019,'Shoot'),
13219 (10,8,6233,'Closing'),
13220 (10,8,6246,'Closing'),
13221 (10,8,6247,'Opening'),
13222 (10,8,6477,'Opening'),
13223 (10,8,6478,'Opening'),
13224 (10,8,6603,'Attack'),
13225 (10,8,7266,'Duel'),
13226 (10,8,7267,'Grovel'),
13227 (10,8,7355,'Stuck'),
13228 (10,8,8386,'Attacking'),
13229 (10,8,9078,'Cloth'),
13230 (10,8,9125,'Generic'),
13231 (10,8,21651,'Opening'),
13232 (10,8,21652,'Closing'),
13233 (10,8,22027,'Remove Insignia'),
13234 (10,8,22810,'Opening - No Text'),
13235 (10,8,28730,'Arcane Torrent'),
13236 (10,8,28877,'Arcane Affinity'),
13237 (10,9,81,'Dodge'),
13238 (10,9,203,'Unarmed'),
13239 (10,9,204,'Defense'),
13240 (10,9,227,'Staves'),
13241 (10,9,522,'SPELLDEFENSE (DND)'),
13242 (10,9,669,'Language Orcish'),
13243 (10,9,686,'Shadow Bolt'),
13244 (10,9,687,'Demon Skin'),
13245 (10,9,813,'Language Thalassian'),
13246 (10,9,822,'Magic Resistance'),
13247 (10,9,1180,'Daggers'),
13248 (10,9,2382,'Generic'),
13249 (10,9,2479,'Honorless Target'),
13250 (10,9,3050,'Detect'),
13251 (10,9,3365,'Opening'),
13252 (10,9,5009,'Wands'),
13253 (10,9,5019,'Shoot'),
13254 (10,9,6233,'Closing'),
13255 (10,9,6246,'Closing'),
13256 (10,9,6247,'Opening'),
13257 (10,9,6477,'Opening'),
13258 (10,9,6478,'Opening'),
13259 (10,9,6603,'Attack'),
13260 (10,9,7266,'Duel'),
13261 (10,9,7267,'Grovel'),
13262 (10,9,7355,'Stuck'),
13263 (10,9,8386,'Attacking'),
13264 (10,9,9078,'Cloth'),
13265 (10,9,9125,'Generic'),
13266 (10,9,21651,'Opening'),
13267 (10,9,21652,'Closing'),
13268 (10,9,22027,'Remove Insignia'),
13269 (10,9,22810,'Opening - No Text'),
13270 (10,9,28730,'Arcane Torrent'),
13271 (10,9,28877,'Arcane Affinity'),
13272 (10,9,58284,'Chaos Bolt Passive'),
13273 (11,1,78,'Heroic Strike'),
13274 (11,1,81,'Dodge'),
13275 (11,1,107,'Block'),
13276 (11,1,198,'One-Handed Maces'),
13277 (11,1,201,'One-Handed Swords'),
13278 (11,1,202,'Two-Handed Swords'),
13279 (11,1,203,'Unarmed'),
13280 (11,1,204,'Defense'),
13281 (11,1,522,'SPELLDEFENSE (DND)'),
13282 (11,1,668,'Language Common'),
13283 (11,1,1843,'Disarm'),
13284 (11,1,2382,'Generic'),
13285 (11,1,2457,'Battle Stance'),
13286 (11,1,2479,'Honorless Target'),
13287 (11,1,3050,'Detect'),
13288 (11,1,3365,'Opening'),
13289 (11,1,5301,'Defensive State (DND)'),
13290 (11,1,6233,'Closing'),
13291 (11,1,6246,'Closing'),
13292 (11,1,6247,'Opening'),
13293 (11,1,6477,'Opening'),
13294 (11,1,6478,'Opening'),
13295 (11,1,6562,'Heroic Presence'),
13296 (11,1,6603,'Attack'),
13297 (11,1,7266,'Duel'),
13298 (11,1,7267,'Grovel'),
13299 (11,1,7355,'Stuck'),
13300 (11,1,8386,'Attacking'),
13301 (11,1,8737,'Mail'),
13302 (11,1,9077,'Leather'),
13303 (11,1,9078,'Cloth'),
13304 (11,1,9116,'Shield'),
13305 (11,1,9125,'Generic'),
13306 (11,1,21651,'Opening'),
13307 (11,1,21652,'Closing'),
13308 (11,1,22027,'Remove Insignia'),
13309 (11,1,22810,'Opening - No Text'),
13310 (11,1,28875,'Gemcutting'),
13311 (11,1,28880,'Gift of the Naaru'),
13312 (11,1,29932,'Language Draenei'),
13313 (11,1,32215,'Victorious State'),
13314 (11,1,45927,'Summon Friend'),
13315 (11,1,59221,'Shadow Resistance'),
13316 (11,1,61437,'Opening'),
13317 (11,2,81,'Dodge'),
13318 (11,2,107,'Block'),
13319 (11,2,198,'One-Handed Maces'),
13320 (11,2,199,'Two-Handed Maces'),
13321 (11,2,203,'Unarmed'),
13322 (11,2,204,'Defense'),
13323 (11,2,522,'SPELLDEFENSE (DND)'),
13324 (11,2,635,'Holy Light'),
13325 (11,2,668,'Language Common'),
13326 (11,2,1843,'Disarm'),
13327 (11,2,2382,'Generic'),
13328 (11,2,2479,'Honorless Target'),
13329 (11,2,3050,'Detect'),
13330 (11,2,3365,'Opening'),
13331 (11,2,6233,'Closing'),
13332 (11,2,6246,'Closing'),
13333 (11,2,6247,'Opening'),
13334 (11,2,6477,'Opening'),
13335 (11,2,6478,'Opening'),
13336 (11,2,6562,'Heroic Presence'),
13337 (11,2,6603,'Attack'),
13338 (11,2,7266,'Duel'),
13339 (11,2,7267,'Grovel'),
13340 (11,2,7355,'Stuck'),
13341 (11,2,8386,'Attacking'),
13342 (11,2,8737,'Mail'),
13343 (11,2,9077,'Leather'),
13344 (11,2,9078,'Cloth'),
13345 (11,2,9116,'Shield'),
13346 (11,2,9125,'Generic'),
13347 (11,2,21084,'Seal of Righteousness'),
13348 (11,2,21651,'Opening'),
13349 (11,2,21652,'Closing'),
13350 (11,2,22027,'Remove Insignia'),
13351 (11,2,22810,'Opening - No Text'),
13352 (11,2,27762,'Libram'),
13353 (11,2,28875,'Gemcutting'),
13354 (11,2,29932,'Language Draenei'),
13355 (11,2,45927,'Summon Friend'),
13356 (11,2,59221,'Shadow Resistance'),
13357 (11,2,59542,'Gift of the Naaru'),
13358 (11,2,61437,'Opening'),
13359 (11,3,75,'Auto Shot'),
13360 (11,3,81,'Dodge'),
13361 (11,3,197,'Two-Handed Axes'),
13362 (11,3,201,'One-Handed Swords'),
13363 (11,3,203,'Unarmed'),
13364 (11,3,204,'Defense'),
13365 (11,3,522,'SPELLDEFENSE (DND)'),
13366 (11,3,668,'Language Common'),
13367 (11,3,1843,'Disarm'),
13368 (11,3,2382,'Generic'),
13369 (11,3,2479,'Honorless Target'),
13370 (11,3,2973,'Raptor Strike'),
13371 (11,3,3050,'Detect'),
13372 (11,3,3365,'Opening'),
13373 (11,3,5011,'Crossbows'),
13374 (11,3,6233,'Closing'),
13375 (11,3,6246,'Closing'),
13376 (11,3,6247,'Opening'),
13377 (11,3,6477,'Opening'),
13378 (11,3,6478,'Opening'),
13379 (11,3,6562,'Heroic Presence'),
13380 (11,3,6603,'Attack'),
13381 (11,3,7266,'Duel'),
13382 (11,3,7267,'Grovel'),
13383 (11,3,7355,'Stuck'),
13384 (11,3,8386,'Attacking'),
13385 (11,3,9077,'Leather'),
13386 (11,3,9078,'Cloth'),
13387 (11,3,9125,'Generic'),
13388 (11,3,13358,'Defensive State (DND)'),
13389 (11,3,21651,'Opening'),
13390 (11,3,21652,'Closing'),
13391 (11,3,22027,'Remove Insignia'),
13392 (11,3,22810,'Opening - No Text'),
13393 (11,3,24949,'Defensive State 2 (DND)'),
13394 (11,3,28875,'Gemcutting'),
13395 (11,3,29932,'Language Draenei'),
13396 (11,3,34082,'Advantaged State (DND)'),
13397 (11,3,45927,'Summon Friend'),
13398 (11,3,59221,'Shadow Resistance'),
13399 (11,3,59543,'Gift of the Naaru'),
13400 (11,3,61437,'Opening'),
13401 (11,5,81,'Dodge'),
13402 (11,5,198,'One-Handed Maces'),
13403 (11,5,203,'Unarmed'),
13404 (11,5,204,'Defense'),
13405 (11,5,227,'Staves'),
13406 (11,5,522,'SPELLDEFENSE (DND)'),
13407 (11,5,585,'Smite'),
13408 (11,5,668,'Language Common'),
13409 (11,5,1843,'Disarm'),
13410 (11,5,2050,'Lesser Heal'),
13411 (11,5,2382,'Generic'),
13412 (11,5,2479,'Honorless Target'),
13413 (11,5,3050,'Detect'),
13414 (11,5,3365,'Opening'),
13415 (11,5,5009,'Wands'),
13416 (11,5,5019,'Shoot'),
13417 (11,5,6233,'Closing'),
13418 (11,5,6246,'Closing'),
13419 (11,5,6247,'Opening'),
13420 (11,5,6477,'Opening'),
13421 (11,5,6478,'Opening'),
13422 (11,5,6603,'Attack'),
13423 (11,5,7266,'Duel'),
13424 (11,5,7267,'Grovel'),
13425 (11,5,7355,'Stuck'),
13426 (11,5,8386,'Attacking'),
13427 (11,5,9078,'Cloth'),
13428 (11,5,9125,'Generic'),
13429 (11,5,21651,'Opening'),
13430 (11,5,21652,'Closing'),
13431 (11,5,22027,'Remove Insignia'),
13432 (11,5,22810,'Opening - No Text'),
13433 (11,5,28875,'Gemcutting'),
13434 (11,5,28878,'Inspiring Presence'),
13435 (11,5,29932,'Language Draenei'),
13436 (11,5,45927,'Summon Friend'),
13437 (11,5,59221,'Shadow Resistance'),
13438 (11,5,59544,'Gift of the Naaru'),
13439 (11,5,61437,'Opening'),
13440 (11,6,81,'Dodge'),
13441 (11,6,196,'One-Handed Axes'),
13442 (11,6,197,'Two-Handed Axes'),
13443 (11,6,200,'Polearms'),
13444 (11,6,201,'One-Handed Swords'),
13445 (11,6,202,'Two-Handed Swords'),
13446 (11,6,203,'Unarmed'),
13447 (11,6,204,'Defense'),
13448 (11,6,522,'SPELLDEFENSE (DND)'),
13449 (11,6,668,'Language Common'),
13450 (11,6,674,'Dual Wield'),
13451 (11,6,750,'Plate Mail'),
13452 (11,6,1843,'Disarm'),
13453 (11,6,2382,'Generic'),
13454 (11,6,2479,'Honorless Target'),
13455 (11,6,3050,'Detect'),
13456 (11,6,3127,'Parry'),
13457 (11,6,3275,'Linen Bandage'),
13458 (11,6,3276,'Heavy Linen Bandage'),
13459 (11,6,3277,'Wool Bandage'),
13460 (11,6,3278,'Heavy Wool Bandage'),
13461 (11,6,3365,'Opening'),
13462 (11,6,6233,'Closing'),
13463 (11,6,6246,'Closing'),
13464 (11,6,6247,'Opening'),
13465 (11,6,6477,'Opening'),
13466 (11,6,6478,'Opening'),
13467 (11,6,6562,'Heroic Presence'),
13468 (11,6,6603,'Attack'),
13469 (11,6,7266,'Duel'),
13470 (11,6,7267,'Grovel'),
13471 (11,6,7355,'Stuck'),
13472 (11,6,7928,'Silk Bandage'),
13473 (11,6,7929,'Heavy Silk Bandage'),
13474 (11,6,7934,'Anti-Venom'),
13475 (11,6,8386,'Attacking'),
13476 (11,6,8737,'Mail'),
13477 (11,6,9077,'Leather'),
13478 (11,6,9078,'Cloth'),
13479 (11,6,9125,'Generic'),
13480 (11,6,10840,'Mageweave Bandage'),
13481 (11,6,10841,'Heavy Mageweave Bandage'),
13482 (11,6,10846,'First Aid'),
13483 (11,6,18629,'Runecloth Bandage'),
13484 (11,6,18630,'Heavy Runecloth Bandage'),
13485 (11,6,21651,'Opening'),
13486 (11,6,21652,'Closing'),
13487 (11,6,22027,'Remove Insignia'),
13488 (11,6,22810,'Opening - No Text'),
13489 (11,6,28875,'Gemcutting'),
13490 (11,6,29932,'Language Draenei'),
13491 (11,6,33391,'Journeyman Riding'),
13492 (11,6,45462,'Plague Strike'),
13493 (11,6,45477,'Icy Touch'),
13494 (11,6,45902,'Blood Strike'),
13495 (11,6,45903,'Offensive State (DND)'),
13496 (11,6,45927,'Summon Friend'),
13497 (11,6,47541,'Death Coil'),
13498 (11,6,48266,'Blood Presence'),
13499 (11,6,49410,'Forceful Deflection'),
13500 (11,6,49576,'Death Grip'),
13501 (11,6,52665,'Sigil'),
13502 (11,6,59221,'Shadow Resistance'),
13503 (11,6,59539,'Shadow Resistance'),
13504 (11,6,59545,'Gift of the Naaru'),
13505 (11,6,59879,'Blood Plague'),
13506 (11,6,59921,'Frost Fever'),
13507 (11,6,61437,'Opening'),
13508 (11,6,61455,'Runic Focus'),
13509 (11,7,81,'Dodge'),
13510 (11,7,107,'Block'),
13511 (11,7,198,'One-Handed Maces'),
13512 (11,7,203,'Unarmed'),
13513 (11,7,204,'Defense'),
13514 (11,7,227,'Staves'),
13515 (11,7,331,'Healing Wave'),
13516 (11,7,403,'Lightning Bolt'),
13517 (11,7,522,'SPELLDEFENSE (DND)'),
13518 (11,7,668,'Language Common'),
13519 (11,7,1843,'Disarm'),
13520 (11,7,2382,'Generic'),
13521 (11,7,2479,'Honorless Target'),
13522 (11,7,3050,'Detect'),
13523 (11,7,3365,'Opening'),
13524 (11,7,6233,'Closing'),
13525 (11,7,6246,'Closing'),
13526 (11,7,6247,'Opening'),
13527 (11,7,6477,'Opening'),
13528 (11,7,6478,'Opening'),
13529 (11,7,6603,'Attack'),
13530 (11,7,7266,'Duel'),
13531 (11,7,7267,'Grovel'),
13532 (11,7,7355,'Stuck'),
13533 (11,7,8386,'Attacking'),
13534 (11,7,9077,'Leather'),
13535 (11,7,9078,'Cloth'),
13536 (11,7,9116,'Shield'),
13537 (11,7,9125,'Generic'),
13538 (11,7,21651,'Opening'),
13539 (11,7,21652,'Closing'),
13540 (11,7,22027,'Remove Insignia'),
13541 (11,7,22810,'Opening - No Text'),
13542 (11,7,27763,'Totem'),
13543 (11,7,28875,'Gemcutting'),
13544 (11,7,28878,'Inspiring Presence'),
13545 (11,7,29932,'Language Draenei'),
13546 (11,7,45927,'Summon Friend'),
13547 (11,7,59221,'Shadow Resistance'),
13548 (11,7,59547,'Gift of the Naaru'),
13549 (11,7,61437,'Opening'),
13550 (11,8,81,'Dodge'),
13551 (11,8,133,'Fireball'),
13552 (11,8,168,'Frost Armor'),
13553 (11,8,203,'Unarmed'),
13554 (11,8,204,'Defense'),
13555 (11,8,227,'Staves'),
13556 (11,8,522,'SPELLDEFENSE (DND)'),
13557 (11,8,668,'Language Common'),
13558 (11,8,1843,'Disarm'),
13559 (11,8,2382,'Generic'),
13560 (11,8,2479,'Honorless Target'),
13561 (11,8,3050,'Detect'),
13562 (11,8,3365,'Opening'),
13563 (11,8,5009,'Wands'),
13564 (11,8,5019,'Shoot'),
13565 (11,8,6233,'Closing'),
13566 (11,8,6246,'Closing'),
13567 (11,8,6247,'Opening'),
13568 (11,8,6477,'Opening'),
13569 (11,8,6478,'Opening'),
13570 (11,8,6603,'Attack'),
13571 (11,8,7266,'Duel'),
13572 (11,8,7267,'Grovel'),
13573 (11,8,7355,'Stuck'),
13574 (11,8,8386,'Attacking'),
13575 (11,8,9078,'Cloth'),
13576 (11,8,9125,'Generic'),
13577 (11,8,21651,'Opening'),
13578 (11,8,21652,'Closing'),
13579 (11,8,22027,'Remove Insignia'),
13580 (11,8,22810,'Opening - No Text'),
13581 (11,8,28875,'Gemcutting'),
13582 (11,8,28878,'Inspiring Presence'),
13583 (11,8,29932,'Language Draenei'),
13584 (11,8,45927,'Summon Friend'),
13585 (11,8,59221,'Shadow Resistance'),
13586 (11,8,59548,'Gift of the Naaru'),
13587 (11,8,61437,'Opening');
13588 /*!40000 ALTER TABLE `playercreateinfo_spell` ENABLE KEYS */;
13589 UNLOCK TABLES;
13592 -- Table structure for table `points_of_interest`
13595 DROP TABLE IF EXISTS `points_of_interest`;
13596 CREATE TABLE `points_of_interest` (
13597   `entry` mediumint(8) unsigned NOT NULL default '0',
13598   `x` float NOT NULL default '0',
13599   `y` float NOT NULL default '0',
13600   `icon` mediumint(8) unsigned NOT NULL default '0',
13601   `flags` mediumint(8) unsigned NOT NULL default '0',
13602   `data` mediumint(8) unsigned NOT NULL default '0',
13603   `icon_name` text NOT NULL,
13604   PRIMARY KEY  (`entry`)
13605 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13608 -- Dumping data for table `points_of_interest`
13611 LOCK TABLES `points_of_interest` WRITE;
13612 /*!40000 ALTER TABLE `points_of_interest` DISABLE KEYS */;
13613 /*!40000 ALTER TABLE `points_of_interest` ENABLE KEYS */;
13614 UNLOCK TABLES;
13618 -- Table structure for table `pool_creature`
13621 DROP TABLE IF EXISTS `pool_creature`;
13622 CREATE TABLE `pool_creature` (
13623   `guid` int(10) unsigned NOT NULL default '0',
13624   `pool_entry` mediumint(8) unsigned NOT NULL default '0',
13625   `chance` float unsigned NOT NULL default '0',
13626   `description` varchar(255) NOT NULL,
13627   PRIMARY KEY  (`pool_entry`,`guid`),
13628   INDEX `idx_guid`(`guid`)
13629 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13633 -- Dumping data for table `pool_creature`
13636 LOCK TABLES `pool_creature` WRITE;
13637 /*!40000 ALTER TABLE `pool_creature` DISABLE KEYS */;
13638 /*!40000 ALTER TABLE `pool_creature` ENABLE KEYS */;
13639 UNLOCK TABLES;
13642 -- Table structure for table `pool_gameobject`
13645 DROP TABLE IF EXISTS `pool_gameobject`;
13646 CREATE TABLE `pool_gameobject` (
13647   `guid` int(10) unsigned NOT NULL default '0',
13648   `pool_entry` mediumint(8) unsigned NOT NULL default '0',
13649   `chance` float unsigned NOT NULL default '0',
13650   `description` varchar(255) NOT NULL,
13651   PRIMARY KEY  (`guid`,`pool_entry`),
13652   INDEX `idx_guid`(`guid`)
13653 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13656 -- Dumping data for table `pool_gameobject`
13659 LOCK TABLES `pool_gameobject` WRITE;
13660 /*!40000 ALTER TABLE `pool_gameobject` DISABLE KEYS */;
13661 /*!40000 ALTER TABLE `pool_gameobject` ENABLE KEYS */;
13662 UNLOCK TABLES;
13665 -- Table structure for table `pool_pool`
13668 DROP TABLE IF EXISTS `pool_pool`;
13669 CREATE TABLE `pool_pool` (
13670   `pool_id` mediumint(8) unsigned NOT NULL default '0',
13671   `mother_pool` mediumint(8) unsigned NOT NULL default '0',
13672   `chance` float NOT NULL default '0',
13673   `description` varchar(255) NOT NULL,
13674   PRIMARY KEY  (`pool_id`,`mother_pool`)
13675 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13678 -- Dumping data for table `pool_pool`
13681 LOCK TABLES `pool_pool` WRITE;
13682 /*!40000 ALTER TABLE `pool_pool` DISABLE KEYS */;
13683 /*!40000 ALTER TABLE `pool_pool` ENABLE KEYS */;
13684 UNLOCK TABLES;
13687 -- Table structure for table `pool_template`
13690 DROP TABLE IF EXISTS `pool_template`;
13691 CREATE TABLE `pool_template` (
13692   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Pool entry',
13693   `max_limit` int(10) unsigned NOT NULL default '0' COMMENT 'Max number of objects (0) is no limit',
13694   `description` varchar(255) NOT NULL,
13695   PRIMARY KEY  (`entry`)
13696 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13699 -- Dumping data for table `pool_template`
13702 LOCK TABLES `pool_template` WRITE;
13703 /*!40000 ALTER TABLE `pool_template` DISABLE KEYS */;
13704 /*!40000 ALTER TABLE `pool_template` ENABLE KEYS */;
13705 UNLOCK TABLES;
13708 -- Table structure for table `game_event_pool`
13711 DROP TABLE IF EXISTS `game_event_pool`;
13712 CREATE TABLE `game_event_pool` (
13713   `pool_entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Id of the pool',
13714   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
13715   PRIMARY KEY  (`pool_entry`)
13716 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13719 -- Dumping data for table `game_event_pool`
13722 LOCK TABLES `game_event_pool` WRITE;
13723 /*!40000 ALTER TABLE `game_event_pool` DISABLE KEYS */;
13724 /*!40000 ALTER TABLE `game_event_pool` ENABLE KEYS */;
13725 UNLOCK TABLES;
13728 -- Table structure for table `prospecting_loot_template`
13731 DROP TABLE IF EXISTS `prospecting_loot_template`;
13732 CREATE TABLE `prospecting_loot_template` (
13733   `entry` mediumint(8) unsigned NOT NULL default '0',
13734   `item` mediumint(8) unsigned NOT NULL default '0',
13735   `ChanceOrQuestChance` float NOT NULL default '100',
13736   `groupid` tinyint(3) unsigned NOT NULL default '0',
13737   `mincountOrRef` mediumint(9) NOT NULL default '1',
13738   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13739   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13740   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13741   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13742   PRIMARY KEY  (`entry`,`item`)
13743 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13746 -- Dumping data for table `prospecting_loot_template`
13749 LOCK TABLES `prospecting_loot_template` WRITE;
13750 /*!40000 ALTER TABLE `prospecting_loot_template` DISABLE KEYS */;
13751 /*!40000 ALTER TABLE `prospecting_loot_template` ENABLE KEYS */;
13752 UNLOCK TABLES;
13755 -- Table structure for table `quest_end_scripts`
13758 DROP TABLE IF EXISTS `quest_end_scripts`;
13759 CREATE TABLE `quest_end_scripts` (
13760   `id` mediumint(8) unsigned NOT NULL default '0',
13761   `delay` int(10) unsigned NOT NULL default '0',
13762   `command` mediumint(8) unsigned NOT NULL default '0',
13763   `datalong` mediumint(8) unsigned NOT NULL default '0',
13764   `datalong2` int(10) unsigned NOT NULL default '0',
13765   `datalong3` int(10) unsigned NOT NULL default '0',
13766   `datalong4` int(10) unsigned NOT NULL default '0',
13767   `data_flags` tinyint(3) unsigned NOT NULL default '0',
13768   `dataint` int(11) NOT NULL default '0',
13769   `x` float NOT NULL default '0',
13770   `y` float NOT NULL default '0',
13771   `z` float NOT NULL default '0',
13772   `o` float NOT NULL default '0'
13773 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13776 -- Dumping data for table `quest_end_scripts`
13779 LOCK TABLES `quest_end_scripts` WRITE;
13780 /*!40000 ALTER TABLE `quest_end_scripts` DISABLE KEYS */;
13781 /*!40000 ALTER TABLE `quest_end_scripts` ENABLE KEYS */;
13782 UNLOCK TABLES;
13785 -- Table structure for table `quest_poi`
13788 DROP TABLE IF EXISTS `quest_poi`;
13789 CREATE TABLE `quest_poi` (
13790   `questId` mediumint(8) unsigned NOT NULL DEFAULT '0',
13791   `poiId` tinyint(3) NOT NULL DEFAULT '0',
13792   `objIndex` int(11) NOT NULL DEFAULT '0',
13793   `mapId` int(11) unsigned NOT NULL DEFAULT '0',
13794   `mapAreaId` mediumint(8) unsigned NOT NULL DEFAULT '0',
13795   `floorId` tinyint(3) unsigned NOT NULL DEFAULT '0',
13796   `unk3` int(11) unsigned NOT NULL DEFAULT '0',
13797   `unk4` int(11) unsigned NOT NULL DEFAULT '0',
13798   PRIMARY KEY (`questId`,`poiId`)
13799 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13802 -- Dumping data for table `quest_poi`
13805 LOCK TABLES `quest_poi` WRITE;
13806 /*!40000 ALTER TABLE `quest_poi` DISABLE KEYS */;
13807 /*!40000 ALTER TABLE `quest_poi` ENABLE KEYS */;
13808 UNLOCK TABLES;
13811 -- Table structure for table `quest_poi_points`
13814 DROP TABLE IF EXISTS `quest_poi_points`;
13815 CREATE TABLE `quest_poi_points` (
13816   `questId` mediumint(8) unsigned NOT NULL DEFAULT '0',
13817   `poiId` tinyint(3) NOT NULL DEFAULT '0',
13818   `x` int(11) NOT NULL DEFAULT '0',
13819   `y` int(11) NOT NULL DEFAULT '0',
13820   KEY `idx_poip` (`questId`,`poiId`)
13821 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13824 -- Dumping data for table `quest_poi_points`
13827 LOCK TABLES `quest_poi_points` WRITE;
13828 /*!40000 ALTER TABLE `quest_poi_points` DISABLE KEYS */;
13829 /*!40000 ALTER TABLE `quest_poi_points` ENABLE KEYS */;
13830 UNLOCK TABLES;
13833 -- Table structure for table `quest_start_scripts`
13836 DROP TABLE IF EXISTS `quest_start_scripts`;
13837 CREATE TABLE `quest_start_scripts` (
13838   `id` mediumint(8) unsigned NOT NULL default '0',
13839   `delay` int(10) unsigned NOT NULL default '0',
13840   `command` mediumint(8) unsigned NOT NULL default '0',
13841   `datalong` mediumint(8) unsigned NOT NULL default '0',
13842   `datalong2` int(10) unsigned NOT NULL default '0',
13843   `datalong3` int(10) unsigned NOT NULL default '0',
13844   `datalong4` int(10) unsigned NOT NULL default '0',
13845   `data_flags` tinyint(3) unsigned NOT NULL default '0',
13846   `dataint` int(11) NOT NULL default '0',
13847   `x` float NOT NULL default '0',
13848   `y` float NOT NULL default '0',
13849   `z` float NOT NULL default '0',
13850   `o` float NOT NULL default '0'
13851 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13854 -- Dumping data for table `quest_start_scripts`
13857 LOCK TABLES `quest_start_scripts` WRITE;
13858 /*!40000 ALTER TABLE `quest_start_scripts` DISABLE KEYS */;
13859 /*!40000 ALTER TABLE `quest_start_scripts` ENABLE KEYS */;
13860 UNLOCK TABLES;
13863 -- Table structure for table `quest_template`
13866 DROP TABLE IF EXISTS `quest_template`;
13867 CREATE TABLE `quest_template` (
13868   `entry` mediumint(8) unsigned NOT NULL default '0',
13869   `Method` tinyint(3) unsigned NOT NULL default '2',
13870   `ZoneOrSort` smallint(6) NOT NULL default '0',
13871   `SkillOrClass` smallint(6) NOT NULL default '0',
13872   `MinLevel` tinyint(3) unsigned NOT NULL default '0',
13873   `QuestLevel` smallint(6) NOT NULL default '0',
13874   `Type` smallint(5) unsigned NOT NULL default '0',
13875   `RequiredRaces` smallint(5) unsigned NOT NULL default '0',
13876   `RequiredSkillValue` smallint(5) unsigned NOT NULL default '0',
13877   `RepObjectiveFaction` smallint(5) unsigned NOT NULL default '0',
13878   `RepObjectiveValue` mediumint(9) NOT NULL default '0',
13879   `RequiredMinRepFaction` smallint(5) unsigned NOT NULL default '0',
13880   `RequiredMinRepValue` mediumint(9) NOT NULL default '0',
13881   `RequiredMaxRepFaction` smallint(5) unsigned NOT NULL default '0',
13882   `RequiredMaxRepValue` mediumint(9) NOT NULL default '0',
13883   `SuggestedPlayers` tinyint(3) unsigned NOT NULL default '0',
13884   `LimitTime` int(10) unsigned NOT NULL default '0',
13885   `QuestFlags` mediumint(8) unsigned NOT NULL default '0',
13886   `SpecialFlags` tinyint(3) unsigned NOT NULL default '0',
13887   `CharTitleId` tinyint(3) unsigned NOT NULL default '0',
13888   `PlayersSlain` tinyint(3) unsigned NOT NULL default '0',
13889   `BonusTalents` tinyint(3) unsigned NOT NULL default '0',
13890   `PrevQuestId` mediumint(9) NOT NULL default '0',
13891   `NextQuestId` mediumint(9) NOT NULL default '0',
13892   `ExclusiveGroup` mediumint(9) NOT NULL default '0',
13893   `NextQuestInChain` mediumint(8) unsigned NOT NULL default '0',
13894   `RewXPId` tinyint(3) unsigned NOT NULL default '0',
13895   `SrcItemId` mediumint(8) unsigned NOT NULL default '0',
13896   `SrcItemCount` tinyint(3) unsigned NOT NULL default '0',
13897   `SrcSpell` mediumint(8) unsigned NOT NULL default '0',
13898   `Title` text,
13899   `Details` text,
13900   `Objectives` text,
13901   `OfferRewardText` text,
13902   `RequestItemsText` text,
13903   `EndText` text,
13904   `CompletedText` text,
13905   `ObjectiveText1` text,
13906   `ObjectiveText2` text,
13907   `ObjectiveText3` text,
13908   `ObjectiveText4` text,
13909   `ReqItemId1` mediumint(8) unsigned NOT NULL default '0',
13910   `ReqItemId2` mediumint(8) unsigned NOT NULL default '0',
13911   `ReqItemId3` mediumint(8) unsigned NOT NULL default '0',
13912   `ReqItemId4` mediumint(8) unsigned NOT NULL default '0',
13913   `ReqItemId5` mediumint(8) unsigned NOT NULL default '0',
13914   `ReqItemId6` mediumint(8) unsigned NOT NULL default '0',
13915   `ReqItemCount1` smallint(5) unsigned NOT NULL default '0',
13916   `ReqItemCount2` smallint(5) unsigned NOT NULL default '0',
13917   `ReqItemCount3` smallint(5) unsigned NOT NULL default '0',
13918   `ReqItemCount4` smallint(5) unsigned NOT NULL default '0',
13919   `ReqItemCount5` smallint(5) unsigned NOT NULL default '0',
13920   `ReqItemCount6` smallint(5) unsigned NOT NULL default '0',
13921   `ReqSourceId1` mediumint(8) unsigned NOT NULL default '0',
13922   `ReqSourceId2` mediumint(8) unsigned NOT NULL default '0',
13923   `ReqSourceId3` mediumint(8) unsigned NOT NULL default '0',
13924   `ReqSourceId4` mediumint(8) unsigned NOT NULL default '0',
13925   `ReqSourceCount1` smallint(5) unsigned NOT NULL default '0',
13926   `ReqSourceCount2` smallint(5) unsigned NOT NULL default '0',
13927   `ReqSourceCount3` smallint(5) unsigned NOT NULL default '0',
13928   `ReqSourceCount4` smallint(5) unsigned NOT NULL default '0',
13929   `ReqCreatureOrGOId1` mediumint(9) NOT NULL default '0',
13930   `ReqCreatureOrGOId2` mediumint(9) NOT NULL default '0',
13931   `ReqCreatureOrGOId3` mediumint(9) NOT NULL default '0',
13932   `ReqCreatureOrGOId4` mediumint(9) NOT NULL default '0',
13933   `ReqCreatureOrGOCount1` smallint(5) unsigned NOT NULL default '0',
13934   `ReqCreatureOrGOCount2` smallint(5) unsigned NOT NULL default '0',
13935   `ReqCreatureOrGOCount3` smallint(5) unsigned NOT NULL default '0',
13936   `ReqCreatureOrGOCount4` smallint(5) unsigned NOT NULL default '0',
13937   `ReqSpellCast1` mediumint(8) unsigned NOT NULL default '0',
13938   `ReqSpellCast2` mediumint(8) unsigned NOT NULL default '0',
13939   `ReqSpellCast3` mediumint(8) unsigned NOT NULL default '0',
13940   `ReqSpellCast4` mediumint(8) unsigned NOT NULL default '0',
13941   `RewChoiceItemId1` mediumint(8) unsigned NOT NULL default '0',
13942   `RewChoiceItemId2` mediumint(8) unsigned NOT NULL default '0',
13943   `RewChoiceItemId3` mediumint(8) unsigned NOT NULL default '0',
13944   `RewChoiceItemId4` mediumint(8) unsigned NOT NULL default '0',
13945   `RewChoiceItemId5` mediumint(8) unsigned NOT NULL default '0',
13946   `RewChoiceItemId6` mediumint(8) unsigned NOT NULL default '0',
13947   `RewChoiceItemCount1` smallint(5) unsigned NOT NULL default '0',
13948   `RewChoiceItemCount2` smallint(5) unsigned NOT NULL default '0',
13949   `RewChoiceItemCount3` smallint(5) unsigned NOT NULL default '0',
13950   `RewChoiceItemCount4` smallint(5) unsigned NOT NULL default '0',
13951   `RewChoiceItemCount5` smallint(5) unsigned NOT NULL default '0',
13952   `RewChoiceItemCount6` smallint(5) unsigned NOT NULL default '0',
13953   `RewItemId1` mediumint(8) unsigned NOT NULL default '0',
13954   `RewItemId2` mediumint(8) unsigned NOT NULL default '0',
13955   `RewItemId3` mediumint(8) unsigned NOT NULL default '0',
13956   `RewItemId4` mediumint(8) unsigned NOT NULL default '0',
13957   `RewItemCount1` smallint(5) unsigned NOT NULL default '0',
13958   `RewItemCount2` smallint(5) unsigned NOT NULL default '0',
13959   `RewItemCount3` smallint(5) unsigned NOT NULL default '0',
13960   `RewItemCount4` smallint(5) unsigned NOT NULL default '0',
13961   `RewRepFaction1` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13962   `RewRepFaction2` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13963   `RewRepFaction3` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13964   `RewRepFaction4` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13965   `RewRepFaction5` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13966   `RewRepValueId1` tinyint(3) NOT NULL default '0',
13967   `RewRepValueId2` tinyint(3) NOT NULL default '0',
13968   `RewRepValueId3` tinyint(3) NOT NULL default '0',
13969   `RewRepValueId4` tinyint(3) NOT NULL default '0',
13970   `RewRepValueId5` tinyint(3) NOT NULL default '0',
13971   `RewRepValue1` mediumint(9) NOT NULL default '0',
13972   `RewRepValue2` mediumint(9) NOT NULL default '0',
13973   `RewRepValue3` mediumint(9) NOT NULL default '0',
13974   `RewRepValue4` mediumint(9) NOT NULL default '0',
13975   `RewRepValue5` mediumint(9) NOT NULL default '0',
13976   `RewHonorAddition` int unsigned NOT NULL default '0',
13977   `RewHonorMultiplier` float NOT NULL default '0',
13978   `RewOrReqMoney` int(11) NOT NULL default '0',
13979   `RewMoneyMaxLevel` int(10) unsigned NOT NULL default '0',
13980   `RewSpell` mediumint(8) unsigned NOT NULL default '0',
13981   `RewSpellCast` mediumint(8) unsigned NOT NULL default '0',
13982   `RewMailTemplateId` mediumint(8) unsigned NOT NULL default '0',
13983   `RewMailDelaySecs` int(11) unsigned NOT NULL default '0',
13984   `PointMapId` smallint(5) unsigned NOT NULL default '0',
13985   `PointX` float NOT NULL default '0',
13986   `PointY` float NOT NULL default '0',
13987   `PointOpt` mediumint(8) unsigned NOT NULL default '0',
13988   `DetailsEmote1` smallint(5) unsigned NOT NULL default '0',
13989   `DetailsEmote2` smallint(5) unsigned NOT NULL default '0',
13990   `DetailsEmote3` smallint(5) unsigned NOT NULL default '0',
13991   `DetailsEmote4` smallint(5) unsigned NOT NULL default '0',
13992   `DetailsEmoteDelay1` int(11) unsigned NOT NULL default '0',
13993   `DetailsEmoteDelay2` int(11) unsigned NOT NULL default '0',
13994   `DetailsEmoteDelay3` int(11) unsigned NOT NULL default '0',
13995   `DetailsEmoteDelay4` int(11) unsigned NOT NULL default '0',
13996   `IncompleteEmote` smallint(5) unsigned NOT NULL default '0',
13997   `CompleteEmote` smallint(5) unsigned NOT NULL default '0',
13998   `OfferRewardEmote1` smallint(5) unsigned NOT NULL default '0',
13999   `OfferRewardEmote2` smallint(5) unsigned NOT NULL default '0',
14000   `OfferRewardEmote3` smallint(5) unsigned NOT NULL default '0',
14001   `OfferRewardEmote4` smallint(5) unsigned NOT NULL default '0',
14002   `OfferRewardEmoteDelay1` int(11) unsigned NOT NULL default '0',
14003   `OfferRewardEmoteDelay2` int(11) unsigned NOT NULL default '0',
14004   `OfferRewardEmoteDelay3` int(11) unsigned NOT NULL default '0',
14005   `OfferRewardEmoteDelay4` int(11) unsigned NOT NULL default '0',
14006   `StartScript` mediumint(8) unsigned NOT NULL default '0',
14007   `CompleteScript` mediumint(8) unsigned NOT NULL default '0',
14008   PRIMARY KEY  (`entry`)
14009 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Quest System';
14012 -- Dumping data for table `quest_template`
14015 LOCK TABLES `quest_template` WRITE;
14016 /*!40000 ALTER TABLE `quest_template` DISABLE KEYS */;
14017 /*!40000 ALTER TABLE `quest_template` ENABLE KEYS */;
14018 UNLOCK TABLES;
14021 -- Table structure for table `reference_loot_template`
14024 DROP TABLE IF EXISTS `reference_loot_template`;
14025 CREATE TABLE `reference_loot_template` (
14026   `entry` mediumint(8) unsigned NOT NULL default '0',
14027   `item` mediumint(8) unsigned NOT NULL default '0',
14028   `ChanceOrQuestChance` float NOT NULL default '100',
14029   `groupid` tinyint(3) unsigned NOT NULL default '0',
14030   `mincountOrRef` mediumint(9) NOT NULL default '1',
14031   `maxcount` tinyint(3) unsigned NOT NULL default '1',
14032   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
14033   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
14034   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
14035   PRIMARY KEY  (`entry`,`item`)
14036 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
14039 -- Dumping data for table `reference_loot_template`
14042 LOCK TABLES `reference_loot_template` WRITE;
14043 /*!40000 ALTER TABLE `reference_loot_template` DISABLE KEYS */;
14044 /*!40000 ALTER TABLE `reference_loot_template` ENABLE KEYS */;
14045 UNLOCK TABLES;
14048 -- Table structure for table `reserved_name`
14051 DROP TABLE IF EXISTS `reserved_name`;
14052 CREATE TABLE `reserved_name` (
14053   `name` varchar(12) NOT NULL default '',
14054   PRIMARY KEY  (`name`)
14055 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player Reserved Names';
14058 -- Dumping data for table `reserved_name`
14061 LOCK TABLES `reserved_name` WRITE;
14062 /*!40000 ALTER TABLE `reserved_name` DISABLE KEYS */;
14063 /*!40000 ALTER TABLE `reserved_name` ENABLE KEYS */;
14064 UNLOCK TABLES;
14067 -- Table structure for table `skill_discovery_template`
14070 DROP TABLE IF EXISTS `skill_discovery_template`;
14071 CREATE TABLE `skill_discovery_template` (
14072   `spellId` mediumint(8) unsigned NOT NULL default '0' COMMENT 'SpellId of the discoverable spell',
14073   `reqSpell` mediumint(8) unsigned NOT NULL default '0' COMMENT 'spell requirement',
14074   `reqSkillValue` smallint(5) unsigned NOT NULL default '0' COMMENT 'skill points requirement',
14075   `chance` float NOT NULL default '0' COMMENT 'chance to discover',
14076   PRIMARY KEY (`spellId`,`reqSpell`)
14077 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Discovery System';
14080 -- Dumping data for table `skill_discovery_template`
14083 LOCK TABLES `skill_discovery_template` WRITE;
14084 /*!40000 ALTER TABLE `skill_discovery_template` DISABLE KEYS */;
14085 /*!40000 ALTER TABLE `skill_discovery_template` ENABLE KEYS */;
14086 UNLOCK TABLES;
14089 -- Table structure for table `skill_extra_item_template`
14092 DROP TABLE IF EXISTS `skill_extra_item_template`;
14093 CREATE TABLE `skill_extra_item_template` (
14094   `spellId` mediumint(8) unsigned NOT NULL default '0' COMMENT 'SpellId of the item creation spell',
14095   `requiredSpecialization` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Specialization spell id',
14096   `additionalCreateChance` float NOT NULL default '0' COMMENT 'chance to create add',
14097   `additionalMaxNum` tinyint(3) unsigned NOT NULL default '0' COMMENT 'max num of adds',
14098   PRIMARY KEY  (`spellId`)
14099 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Specialization System';
14102 -- Dumping data for table `skill_extra_item_template`
14105 LOCK TABLES `skill_extra_item_template` WRITE;
14106 /*!40000 ALTER TABLE `skill_extra_item_template` DISABLE KEYS */;
14107 /*!40000 ALTER TABLE `skill_extra_item_template` ENABLE KEYS */;
14108 UNLOCK TABLES;
14111 -- Table structure for table `skill_fishing_base_level`
14114 DROP TABLE IF EXISTS `skill_fishing_base_level`;
14115 CREATE TABLE `skill_fishing_base_level` (
14116   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Area identifier',
14117   `skill` smallint(6) NOT NULL default '0' COMMENT 'Base skill level requirement',
14118   PRIMARY KEY  (`entry`)
14119 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Fishing system';
14122 -- Dumping data for table `skill_fishing_base_level`
14125 LOCK TABLES `skill_fishing_base_level` WRITE;
14126 /*!40000 ALTER TABLE `skill_fishing_base_level` DISABLE KEYS */;
14127 /*!40000 ALTER TABLE `skill_fishing_base_level` ENABLE KEYS */;
14128 UNLOCK TABLES;
14131 -- Table structure for table `skinning_loot_template`
14134 DROP TABLE IF EXISTS `skinning_loot_template`;
14135 CREATE TABLE `skinning_loot_template` (
14136   `entry` mediumint(8) unsigned NOT NULL default '0',
14137   `item` mediumint(8) unsigned NOT NULL default '0',
14138   `ChanceOrQuestChance` float NOT NULL default '100',
14139   `groupid` tinyint(3) unsigned NOT NULL default '0',
14140   `mincountOrRef` mediumint(9) NOT NULL default '1',
14141   `maxcount` tinyint(3) unsigned NOT NULL default '1',
14142   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
14143   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
14144   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
14145   PRIMARY KEY  (`entry`,`item`)
14146 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
14149 -- Dumping data for table `skinning_loot_template`
14152 LOCK TABLES `skinning_loot_template` WRITE;
14153 /*!40000 ALTER TABLE `skinning_loot_template` DISABLE KEYS */;
14154 /*!40000 ALTER TABLE `skinning_loot_template` ENABLE KEYS */;
14155 UNLOCK TABLES;
14158 -- Table structure for table `spell_area`
14161 DROP TABLE IF EXISTS `spell_area`;
14162 CREATE TABLE `spell_area` (
14163   `spell`              mediumint(8) unsigned NOT NULL default '0',
14164   `area`               mediumint(8) unsigned NOT NULL default '0',
14165   `quest_start`        mediumint(8) unsigned NOT NULL default '0',
14166   `quest_start_active` tinyint(1) unsigned NOT NULL default '0',
14167   `quest_end`          mediumint(8) unsigned NOT NULL default '0',
14168   `aura_spell`         mediumint(8) NOT NULL default '0',
14169   `racemask`           mediumint(8) unsigned NOT NULL default '0',
14170   `gender`             tinyint(1) unsigned NOT NULL default '2',
14171   `autocast`           tinyint(1) unsigned NOT NULL default '0',
14172   PRIMARY KEY  (`spell`,`area`,`quest_start`,`quest_start_active`,`aura_spell`,`racemask`,`gender`)
14173 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
14176 -- Dumping data for table `spell_area`
14179 LOCK TABLES `spell_area` WRITE;
14180 /*!40000 ALTER TABLE `spell_area` DISABLE KEYS */;
14181 /*!40000 ALTER TABLE `spell_area` ENABLE KEYS */;
14182 UNLOCK TABLES;
14185 -- Table structure for `spell_bonus_data`
14188 DROP TABLE IF EXISTS `spell_bonus_data`;
14189 CREATE TABLE `spell_bonus_data` (
14190   `entry` mediumint(8) unsigned NOT NULL,
14191   `direct_bonus` float NOT NULL default '0',
14192   `dot_bonus` float NOT NULL default '0',
14193   `ap_bonus` float NOT NULL default '0',
14194   `comments` varchar(255) default NULL,
14195   PRIMARY KEY  (`entry`)
14196 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
14199 -- Dumping data for table `spell_bonus_data`
14202 LOCK TABLES `spell_bonus_data` WRITE;
14203 /*!40000 ALTER TABLE `spell_bonus_data` DISABLE KEYS */;
14204 INSERT INTO `spell_bonus_data` VALUES
14205 /* Death Knight */
14206 (48721, 0,      0,       0.04,  'Death Knight - Blood Boil'),
14207 (55078, 0,      0,       0.055, 'Death Knight - Blood Plague Dummy Proc'),
14208 (50444, 0,      0,       0.105, 'Death Knight - Corpse Explosion Triggered'),
14209 (52212, 0,      0,       0.0475,'Death Knight - Death and Decay Triggered'),
14210 (47632, 0,      0,       0.15,  'Death Knight - Death Coil Damage'),
14211 (47633, 0,      0,       0.15,  'Death Knight - Death Coil Heal'),
14212 (55095, 0,      0,       0.055, 'Death Knight - Frost Fever'),
14213 (49184, 0,      0,       0.1,   'Death Knight - Howling Blast'),
14214 (45477, 0,      0,       0.1,   'Death Knight - Icy Touch'),
14215 (56903, 0,      0,       0,     'Death Knight - Lichflame'),
14216 (50842, 0,      0,       0.04,  'Death Knight - Pestilence'),
14217 (50401, 0,      0,       0,     'Death Knight - Razor Frost'),
14218 (47476, 0,      0,       0.06,  'Death Knight - Strangulate'),
14219 (50536, 0,      0,       0.013, 'Death Knight - Unholy Blight Triggered'),
14220 (48743, 0,      0,       0,     'Death Knight - Death Pact'),
14221 /* Druid */
14222 (5185,  1.6104, 0,       0,     'Druid - Healing Touch'),
14223 (339,   0,      0.1,     0,     'Druid - Entangling Roots'),
14224 (60089, 0,      0,       0.15,  'Druid - Faerie Fire (Feral) Triggered'),
14225 (42231, 0.12898,0,       0,     'Druid - Hurricane Triggered'),
14226 (5570,  0,      0.2,     0,     'Druid - Insect Swarm'),
14227 (33763, 0,      0.09518, 0,     'Druid - Lifebloom'),
14228 (8921,  0.1515, 0.13,    0,     'Druid - Moonfire'),
14229 (50464, 0.6611, 0,       0,     'Druid - Nourish'),
14230 (8936,  0.539,  0.188,   0,     'Druid - Regrowth'),
14231 (50288, 0.05,   0,       0,     'Druid - Starfall'),
14232 (50294, 0.012,  0,       0,     'Druid - Starfall AOE'),
14233 (18562, 0,      0,       0,     'Druid - Swiftmend'),
14234 (44203, 0.538,  0,       0,     'Druid - Tranquility Triggered'),
14235 (48438, 0,      0.11505, 0,     'Druid - Wild Growth'),
14236 (5176,  0.5714, 0,       0,     'Druid - Wrath'),
14237 /* Generic */
14238 (54757, 0,      0,       0,     'Generic - Pyro Rocket'),
14239 /* Mage */
14240 (44425, 0.714286,0,      0,     'Mage - Arcane Barrage'),
14241 (7268,  0.2857, 0,       0,     'Mage - Arcane Missiles Triggered Spell'),
14242 (42208, 0.1437, 0,       0,     'Mage - Blizzard Triggered'),
14243 (133,   1,      0,       0,     'Mage - Fire Ball'),
14244 (2120,  0.2357, 0.122,   0,     'Mage - Flamestrike'),
14245 (116,   0.8143, 0,       0,     'Mage - Frost Bolt'),
14246 (44614, 0.8571, 0,       0,     'Mage - Frostfire Bolt'),
14247 (30455, 0.1429, 0,       0,     'Mage - Ice Lance'),
14248 (1463,  0.8053, 0,       0,     'Mage - Mana Shield'),
14249 (34913, 0,      0,       0,     'Mage - Molten Armor Triggered'),
14250 (11366, 1.15,   0.05,    0,     'Mage - Pyroblast'),
14251 /* Paladin */
14252 (26573, 0,      0.04,    0.04,  'Paladin - Consecration'),
14253 (879,   0.15,   0,       0.15,  'Paladin - Exorcism'),
14254 (25997, 0,      0,       0,     'Paladin - Eye for an Eye'),
14255 (19750, 1,      0,       0,     'Paladin - Flash of Light'),
14256 (53595, 0,      0,       0,     'Paladin - Hammer of the Righteous'),
14257 (635,   1.66,   0,       0,     'Paladin - Holy Light'),
14258 (20925, 0.09,   0,       0.056, 'Paladin - Holy Shield'),
14259 (2812,  0.07,   0,       0.07,  'Paladin - Holy Wrath'),
14260 (54158, 0.25,   0,       0,     'Paladin - Judgement'),
14261 (20467, 0.25,   0,       0.16,  'Paladin - Judgement of Command'),
14262 (53733, 0,      0,       0,     'Paladin - Judgement of Corruption'),
14263 (20267, 0.1,    0,       0.1,   'Paladin - Judgement of Light Proc'),
14264 (31804, 0,      0,       0,     'Paladin - Judgement of Vengeance'),
14265 (20424, 0,      0,       0,     'Paladin - Seal of Command Proc'),
14266 (53739, 0,      0,       0.003, 'Paladin - Seal of Corruption (full stack proc)'),
14267 (25742, 0.07,   0,       0.039, 'Paladin - Seal of Righteousness Dummy Proc'),
14268 (42463, 0,      0,       0.003, 'Paladin - Seal of Vengeance (full stack proc)'),
14269 (53600, 0,      0,       0,     'Paladin - Shield of Righteousness'),
14270 /* Priest */
14271 (27813, 0,      0,       0,     'Priest - Blessed Recovery'),
14272 (2944,  0,      0.1849,  0,     'Priest - Devouring Plague'),
14273 (63544, 0,      0,       0,     'Priest - Empowered Renew Triggered'),
14274 (14914, 0.5711, 0.024,   0,     'Priest - Holy Fire'),
14275 (15237, 0.1606, 0,       0,     'Priest - Holy Nova Damage'),
14276 (23455, 0.3035, 0,       0,     'Priest - Holy Nova Heal'),
14277 (63675, 0,      0,       0,     'Priest - Improved Devouring Plague Triggered'),
14278 (8129,  0,      0,       0,     'Priest - Mana Burn'),
14279 (58381, 0.257143,0,      0,     'Priest - Mind Flay Triggered'),
14280 (49821, 0.2857, 0,       0,     'Priest - Mind Sear Trigger'),
14281 (47666, 0.229,  0,       0,     'Priest - Penance dmg effect'),
14282 (47750, 0.537,  0,       0,     'Priest - Penance heal effect'),
14283 (33619, 0,      0,       0,     'Priest - Reflective Shield'),
14284 (34433, 0.65,   0,       0,     'Priest - Shadowfiend'),
14285 (585,   0.714,  0,       0,     'Priest - Smite'),
14286 (34914, 0,      0.4,     0,     'Priest - Vampiric Touch'),
14287 (64085, 1.2,    0,       0,     'Priest - Vampiric Touch Dispel'),
14288 /* Shaman */
14289 (974,   0.4762, 0,       0,     'Shaman - Earth Shield'),
14290 (379,   0,      0,       0,     'Shaman - Earth Shield Triggered'),
14291 (8042,  0.3858, 0,       0,     'Shaman - Earth Shock'),
14292 (8050,  0.2142, 0.1,     0,     'Shaman - Flame Shock'),
14293 (8026,  0.1,    0,       0,     'Shaman - Flametongue Weapon Proc'),
14294 (8056,  0.3858, 0,       0,     'Shaman - Frost Shock'),
14295 (8034,  0.1,    0,       0,     'Shaman - Frostbrand Attack Rank 1'),
14296 (52042, 0.045,  0,       0,     'Shaman - Healing Stream Totem Triggered Heal'),
14297 (331,   1.6106, 0,       0,     'Shaman - Healing Wave'),
14298 (403,   0.7143, 0,       0,     'Shaman - Lightning Bolt'),
14299 (26364, 0.33,   0,       0,     'Shaman - Lightning Shield Proc'),
14300 (8188,  0.1,    0,       0,     'Shaman - Magma Totam Passive'),
14301 (61295, 0.4,    0.18,    0,     'Shaman - Riptide'),
14302 (3606,  0.1667, 0,       0,     'Shaman - Searing Totem Attack'),
14303 /* Warlock */
14304 (17962, 0,      0,       0,     'Warlock - Conflagrate'),
14305 (172,   0,      0.2,     0,     'Warlock - Corruption'),
14306 (980,   0,      0.1,     0,     'Warlock - Curse of Agony'),
14307 (603,   0,      2,       0,     'Warlock - Curse of Doom'),
14308 (18220, 0.96,   0,       0,     'Warlock - Dark Pact'),
14309 (5138,  0,      0,       0,     'Warlock - Drain Mana'),
14310 (1120,  0,      0.4286,  0,     'Warlock - Drain Soul'),
14311 (28176, 0,      0,       0,     'Warlock - Fel Armor'),
14312 (18790, 0,      0,       0,     'Warlock - Fel Stamina'),
14313 (48181, 0.4729, 0,       0,     'Warlock - Haunt'),
14314 (755 ,  0,      0.4485,  0,     'Warlock - Health Funnel'),
14315 (1949,  0,      0.0946,  0,     'Warlock - Hellfire'),
14316 (5857,  0.1428, 0,       0,     'Warlock - Hellfire Effect on Enemy'),
14317 (348,   0.2,    0.2,     0,     'Warlock - Immolate'),
14318 (42223, 0.285714,0,      0,     'Warlock - Rain of Fire Triggered'),
14319 (27243, 0.2129, 0.25,    0,     'Warlock - Seed of Corruption'),
14320 (6229,  0.3,    0,       0,     'Warlock - Shadow Ward'),
14321 (47960, 0,      0.06666, 0,     'Warlock - Shadowflame DoT'),
14322 (47897, 0.1064, 0,       0,     'Warlock - Shadowflame Direct'),
14323 (63106, 0,      0,       0,     'Warlock - Siphon Life Triggered'),
14324 (6353,  1.15,   0,       0,     'Warlock - Soul Fire'),
14325 (30294, 0,      0,       0,     'Warlock - Soul Leech'),
14326 (31117, 1.8,    0,       0,     'Warlock - Unstable Affliction Dispell'),
14327 /* Item */
14328 (56131, 0,      0,       0,     'Item - Glyph of Dispel Magic'),
14329 (56160, 0,      0,       0,     'Item - Glyph of Power Word: Shield'),
14330 (46567, 0,      0,       0,     'Item - Goblin Rocket Launcher'),
14331 (31024, 0,      0,       0,     'Item - Living Ruby Pedant'),
14332 (17712, 0,      0,       0,     'Item - Lifestone Healing'),
14333 (5707,  0,      0,       0,     'Item - Lifestone Regeneration'),
14334 (38395, 0,      0,       0,     'Item - Siphon Essence'),
14335 (40293, 0,      0,       0,     'Item - Siphon Essence'),
14336 (71824, 0,      0,       0,     'Item - Shaman T9 Elemental 4P Bonus');
14337 /*!40000 ALTER TABLE `spell_bonus_data` ENABLE KEYS */;
14338 UNLOCK TABLES;
14341 -- Table structure for table `spell_chain`
14344 DROP TABLE IF EXISTS `spell_chain`;
14345 CREATE TABLE `spell_chain` (
14346   `spell_id` mediumint(9) NOT NULL default '0',
14347   `prev_spell` mediumint(9) NOT NULL default '0',
14348   `first_spell` mediumint(9) NOT NULL default '0',
14349   `rank` tinyint(4) NOT NULL default '0',
14350   `req_spell` mediumint(9) NOT NULL default '0',
14351   PRIMARY KEY  (`spell_id`)
14352 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell Additinal Data';
14355 -- Dumping data for table `spell_chain`
14358 LOCK TABLES `spell_chain` WRITE;
14359 /*!40000 ALTER TABLE `spell_chain` DISABLE KEYS */;
14360 INSERT INTO spell_chain VALUES
14361 /*------------------
14362 --(0) Not associated with skills
14363 ------------------*/
14364 /* Flametongue Weapon Proc */
14365 (8026,0,8026,1,0),
14366 (8028,8026,8026,2,0),
14367 (8029,8028,8026,3,0),
14368 (10445,8029,8026,4,0),
14369 (16343,10445,8026,5,0),
14370 (16344,16343,8026,6,0),
14371 (25488,16344,8026,7,0),
14372 (58786,25488,8026,8,0),
14373 (58787,58786,8026,9,0),
14374 (58788,58787,8026,10,0),
14375 /* Frostbrand Attack */
14376 (8034,0,8034,1,0),
14377 (8037,8034,8034,2,0),
14378 (10458,8037,8034,3,0),
14379 (16352,10458,8034,4,0),
14380 (16353,16352,8034,5,0),
14381 (25501,16353,8034,6,0),
14382 (58797,25501,8034,7,0),
14383 (58798,58797,8034,8,0),
14384 (58799,58798,8034,9,0),
14385 /* Instant Poison */
14386 (8680,0,8680,1,0),
14387 (8685,8680,8680,2,0),
14388 (8689,8685,8680,3,0),
14389 (11335,8689,8680,4,0),
14390 (11336,11335,8680,5,0),
14391 (11337,11336,8680,6,0),
14392 (26890,11337,8680,7,0),
14393 (57964,26890,8680,8,0),
14394 (57965,57964,8680,9,0),
14395 /* Magma Totam Passive */
14396 (8188,0,8188,1,0),
14397 (10582,8188,8188,2,0),
14398 (10583,10582,8188,3,0),
14399 (10584,10583,8188,4,0),
14400 (25551,10584,8188,5,0),
14401 (58733,25551,8188,6,0),
14402 (58736,58733,8188,7,0),
14403 /* Searing Totem Attack */
14404 (3606,0,3606,1,0),
14405 (6350,3606,3606,2,0),
14406 (6351,6350,3606,3,0),
14407 (6352,6351,3606,4,0),
14408 (10435,6352,3606,5,0),
14409 (10436,10435,3606,6,0),
14410 (25530,10436,3606,7,0),
14411 (58700,25530,3606,8,0),
14412 (58701,58700,3606,9,0),
14413 (58702,58701,3606,10,0),
14414 /* Wound Poison */
14415 (13218,0,13218,1,0),
14416 (13222,13218,13218,2,0),
14417 (13223,13222,13218,3,0),
14418 (13224,13223,13218,4,0),
14419 (27189,13224,13218,5,0),
14420 (57974,27189,13218,6,0),
14421 (57975,57974,13218,7,0),
14422 /*------------------
14423 --(6) Frost
14424 ------------------*/
14425 /*Blizzard*/
14426 (10,0,10,1,0),
14427 (6141,10,10,2,0),
14428 (8427,6141,10,3,0),
14429 (10185,8427,10,4,0),
14430 (10186,10185,10,5,0),
14431 (10187,10186,10,6,0),
14432 (27085,10187,10,7,0),
14433 (42939,27085,10,8,0),
14434 (42940,42939,10,9,0),
14435 /* Blizzard Triggered Spell */
14436 (42208,0,42208,1,0),
14437 (42209,42208,42208,2,0),
14438 (42210,42209,42208,3,0),
14439 (42211,42210,42208,4,0),
14440 (42212,42211,42208,5,0),
14441 (42213,42212,42208,6,0),
14442 (42198,42213,42208,7,0),
14443 (42937,42198,42208,8,0),
14444 (42938,42937,42208,9,0),
14445 /*ConeofCold*/
14446 (120,0,120,1,0),
14447 (8492,120,120,2,0),
14448 (10159,8492,120,3,0),
14449 (10160,10159,120,4,0),
14450 (10161,10160,120,5,0),
14451 (27087,10161,120,6,0),
14452 (42930,27087,120,7,0),
14453 (42931,42930,120,8,0),
14454 /*FrostArmor*/
14455 (168,0,168,1,0),
14456 (7300,168,168,2,0),
14457 (7301,7300,168,3,0),
14458 /*FrostNova*/
14459 (122,0,122,1,0),
14460 (865,122,122,2,0),
14461 (6131,865,122,3,0),
14462 (10230,6131,122,4,0),
14463 (27088,10230,122,5,0),
14464 (42917,27088,122,6,0),
14465 /*FrostWard*/
14466 (6143,0,6143,1,0),
14467 (8461,6143,6143,2,0),
14468 (8462,8461,6143,3,0),
14469 (10177,8462,6143,4,0),
14470 (28609,10177,6143,5,0),
14471 (32796,28609,6143,6,0),
14472 (43012,32796,6143,7,0),
14473 /*Frostbolt*/
14474 (116,0,116,1,0),
14475 (205,116,116,2,0),
14476 (837,205,116,3,0),
14477 (7322,837,116,4,0),
14478 (8406,7322,116,5,0),
14479 (8407,8406,116,6,0),
14480 (8408,8407,116,7,0),
14481 (10179,8408,116,8,0),
14482 (10180,10179,116,9,0),
14483 (10181,10180,116,10,0),
14484 (25304,10181,116,11,0),
14485 (27071,25304,116,12,0),
14486 (27072,27071,116,13,0),
14487 (38697,27072,116,14,0),
14488 (42841,38697,116,15,0),
14489 (42842,42841,116,16,0),
14490 /*IceArmor*/
14491 (7302,0,7302,1,0),
14492 (7320,7302,7302,2,0),
14493 (10219,7320,7302,3,0),
14494 (10220,10219,7302,4,0),
14495 (27124,10220,7302,5,0),
14496 (43008,27124,7302,6,0),
14497 /*IceBarrier*/
14498 (11426,0,11426,1,0),
14499 (13031,11426,11426,2,0),
14500 (13032,13031,11426,3,0),
14501 (13033,13032,11426,4,0),
14502 (27134,13033,11426,5,0),
14503 (33405,27134,11426,6,0),
14504 (43038,33405,11426,7,0),
14505 (43039,43038,11426,8,0),
14506 /*IceLance*/
14507 (30455,0,30455,1,0),
14508 (42913,30455,30455,2,0),
14509 (42914,42913,30455,3,0),
14510 /*------------------
14511 --(8)Fire
14512 ------------------*/
14513 /*Blast Wave*/
14514 (11113,0,11113,1,0),
14515 (13018,11113,11113,2,0),
14516 (13019,13018,11113,3,0),
14517 (13020,13019,11113,4,0),
14518 (13021,13020,11113,5,0),
14519 (27133,13021,11113,6,0),
14520 (33933,27133,11113,7,0),
14521 (42944,33933,11113,8,0),
14522 (42945,42944,11113,9,0),
14523 /*Dragon's Breath*/
14524 (31661,0,31661,1,0),
14525 (33041,31661,31661,2,0),
14526 (33042,33041,31661,3,0),
14527 (33043,33042,31661,4,0),
14528 (42949,33043,31661,5,0),
14529 (42950,42949,31661,6,0),
14530 /*Fire Blast*/
14531 (2136,0,2136,1,0),
14532 (2137,2136,2136,2,0),
14533 (2138,2137,2136,3,0),
14534 (8412,2138,2136,4,0),
14535 (8413,8412,2136,5,0),
14536 (10197,8413,2136,6,0),
14537 (10199,10197,2136,7,0),
14538 (27078,10199,2136,8,0),
14539 (27079,27078,2136,9,0),
14540 (42872,27079,2136,10,0),
14541 (42873,42872,2136,11,0),
14542 /*Fire Ward*/
14543 (543,0,543,1,0),
14544 (8457,543,543,2,0),
14545 (8458,8457,543,3,0),
14546 (10223,8458,543,4,0),
14547 (10225,10223,543,5,0),
14548 (27128,10225,543,6,0),
14549 (43010,27128,543,7,0),
14550 /*Fireball*/
14551 (133,0,133,1,0),
14552 (143,133,133,2,0),
14553 (145,143,133,3,0),
14554 (3140,145,133,4,0),
14555 (8400,3140,133,5,0),
14556 (8401,8400,133,6,0),
14557 (8402,8401,133,7,0),
14558 (10148,8402,133,8,0),
14559 (10149,10148,133,9,0),
14560 (10150,10149,133,10,0),
14561 (10151,10150,133,11,0),
14562 (25306,10151,133,12,0),
14563 (27070,25306,133,13,0),
14564 (38692,27070,133,14,0),
14565 (42832,38692,133,15,0),
14566 (42833,42832,133,16,0),
14567 /*Fiery Payback*/
14568 (64353,0,64353,1,0),
14569 (64357,64353,64353,2,0),
14570 /*Flamestrike*/
14571 (2120,0,2120,1,0),
14572 (2121,2120,2120,2,0),
14573 (8422,2121,2120,3,0),
14574 (8423,8422,2120,4,0),
14575 (10215,8423,2120,5,0),
14576 (10216,10215,2120,6,0),
14577 (27086,10216,2120,7,0),
14578 (42925,27086,2120,8,0),
14579 (42926,42925,2120,9,0),
14580 /*Frostfire Bolt*/
14581 (44614,0,44614,1,0),
14582 (47610,44614,44614,2,0),
14583 /*Living Bomb*/
14584 (44457,0,44457,1,0),
14585 (55359,44457,44457,2,0),
14586 (55360,55359,44457,3,0),
14587 /*Molten Armor*/
14588 (30482,0,30482,1,0),
14589 (43045,30482,30482,2,0),
14590 (43046,43045,30482,3,0),
14591 /* Molten Armor Triggered */
14592 (34913,0,34913,1,0),
14593 (43043,34913,34913,2,0),
14594 (43044,43043,34913,3,0),
14595 /*Pyroblast*/
14596 (11366,0,11366,1,0),
14597 (12505,11366,11366,2,0),
14598 (12522,12505,11366,3,0),
14599 (12523,12522,11366,4,0),
14600 (12524,12523,11366,5,0),
14601 (12525,12524,11366,6,0),
14602 (12526,12525,11366,7,0),
14603 (18809,12526,11366,8,0),
14604 (27132,18809,11366,9,0),
14605 (33938,27132,11366,10,0),
14606 (42890,33938,11366,11,0),
14607 (42891,42890,11366,12,0),
14608 /*Scorch*/
14609 (2948,0,2948,1,0),
14610 (8444,2948,2948,2,0),
14611 (8445,8444,2948,3,0),
14612 (8446,8445,2948,4,0),
14613 (10205,8446,2948,5,0),
14614 (10206,10205,2948,6,0),
14615 (10207,10206,2948,7,0),
14616 (27073,10207,2948,8,0),
14617 (27074,27073,2948,9,0),
14618 (42858,27074,2948,10,0),
14619 (42859,42858,2948,11,0),
14620 /*------------------
14621 --(26)Arms
14622 ------------------*/
14623 /*Charge*/
14624 (100,0,100,1,0),
14625 (6178,100,100,2,0),
14626 (11578,6178,100,3,0),
14627 /*HeroicStrike*/
14628 (78,0,78,1,0),
14629 (284,78,78,2,0),
14630 (285,284,78,3,0),
14631 (1608,285,78,4,0),
14632 (11564,1608,78,5,0),
14633 (11565,11564,78,6,0),
14634 (11566,11565,78,7,0),
14635 (11567,11566,78,8,0),
14636 (25286,11567,78,9,0),
14637 (29707,25286,78,10,0),
14638 (30324,29707,78,11,0),
14639 (47449,30324,78,12,0),
14640 (47450,47449,78,13,0),
14641 /*MortalStrike*/
14642 (12294,0,12294,1,0),
14643 (21551,12294,12294,2,0),
14644 (21552,21551,12294,3,0),
14645 (21553,21552,12294,4,0),
14646 (25248,21553,12294,5,0),
14647 (30330,25248,12294,6,0),
14648 (47485,30330,12294,7,0),
14649 (47486,47485,12294,8,0),
14650 /*Rend*/
14651 (772,0,772,1,0),
14652 (6546,772,772,2,0),
14653 (6547,6546,772,3,0),
14654 (6548,6547,772,4,0),
14655 (11572,6548,772,5,0),
14656 (11573,11572,772,6,0),
14657 (11574,11573,772,7,0),
14658 (25208,11574,772,8,0),
14659 (46845,25208,772,9,0),
14660 (47465,46845,772,10,0),
14661 /*Taste for Blood*/
14662 (56636,0,56636,1,0),
14663 (56637,56636,56636,2,0),
14664 (56638,56637,56636,3,0),
14665 /*Thunder Clap*/
14666 (6343,0,6343,1,0),
14667 (8198,6343,6343,2,0),
14668 (8204,8198,6343,3,0),
14669 (8205,8204,6343,4,0),
14670 (11580,8205,6343,5,0),
14671 (11581,11580,6343,6,0),
14672 (25264,11581,6343,7,0),
14673 (47501,25264,6343,8,0),
14674 (47502,47501,6343,9,0),
14675 /*------------------
14676 -- (38) Combat (Rogue)
14677 ------------------*/
14678 /*Backstab*/
14679 (53,0,53,1,0),
14680 (2589,53,53,2,0),
14681 (2590,2589,53,3,0),
14682 (2591,2590,53,4,0),
14683 (8721,2591,53,5,0),
14684 (11279,8721,53,6,0),
14685 (11280,11279,53,7,0),
14686 (11281,11280,53,8,0),
14687 (25300,11281,53,9,0),
14688 (26863,25300,53,10,0),
14689 (48656,26863,53,11,0),
14690 (48657,48656,53,12,0),
14691 /*Evasion*/
14692 (5277,0,5277,1,0),
14693 (26669,5277,5277,2,0),
14694 /*Feint*/
14695 (1966,0,1966,1,0),
14696 (6768,1966,1966,2,0),
14697 (8637,6768,1966,3,0),
14698 (11303,8637,1966,4,0),
14699 (25302,11303,1966,5,0),
14700 (27448,25302,1966,6,0),
14701 (48658,27448,1966,7,0),
14702 (48659,48658,1966,8,0),
14703 /*Sinister Strike*/
14704 (1752,0,1752,1,0),
14705 (1757,1752,1752,2,0),
14706 (1758,1757,1752,3,0),
14707 (1759,1758,1752,4,0),
14708 (1760,1759,1752,5,0),
14709 (8621,1760,1752,6,0),
14710 (11293,8621,1752,7,0),
14711 (11294,11293,1752,8,0),
14712 (26861,11294,1752,9,0),
14713 (26862,26861,1752,10,0),
14714 (48637,26862,1752,11,0),
14715 (48638,48637,1752,12,0),
14716 /*Sprint*/
14717 (2983,0,2983,1,0),
14718 (8696,2983,2983,2,0),
14719 (11305,8696,2983,3,0),
14720 /*------------------
14721 --(39)Subtlety
14722 ------------------*/
14723 /*Hemorrhage*/
14724 (16511,0,16511,1,0),
14725 (17347,16511,16511,2,0),
14726 (17348,17347,16511,3,0),
14727 (26864,17348,16511,4,0),
14728 (48660,26864,16511,5,0),
14729 /*Sap*/
14730 (6770,0,6770,1,0),
14731 (2070,6770,6770,2,0),
14732 (11297,2070,6770,3,0),
14733 (51724,11297,6770,4,0),
14734 /*Stealth*/
14735 (1784,0,1784,1,0),
14736 (1785,1784,1784,2,0),
14737 (1786,1785,1784,3,0),
14738 (1787,1786,1784,4,0),
14739 /*Vanish*/
14740 (1856,0,1856,1,0),
14741 (1857,1856,1856,2,0),
14742 (26889,1857,1856,3,0),
14743 /*------------------
14744 -- (50) Beast Mastery
14745 ------------------*/
14746 /*Aspect of the Dragonhawk*/
14747 (61846,0,61846,1,0),
14748 (61847,61846,61846,2,0),
14749 /*Aspect of the Hawk*/
14750 (13165,0,13165,1,0),
14751 (14318,13165,13165,2,0),
14752 (14319,14318,13165,3,0),
14753 (14320,14319,13165,4,0),
14754 (14321,14320,13165,5,0),
14755 (14322,14321,13165,6,0),
14756 (25296,14322,13165,7,0),
14757 (27044,25296,13165,8,0),
14758 /*Aspect of the Wild*/
14759 (20043,0,20043,1,0),
14760 (20190,20043,20043,2,0),
14761 (27045,20190,20043,3,0),
14762 (49071,27045,20043,4,0),
14763 /*MendPet*/
14764 (136,0,136,1,0),
14765 (3111,136,136,2,0),
14766 (3661,3111,136,3,0),
14767 (3662,3661,136,4,0),
14768 (13542,3662,136,5,0),
14769 (13543,13542,136,6,0),
14770 (13544,13543,136,7,0),
14771 (27046,13544,136,8,0),
14772 (48989,27046,136,9,0),
14773 (48990,48989,136,10,0),
14774 /*Scare Beast*/
14775 (1513,0,1513,1,0),
14776 (14326,1513,1513,2,0),
14777 (14327,14326,1513,3,0),
14778 /*------------------
14779 --(51)Survival
14780 ------------------*/
14781 /*Black Arrow*/
14782 (3674,0,3674,1,0),
14783 (63668,3674,3674,2,0),
14784 (63669,63668,3674,3,0),
14785 (63670,63669,3674,4,0),
14786 (63671,63670,3674,5,0),
14787 (63672,63671,3674,6,0),
14788 /*Counterattack*/
14789 (19306,0,19306,1,0),
14790 (20909,19306,19306,2,0),
14791 (20910,20909,19306,3,0),
14792 (27067,20910,19306,4,0),
14793 (48998,27067,19306,5,0),
14794 (48999,48998,19306,6,0),
14795 /*Entrapment*/
14796 (19184,0,19184,1,0),
14797 (19387,19184,19184,2,0),
14798 (19388,19387,19184,3,0),
14799 /*Explosive Shot*/
14800 (53301,0,53301,1,0),
14801 (60051,53301,53301,2,0),
14802 (60052,60051,53301,3,0),
14803 (60053,60052,53301,4,0),
14804 /*Explosive Trap*/
14805 (13813,0,13813,1,0),
14806 (14316,13813,13813,2,0),
14807 (14317,14316,13813,3,0),
14808 (27025,14317,13813,4,0),
14809 (49066,27025,13813,5,0),
14810 (49067,49066,13813,6,0),
14811 /*Freezing Trap*/
14812 (1499,0,1499,1,0),
14813 (14310,1499,1499,2,0),
14814 (14311,14310,1499,3,0),
14815 /*Hunting Party*/
14816 (53290,0,53290,1,0),
14817 (53291,53290,53290,2,0),
14818 (53292,53291,53290,3,0),
14819 /*Immolation Trap*/
14820 (13795,0,13795,1,0),
14821 (14302,13795,13795,2,0),
14822 (14303,14302,13795,3,0),
14823 (14304,14303,13795,4,0),
14824 (14305,14304,13795,5,0),
14825 (27023,14305,13795,6,0),
14826 (49055,27023,13795,7,0),
14827 (49056,49055,13795,8,0),
14828 /**Master Tactician*/
14829 (34506,0,34506,1,0),
14830 (34507,34506,34506,2,0),
14831 (34508,34507,34506,3,0),
14832 (34838,34508,34506,4,0),
14833 (34839,34838,34506,5,0),
14834 /*Mongoose Bite*/
14835 (1495,0,1495,1,0),
14836 (14269,1495,1495,2,0),
14837 (14270,14269,1495,3,0),
14838 (14271,14270,1495,4,0),
14839 (36916,14271,1495,5,0),
14840 (53339,36916,1495,6,0),
14841 /*Raptor Strike*/
14842 (2973,0,2973,1,0),
14843 (14260,2973,2973,2,0),
14844 (14261,14260,2973,3,0),
14845 (14262,14261,2973,4,0),
14846 (14263,14262,2973,5,0),
14847 (14264,14263,2973,6,0),
14848 (14265,14264,2973,7,0),
14849 (14266,14265,2973,8,0),
14850 (27014,14266,2973,9,0),
14851 (48995,27014,2973,10,0),
14852 (48996,48995,2973,11,0),
14853 /*WyvernSting*/
14854 (19386,0,19386,1,0),
14855 (24132,19386,19386,2,0),
14856 (24133,24132,19386,3,0),
14857 (27068,24133,19386,4,0),
14858 (49011,27068,19386,5,0),
14859 (49012,49011,19386,6,0),
14860 /*------------------
14861 -- (56) Holy (Priest)
14862 ------------------*/
14863 /*Binding Heal*/
14864 (32546,0,32546,1,0),
14865 (48119,32546,32546,2,0),
14866 (48120,48119,32546,3,0),
14867 /*Body and Soul*/
14868 (64127,0,64127,1,0),
14869 (64129,64127,64127,2,0),
14870 /*Blessed Recovery Proc*/
14871 (27813,0,27813,1,0),
14872 (27817,27813,27813,2,0),
14873 (27818,27817,27813,3,0),
14874 /*Circle of Healing*/
14875 (34861,0,34861,1,0),
14876 (34863,34861,34861,2,0),
14877 (34864,34863,34861,3,0),
14878 (34865,34864,34861,4,0),
14879 (34866,34865,34861,5,0),
14880 (48088,34866,34861,6,0),
14881 (48089,48088,34861,7,0),
14882 /*Desperate Prayer*/
14883 (19236,0,19236,1,0),
14884 (19238,19236,19236,2,0),
14885 (19240,19238,19236,3,0),
14886 (19241,19240,19236,4,0),
14887 (19242,19241,19236,5,0),
14888 (19243,19242,19236,6,0),
14889 (25437,19243,19236,7,0),
14890 (48172,25437,19236,8,0),
14891 (48173,48172,19236,9,0),
14892 /*Empowered Renew*/
14893 (63534,0,63534,1,0),
14894 (63542,63534,63534,2,0),
14895 (63543,63542,63534,3,0),
14896 /*Flash Heal*/
14897 (2061,0,2061,1,0),
14898 (9472,2061,2061,2,0),
14899 (9473,9472,2061,3,0),
14900 (9474,9473,2061,4,0),
14901 (10915,9474,2061,5,0),
14902 (10916,10915,2061,6,0),
14903 (10917,10916,2061,7,0),
14904 (25233,10917,2061,8,0),
14905 (25235,25233,2061,9,0),
14906 (48070,25235,2061,10,0),
14907 (48071,48070,2061,11,0),
14908 /*Greater Heal*/
14909 (2060,0,2060,1,0),
14910 (10963,2060,2060,2,0),
14911 (10964,10963,2060,3,0),
14912 (10965,10964,2060,4,0),
14913 (25314,10965,2060,5,0),
14914 (25210,25314,2060,6,0),
14915 (25213,25210,2060,7,0),
14916 (48062,25213,2060,8,0),
14917 (48063,48062,2060,9,0),
14918 /*Heal*/
14919 (2054,0,2054,1,0),
14920 (2055,2054,2054,2,0),
14921 (6063,2055,2054,3,0),
14922 (6064,6063,2054,4,0),
14923 /*Holy Fire*/
14924 (14914,0,14914,1,0),
14925 (15262,14914,14914,2,0),
14926 (15263,15262,14914,3,0),
14927 (15264,15263,14914,4,0),
14928 (15265,15264,14914,5,0),
14929 (15266,15265,14914,6,0),
14930 (15267,15266,14914,7,0),
14931 (15261,15267,14914,8,0),
14932 (25384,15261,14914,9,0),
14933 (48134,25384,14914,10,0),
14934 (48135,48134,14914,11,0),
14935 /*Holy Nova*/
14936 (15237,0,15237,1,0),
14937 (15430,15237,15237,2,0),
14938 (15431,15430,15237,3,0),
14939 (27799,15431,15237,4,0),
14940 (27800,27799,15237,5,0),
14941 (27801,27800,15237,6,0),
14942 (25331,27801,15237,7,0),
14943 (48077,25331,15237,8,0),
14944 (48078,48077,15237,9,0),
14945 /* Holy Nova Heal */
14946 (23455,0,23455,1,0),
14947 (23458,23455,23455,2,0),
14948 (23459,23458,23455,3,0),
14949 (27803,23459,23455,4,0),
14950 (27804,27803,23455,5,0),
14951 (27805,27804,23455,6,0),
14952 (25329,27805,23455,7,0),
14953 /*Lesser Heal*/
14954 (2050,0,2050,1,0),
14955 (2052,2050,2050,2,0),
14956 (2053,2052,2050,3,0),
14957 /*Lightwell*/
14958 (724,0,724,1,0),
14959 (27870,724,724,2,0),
14960 (27871,27870,724,3,0),
14961 (28275,27871,724,4,0),
14962 (48086,28275,724,5,0),
14963 (48087,48086,724,6,0),
14964 /*Prayer of Healing*/
14965 (596,0,596,1,0),
14966 (996,596,596,2,0),
14967 (10960,996,596,3,0),
14968 (10961,10960,596,4,0),
14969 (25316,10961,596,5,0),
14970 (25308,25316,596,6,0),
14971 (48072,25308,596,7,0),
14972 /*Prayer of Mending*/
14973 (33076,0,33076,1,0),
14974 (48112,33076,33076,2,0),
14975 (48113,48112,33076,3,0),
14976 /*Renew*/
14977 (139,0,139,1,0),
14978 (6074,139,139,2,0),
14979 (6075,6074,139,3,0),
14980 (6076,6075,139,4,0),
14981 (6077,6076,139,5,0),
14982 (6078,6077,139,6,0),
14983 (10927,6078,139,7,0),
14984 (10928,10927,139,8,0),
14985 (10929,10928,139,9,0),
14986 (25315,10929,139,10,0),
14987 (25221,25315,139,11,0),
14988 (25222,25221,139,12,0),
14989 (48067,25222,139,13,0),
14990 (48068,48067,139,14,0),
14991 /*Resurrection*/
14992 (2006,0,2006,1,0),
14993 (2010,2006,2006,2,0),
14994 (10880,2010,2006,3,0),
14995 (10881,10880,2006,4,0),
14996 (20770,10881,2006,5,0),
14997 (25435,20770,2006,6,0),
14998 (48171,25435,2006,7,0),
14999 /*Serendipity*/
15000 (63730,0,63730,1,0),
15001 (63733,63730,63730,2,0),
15002 (63737,63733,63730,3,0),
15003 /*Smite*/
15004 (585,0,585,1,0),
15005 (591,585,585,2,0),
15006 (598,591,585,3,0),
15007 (984,598,585,4,0),
15008 (1004,984,585,5,0),
15009 (6060,1004,585,6,0),
15010 (10933,6060,585,7,0),
15011 (10934,10933,585,8,0),
15012 (25363,10934,585,9,0),
15013 (25364,25363,585,10,0),
15014 (48122,25364,585,11,0),
15015 (48123,48122,585,12,0),
15016 /*------------------
15017 -- (78) Shadow Magic
15018 ------------------*/
15019 /*Devouring Plague*/
15020 (2944,0,2944,1,0),
15021 (19276,2944,2944,2,0),
15022 (19277,19276,2944,3,0),
15023 (19278,19277,2944,4,0),
15024 (19279,19278,2944,5,0),
15025 (19280,19279,2944,6,0),
15026 (25467,19280,2944,7,0),
15027 (48299,25467,2944,8,0),
15028 (48300,48299,2944,9,0),
15029 /*Improved Devouring Plague*/
15030 (63625,0,63625,1,0),
15031 (63626,63625,63625,2,0),
15032 (63627,63626,63625,3,0),
15033 /*Improved Shadowform*/
15034 (47569,0,47569,1,0),
15035 (47570,47569,47569,2,0),
15036 /*Mind Blast*/
15037 (8092,0,8092,1,0),
15038 (8102,8092,8092,2,0),
15039 (8103,8102,8092,3,0),
15040 (8104,8103,8092,4,0),
15041 (8105,8104,8092,5,0),
15042 (8106,8105,8092,6,0),
15043 (10945,8106,8092,7,0),
15044 (10946,10945,8092,8,0),
15045 (10947,10946,8092,9,0),
15046 (25372,10947,8092,10,0),
15047 (25375,25372,8092,11,0),
15048 (48126,25375,8092,12,0),
15049 (48127,48126,8092,13,0),
15050 /*Mind Flay*/
15051 (15407,0,15407,1,0),
15052 (17311,15407,15407,2,0),
15053 (17312,17311,15407,3,0),
15054 (17313,17312,15407,4,0),
15055 (17314,17313,15407,5,0),
15056 (18807,17314,15407,6,0),
15057 (25387,18807,15407,7,0),
15058 (48155,25387,15407,8,0),
15059 (48156,48155,15407,9,0),
15060 /*Mind Sear*/
15061 (48045,0,48045,1,0),
15062 (53023,48045,48045,2,0),
15063 /* Mind Sear Trigger */
15064 (49821,0,49821,1,0),
15065 (53022,49821,49821,2,0),
15066 /*MindVision*/
15067 (2096,0,2096,1,0),
15068 (10909,2096,2096,2,0),
15069 /*Prayer of Shadow Protection*/
15070 (27683,0,27683,1,0),
15071 (39374,27683,27683,2,0),
15072 (48170,39374,27683,3,0),
15073 /*PsychicScream*/
15074 (8122,0,8122,1,0),
15075 (8124,8122,8122,2,0),
15076 (10888,8124,8122,3,0),
15077 (10890,10888,8122,4,0),
15078 /*Shadow Protection*/
15079 (976,0,976,1,0),
15080 (10957,976,976,2,0),
15081 (10958,10957,976,3,0),
15082 (25433,10958,976,4,0),
15083 (48169,25433,976,5,0),
15084 /*ShadowWord:Death*/
15085 (32379,0,32379,1,0),
15086 (32996,32379,32379,2,0),
15087 (48157,32996,32379,3,0),
15088 (48158,48157,32379,4,0),
15089 /*ShadowWord:Pain*/
15090 (589,0,589,1,0),
15091 (594,589,589,2,0),
15092 (970,594,589,3,0),
15093 (992,970,589,4,0),
15094 (2767,992,589,5,0),
15095 (10892,2767,589,6,0),
15096 (10893,10892,589,7,0),
15097 (10894,10893,589,8,0),
15098 (25367,10894,589,9,0),
15099 (25368,25367,589,10,0),
15100 (48124,25368,589,11,0),
15101 (48125,48124,589,12,0),
15102 /*Vampiric Touch*/
15103 (34914,0,34914,1,0),
15104 (34916,34914,34914,2,0),
15105 (34917,34916,34914,3,0),
15106 (48159,34917,34914,4,0),
15107 (48160,48159,34914,5,0),
15108 /*------------------
15109 -- (129) First Aid
15110 ------------------*/
15111 /*First Aid*/
15112 (3273,0,3273,1,0),
15113 (3274,3273,3273,2,0),
15114 (7924,3274,3273,3,0),
15115 (10846,7924,3273,4,0),
15116 (27028,10846,3273,5,0),
15117 (45542,27028,3273,6,0),
15118 /*------------------
15119 -- (134) Feral Combat (Druid)
15120 ------------------*/
15121 /*Bash*/
15122 (5211,0,5211,1,0),
15123 (6798,5211,5211,2,0),
15124 (8983,6798,5211,3,0),
15125 /*Bear Form*/
15126 (5487,0,5487,1,0),
15127 (9634,5487,5487,2,0),
15128 /*Claw*/
15129 (1082,0,1082,1,0),
15130 (3029,1082,1082,2,0),
15131 (5201,3029,1082,3,0),
15132 (9849,5201,1082,4,0),
15133 (9850,9849,1082,5,0),
15134 (27000,9850,1082,6,0),
15135 (48569,27000,1082,7,0),
15136 (48570,48569,1082,8,0),
15137 /*Cower*/
15138 (8998,0,8998,1,0),
15139 (9000,8998,8998,2,0),
15140 (9892,9000,8998,3,0),
15141 (31709,9892,8998,4,0),
15142 (27004,31709,8998,5,0),
15143 (48575,27004,8998,6,0),
15144 /*Dash*/
15145 (1850,0,1850,1,0),
15146 (9821,1850,1850,2,0),
15147 (33357,9821,1850,3,0),
15148 /*Demoralizing Roar*/
15149 (99,0,99,1,0),
15150 (1735,99,99,2,0),
15151 (9490,1735,99,3,0),
15152 (9747,9490,99,4,0),
15153 (9898,9747,99,5,0),
15154 (26998,9898,99,6,0),
15155 (48559,26998,99,7,0),
15156 (48560,48559,99,8,0),
15157 /*Ferocious Bite*/
15158 (22568,0,22568,1,0),
15159 (22827,22568,22568,2,0),
15160 (22828,22827,22568,3,0),
15161 (22829,22828,22568,4,0),
15162 (31018,22829,22568,5,0),
15163 (24248,31018,22568,6,0),
15164 (48576,24248,22568,7,0),
15165 (48577,48576,22568,8,0),
15166 /*Flight Form*/
15167 (33943,0,33943,1,0),
15168 (40120,33943,33943,2,0),
15169 /*Lacerate*/
15170 (33745,0,33745,1,0),
15171 (48567,33745,33745,2,0),
15172 (48568,48567,33745,3,0),
15173 /*Maim*/
15174 (22570,0,22570,1,0),
15175 (49802,22570,22570,2,0),
15176 /*Mangle-Bear*/
15177 (33878,0,33878,1,0),
15178 (33986,33878,33878,2,0),
15179 (33987,33986,33878,3,0),
15180 (48563,33987,33878,4,0),
15181 (48564,48563,33878,5,0),
15182 /*Mangle-Cat*/
15183 (33876,0,33876,1,0),
15184 (33982,33876,33876,2,0),
15185 (33983,33982,33876,3,0),
15186 (48565,33983,33876,4,0),
15187 (48566,48565,33876,5,0),
15188 /*Maul*/
15189 (6807,0,6807,1,0),
15190 (6808,6807,6807,2,0),
15191 (6809,6808,6807,3,0),
15192 (8972,6809,6807,4,0),
15193 (9745,8972,6807,5,0),
15194 (9880,9745,6807,6,0),
15195 (9881,9880,6807,7,0),
15196 (26996,9881,6807,8,0),
15197 (48479,26996,6807,9,0),
15198 (48480,48479,6807,10,0),
15199 /*Pounce*/
15200 (9005,0,9005,1,0),
15201 (9823,9005,9005,2,0),
15202 (9827,9823,9005,3,0),
15203 (27006,9827,9005,4,0),
15204 (49803,27006,9005,5,0),
15205 /*Prowl*/
15206 (5215,0,5215,1,0),
15207 (6783,5215,5215,2,0),
15208 (9913,6783,5215,3,0),
15209 /*Rake*/
15210 (1822,0,1822,1,0),
15211 (1823,1822,1822,2,0),
15212 (1824,1823,1822,3,0),
15213 (9904,1824,1822,4,0),
15214 (27003,9904,1822,5,0),
15215 (48573,27003,1822,6,0),
15216 (48574,48573,1822,7,0),
15217 /*Ravage*/
15218 (6785,0,6785,1,0),
15219 (6787,6785,6785,2,0),
15220 (9866,6787,6785,3,0),
15221 (9867,9866,6785,4,0),
15222 (27005,9867,6785,5,0),
15223 (48578,27005,6785,6,0),
15224 (48579,48578,6785,7,0),
15225 /*Rip*/
15226 (1079,0,1079,1,0),
15227 (9492,1079,1079,2,0),
15228 (9493,9492,1079,3,0),
15229 (9752,9493,1079,4,0),
15230 (9894,9752,1079,5,0),
15231 (9896,9894,1079,6,0),
15232 (27008,9896,1079,7,0),
15233 (49799,27008,1079,8,0),
15234 (49800,49799,1079,9,0),
15235 /*Shred*/
15236 (5221,0,5221,1,0),
15237 (6800,5221,5221,2,0),
15238 (8992,6800,5221,3,0),
15239 (9829,8992,5221,4,0),
15240 (9830,9829,5221,5,0),
15241 (27001,9830,5221,6,0),
15242 (27002,27001,5221,7,0),
15243 (48571,27002,5221,8,0),
15244 (48572,48571,5221,9,0),
15245 /*Swipe*/
15246 (779,0,779,1,0),
15247 (780,779,779,2,0),
15248 (769,780,779,3,0),
15249 (9754,769,779,4,0),
15250 (9908,9754,779,5,0),
15251 (26997,9908,779,6,0),
15252 (48561,26997,779,7,0),
15253 (48562,48561,779,8,0),
15254 /*Tiger's Fury*/
15255 (5217,0,5217,1,0),
15256 (6793,5217,5217,2,0),
15257 (9845,6793,5217,3,0),
15258 (9846,9845,5217,4,0),
15259 (50212,9846,5217,5,0),
15260 (50213,50212,5217,6,0),
15261 /*------------------
15262 --(163)Marksmanship
15263 ------------------*/
15264 /*Aimed Shot*/
15265 (19434,0,19434,1,0),
15266 (20900,19434,19434,2,0),
15267 (20901,20900,19434,3,0),
15268 (20902,20901,19434,4,0),
15269 (20903,20902,19434,5,0),
15270 (20904,20903,19434,6,0),
15271 (27065,20904,19434,7,0),
15272 (49049,27065,19434,8,0),
15273 (49050,49049,19434,9,0),
15274 /*Arcane Shot*/
15275 (3044,0,3044,1,0),
15276 (14281,3044,3044,2,0),
15277 (14282,14281,3044,3,0),
15278 (14283,14282,3044,4,0),
15279 (14284,14283,3044,5,0),
15280 (14285,14284,3044,6,0),
15281 (14286,14285,3044,7,0),
15282 (14287,14286,3044,8,0),
15283 (27019,14287,3044,9,0),
15284 (49044,27019,3044,10,0),
15285 (49045,49044,3044,11,0),
15286 /*Concussive Barrage*/
15287 (35100,0,35100,1,0),
15288 (35102,35100,35100,2,0),
15289 /*Hunter's Mark*/
15290 (1130,0,1130,1,0),
15291 (14323,1130,1130,2,0),
15292 (14324,14323,1130,3,0),
15293 (14325,14324,1130,4,0),
15294 (53338,14325,1130,5,0),
15295 /*Kill Shot*/
15296 (53351,0,53351,1,0),
15297 (61005,53351,53351,2,0),
15298 (61006,61005,53351,3,0),
15299 /*Multi-Shot*/
15300 (2643,0,2643,1,0),
15301 (14288,2643,2643,2,0),
15302 (14289,14288,2643,3,0),
15303 (14290,14289,2643,4,0),
15304 (25294,14290,2643,5,0),
15305 (27021,25294,2643,6,0),
15306 (49047,27021,2643,7,0),
15307 (49048,49047,2643,8,0),
15308 /*SerpentSting*/
15309 (1978,0,1978,1,0),
15310 (13549,1978,1978,2,0),
15311 (13550,13549,1978,3,0),
15312 (13551,13550,1978,4,0),
15313 (13552,13551,1978,5,0),
15314 (13553,13552,1978,6,0),
15315 (13554,13553,1978,7,0),
15316 (13555,13554,1978,8,0),
15317 (25295,13555,1978,9,0),
15318 (27016,25295,1978,10,0),
15319 (49000,27016,1978,11,0),
15320 (49001,49000,1978,12,0),
15321 /*SteadyShot*/
15322 (56641,0,56641,1,0),
15323 (34120,56641,56641,2,0),
15324 (49051,34120,56641,3,0),
15325 (49052,49051,56641,4,0),
15326 /*Volley*/
15327 (1510,0,1510,1,0),
15328 (14294,1510,1510,2,0),
15329 (14295,14294,1510,3,0),
15330 (27022,14295,1510,4,0),
15331 (58431,27022,1510,5,0),
15332 (58434,58431,1510,6,0),
15333 /*------------------
15334 -- (164) Blacksmithing
15335 ------------------*/
15336 /*Blacksmithing*/
15337 (2018,0,2018,1,0),
15338 (3100,2018,2018,2,0),
15339 (3538,3100,2018,3,0),
15340 (9785,3538,2018,4,0),
15341 (9787,9785,2018,5,0),
15342 (9788,9785,2018,5,0),
15343 (29844,9785,2018,5,0),
15344 (17039,9787,2018,6,0),
15345 (17040,9787,2018,6,0),
15346 (17041,9787,2018,6,0),
15347 (51300,29844,2018,6,0),
15348 /*------------------
15349 -- (165) Leatherworking
15350 ------------------*/
15351 /*Leatherworking*/
15352 (2108,0,2108,1,0),
15353 (3104,2108,2108,2,0),
15354 (3811,3104,2108,3,0),
15355 (10662,3811,2108,4,0),
15356 (10656,10662,2108,5,0),
15357 (10658,10662,2108,5,0),
15358 (10660,10662,2108,5,0),
15359 (32549,10662,2108,5,0),
15360 (51302,32549,2108,6,0),
15361 /*------------------
15362 -- (171) Alchemy
15363 ------------------*/
15364 /* Alchemy */
15365 (2259,0,2259,1,0),
15366 (3101,2259,2259,2,0),
15367 (3464,3101,2259,3,0),
15368 (11611,3464,2259,4,0),
15369 (28596,11611,2259,5,0),
15370 (28672,11611,2259,5,0),
15371 (28675,11611,2259,5,0),
15372 (28677,11611,2259,5,0),
15373 (51304,28596,2259,6,0),
15374 /*------------------
15375 -- (182) Herbalizm
15376 ------------------*/
15377 /*Herb Gathering*/
15378 (2366,0,2366,1,0),
15379 (2368,2366,2366,2,0),
15380 (3570,2368,2366,3,0),
15381 (11993,3570,2366,4,0),
15382 (28695,11993,2366,5,0),
15383 (50300,28695,2366,6,0),
15384 /*Lifeblood*/
15385 (55428,0,55428,1,0),
15386 (55480,55428,55428,2,0),
15387 (55500,55480,55428,3,0),
15388 (55501,55500,55428,4,0),
15389 (55502,55501,55428,5,0),
15390 (55503,55502,55428,6,0),
15391 /*------------------
15392 -- (184) Retribution (Paladin)
15393 ------------------*/
15394 /*Blessingof Might*/
15395 (19740,0,19740,1,0),
15396 (19834,19740,19740,2,0),
15397 (19835,19834,19740,3,0),
15398 (19836,19835,19740,4,0),
15399 (19837,19836,19740,5,0),
15400 (19838,19837,19740,6,0),
15401 (25291,19838,19740,7,0),
15402 (27140,25291,19740,8,0),
15403 (48931,27140,19740,9,0),
15404 (48932,48931,19740,10,0),
15405 /*Greater Blessing of Might*/
15406 (25782,0,25782,1,19838),
15407 (25916,25782,25782,2,25291),
15408 (27141,25916,25782,3,27140),
15409 (48933,27141,25782,4,48931),
15410 (48934,48933,25782,5,48932),
15411 /*Hammer of Wrath*/
15412 (24275,0,24275,1,0),
15413 (24274,24275,24275,2,0),
15414 (24239,24274,24275,3,0),
15415 (27180,24239,24275,4,0),
15416 (48805,27180,24275,5,0),
15417 (48806,48805,24275,6,0),
15418 /*Heart of the Crusader*/
15419 (20335, 0, 20335, 1, 0),
15420 (20336, 20335, 20335, 2, 0),
15421 (20337, 20336, 20335, 3, 0),
15422 /*Retribution Aura*/
15423 (7294,0,7294,1,0),
15424 (10298,7294,7294,2,0),
15425 (10299,10298,7294,3,0),
15426 (10300,10299,7294,4,0),
15427 (10301,10300,7294,5,0),
15428 (27150,10301,7294,6,0),
15429 (54043,27150,7294,7,0),
15430 /*Righteous Vengeance*/
15431 (53380,0,53380,1,0),
15432 (53381,53380,53380,2,0),
15433 (53382,53381,53380,3,0),
15434 /*The Art of War*/
15435 (53486,0,53486,1,0),
15436 (53488,53486,53486,2,0),
15437 /*------------------
15438 -- (185) Cooking
15439 ------------------*/
15440 /*Cooking*/
15441 (2550,0,2550,1,0),
15442 (3102,2550,2550,2,0),
15443 (3413,3102,2550,3,0),
15444 (18260,3413,2550,4,0),
15445 (33359,18260,2550,5,0),
15446 (51296,33359,2550,6,0),
15447 /*------------------
15448 -- (186) Mining
15449 ------------------*/
15450 /*Mining*/
15451 (2575,0,2575,1,0),
15452 (2576,2575,2575,2,0),
15453 (3564,2576,2575,3,0),
15454 (10248,3564,2575,4,0),
15455 (29354,10248,2575,5,0),
15456 (50310,29354,2575,6,0),
15457 /*Toughness*/
15458 (53120,0,53120,1,0),
15459 (53121,53120,53120,2,0),
15460 (53122,53121,53120,3,0),
15461 (53123,53122,53120,4,0),
15462 (53124,53123,53120,5,0),
15463 (53040,53124,53120,6,0),
15464 /*------------------
15465 -- (188) Pet - Imp
15466 ------------------*/
15467 /*Blood Pact*/
15468 (6307,0,6307,1,0),
15469 (7804,6307,6307,2,0),
15470 (7805,7804,6307,3,0),
15471 (11766,7805,6307,4,0),
15472 (11767,11766,6307,5,0),
15473 (27268,11767,6307,6,0),
15474 (47982,27268,6307,7,0),
15475 /*FireShield*/
15476 (2947,0,2947,1,0),
15477 (8316,2947,2947,2,0),
15478 (8317,8316,2947,3,0),
15479 (11770,8317,2947,4,0),
15480 (11771,11770,2947,5,0),
15481 (27269,11771,2947,6,0),
15482 (47983,27269,2947,7,0),
15483 /*Firebolt*/
15484 (3110,0,3110,1,0),
15485 (7799,3110,3110,2,0),
15486 (7800,7799,3110,3,0),
15487 (7801,7800,3110,4,0),
15488 (7802,7801,3110,5,0),
15489 (11762,7802,3110,6,0),
15490 (11763,11762,3110,7,0),
15491 (27267,11763,3110,8,0),
15492 (47964,27267,3110,9,0),
15493 /*------------------
15494 --(189)Pet-Felhunter
15495 ------------------*/
15496 /*Devour Magic*/
15497 (19505,0,19505,1,0),
15498 (19731,19505,19505,2,0),
15499 (19734,19731,19505,3,0),
15500 (19736,19734,19505,4,0),
15501 (27276,19736,19505,5,0),
15502 (27277,27276,19505,6,0),
15503 (48011,27277,19505,7,0),
15504 /*Fel Intelligence*/
15505 (54424,0,54424,1,0),
15506 (57564,54424,54424,2,0),
15507 (57565,57564,54424,3,0),
15508 (57566,57565,54424,4,0),
15509 (57567,57566,54424,5,0),
15510 /*Shadow Bite*/
15511 (54049,0,54049,1,0),
15512 (54050,54049,54049,2,0),
15513 (54051,54050,54049,3,0),
15514 (54052,54051,54049,4,0),
15515 (54053,54052,54049,5,0),
15516 /*Spell Lock*/
15517 (19244,0,19244,1,0),
15518 (19647,19244,19244,2,0),
15519 /*------------------
15520 -- (197) Tailoring
15521 ------------------*/
15522 /*Tailoring*/
15523 (3908,0,3908,1,0),
15524 (3909,3908,3908,2,0),
15525 (3910,3909,3908,3,0),
15526 (12180,3910,3908,4,0),
15527 (26790,12180,3908,5,0),
15528 (26797,12180,3908,5,0),
15529 (26798,12180,3908,5,0),
15530 (26801,12180,3908,5,0),
15531 (51309,26790,3908,6,0),
15532 /*------------------
15533 -- (202) Engineering
15534 ------------------*/
15535 /*Engineering*/
15536 (4036,0,4036,1,0),
15537 (4037,4036,4036,2,0),
15538 (4038,4037,4036,3,0),
15539 (12656,4038,4036,4,0),
15540 (20219,12656,4036,5,0),
15541 (20222,12656,4036,5,0),
15542 (30350,12656,4036,5,0),
15543 (51306,30350,4036,6,0),
15544 /*------------------
15545 --(203)Pet-Spider
15546 --(208)Pet-Wolf
15547 --(212)Pet-Crocolisk
15548 --(251)Pet-Turtle
15549 --(653)Pet-Bat
15550 --(766)Pet-WarpStalker
15551 --(767)Pet-Ravager
15552 ------------------*/
15553 /*Bite*/
15554 (17253,0,17253,1,0),
15555 (17255,17253,17253,2,0),
15556 (17256,17255,17253,3,0),
15557 (17257,17256,17253,4,0),
15558 (17258,17257,17253,5,0),
15559 (17259,17258,17253,6,0),
15560 (17260,17259,17253,7,0),
15561 (17261,17260,17253,8,0),
15562 (27050,17261,17253,9,0),
15563 (52473,27050,17253,10,0),
15564 (52474,52473,17253,11,0),
15565 /*------------------
15566 -- (204) Pet - Voidwalker
15567 ------------------*/
15568 /*Consume Shadows*/
15569 (17767,0,17767,1,0),
15570 (17850,17767,17767,2,0),
15571 (17851,17850,17767,3,0),
15572 (17852,17851,17767,4,0),
15573 (17853,17852,17767,5,0),
15574 (17854,17853,17767,6,0),
15575 (27272,17854,17767,7,0),
15576 (47987,27272,17767,8,0),
15577 (47988,47987,17767,9,0),
15578 /*Sacrifice*/
15579 (7812,0,7812,1,0),
15580 (19438,7812,7812,2,0),
15581 (19440,19438,7812,3,0),
15582 (19441,19440,7812,4,0),
15583 (19442,19441,7812,5,0),
15584 (19443,19442,7812,6,0),
15585 (27273,19443,7812,7,0),
15586 (47985,27273,7812,8,0),
15587 (47986,47985,7812,9,0),
15588 /*Suffering*/
15589 (17735,0,17735,1,0),
15590 (17750,17735,17735,2,0),
15591 (17751,17750,17735,3,0),
15592 (17752,17751,17735,4,0),
15593 (27271,17752,17735,5,0),
15594 (33701,27271,17735,6,0),
15595 (47989,33701,17735,7,0),
15596 (47990,47989,17735,8,0),
15597 /*Torment*/
15598 (3716,0,3716,1,0),
15599 (7809,3716,3716,2,0),
15600 (7810,7809,3716,3,0),
15601 (7811,7810,3716,4,0),
15602 (11774,7811,3716,5,0),
15603 (11775,11774,3716,6,0),
15604 (27270,11775,3716,7,0),
15605 (47984,27270,3716,8,0),
15606 /*------------------
15607 --(205)Pet-Succubus
15608 ------------------*/
15609 /*LashofPain*/
15610 (7814,0,7814,1,0),
15611 (7815,7814,7814,2,0),
15612 (7816,7815,7814,3,0),
15613 (11778,7816,7814,4,0),
15614 (11779,11778,7814,5,0),
15615 (11780,11779,7814,6,0),
15616 (27274,11780,7814,7,0),
15617 (47991,27274,7814,8,0),
15618 (47992,47991,7814,9,0),
15619 /*SoothingKiss*/
15620 (6360,0,6360,1,0),
15621 (7813,6360,6360,2,0),
15622 (11784,7813,6360,3,0),
15623 (11785,11784,6360,4,0),
15624 (27275,11785,6360,5,0),
15625 /*------------------
15626 -- (208) Pet - Wolf
15627 ------------------*/
15628 /* Furious Howl */
15629 (24604,0,24604,1,0),
15630 (64491,24604,24604,2,0),
15631 (64492,64491,24604,3,0),
15632 (64493,64492,24604,4,0),
15633 (64494,64493,24604,5,0),
15634 (64495,64494,24604,6,0),
15635 /*------------------
15636 -- (209) Pet - Cat
15637 ------------------*/
15638 /*Prowl*/
15639 (24450,0,24450,1,0),
15640 (24452,24450,24450,2,0),
15641 (24453,24452,24450,3,0),
15642 /*Rake*/
15643 (59881,0,59881,1,0),
15644 (59882,59881,59881,2,0),
15645 (59883,59882,59881,3,0),
15646 (59884,59883,59881,4,0),
15647 (59885,59884,59881,5,0),
15648 (59886,59885,59881,6,0),
15649 /*------------------
15650 --(210)Pet-Bear
15651 ------------------*/
15652 /*Swipe*/
15653 (50256,0,50256,1,0),
15654 (53526,50256,50256,2,0),
15655 (53528,53526,50256,3,0),
15656 (53529,53528,50256,4,0),
15657 (53532,53529,50256,5,0),
15658 (53533,53532,50256,6,0),
15659 /*------------------
15660 --(211)Pet-Boar
15661 ------------------*/
15662 /*Gore*/
15663 (35290,0,35290,1,0),
15664 (35291,35290,35290,2,0),
15665 (35292,35291,35290,3,0),
15666 (35293,35292,35290,4,0),
15667 (35294,35293,35290,5,0),
15668 (35295,35294,35290,6,0),
15669 /*------------------
15670 --(213)Pet-CarrionBird
15671 ------------------*/
15672 /*DemoralizingScreech*/
15673 (24423,0,24423,1,0),
15674 (24577,24423,24423,2,0),
15675 (24578,24577,24423,3,0),
15676 (24579,24578,24423,4,0),
15677 (27051,24579,24423,5,0),
15678 (55487,27051,24423,6,0),
15679 /*------------------
15680 --(214)Pet - Crab
15681 ------------------*/
15682 /* Sonic Blast */
15683 (50245,0,50245,1,0),
15684 (53544,50245,50245,2,0),
15685 (53545,53544,50245,3,0),
15686 (53546,53545,50245,4,0),
15687 (53547,53546,50245,5,0),
15688 (53548,53547,50245,6,0),
15689 /*------------------
15690 --(215)Pet-Gorilla
15691 --(786)Pet-ExoticRhino
15692 --(775)Pet-Moth
15693 ------------------*/
15694 /*Smack*/
15695 (49966,0,49966,1,0),
15696 (49967,49966,49966,2,0),
15697 (49968,49967,49966,3,0),
15698 (49969,49968,49966,4,0),
15699 (49970,49969,49966,5,0),
15700 (49971,49970,49966,6,0),
15701 (49972,49971,49966,7,0),
15702 (49973,49972,49966,8,0),
15703 (49974,49973,49966,9,0),
15704 (52475,49974,49966,10,0),
15705 (52476,52475,49966,11,0),
15706 /*------------------
15707 --(217)Pet-Raptor
15708 ------------------*/
15709 /*SavageRend*/
15710 (50498,0,50498,1,0),
15711 (53578,50498,50498,2,0),
15712 (53579,53578,50498,3,0),
15713 (53580,53579,50498,4,0),
15714 (53581,53580,50498,5,0),
15715 (53582,53581,50498,6,0),
15716 /*------------------
15717 --(214)Pet-Crab
15718 --(218)Pet-Tallstrider
15719 --(783)Pet-ExoticSilithid
15720 ------------------*/
15721 /*Claw*/
15722 (16827,0,16827,1,0),
15723 (16828,16827,16827,2,0),
15724 (16829,16828,16827,3,0),
15725 (16830,16829,16827,4,0),
15726 (16831,16830,16827,5,0),
15727 (16832,16831,16827,6,0),
15728 (3010,16832,16827,7,0),
15729 (3009,3010,16827,8,0),
15730 (27049,3009,16827,9,0),
15731 (52471,27049,16827,10,0),
15732 (52472,52471,16827,11,0),
15733 /*------------------
15734 --(236)Pet-Scorpid
15735 ------------------*/
15736 /*Scorpid Poison*/
15737 (24640,0,24640,1,0),
15738 (24583,24640,24640,2,0),
15739 (24586,24583,24640,3,0),
15740 (24587,24586,24640,4,0),
15741 (27060,24587,24640,5,0),
15742 (55728,27060,24640,6,0),
15743 /*------------------
15744 --(237)Arcane
15745 ------------------*/
15746 /*Amplify Magic*/
15747 (1008,0,1008,1,0),
15748 (8455,1008,1008,2,0),
15749 (10169,8455,1008,3,0),
15750 (10170,10169,1008,4,0),
15751 (27130,10170,1008,5,0),
15752 (33946,27130,1008,6,0),
15753 (43017,33946,1008,7,0),
15754 /*Arcane Barrage*/
15755 (44425,0,44425,1,0),
15756 (44780,44425,44425,2,0),
15757 (44781,44780,44425,3,0),
15758 /*Arcane Blast*/
15759 (30451,0,30451,1,0),
15760 (42894,30451,30451,2,0),
15761 (42896,42894,30451,3,0),
15762 (42897,42896,30451,4,0),
15763 /*Arcane Brilliance*/
15764 (23028,0,23028,1,0),
15765 (27127,23028,23028,2,0),
15766 (43002,27127,23028,3,0),
15767 /*Arcane Explosion*/
15768 (1449,0,1449,1,0),
15769 (8437,1449,1449,2,0),
15770 (8438,8437,1449,3,0),
15771 (8439,8438,1449,4,0),
15772 (10201,8439,1449,5,0),
15773 (10202,10201,1449,6,0),
15774 (27080,10202,1449,7,0),
15775 (27082,27080,1449,8,0),
15776 (42920,27082,1449,9,0),
15777 (42921,42920,1449,10,0),
15778 /*Arcane Intellect*/
15779 (1459,0,1459,1,0),
15780 (1460,1459,1459,2,0),
15781 (1461,1460,1459,3,0),
15782 (10156,1461,1459,4,0),
15783 (10157,10156,1459,5,0),
15784 (27126,10157,1459,6,0),
15785 (42995,27126,1459,7,0),
15786 /*Arcane Missiles*/
15787 (5143,0,5143,1,0),
15788 (5144,5143,5143,2,0),
15789 (5145,5144,5143,3,0),
15790 (8416,5145,5143,4,0),
15791 (8417,8416,5143,5,0),
15792 (10211,8417,5143,6,0),
15793 (10212,10211,5143,7,0),
15794 (25345,10212,5143,8,0),
15795 (27075,25345,5143,9,0),
15796 (38699,27075,5143,10,0),
15797 (38704,38699,5143,11,0),
15798 (42843,38704,5143,12,0),
15799 (42846,42843,5143,13,0),
15800 /* Arcane Missiles Triggered Spell */
15801 (7268,0,7268,1,0),
15802 (7269,7268,7268,2,0),
15803 (7270,7269,7268,3,0),
15804 (8419,7270,7268,4,0),
15805 (8418,8419,7268,5,0),
15806 (10273,8418,7268,6,0),
15807 (10274,10273,7268,7,0),
15808 (25346,10274,7268,8,0),
15809 (27076,25346,7268,9,0),
15810 (38700,27076,7268,10,0),
15811 (38703,38700,7268,11,0),
15812 (42844,38703,7268,12,0),
15813 (42845,42844,7268,13,0),
15814 /*Conjure Food*/
15815 (587,0,587,1,0),
15816 (597,587,587,2,0),
15817 (990,597,587,3,0),
15818 (6129,990,587,4,0),
15819 (10144,6129,587,5,0),
15820 (10145,10144,587,6,0),
15821 (28612,10145,587,7,0),
15822 (33717,28612,587,8,0),
15823 /*Conjure Mana Gem*/
15824 (759,0,759,1,0),
15825 (3552,759,759,2,0),
15826 (10053,3552,759,3,0),
15827 (10054,10053,759,4,0),
15828 (27101,10054,759,5,0),
15829 (42985,27101,759,6,0),
15830 /*ConjureRefreshment*/
15831 (42955,0,42955,1,0),
15832 (42956,42955,42955,2,0),
15833 /*ConjureWater*/
15834 (5504,0,5504,1,0),
15835 (5505,5504,5504,2,0),
15836 (5506,5505,5504,3,0),
15837 (6127,5506,5504,4,0),
15838 (10138,6127,5504,5,0),
15839 (10139,10138,5504,6,0),
15840 (10140,10139,5504,7,0),
15841 (37420,10140,5504,8,0),
15842 (27090,37420,5504,9,0),
15843 /*DampenMagic*/
15844 (604,0,604,1,0),
15845 (8450,604,604,2,0),
15846 (8451,8450,604,3,0),
15847 (10173,8451,604,4,0),
15848 (10174,10173,604,5,0),
15849 (33944,10174,604,6,0),
15850 (43015,33944,604,7,0),
15851 /*MageArmor*/
15852 (6117,0,6117,1,0),
15853 (22782,6117,6117,2,0),
15854 (22783,22782,6117,3,0),
15855 (27125,22783,6117,4,0),
15856 (43023,27125,6117,5,0),
15857 (43024,43023,6117,6,0),
15858 /*ManaShield*/
15859 (1463,0,1463,1,0),
15860 (8494,1463,1463,2,0),
15861 (8495,8494,1463,3,0),
15862 (10191,8495,1463,4,0),
15863 (10192,10191,1463,5,0),
15864 (10193,10192,1463,6,0),
15865 (27131,10193,1463,7,0),
15866 (43019,27131,1463,8,0),
15867 (43020,43019,1463,9,0),
15868 /*Polymorph*/
15869 (118,0,118,1,0),
15870 (12824,118,118,2,0),
15871 (12825,12824,118,3,0),
15872 (12826,12825,118,4,0),
15873 /*RitualofRefreshment*/
15874 (43987,0,43987,1,0),
15875 (58659,43987,43987,2,0),
15876 /*------------------
15877 --(253)Assassination
15878 ------------------*/
15879 /*Ambush*/
15880 (8676,0,8676,1,0),
15881 (8724,8676,8676,2,0),
15882 (8725,8724,8676,3,0),
15883 (11267,8725,8676,4,0),
15884 (11268,11267,8676,5,0),
15885 (11269,11268,8676,6,0),
15886 (27441,11269,8676,7,0),
15887 (48689,27441,8676,8,0),
15888 (48690,48689,8676,9,0),
15889 (48691,48690,8676,10,0),
15890 /*DeadlyThrow*/
15891 (26679,0,26679,1,0),
15892 (48673,26679,26679,2,0),
15893 (48674,48673,26679,3,0),
15894 /*Envenom*/
15895 (32645,0,32645,1,0),
15896 (32684,32645,32645,2,0),
15897 (57992,32684,32645,3,0),
15898 (57993,57992,32645,4,0),
15899 /*Eviscerate*/
15900 (2098,0,2098,1,0),
15901 (6760,2098,2098,2,0),
15902 (6761,6760,2098,3,0),
15903 (6762,6761,2098,4,0),
15904 (8623,6762,2098,5,0),
15905 (8624,8623,2098,6,0),
15906 (11299,8624,2098,7,0),
15907 (11300,11299,2098,8,0),
15908 (31016,11300,2098,9,0),
15909 (26865,31016,2098,10,0),
15910 (48667,26865,2098,11,0),
15911 (48668,48667,2098,12,0),
15912 /*ExposeArmor*/
15913 (8647,0,8647,1,0),
15914 (8649,8647,8647,2,0),
15915 (8650,8649,8647,3,0),
15916 (11197,8650,8647,4,0),
15917 (11198,11197,8647,5,0),
15918 (26866,11198,8647,6,0),
15919 (48669,26866,8647,7,0),
15920 /*Garrote*/
15921 (703,0,703,1,0),
15922 (8631,703,703,2,0),
15923 (8632,8631,703,3,0),
15924 (8633,8632,703,4,0),
15925 (11289,8633,703,5,0),
15926 (11290,11289,703,6,0),
15927 (26839,11290,703,7,0),
15928 (26884,26839,703,8,0),
15929 (48675,26884,703,9,0),
15930 (48676,48675,703,10,0),
15931 /*KidneyShot*/
15932 (408,0,408,1,0),
15933 (8643,408,408,2,0),
15934 /*Mutilate*/
15935 (1329,0,1329,1,0),
15936 (34411,1329,1329,2,0),
15937 (34412,34411,1329,3,0),
15938 (34413,34412,1329,4,0),
15939 (48663,34413,1329,5,0),
15940 (48666,48663,1329,6,0),
15941 /*Quick Recovery*/
15942 (31244,0,31244,1,0),
15943 (31245,31244,31244,2,0),
15944 /*Rupture*/
15945 (1943,0,1943,1,0),
15946 (8639,1943,1943,2,0),
15947 (8640,8639,1943,3,0),
15948 (11273,8640,1943,4,0),
15949 (11274,11273,1943,5,0),
15950 (11275,11274,1943,6,0),
15951 (26867,11275,1943,7,0),
15952 (48671,26867,1943,8,0),
15953 (48672,48671,1943,9,0),
15954 /*SliceandDice*/
15955 (5171,0,5171,1,0),
15956 (6774,5171,5171,2,0),
15957 /*------------------
15958 --(256)Fury
15959 ------------------*/
15960 /*BattleShout*/
15961 (6673,0,6673,1,0),
15962 (5242,6673,6673,2,0),
15963 (6192,5242,6673,3,0),
15964 (11549,6192,6673,4,0),
15965 (11550,11549,6673,5,0),
15966 (11551,11550,6673,6,0),
15967 (25289,11551,6673,7,0),
15968 (2048,25289,6673,8,0),
15969 (47436,2048,6673,9,0),
15970 /*Bloodsurge*/
15971 (46913,0,46913,1,0),
15972 (46914,46913,46913,2,0),
15973 (46915,46914,46913,3,0),
15974 /*Cleave*/
15975 (845,0,845,1,0),
15976 (7369,845,845,2,0),
15977 (11608,7369,845,3,0),
15978 (11609,11608,845,4,0),
15979 (20569,11609,845,5,0),
15980 (25231,20569,845,6,0),
15981 (47519,25231,845,7,0),
15982 (47520,47519,845,8,0),
15983 /*CommandingShout*/
15984 (469,0,469,1,0),
15985 (47439,469,469,2,0),
15986 (47440,47439,469,3,0),
15987 /*DemoralizingShout*/
15988 (1160,0,1160,1,0),
15989 (6190,1160,1160,2,0),
15990 (11554,6190,1160,3,0),
15991 (11555,11554,1160,4,0),
15992 (11556,11555,1160,5,0),
15993 (25202,11556,1160,6,0),
15994 (25203,25202,1160,7,0),
15995 (47437,25203,1160,8,0),
15996 /*Execute*/
15997 (5308,0,5308,1,0),
15998 (20658,5308,5308,2,0),
15999 (20660,20658,5308,3,0),
16000 (20661,20660,5308,4,0),
16001 (20662,20661,5308,5,0),
16002 (25234,20662,5308,6,0),
16003 (25236,25234,5308,7,0),
16004 (47470,25236,5308,8,0),
16005 (47471,47470,5308,9,0),
16006 /*Slam*/
16007 (1464,0,1464,1,0),
16008 (8820,1464,1464,2,0),
16009 (11604,8820,1464,3,0),
16010 (11605,11604,1464,4,0),
16011 (25241,11605,1464,5,0),
16012 (25242,25241,1464,6,0),
16013 (47474,25242,1464,7,0),
16014 (47475,47474,1464,8,0),
16015 /*------------------
16016 --(257) Protection (Warrior)
16017 ------------------*/
16018 /*Devastate*/
16019 (20243,0,20243,1,0),
16020 (30016,20243,20243,2,0),
16021 (30022,30016,20243,3,0),
16022 (47497,30022,20243,4,0),
16023 (47498,47497,20243,5,0),
16024 /*Revenge*/
16025 (6572,0,6572,1,0),
16026 (6574,6572,6572,2,0),
16027 (7379,6574,6572,3,0),
16028 (11600,7379,6572,4,0),
16029 (11601,11600,6572,5,0),
16030 (25288,11601,6572,6,0),
16031 (25269,25288,6572,7,0),
16032 (30357,25269,6572,8,0),
16033 (57823,30357,6572,9,0),
16034 /*ShieldSlam*/
16035 (23922,0,23922,1,0),
16036 (23923,23922,23922,2,0),
16037 (23924,23923,23922,3,0),
16038 (23925,23924,23922,4,0),
16039 (25258,23925,23922,5,0),
16040 (30356,25258,23922,6,0),
16041 (47487,30356,23922,7,0),
16042 (47488,47487,23922,8,0),
16043 /*------------------
16044 -- (267) Protection (Paladin)
16045 ------------------*/
16046 /*Avenger'sShield*/
16047 (31935,0,31935,1,0),
16048 (32699,31935,31935,2,0),
16049 (32700,32699,31935,3,0),
16050 (48826,32700,31935,4,0),
16051 (48827,48826,31935,5,0),
16052 /*Divine Guardian*/
16053 (53527,0,53527,1,0),
16054 (53530,53527,53527,2, 0),
16055 /*Divinity*/
16056 (63646,0,63646,1,0),
16057 (63647,63646,63646,2,0),
16058 (63648,63647,63646,3,0),
16059 (63649,63648,63646,4,0),
16060 (63650,63649,63646,5,0),
16061 /*Devotion Aura*/
16062 (465,0,465,1,0),
16063 (10290,465,465,2,0),
16064 (643,10290,465,3,0),
16065 (10291,643,465,4,0),
16066 (1032,10291,465,5,0),
16067 (10292,1032,465,6,0),
16068 (10293,10292,465,7,0),
16069 (27149,10293,465,8,0),
16070 (48941,27149,465,9,0),
16071 (48942,48941,465,10,0),
16072 /*Fire Resistance Aura*/
16073 (19891,0,19891,1,0),
16074 (19899,19891,19891,2,0),
16075 (19900,19899,19891,3,0),
16076 (27153,19900,19891,4,0),
16077 (48947,27153,19891,5,0),
16078 /*Frost Resistance Aura*/
16079 (19888,0,19888,1,0),
16080 (19897,19888,19888,2,0),
16081 (19898,19897,19888,3,0),
16082 (27152,19898,19888,4,0),
16083 (48945,27152,19888,5,0),
16084 /*Greater Blessing of Kings*/
16085 (20217,0,20217,1,0),
16086 (25898,20217,20217,2,0),
16087 /*Greater Blessing of Sanctuary*/
16088 (20911,0,20911,1,0),
16089 (25899,20911,20911,2,0),
16090 /*HammerofJustice*/
16091 (853,0,853,1,0),
16092 (5588,853,853,2,0),
16093 (5589,5588,853,3,0),
16094 (10308,5589,853,4,0),
16095 /*HandofProtection*/
16096 (1022,0,1022,1,0),
16097 (5599,1022,1022,2,0),
16098 (10278,5599,1022,3,0),
16099 /*Holy Shield*/
16100 (20925,0,20925,1,0),
16101 (20927,20925,20925,2,0),
16102 (20928,20927,20925,3,0),
16103 (27179,20928,20925,4,0),
16104 (48951,27179,20925,5,0),
16105 (48952,48951,20925,6,0),
16106 /*Shadow Resistance Aura*/
16107 (19876,0,19876,1,0),
16108 (19895,19876,19876,2,0),
16109 (19896,19895,19876,3,0),
16110 (27151,19896,19876,4,0),
16111 (48943,27151,19876,5,0),
16112 /*Shield of Righteousness*/
16113 (53600,0,53600,1,0),
16114 (61411,53600,53600,2,0),
16115 /*Spiritual Attunement*/
16116 (31785,0,31785,1,0),
16117 (33776,31785,31785,2,0),
16118 /*Shield of the Templar*/
16119 (53709,0,53709,1,0),
16120 (53710,53709,53709,2,0),
16121 (53711,53710,53709,3,0),
16122 /*------------------
16123 --(270)Pet-GenericHunter
16124 ------------------*/
16125 /*Cower*/
16126 (1742,0,1742,1,0),
16127 (1753,1742,1742,2,0),
16128 (1754,1753,1742,3,0),
16129 (1755,1754,1742,4,0),
16130 (1756,1755,1742,5,0),
16131 (16697,1756,1742,6,0),
16132 (27048,16697,1742,7,0),
16133 /*Great Resistance*/
16134 (53427,0,53427,1,0),
16135 (53429,53427,53427,2,0),
16136 (53430,53429,53427,3,0),
16137 /*Growl*/
16138 (2649,0,2649,1,0),
16139 (14916,2649,2649,2,0),
16140 (14917,14916,2649,3,0),
16141 (14918,14917,2649,4,0),
16142 (14919,14918,2649,5,0),
16143 (14920,14919,2649,6,0),
16144 (14921,14920,2649,7,0),
16145 (27047,14921,2649,8,0),
16146 (61676,27047,2649,9,0),
16147 /*Shark Attack*/
16148 (62759,0,62759,1,0),
16149 (62760,62759,62759,2,0),
16150 /*Silverback*/
16151 (62764,0,62764,1,0),
16152 (62765,62764,62764,2,0),
16153 /*Wild Hunt*/
16154 (62758,0,62758,1,0),
16155 (62762,62758,62758,2,0),
16156 /*------------------
16157 -- (333) Enchanting
16158 ------------------*/
16159 /*Enchanting*/
16160 (7411,0,7411,1,0),
16161 (7412,7411,7411,2,0),
16162 (7413,7412,7411,3,0),
16163 (13920,7413,7411,4,0),
16164 (28029,13920,7411,5,0),
16165 (51313,28029,7411,6,0),
16166 /*------------------
16167 --(354)Demonology
16168 ------------------*/
16169 /*Banish*/
16170 (710,0,710,1,0),
16171 (18647,710,710,2,0),
16172 /*CreateFirestone*/
16173 (6366,0,6366,1,0),
16174 (17951,6366,6366,2,0),
16175 (17952,17951,6366,3,0),
16176 (17953,17952,6366,4,0),
16177 (27250,17953,6366,5,0),
16178 (60219,27250,6366,6,0),
16179 (60220,60219,6366,7,0),
16180 /*CreateHealthstone*/
16181 (6201,0,6201,1,0),
16182 (6202,6201,6201,2,0),
16183 (5699,6202,6201,3,0),
16184 (11729,5699,6201,4,0),
16185 (11730,11729,6201,5,0),
16186 (27230,11730,6201,6,0),
16187 (47871,27230,6201,7,0),
16188 (47878,47871,6201,8,0),
16189 /*CreateSoulstone*/
16190 (693,0,693,1,0),
16191 (20752,693,693,2,0),
16192 (20755,20752,693,3,0),
16193 (20756,20755,693,4,0),
16194 (20757,20756,693,5,0),
16195 (27238,20757,693,6,0),
16196 (47884,27238,693,7,0),
16197 /*CreateSpellstone*/
16198 (2362,0,2362,1,0),
16199 (17727,2362,2362,2,0),
16200 (17728,17727,2362,3,0),
16201 (28172,17728,2362,4,0),
16202 (47886,28172,2362,5,0),
16203 (47888,47886,2362,6,0),
16204 /*Decimation*/
16205 (63156,0,63156,1,0),
16206 (63158,63156,63156,2,0),
16207 /*DemonArmor*/
16208 (706,0,706,1,0),
16209 (1086,706,706,2,0),
16210 (11733,1086,706,3,0),
16211 (11734,11733,706,4,0),
16212 (11735,11734,706,5,0),
16213 (27260,11735,706,6,0),
16214 (47793,27260,706,7,0),
16215 (47889,47793,706,8,0),
16216 /*DemonSkin*/
16217 (687,0,687,1,0),
16218 (696,687,687,2,0),
16219 /*EnslaveDemon*/
16220 (1098,0,1098,1,0),
16221 (11725,1098,1098,2,0),
16222 (11726,11725,1098,3,0),
16223 (61191,11726,1098,4,0),
16224 /*FelArmor*/
16225 (28176,0,28176,1,0),
16226 (28189,28176,28176,2,0),
16227 (47892,28189,28176,3,0),
16228 (47893,47892,28176,4,0),
16229 /*HealthFunnel*/
16230 (755,0,755,1,0),
16231 (3698,755,755,2,0),
16232 (3699,3698,755,3,0),
16233 (3700,3699,755,4,0),
16234 (11693,3700,755,5,0),
16235 (11694,11693,755,6,0),
16236 (11695,11694,755,7,0),
16237 (27259,11695,755,8,0),
16238 (47856,27259,755,9,0),
16239 /*Nemesis*/
16240 (63117,0,63117,1,0),
16241 (63121,63117,63117,2,0),
16242 (63123,63121,63117,3,0),
16243 /*RitualofSouls*/
16244 (29893,0,29893,1,0),
16245 (58887,29893,29893,2,0),
16246 /*ShadowWard*/
16247 (6229,0,6229,1,0),
16248 (11739,6229,6229,2,0),
16249 (11740,11739,6229,3,0),
16250 (28610,11740,6229,4,0),
16251 (47890,28610,6229,5,0),
16252 (47891,47890,6229,6,0),
16253 /*------------------
16254 --(355)Affliction
16255 ------------------*/
16256 /*Corruption*/
16257 (172,0,172,1,0),
16258 (6222,172,172,2,0),
16259 (6223,6222,172,3,0),
16260 (7648,6223,172,4,0),
16261 (11671,7648,172,5,0),
16262 (11672,11671,172,6,0),
16263 (25311,11672,172,7,0),
16264 (27216,25311,172,8,0),
16265 (47812,27216,172,9,0),
16266 (47813,47812,172,10,0),
16267 /*Curse of Agony*/
16268 (980,0,980,1,0),
16269 (1014,980,980,2,0),
16270 (6217,1014,980,3,0),
16271 (11711,6217,980,4,0),
16272 (11712,11711,980,5,0),
16273 (11713,11712,980,6,0),
16274 (27218,11713,980,7,0),
16275 (47863,27218,980,8,0),
16276 (47864,47863,980,9,0),
16277 /*Curse of Doom*/
16278 (603,0,603,1,0),
16279 (30910,603,603,2,0),
16280 (47867,30910,603,3,0),
16281 /*Curse of the Elements*/
16282 (1490,0,1490,1,0),
16283 (11721,1490,1490,2,0),
16284 (11722,11721,1490,3,0),
16285 (27228,11722,1490,4,0),
16286 (47865,27228,1490,5,0),
16287 /*Curse of Tongues*/
16288 (1714,0,1714,1,0),
16289 (11719,1714,1714,2,0),
16290 /*Curse of Weakness*/
16291 (702,0,702,1,0),
16292 (1108,702,702,2,0),
16293 (6205,1108,702,3,0),
16294 (7646,6205,702,4,0),
16295 (11707,7646,702,5,0),
16296 (11708,11707,702,6,0),
16297 (27224,11708,702,7,0),
16298 (30909,27224,702,8,0),
16299 (50511,30909,702,9,0),
16300 /*Dark Pact*/
16301 (18220,0,    18220,1,0),
16302 (18937,18220,18220,2,0),
16303 (18938,18937,18220,3,0),
16304 (27265,18938,18220,4,0),
16305 (59092,27265,18220,5,0),
16306 /*Death Coil*/
16307 (6789,0,6789,1,0),
16308 (17925,6789,6789,2,0),
16309 (17926,17925,6789,3,0),
16310 (27223,17926,6789,4,0),
16311 (47859,27223,6789,5,0),
16312 (47860,47859,6789,6,0),
16313 /*Drain Life*/
16314 (689,0,689,1,0),
16315 (699,689,689,2,0),
16316 (709,699,689,3,0),
16317 (7651,709,689,4,0),
16318 (11699,7651,689,5,0),
16319 (11700,11699,689,6,0),
16320 (27219,11700,689,7,0),
16321 (27220,27219,689,8,0),
16322 (47857,27220,689,9,0),
16323 /*Drain Soul*/
16324 (1120,0,1120,1,0),
16325 (8288,1120,1120,2,0),
16326 (8289,8288,1120,3,0),
16327 (11675,8289,1120,4,0),
16328 (27217,11675,1120,5,0),
16329 (47855,27217,1120,6,0),
16330 /*Fear*/
16331 (5782,0,5782,1,0),
16332 (6213,5782,5782,2,0),
16333 (6215,6213,5782,3,0),
16334 /*Haunt*/
16335 (48181,0,48181,1,0),
16336 (59161,48181,48181,2,0),
16337 (59163,59161,48181,3,0),
16338 (59164,59163,48181,4,0),
16339 /*Howl of Terror*/
16340 (5484,0,5484,1,0),
16341 (17928,5484,5484,2,0),
16342 /*Seed of Corruption*/
16343 (27243,0,27243,1,0),
16344 (47835,27243,27243,2,0),
16345 (47836,47835,27243,3,0),
16346 /* Shadow embrace */
16347 (32385,0,32385,1,0),
16348 (32387,32385,32385,2,0),
16349 (32392,32387,32385,3,0),
16350 (32393,32392,32385,4,0),
16351 (32394,32393,32385,5,0),
16352 /*Unstable Affliction*/
16353 (30108,0,30108,1,0),
16354 (30404,30108,30108,2,0),
16355 (30405,30404,30108,3,0),
16356 (47841,30405,30108,4,0),
16357 (47843,47841,30108,5,0),
16358 /*------------------
16359 -- (356) Fishing
16360 ------------------*/
16361 /*Fishing*/
16362 (7620,0,7620,1,0),
16363 (7731,7620,7620,2,0),
16364 (7732,7731,7620,3,0),
16365 (18248,7732,7620,4,0),
16366 (33095,18248,7620,5,0),
16367 (51294,33095,7620,6,0),
16368 /*------------------
16369 --(373) Enhancement
16370 ------------------*/
16371 /*Fire Resistance Totem*/
16372 (8184,0,8184,1,0),
16373 (10537,8184,8184,2,0),
16374 (10538,10537,8184,3,0),
16375 (25563,10538,8184,4,0),
16376 (58737,25563,8184,5,0),
16377 (58739,58737,8184,6,0),
16378 /*Flametongue Totem*/
16379 (8227,0,8227,1,0),
16380 (8249,8227,8227,2,0),
16381 (10526,8249,8227,3,0),
16382 (16387,10526,8227,4,0),
16383 (25557,16387,8227,5,0),
16384 (58649,25557,8227,6,0),
16385 (58652,58649,8227,7,0),
16386 (58656,58652,8227,8,0),
16387 /*Flametongue Weapon*/
16388 (8024,0,8024,1,0),
16389 (8027,8024,8024,2,0),
16390 (8030,8027,8024,3,0),
16391 (16339,8030,8024,4,0),
16392 (16341,16339,8024,5,0),
16393 (16342,16341,8024,6,0),
16394 (25489,16342,8024,7,0),
16395 (58785,25489,8024,8,0),
16396 (58789,58785,8024,9,0),
16397 (58790,58789,8024,10,0),
16398 /*Frost Resistance Totem*/
16399 (8181,0,8181,1,0),
16400 (10478,8181,8181,2,0),
16401 (10479,10478,8181,3,0),
16402 (25560,10479,8181,4,0),
16403 (58741,25560,8181,5,0),
16404 (58745,58741,8181,6,0),
16405 /*Frostbrand Weapon*/
16406 (8033,0,8033,1,0),
16407 (8038,8033,8033,2,0),
16408 (10456,8038,8033,3,0),
16409 (16355,10456,8033,4,0),
16410 (16356,16355,8033,5,0),
16411 (25500,16356,8033,6,0),
16412 (58794,25500,8033,7,0),
16413 (58795,58794,8033,8,0),
16414 (58796,58795,8033,9,0),
16415 /*Frozen Power*/
16416 (63373,0,63373,1,0),
16417 (63374,63373,63373,2,0),
16418 /*Improved Stormstrike*/
16419 (51521,0,51521,1,0),
16420 (51522,51521,51521,2,0),
16421 /*Life Tap*/
16422 (1454,0,1454,1,0),
16423 (1455,1454,1454,2,0),
16424 (1456,1455,1454,3,0),
16425 (11687,1456,1454,4,0),
16426 (11688,11687,1454,5,0),
16427 (11689,11688,1454,6,0),
16428 (27222,11689,1454,7,0),
16429 (57946,27222,1454,8,0),
16430 /*Lightning Shield*/
16431 (324,0,324,1,0),
16432 (325,324,324,2,0),
16433 (905,325,324,3,0),
16434 (945,905,324,4,0),
16435 (8134,945,324,5,0),
16436 (10431,8134,324,6,0),
16437 (10432,10431,324,7,0),
16438 (25469,10432,324,8,0),
16439 (25472,25469,324,9,0),
16440 (49280,25472,324,10,0),
16441 (49281,49280,324,11,0),
16442 /* Lightning Shield Proc */
16443 (26364,0,26364,1,0),
16444 (26365,26364,26364,2,0),
16445 (26366,26365,26364,3,0),
16446 (26367,26366,26364,4,0),
16447 (26369,26367,26364,5,0),
16448 (26370,26369,26364,6,0),
16449 (26363,26370,26364,7,0),
16450 (26371,26363,26364,8,0),
16451 (26372,26371,26364,9,0),
16452 (49278,26372,26364,10,0),
16453 (49279,49278,26364,11,0),
16454 /*Maelstrom Weapon*/
16455 (51528,0,51528,1,0),
16456 (51529,51528,51528,2,0),
16457 (51530,51529,51528,3,0),
16458 (51531,51530,51528,4,0),
16459 (51532,51531,51528,5,0),
16460 /*Nature Resistance Totem*/
16461 (10595,0,10595,1,0),
16462 (10600,10595,10595,2,0),
16463 (10601,10600,10595,3,0),
16464 (25574,10601,10595,4,0),
16465 (58746,25574,10595,5,0),
16466 (58749,58746,10595,6,0),
16467 /*Rockbiter Weapon*/
16468 (8017,0,8017,1,0),
16469 (8018,8017,8017,2,0),
16470 (8019,8018,8017,3,0),
16471 (10399,8019,8017,4,0),
16472 /*Stoneskin Totem*/
16473 (8071,0,8071,1,0),
16474 (8154,8071,8071,2,0),
16475 (8155,8154,8071,3,0),
16476 (10406,8155,8071,4,0),
16477 (10407,10406,8071,5,0),
16478 (10408,10407,8071,6,0),
16479 (25508,10408,8071,7,0),
16480 (25509,25508,8071,8,0),
16481 (58751,25509,8071,9,0),
16482 (58753,58751,8071,10,0),
16483 /*Strength of Earth Totem*/
16484 (8075,0,8075,1,0),
16485 (8160,8075,8075,2,0),
16486 (8161,8160,8075,3,0),
16487 (10442,8161,8075,4,0),
16488 (25361,10442,8075,5,0),
16489 (25528,25361,8075,6,0),
16490 (57622,25528,8075,7,0),
16491 (58643,57622,8075,8,0),
16492 /*WindfuryWeapon*/
16493 (8232,0,8232,1,0),
16494 (8235,8232,8232,2,0),
16495 (10486,8235,8232,3,0),
16496 (16362,10486,8232,4,0),
16497 (25505,16362,8232,5,0),
16498 (58801,25505,8232,6,0),
16499 (58803,58801,8232,7,0),
16500 (58804,58803,8232,8,0),
16501 /*------------------
16502 -- (374) Restoration (Shaman)
16503 ------------------*/
16504 /*AncestralSpirit*/
16505 (2008,0,2008,1,0),
16506 (20609,2008,2008,2,0),
16507 (20610,20609,2008,3,0),
16508 (20776,20610,2008,4,0),
16509 (20777,20776,2008,5,0),
16510 (25590,20777,2008,6,0),
16511 (49277,25590,2008,7,0),
16512 /*ChainHeal*/
16513 (1064,0,1064,1,0),
16514 (10622,1064,1064,2,0),
16515 (10623,10622,1064,3,0),
16516 (25422,10623,1064,4,0),
16517 (25423,25422,1064,5,0),
16518 (55458,25423,1064,6,0),
16519 (55459,55458,1064,7,0),
16520 /*EarthShield*/
16521 (974,0,974,1,0),
16522 (32593,974,974,2,0),
16523 (32594,32593,974,3,0),
16524 (49283,32594,974,4,0),
16525 (49284,49283,974,5,0),
16526 /*EarthlivingWeapon*/
16527 (51730,0,51730,1,0),
16528 (51988,51730,51730,2,0),
16529 (51991,51988,51730,3,0),
16530 (51992,51991,51730,4,0),
16531 (51993,51992,51730,5,0),
16532 (51994,51993,51730,6,0),
16533 /*HealingStreamTotem*/
16534 (5394,0,5394,1,0),
16535 (6375,5394,5394,2,0),
16536 (6377,6375,5394,3,0),
16537 (10462,6377,5394,4,0),
16538 (10463,10462,5394,5,0),
16539 (25567,10463,5394,6,0),
16540 (58755,25567,5394,7,0),
16541 (58756,58755,5394,8,0),
16542 (58757,58756,5394,9,0),
16543 /*HealingWave*/
16544 (331,0,331,1,0),
16545 (332,331,331,2,0),
16546 (547,332,331,3,0),
16547 (913,547,331,4,0),
16548 (939,913,331,5,0),
16549 (959,939,331,6,0),
16550 (8005,959,331,7,0),
16551 (10395,8005,331,8,0),
16552 (10396,10395,331,9,0),
16553 (25357,10396,331,10,0),
16554 (25391,25357,331,11,0),
16555 (25396,25391,331,12,0),
16556 (49272,25396,331,13,0),
16557 (49273,49272,331,14,0),
16558 /*LesserHealingWave*/
16559 (8004,0,8004,1,0),
16560 (8008,8004,8004,2,0),
16561 (8010,8008,8004,3,0),
16562 (10466,8010,8004,4,0),
16563 (10467,10466,8004,5,0),
16564 (10468,10467,8004,6,0),
16565 (25420,10468,8004,7,0),
16566 (49275,25420,8004,8,0),
16567 (49276,49275,8004,9,0),
16568 /*Mana Spring Totem*/
16569 (5675,0,5675,1,0),
16570 (10495,5675,5675,2,0),
16571 (10496,10495,5675,3,0),
16572 (10497,10496,5675,4,0),
16573 (25570,10497,5675,5,0),
16574 (58771,25570,5675,6,0),
16575 (58773,58771,5675,7,0),
16576 (58774,58773,5675,8,0),
16577 /*Riptide*/
16578 (61295,0,61295,1,0),
16579 (61299,61295,61295,2,0),
16580 (61300,61299,61295,3,0),
16581 (61301,61300,61295,4,0),
16582 /*Water Shield*/
16583 (52127,0,52127,1,0),
16584 (52129,52127,52127,2,0),
16585 (52131,52129,52127,3,0),
16586 (52134,52131,52127,4,0),
16587 (52136,52134,52127,5,0),
16588 (52138,52136,52127,6,0),
16589 (24398,52138,52127,7,0),
16590 (33736,24398,52127,8,0),
16591 (57960,33736,52127,9,0),
16592 /*------------------
16593 -- (375) Elemental Combat
16594 ------------------*/
16595 /*Booming Echoes*/
16596 (63370,0,63370,1,0),
16597 (63372,63370,63370,2,0),
16598 /*Chain Lightning*/
16599 (421,0,421,1,0),
16600 (930,421,421,2,0),
16601 (2860,930,421,3,0),
16602 (10605,2860,421,4,0),
16603 (25439,10605,421,5,0),
16604 (25442,25439,421,6,0),
16605 (49270,25442,421,7,0),
16606 (49271,49270,421,8,0),
16607 /*Earth Shock*/
16608 (8042,0,8042,1,0),
16609 (8044,8042,8042,2,0),
16610 (8045,8044,8042,3,0),
16611 (8046,8045,8042,4,0),
16612 (10412,8046,8042,5,0),
16613 (10413,10412,8042,6,0),
16614 (10414,10413,8042,7,0),
16615 (25454,10414,8042,8,0),
16616 (49230,25454,8042,9,0),
16617 (49231,49230,8042,10,0),
16618 /*Fire Nova*/
16619 (1535,0,1535,1,0),
16620 (8498,1535,1535,2,0),
16621 (8499,8498,1535,3,0),
16622 (11314,8499,1535,4,0),
16623 (11315,11314,1535,5,0),
16624 (25546,11315,1535,6,0),
16625 (25547,25546,1535,7,0),
16626 (61649,25547,1535,8,0),
16627 (61657,61649,1535,9,0),
16628 /*Flame Shock*/
16629 (8050,0,8050,1,0),
16630 (8052,8050,8050,2,0),
16631 (8053,8052,8050,3,0),
16632 (10447,8053,8050,4,0),
16633 (10448,10447,8050,5,0),
16634 (29228,10448,8050,6,0),
16635 (25457,29228,8050,7,0),
16636 (49232,25457,8050,8,0),
16637 (49233,49232,8050,9,0),
16638 /*Frost Shock*/
16639 (8056,0,8056,1,0),
16640 (8058,8056,8056,2,0),
16641 (10472,8058,8056,3,0),
16642 (10473,10472,8056,4,0),
16643 (25464,10473,8056,5,0),
16644 (49235,25464,8056,6,0),
16645 (49236,49235,8056,7,0),
16646 /*Lava Burst*/
16647 (51505,0,51505,1,0),
16648 (60043,51505,51505,2,0),
16649 /*Lightning Bolt*/
16650 (403,0,403,1,0),
16651 (529,403,403,2,0),
16652 (548,529,403,3,0),
16653 (915,548,403,4,0),
16654 (943,915,403,5,0),
16655 (6041,943,403,6,0),
16656 (10391,6041,403,7,0),
16657 (10392,10391,403,8,0),
16658 (15207,10392,403,9,0),
16659 (15208,15207,403,10,0),
16660 (25448,15208,403,11,0),
16661 (25449,25448,403,12,0),
16662 (49237,25449,403,13,0),
16663 (49238,49237,403,14,0),
16664 /*Magma Totem*/
16665 (8190,0,8190,1,0),
16666 (10585,8190,8190,2,0),
16667 (10586,10585,8190,3,0),
16668 (10587,10586,8190,4,0),
16669 (25552,10587,8190,5,0),
16670 (58731,25552,8190,6,0),
16671 (58734,58731,8190,7,0),
16672 /*Purge*/
16673 (370,0,370,1,0),
16674 (8012,370,370,2,0),
16675 /*Searing Totem*/
16676 (3599,0,3599,1,0),
16677 (6363,3599,3599,2,0),
16678 (6364,6363,3599,3,0),
16679 (6365,6364,3599,4,0),
16680 (10437,6365,3599,5,0),
16681 (10438,10437,3599,6,0),
16682 (25533,10438,3599,7,0),
16683 (58699,25533,3599,8,0),
16684 (58703,58699,3599,9,0),
16685 (58704,58703,3599,10,0),
16686 /*Stoneclaw Totem*/
16687 (5730,0,5730,1,0),
16688 (6390,5730,5730,2,0),
16689 (6391,6390,5730,3,0),
16690 (6392,6391,5730,4,0),
16691 (10427,6392,5730,5,0),
16692 (10428,10427,5730,6,0),
16693 (25525,10428,5730,7,0),
16694 (58580,25525,5730,8,0),
16695 (58581,58580,5730,9,0),
16696 (58582,58581,5730,10,0),
16697 /*Totem of Wrath*/
16698 (30706,0,30706,1,0),
16699 (57720,30706,30706,2,0),
16700 (57721,57720,30706,3,0),
16701 (57722,57721,30706,4,0),
16702 /*Thunderstorm*/
16703 (51490,0,51490,1,0),
16704 (59156,51490,51490,2,0),
16705 (59158,59156,51490,3,0),
16706 (59159,59158,51490,4,0),
16707 /*------------------
16708 -- (393) Skinning
16709 ------------------*/
16710 /*Skinning*/
16711 (8613,0,8613,1,0),
16712 (8617,8613,8613,2,0),
16713 (8618,8617,8613,3,0),
16714 (10768,8618,8613,4,0),
16715 (32678,10768,8613,5,0),
16716 (50305,32678,8613,6,0),
16717 /*Master of Anatomy*/
16718 (53125,0,53125,1,0),
16719 (53662,53125,53125,2,0),
16720 (53663,53662,53125,3,0),
16721 (53664,53663,53125,4,0),
16722 (53665,53664,53125,5,0),
16723 (53666,53665,53125,6,0),
16724 /*------------------
16725 --(573)Restoration
16726 ------------------*/
16727 /*GiftoftheWild*/
16728 (21849,0,21849,1,0),
16729 (21850,21849,21849,2,0),
16730 (26991,21850,21849,3,0),
16731 (48470,26991,21849,4,0),
16732 /*HealingTouch*/
16733 (5185,0,5185,1,0),
16734 (5186,5185,5185,2,0),
16735 (5187,5186,5185,3,0),
16736 (5188,5187,5185,4,0),
16737 (5189,5188,5185,5,0),
16738 (6778,5189,5185,6,0),
16739 (8903,6778,5185,7,0),
16740 (9758,8903,5185,8,0),
16741 (9888,9758,5185,9,0),
16742 (9889,9888,5185,10,0),
16743 (25297,9889,5185,11,0),
16744 (26978,25297,5185,12,0),
16745 (26979,26978,5185,13,0),
16746 (48377,26979,5185,14,0),
16747 (48378,48377,5185,15,0),
16748 /*Improved Barkskin*/
16749 (63410,0,63410,1,0),
16750 (63411,63410,63410,2,0),
16751 /*Lifebloom*/
16752 (33763,0,33763,1,0),
16753 (48450,33763,33763,2,0),
16754 (48451,48450,33763,3,0),
16755 /*MarkoftheWild*/
16756 (1126,0,1126,1,0),
16757 (5232,1126,1126,2,0),
16758 (6756,5232,1126,3,0),
16759 (5234,6756,1126,4,0),
16760 (8907,5234,1126,5,0),
16761 (9884,8907,1126,6,0),
16762 (9885,9884,1126,7,0),
16763 (26990,9885,1126,8,0),
16764 (48469,26990,1126,9,0),
16765 /*Nourish*/
16766 (50464,0,50464,1,0),
16767 /*Rebirth*/
16768 (20484,0,20484,1,0),
16769 (20739,20484,20484,2,0),
16770 (20742,20739,20484,3,0),
16771 (20747,20742,20484,4,0),
16772 (20748,20747,20484,5,0),
16773 (26994,20748,20484,6,0),
16774 (48477,26994,20484,7,0),
16775 /*Regrowth*/
16776 (8936,0,8936,1,0),
16777 (8938,8936,8936,2,0),
16778 (8939,8938,8936,3,0),
16779 (8940,8939,8936,4,0),
16780 (8941,8940,8936,5,0),
16781 (9750,8941,8936,6,0),
16782 (9856,9750,8936,7,0),
16783 (9857,9856,8936,8,0),
16784 (9858,9857,8936,9,0),
16785 (26980,9858,8936,10,0),
16786 (48442,26980,8936,11,0),
16787 (48443,48442,8936,12,0),
16788 /*Rejuvenation*/
16789 (774,0,774,1,0),
16790 (1058,774,774,2,0),
16791 (1430,1058,774,3,0),
16792 (2090,1430,774,4,0),
16793 (2091,2090,774,5,0),
16794 (3627,2091,774,6,0),
16795 (8910,3627,774,7,0),
16796 (9839,8910,774,8,0),
16797 (9840,9839,774,9,0),
16798 (9841,9840,774,10,0),
16799 (25299,9841,774,11,0),
16800 (26981,25299,774,12,0),
16801 (26982,26981,774,13,0),
16802 (48440,26982,774,14,0),
16803 (48441,48440,774,15,0),
16804 /*Revitalize*/
16805 (48539,0,48539,1,0),
16806 (48544,48539,48539,2,0),
16807 (48545,48544,48539,3,0),
16808 /*Revive*/
16809 (50769,0,50769,1,0),
16810 (50768,50769,50769,2,0),
16811 (50767,50768,50769,3,0),
16812 (50766,50767,50769,4,0),
16813 (50765,50766,50769,5,0),
16814 (50764,50765,50769,6,0),
16815 (50763,50764,50769,7,0),
16816 /*Tranquility*/
16817 (740,0,740,1,0),
16818 (8918,740,740,2,0),
16819 (9862,8918,740,3,0),
16820 (9863,9862,740,4,0),
16821 (26983,9863,740,5,0),
16822 (48446,26983,740,6,0),
16823 (48447,48446,740,7,0),
16824 /*Wild Growth*/
16825 (48438,0,48438,1,0),
16826 (53248,48438,48438,2,0),
16827 (53249,53248,48438,3,0),
16828 (53251,53249,48438,4,0),
16829 /*------------------
16830 --(574)Balance
16831 ------------------*/
16832 /*EntanglingRoots*/
16833 (339,0,339,1,0),
16834 (1062,339,339,2,0),
16835 (5195,1062,339,3,0),
16836 (5196,5195,339,4,0),
16837 (9852,5196,339,5,0),
16838 (9853,9852,339,6,0),
16839 (26989,9853,339,7,0),
16840 (53308,26989,339,8,0),
16841 /*Nature'sGrasp*/
16842 (16689,0,16689,1,339),
16843 (16810,16689,16689,2,1062),
16844 (16811,16810,16689,3,5195),
16845 (16812,16811,16689,4,5196),
16846 (16813,16812,16689,5,9852),
16847 (17329,16813,16689,6,9853),
16848 (27009,17329,16689,7,26989),
16849 (53312,27009,16689,8,53308),
16850 /*Hibernate*/
16851 (2637,0,2637,1,0),
16852 (18657,2637,2637,2,0),
16853 (18658,18657,2637,3,0),
16854 /*Hurricane*/
16855 (16914,0,16914,1,0),
16856 (17401,16914,16914,2,0),
16857 (17402,17401,16914,3,0),
16858 (27012,17402,16914,4,0),
16859 (48467,27012,16914,5,0),
16860 /*Insect Swarm*/
16861 (5570,0,5570,1,0),
16862 (24974,5570,5570,2,0),
16863 (24975,24974,5570,3,0),
16864 (24976,24975,5570,4,0),
16865 (24977,24976,5570,5,0),
16866 (27013,24977,5570,6,0),
16867 (48468,27013,5570,7,0),
16868 /*Moonfire*/
16869 (8921,0,8921,1,0),
16870 (8924,8921,8921,2,0),
16871 (8925,8924,8921,3,0),
16872 (8926,8925,8921,4,0),
16873 (8927,8926,8921,5,0),
16874 (8928,8927,8921,6,0),
16875 (8929,8928,8921,7,0),
16876 (9833,8929,8921,8,0),
16877 (9834,9833,8921,9,0),
16878 (9835,9834,8921,10,0),
16879 (26987,9835,8921,11,0),
16880 (26988,26987,8921,12,0),
16881 (48462,26988,8921,13,0),
16882 (48463,48462,8921,14,0),
16883 /*Soothe Animal*/
16884 (2908,0,2908,1,0),
16885 (8955,2908,2908,2,0),
16886 (9901,8955,2908,3,0),
16887 (26995,9901,2908,4,0),
16888 /*Starfall*/
16889 (48505,0,48505,1,0),
16890 (53199,48505,48505,2,0),
16891 (53200,53199,48505,3,0),
16892 (53201,53200,48505,4,0),
16893 /*Starfall AOE*/
16894 (50294,0,50294,1,0),
16895 (53188,50294,50294,2,0),
16896 (53189,53188,50294,3,0),
16897 (53190,53189,50294,4,0),
16898 /*Starfall Direct*/
16899 (50288,0,50288,1,0),
16900 (53191,50288,50288,2,0),
16901 (53194,53191,50288,3,0),
16902 (53195,53194,50288,4,0),
16903 /*Starfire*/
16904 (2912,0,2912,1,0),
16905 (8949,2912,2912,2,0),
16906 (8950,8949,2912,3,0),
16907 (8951,8950,2912,4,0),
16908 (9875,8951,2912,5,0),
16909 (9876,9875,2912,6,0),
16910 (25298,9876,2912,7,0),
16911 (26986,25298,2912,8,0),
16912 (48464,26986,2912,9,0),
16913 (48465,48464,2912,10,0),
16914 /*Thorns*/
16915 (467,0,467,1,0),
16916 (782,467,467,2,0),
16917 (1075,782,467,3,0),
16918 (8914,1075,467,4,0),
16919 (9756,8914,467,5,0),
16920 (9910,9756,467,6,0),
16921 (26992,9910,467,7,0),
16922 (53307,26992,467,8,0),
16923 /*Typhoon*/
16924 (50516,0,50516,1,0),
16925 (53223,50516,50516,2,0),
16926 (53225,53223,50516,3,0),
16927 (53226,53225,50516,4,0),
16928 (61384,53226,50516,5,0),
16929 /*Typhoon Triggered*/
16930 (61391,0,61391,1,0),
16931 (61390,61391,61391,2,0),
16932 (61388,61390,61391,3,0),
16933 (61387,61388,61391,4,0),
16934 (53227,61387,61391,5,0),
16935 /*Wrath*/
16936 (5176,0,5176,1,0),
16937 (5177,5176,5176,2,0),
16938 (5178,5177,5176,3,0),
16939 (5179,5178,5176,4,0),
16940 (5180,5179,5176,5,0),
16941 (6780,5180,5176,6,0),
16942 (8905,6780,5176,7,0),
16943 (9912,8905,5176,8,0),
16944 (26984,9912,5176,9,0),
16945 (26985,26984,5176,10,0),
16946 (48459,26985,5176,11,0),
16947 (48461,48459,5176,12,0),
16948 /*------------------
16949 --(593)Destruction
16950 ------------------*/
16951 /*Chaos Bolt*/
16952 (50796,0,50796,1,0),
16953 (59170,50796,50796,2,0),
16954 (59171,59170,50796,3,0),
16955 (59172,59171,50796,4,0),
16956 /*Hellfire*/
16957 (1949,0,1949,1,0),
16958 (11683,1949,1949,2,0),
16959 (11684,11683,1949,3,0),
16960 (27213,11684,1949,4,0),
16961 (47823,27213,1949,5,0),
16962 /* Hellfire Effect on Enemy */
16963 (5857,0,5857,1,0),
16964 (11681,5857,5857,2,0),
16965 (11682,11681,5857,3,0),
16966 (27214,11682,5857,4,0),
16967 (47822,27214,5857,5,0),
16968 /*Immolate*/
16969 (348,0,348,1,0),
16970 (707,348,348,2,0),
16971 (1094,707,348,3,0),
16972 (2941,1094,348,4,0),
16973 (11665,2941,348,5,0),
16974 (11667,11665,348,6,0),
16975 (11668,11667,348,7,0),
16976 (25309,11668,348,8,0),
16977 (27215,25309,348,9,0),
16978 (47810,27215,348,10,0),
16979 (47811,47810,348,11,0),
16980 /*Incinerate*/
16981 (29722,0,29722,1,0),
16982 (32231,29722,29722,2,0),
16983 (47837,32231,29722,3,0),
16984 (47838,47837,29722,4,0),
16985 /*Molten Skin*/
16986 (63349,0,63349,1,0),
16987 (63350,63349,63349,2,0),
16988 (63351,63350,63349,3,0),
16989 /*Rain of Fire*/
16990 (5740,0,5740,1,0),
16991 (6219,5740,5740,2,0),
16992 (11677,6219,5740,3,0),
16993 (11678,11677,5740,4,0),
16994 (27212,11678,5740,5,0),
16995 (47819,27212,5740,6,0),
16996 (47820,47819,5740,7,0),
16997 /* Rain of Fire Triggered */
16998 (42223,0,42223,1,0),
16999 (42224,42223,42223,2,0),
17000 (42225,42224,42223,3,0),
17001 (42226,42225,42223,4,0),
17002 (42218,42226,42223,5,0),
17003 (47817,42218,42223,6,0),
17004 (47818,47817,42223,7,0),
17005 /*Searing Pain*/
17006 (5676,0,5676,1,0),
17007 (17919,5676,5676,2,0),
17008 (17920,17919,5676,3,0),
17009 (17921,17920,5676,4,0),
17010 (17922,17921,5676,5,0),
17011 (17923,17922,5676,6,0),
17012 (27210,17923,5676,7,0),
17013 (30459,27210,5676,8,0),
17014 (47814,30459,5676,9,0),
17015 (47815,47814,5676,10,0),
17016 /*Shadow Bolt*/
17017 (686,0,686,1,0),
17018 (695,686,686,2,0),
17019 (705,695,686,3,0),
17020 (1088,705,686,4,0),
17021 (1106,1088,686,5,0),
17022 (7641,1106,686,6,0),
17023 (11659,7641,686,7,0),
17024 (11660,11659,686,8,0),
17025 (11661,11660,686,9,0),
17026 (25307,11661,686,10,0),
17027 (27209,25307,686,11,0),
17028 (47808,27209,686,12,0),
17029 (47809,47808,686,13,0),
17030 /*Shadowburn*/
17031 (17877,0,17877,1,0),
17032 (18867,17877,17877,2,0),
17033 (18868,18867,17877,3,0),
17034 (18869,18868,17877,4,0),
17035 (18870,18869,17877,5,0),
17036 (18871,18870,17877,6,0),
17037 (27263,18871,17877,7,0),
17038 (30546,27263,17877,8,0),
17039 (47826,30546,17877,9,0),
17040 (47827,47826,17877,10,0),
17041 /*Shadowflame*/
17042 (47897,0,47897,1,0),
17043 (61290,47897,47897,2,0),
17044 /*Shadowfury*/
17045 (30283,0,30283,1,0),
17046 (30413,30283,30283,2,0),
17047 (30414,30413,30283,3,0),
17048 (47846,30414,30283,4,0),
17049 (47847,47846,30283,5,0),
17050 /*SoulFire*/
17051 (6353,0,6353,1,0),
17052 (17924,6353,6353,2,0),
17053 (27211,17924,6353,3,0),
17054 (30545,27211,6353,4,0),
17055 (47824,30545,6353,5,0),
17056 (47825,47824,6353,6,0),
17057 /*------------------
17058 --(594) Holy (Paladin)
17059 ------------------*/
17060 /*Blessing of Wisdom*/
17061 (19742,0,19742,1,0),
17062 (19850,19742,19742,2,0),
17063 (19852,19850,19742,3,0),
17064 (19853,19852,19742,4,0),
17065 (19854,19853,19742,5,0),
17066 (25290,19854,19742,6,0),
17067 (27142,25290,19742,7,0),
17068 (48935,27142,19742,8,0),
17069 (48936,48935,19742,9,0),
17070 /*Consecration*/
17071 (26573,0,26573,1,0),
17072 (20116,26573,26573,2,0),
17073 (20922,20116,26573,3,0),
17074 (20923,20922,26573,4,0),
17075 (20924,20923,26573,5,0),
17076 (27173,20924,26573,6,0),
17077 (48818,27173,26573,7,0),
17078 (48819,48818,26573,8,0),
17079 /*Exorcism*/
17080 (879,0,879,1,0),
17081 (5614,879,879,2,0),
17082 (5615,5614,879,3,0),
17083 (10312,5615,879,4,0),
17084 (10313,10312,879,5,0),
17085 (10314,10313,879,6,0),
17086 (27138,10314,879,7,0),
17087 (48800,27138,879,8,0),
17088 (48801,48800,879,9,0),
17089 /*Flash of Light*/
17090 (19750,0,19750,1,0),
17091 (19939,19750,19750,2,0),
17092 (19940,19939,19750,3,0),
17093 (19941,19940,19750,4,0),
17094 (19942,19941,19750,5,0),
17095 (19943,19942,19750,6,0),
17096 (27137,19943,19750,7,0),
17097 (48784,27137,19750,8,0),
17098 (48785,48784,19750,9,0),
17099 /*Greater Blessing of Wisdom*/
17100 (25894,0,25894,1,19854),
17101 (25918,25894,25894,2,25290),
17102 (27143,25918,25894,3,27142),
17103 (48937,27143,25894,4,48935),
17104 (48938,48937,25894,5,48936),
17105 /*Holy Light*/
17106 (635,0,635,1,0),
17107 (639,635,635,2,0),
17108 (647,639,635,3,0),
17109 (1026,647,635,4,0),
17110 (1042,1026,635,5,0),
17111 (3472,1042,635,6,0),
17112 (10328,3472,635,7,0),
17113 (10329,10328,635,8,0),
17114 (25292,10329,635,9,0),
17115 (27135,25292,635,10,0),
17116 (27136,27135,635,11,0),
17117 (48781,27136,635,12,0),
17118 (48782,48781,635,13,0),
17119 /*Holy Shock*/
17120 (20473,0,20473,1,0),
17121 (20929,20473,20473,2,0),
17122 (20930,20929,20473,3,0),
17123 (27174,20930,20473,4,0),
17124 (33072,27174,20473,5,0),
17125 (48824,33072,20473,6,0),
17126 (48825,48824,20473,7,0),
17127 /* Holy Shock Triggered Hurt */
17128 (25912,0,25912,1,0),
17129 (25911,25912,25912,2,0),
17130 (25902,25911,25912,3,0),
17131 (27176,25902,25912,4,0),
17132 (33073,27176,25912,5,0),
17133 (48822,33073,25912,6,0),
17134 (48823,48822,25912,7,0),
17135 /* Holy Shock Triggered Heal */
17136 (25914,0,25914,1,0),
17137 (25913,25914,25914,2,0),
17138 (25903,25913,25914,3,0),
17139 (27175,25903,25914,4,0),
17140 (33074,27175,25914,5,0),
17141 (48820,33074,25914,6,0),
17142 (48821,48820,25914,7,0),
17143 /*Holy Wrath*/
17144 (2812,0,2812,1,0),
17145 (10318,2812,2812,2,0),
17146 (27139,10318,2812,3,0),
17147 (48816,27139,2812,4,0),
17148 (48817,48816,2812,5,0),
17149 /*Lay on Hands*/
17150 (633,0,633,1,0),
17151 (2800,633,633,2,0),
17152 (10310,2800,633,3,0),
17153 (27154,10310,633,4,0),
17154 (48788,27154,633,5,0),
17155 /*Redemption*/
17156 (7328,0,7328,1,0),
17157 (10322,7328,7328,2,0),
17158 (10324,10322,7328,3,0),
17159 (20772,10324,7328,4,0),
17160 (20773,20772,7328,5,0),
17161 (48949,20773,7328,6,0),
17162 (48950,48949,7328,7,0),
17163 /*------------------
17164 --(613)Discipline
17165 ------------------*/
17166 /*DispelMagic*/
17167 (527,0,527,1,0),
17168 (988,527,527,2,0),
17169 /*DivineSpirit*/
17170 (14752,0,14752,1,0),
17171 (14818,14752,14752,2,0),
17172 (14819,14818,14752,3,0),
17173 (27841,14819,14752,4,0),
17174 (25312,27841,14752,5,0),
17175 (48073,25312,14752,6,0),
17176 /*Improved Flash Heal*/
17177 (63504,0,63504,1,0),
17178 (63505,63504,63504,2,0),
17179 (63506,63505,63504,3,0),
17180 /*InnerFire*/
17181 (588,0,588,1,0),
17182 (7128,588,588,2,0),
17183 (602,7128,588,3,0),
17184 (1006,602,588,4,0),
17185 (10951,1006,588,5,0),
17186 (10952,10951,588,6,0),
17187 (25431,10952,588,7,0),
17188 (48040,25431,588,8,0),
17189 (48168,48040,588,9,0),
17190 /*Penance*/
17191 (47540,0,47540,1,0),
17192 (53005,47540,47540,2,0),
17193 (53006,53005,47540,3,0),
17194 (53007,53006,47540,4,0),
17195 /*Penance (damage)*/
17196 (47666,0,47666,1,0),
17197 (52998,47666,47666,2,0),
17198 (52999,52998,47666,3,0),
17199 (53000,52999,47666,4,0),
17200 /*Penance (healing)*/
17201 (47750,0,47750,1,0),
17202 (52983,47750,47750,2,0),
17203 (52984,52983,47750,3,0),
17204 (52985,52984,47750,4,0),
17205 /*PowerWord:Fortitude*/
17206 (1243,0,1243,1,0),
17207 (1244,1243,1243,2,0),
17208 (1245,1244,1243,3,0),
17209 (2791,1245,1243,4,0),
17210 (10937,2791,1243,5,0),
17211 (10938,10937,1243,6,0),
17212 (25389,10938,1243,7,0),
17213 (48161,25389,1243,8,0),
17214 /*PowerWord:Shield*/
17215 (17,0,17,1,0),
17216 (592,17,17,2,0),
17217 (600,592,17,3,0),
17218 (3747,600,17,4,0),
17219 (6065,3747,17,5,0),
17220 (6066,6065,17,6,0),
17221 (10898,6066,17,7,0),
17222 (10899,10898,17,8,0),
17223 (10900,10899,17,9,0),
17224 (10901,10900,17,10,0),
17225 (25217,10901,17,11,0),
17226 (25218,25217,17,12,0),
17227 (48065,25218,17,13,0),
17228 (48066,48065,17,14,0),
17229 /*PrayerofFortitude*/
17230 (21562,0,21562,1,0),
17231 (21564,21562,21562,2,0),
17232 (25392,21564,21562,3,0),
17233 (48162,25392,21562,4,0),
17234 /*Prayer of Spirit*/
17235 (27681,14752,14752,2,0),
17236 (32999,27681,14752,3,0),
17237 (48074,32999,14752,4,0),
17238 /*Rapture*/
17239 (47535,0,47535,1,0),
17240 (47536,47535,47535,2,0),
17241 (47537,47536,47535,3,0),
17242 /*ShackleUndead*/
17243 (9484,0,9484,1,0),
17244 (9485,9484,9484,2,0),
17245 (10955,9485,9484,3,0),
17246 /*------------------
17247 --(654)Pet - Bat
17248 ------------------*/
17249 /* Pin */
17250 (50519,0,50519,1,0),
17251 (53564,50519,50519,2,0),
17252 (53565,53564,50519,3,0),
17253 (53566,53565,50519,4,0),
17254 (53567,53566,50519,5,0),
17255 (53568,53567,50519,6,0),
17256 /*------------------
17257 --(654)Pet-Hyena
17258 ------------------*/
17259 /*TendonRip*/
17260 (50271,0,50271,1,0),
17261 (53571,50271,50271,2,0),
17262 (53572,53571,50271,3,0),
17263 (53573,53572,50271,4,0),
17264 (53574,53573,50271,5,0),
17265 (53575,53574,50271,6,0),
17266 /*------------------
17267 --(655)Pet-BirdofPrey
17268 ------------------*/
17269 /*Snatch*/
17270 (50541,0,50541,1,0),
17271 (53537,50541,50541,2,0),
17272 (53538,53537,50541,3,0),
17273 (53540,53538,50541,4,0),
17274 (53542,53540,50541,5,0),
17275 (53543,53542,50541,6,0),
17276 /*------------------
17277 --(656)Pet-WindSerpent
17278 ------------------*/
17279 /*LightningBreath*/
17280 (24844,0,24844,1,0),
17281 (25008,24844,24844,2,0),
17282 (25009,25008,24844,3,0),
17283 (25010,25009,24844,4,0),
17284 (25011,25010,24844,5,0),
17285 (25012,25011,24844,6,0),
17286 /*------------------
17287 -- (755) Jewelcrafting
17288 ------------------*/
17289 /*Jewelcrafting*/
17290 (25229,0,25229,1,0),
17291 (25230,25229,25229,2,0),
17292 (28894,25230,25229,3,0),
17293 (28895,28894,25229,4,0),
17294 (28897,28895,25229,5,0),
17295 (51311,28897,25229,6,0),
17296 /*------------------
17297 --(761)Pet-Felguard
17298 ------------------*/
17299 /*Anguish*/
17300 (33698,0,33698,1,0),
17301 (33699,33698,33698,2,0),
17302 (33700,33699,33698,3,0),
17303 (47993,33700,33698,4,0),
17304 /*Cleave*/
17305 (30213,0,30213,1,0),
17306 (30219,30213,30213,2,0),
17307 (30223,30219,30213,3,0),
17308 (47994,30223,30213,4,0),
17309 /*Intercept*/
17310 (30151,0,30151,1,0),
17311 (30194,30151,30151,2,0),
17312 (30198,30194,30151,3,0),
17313 (47996,30198,30151,4,0),
17314 /*------------------
17315 -- (762) Riding
17316 ------------------*/
17317 /*Riding*/
17318 (33388,0,33388,1,0),
17319 (33391,33388,33388,2,0),
17320 (34090,33391,33388,3,0),
17321 (34091,34090,33388,4,0),
17322 /*------------------
17323 --(763)Pet-Dragonhawk
17324 ------------------*/
17325 /*FireBreath*/
17326 (34889,0,34889,1,0),
17327 (35323,34889,34889,2,0),
17328 (55482,35323,34889,3,0),
17329 (55483,55482,34889,4,0),
17330 (55484,55483,34889,5,0),
17331 (55485,55484,34889,6,0),
17332 /*------------------
17333 --(764)Pet-NetherRay
17334 --(765)Pet-Sporebat
17335 ------------------*/
17336 /*SporeCloud*/
17337 (50274,0,50274,1,0),
17338 (53593,50274,50274,2,0),
17339 (53594,53593,50274,3,0),
17340 (53596,53594,50274,4,0),
17341 (53597,53596,50274,5,0),
17342 (53598,53597,50274,6,0),
17343 /*------------------
17344 --(767)Pet - Ravager
17345 ------------------*/
17346 /*Ravage*/
17347 (50518,0,50518,1,0),
17348 (53558,50518,50518,2,0),
17349 (53559,53558,50518,3,0),
17350 (53560,53559,50518,4,0),
17351 (53561,53560,50518,5,0),
17352 (53562,53561,50518,6,0),
17353 /*------------------
17354 --(768)Pet-Serpent
17355 ------------------*/
17356 /*PoisonSpit*/
17357 (35387,0,35387,1,0),
17358 (35389,35387,35387,2,0),
17359 (35392,35389,35387,3,0),
17360 (55555,35392,35387,4,0),
17361 (55556,55555,35387,5,0),
17362 (55557,55556,35387,6,0),
17363 /*------------------
17364 --(770)Blood
17365 ------------------*/
17366 /*Blood Boil*/
17367 (48721,0,48721,1,0),
17368 (49939,48721,48721,2,0),
17369 (49940,49939,48721,3,0),
17370 (49941,49940,48721,4,0),
17371 /*BloodStrike*/
17372 (45902,0,45902,1,0),
17373 (49926,45902,45902,2,0),
17374 (49927,49926,45902,3,0),
17375 (49928,49927,45902,4,0),
17376 (49929,49928,45902,5,0),
17377 (49930,49929,45902,6,0),
17378 /*Death Coil*/
17379 (62900,0,62900,1,0),
17380 (62901,62900,62900,2,0),
17381 (62902,62901,62900,3,0),
17382 (62903,62902,62900,4,0),
17383 (62904,62903,62900,5,0),
17384 /*Heart Strike*/
17385 (55050,0,55050,1,0),
17386 (55258,55050,55050,2,0),
17387 (55259,55258,55050,3,0),
17388 (55260,55259,55050,4,0),
17389 (55261,55260,55050,5,0),
17390 (55262,55261,55050,6,0),
17391 /*Improved Blood Presence*/
17392 (50365,0,50365,1,0),
17393 (50371,50365,50365,2,0),
17394 /*Improved Death Strike*/
17395 (62905,0,62905,1,0),
17396 (62908,62905,62905,2,0),
17397 /*Improved Rune Tap*/
17398 (48985,0,48985,1,0),
17399 (49488,48985,48985,2,0),
17400 (49489,49488,48985,3,0),
17401 /*Pestilence*/
17402 (50842,0,50842,1,0),
17403 (51426,50842,50842,2,0),
17404 (51427,51426,50842,3,0),
17405 (51428,51427,50842,4,0),
17406 (51429,51428,50842,5,0),
17407 /*Strangulate*/
17408 (47476,0,47476,1,0),
17409 (49913,47476,47476,2,0),
17410 (49914,49913,47476,3,0),
17411 (49915,49914,47476,4,0),
17412 (49916,49915,47476,5,0),
17413 /*Vendetta*/
17414 (49015,0,49015,1,0),
17415 (50154,49015,49015,2,0),
17416 (55136,50154,49015,3,0),
17417 /*------------------
17418 --(771)Frost
17419 ------------------*/
17420 /*FrostStrike*/
17421 (49143,0,49143,1,0),
17422 (51416,49143,49143,2,0),
17423 (51417,51416,49143,3,0),
17424 (51418,51417,49143,4,0),
17425 (51419,51418,49143,5,0),
17426 (55268,51419,49143,6,0),
17427 /*HornofWinter*/
17428 (57330,0,57330,1,0),
17429 (57623,57330,57330,2,0),
17430 /*Howling Blast*/
17431 (49184,0,49184,1,0),
17432 (51409,49184,49184,2,0),
17433 (51410,51409,49184,3,0),
17434 (51411,51410,49184,4,0),
17435 /*IcyTalons*/
17436 (50880,0,50880,1,0),
17437 (50884,50880,50880,2,0),
17438 (50885,50884,50880,3,0),
17439 (50886,50885,50880,4,0),
17440 (50887,50886,50880,5,0),
17441 /*IcyTouch*/
17442 (45477,0,45477,1,0),
17443 (49896,45477,45477,2,0),
17444 (49903,49896,45477,3,0),
17445 (49904,49903,45477,4,0),
17446 (49909,49904,45477,5,0),
17447 /*Improved Frost Presence*/
17448 (50384,0,50384,1,0),
17449 (50385,50384,50384,2,0),
17450 /*Improved Icy Touch*/
17451 (49175,0,49175,1,0),
17452 (50031,49175,49175,2,0),
17453 (51456,50031,49175,3,0),
17454 /*Obliterate*/
17455 (49020,0,49020,1,0),
17456 (51423,49020,49020,2,0),
17457 (51424,51423,49020,3,0),
17458 (51425,51424,49020,4,0),
17459 /*Rime*/
17460 (49188,0,49188,1,0),
17461 (56822,49188,49188,2,0),
17462 (59057,56822,49188,3,0),
17463 /*Threat of Thassarian*/
17464 (65661,0,65661,1,0),
17465 (66191,65661,65661,2,0),
17466 (66192,66191,65661,3,0),
17467 /*------------------
17468 --(772)Unholy
17469 ------------------*/
17470 /*CorpseExplosion*/
17471 (49158,0,49158,1,0),
17472 (51325,49158,49158,2,0),
17473 (51326,51325,49158,3,0),
17474 (51327,51326,49158,4,0),
17475 (51328,51327,49158,5,0),
17476 /*DeathandDecay*/
17477 (43265,0,43265,1,0),
17478 (49936,43265,43265,2,0),
17479 (49937,49936,43265,3,0),
17480 (49938,49937,43265,4,0),
17481 /*Death Coil*/
17482 (47541,0,47541,1,0),
17483 (49892,47541,47541,2,0),
17484 (49893,49892,47541,3,0),
17485 (49894,49893,47541,4,0),
17486 (49895,49894,47541,5,0),
17487 /*DeathStrike*/
17488 (49998,0,49998,1,0),
17489 (49999,49998,49998,2,0),
17490 (45463,49999,49998,3,0),
17491 (49923,45463,49998,4,0),
17492 (49924,49923,49998,5,0),
17493 /* Desecration */
17494 (55666,0,55666,1,0),
17495 (55667,55666,55666,2,0),
17496 /*Improved Unholy Presence*/
17497 (50391,0,50391,1,0),
17498 (50392,50391,50391,2,0),
17499 /*Magic Suppression*/
17500 (49224,0,49224,1,0),
17501 (49610,49224,49224,2,0),
17502 (49611,49610,49224,3,0),
17503 /*Outbreak*/
17504 (49013,0,49013,1,0),
17505 (55236,49013,49013,2,0),
17506 (55237,55236,49013,3,0),
17507 /*PlagueStrike*/
17508 (45462,0,45462,1,0),
17509 (49917,45462,45462,2,0),
17510 (49918,49917,45462,3,0),
17511 (49919,49918,45462,4,0),
17512 (49920,49919,45462,5,0),
17513 (49921,49920,45462,6,0),
17514 /*ScourgeStrike*/
17515 (55090,0,55090,1,0),
17516 (55265,55090,55090,2,0),
17517 (55270,55265,55090,3,0),
17518 (55271,55270,55090,4,0),
17519 /*------------------
17520 -- (773) Inscription
17521 ------------------*/
17522 /*Inscription*/
17523 (45357,0,45357,1,0),
17524 (45358,45357,45357,2,0),
17525 (45359,45358,45357,3,0),
17526 (45360,45359,45357,4,0),
17527 (45361,45360,45357,5,0),
17528 (45363,45361,45357,6,0),
17529 /*------------------
17530 -- (777) Mounts
17531 ------------------*/
17532 (13819,0,13819,1,0),
17533 (23214,13819,13819,2,33391),
17534 (34769,0,34769,1,0),
17535 (34767,34769,34769,2,33391),
17536 /*------------------
17537 --(780)Pet-Exotic Chimaera
17538 ------------------*/
17539 /*Froststorm Breath*/
17540 (54644,0,54644,1,0),
17541 (55488,54644,54644,2,0),
17542 (55489,55488,54644,3,0),
17543 (55490,55489,54644,4,0),
17544 (55491,55490,54644,5,0),
17545 (55492,55491,54644,6,0),
17546 /*------------------
17547 --(781)Pet-Exotic Devlisaur
17548 ------------------*/
17549 /*Monstrous Bite*/
17550 (54680,0,54680,1,0),
17551 (55495,54680,54680,2,0),
17552 (55496,55495,54680,3,0),
17553 (55497,55496,54680,4,0),
17554 (55498,55497,54680,5,0),
17555 (55499,55498,54680,6,0),
17556 /*------------------
17557 --(784)Pet-Exotic Worm
17558 ------------------*/
17559 /*AcidSpit*/
17560 (55749,0,55749,1,0),
17561 (55750,55749,55749,2,0),
17562 (55751,55750,55749,3,0),
17563 (55752,55751,55749,4,0),
17564 (55753,55752,55749,5,0),
17565 (55754,55753,55749,6,0),
17566 /*------------------
17567 --(785)Pet-Wasp
17568 ------------------*/
17569 /*Sting*/
17570 (56626,0,56626,1,0),
17571 (56627,56626,56626,2,0),
17572 (56628,56627,56626,3,0),
17573 (56629,56628,56626,4,0),
17574 (56630,56629,56626,5,0),
17575 (56631,56630,56626,6,0),
17576 /*------------------
17577 --(787)Pet-Exotic Core Hound
17578 ------------------*/
17579 /*Lava Breath*/
17580 (58604,0,58604,1,0),
17581 (58607,58604,58604,2,0),
17582 (58608,58607,58604,3,0),
17583 (58609,58608,58604,4,0),
17584 (58610,58609,58604,5,0),
17585 (58611,58610,58604,6,0),
17586 /*------------------
17587 --(788)Pet-Exotic Spirit Beast
17588 ------------------*/
17589 /*Spirit Strike*/
17590 (61193,0,61193,1,0),
17591 (61194,61193,61193,2,0),
17592 (61195,61194,61193,3,0),
17593 (61196,61195,61193,4,0),
17594 (61197,61196,61193,5,0),
17595 (61198,61197,61193,6,0),
17596 /*------------------
17597 --(-) Not listed in skill abilities
17598 ------------------*/
17599 /*Hurricane*/
17600 (42231,    0,42231,1,0),
17601 (42232,42231,42231,2,0),
17602 (42233,42232,42231,3,0),
17603 (42230,42233,42231,4,0),
17604 (48466,42230,42231,5,0),
17605 /*Shadowflame Triggered DoT*/
17606 (47960,0,47960,1,0),
17607 (61291,47960,47960,2,0),
17608 /*Tranquility*/
17609 (44203,    0,44203,1,0),
17610 (44205,44203,44203,2,0),
17611 (44206,44205,44203,3,0),
17612 (44207,44206,44203,4,0),
17613 (44208,44207,44203,5,0),
17614 (48444,44208,44203,6,0),
17615 (48445,48444,44203,7,0);
17616 /*!40000 ALTER TABLE `spell_chain` ENABLE KEYS */;
17617 UNLOCK TABLES;
17620 -- Table structure for table `spell_elixir`
17623 DROP TABLE IF EXISTS `spell_elixir`;
17624 CREATE TABLE `spell_elixir` (
17625   `entry` int(11) unsigned NOT NULL default '0' COMMENT 'SpellId of potion',
17626   `mask` tinyint(1) unsigned NOT NULL default '0' COMMENT 'Mask 0x1 battle 0x2 guardian 0x3 flask 0x7 unstable flasks 0xB shattrath flasks',
17627   PRIMARY KEY  (`entry`)
17628 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
17631 -- Dumping data for table `spell_elixir`
17634 LOCK TABLES `spell_elixir` WRITE;
17635 /*!40000 ALTER TABLE `spell_elixir` DISABLE KEYS */;
17636 INSERT INTO `spell_elixir` VALUES
17637 (  673,0x2),
17638 ( 2367,0x1),
17639 ( 2374,0x1),
17640 ( 2378,0x2),
17641 ( 2380,0x2),
17642 ( 3160,0x1),
17643 ( 3164,0x1),
17644 ( 3166,0x2),
17645 ( 3219,0x2),
17646 ( 3220,0x2),
17647 ( 3222,0x2),
17648 ( 3223,0x2),
17649 ( 3593,0x2),
17650 ( 7844,0x1),
17651 ( 8212,0x1),
17652 (10667,0x1),
17653 (10668,0x2),
17654 (10669,0x1),
17655 (10692,0x2),
17656 (10693,0x2),
17657 (11319,0x2),
17658 (11328,0x1),
17659 (11334,0x1),
17660 (11348,0x2),
17661 (11349,0x2),
17662 (11364,0x2),
17663 (11371,0x2),
17664 (11390,0x1),
17665 (11396,0x2),
17666 (11405,0x1),
17667 (11406,0x1),
17668 (11474,0x1),
17669 (15231,0x2),
17670 (15233,0x2),
17671 (16321,0x2),
17672 (16322,0x1),
17673 (16323,0x1),
17674 (16325,0x2),
17675 (16326,0x2),
17676 (16327,0x2),
17677 (16329,0x1),
17678 (17038,0x1),
17679 (17535,0x2),
17680 (17537,0x1),
17681 (17538,0x1),
17682 (17539,0x1),
17683 (17626,0x3),
17684 (17627,0x3),
17685 (17629,0x3),
17686 (17628,0x3),
17687 (18191,0x10),
17688 (18192,0x10),
17689 (18193,0x10),
17690 (18194,0x10),
17691 (18222,0x10),
17692 (21920,0x1),
17693 (22730,0x10),
17694 (24361,0x2),
17695 (24363,0x2),
17696 (24382,0x2),
17697 (24383,0x2),
17698 (24417,0x2),
17699 (25661,0x10),
17700 (26276,0x1),
17701 (27652,0x2),
17702 (27653,0x2),
17703 (28486,0x1),
17704 (28488,0x1),
17705 (28490,0x1),
17706 (28491,0x1),
17707 (28493,0x1),
17708 (28497,0x1),
17709 (28501,0x1),
17710 (28502,0x2),
17711 (28503,0x1),
17712 (28509,0x2),
17713 (28514,0x2),
17714 (28518,0x3),
17715 (28519,0x3),
17716 (28520,0x3),
17717 (28521,0x3),
17718 (28540,0x3),
17719 (29348,0x2),
17720 (33720,0x1),
17721 (33721,0x1),
17722 (33726,0x1),
17723 (38954,0x1),
17724 (39625,0x2),
17725 (39626,0x2),
17726 (39627,0x2),
17727 (39628,0x2),
17728 (40567,0x7),
17729 (40568,0x7),
17730 (40572,0x7),
17731 (40573,0x7),
17732 (40575,0x7),
17733 (40576,0x7),
17734 (41608,0xB),
17735 (41609,0xB),
17736 (41610,0xB),
17737 (41611,0xB),
17738 (42735,0x3),
17739 (45373,0x1),
17740 (46837,0xB),
17741 (46839,0xB),
17742 (53747,0x2),
17743 (53748,0x1),
17744 (53746,0x1),
17745 (53749,0x1),
17746 (53751,0x2),
17747 (53752,0x3),
17748 (53755,0x3),
17749 (53758,0x3),
17750 (53760,0x3),
17751 (53763,0x2),
17752 (53764,0x2),
17753 (54212,0x3),
17754 (54452,0x1),
17755 (54494,0x1),
17756 (54497,0x2),
17757 (60340,0x1),
17758 (60341,0x1),
17759 (60343,0x2),
17760 (60344,0x1),
17761 (60345,0x1),
17762 (60346,0x1),
17763 (60347,0x2),
17764 (62380,0x3),
17765 (67016,0x3),
17766 (67017,0x3),
17767 (67018,0x3),
17768 (67019,0x3);
17771 /*!40000 ALTER TABLE `spell_elixir` ENABLE KEYS */;
17772 UNLOCK TABLES;
17775 -- Table structure for table `spell_learn_spell`
17778 DROP TABLE IF EXISTS `spell_learn_spell`;
17779 CREATE TABLE `spell_learn_spell` (
17780   `entry` smallint(5) unsigned NOT NULL default '0',
17781   `SpellID` smallint(5) unsigned NOT NULL default '0',
17782   `Active` tinyint(3) unsigned NOT NULL default '1',
17783   PRIMARY KEY  (`entry`,`SpellID`)
17784 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
17787 -- Dumping data for table `spell_learn_spell`
17790 LOCK TABLES `spell_learn_spell` WRITE;
17791 /*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
17792 INSERT INTO `spell_learn_spell` VALUES
17793 (5784,33388,1),
17794 (13819,33388,1),
17795 (17002,24867,0),
17796 (23161,33391,1),
17797 (23214,33391,1),
17798 (24866,24864,0),
17799 (33872,47179,0),
17800 (33873,47180,0),
17801 (33943,34090,1),
17802 (34767,33391,1),
17803 (34769,33388,1),
17804 (53428,53341,1),
17805 (53428,53343,1),
17806 (56815,56816,0),
17807 (58984,21009,1);
17808 /*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
17809 UNLOCK TABLES;
17812 -- Table structure for table `spell_loot_template`
17815 DROP TABLE IF EXISTS `spell_loot_template`;
17816 CREATE TABLE `spell_loot_template` (
17817   `entry` mediumint(8) unsigned NOT NULL default '0',
17818   `item` mediumint(8) unsigned NOT NULL default '0',
17819   `ChanceOrQuestChance` float NOT NULL default '100',
17820   `groupid` tinyint(3) unsigned NOT NULL default '0',
17821   `mincountOrRef` mediumint(9) NOT NULL default '1',
17822   `maxcount` tinyint(3) unsigned NOT NULL default '1',
17823   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
17824   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
17825   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
17826   PRIMARY KEY  (`entry`,`item`)
17827 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
17830 -- Dumping data for table `spell_loot_template`
17833 LOCK TABLES `spell_loot_template` WRITE;
17834 /*!40000 ALTER TABLE `spell_loot_template` DISABLE KEYS */;
17835 /*!40000 ALTER TABLE `spell_loot_template` ENABLE KEYS */;
17836 UNLOCK TABLES;
17839 -- Table structure for table `spell_pet_auras`
17842 DROP TABLE IF EXISTS `spell_pet_auras`;
17843 CREATE TABLE `spell_pet_auras` (
17844   `spell` mediumint(8) unsigned NOT NULL COMMENT 'dummy spell id',
17845   `effectId` tinyint(3) unsigned NOT NULL default '0',
17846   `pet` mediumint(8) unsigned NOT NULL default '0' COMMENT 'pet id; 0 = all',
17847   `aura` mediumint(8) unsigned NOT NULL COMMENT 'pet aura id',
17848   PRIMARY KEY  (`spell`,`effectId`,`pet`)
17849 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
17852 -- Dumping data for table `spell_pet_auras`
17855 LOCK TABLES `spell_pet_auras` WRITE;
17856 /*!40000 ALTER TABLE `spell_pet_auras` DISABLE KEYS */;
17857 INSERT INTO `spell_pet_auras` VALUES
17858 (19028, 0, 0, 25228),
17859 (19578, 0, 0, 19579),
17860 (20895, 0, 0, 24529),
17861 (28757, 0, 0, 28758),
17862 (35029, 0, 0, 35060),
17863 (35030, 0, 0, 35061),
17864 (35691, 0, 0, 35696),
17865 (35692, 0, 0, 35696),
17866 (35693, 0, 0, 35696),
17867 (56314, 0, 0, 57447),
17868 (56314, 1, 0, 57485),
17869 (56315, 0, 0, 57452),
17870 (56315, 1, 0, 57484),
17871 (56316, 0, 0, 57453),
17872 (56316, 1, 0, 57483),
17873 (56317, 0, 0, 57457),
17874 (56317, 1, 0, 57482),
17875 (56318, 0, 0, 57458),
17876 (56318, 1, 0, 57475),
17877 (23785, 0, 416, 23759),
17878 (23822, 0, 416, 23826),
17879 (23823, 0, 416, 23827),
17880 (23824, 0, 416, 23828),
17881 (23825, 0, 416, 23829),
17882 (23785, 0, 417, 23762),
17883 (23822, 0, 417, 23837),
17884 (23823, 0, 417, 23838),
17885 (23824, 0, 417, 23839),
17886 (23825, 0, 417, 23840),
17887 (23785, 0, 1860, 23760),
17888 (23822, 0, 1860, 23841),
17889 (23823, 0, 1860, 23842),
17890 (23824, 0, 1860, 23843),
17891 (23825, 0, 1860, 23844),
17892 (23785, 0, 1863, 23761),
17893 (23822, 0, 1863, 23833),
17894 (23823, 0, 1863, 23834),
17895 (23824, 0, 1863, 23835),
17896 (23825, 0, 1863, 23836),
17897 (23785, 0, 17252, 35702),
17898 (23822, 0, 17252, 35703),
17899 (23823, 0, 17252, 35704),
17900 (23824, 0, 17252, 35705),
17901 (23825, 0, 17252, 35706),
17902 (58228, 0, 19668, 57989);
17904 /*!40000 ALTER TABLE `spell_pet_auras` ENABLE KEYS */;
17905 UNLOCK TABLES;
17908 -- Table structure for table `spell_proc_event`
17911 DROP TABLE IF EXISTS `spell_proc_event`;
17912 CREATE TABLE `spell_proc_event` (
17913   `entry` mediumint(8) unsigned NOT NULL default '0',
17914   `SchoolMask` tinyint(4) NOT NULL default '0',
17915   `SpellFamilyName` smallint(5) unsigned NOT NULL default '0',
17916   `SpellFamilyMask0` int(10) unsigned NOT NULL default '0',
17917   `SpellFamilyMask1` int(10) unsigned NOT NULL default '0',
17918   `SpellFamilyMask2` int(10) unsigned NOT NULL default '0',
17919   `procFlags` int(10) unsigned NOT NULL default '0',
17920   `procEx` int(10) unsigned NOT NULL default '0',
17921   `ppmRate` float NOT NULL default '0',
17922   `CustomChance` float NOT NULL default '0',
17923   `Cooldown` int(10) unsigned NOT NULL default '0',
17924   PRIMARY KEY  (`entry`)
17925 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
17928 -- Dumping data for table `spell_proc_event`
17931 LOCK TABLES `spell_proc_event` WRITE;
17932 /*!40000 ALTER TABLE `spell_proc_event` DISABLE KEYS */;
17933 INSERT INTO `spell_proc_event` VALUES
17934 (  324, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17935 (  974, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17936 ( 1463, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17937 ( 3232, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17938 ( 5952, 0x00000000,  8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17939 ( 6346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17940 ( 7383, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17941 ( 7434, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17942 ( 8178, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17943 ( 9452, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17944 ( 9782, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17945 ( 9784, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17946 ( 9799, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17947 (11095, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17948 (11119, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17949 (11120, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17950 (11129, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17951 (11180, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17952 (11185, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17953 (11255, 0x00000000,  3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17954 (12169, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17955 (12281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17956 (12289, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17957 (12298, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17958 (12311, 0x00000000,  4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17959 (12317, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17960 (12319, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17961 (12322, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17962 (12487, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17963 (12488, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17964 (12598, 0x00000000,  3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17965 (12668, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17966 (12724, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17967 (12725, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17968 (12726, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17969 (12727, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17970 (12797, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17971 (12799, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17972 (12812, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17973 (12813, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17974 (12814, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17975 (12815, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17976 (12834, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17977 (12846, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17978 (12847, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17979 (12848, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17980 (12849, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17981 (12867, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17982 (12872, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17983 (12873, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17984 (12958, 0x00000000,  4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17985 (12966, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17986 (12967, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17987 (12968, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17988 (12969, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17989 (12970, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17990 (12971, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17991 (12972, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17992 (12973, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17993 (12974, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17994 (12999, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000,  0),
17995 (13000, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17996 (13001, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8.000000, 0.000000,  0),
17997 (13002, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,10.000000, 0.000000,  0),
17998 (13045, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17999 (13046, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18000 (13047, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18001 (13048, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18002 (13163, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18003 (13165, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18004 (13754, 0x00000000,  8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18005 (13867, 0x00000000,  8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18006 (13983, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
18007 (14070, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
18008 (14071, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
18009 (14156, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18010 (14160, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18011 (14161, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18012 (14186, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18013 (14190, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18014 (14193, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18015 (14194, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18016 (14195, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18017 (14531, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18018 (14774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18019 (14892, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18020 (15088, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18021 (15128, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18022 (15277, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
18023 (15286, 0x00000020,  6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18024 (15337, 0x00000000,  6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18025 (15338, 0x00000000,  6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18026 (15346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
18027 (15362, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18028 (15363, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18029 (15600, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
18030 (16164, 0x00000000, 11, 0x901000C3, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18031 (16176, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18032 (16180, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18033 (16196, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18034 (16198, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18035 (16235, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18036 (16240, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18037 (16256, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18038 (16257, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18039 (16277, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18040 (16278, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18041 (16279, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18042 (16280, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18043 (16281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18044 (16282, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18045 (16283, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18046 (16284, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18047 (16487, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18048 (16489, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18049 (16492, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18050 (16550, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18051 (16620, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18052 (16624, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18053 (16850, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18054 (16864, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
18055 (16880, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18056 (16923, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18057 (16924, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18058 (16952, 0x00000000,  7, 0x00039000, 0x00000400, 0x00040000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18059 (16954, 0x00000000,  7, 0x00039000, 0x00000400, 0x00040000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18060 (16958, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18061 (16961, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18062 (17106, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18063 (17107, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18064 (17108, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18065 (17364, 0x00000008,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18066 (17495, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18067 (17793, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18068 (17796, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18069 (17801, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18070 (17802, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18071 (17803, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18072 (18073, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18073 (18094, 0x00000000,  5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18074 (18095, 0x00000000,  5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18075 (18096, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18076 (18119, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18077 (18120, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18078 (18820, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18079 (19184, 0x00000000,  9, 0x00000010, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18080 (19572, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18081 (19573, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18082 (20049, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18083 (20056, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18084 (20057, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18085 (20128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18086 (20131, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18087 (20132, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18088 (20164, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000,  0),
18089 (20165, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,20.000000, 0.000000,  0),
18090 (20166, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,15.000000, 0.000000,  0),
18091 (20182, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18092 (20210, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18093 (20212, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18094 (20213, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18095 (20214, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18096 (20215, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18097 (20234, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18098 (20235, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18099 (20335, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000100, 0x00000000, 0.000000, 100.000000,0),
18100 (20375, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  1),
18101 (20500, 0x00000000,  4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18102 (20501, 0x00000000,  4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18103 (20705, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18104 (20784, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18105 (20911, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18106 (20925, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18107 (21084, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18108 (21185, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18109 (21882, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18110 (21890, 0x00000000,  4, 0x2A764EEF, 0x0000036C, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18111 (22007, 0x00000000,  3, 0x00200021, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18112 (22618, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18113 (22648, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18114 (23547, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18115 (23548, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18116 (23551, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18117 (23552, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18118 (23572, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18119 (23578, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
18120 (23581, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
18121 (23602, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18122 (23686, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
18123 (23688, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18124 (23689, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000,  0),
18125 (23695, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18126 (23721, 0x00000000,  9, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18127 (23920, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18128 (24353, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18129 (24389, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18130 (24658, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00014110, 0x00000000, 0.000000, 0.000000,  0),
18131 (24905, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002,15.000000, 0.000000,  0),
18132 (24932, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  6),
18133 (25050, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18134 (25669, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
18135 (25988, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18136 (26016, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
18137 (26107, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000064, 0.000000, 0.000000,  0),
18138 (26119, 0x00000000, 10, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18139 (26128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
18140 (26135, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18141 (26480, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18142 (26605, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18143 (27419, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18144 (27498, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18145 (27521, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18146 (27656, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18147 (27774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18148 (27787, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18149 (27811, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18150 (27815, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18151 (27816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18152 (28592, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18153 (28593, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18154 (28716, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00048000, 0x00000000, 0.000000, 0.000000,  0),
18155 (28719, 0x00000000,  7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18156 (28744, 0x00000000,  7, 0x00000040, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0.000000, 0.000000,  0),
18157 (28752, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18158 (28789, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18159 (28802, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18160 (28809, 0x00000000,  6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18161 (28812, 0x00000000,  8, 0x02000006, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18162 (28816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18163 (28823, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18164 (28847, 0x00000000,  7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18165 (28849, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18166 (29074, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18167 (29075, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18168 (29076, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18169 (29150, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18170 (29179, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18171 (29180, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18172 (29385, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
18173 (29441, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  1),
18174 (29444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  1),
18175 (29455, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18176 (29501, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18177 (29593, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18178 (29594, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18179 (29624, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18180 (29625, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18181 (29626, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18182 (29632, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18183 (29633, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18184 (29634, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18185 (29635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18186 (29636, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18187 (29637, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18188 (29834, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18189 (29838, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18190 (29977, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18191 (30003, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18192 (30160, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18193 (30293, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18194 (30295, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18195 (30296, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18196 (30299, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18197 (30301, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18198 (30302, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18199 (30675, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18200 (30678, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18201 (30679, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18202 (30701, 0x0000001C,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18203 (30705, 0x0000001C,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18204 (30823, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.500000, 0.000000, 0),
18205 (30881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18206 (30883, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18207 (30884, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18208 (30885, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18209 (30886, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18210 (30937, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18211 (31124, 0x00000000,  8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18212 (31126, 0x00000000,  8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18213 (31244, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00002034, 0.000000, 0.000000,  0),
18214 (31394, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18215 (31569, 0x00000000,  3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18216 (31570, 0x00000000,  3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18217 (31785, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000,  0),
18218 (31794, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18219 (31801, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18220 (31833, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18221 (31835, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18222 (31836, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18223 (31871, 0x00000000, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18224 (31872, 0x00000000, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18225 (31876, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
18226 (31877, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
18227 (31878, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
18228 (31904, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18229 (32385, 0x00000000,  5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18230 (32409, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18231 (32587, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18232 (32642, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18233 (32734, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18234 (32748, 0x00000000,  8, 0x00000000, 0x00000001, 0x00000000, 0x00000140, 0x00000000, 0.000000, 0.000000,  0),
18235 (32776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18236 (32777, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18237 (32837, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
18238 (32844, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
18239 (32885, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18240 (33076, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
18241 (33089, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18242 (33127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
18243 (33142, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18244 (33145, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18245 (33146, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18246 (33150, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18247 (33151, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18248 (33154, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18249 (33191, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18250 (33192, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18251 (33193, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18252 (33297, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18253 (33299, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18254 (33510, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000,  0),
18255 (33648, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18256 (33719, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18257 (33746, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18258 (33757, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18259 (33759, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18260 (33881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18261 (33882, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18262 (33883, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18263 (33953, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
18264 (34074, 0x00000000,  9, 0x0007FA43, 0x00881081, 0x00000201, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18265 (34080, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
18266 (34138, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18267 (34139, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18268 (34258, 0x00000000, 10, 0x00000400, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18269 (34262, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18270 (34320, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18271 (34355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18272 (34497, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18273 (34498, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18274 (34499, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18275 (34500, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18276 (34502, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18277 (34503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18278 (34506, 0x00000000,  9, 0x0007FA01, 0x00801081, 0x08000201, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18279 (34584, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18280 (34586, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000,  0),
18281 (34598, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18282 (34749, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
18283 (34753, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18284 (34774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 20),
18285 (34783, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18286 (34827, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18287 (34859, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18288 (34860, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18289 (34914, 0x00000000,  6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18290 (34935, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
18291 (34938, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
18292 (34939, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
18293 (34950, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18294 (34954, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18295 (35077, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18296 (35080, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 60),
18297 (35083, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18298 (35086, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18299 (35100, 0x00000000,  9, 0x00001000, 0x00000000, 0x00000001, 0x00000100, 0x00000000, 0.000000, 0.000000,  0),
18300 (35121, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18301 (36096, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18302 (36111, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18303 (36541, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18304 (37165, 0x00000000,  8, 0x00200400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18305 (37168, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18306 (37170, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
18307 (37173, 0x00000000,  8, 0x2CBC0598, 0x00000106, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18308 (37189, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
18309 (37193, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18310 (37195, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18311 (37197, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
18312 (37213, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18313 (37214, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18314 (37227, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
18315 (37237, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18316 (37247, 0x00000008,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
18317 (37377, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18318 (37379, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18319 (37384, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18320 (37443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18321 (37514, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18322 (37516, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18323 (37519, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000,  0),
18324 (37523, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18325 (37528, 0x00000000,  4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18326 (37536, 0x00000000,  4, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18327 (37568, 0x00000000,  6, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18328 (37594, 0x00000000,  6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18329 (37600, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18330 (37601, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18331 (37603, 0x00000000,  6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18332 (37655, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18333 (37657, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  3),
18334 (38026, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
18335 (38031, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18336 (38290, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.600000, 0.000000,  0),
18337 (38299, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 12),
18338 (38326, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18339 (38327, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18340 (38334, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18341 (38347, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18342 (38350, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18343 (38394, 0x00000000,  5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18344 (38857, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18345 (39027, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18346 (39372, 0x00000030,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18347 (39437, 0x00000004,  5, 0x00001364, 0x000000C0, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18348 (39442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000,  0),
18349 (39443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18350 (39530, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18351 (39958, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.700000, 0.000000, 40),
18352 (40407, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
18353 (40438, 0x00000000,  6, 0x00008040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18354 (40442, 0x00000000,  7, 0x00000014, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18355 (40444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18356 (40458, 0x00000000,  4, 0x02000000, 0x00000601, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18357 (40463, 0x00000000, 11, 0x00000081, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18358 (40470, 0x00000000, 10, 0xC0800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18359 (40475, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
18360 (40478, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18361 (40482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18362 (40485, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18363 (40899, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18364 (41034, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
18365 (41260, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18366 (41262, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18367 (41381, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
18368 (41393, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18369 (41434, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 45),
18370 (41469, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
18371 (41635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
18372 (41989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.500000, 0.000000,  0),
18373 (42083, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18374 (42135, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
18375 (42136, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
18376 (42368, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18377 (42370, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18378 (42770, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18379 (43338, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18380 (43443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18381 (43726, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18382 (43728, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18383 (43737, 0x00000000,  7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18384 (43739, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18385 (43741, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18386 (43745, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18387 (43748, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18388 (43750, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18389 (43819, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18390 (44404, 0x00000000,  3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18391 (44442, 0x00000000,  3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  1),
18392 (44443, 0x00000000,  3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  1),
18393 (44445, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18394 (44446, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18395 (44448, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18396 (44449, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18397 (44469, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18398 (44470, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18399 (44471, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18400 (44472, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18401 (44546, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18402 (44548, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18403 (44549, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18404 (44835, 0x00000000,  7, 0x00000000, 0x00000080, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000,  0),
18405 (45054, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
18406 (45057, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18407 (45234, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18408 (45243, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18409 (45244, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18410 (45354, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18411 (45355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18412 (45481, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18413 (45482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18414 (45483, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18415 (45484, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
18416 (46025, 0x00000020,  6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18417 (46092, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18418 (46098, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18419 (46569, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18420 (46662, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 20),
18421 (46832, 0x00000000,  7, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18422 (46854, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18423 (46855, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18424 (46867, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18425 (46913, 0x00000000,  4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18426 (46916, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18427 (46951, 0x00000000,  4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18428 (46952, 0x00000000,  0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18429 (46953, 0x00000000,  0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18430 (47195, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18431 (47196, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18432 (47197, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18433 (47201, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18434 (47202, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18435 (47203, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18436 (47204, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18437 (47205, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18438 (47245, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18439 (47246, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18440 (47247, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18441 (47258, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18442 (47259, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18443 (47260, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18444 (47263, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
18445 (47264, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
18446 (47265, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
18447 (47509, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18448 (47511, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18449 (47515, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18450 (47516, 0x00000000,  6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18451 (47517, 0x00000000,  6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18452 (47569, 0x00000000,  6, 0x00004000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18453 (47580, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18454 (47581, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18455 (47582, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18456 (48110, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
18457 (48111, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
18458 (48483, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18459 (48484, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18460 (48485, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18461 (48496, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18462 (48499, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18463 (48500, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18464 (48506, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18465 (48510, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18466 (48511, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18467 (48516, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
18468 (48521, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
18469 (48525, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
18470 (48539, 0x00000000,  7, 0x00000010, 0x04000000, 0x00000000, 0x00040000, 0x00000000, 0.000000, 0.000000,  0),
18471 (48833, 0x00000000,  7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18472 (48835, 0x00000000, 10, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18473 (48837, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18474 (48988, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18475 (49018, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18476 (49188, 0x00000000, 15, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18477 (49208, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18478 (49222, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18479 (49503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18480 (49504, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18481 (49529, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18482 (49530, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18483 (49622, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18484 (50781, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  6),
18485 (50880, 0x00000010, 15, 0x00000000, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18486 (51123, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18487 (51127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18488 (51128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18489 (51129, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18490 (51130, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18491 (51346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18492 (51349, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18493 (51352, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18494 (51359, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
18495 (51414, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18496 (51470, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18497 (51474, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18498 (51478, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18499 (51479, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18500 (51483, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18501 (51485, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18502 (51486, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18503 (51521, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  1),
18504 (51528, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,12.500000, 0.000000,  0),
18505 (51556, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18506 (51557, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18507 (51558, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18508 (51562, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18509 (51563, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18510 (51564, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18511 (51565, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18512 (51566, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18513 (51625, 0x00000000,  8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18514 (51626, 0x00000000,  8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18515 (51627, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18516 (51628, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18517 (51629, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
18518 (51634, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18519 (51635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18520 (51636, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18521 (51664, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18522 (51665, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18523 (51667, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18524 (51668, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18525 (51669, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18526 (51672, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  1),
18527 (51674, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  1),
18528 (51679, 0x00000000,  8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18529 (51692, 0x00000000,  8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18530 (51696, 0x00000000,  8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18531 (51698, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
18532 (51700, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
18533 (51701, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
18534 (51940, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18535 (51989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18536 (52004, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18537 (52005, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18538 (52007, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18539 (52008, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
18540 (52020, 0x00000000,  7, 0x00008000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18541 (52127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18542 (52420, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
18543 (52423, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18544 (53527, 0x00000000, 10, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18545 (52795, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18546 (52797, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18547 (52798, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18548 (52799, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18549 (52800, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18550 (52898, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18551 (53215, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18552 (53216, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18553 (53217, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18554 (53221, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18555 (53222, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18556 (53224, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18557 (53228, 0x00000000,  9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18558 (53232, 0x00000000,  9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18559 (53234, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18560 (53237, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18561 (53238, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18562 (53256, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18563 (53259, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18564 (53260, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18565 (53290, 0x00000000,  9, 0x00000800, 0x00000001, 0x00000200, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18566 (53380, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18567 (53397, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18568 (53486, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18569 (53501, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18570 (53502, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18571 (53503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18572 (53551, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18573 (53552, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18574 (53553, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18575 (53569, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18576 (53576, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18577 (53601, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  6),
18578 (53646, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18579 (53671, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18580 (53673, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18581 (53709, 0x00000000, 10, 0x00004000, 0x00000000, 0x00000000, 0x00000100, 0x00000000, 0.000000, 0.000000,  0),
18582 (53817, 0x00000000, 11, 0x000001C3, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18583 (54149, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18584 (54151, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18585 (54154, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18586 (54155, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18587 (54278, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18588 (54486, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18589 (54488, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18590 (54489, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18591 (54490, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18592 (54646, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00015400, 0x00000002, 0.000000, 0.000000,  0),
18593 (54695, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18594 (54707, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18595 (54738, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18596 (54747, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18597 (54749, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18598 (54754, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18599 (54808, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
18600 (54838, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18601 (54841, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  3),
18602 (54937, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18603 (54939, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18604 (55166, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18605 (55380, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18606 (55440, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18607 (55640, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18608 (55666, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18609 (55677, 0x00000000,  6, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18610 (55680, 0x00000000,  6, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18611 (55689, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18612 (55747, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18613 (55768, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18614 (55776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18615 (56218, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18616 (56342, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18617 (56343, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18618 (56344, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18619 (56355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18620 (56364, 0x00000000,  3, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18621 (56372, 0x00000000,  3, 0x00000000, 0x00000080, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18622 (56375, 0x00000000,  3, 0x01000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000,  0),
18623 (56451, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18624 (56611, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18625 (56612, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18626 (56613, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18627 (56614, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18628 (56636, 0x00000000,  4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
18629 (56816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000,  0),
18630 (56821, 0x00000000,  8, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18631 (56834, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18632 (56835, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18633 (57345, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18634 (57352, 0x00000000,  0, 0x00000001, 0x00000040, 0x00000000, 0x00010154, 0x00000003, 0.000000, 0.000000, 45),
18635 (57470, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18636 (57472, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18637 (57499, 0x00000000,  4, 0x40000001, 0x00010000, 0x00000000, 0x00014000, 0x00000000, 0.000000, 0.000000,  0),
18638 (57870, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0.000000, 0.000000,  0),
18639 (57878, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18640 (57880, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18641 (57881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18642 (57989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0.000000, 0.000000,  0),
18643 (58357, 0x00000000,  4, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18644 (58364, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18645 (58372, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18646 (58386, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18647 (58442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
18648 (58444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
18649 (58597, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00008000, 0x00000000, 0.000000, 100.000000,6),
18650 (58616, 0x00000000, 15, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18651 (58620, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18652 (58626, 0x00000000, 15, 0x02000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18653 (58644, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18654 (58647, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18655 (58677, 0x00000000, 15, 0x00002000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18656 (58872, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18657 (58874, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18658 (58901, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18659 (59176, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18660 (59327, 0x00000000, 15, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18661 (59345, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18662 (59630, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18663 (59725, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18664 (60061, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18665 (60063, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18666 (60066, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18667 (60132, 0x00000000, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18668 (60170, 0x00000000,  5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18669 (60172, 0x00000000,  5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18670 (60221, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18671 (60301, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18672 (60306, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18673 (60317, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18674 (60436, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18675 (60442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18676 (60473, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18677 (60482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18678 (60487, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
18679 (60490, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18680 (60493, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18681 (60503, 0x00000000,  4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18682 (60519, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18683 (60529, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18684 (60537, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
18685 (60564, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18686 (60571, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18687 (60572, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18688 (60573, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18689 (60574, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18690 (60575, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18691 (60617, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18692 (60710, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18693 (60717, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18694 (60719, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18695 (60722, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18696 (60724, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18697 (60726, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18698 (60770, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18699 (60818, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18700 (60826, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18701 (61062, 0x00000000,  3, 0x00000000, 0x00000100, 0x00000000, 0x00004000, 0x00010000, 0.000000, 0.000000,  0),
18702 (61188, 0x00000000,  5, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18703 (61257, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000202A8, 0x00010000, 0.000000, 0.000000,  0),
18704 (61324, 0x00000000, 10, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18705 (61345, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18706 (61346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18707 (61356, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000002A8, 0x00000002, 0.000000, 0.000000, 45),
18708 (61618, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18709 (61846, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18710 (62600, 0x00000000,  7, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18711 (63108, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18712 (63156, 0x00000000,  0, 0x00000001, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18713 (63245, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18714 (63280, 0x00000000, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0x000000, 0.000000,  0),
18715 (63320, 0x00000000,  5, 0x00040000, 0x00000000, 0x00008000, 0x00004000, 0x00000001, 0.000000, 0.000000,  0),
18716 (63373, 0x00000000, 11, 0x80000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000,  0),
18717 (63534, 0x00000000,  6, 0x00000040, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18718 (63611, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00050014, 0x00000000, 0.000000, 0.000000,  0),
18719 (63625, 0x00000000,  6, 0x02000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000,  0),
18720 (63730, 0x00000000,  6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18721 (64928, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18722 (64976, 0x00000000,  4, 0x00000001, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000,  0),
18723 (65661, 0x00000000, 15, 0x00400011 ,0x20020004 ,0x00000000, 0x00000010, 0x00000000, 0.000000, 100.000000,0),
18724 (64127, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18725 (67228, 0x00000004, 11, 0x00000000, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18726 (67353, 0x00000000,  7, 0x00008000, 0x00100500, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18727 (67361, 0x00000040,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
18728 (67667, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18729 (67672, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 50),
18730 (67702, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18731 (67771, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18732 (70664, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x000000, 2.000000,  0),
18733 (70748, 0x00000000,  3, 0x00000000, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x000000, 0.000000,  0);
18735 /*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
18736 UNLOCK TABLES;
18739 -- Table structure for spell_proc_item_enchant
18742 DROP TABLE IF EXISTS `spell_proc_item_enchant`;
18743 CREATE TABLE `spell_proc_item_enchant` (
18744   `entry` mediumint unsigned NOT NULL,
18745   `ppmRate` float NOT NULL default '0',
18746   PRIMARY KEY  (`entry`)
18747 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
18750 -- Dumping data for table `spell_proc_item_enchant`
18753 LOCK TABLES `spell_proc_item_enchant` WRITE;
18754 /*!40000 ALTER TABLE `spell_proc_item_enchant` DISABLE KEYS */;
18755 INSERT INTO `spell_proc_item_enchant` (`entry`, `ppmRate`) VALUES
18756 (8034, 9),        -- Frostbrand Weapon
18757 (8680, 8.5714),   -- Instant Poison
18758 (13218, 21.4286); -- Wound Poison
18759 /*!40000 ALTER TABLE `spell_proc_item_enchant` ENABLE KEYS */;
18760 UNLOCK TABLES;
18763 -- Table structure for table `spell_script_target`
18766 DROP TABLE IF EXISTS `spell_script_target`;
18767 CREATE TABLE `spell_script_target` (
18768   `entry` mediumint(8) unsigned NOT NULL,
18769   `type` tinyint(3) unsigned NOT NULL default '0',
18770   `targetEntry` mediumint(8) unsigned NOT NULL default '0',
18771   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
18772 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Spell System';
18775 -- Dumping data for table `spell_script_target`
18778 LOCK TABLES `spell_script_target` WRITE;
18779 /*!40000 ALTER TABLE `spell_script_target` DISABLE KEYS */;
18780 /*!40000 ALTER TABLE `spell_script_target` ENABLE KEYS */;
18781 UNLOCK TABLES;
18784 -- Table structure for table `spell_scripts`
18787 DROP TABLE IF EXISTS `spell_scripts`;
18788 CREATE TABLE `spell_scripts` (
18789   `id` mediumint(8) unsigned NOT NULL default '0',
18790   `delay` int(10) unsigned NOT NULL default '0',
18791   `command` mediumint(8) unsigned NOT NULL default '0',
18792   `datalong` mediumint(8) unsigned NOT NULL default '0',
18793   `datalong2` int(10) unsigned NOT NULL default '0',
18794   `datalong3` int(10) unsigned NOT NULL default '0',
18795   `datalong4` int(10) unsigned NOT NULL default '0',
18796   `data_flags` tinyint(3) unsigned NOT NULL default '0',
18797   `dataint` int(11) NOT NULL default '0',
18798   `x` float NOT NULL default '0',
18799   `y` float NOT NULL default '0',
18800   `z` float NOT NULL default '0',
18801   `o` float NOT NULL default '0'
18802 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
18805 -- Dumping data for table `spell_scripts`
18808 LOCK TABLES `spell_scripts` WRITE;
18809 /*!40000 ALTER TABLE `spell_scripts` DISABLE KEYS */;
18810 /*!40000 ALTER TABLE `spell_scripts` ENABLE KEYS */;
18811 UNLOCK TABLES;
18814 -- Table structure for table `spell_target_position`
18817 DROP TABLE IF EXISTS `spell_target_position`;
18818 CREATE TABLE `spell_target_position` (
18819   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
18820   `target_map` smallint(5) unsigned NOT NULL default '0',
18821   `target_position_x` float NOT NULL default '0',
18822   `target_position_y` float NOT NULL default '0',
18823   `target_position_z` float NOT NULL default '0',
18824   `target_orientation` float NOT NULL default '0',
18825   PRIMARY KEY  (`id`)
18826 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
18829 -- Dumping data for table `spell_target_position`
18832 LOCK TABLES `spell_target_position` WRITE;
18833 /*!40000 ALTER TABLE `spell_target_position` DISABLE KEYS */;
18834 /*!40000 ALTER TABLE `spell_target_position` ENABLE KEYS */;
18835 UNLOCK TABLES;
18838 -- Table structure for table `spell_threat`
18841 DROP TABLE IF EXISTS `spell_threat`;
18842 CREATE TABLE `spell_threat` (
18843   `entry` mediumint(8) unsigned NOT NULL,
18844   `Threat` smallint(6) NOT NULL,
18845   PRIMARY KEY  (`entry`)
18846 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
18849 -- Dumping data for table `spell_threat`
18852 LOCK TABLES `spell_threat` WRITE;
18853 /*!40000 ALTER TABLE `spell_threat` DISABLE KEYS */;
18854 INSERT INTO `spell_threat` VALUES
18855 (72,293),
18856 (78,20),
18857 (99,42),
18858 (284,39),
18859 (285,59),
18860 (469,40),
18861 (676,104),
18862 (770,108),
18863 (845,10),
18864 (1160,16),
18865 (1608,78),
18866 (1672,180),
18867 (1715,61),
18868 (1735,42),
18869 (2048,70),
18870 (2139,300),
18871 (5242,26),
18872 (6190,26),
18873 (6192,32),
18874 (6343,17),
18875 (6572,155),
18876 (6673,18),
18877 (6574,195),
18878 (6807,322),
18879 (6808,322),
18880 (6809,322),
18881 (7369,40),
18882 (7372,101),
18883 (7373,141),
18884 (7379,235),
18885 (7386,100),
18886 (8198,40),
18887 (8204,64),
18888 (8205,96),
18889 (8972,322),
18890 (9490,42),
18891 (9745,322),
18892 (9747,42),
18893 (9880,322),
18894 (9881,322),
18895 (9898,42),
18896 (11549,40),
18897 (11550,48),
18898 (11551,56),
18899 (11554,30),
18900 (11555,37),
18901 (11556,43),
18902 (11564,98),
18903 (11565,118),
18904 (11566,137),
18905 (11567,145),
18906 (11580,143),
18907 (11581,180),
18908 (11600,275),
18909 (11601,315),
18910 (11608,60),
18911 (11609,70),
18912 (11775,395),
18913 (14921,415),
18914 (16857,108),
18915 (17735,200),
18916 (17750,300),
18917 (17751,450),
18918 (17752,600),
18919 (20569,100),
18920 (20736,100),
18921 (20925,20),
18922 (20927,30),
18923 (20928,40),
18924 (23922,160),
18925 (23923,190),
18926 (23924,220),
18927 (23925,250),
18928 (24394,580),
18929 (24583,5),
18930 (25202,50),
18931 (25203,55),
18932 (25231,130),
18933 (25258,286),
18934 (25264,215),
18935 (25269,400),
18936 (25286,175),
18937 (25288,355),
18938 (25289,62),
18939 (26996,322),
18940 (26998,42),
18941 (27179,54),
18942 (29704,230),
18943 (29707,196),
18944 (30324,220),
18945 (30356,323),
18946 (30357,483),
18947 (33745,285),
18948 (33878,129),
18949 (33986,180),
18950 (33987,232),
18951 (47436,78),
18952 (47437,63),
18953 (47439,60),
18954 (47440,80),
18955 (47449,236),
18956 (47450,259),
18957 (47487,520),
18958 (47488,770),
18959 (47497,101),
18960 (47498,101),
18961 (47501,235),
18962 (47502,260),
18963 (47519,180),
18964 (47520,225),
18965 (48479,322),
18966 (48480,322),
18967 (48559,42),
18968 (48560,42),
18969 (48567,285),
18970 (48568,285),
18971 (57823,500);
18972 /*!40000 ALTER TABLE `spell_threat` ENABLE KEYS */;
18973 UNLOCK TABLES;
18976 -- Table structure for table `transports`
18979 DROP TABLE IF EXISTS `transports`;
18980 CREATE TABLE `transports` (
18981   `entry` mediumint(8) unsigned NOT NULL default '0',
18982   `name` text,
18983   `period` mediumint(8) unsigned NOT NULL default '0',
18984   PRIMARY KEY  (`entry`)
18985 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Transports';
18988 -- Dumping data for table `transports`
18991 LOCK TABLES `transports` WRITE;
18992 /*!40000 ALTER TABLE `transports` DISABLE KEYS */;
18993 /*!40000 ALTER TABLE `transports` ENABLE KEYS */;
18994 UNLOCK TABLES;
18995 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
18997 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
18998 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
18999 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
19000 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
19001 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
19002 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
19003 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
19005 -- Dump completed on 2008-03-30 15:34:54