-
Notifications
You must be signed in to change notification settings - Fork 3
/
ItemSet.sql
564 lines (564 loc) · 109 KB
/
ItemSet.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
DROP TABLE IF EXISTS `ItemSet`;
CREATE TABLE `ItemSet` ( `ID` INT NOT NULL DEFAULT '0',
`Name_Lang_enUS` TEXT NULL,
`Name_Lang_enGB` TEXT NULL,
`Name_Lang_koKR` TEXT NULL,
`Name_Lang_frFR` TEXT NULL,
`Name_Lang_deDE` TEXT NULL,
`Name_Lang_enCN` TEXT NULL,
`Name_Lang_zhCN` TEXT NULL,
`Name_Lang_enTW` TEXT NULL,
`Name_Lang_zhTW` TEXT NULL,
`Name_Lang_esES` TEXT NULL,
`Name_Lang_esMX` TEXT NULL,
`Name_Lang_ruRU` TEXT NULL,
`Name_Lang_ptPT` TEXT NULL,
`Name_Lang_ptBR` TEXT NULL,
`Name_Lang_itIT` TEXT NULL,
`Name_Lang_Unk` TEXT NULL,
`Name_Lang_Mask` INT UNSIGNED NOT NULL DEFAULT '0',
`ItemID_1` INT NOT NULL DEFAULT '0',
`ItemID_2` INT NOT NULL DEFAULT '0',
`ItemID_3` INT NOT NULL DEFAULT '0',
`ItemID_4` INT NOT NULL DEFAULT '0',
`ItemID_5` INT NOT NULL DEFAULT '0',
`ItemID_6` INT NOT NULL DEFAULT '0',
`ItemID_7` INT NOT NULL DEFAULT '0',
`ItemID_8` INT NOT NULL DEFAULT '0',
`ItemID_9` INT NOT NULL DEFAULT '0',
`ItemID_10` INT NOT NULL DEFAULT '0',
`ItemID_11` INT NOT NULL DEFAULT '0',
`ItemID_12` INT NOT NULL DEFAULT '0',
`ItemID_13` INT NOT NULL DEFAULT '0',
`ItemID_14` INT NOT NULL DEFAULT '0',
`ItemID_15` INT NOT NULL DEFAULT '0',
`ItemID_16` INT NOT NULL DEFAULT '0',
`ItemID_17` INT NOT NULL DEFAULT '0',
`SetSpellID_1` INT NOT NULL DEFAULT '0',
`SetSpellID_2` INT NOT NULL DEFAULT '0',
`SetSpellID_3` INT NOT NULL DEFAULT '0',
`SetSpellID_4` INT NOT NULL DEFAULT '0',
`SetSpellID_5` INT NOT NULL DEFAULT '0',
`SetSpellID_6` INT NOT NULL DEFAULT '0',
`SetSpellID_7` INT NOT NULL DEFAULT '0',
`SetSpellID_8` INT NOT NULL DEFAULT '0',
`SetThreshold_1` INT NOT NULL DEFAULT '0',
`SetThreshold_2` INT NOT NULL DEFAULT '0',
`SetThreshold_3` INT NOT NULL DEFAULT '0',
`SetThreshold_4` INT NOT NULL DEFAULT '0',
`SetThreshold_5` INT NOT NULL DEFAULT '0',
`SetThreshold_6` INT NOT NULL DEFAULT '0',
`SetThreshold_7` INT NOT NULL DEFAULT '0',
`SetThreshold_8` INT NOT NULL DEFAULT '0',
`RequiredSkill` INT NOT NULL DEFAULT '0',
`RequiredSkillRank` INT NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `ItemSet` VALUES (1,"The Gladiator","","","","","","","","","","","","","","","",16712190,11729,11726,11728,11731,11730,0,0,0,0,0,0,0,0,0,0,0,0,41864,41863,41862,41861,0,0,0,0,3,2,5,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (41,"Dal\\'Rend\\'s Arms","","","","","","","","","","","","","","","",16712190,12940,12939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41719,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (65,"Spider\\'s Kiss","","","","","","","","","","","","","","","",16712190,13218,13183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17332,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (81,"The Postmaster","","","","","","","","","","","","","","","",16712190,13390,13388,13391,13392,13389,0,0,0,0,0,0,0,0,0,0,0,0,41873,17498,41872,41871,41870,41869,0,0,2,5,4,3,3,5,0,0,0,0);
INSERT INTO `ItemSet` VALUES (121,"Cadaverous Garb","","","","","","","","","","","","","","","",16712190,14637,14636,14640,14638,14641,0,0,0,0,0,0,0,0,0,0,0,0,41681,41645,41680,41679,0,0,0,0,2,3,4,5,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (122,"Necropile Raiment","","","","","","","","","","","","","","","",16712190,14631,14629,14632,14633,14626,0,0,0,0,0,0,0,0,0,0,0,0,41827,41642,41826,41825,0,0,0,0,3,2,4,5,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (123,"Bloodmail Regalia","","","","","","","","","","","","","","","",16712190,14614,14616,14615,14611,14612,0,0,0,0,0,0,0,0,0,0,0,0,41674,41673,41672,41671,0,0,0,0,5,4,3,2,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (124,"Deathbone Guardian","","","","","","","","","","","","","","","",16712190,14624,14622,14620,14623,14621,0,0,0,0,0,0,0,0,0,0,0,0,41726,41725,41724,41723,0,0,0,0,2,3,4,5,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (141,"Volcanic Armor","","","","","","","","","","","","","","","",16712190,15053,15054,15055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9233,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (142,"Stormshroud Armor","","","","","","","","","","","","","","","",16712190,15056,15057,15058,21278,0,0,0,0,0,0,0,0,0,0,0,0,0,18979,23863,41845,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (143,"Devilsaur Armor","","","","","","","","","","","","","","","",16712190,15062,15063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39516,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (144,"Ironfeather Armor","","","","","","","","","","","","","","","",16712190,15066,15067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41780,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (161,"Defias Leather","","","","","","","","","","","","","","","",16712190,10399,10403,10402,10401,10400,0,0,0,0,0,0,0,0,0,0,0,0,41733,41732,41731,41730,0,0,0,0,5,3,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (162,"Embrace of the Viper","","","","","","","","","","","","","","","",16712190,10412,10411,10413,10410,6473,0,0,0,0,0,0,0,0,0,0,0,0,41741,41644,41740,41739,0,0,0,0,5,4,2,3,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (163,"Chain of the Scarlet Crusade","","","","","","","","","","","","","","","",16712190,10329,10332,10328,10331,10330,10333,0,0,0,0,0,0,0,0,0,0,0,41686,41641,41685,41684,41683,0,0,0,2,3,4,5,6,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (181,"Magister\\'s Regalia","","","","","","","","","","","","","","","",16712190,16685,16683,16686,16684,16687,16689,16688,16682,0,0,0,0,0,0,0,0,0,0,0,0,0,29091,27867,41822,30777,0,0,0,0,2,6,8,4,0,0);
INSERT INTO `ItemSet` VALUES (182,"Vestments of the Devout","","","","","","","","","","","","","","","",16712190,16696,16691,16697,16693,16692,16695,16694,16690,0,0,0,0,0,0,0,0,0,0,41881,27778,41880,41879,0,0,0,0,2,6,8,4,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (183,"Dreadmist Raiment","","","","","","","","","","","","","","","",16712190,16702,16703,16699,16701,16700,16704,16698,16705,0,0,0,0,0,0,0,0,0,0,0,41738,27780,41737,41736,0,0,0,0,2,6,8,4,0,0,0,0);
INSERT INTO `ItemSet` VALUES (184,"Shadowcraft Armor","","","","","","","","","","","","","","","",16712190,16713,16711,16710,16721,16708,16709,16712,16707,0,0,0,0,0,0,0,0,0,0,29096,27787,41836,41835,0,0,0,0,2,6,8,4,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (185,"Wildheart Raiment","","","","","","","","","","","","","","","",16712190,16716,16715,16714,16720,16706,16718,16719,16717,0,0,0,0,0,0,0,0,0,29097,27781,0,41893,41892,41891,0,0,2,6,0,8,4,4,0,0,0,0);
INSERT INTO `ItemSet` VALUES (186,"Beaststalker Armor","","","","","","","","","","","","","","","",16712190,16680,16675,16681,16677,16674,16678,16679,16676,0,0,0,0,0,0,0,0,0,0,0,0,0,29094,27785,41668,30772,0,0,0,0,2,6,8,4,0,0);
INSERT INTO `ItemSet` VALUES (187,"The Elements","","","","","","","","","","","","","","","",16712190,16673,16670,16671,16667,16672,16668,16669,16666,0,0,0,0,0,0,0,0,0,0,0,0,29095,27774,41857,41856,0,0,0,0,2,6,8,4,0,0,0);
INSERT INTO `ItemSet` VALUES (188,"Lightforge Armor","","","","","","","","","","","","","","","",16712190,16723,16725,16722,16726,16724,16728,16729,16727,0,0,0,0,0,0,0,0,0,0,29093,0,27498,41819,41818,0,0,0,2,0,6,8,4,0,0,0,0);
INSERT INTO `ItemSet` VALUES (189,"Battlegear of Valor","","","","","","","","","","","","","","","",16712190,16736,16734,16735,16730,16737,16731,16732,16733,0,0,0,0,0,0,0,0,0,29092,27419,0,18679,30770,0,0,0,2,6,0,8,4,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (201,"Arcanist Regalia","","","","","","","","","","","","","","","",16712190,16802,16799,16795,16800,16801,16796,16797,16798,0,0,0,0,0,0,0,0,0,41657,41656,23545,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (202,"Vestments of Prophecy","","","","","","","","","","","","","","","",16712190,16811,16813,16817,16812,16814,16816,16815,16819,0,0,0,0,0,0,0,0,0,21973,21092,23550,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (203,"Felheart Raiment","","","","","","","","","","","","","","","",16712190,16806,16804,16805,16810,16809,16807,16808,16803,0,0,0,0,0,0,0,0,0,23554,21741,23553,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (204,"Nightslayer Armor","","","","","","","","","","","","","","","",16712190,16827,16824,16825,16820,16821,16826,16822,16823,0,0,0,0,0,0,0,0,0,21874,21975,23582,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (205,"Cenarion Raiment","","","","","","","","","","","","","","","",16712190,16828,16829,16830,16833,16831,16834,16835,16836,0,0,0,0,0,0,0,0,0,39507,23556,23557,0,0,0,0,0,5,8,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (206,"Giantstalker Armor","","","","","","","","","","","","","","","",16712190,16851,16849,16850,16845,16848,16852,16846,16847,0,0,0,0,0,0,0,0,0,23560,23566,21926,0,0,0,0,0,3,8,5,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (207,"The Earthfury","","","","","","","","","","","","","","","",16712190,16838,16837,16840,16841,16844,16839,16842,16843,0,0,0,0,0,0,0,0,0,23572,21895,23573,0,0,0,0,0,5,3,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (208,"Lawbringer Armor","","","","","","","","","","","","","","","",16712190,16858,16859,16857,16853,16860,16854,16855,16856,0,0,0,0,0,0,0,0,0,0,23564,41784,21747,0,0,0,0,0,3,5,8,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (209,"Battlegear of Might","","","","","","","","","","","","","","","",16712190,16864,16861,16865,16863,16866,16867,16868,16862,0,0,0,0,0,0,0,0,0,23562,21838,23561,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (210,"Netherwind Regalia","","","","","","","","","","","","","","","",16712190,16818,16918,16912,16914,16917,16913,16915,16916,0,0,0,0,0,0,0,0,0,21879,23549,22007,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (211,"Vestments of Transcendence","","","","","","","","","","","","","","","",16712190,16925,16926,16919,16921,16920,16922,16924,16923,0,0,0,0,0,0,0,0,0,21853,21894,22010,0,0,0,0,0,5,3,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (212,"Nemesis Raiment","","","","","","","","","","","","","","","",16712190,16933,16927,16934,16928,16930,16931,16929,16932,0,0,0,0,0,0,0,0,0,21922,23555,0,32449,0,0,0,0,5,8,0,3,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (213,"Bloodfang Armor","","","","","","","","","","","","","","","",16712190,16910,16906,16911,16905,16907,16908,16909,16832,0,0,0,0,0,0,0,0,0,23558,21881,23581,0,0,0,0,0,5,3,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (214,"Stormrage Raiment","","","","","","","","","","","","","","","",16712190,16903,16898,16904,16897,16900,16899,16901,16902,0,0,0,0,0,0,0,0,0,21894,21872,21871,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (215,"Dragonstalker Armor","","","","","","","","","","","","","","","",16712190,16936,16935,16942,16940,16941,16939,16938,16937,0,0,0,0,0,0,0,0,0,21928,23578,23559,0,0,0,0,0,5,8,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (216,"The Ten Storms","","","","","","","","","","","","","","","",16712190,16944,16943,16950,16945,16948,16949,16947,16946,0,0,0,0,0,0,0,0,0,21899,23570,23551,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (217,"Judgement Armor","","","","","","","","","","","","","","","",16712190,16952,16951,16958,16955,16956,16954,16957,16953,0,0,0,0,0,0,0,0,0,41782,23565,23591,0,0,0,0,0,5,3,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (218,"Battlegear of Wrath","","","","","","","","","","","","","","","",16712190,16959,16966,16964,16963,16962,16961,16965,16960,0,0,0,0,0,0,0,0,0,23563,21890,23548,0,0,0,0,0,3,5,8,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (221,"Garb of Thero-shan","","","","","","","","","","","","","","","",16712190,7950,7948,7952,7951,7953,7949,0,0,0,0,0,0,0,0,0,0,0,41772,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (241,"Shard of the Gods","","","","","","","","","","","","","","","",16712190,17082,17064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41838,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (261,"Spirit of Eskhandar","","","","","","","","","","","","","","","",16712190,18203,18202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22648,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (281,"Champion\\'s Battlegear","","","","","","","","","","","","","","","",16712190,16509,16510,16513,16515,16514,16516,0,0,0,0,0,0,0,0,0,0,0,41690,41653,22738,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (282,"Lieutenant Commander\\'s Battlegear","","","","","","","","","","","","","","","",16712190,16405,16406,16430,16431,16429,16432,0,0,0,0,0,0,0,0,0,0,0,41793,41792,22738,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (301,"Champion\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,16519,16518,16522,16523,16521,16524,0,0,0,0,0,0,0,0,0,0,0,41693,41692,22804,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (321,"Imperial Plate","","","","","","","","","","","","","","","",16712190,12424,12426,12425,12422,12427,12429,12428,0,0,0,0,0,0,0,0,0,0,41779,41647,41778,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (341,"Champion\\'s Regalia","","","","","","","","","","","","","","","",16712190,16485,16487,16491,16490,16489,16492,0,0,0,0,0,0,0,0,0,0,0,41709,23025,41708,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (342,"Champion\\'s Raiment","","","","","","","","","","","","","","","",16712190,17616,17617,17612,17611,17613,17610,0,0,0,0,0,0,0,0,0,0,0,41703,23044,41702,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (343,"Lieutenant Commander\\'s Regalia","","","","","","","","","","","","","","","",16712190,16369,16391,16413,16414,16416,16415,0,0,0,0,0,0,0,0,0,0,0,41811,23025,41810,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (344,"Lieutenant Commander\\'s Raiment","","","","","","","","","","","","","","","",16712190,17594,17596,17600,17599,17598,17601,0,0,0,0,0,0,0,0,0,0,0,23044,41805,41804,0,0,0,0,0,4,2,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (345,"Champion\\'s Threads","","","","","","","","","","","","","","","",16712190,17576,17577,17572,17571,17570,17573,0,0,0,0,0,0,0,0,0,0,0,41715,41714,23047,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (346,"Lieutenant Commander\\'s Threads","","","","","","","","","","","","","","","",16712190,17562,17564,17568,17567,17569,17566,0,0,0,0,0,0,0,0,0,0,0,41815,41814,23047,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (347,"Champion\\'s Vestments","","","","","","","","","","","","","","","",16712190,16498,16499,16505,16508,16506,16507,0,0,0,0,0,0,0,0,0,0,0,41717,41716,23048,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (348,"Lieutenant Commander\\'s Vestments","","","","","","","","","","","","","","","",16712190,16392,16396,16417,16419,16420,16418,0,0,0,0,0,0,0,0,0,0,0,41817,23048,41816,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (361,"Champion\\'s Pursuit","","","","","","","","","","","","","","","",16712190,16531,16530,16525,16527,16526,16528,0,0,0,0,0,0,0,0,0,0,0,41701,23158,41700,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (362,"Lieutenant Commander\\'s Pursuit","","","","","","","","","","","","","","","",16712190,16425,16426,16401,16403,16428,16427,0,0,0,0,0,0,0,0,0,0,0,41803,23158,41802,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (381,"Lieutenant Commander\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,16423,16424,16422,16421,16393,16397,0,0,0,0,0,0,0,0,0,0,0,41813,23218,41812,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (382,"Champion\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,16494,16496,16504,16502,16503,16501,0,0,0,0,0,0,0,0,0,0,0,23218,41711,41710,0,0,0,0,0,4,2,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (383,"Warlord\\'s Battlegear","","","","","","","","","","","","","","","",16712190,16541,16542,16544,16545,16548,16543,0,0,0,0,0,0,0,0,0,0,0,41888,22738,41887,0,0,0,0,0,6,3,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (384,"Field Marshal\\'s Battlegear","","","","","","","","","","","","","","","",16712190,16477,16478,16480,16483,16484,16479,0,0,0,0,0,0,0,0,0,0,0,41756,22738,41755,0,0,0,0,0,2,3,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (386,"Warlord\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,16577,16578,16580,16573,16574,16579,0,0,0,0,0,0,0,0,0,0,0,22804,41896,41895,0,0,0,0,0,3,2,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (387,"Warlord\\'s Regalia","","","","","","","","","","","","","","","",16712190,16536,16533,16535,16539,16540,16534,0,0,0,0,0,0,0,0,0,0,0,41902,41901,23025,0,0,0,0,0,6,2,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (388,"Field Marshal\\'s Regalia","","","","","","","","","","","","","","","",16712190,16441,16444,16443,16437,16440,16442,0,0,0,0,0,0,0,0,0,0,0,41762,41761,23025,0,0,0,0,0,6,2,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (389,"Field Marshal\\'s Raiment","","","","","","","","","","","","","","","",16712190,17604,17603,17605,17608,17607,17602,0,0,0,0,0,0,0,0,0,0,0,41760,41759,23044,0,0,0,0,0,6,2,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (390,"Warlord\\'s Raiment","","","","","","","","","","","","","","","",16712190,17623,17625,17622,17624,17618,17620,0,0,0,0,0,0,0,0,0,0,0,23044,41900,41899,0,0,0,0,0,3,6,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (391,"Warlord\\'s Threads","","","","","","","","","","","","","","","",16712190,17586,17588,17593,17591,17590,17592,0,0,0,0,0,0,0,0,0,0,0,41906,23047,41905,0,0,0,0,0,2,3,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (392,"Field Marshal\\'s Threads","","","","","","","","","","","","","","","",16712190,17581,17580,17583,17584,17579,17578,0,0,0,0,0,0,0,0,0,0,0,41766,23047,41765,0,0,0,0,0,6,3,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (393,"Warlord\\'s Vestments","","","","","","","","","","","","","","","",16712190,16563,16561,16562,16564,16560,16558,0,0,0,0,0,0,0,0,0,0,0,41908,23048,41907,0,0,0,0,0,2,3,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (394,"Field Marshal\\'s Vestments","","","","","","","","","","","","","","","",16712190,16453,16457,16455,16446,16454,16456,0,0,0,0,0,0,0,0,0,0,0,41768,23048,41767,0,0,0,0,0,6,3,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (395,"Field Marshal\\'s Pursuit","","","","","","","","","","","","","","","",16712190,16466,16465,16468,16462,16463,16467,0,0,0,0,0,0,0,0,0,0,0,23158,41758,41757,0,0,0,0,0,3,6,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (396,"Warlord\\'s Pursuit","","","","","","","","","","","","","","","",16712190,16569,16571,16567,16565,16566,16568,0,0,0,0,0,0,0,0,0,0,0,41898,41897,23158,0,0,0,0,0,2,6,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (397,"Field Marshal\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,16452,16451,16449,16459,16448,16450,0,0,0,0,0,0,0,0,0,0,0,41764,41763,23218,0,0,0,0,0,2,6,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (398,"Warlord\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,16554,16555,16552,16551,16549,16550,0,0,0,0,0,0,0,0,0,0,0,23218,41904,41903,0,0,0,0,0,3,6,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (401,"Lieutenant Commander\\'s Aegis","","","","","","","","","","","","","","","",16712190,16410,16409,16433,16435,16434,16436,0,0,0,0,0,0,0,0,0,0,0,41787,41636,41786,23302,0,0,0,0,2,2,6,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (402,"Field Marshal\\'s Aegis","","","","","","","","","","","","","","","",16712190,16473,16474,16476,16472,16471,16475,0,0,0,0,0,0,0,0,0,0,0,23302,41754,41753,0,0,0,0,0,3,2,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (421,"Bloodvine Garb","","","","","","","","","","","","","","","",16712190,19682,19683,19684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41676,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,197,300);
INSERT INTO `ItemSet` VALUES (441,"Primal Batskin","","","","","","","","","","","","","","","",16712190,19685,19687,19686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24090,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,165,300);
INSERT INTO `ItemSet` VALUES (442,"Blood Tiger Harness","","","","","","","","","","","","","","","",16712190,19688,19689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41670,41650,0,0,0,0,0,0,2,2,0,0,0,0,0,0,165,300);
INSERT INTO `ItemSet` VALUES (443,"Bloodsoul Embrace","","","","","","","","","","","","","","","",16712190,19690,19691,19692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41675,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (444,"The Darksoul","","","","","","","","","","","","","","","",16712190,19693,19694,19695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41847,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,164,300);
INSERT INTO `ItemSet` VALUES (461,"The Twin Blades of Hakkari","","","","","","","","","","","","","","","",16712190,19865,19866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41874,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (462,"Zanzil\\'s Concentration","","","","","","","","","","","","","","","",16712190,19893,19905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39702,41894,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (463,"Primal Blessing","","","","","","","","","","","","","","","",16712190,19896,19910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24256,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (464,"Overlord\\'s Resolution","","","","","","","","","","","","","","","",16712190,19873,19912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39880,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (465,"Prayer of the Primal","","","","","","","","","","","","","","","",16712190,19863,19920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41830,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (466,"Major Mojo Infusion","","","","","","","","","","","","","","","",16712190,19898,19925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41823,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (467,"The Highlander\\'s Resolution","","","","","","","","","","","","","","","",16712190,20041,20048,20057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41868,39548,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (468,"The Highlander\\'s Resolve","","","","","","","","","","","","","","","",16712190,20042,20049,20058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41041,41640,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (469,"The Highlander\\'s Determination","","","","","","","","","","","","","","","",16712190,20043,20050,20055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41865,39418,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (470,"The Highlander\\'s Fortitude","","","","","","","","","","","","","","","",16712190,20044,20051,20056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39447,41638,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (471,"The Highlander\\'s Purpose","","","","","","","","","","","","","","","",16712190,20052,20045,20059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41867,39433,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (472,"The Highlander\\'s Will","","","","","","","","","","","","","","","",16712190,20053,20046,20060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39420,41639,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (473,"The Highlander\\'s Intent","","","","","","","","","","","","","","","",16712190,20054,20047,20061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41866,39422,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (474,"Vindicator\\'s Battlegear","","","","","","","","","","","","","","","",16712190,19951,19577,19824,19823,19822,0,0,0,0,0,0,0,0,0,0,0,0,41885,24456,24431,0,0,0,0,0,2,3,5,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (475,"Freethinker\\'s Armor","","","","","","","","","","","","","","","",16712190,19952,19588,19827,19826,19825,0,0,0,0,0,0,0,0,0,0,0,0,41770,24457,24460,0,0,0,0,0,2,3,5,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (476,"Augur\\'s Regalia","","","","","","","","","","","","","","","",16712190,19609,19956,19830,19829,19828,0,0,0,0,0,0,0,0,0,0,0,0,41659,24461,24462,0,0,0,0,0,2,3,5,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (477,"Predator\\'s Armor","","","","","","","","","","","","","","","",16712190,19621,19953,19833,19832,19831,0,0,0,0,0,0,0,0,0,0,0,0,41831,24465,24467,0,0,0,0,0,2,3,5,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (478,"Madcap\\'s Outfit","","","","","","","","","","","","","","","",16712190,19617,19954,19836,19835,19834,0,0,0,0,0,0,0,0,0,0,0,0,41821,24469,24471,0,0,0,0,0,2,3,5,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (479,"Haruspex\\'s Garb","","","","","","","","","","","","","","","",16712190,19613,19955,19840,19839,19838,0,0,0,0,0,0,0,0,0,0,0,0,41776,24480,24479,0,0,0,0,0,2,5,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (480,"Confessor\\'s Raiment","","","","","","","","","","","","","","","",16712190,19594,19958,19843,19842,19841,0,0,0,0,0,0,0,0,0,0,0,0,41718,24483,24482,0,0,0,0,0,2,5,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (481,"Demoniac\\'s Threads","","","","","","","","","","","","","","","",16712190,19605,19957,19848,19849,20033,0,0,0,0,0,0,0,0,0,0,0,0,41734,24486,24487,0,0,0,0,0,2,3,5,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (482,"Illusionist\\'s Attire","","","","","","","","","","","","","","","",16712190,19601,19959,19846,19845,20034,0,0,0,0,0,0,0,0,0,0,0,0,41777,24489,24491,0,0,0,0,0,2,3,5,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (483,"The Defiler\\'s Determination","","","","","","","","","","","","","","","",16712190,20158,20154,20150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41848,39884,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (484,"The Defiler\\'s Fortitude","","","","","","","","","","","","","","","",16712190,20195,20199,20203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41849,41643,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (485,"The Defiler\\'s Intent","","","","","","","","","","","","","","","",16712190,20176,20159,20163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41851,41850,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (486,"The Defiler\\'s Purpose","","","","","","","","","","","","","","","",16712190,20186,20190,20194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41852,39545,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (487,"The Defiler\\'s Resolution","","","","","","","","","","","","","","","",16712190,20204,20208,20212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41853,39486,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (488,"The Defiler\\'s Will","","","","","","","","","","","","","","","",16712190,20167,20171,20175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41855,41854,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (489,"Black Dragon Mail","","","","","","","","","","","","","","","",16712190,16984,15050,15052,15051,0,0,0,0,0,0,0,0,0,0,0,0,0,39510,39509,41669,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (490,"Green Dragon Mail","","","","","","","","","","","","","","","",16712190,15045,15046,20296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41775,21894,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (491,"Blue Dragon Mail","","","","","","","","","","","","","","","",16712190,15048,20295,15049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41677,41651,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (492,"Twilight Trappings","","","","","","","","","","","","","","","",16712190,20406,20408,20407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24746,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (493,"Genesis Raiment","","","","","","","","","","","","","","","",16712190,21355,21353,21354,21356,21357,0,0,0,0,0,0,0,0,0,0,0,0,26106,41774,41773,0,0,0,0,0,5,3,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (494,"Symbols of Unending Life","","","","","","","","","","","","","","","",16712190,21408,21409,21407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26107,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (495,"Battlegear of Unyielding Strength","","","","","","","","","","","","","","","",16712190,21394,21392,21393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26111,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (496,"Conqueror\\'s Battlegear","","","","","","","","","","","","","","","",16712190,21331,21329,21333,21332,0,21330,0,0,0,0,0,0,0,0,0,0,0,26109,26110,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (497,"Deathdealer\\'s Embrace","","","","","","","","","","","","","","","",16712190,0,21359,21360,21361,21362,21364,0,0,0,0,0,0,0,0,0,0,0,26112,26113,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (498,"Emblems of Veiled Shadows","","","","","","","","","","","","","","","",16712190,21405,21406,21404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26114,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (499,"Doomcaller\\'s Attire","","","","","","","","","","","","","","","",16712190,21337,21338,21335,21334,21336,0,0,0,0,0,0,0,0,0,0,0,0,26117,26116,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (500,"Implements of Unspoken Names","","","","","","","","","","","","","","","",16712190,21416,21417,21418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26118,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (501,"Stormcaller\\'s Garb","","","","","","","","","","","","","","","",16712190,21372,21373,21374,21375,21376,0,0,0,0,0,0,0,0,0,0,0,0,26122,26119,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (502,"Gift of the Gathering Storm","","","","","","","","","","","","","","","",16712190,21400,21398,21399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26123,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (503,"Enigma Vestments","","","","","","","","","","","","","","","",16712190,21344,21347,21346,21343,21345,0,0,0,0,0,0,0,0,0,0,0,0,26127,26128,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (504,"Trappings of Vaulted Secrets","","","","","","","","","","","","","","","",16712190,21414,21413,21415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26131,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (505,"Avenger\\'s Battlegear","","","","","","","","","","","","","","","",16712190,21389,21387,21388,21390,21391,0,0,0,0,0,0,0,0,0,0,0,0,26130,41648,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (506,"Battlegear of Eternal Justice","","","","","","","","","","","","","","","",16712190,21397,21395,21396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26135,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (507,"Garments of the Oracle","","","","","","","","","","","","","","","",16712190,21349,21350,21348,21352,21351,0,0,0,0,0,0,0,0,0,0,0,0,26169,26171,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (508,"Finery of Infinite Wisdom","","","","","","","","","","","","","","","",16712190,21410,21411,21412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26172,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (509,"Striker\\'s Garb","","","","","","","","","","","","","","","",16712190,21366,21365,21370,21368,21367,0,0,0,0,0,0,0,0,0,0,0,0,26173,26174,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (510,"Trappings of the Unseen Path","","","","","","","","","","","","","","","",16712190,21403,21401,21402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26176,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (511,"Battlegear of Heroism","","","","","","","","","","","","","","","",16712190,21994,21995,21996,21997,21998,21999,22000,22001,0,0,0,0,0,0,0,0,0,0,41649,41662,27419,41661,0,0,0,0,6,2,4,8,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (512,"Darkmantle Armor","","","","","","","","","","","","","","","",16712190,22002,22003,22004,22005,22006,22007,22008,22009,0,0,0,0,0,0,0,0,0,0,41722,41721,27787,41720,0,0,0,0,6,2,4,8,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (513,"Feralheart Raiment","","","","","","","","","","","","","","","",16712190,22106,22107,22108,22109,22110,22111,22112,22113,0,0,0,0,0,0,0,0,0,41752,41646,41751,0,27781,41750,0,0,6,6,2,0,4,8,0,0,0,0);
INSERT INTO `ItemSet` VALUES (514,"Vestments of the Virtuous","","","","","","","","","","","","","","","",16712190,22078,22079,22080,22081,22082,22083,22084,22085,0,0,0,0,0,0,0,0,0,0,41884,41883,27778,41882,0,0,0,0,6,2,4,8,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (515,"Beastmaster Armor","","","","","","","","","","","","","","","",16712190,22010,22011,22061,22013,22015,22016,22017,22060,0,0,0,0,0,0,0,0,0,0,0,0,0,41667,41666,27785,41665,0,0,0,0,6,2,4,8,0,0);
INSERT INTO `ItemSet` VALUES (516,"Soulforge Armor","","","","","","","","","","","","","","","",16712190,22086,22087,22088,22089,22090,22091,22092,22093,0,0,0,0,0,0,0,0,0,0,41844,41843,27498,41842,0,0,0,0,6,2,4,8,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (517,"Sorcerer\\'s Regalia","","","","","","","","","","","","","","","",16712190,22062,22063,22064,22065,22066,22067,22068,22069,0,0,0,0,0,0,0,0,0,0,0,0,41840,27867,41839,32451,0,0,0,0,8,4,2,6,0,0,0);
INSERT INTO `ItemSet` VALUES (518,"Deathmist Raiment","","","","","","","","","","","","","","","",16712190,22070,22071,22072,22073,22074,22075,22076,22077,0,0,0,0,0,0,0,0,0,0,0,41729,41728,27780,41727,0,0,0,0,6,2,4,8,0,0,0,0);
INSERT INTO `ItemSet` VALUES (519,"The Five Thunders","","","","","","","","","","","","","","","",16712190,22095,22096,22097,22098,22099,22100,22101,22102,0,0,0,0,0,0,0,0,0,0,0,0,41860,41859,27774,41858,0,0,0,0,6,2,4,8,0,0,0);
INSERT INTO `ItemSet` VALUES (520,"Ironweave Battlesuit","","","","","","","","","","","","","","","",16712190,22306,22311,22313,22302,22304,22305,22303,22301,0,0,0,0,0,0,0,0,0,27733,41781,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (521,"Dreamwalker Raiment","","","","","","","","","","","","","","","",16712190,22492,22494,22493,22490,22489,22491,22488,22495,23064,0,0,0,0,0,0,0,0,28743,28744,28716,28719,0,0,0,0,4,6,2,8,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (522,"Champion\\'s Guard","","","","","","","","","","","","","","","",16712190,22864,22856,22879,22880,23257,23258,0,0,0,0,0,0,0,0,0,0,0,41695,23048,41694,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (523,"Dreadnaught\\'s Battlegear","","","","","","","","","","","","","","","",16712190,22423,22416,22421,22422,22418,22417,22419,22420,0,23059,0,0,0,0,0,0,0,28842,28844,28843,28845,0,0,0,0,6,2,4,8,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (524,"Bonescythe Armor","","","","","","","","","","","","","","","",16712190,22483,22476,22481,22478,22477,22479,22480,22482,23060,0,0,0,0,0,0,0,0,28812,28814,28816,28811,0,0,0,0,4,8,2,6,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (525,"Vestments of Faith","","","","","","","","","","","","","","","",16712190,22518,22519,22514,22517,22513,22512,22516,22515,23061,0,0,0,0,0,0,0,0,28809,28802,28807,28808,0,0,0,0,4,8,2,6,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (526,"Frostfire Regalia","","","","","","","","","","","","","","","",16712190,22502,22503,22498,22501,22497,22496,22500,22499,23062,0,0,0,0,0,0,0,0,28771,28763,28761,28764,0,0,0,0,6,2,8,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (527,"The Earthshatterer","","","","","","","","","","","","","","","",16712190,22468,22470,22469,22466,22465,22467,22464,22471,23065,0,0,0,0,0,0,0,0,28823,29171,28818,28821,0,0,0,0,6,4,2,8,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (528,"Redemption Armor","","","","","","","","","","","","","","","",16712190,22430,22431,22426,22428,22427,22429,22425,22424,23066,0,0,0,0,0,0,0,0,28787,28789,28775,28774,0,0,0,0,8,6,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (529,"Plagueheart Raiment","","","","","","","","","","","","","","","",16712190,22510,22511,22506,22509,22505,22504,22508,22507,23063,0,0,0,0,0,0,0,0,28829,28830,28831,28746,0,0,0,0,4,8,2,6,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (530,"Cryptstalker Armor","","","","","","","","","","","","","","","",16712190,22440,22442,22441,22438,22437,22439,22436,22443,23067,0,0,0,0,0,0,0,0,28752,28751,28756,28755,0,0,0,0,6,8,4,2,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (533,"Battlegear of Undead Slaying","","","","","","","","","","","","","","","",16712190,23090,23087,23078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29068,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (534,"Undead Slayer\\'s Armor","","","","","","","","","","","","","","","",16712190,23081,23089,23093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29068,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (535,"Garb of the Undead Slayer","","","","","","","","","","","","","","","",16712190,23088,23082,23092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29068,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (536,"Regalia of Undead Cleansing","","","","","","","","","","","","","","","",16712190,23091,23084,23085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29068,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (537,"Champion\\'s Battlearmor","","","","","","","","","","","","","","","",16712190,22868,22858,22872,22873,23244,23243,0,0,0,0,0,0,0,0,0,0,0,41689,22738,41688,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (538,"Champion\\'s Stormcaller","","","","","","","","","","","","","","","",16712190,22857,22867,22876,22887,23259,23260,0,0,0,0,0,0,0,0,0,0,0,41713,22804,41712,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (539,"Champion\\'s Refuge","","","","","","","","","","","","","","","",16712190,22863,22852,22877,22878,23253,23254,0,0,0,0,0,0,0,0,0,0,0,41707,23218,41706,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (540,"Champion\\'s Investiture","","","","","","","","","","","","","","","",16712190,22869,22859,22882,22885,23261,23262,0,0,0,0,0,0,0,0,0,0,0,41697,23044,41696,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (541,"Champion\\'s Dreadgear","","","","","","","","","","","","","","","",16712190,22865,22855,23255,23256,22881,22884,0,0,0,0,0,0,0,0,0,0,0,41691,41654,23047,0,0,0,0,0,6,2,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (542,"Champion\\'s Arcanum","","","","","","","","","","","","","","","",16712190,22870,22860,23263,23264,22883,22886,0,0,0,0,0,0,0,0,0,0,0,41687,41652,23025,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (543,"Champion\\'s Pursuance","","","","","","","","","","","","","","","",16712190,22843,22862,23251,23252,22874,22875,0,0,0,0,0,0,0,0,0,0,0,23158,41699,41698,0,0,0,0,0,4,6,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (544,"Lieutenant Commander\\'s Redoubt","","","","","","","","","","","","","","","",16712190,23272,23273,23274,23275,23276,23277,0,0,0,0,0,0,0,0,0,0,0,41807,41806,23302,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (545,"Lieutenant Commander\\'s Battlearmor","","","","","","","","","","","","","","","",16712190,23300,23301,23286,23287,23314,23315,0,0,0,0,0,0,0,0,0,0,0,22738,41791,41790,0,0,0,0,0,4,6,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (546,"Lieutenant Commander\\'s Arcanum","","","","","","","","","","","","","","","",16712190,23304,23305,23290,23291,23318,23319,0,0,0,0,0,0,0,0,0,0,0,41789,41788,23025,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (547,"Lieutenant Commander\\'s Dreadgear","","","","","","","","","","","","","","","",16712190,23296,23297,23282,23283,23310,23311,0,0,0,0,0,0,0,0,0,0,0,41795,41794,23047,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (548,"Lieutenant Commander\\'s Guard","","","","","","","","","","","","","","","",16712190,23298,23299,23284,23285,23312,23313,0,0,0,0,0,0,0,0,0,0,0,23048,41797,41796,0,0,0,0,0,4,6,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (549,"Lieutenant Commander\\'s Investiture","","","","","","","","","","","","","","","",16712190,23302,23303,23288,23289,23316,23317,0,0,0,0,0,0,0,0,0,0,0,41799,23044,41798,0,0,0,0,0,2,4,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (550,"Lieutenant Commander\\'s Pursuance","","","","","","","","","","","","","","","",16712190,23292,23293,23278,23279,23306,23307,0,0,0,0,0,0,0,0,0,0,0,41801,41800,23158,0,0,0,0,0,6,2,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (551,"Lieutenant Commander\\'s Refuge","","","","","","","","","","","","","","","",16712190,23294,23295,23280,23281,23308,23309,0,0,0,0,0,0,0,0,0,0,0,41809,23218,41808,0,0,0,0,0,6,4,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (552,"Wrath of Spellfire","","","","","","","","","","","","","","","",16712190,21848,21847,21846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32196,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (553,"Shadow\\'s Embrace","","","","","","","","","","","","","","","",16712190,21871,21869,21870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39372,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (554,"Primal Mooncloth","","","","","","","","","","","","","","","",16712190,21875,21874,21873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32102,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (555,"Netherweave Vestments","","","","","","","","","","","","","","","",16712190,21855,21854,21852,21851,21849,21853,21850,0,0,0,0,0,0,0,0,0,0,39543,41829,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (556,"Imbued Netherweave","","","","","","","","","","","","","","","",16712190,21862,21861,21859,21860,0,0,0,0,0,0,0,0,0,0,0,0,0,39881,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (557,"Soulcloth Embrace","","","","","","","","","","","","","","","",16712190,21865,21864,21863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41841,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (558,"Arcanoweave Vestments","","","","","","","","","","","","","","","",16712190,21868,21866,21867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41658,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (559,"Spellstrike Infusion","","","","","","","","","","","","","","","",16712190,24266,24262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32106,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,197,350);
INSERT INTO `ItemSet` VALUES (560,"Fel Iron Plate","","","","","","","","","","","","","","","",16712190,23489,23488,23487,23482,23484,0,0,0,0,0,0,0,0,0,0,0,0,42155,41744,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (561,"Fel Iron Chain","","","","","","","","","","","","","","","",16712190,23490,23491,23493,23494,0,0,0,0,0,0,0,0,0,0,0,0,0,41562,41561,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (562,"Adamantite Battlegear","","","","","","","","","","","","","","","",16712190,23507,23508,23506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41655,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (563,"Enchanted Adamantite Armor","","","","","","","","","","","","","","","",16712190,23509,23512,23511,23510,0,0,0,0,0,0,0,0,0,0,0,0,0,41742,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (564,"Flame Guard","","","","","","","","","","","","","","","",16712190,23513,23516,23514,23515,0,0,0,0,0,0,0,0,0,0,0,0,0,41769,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (565,"Khorium Ward","","","","","","","","","","","","","","","",16712190,23523,23525,23524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41783,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,164,350);
INSERT INTO `ItemSet` VALUES (566,"Burning Rage","","","","","","","","","","","","","","","",16712190,23522,23521,23520,33173,0,0,0,0,0,0,0,0,0,0,0,0,0,41678,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,164,350);
INSERT INTO `ItemSet` VALUES (567,"Gladiator\\'s Battlegear","","","","","","","","","","","","","","","",16712190,24544,24549,24545,24547,24546,0,0,0,0,0,0,0,0,0,0,0,0,22738,32145,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (568,"Gladiator\\'s Dreadgear","","","","","","","","","","","","","","","",16712190,24556,24553,24555,24554,24552,0,0,0,0,0,0,0,0,0,0,0,0,40042,23047,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (569,"Faith in Felsteel","","","","","","","","","","","","","","","",16712190,23519,23518,23517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41743,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,164,350);
INSERT INTO `ItemSet` VALUES (570,"The Unyielding","","","","","","","","","","","","","","","",16712190,24255,24249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41876,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (571,"Whitemend Wisdom","","","","","","","","","","","","","","","",16712190,24264,24261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32200,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,197,350);
INSERT INTO `ItemSet` VALUES (572,"Battlecast Garb","","","","","","","","","","","","","","","",16712190,24267,24263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41660,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,197,375);
INSERT INTO `ItemSet` VALUES (573,"Fel Skin","","","","","","","","","","","","","","","",16712190,25685,25686,25687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41746,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,165,350);
INSERT INTO `ItemSet` VALUES (574,"Strength of the Clefthoof","","","","","","","","","","","","","","","",16712190,25691,25690,25689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41846,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,165,350);
INSERT INTO `ItemSet` VALUES (575,"Felstalker Armor","","","","","","","","","","","","","","","",16712190,25695,25697,25696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41749,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,165,350);
INSERT INTO `ItemSet` VALUES (576,"Fury of the Nether","","","","","","","","","","","","","","","",16712190,25694,25693,25692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41771,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,165,350);
INSERT INTO `ItemSet` VALUES (577,"Gladiator\\'s Vestments","","","","","","","","","","","","","","","",16712190,25834,25833,25830,25832,25831,0,0,0,0,0,0,0,0,0,0,0,0,32145,21975,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (578,"Gladiator\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,25997,26000,25998,26001,25999,0,0,0,0,0,0,0,0,0,0,0,0,33018,32145,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (579,"Gladiator\\'s Regalia","","","","","","","","","","","","","","","",16712190,25854,25855,25857,25856,25858,0,0,0,0,0,0,0,0,0,0,0,0,40042,44302,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (580,"Gladiator\\'s Thunderfist","","","","","","","","","","","","","","","",16712190,27469,27470,27471,27472,27473,0,0,0,0,0,0,0,0,0,0,0,0,40042,44299,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (581,"Gladiator\\'s Raiment","","","","","","","","","","","","","","","",16712190,27707,27708,27709,27710,27711,0,0,0,0,0,0,0,0,0,0,0,0,40042,33333,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (582,"Gladiator\\'s Aegis","","","","","","","","","","","","","","","",16712190,27702,27703,27704,27705,27706,0,0,0,0,0,0,0,0,0,0,0,0,61776,40044,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (583,"Gladiator\\'s Vindication","","","","","","","","","","","","","","","",16712190,27879,27880,27881,27882,27883,0,0,0,0,0,0,0,0,0,0,0,0,32145,61776,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (584,"Gladiator\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,28126,28127,28128,28129,28130,0,0,0,0,0,0,0,0,0,0,0,0,32145,23218,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (585,"Gladiator\\'s Wildhide","","","","","","","","","","","","","","","",16712190,28136,28137,28138,28139,28140,0,0,0,0,0,0,0,0,0,0,0,0,40042,46832,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (586,"Gladiator\\'s Pursuit","","","","","","","","","","","","","","","",16712190,28334,28335,28331,28332,28333,0,0,0,0,0,0,0,0,0,0,0,0,32145,44292,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (587,"High Warlord\\'s Aegis","","","","","","","","","","","","","","","",16712190,28831,28832,28833,28834,28835,0,0,0,0,0,0,0,0,0,0,0,0,40052,23302,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (588,"High Warlord\\'s Battlegear","","","","","","","","","","","","","","","",16712190,28851,28852,28853,28854,28855,0,0,0,0,0,0,0,0,0,0,0,0,40050,22738,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (589,"Grand Marshal\\'s Aegis","","","","","","","","","","","","","","","",16712190,28679,28680,28681,28724,28683,0,0,0,0,0,0,0,0,0,0,0,0,40048,23302,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (590,"Grand Marshal\\'s Battlegear","","","","","","","","","","","","","","","",16712190,28699,28700,28701,28702,28703,0,0,0,0,0,0,0,0,0,0,0,0,40046,22738,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (591,"Grand Marshal\\'s Dreadgear","","","","","","","","","","","","","","","",16712190,28624,28625,28626,28627,28628,0,0,0,0,0,0,0,0,0,0,0,0,40047,23047,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (592,"High Warlord\\'s Dreadgear","","","","","","","","","","","","","","","",16712190,28817,28818,28819,28820,28821,0,0,0,0,0,0,0,0,0,0,0,0,40051,23047,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (593,"Grand Marshal\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,28689,28690,28691,28692,28693,0,0,0,0,0,0,0,0,0,0,0,0,40046,33018,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (594,"High Warlord\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,28841,28842,28843,28844,28845,0,0,0,0,0,0,0,0,0,0,0,0,40050,33018,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (595,"Grand Marshal\\'s Pursuit","","","","","","","","","","","","","","","",16712190,28613,28614,28615,28616,28617,0,0,0,0,0,0,0,0,0,0,0,0,40046,23158,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (596,"High Warlord\\'s Pursuit","","","","","","","","","","","","","","","",16712190,28805,28806,28807,28808,28809,0,0,0,0,0,0,0,0,0,0,0,0,40050,23158,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (597,"Grand Marshal\\'s Raiment","","","","","","","","","","","","","","","",16712190,28704,28705,28706,28707,28708,0,0,0,0,0,0,0,0,0,0,0,0,40047,33333,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (598,"High Warlord\\'s Raiment","","","","","","","","","","","","","","","",16712190,28856,28857,28858,28859,28860,0,0,0,0,0,0,0,0,0,0,0,0,40051,33333,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (599,"Grand Marshal\\'s Regalia","","","","","","","","","","","","","","","",16712190,28714,28715,28716,28717,28718,0,0,0,0,0,0,0,0,0,0,0,0,40047,23025,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (600,"High Warlord\\'s Regalia","","","","","","","","","","","","","","","",16712190,28866,28867,28868,28869,28870,0,0,0,0,0,0,0,0,0,0,0,0,40051,23025,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (601,"Grand Marshal\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,28618,28619,28620,28622,28623,0,0,0,0,0,0,0,0,0,0,0,0,40046,23218,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (602,"High Warlord\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,28811,28812,28813,28814,28815,0,0,0,0,0,0,0,0,0,0,0,0,40050,23218,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (603,"Grand Marshal\\'s Thunderfist","","","","","","","","","","","","","","","",16712190,28694,28695,28696,28697,28698,0,0,0,0,0,0,0,0,0,0,0,0,40047,22804,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (604,"High Warlord\\'s Thunderfist","","","","","","","","","","","","","","","",16712190,28846,28847,28848,28849,28850,0,0,0,0,0,0,0,0,0,0,0,0,40051,22804,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (605,"Grand Marshal\\'s Vestments","","","","","","","","","","","","","","","",16712190,28684,28685,28686,28687,28688,0,0,0,0,0,0,0,0,0,0,0,0,40046,23048,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (606,"High Warlord\\'s Vestments","","","","","","","","","","","","","","","",16712190,28836,28837,28838,28839,28840,0,0,0,0,0,0,0,0,0,0,0,0,40050,23048,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (607,"Grand Marshal\\'s Vindication","","","","","","","","","","","","","","","",16712190,28709,28710,28711,28712,28713,0,0,0,0,0,0,0,0,0,0,0,0,40046,23302,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (608,"High Warlord\\'s Vindication","","","","","","","","","","","","","","","",16712190,28861,28862,28863,28864,28865,0,0,0,0,0,0,0,0,0,0,0,0,40050,23302,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (609,"Grand Marshal\\'s Wildhide","","","","","","","","","","","","","","","",16712190,28719,28720,28721,28722,28723,0,0,0,0,0,0,0,0,0,0,0,0,40047,33877,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (610,"High Warlord\\'s Wildhide","","","","","","","","","","","","","","","",16712190,28871,28872,28873,28874,28875,0,0,0,0,0,0,0,0,0,0,0,0,40051,33877,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (611,"Felscale Armor","","","","","","","","","","","","","","","",16712190,25657,25656,25655,25654,0,0,0,0,0,0,0,0,0,0,0,0,0,41748,41747,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (612,"Scaled Draenic Armor","","","","","","","","","","","","","","","",16712190,25661,25659,25662,25660,0,0,0,0,0,0,0,0,0,0,0,0,0,41834,41833,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (613,"Thick Draenic Armor","","","","","","","","","","","","","","","",16712190,25668,25669,25670,25671,0,0,0,0,0,0,0,0,0,0,0,0,0,41878,41877,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (614,"Wild Draenish Armor","","","","","","","","","","","","","","","",16712190,25673,25674,25675,25676,0,0,0,0,0,0,0,0,0,0,0,0,0,41890,41889,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (615,"Gladiator\\'s Felshroud","","","","","","","","","","","","","","","",16712190,30186,30187,30188,30200,30201,0,0,0,0,0,0,0,0,0,0,0,0,40053,23047,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (616,"Netherscale Armor","","","","","","","","","","","","","","","",16712190,29516,29517,29515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39982,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (617,"Netherstrike Armor","","","","","","","","","","","","","","","",16712190,29521,29520,29519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41828,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (618,"Windhawk Armor","","","","","","","","","","","","","","","",16712190,29523,29524,29522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41591,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (619,"Primal Intent","","","","","","","","","","","","","","","",16712190,29527,29526,29525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41832,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (620,"Assassination Armor","","","","","","","","","","","","","","","",16712190,27509,28414,27908,27776,28204,0,0,0,0,0,0,0,0,0,0,0,0,37165,37166,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (621,"Netherblade","","","","","","","","","","","","","","","",16712190,29046,29045,29044,29048,29047,0,0,0,0,0,0,0,0,0,0,0,0,37167,37168,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (622,"Deathmantle","","","","","","","","","","","","","","","",16712190,30144,30145,30146,30148,30149,0,0,0,0,0,0,0,0,0,0,0,0,37169,37170,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (623,"Righteous Armor","","","","","","","","","","","","","","","",16712190,28203,27535,28285,27839,27739,0,0,0,0,0,0,0,0,0,0,0,0,37180,37181,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (624,"Justicar Raiment","","","","","","","","","","","","","","","",16712190,29062,29061,29065,29063,29064,0,0,0,0,0,0,0,0,0,0,0,0,37182,37183,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (625,"Justicar Armor","","","","","","","","","","","","","","","",16712190,29066,29068,29067,29069,29070,0,0,0,0,0,0,0,0,0,0,0,0,37184,37185,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (626,"Justicar Battlegear","","","","","","","","","","","","","","","",16712190,29071,29073,29072,29074,29075,0,0,0,0,0,0,0,0,0,0,0,0,37186,37187,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (627,"Crystalforge Raiment","","","","","","","","","","","","","","","",16712190,30134,30135,30136,30137,30138,0,0,0,0,0,0,0,0,0,0,0,0,37188,37189,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (628,"Crystalforge Armor","","","","","","","","","","","","","","","",16712190,30123,30125,30124,30126,30127,0,0,0,0,0,0,0,0,0,0,0,0,37190,37191,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (629,"Crystalforge Battlegear","","","","","","","","","","","","","","","",16712190,30129,30130,30132,30133,30131,0,0,0,0,0,0,0,0,0,0,0,0,37194,37195,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (630,"Tidefury Raiment","","","","","","","","","","","","","","","",16712190,28231,27510,28349,27909,27802,0,0,0,0,0,0,0,0,0,0,0,0,37207,37209,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (631,"Cyclone Raiment","","","","","","","","","","","","","","","",16712190,29032,29029,29028,29030,29031,0,0,0,0,0,0,0,0,0,0,0,0,37210,37211,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (632,"Cyclone Regalia","","","","","","","","","","","","","","","",16712190,29033,29035,29034,29036,29037,0,0,0,0,0,0,0,0,0,0,0,0,37213,37212,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (633,"Cyclone Harness","","","","","","","","","","","","","","","",16712190,29038,29039,29040,29043,29042,0,0,0,0,0,0,0,0,0,0,0,0,37223,37224,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (634,"Cataclysm Raiment","","","","","","","","","","","","","","","",16712190,30164,30165,30166,30167,30168,0,0,0,0,0,0,0,0,0,0,0,0,37225,37227,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (635,"Cataclysm Regalia","","","","","","","","","","","","","","","",16712190,30169,30170,30171,30172,30173,0,0,0,0,0,0,0,0,0,0,0,0,37228,37237,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (636,"Cataclysm Harness","","","","","","","","","","","","","","","",16712190,30185,30189,30190,30192,30194,0,0,0,0,0,0,0,0,0,0,0,0,37239,37241,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (637,"Moonglade Raiment","","","","","","","","","","","","","","","",16712190,28348,27468,27873,28202,27737,0,0,0,0,0,0,0,0,0,0,0,0,37286,37287,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (638,"Malorne Raiment","","","","","","","","","","","","","","","",16712190,29087,29086,29090,29088,29089,0,0,0,0,0,0,0,0,0,0,0,0,37288,37292,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (639,"Malorne Regalia","","","","","","","","","","","","","","","",16712190,29093,29094,29091,29092,29095,0,0,0,0,0,0,0,0,0,0,0,0,37295,37297,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (640,"Malorne Harness","","","","","","","","","","","","","","","",16712190,29096,29097,29099,29100,29098,0,0,0,0,0,0,0,0,0,0,0,0,37306,37311,37298,37299,0,0,0,0,2,2,4,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (641,"Nordrassil Harness","","","","","","","","","","","","","","","",16712190,30222,30223,30228,30229,30230,0,0,0,0,0,0,0,0,0,0,0,0,37315,37333,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (642,"Nordrassil Raiment","","","","","","","","","","","","","","","",16712190,30216,30217,30219,30220,30221,0,0,0,0,0,0,0,0,0,0,0,0,37313,37314,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (643,"Nordrassil Regalia","","","","","","","","","","","","","","","",16712190,30231,30232,30233,30234,30235,0,0,0,0,0,0,0,0,0,0,0,0,37324,37327,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (644,"Oblivion Raiment","","","","","","","","","","","","","","","",16712190,27537,28415,28232,27778,27948,0,0,0,0,0,0,0,0,0,0,0,0,37376,37375,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (645,"Voidheart Raiment","","","","","","","","","","","","","","","",16712190,28963,28968,28966,28967,28964,0,0,0,0,0,0,0,0,0,0,0,0,37377,37380,39437,0,0,0,0,0,2,4,2,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (646,"Corruptor Raiment","","","","","","","","","","","","","","","",16712190,30211,30212,30213,30215,30214,0,0,0,0,0,0,0,0,0,0,0,0,37381,61992,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (647,"Incanter\\'s Regalia","","","","","","","","","","","","","","","",16712190,28278,27508,27738,28229,27838,0,0,0,0,0,0,0,0,0,0,0,0,37423,37424,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (648,"Aldor Regalia","","","","","","","","","","","","","","","",16712190,29076,29080,29078,29079,29077,0,0,0,0,0,0,0,0,0,0,0,0,37439,37438,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (649,"Tirisfal Regalia","","","","","","","","","","","","","","","",16712190,30206,30205,30207,30210,30196,0,0,0,0,0,0,0,0,0,0,0,0,37443,37441,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (650,"Beast Lord Armor","","","","","","","","","","","","","","","",16712190,28228,27474,28275,27874,27801,0,0,0,0,0,0,0,0,0,0,0,0,37483,37481,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (651,"Demon Stalker Armor","","","","","","","","","","","","","","","",16712190,29085,29081,29083,29082,29084,0,0,0,0,0,0,0,0,0,0,0,0,37484,37485,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (652,"Rift Stalker Armor","","","","","","","","","","","","","","","",16712190,30139,30140,30141,30142,30143,0,0,0,0,0,0,0,0,0,0,0,0,37381,37505,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (653,"Bold Armor","","","","","","","","","","","","","","","",16712190,28205,27475,27977,27803,28350,0,0,0,0,0,0,0,0,0,0,0,0,37513,37512,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (654,"Warbringer Armor","","","","","","","","","","","","","","","",16712190,29012,29011,29017,29015,29016,0,0,0,0,0,0,0,0,0,0,0,0,37514,37516,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (655,"Warbringer Battlegear","","","","","","","","","","","","","","","",16712190,29021,29019,29020,29022,29023,0,0,0,0,0,0,0,0,0,0,0,0,37518,37519,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (656,"Destroyer Armor","","","","","","","","","","","","","","","",16712190,30113,30115,30114,30116,30117,0,0,0,0,0,0,0,0,0,0,0,0,37522,37525,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (657,"Destroyer Battlegear","","","","","","","","","","","","","","","",16712190,30120,30118,30119,30121,30122,0,0,0,0,0,0,0,0,0,0,0,0,37528,37535,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (658,"Mana-Etched Regalia","","","","","","","","","","","","","","","",16712190,28193,27465,27907,28191,27796,0,0,0,0,0,0,0,0,0,0,0,0,37607,37619,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (659,"Wastewalker Armor","","","","","","","","","","","","","","","",16712190,28264,27531,28224,27837,27797,0,0,0,0,0,0,0,0,0,0,0,0,37618,37608,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (660,"Desolation Battlegear","","","","","","","","","","","","","","","",16712190,27936,28401,27528,28192,27713,0,0,0,0,0,0,0,0,0,0,0,0,37617,37609,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (661,"Doomplate Battlegear","","","","","","","","","","","","","","","",16712190,28403,27497,28225,27870,27771,0,0,0,0,0,0,0,0,0,0,0,0,37611,37610,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (662,"Hallowed Raiment","","","","","","","","","","","","","","","",16712190,28413,28230,27536,27775,27875,0,0,0,0,0,0,0,0,0,0,0,0,37556,37558,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (663,"Incarnate Raiment","","","","","","","","","","","","","","","",16712190,29055,29049,29054,29050,29053,0,0,0,0,0,0,0,0,0,0,0,0,37564,37568,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (664,"Incarnate Regalia","","","","","","","","","","","","","","","",16712190,29057,29059,29056,29058,29060,0,0,0,0,0,0,0,0,0,0,0,0,37570,37571,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (665,"Avatar Raiment","","","","","","","","","","","","","","","",16712190,30153,30152,30151,30154,30150,0,0,0,0,0,0,0,0,0,0,0,0,26171,37594,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (666,"Avatar Regalia","","","","","","","","","","","","","","","",16712190,30160,30161,30162,30159,30163,0,0,0,0,0,0,0,0,0,0,0,0,37600,37603,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (667,"The Twin Stars","","","","","","","","","","","","","","","",16712190,31339,31338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41875,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (668,"Slayer\\'s Armor","","","","","","","","","","","","","","","",16712190,31028,31026,31027,31029,31030,34575,34448,34558,0,0,0,0,0,0,0,0,0,38389,38388,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (669,"Gronnstalker\\'s Armor","","","","","","","","","","","","","","","",16712190,31004,31001,31003,31005,31006,34549,34443,34570,0,0,0,0,0,0,0,0,0,38390,38392,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (670,"Malefic Raiment","","","","","","","","","","","","","","","",16712190,31050,31051,31053,31054,31052,34564,34436,34541,0,0,0,0,0,0,0,0,0,38394,38393,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (671,"Tempest Regalia","","","","","","","","","","","","","","","",16712190,31056,31055,31058,31059,31057,34574,34447,34557,0,0,0,0,0,0,0,0,0,38396,38397,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (672,"Onslaught Battlegear","","","","","","","","","","","","","","","",16712190,30972,30975,30969,30977,30979,34546,34441,34569,0,0,0,0,0,0,0,0,0,38398,38399,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (673,"Onslaught Armor","","","","","","","","","","","","","","","",16712190,30976,30974,30970,30978,30980,34568,34442,34547,0,0,0,0,0,0,0,0,0,38407,38408,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (674,"Absolution Regalia","","","","","","","","","","","","","","","",16712190,31061,31064,31067,31070,31065,34434,34528,34563,0,0,0,0,0,0,0,0,0,38413,38412,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (675,"Vestments of Absolution","","","","","","","","","","","","","","","",16712190,31068,31063,31060,31069,31066,34562,34527,34435,0,0,0,0,0,0,0,0,0,38411,38410,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (676,"Thunderheart Harness","","","","","","","","","","","","","","","",16712190,31042,31034,31039,31044,31048,34556,34444,34573,0,0,0,0,0,0,0,0,0,38416,38447,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (677,"Thunderheart Regalia","","","","","","","","","","","","","","","",16712190,31043,31035,31040,31046,31049,34572,34446,34555,0,0,0,0,0,0,0,0,0,38414,38415,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (678,"Thunderheart Raiment","","","","","","","","","","","","","","","",16712190,31041,31032,31037,31045,31047,34571,34445,34554,0,0,0,0,0,0,0,0,0,38417,38420,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (679,"Lightbringer Armor","","","","","","","","","","","","","","","",16712190,30991,30987,30985,30995,30998,34488,34433,34560,0,0,0,0,0,0,0,0,0,38421,38422,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (680,"Lightbringer Battlegear","","","","","","","","","","","","","","","",16712190,30990,30982,30993,30997,30989,34561,34431,34485,0,0,0,0,0,0,0,0,0,38427,38424,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (681,"Lightbringer Raiment","","","","","","","","","","","","","","","",16712190,30992,30983,30988,30994,30996,34432,34487,34559,0,0,0,0,0,0,0,0,0,38426,38425,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (682,"Skyshatter Harness","","","","","","","","","","","","","","","",16712190,31018,31011,31015,31021,31024,34567,34439,34545,0,0,0,0,0,0,0,0,0,38429,38432,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (683,"Skyshatter Raiment","","","","","","","","","","","","","","","",16712190,31016,31007,31012,31019,31022,34543,34438,34565,0,0,0,0,0,0,0,0,0,38434,38435,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (684,"Skyshatter Regalia","","","","","","","","","","","","","","","",16712190,31017,31008,31014,31020,31023,34542,34437,34566,0,0,0,0,0,0,0,0,0,38443,38436,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (685,"Gladiator\\'s Refuge","","","","","","","","","","","","","","","",16712190,31375,31376,31377,31378,31379,0,0,0,0,0,0,0,0,0,0,0,0,40043,46834,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (686,"Gladiator\\'s Wartide","","","","","","","","","","","","","","","",16712190,31396,31397,31400,31406,31407,0,0,0,0,0,0,0,0,0,0,0,0,44299,40043,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (687,"Gladiator\\'s Investiture","","","","","","","","","","","","","","","",16712190,31409,31410,31411,31412,31413,0,0,0,0,0,0,0,0,0,0,0,0,33333,40043,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (688,"Grand Marshal\\'s Refuge","","","","","","","","","","","","","","","",16712190,31589,31590,31591,31592,31593,0,0,0,0,0,0,0,0,0,0,0,0,40045,46834,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (689,"High Warlord\\'s Refuge","","","","","","","","","","","","","","","",16712190,31584,31585,31586,31587,31588,0,0,0,0,0,0,0,0,0,0,0,0,46834,40049,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (690,"Gladiator\\'s Redemption","","","","","","","","","","","","","","","",16712190,31613,31614,31616,31618,31619,0,0,0,0,0,0,0,0,0,0,0,0,40043,46851,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (691,"Grand Marshal\\'s Investiture","","","","","","","","","","","","","","","",16712190,31622,31623,31620,31624,31625,0,0,0,0,0,0,0,0,0,0,0,0,33333,40045,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (692,"High Warlord\\'s Investiture","","","","","","","","","","","","","","","",16712190,31626,31627,31621,31628,31629,0,0,0,0,0,0,0,0,0,0,0,0,33333,40049,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (693,"Grand Marshal\\'s Redemption","","","","","","","","","","","","","","","",16712190,31630,31631,31632,31633,31634,0,0,0,0,0,0,0,0,0,0,0,0,40045,46851,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (694,"High Warlord\\'s Redemption","","","","","","","","","","","","","","","",16712190,31635,31636,31637,31638,31639,0,0,0,0,0,0,0,0,0,0,0,0,46851,40049,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (695,"Grand Marshal\\'s Wartide","","","","","","","","","","","","","","","",16712190,31640,31641,31642,31643,31644,0,0,0,0,0,0,0,0,0,0,0,0,40045,38499,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (696,"High Warlord\\'s Wartide","","","","","","","","","","","","","","","",16712190,31646,31647,31648,31649,31650,0,0,0,0,0,0,0,0,0,0,0,0,38499,40049,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (697,"Champion\\'s Redoubt","","","","","","","","","","","","","","","",16712190,29600,29601,29602,29603,29604,29605,0,0,0,0,0,0,0,0,0,0,0,41705,23302,41704,0,0,0,0,0,2,3,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (698,"Warlord\\'s Aegis","","","","","","","","","","","","","","","",16712190,29612,29613,29614,29615,29616,29617,0,0,0,0,0,0,0,0,0,0,0,41886,23302,30778,0,0,0,0,0,2,3,6,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (699,"The Twin Blades of Azzinoth","","","","","","","","","","","","","","","",16712190,32838,32837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41434,41433,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (700,"Merciless Gladiator\\'s Aegis","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41462,61776,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (701,"Merciless Gladiator\\'s Battlegear","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41464,22738,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (702,"Merciless Gladiator\\'s Dreadgear","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41474,23047,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (703,"Merciless Gladiator\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41464,33018,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (704,"Merciless Gladiator\\'s Felshroud","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41462,23047,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (705,"Merciless Gladiator\\'s Investiture","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41463,33333,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (706,"Merciless Gladiator\\'s Pursuit","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44292,41464,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (707,"Merciless Gladiator\\'s Raiment","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41462,33333,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (708,"Merciless Gladiator\\'s Redemption","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46851,41463,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (709,"Merciless Gladiator\\'s Refuge","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41463,23218,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (710,"Merciless Gladiator\\'s Regalia","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44302,41462,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (711,"Merciless Gladiator\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41464,23218,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (712,"Merciless Gladiator\\'s Thunderfist","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44299,41462,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (713,"Merciless Gladiator\\'s Vestments","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41464,21975,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (714,"Merciless Gladiator\\'s Vindication","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61776,41464,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (715,"Merciless Gladiator\\'s Wartide","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41463,44299,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (716,"Merciless Gladiator\\'s Wildhide","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44293,41462,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (717,"Field Marshal\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,29608,29606,29611,29609,29607,29610,0,0,0,0,0,0,0,0,0,0,0,41895,41896,22804,0,0,0,0,0,6,2,3,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (718,"Lieutenant Commander\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,29599,29595,29597,29596,29598,29594,0,0,0,0,0,0,0,0,0,0,0,41713,41712,22804,0,0,0,0,0,2,6,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (719,"The Fists of Fury","","","","","","","","","","","","","","","",16712190,32946,32945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41989,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (720,"Vengeful Gladiator\\'s Refuge","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43478,23218,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (721,"Vengeful Gladiator\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43479,23218,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (722,"Vengeful Gladiator\\'s Wildhide","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43480,44293,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (723,"Vengeful Gladiator\\'s Pursuit","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43479,44292,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (724,"Vengeful Gladiator\\'s Regalia","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43480,44302,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (725,"Vengeful Gladiator\\'s Redemption","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43478,23302,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (726,"Vengeful Gladiator\\'s Vindication","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43479,61776,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (727,"Vengeful Gladiator\\'s Aegis","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43480,61776,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (728,"Vengeful Gladiator\\'s Investiture","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43478,33333,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (729,"Vengeful Gladiator\\'s Raiment","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43480,33333,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (730,"Vengeful Gladiator\\'s Vestments","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43479,21975,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (731,"Vengeful Gladiator\\'s Wartide","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43478,44299,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (732,"Vengeful Gladiator\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43479,33018,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (733,"Vengeful Gladiator\\'s Thunderfist","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43480,44299,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (734,"Vengeful Gladiator\\'s Dreadgear","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43481,23047,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (735,"Vengeful Gladiator\\'s Felshroud","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43480,23047,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (736,"Vengeful Gladiator\\'s Battlegear","","","","","","","","","","","","","","","",16712190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43479,22738,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (737,"Latro\\'s Flurry","","","","","","","","","","","","","","","",16712190,34703,28189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9336,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (738,"Dreadweave Battlegear","","","","","","","","","","","","","","","",16712190,35328,35329,35330,35331,35332,0,0,0,0,0,0,0,0,0,0,0,0,23047,46412,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (739,"Mooncloth Battlegear","","","","","","","","","","","","","","","",16712190,35333,35334,35335,35336,35337,0,0,0,0,0,0,0,0,0,0,0,0,33333,46413,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (740,"Satin Battlegear","","","","","","","","","","","","","","","",16712190,35338,35339,35340,35341,35342,0,0,0,0,0,0,0,0,0,0,0,0,33333,46414,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (741,"Evoker\\'s Silk Battlegear","","","","","","","","","","","","","","","",16712190,35343,35344,35345,35346,35347,0,0,0,0,0,0,0,0,0,0,0,0,46415,23025,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (742,"Dragonhide Battlegear","","","","","","","","","","","","","","","",16712190,35356,35357,35358,35360,35359,0,0,0,0,0,0,0,0,0,0,0,0,23218,46435,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (743,"Wyrmhide Battlegear","","","","","","","","","","","","","","","",16712190,35371,35372,35373,35375,35374,0,0,0,0,0,0,0,0,0,0,0,0,46832,46436,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (744,"Kodohide Battlegear","","","","","","","","","","","","","","","",16712190,35361,35362,35363,35365,35364,0,0,0,0,0,0,0,0,0,0,0,0,46834,46437,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (745,"Opportunist\\'s Battlegear","","","","","","","","","","","","","","","",16712190,35366,35367,35368,35369,35370,0,0,0,0,0,0,0,0,0,0,0,0,23048,46438,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (746,"Seer\\'s Mail Battlegear","","","","","","","","","","","","","","","",16712190,35386,35387,35388,35389,35390,0,0,0,0,0,0,0,0,0,0,0,0,22804,46454,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (747,"Seer\\'s Ringmail Battlegear","","","","","","","","","","","","","","","",16712190,35391,35392,35393,35394,35395,0,0,0,0,0,0,0,0,0,0,0,0,48109,46455,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (748,"Seer\\'s Linked Battlegear","","","","","","","","","","","","","","","",16712190,35381,35382,35383,35384,35385,0,0,0,0,0,0,0,0,0,0,0,0,33018,46456,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (749,"Stalker\\'s Chain Battlegear","","","","","","","","","","","","","","","",16712190,35376,35377,35378,35379,35380,0,0,0,0,0,0,0,0,0,0,0,0,46456,23158,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (750,"Savage Plate Battlegear","","","","","","","","","","","","","","","",16712190,35407,35408,35409,35410,35411,0,0,0,0,0,0,0,0,0,0,0,0,22738,46528,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (751,"Crusader\\'s Ornamented Battlegear","","","","","","","","","","","","","","","",16712190,35402,35403,35404,35405,35406,0,0,0,0,0,0,0,0,0,0,0,0,46530,23302,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (752,"Crusader\\'s Scaled Battlegear","","","","","","","","","","","","","","","",16712190,35412,35413,35414,35415,35416,0,0,0,0,0,0,0,0,0,0,0,0,23302,46534,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (754,"Borean Embrace","","","","","","","","","","","","","","","",16712190,38405,38404,38400,38403,38401,38402,38437,38433,0,0,0,0,0,0,0,0,0,51273,51274,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (755,"Nerubian Hive","","","","","","","","","","","","","","","",16712190,38418,38419,38420,38421,38422,38417,38439,38435,0,0,0,0,0,0,0,0,0,51262,51263,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (756,"Frostscale Binding","","","","","","","","","","","","","","","",16712190,38412,38413,38414,38415,38416,38424,38436,38440,0,0,0,0,0,0,0,0,0,51223,51225,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (757,"Iceborne Embrace","","","","","","","","","","","","","","","",16712190,38406,38407,38408,38409,38410,38411,38434,38438,0,0,0,0,0,0,0,0,0,61633,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (759,"Raine\\'s Revenge","","","","","","","","","","","","","","","",16712190,37758,37821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9417,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (760,"Gladiator\\'s Dreadplate","","","","","","","","","","","","","","","",16712190,40440,40441,40442,40443,40444,0,0,0,0,0,0,0,0,0,0,0,0,40044,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (761,"Winter Garb","","","","","","","","","","","","","","","",16712190,34087,21525,34085,21524,34086,0,0,0,0,0,0,0,0,0,0,0,0,55000,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (762,"Brewfest Garb","","","","","","","","","","","","","","","",16712190,33862,33863,33868,33966,33969,33967,33864,33968,0,0,0,0,0,0,0,0,0,55005,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (763,"Frostwoven Power","","","","","","","","","","","","","","","",16712190,41522,41520,44211,41521,41519,41515,41513,41512,0,0,0,0,0,0,0,0,0,55564,55565,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (764,"Duskweaver","","","","","","","","","","","","","","","",16712190,41543,41544,41545,41546,41548,41549,41550,41551,0,0,0,0,0,0,0,0,0,55595,55596,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (765,"Gladiator\\'s Battlegear","","","","","","","","","","","","","","","",16712190,42625,42626,42627,42628,42629,0,0,0,0,0,0,0,0,0,0,0,0,22738,56449,71850,71858,0,0,0,0,4,2,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (766,"Gladiator\\'s Vindication","","","","","","","","","","","","","","","",16712190,42630,42631,42632,42633,42634,0,0,0,0,0,0,0,0,0,0,0,0,56449,61776,71850,71858,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (767,"Gladiator\\'s Redemption","","","","","","","","","","","","","","","",16712190,42635,42636,42637,42638,42639,0,0,0,0,0,0,0,0,0,0,0,0,58000,56450,71851,71853,0,0,0,0,4,2,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (768,"Gladiator\\'s Desecration","","","","","","","","","","","","","","","",16712190,42654,42655,42656,42657,42658,0,0,0,0,0,0,0,0,0,0,0,0,56449,61257,71850,71858,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (769,"Gladiator\\'s Thunderfist","","","","","","","","","","","","","","","",16712190,42659,42660,42661,42662,42663,0,0,0,0,0,0,0,0,0,0,0,0,56509,44299,71852,71860,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (770,"Gladiator\\'s Earthshaker","","","","","","","","","","","","","","","",16712190,42669,42670,42671,42672,42673,0,0,0,0,0,0,0,0,0,0,0,0,56449,33018,71850,71858,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (771,"Gladiator\\'s Wartide","","","","","","","","","","","","","","","",16712190,42664,42665,42666,42667,42668,0,0,0,0,0,0,0,0,0,0,0,0,56450,44299,71853,71851,0,0,0,0,2,4,4,2,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (772,"Gladiator\\'s Pursuit","","","","","","","","","","","","","","","",16712190,42674,42675,42676,42677,42678,0,0,0,0,0,0,0,0,0,0,0,0,61256,56449,71850,71858,0,0,0,0,4,2,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (773,"Gladiator\\'s Refuge","","","","","","","","","","","","","","","",16712190,42680,42681,42682,42683,42684,0,0,0,0,0,0,0,0,0,0,0,0,56450,38417,71851,71853,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (774,"Gladiator\\'s Wildhide","","","","","","","","","","","","","","","",16712190,42685,42686,42687,42688,42689,0,0,0,0,0,0,0,0,0,0,0,0,56509,46832,71852,71860,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (775,"Gladiator\\'s Sanctuary","","","","","","","","","","","","","","","",16712190,42690,42691,42692,42693,42694,0,0,0,0,0,0,0,0,0,0,0,0,56449,23218,71850,71858,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (776,"Gladiator\\'s Vestments","","","","","","","","","","","","","","","",16712190,42695,42696,42697,42698,42699,0,0,0,0,0,0,0,0,0,0,0,0,21975,56449,71850,71858,0,0,0,0,4,2,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (777,"Gladiator\\'s Investiture","","","","","","","","","","","","","","","",16712190,42703,42704,42705,42706,42707,0,0,0,0,0,0,0,0,0,0,0,0,56450,33333,71851,71853,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (778,"Gladiator\\'s Raiment","","","","","","","","","","","","","","","",16712190,42708,42709,42710,42711,42712,0,0,0,0,0,0,0,0,0,0,0,0,33333,56509,71852,71860,0,0,0,0,4,2,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (779,"Gladiator\\'s Regalia","","","","","","","","","","","","","","","",16712190,42713,42714,42715,42716,42717,0,0,0,0,0,0,0,0,0,0,0,0,56509,44302,71852,71860,0,0,0,0,2,4,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (780,"Gladiator\\'s Felshroud","","","","","","","","","","","","","","","",16712190,42718,42719,42720,42721,42722,0,0,0,0,0,0,0,0,0,0,0,0,23047,56509,71852,71860,0,0,0,0,4,2,2,4,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (781,"Blessed Regalia of Undead Cleansing","","","","","","","","","","","","","","","",16712190,43073,43074,43075,43072,0,0,0,0,0,0,0,0,0,0,0,0,0,57943,29068,57944,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (782,"Undead Slayer\\'s Blessed Armor","","","","","","","","","","","","","","","",16712190,43078,43077,43079,43076,0,0,0,0,0,0,0,0,0,0,0,0,0,57943,29068,57944,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (783,"Blessed Garb of the Undead Slayer","","","","","","","","","","","","","","","",16712190,43082,43081,43083,43080,0,0,0,0,0,0,0,0,0,0,0,0,0,57943,29068,57944,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (784,"Blessed Battlegear of Undead Slaying","","","","","","","","","","","","","","","",16712190,43070,43068,43071,43069,0,0,0,0,0,0,0,0,0,0,0,0,0,57943,29068,57944,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (785,"Midsummer Reveler","","","","","","","","","","","","","","","",16712190,23324,34685,34683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58933,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (787,"Dreadnaught Plate","","","","","","","","","","","","","","","",16712190,43740,43742,43743,43745,43747,0,0,0,0,0,0,0,0,0,0,0,0,60173,60175,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (788,"Dreadnaught Battlegear","","","","","","","","","","","","","","","",16712190,43739,43744,43746,43741,43748,0,0,0,0,0,0,0,0,0,0,0,0,60174,60176,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (789,"Redemption Battlegear","","","","","","","","","","","","","","","",16712190,43794,43796,43801,43803,43805,0,0,0,0,0,0,0,0,0,0,0,0,60152,60153,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (790,"Redemption Regalia","","","","","","","","","","","","","","","",16712190,43797,43798,43800,43806,43807,0,0,0,0,0,0,0,0,0,0,0,0,60147,60148,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (791,"Redemption Plate","","","","","","","","","","","","","","","",16712190,43793,43795,43799,43802,43804,0,0,0,0,0,0,0,0,0,0,0,0,60149,60150,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (792,"Scourgeborne Battlegear","","","","","","","","","","","","","","","",16712190,43809,43813,43815,43817,43819,0,0,0,0,0,0,0,0,0,0,0,0,60134,60132,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (793,"Scourgeborne Plate","","","","","","","","","","","","","","","",16712190,43811,43812,43814,43816,43818,0,0,0,0,0,0,0,0,0,0,0,0,60130,60133,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (794,"Cryptstalker Battlegear","","","","","","","","","","","","","","","",16712190,43734,43735,43736,43737,43738,0,0,0,0,0,0,0,0,0,0,0,0,60143,60144,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (795,"Earthshatter Battlegear","","","","","","","","","","","","","","","",16712190,43762,43763,43765,43772,43776,0,0,0,0,0,0,0,0,0,0,0,0,60168,60169,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (796,"Earthshatter Garb","","","","","","","","","","","","","","","",16712190,43764,43767,43769,43770,43773,0,0,0,0,0,0,0,0,0,0,0,0,60164,60165,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (797,"Earthshatter Regalia","","","","","","","","","","","","","","","",16712190,43766,43768,43771,43774,43775,0,0,0,0,0,0,0,0,0,0,0,0,60166,60167,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (798,"Dreamwalker Battlegear","","","","","","","","","","","","","","","",16712190,43751,43753,43756,43822,43758,0,0,0,0,0,0,0,0,0,0,0,0,60141,60142,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (799,"Dreamwalker Regalia","","","","","","","","","","","","","","","",16712190,43752,43754,43755,43759,43820,0,0,0,0,0,0,0,0,0,0,0,0,60135,60137,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (800,"Dreamwalker Garb","","","","","","","","","","","","","","","",16712190,43749,43750,43757,43760,43761,0,0,0,0,0,0,0,0,0,0,0,0,60138,60139,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (801,"Bonescythe Battlegear","","","","","","","","","","","","","","","",16712190,43727,43728,43729,43730,43731,0,0,0,0,0,0,0,0,0,0,0,0,60162,60163,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (802,"Plagueheart Garb","","","","","","","","","","","","","","","",16712190,43787,43788,43789,43790,43791,0,0,0,0,0,0,0,0,0,0,0,0,60170,60172,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (803,"Frostfire Garb","","","","","","","","","","","","","","","",16712190,43777,43778,43779,43780,43781,0,0,0,0,0,0,0,0,0,0,0,0,61062,60146,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (804,"Regalia of Faith","","","","","","","","","","","","","","","",16712190,43733,43782,43784,43808,43810,0,0,0,0,0,0,0,0,0,0,0,0,60154,60155,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (805,"Garb of Faith","","","","","","","","","","","","","","","",16712190,43732,43783,43785,43786,43792,0,0,0,0,0,0,0,0,0,0,0,0,60156,60157,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (812,"Spring Tuxedo","","","","","","","","","","","","","","","",16712190,6835,6833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62181,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (813,"Eviscerator\\'s Battlegear","","","","","","","","","","","","","","","",16712190,43435,43434,43260,43436,43438,43433,43439,43437,0,0,0,0,0,0,0,0,0,63972,63973,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (814,"Ornate Saronite Battlegear","","","","","","","","","","","","","","","",16712190,42723,42724,42725,42726,42727,42728,42730,42729,0,0,0,0,0,0,0,0,0,63973,63972,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (815,"Overcaster Battlegear","","","","","","","","","","","","","","","",16712190,43266,43273,43264,43263,43265,43261,43271,43262,0,0,0,0,0,0,0,0,0,63972,63973,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (816,"Savage Saronite Battlegear","","","","","","","","","","","","","","","",16712190,41354,41349,41353,41347,41351,41350,41352,41348,0,0,0,0,0,0,0,0,0,63973,63972,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (817,"Stormhide Battlegear","","","","","","","","","","","","","","","",16712190,43450,43455,43454,43453,43456,43457,43451,43452,0,0,0,0,0,0,0,0,0,63972,63973,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (818,"Swiftarrow Battlegear","","","","","","","","","","","","","","","",16712190,43442,43443,43444,43446,43445,43447,43448,43449,0,0,0,0,0,0,0,0,0,63973,63972,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (819,"Frostsavage Battlegear","","","","","","","","","","","","","","","",16712190,43969,43970,43974,43971,41516,43975,43972,43973,0,0,0,0,0,0,0,0,0,63972,63973,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (820,"Aegis Battlegear","","","","","","","","","","","","","","","",16712190,46213,46216,46221,46224,46226,0,0,0,0,0,0,0,0,0,0,0,0,64878,64879,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (821,"Aegis Plate","","","","","","","","","","","","","","","",16712190,46214,46215,46219,46222,46225,0,0,0,0,0,0,0,0,0,0,0,0,64881,64882,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (822,"Aegis Regalia","","","","","","","","","","","","","","","",16712190,46217,46218,46220,46227,46228,0,0,0,0,0,0,0,0,0,0,0,0,64890,64895,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (823,"Worldbreaker Battlegear","","","","","","","","","","","","","","","",16712190,46293,46294,46296,46303,46307,0,0,0,0,0,0,0,0,0,0,0,0,64916,64917,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (824,"Worldbreaker Garb","","","","","","","","","","","","","","","",16712190,46295,46298,46300,46301,46304,0,0,0,0,0,0,0,0,0,0,0,0,64928,64925,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (825,"Worldbreaker Regalia","","","","","","","","","","","","","","","",16712190,46297,46299,46302,46305,46306,0,0,0,0,0,0,0,0,0,0,0,0,64921,64922,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (826,"Terrorblade Battlegear","","","","","","","","","","","","","","","",16712190,46288,46289,46290,46291,46292,0,0,0,0,0,0,0,0,0,0,0,0,64914,64915,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (827,"Nightsong Battlegear","","","","","","","","","","","","","","","",16712190,46260,46262,46265,46267,46269,0,0,0,0,0,0,0,0,0,0,0,0,64752,64754,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (828,"Nightsong Garb","","","","","","","","","","","","","","","",16712190,45350,46309,46266,46271,46272,0,0,0,0,0,0,0,0,0,0,0,0,64818,64824,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (829,"Nightsong Regalia","","","","","","","","","","","","","","","",16712190,46261,46263,46264,46268,46270,0,0,0,0,0,0,0,0,0,0,0,0,64756,64760,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (830,"Siegebreaker Battlegear","","","","","","","","","","","","","","","",16712190,46278,46280,46282,46285,46287,0,0,0,0,0,0,0,0,0,0,0,0,64938,64939,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (831,"Siegebreaker Plate","","","","","","","","","","","","","","","",16712190,46279,46281,46283,46284,46286,0,0,0,0,0,0,0,0,0,0,0,0,64933,64936,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (832,"Sanctification Garb","","","","","","","","","","","","","","","",16712190,46230,46248,46255,46256,46257,0,0,0,0,0,0,0,0,0,0,0,0,64906,64908,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (833,"Sanctification Regalia","","","","","","","","","","","","","","","",16712190,46231,46247,46254,46258,46259,0,0,0,0,0,0,0,0,0,0,0,0,64910,64912,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (834,"Darkruned Battlegear","","","","","","","","","","","","","","","",16712190,46232,46235,46237,46239,46241,0,0,0,0,0,0,0,0,0,0,0,0,64735,64736,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (835,"Darkruned Plate","","","","","","","","","","","","","","","",16712190,46233,46234,46236,46238,46240,0,0,0,0,0,0,0,0,0,0,0,0,64744,64745,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (836,"Kirin Tor Garb","","","","","","","","","","","","","","","",16712190,46249,46250,46251,46252,46253,0,0,0,0,0,0,0,0,0,0,0,0,64867,64869,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (837,"Deathbringer Garb","","","","","","","","","","","","","","","",16712190,46242,46243,46244,46245,46246,0,0,0,0,0,0,0,0,0,0,0,0,64931,64932,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (838,"Scourgestalker Battlegear","","","","","","","","","","","","","","","",16712190,46273,46274,46275,46276,46277,0,0,0,0,0,0,0,0,0,0,0,0,64854,64860,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (843,"Khadgar\\'s Regalia","","","","","","","","","","","","","","","",16712190,48725,48726,48727,48728,48729,0,0,0,0,0,0,0,0,0,0,0,0,67164,67185,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (844,"Sunstrider\\'s Regalia","","","","","","","","","","","","","","","",16712190,48730,48731,48732,48733,48734,0,0,0,0,0,0,0,0,0,0,0,0,67164,67185,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (845,"Gul\\'dan\\'s Regalia","","","","","","","","","","","","","","","",16712190,48735,48736,48737,48738,48739,0,0,0,0,0,0,0,0,0,0,0,0,67230,67231,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (846,"Kel\\'Thuzad\\'s Regalia","","","","","","","","","","","","","","","",16712190,48740,48741,48742,48743,48744,0,0,0,0,0,0,0,0,0,0,0,0,67230,67231,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (847,"Velen\\'s Raiment","","","","","","","","","","","","","","","",16712190,48745,48746,48747,48748,48749,0,0,0,0,0,0,0,0,0,0,0,0,67201,67202,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (848,"Zabra\\'s Raiment","","","","","","","","","","","","","","","",16712190,48750,48751,48752,48753,48754,0,0,0,0,0,0,0,0,0,0,0,0,67201,67202,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (849,"Velen\\'s Regalia","","","","","","","","","","","","","","","",16712190,48755,48756,48757,48758,48759,0,0,0,0,0,0,0,0,0,0,0,0,67193,67198,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (850,"Zabra\\'s Regalia","","","","","","","","","","","","","","","",16712190,48760,48761,48762,48763,48764,0,0,0,0,0,0,0,0,0,0,0,0,67193,67198,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (851,"Malfurion\\'s Garb","","","","","","","","","","","","","","","",16712190,48774,48775,48776,48777,48778,0,0,0,0,0,0,0,0,0,0,0,0,67127,67128,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (852,"Runetotem\\'s Garb","","","","","","","","","","","","","","","",16712190,48769,48770,48771,48772,48773,0,0,0,0,0,0,0,0,0,0,0,0,67127,67128,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (853,"Malfurion\\'s Regalia","","","","","","","","","","","","","","","",16712190,48786,48787,48788,48789,48790,0,0,0,0,0,0,0,0,0,0,0,0,67125,67126,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (854,"Runetotem\\'s Regalia","","","","","","","","","","","","","","","",16712190,48781,48782,48783,48784,48785,0,0,0,0,0,0,0,0,0,0,0,0,67125,67126,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (855,"Malfurion\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48799,48800,48801,48802,48803,0,0,0,0,0,0,0,0,0,0,0,0,67121,67123,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (856,"Runetotem\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48794,48795,48796,48797,48798,0,0,0,0,0,0,0,0,0,0,0,0,67121,67123,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (857,"VanCleef\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48809,48810,48811,48812,48813,0,0,0,0,0,0,0,0,0,0,0,0,67209,67211,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (858,"Garona\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48804,48805,48806,48807,48808,0,0,0,0,0,0,0,0,0,0,0,0,67211,67209,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (859,"Windrunner\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48819,48820,48821,48822,48823,0,0,0,0,0,0,0,0,0,0,0,0,67150,67151,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (860,"Windrunner\\'s Pursuit","","","","","","","","","","","","","","","",16712190,48814,48815,48816,48817,48818,0,0,0,0,0,0,0,0,0,0,0,0,67151,67150,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (861,"Nobundo\\'s Garb","","","","","","","","","","","","","","","",16712190,48824,48825,48826,48827,48828,0,0,0,0,0,0,0,0,0,0,0,0,67225,67226,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (862,"Thrall\\'s Garb","","","","","","","","","","","","","","","",16712190,48829,48830,48831,48832,48833,0,0,0,0,0,0,0,0,0,0,0,0,67225,67226,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (863,"Thrall\\'s Regalia","","","","","","","","","","","","","","","",16712190,48841,48842,48843,48844,48845,0,0,0,0,0,0,0,0,0,0,0,0,67227,67228,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (864,"Nobundo\\'s Regalia","","","","","","","","","","","","","","","",16712190,48836,48837,48838,48839,48840,0,0,0,0,0,0,0,0,0,0,0,0,67228,67227,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (865,"Nobundo\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48846,48847,48848,48849,48850,0,0,0,0,0,0,0,0,0,0,0,0,67220,67221,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (866,"Thrall\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48854,48855,48852,48853,48851,0,0,0,0,0,0,0,0,0,0,0,0,67220,67221,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (867,"Wrynn\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48865,48866,48867,48868,48869,0,0,0,0,0,0,0,0,0,0,0,0,67234,67268,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (868,"Hellscream\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48860,48861,48862,48863,48864,0,0,0,0,0,0,0,0,0,0,0,0,67234,67268,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (869,"Wrynn\\'s Plate","","","","","","","","","","","","","","","",16712190,48875,48876,48877,48878,48879,0,0,0,0,0,0,0,0,0,0,0,0,67269,67273,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (870,"Hellscream\\'s Plate","","","","","","","","","","","","","","","",16712190,48870,48871,48872,48873,48874,0,0,0,0,0,0,0,0,0,0,0,0,67269,67273,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (871,"Thassarian\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48885,48886,48887,48888,48889,0,0,0,0,0,0,0,0,0,0,0,0,67118,67115,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (872,"Koltira\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48880,48881,48882,48883,48884,0,0,0,0,0,0,0,0,0,0,0,0,67115,67118,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (873,"Thassarian\\'s Plate","","","","","","","","","","","","","","","",16712190,48895,48896,48897,48898,48899,0,0,0,0,0,0,0,0,0,0,0,0,67120,67119,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (874,"Koltira\\'s Plate","","","","","","","","","","","","","","","",16712190,48890,48891,48892,48893,48894,0,0,0,0,0,0,0,0,0,0,0,0,67119,67120,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (875,"Turalyon\\'s Garb","","","","","","","","","","","","","","","",16712190,48904,48903,48902,48901,48900,0,0,0,0,0,0,0,0,0,0,0,0,67190,67191,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (876,"Liadrin\\'s Garb","","","","","","","","","","","","","","","",16712190,48909,48908,48907,48906,48905,0,0,0,0,0,0,0,0,0,0,0,0,67190,67191,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (877,"Turalyon\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48915,48916,48917,48918,48919,0,0,0,0,0,0,0,0,0,0,0,0,67188,67189,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (878,"Liadrin\\'s Battlegear","","","","","","","","","","","","","","","",16712190,48910,48911,48912,48913,48914,0,0,0,0,0,0,0,0,0,0,0,0,67189,67188,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (879,"Turalyon\\'s Plate","","","","","","","","","","","","","","","",16712190,48927,48928,48929,48930,48931,0,0,0,0,0,0,0,0,0,0,0,0,67186,67187,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (880,"Liadrin\\'s Plate","","","","","","","","","","","","","","","",16712190,48922,48923,48924,48925,48926,0,0,0,0,0,0,0,0,0,0,0,0,67187,67186,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (881,"Purified Shard of the Gods","","","","","","","","","","","","","","","",16712190,49310,49463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69599,69755,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (882,"Shiny Shard of the Gods","","","","","","","","","","","","","","","",16712190,49488,49464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69709,69739,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (883,"Bloodmage\\'s Regalia","","","","","","","","","","","","","","","",16712190,51716,51715,51714,51713,51712,0,0,0,0,0,0,0,0,0,0,0,0,70748,70752,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (884,"Dark Coven\\'s Regalia","","","","","","","","","","","","","","","",16712190,51766,51765,51764,51763,51762,0,0,0,0,0,0,0,0,0,0,0,0,70841,70839,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (885,"Crimson Acolyte\\'s Raiment","","","","","","","","","","","","","","","",16712190,51732,51733,51734,51735,51736,0,0,0,0,0,0,0,0,0,0,0,0,70798,70770,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (886,"Crimson Acolyte\\'s Regalia","","","","","","","","","","","","","","","",16712190,51741,51740,51739,51738,51737,0,0,0,0,0,0,0,0,0,0,0,0,70801,70800,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (887,"Lasherweave Garb","","","","","","","","","","","","","","","",16712190,51696,51695,51694,51693,51692,0,0,0,0,0,0,0,0,0,0,0,0,70664,70658,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (888,"Lasherweave Regalia","","","","","","","","","","","","","","","",16712190,51706,51705,51704,51703,51702,0,0,0,0,0,0,0,0,0,0,0,0,70723,70718,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (889,"Lasherweave Battlegear","","","","","","","","","","","","","","","",16712190,51701,51700,51699,51698,51697,0,0,0,0,0,0,0,0,0,0,0,0,70726,70724,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (890,"Shadowblade\\'s Battlegear","","","","","","","","","","","","","","","",16712190,51746,51745,51744,51743,51742,0,0,0,0,0,0,0,0,0,0,0,0,70803,70805,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (891,"Ahn\\'Kahar Blood Hunter\\'s Battlegear","","","","","","","","","","","","","","","",16712190,51711,51710,51709,51708,51707,0,0,0,0,0,0,0,0,0,0,0,0,70727,70730,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (892,"Frost Witch\\'s Garb","","","","","","","","","","","","","","","",16712190,51747,51748,51749,51750,51751,0,0,0,0,0,0,0,0,0,0,0,0,70808,70807,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (893,"Frost Witch\\'s Regalia","","","","","","","","","","","","","","","",16712190,51757,51758,51759,51760,51761,0,0,0,0,0,0,0,0,0,0,0,0,70817,70811,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (894,"Frost Witch\\'s Battlegear","","","","","","","","","","","","","","","",16712190,51752,51753,51754,51755,51756,0,0,0,0,0,0,0,0,0,0,0,0,70832,70830,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (895,"Ymirjar Lord\\'s Battlegear","","","","","","","","","","","","","","","",16712190,51771,51770,51769,51768,51767,0,0,0,0,0,0,0,0,0,0,0,0,70847,70854,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (896,"Ymirjar Lord\\'s Plate","","","","","","","","","","","","","","","",16712190,51776,51775,51774,51773,51772,0,0,0,0,0,0,0,0,0,0,0,0,70844,70843,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (897,"Scourgelord\\'s Battlegear","","","","","","","","","","","","","","","",16712190,51686,51685,51684,51683,51682,0,0,0,0,0,0,0,0,0,0,0,0,70655,70656,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (898,"Scourgelord\\'s Plate","","","","","","","","","","","","","","","",16712190,51691,51690,51689,51688,51687,0,0,0,0,0,0,0,0,0,0,0,0,70652,70650,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (899,"Lightsworn Garb","","","","","","","","","","","","","","","",16712190,51726,51725,51724,51723,51722,0,0,0,0,0,0,0,0,0,0,0,0,70756,70755,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (900,"Lightsworn Battlegear","","","","","","","","","","","","","","","",16712190,51721,51720,51719,51718,51717,0,0,0,0,0,0,0,0,0,0,0,0,70762,70765,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);
INSERT INTO `ItemSet` VALUES (901,"Lightsworn Plate","","","","","","","","","","","","","","","",16712190,51731,51730,51729,51728,51727,0,0,0,0,0,0,0,0,0,0,0,0,70761,70758,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0);