diff --git a/Makefile.am b/Makefile.am
index 0d815cf1e..3bf0ad9de 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/NEWS b/NEWS
index e4a7d1174..f897d58db 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
= MaNGOS -- History of visible changes =
-Copyright (c) 2005-2008 MaNGOS project
+Copyright (c) 2005-2009 MaNGOS project
See the COPYING file for copying conditions.
diff --git a/README b/README
index 8a1bb4e73..dc49c8224 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
= MaNGOS -- README =
-Copyright (C) 2005-2008 MaNGOS project
+Copyright (C) 2005-2009 MaNGOS project
MaNGOS is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/configure.ac b/configure.ac
index ec2c84de2..b193e6fe0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS project
+# Copyright (C) 2005-2009 MaNGOS project
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
diff --git a/contrib/Makefile.am b/contrib/Makefile.am
index 653e691a1..d39f2caa8 100644
--- a/contrib/Makefile.am
+++ b/contrib/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/contrib/git_id/git_id.cpp b/contrib/git_id/git_id.cpp
index 7bef1f077..05373165e 100644
--- a/contrib/git_id/git_id.cpp
+++ b/contrib/git_id/git_id.cpp
@@ -1,9 +1,30 @@
+/*
+ * Copyright (C) 2005-2009 MaNGOS
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
#include
#include
#include
#include
#include
#include
+#include
+#include
+#include
#include "../../src/framework/Platform/CompilerDefs.h"
#if PLATFORM == PLATFORM_WINDOWS
@@ -11,40 +32,90 @@
#define popen _popen
#define pclose _pclose
#define snprintf _snprintf
+#define putenv _putenv
#pragma warning (disable:4996)
#else
#include
#endif
+// max string sizes
+
+#define MAX_REMOTE 256
+#define MAX_MSG 16384
+#define MAX_PATH 2048
+#define MAX_BUF 2048
+#define MAX_CMD 2048
+#define MAX_HASH 256
+#define MAX_DB 256
+
// config
#define NUM_REMOTES 2
+#define NUM_DATABASES 3
-char remotes[NUM_REMOTES][256] = {
+char remotes[NUM_REMOTES][MAX_REMOTE] = {
"git@github.com:mangos/mangos.git",
"git://github.com/mangos/mangos.git" // used for fetch if present
};
+char remote_branch[MAX_REMOTE] = "master";
+char rev_file[MAX_PATH] = "src/shared/revision_nr.h";
+char sql_update_dir[MAX_PATH] = "sql/updates";
+char new_index_file[MAX_PATH] = ".git/git_id_index";
+
+char databases[NUM_DATABASES][MAX_DB] = {
+ "characters",
+ "mangos",
+ "realmd"
+};
+
+char db_version_table[NUM_DATABASES][MAX_DB] = {
+ "character_db_version",
+ "db_version",
+ "realmd_db_version",
+};
+
+char db_sql_file[NUM_DATABASES][MAX_PATH] = {
+ "sql/characters.sql",
+ "sql/mangos.sql",
+ "sql/realmd.sql"
+};
+
bool allow_replace = false;
bool local = false;
bool do_fetch = false;
+bool do_sql = false;
+bool use_new_index = true;
// aux
-char origins[NUM_REMOTES][256];
+char origins[NUM_REMOTES][MAX_REMOTE];
int rev;
-char head_message[16384];
-char write_file[2048];
+int last_sql_rev[NUM_DATABASES] = {0,0,0};
+int last_sql_nr[NUM_DATABASES] = {0,0,0};
+
+char head_message[MAX_MSG];
+char path_prefix[MAX_PATH] = "";
+char base_path[MAX_PATH];
+char buffer[MAX_BUF];
+char cmd[MAX_CMD];
+char origin_hash[MAX_HASH];
+char last_sql_update[NUM_DATABASES][MAX_PATH];
+char old_index_cmd[MAX_CMD];
+char new_index_cmd[MAX_CMD];
+
+std::set new_sql_updates;
-char buffer[256];
FILE *cmd_pipe;
bool find_path()
{
printf("+ finding path\n");
- char cur_path[2048], *ptr;
- getcwd(cur_path, 2048);
- int len = strnlen(cur_path, 2048);
+ char *ptr;
+ char cur_path[MAX_PATH];
+ getcwd(cur_path, MAX_PATH);
+ int len = strlen(cur_path);
+ strncpy(base_path, cur_path, len+1);
if(cur_path[len-1] == '/' || cur_path[len-1] == '\\')
{
@@ -58,17 +129,24 @@ bool find_path()
for(ptr = cur_path-1; ptr = strchr(ptr+1, '\\'); count_back++);
int count = std::max(count_fwd, count_back);
- char prefix[2048] = "", path[2048];
+ char path[MAX_PATH];
for(int i = 0; i < count; i++)
{
- snprintf(path, 2048, "%s.git", prefix);
+ snprintf(path, MAX_PATH, "%s.git", path_prefix);
if(0 == chdir(path))
{
chdir(cur_path);
- snprintf(write_file, 2048, "%ssrc/shared/revision_nr.h", prefix);
return true;
}
- strncat(prefix, "../", 2048);
+ strncat(path_prefix, "../", MAX_PATH);
+
+ ptr = strrchr(base_path, '\\');
+ if(ptr) *ptr = '\0';
+ else
+ {
+ ptr = strrchr(base_path, '/');
+ if(ptr) *ptr = '\0';
+ }
}
return false;
@@ -81,15 +159,15 @@ bool find_origin()
return false;
bool ret = false;
- while(fgets(buffer, 256, cmd_pipe))
+ while(fgets(buffer, MAX_BUF, cmd_pipe))
{
- char name[256], remote[256];
+ char name[256], remote[MAX_REMOTE];
sscanf(buffer, "%s %s", name, remote);
for(int i = 0; i < NUM_REMOTES; i++)
{
if(strcmp(remote, remotes[i]) == 0)
{
- strncpy(origins[i], name, 256);
+ strncpy(origins[i], name, MAX_REMOTE);
ret = true;
}
}
@@ -101,9 +179,8 @@ bool find_origin()
bool fetch_origin()
{
printf("+ fetching origin\n");
- char cmd[256];
// use the public clone url if present because the private may require a password
- sprintf(cmd, "git fetch %s master", origins[1][0] ? origins[1] : origins[0]);
+ snprintf(cmd, MAX_CMD, "git fetch %s %s", (origins[1][0] ? origins[1] : origins[0]), remote_branch);
int ret = system(cmd);
return true;
}
@@ -111,24 +188,22 @@ bool fetch_origin()
bool check_fwd()
{
printf("+ checking fast forward\n");
- char cmd[256];
- sprintf(cmd, "git log -n 1 --pretty=\"format:%%H\" %s/master", origins[1][0] ? origins[1] : origins[0]);
+ snprintf(cmd, MAX_CMD, "git log -n 1 --pretty=\"format:%%H\" %s/%s", (origins[1][0] ? origins[1] : origins[0]), remote_branch);
if( (cmd_pipe = popen( cmd, "r" )) == NULL )
return false;
- char hash[256];
- if(!fgets(buffer, 256, cmd_pipe)) return false;
- strncpy(hash, buffer, 256);
+ if(!fgets(buffer, MAX_BUF, cmd_pipe)) return false;
+ strncpy(origin_hash, buffer, MAX_HASH);
pclose(cmd_pipe);
if( (cmd_pipe = popen( "git log --pretty=\"format:%H\"", "r" )) == NULL )
return false;
bool found = false;
- while(fgets(buffer, 256, cmd_pipe))
+ while(fgets(buffer, MAX_BUF, cmd_pipe))
{
- buffer[strnlen(buffer, 256) - 1] = '\0';
- if(strncmp(hash, buffer, 256) == 0)
+ buffer[strlen(buffer) - 1] = '\0';
+ if(strncmp(origin_hash, buffer, MAX_BUF) == 0)
{
found = true;
break;
@@ -136,7 +211,13 @@ bool check_fwd()
}
pclose(cmd_pipe);
- if(!found) printf("WARNING: non-fastforward, use rebase!\n");
+ if(!found)
+ {
+ // with fetch you still get the latest rev, you just rebase afterwards and push
+ // without it you may not get the right rev
+ if(do_fetch) printf("WARNING: non-fastforward, use rebase!\n");
+ else { printf("ERROR: non-fastforward, use rebase!\n"); return false; }
+ }
return true;
}
@@ -157,14 +238,13 @@ bool find_rev()
{
if(!local && !origins[i][0]) continue;
- char cmd[512];
- if(local) sprintf(cmd, "git log HEAD --pretty=\"format:%%s\"");
- else sprintf(cmd, "git log %s/master --pretty=\"format:%%s\"", origins[i]);
+ if(local) snprintf(cmd, MAX_CMD, "git log HEAD --pretty=\"format:%%s\"");
+ else sprintf(cmd, "git log %s/%s --pretty=\"format:%%s\"", origins[i], remote_branch);
if( (cmd_pipe = popen( cmd, "r" )) == NULL )
continue;
int nr;
- while(fgets(buffer, 256, cmd_pipe))
+ while(fgets(buffer, MAX_BUF, cmd_pipe))
{
nr = get_rev(buffer);
if(nr >= rev)
@@ -188,6 +268,19 @@ std::string generateHeader(char const* rev_str)
return newData.str();
}
+void system_switch_index(const char *cmd)
+{
+ // do the command for the original index and then for the new index
+ // both need to be updated with the changes before commit
+ // but the new index will contains only the desired changes
+ // while the old may contain others
+ system(cmd);
+ if(!use_new_index) return;
+ if(putenv(new_index_cmd) != 0) return;
+ system(cmd);
+ if(putenv(old_index_cmd) != 0) return;
+}
+
bool write_rev()
{
printf("+ writing revision_nr.h\n");
@@ -195,10 +288,18 @@ bool write_rev()
sprintf(rev_str, "%d", rev);
std::string header = generateHeader(rev_str);
- if(FILE* OutputFile = fopen(write_file,"wb"))
+ char prefixed_file[MAX_PATH];
+ snprintf(prefixed_file, MAX_PATH, "%s%s", path_prefix, rev_file);
+
+ if(FILE* OutputFile = fopen(prefixed_file, "wb"))
{
fprintf(OutputFile,"%s", header.c_str());
fclose(OutputFile);
+
+ // add the file to both indices, to be committed later
+ snprintf(cmd, MAX_CMD, "git add %s", prefixed_file);
+ system_switch_index(cmd);
+
return true;
}
@@ -240,14 +341,460 @@ bool find_head_msg()
bool amend_commit()
{
printf("+ amending last commit\n");
- char cmd[512];
- sprintf(cmd, "git commit --amend -F- %s", write_file);
+
+ // commit the contents of the (new) index
+ if(use_new_index && putenv(new_index_cmd) != 0) return false;
+ snprintf(cmd, MAX_CMD, "git commit --amend -F-");
if( (cmd_pipe = popen( cmd, "w" )) == NULL )
return false;
fprintf(cmd_pipe, "[%d] %s", rev, head_message);
pclose(cmd_pipe);
-
+ if(use_new_index && putenv(old_index_cmd) != 0) return false;
+
+ return true;
+}
+
+struct sql_update_info
+{
+ int rev;
+ int nr;
+ int db_idx;
+ char db[MAX_BUF];
+ char table[MAX_BUF];
+ bool has_table;
+};
+
+bool get_sql_update_info(const char *buffer, sql_update_info &info)
+{
+ info.table[0] = '\0';
+ int dummy[3];
+ if(sscanf(buffer, "%d_%d_%d", &dummy[0], &dummy[1], &dummy[2]) == 3)
+ return false;
+
+ if(sscanf(buffer, "%d_%d_%[^_]_%[^.].sql", &info.rev, &info.nr, info.db, info.table) != 4 &&
+ sscanf(buffer, "%d_%d_%[^.].sql", &info.rev, &info.nr, info.db) != 3)
+ {
+ info.rev = 0; // this may be set by the first scans, even if they fail
+ if(sscanf(buffer, "%d_%[^_]_%[^.].sql", &info.nr, info.db, info.table) != 3 &&
+ sscanf(buffer, "%d_%[^.].sql", &info.nr, info.db) != 2)
+ return false;
+ }
+
+ for(info.db_idx = 0; info.db_idx < NUM_DATABASES; info.db_idx++)
+ if(strncmp(info.db, databases[info.db_idx], MAX_DB) == 0) break;
+ info.has_table = (info.table[0] != '\0');
+ return true;
+}
+
+bool find_sql_updates()
+{
+ printf("+ finding new sql updates on HEAD\n");
+ // add all updates from HEAD
+ snprintf(cmd, MAX_CMD, "git show HEAD:%s", sql_update_dir);
+ if( (cmd_pipe = popen( cmd, "r" )) == NULL )
+ return false;
+
+ // skip first two lines
+ if(!fgets(buffer, MAX_BUF, cmd_pipe)) { pclose(cmd_pipe); return false; }
+ if(!fgets(buffer, MAX_BUF, cmd_pipe)) { pclose(cmd_pipe); return false; }
+
+ sql_update_info info;
+
+ while(fgets(buffer, MAX_BUF, cmd_pipe))
+ {
+ buffer[strlen(buffer) - 1] = '\0';
+ if(!get_sql_update_info(buffer, info)) continue;
+
+ if(info.db_idx == NUM_DATABASES)
+ {
+ if(info.rev > 0) printf("WARNING: incorrect database name for sql update %s\n", buffer);
+ continue;
+ }
+
+ new_sql_updates.insert(buffer);
+ }
+
+ pclose(cmd_pipe);
+
+ // remove updates from the last commit also found on origin
+ snprintf(cmd, MAX_CMD, "git show %s:%s", origin_hash, sql_update_dir);
+ if( (cmd_pipe = popen( cmd, "r" )) == NULL )
+ return false;
+
+ // skip first two lines
+ if(!fgets(buffer, MAX_BUF, cmd_pipe)) { pclose(cmd_pipe); return false; }
+ if(!fgets(buffer, MAX_BUF, cmd_pipe)) { pclose(cmd_pipe); return false; }
+
+ while(fgets(buffer, MAX_BUF, cmd_pipe))
+ {
+ buffer[strlen(buffer) - 1] = '\0';
+ if(!get_sql_update_info(buffer, info)) continue;
+
+ // find the old update with the highest rev for each database
+ // (will be the required version for the new update)
+ std::set::iterator itr = new_sql_updates.find(buffer);
+ if(itr != new_sql_updates.end() )
+ {
+ if(info.rev > 0 && (info.rev > last_sql_rev[info.db_idx] ||
+ (info.rev == last_sql_rev[info.db_idx] && info.nr > last_sql_nr[info.db_idx])))
+ {
+ last_sql_rev[info.db_idx] = info.rev;
+ last_sql_nr[info.db_idx] = info.nr;
+ sscanf(buffer, "%[^.]", last_sql_update[info.db_idx]);
+ }
+ new_sql_updates.erase(itr);
+ }
+ }
+
+ pclose(cmd_pipe);
+
+ if(!new_sql_updates.empty())
+ {
+ for(std::set::iterator itr = new_sql_updates.begin(); itr != new_sql_updates.end(); ++itr)
+ printf("%s\n", itr->c_str());
+ }
+ else
+ printf("WARNING: no new sql updates found.\n");
+
+ return true;
+}
+
+bool copy_file(const char *src_file, const char *dst_file)
+{
+ FILE * fin = fopen( src_file, "rb" );
+ if(!fin) return false;
+ FILE * fout = fopen( dst_file, "wb" );
+ if(!fout) { fclose(fin); return false; }
+
+ for(char c = getc(fin); !feof(fin); putc(c, fout), c = getc(fin));
+
+ fclose(fin);
+ fclose(fout);
+ return true;
+}
+
+bool convert_sql_updates()
+{
+ if(new_sql_updates.empty()) return true;
+
+ printf("+ converting sql updates\n");
+
+ // rename the sql update files and add the required update statement
+ for(std::set::iterator itr = new_sql_updates.begin(); itr != new_sql_updates.end(); ++itr)
+ {
+ sql_update_info info;
+ if(!get_sql_update_info(itr->c_str(), info)) return false;
+ if(info.db_idx == NUM_DATABASES) return false;
+
+ // generating the new name should work for updates with or without a rev
+ char src_file[MAX_PATH], new_name[MAX_PATH], dst_file[MAX_PATH];
+ snprintf(src_file, MAX_PATH, "%s%s/%s", path_prefix, sql_update_dir, itr->c_str());
+ snprintf(new_name, MAX_PATH, "%d_%0*d_%s%s%s", rev, 2, info.nr, info.db, info.has_table ? "_" : "", info.table);
+ snprintf(dst_file, MAX_PATH, "%s%s/%s.sql", path_prefix, sql_update_dir, new_name);
+
+ FILE * fin = fopen( src_file, "r" );
+ if(!fin) return false;
+ FILE * fout = fopen( dst_file, "w" );
+ if(!fout) { fclose(fin); return false; }
+
+ // add the update requirements
+ fprintf(fout, "ALTER TABLE %s CHANGE COLUMN required_%s required_%s bit;\n\n",
+ db_version_table[info.db_idx], last_sql_update[info.db_idx], new_name);
+
+ // skip the first one or two lines from the input
+ // if it already contains update requirements
+ if(fgets(buffer, MAX_BUF, fin))
+ {
+ char dummy[MAX_BUF];
+ if(sscanf(buffer, "ALTER TABLE %s CHANGE COLUMN required_%s required_%s bit", dummy, dummy, dummy) == 3)
+ {
+ if(fgets(buffer, MAX_BUF, fin) && buffer[0] != '\n')
+ fputs(buffer, fout);
+ }
+ else
+ fputs(buffer, fout);
+ }
+
+ // copy the rest of the file
+ char c;
+ while( (c = getc(fin)) != EOF )
+ putc(c, fout);
+
+ fclose(fin);
+ fclose(fout);
+
+ // rename the file in git
+ snprintf(cmd, MAX_CMD, "git add %s", dst_file);
+ system_switch_index(cmd);
+ snprintf(cmd, MAX_CMD, "git rm --quiet %s", src_file);
+ system_switch_index(cmd);
+
+ // update the last sql update for the current database
+ strncpy(last_sql_update[info.db_idx], new_name, MAX_PATH);
+ }
+
+ return true;
+}
+
+bool generate_sql_makefile()
+{
+ if(new_sql_updates.empty()) return true;
+
+ // find all files in the update dir
+ snprintf(cmd, MAX_CMD, "git show HEAD:%s", sql_update_dir);
+ if( (cmd_pipe = popen( cmd, "r" )) == NULL )
+ return false;
+
+ // skip first two lines
+ if(!fgets(buffer, MAX_BUF, cmd_pipe)) { pclose(cmd_pipe); return false; }
+ if(!fgets(buffer, MAX_BUF, cmd_pipe)) { pclose(cmd_pipe); return false; }
+
+ char newname[MAX_PATH];
+ std::set file_list;
+ sql_update_info info;
+
+ while(fgets(buffer, MAX_BUF, cmd_pipe))
+ {
+ buffer[strlen(buffer) - 1] = '\0';
+ if(buffer[strlen(buffer) - 1] != '/' &&
+ strncmp(buffer, "Makefile.am", MAX_BUF) != 0)
+ {
+ if(new_sql_updates.find(buffer) != new_sql_updates.end())
+ {
+ if(!get_sql_update_info(buffer, info)) return false;
+ snprintf(newname, MAX_PATH, "%d_%0*d_%s%s%s.sql", rev, 2, info.nr, info.db, info.has_table ? "_" : "", info.table);
+ file_list.insert(newname);
+ }
+ else
+ file_list.insert(buffer);
+ }
+ }
+
+ pclose(cmd_pipe);
+
+ // write the makefile
+ char file_name[MAX_PATH];
+ snprintf(file_name, MAX_PATH, "%s%s/Makefile.am", path_prefix, sql_update_dir);
+ FILE *fout = fopen(file_name, "w");
+ if(!fout) { pclose(cmd_pipe); return false; }
+
+ fprintf(fout,
+ "# Copyright (C) 2005-2009 MaNGOS \n"
+ "#\n"
+ "# This program is free software; you can redistribute it and/or modify\n"
+ "# it under the terms of the GNU General Public License as published by\n"
+ "# the Free Software Foundation; either version 2 of the License, or\n"
+ "# (at your option) any later version.\n"
+ "#\n"
+ "# This program is distributed in the hope that it will be useful,\n"
+ "# but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+ "# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+ "# GNU General Public License for more details.\n"
+ "#\n"
+ "# You should have received a copy of the GNU General Public License\n"
+ "# along with this program; if not, write to the Free Software\n"
+ "# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
+ "\n"
+ "## Process this file with automake to produce Makefile.in\n"
+ "\n"
+ "## Sub-directories to parse\n"
+ "\n"
+ "## Change installation location\n"
+ "# datadir = mangos/%s\n"
+ "pkgdatadir = $(datadir)/mangos/%s\n"
+ "\n"
+ "## Files to be installed\n"
+ "# Install basic SQL files to datadir\n"
+ "pkgdata_DATA = \\\n",
+ sql_update_dir, sql_update_dir
+ );
+
+ for(std::set::iterator itr = file_list.begin(), next; itr != file_list.end(); ++itr)
+ {
+ next = itr; ++next;
+ fprintf(fout, "\t%s%s\n", itr->c_str(), next == file_list.end() ? "" : " \\");
+ }
+
+ fprintf(fout,
+ "\n## Additional files to include when running 'make dist'\n"
+ "# SQL update files, to upgrade database schema from older revisions\n"
+ "EXTRA_DIST = \\\n"
+ );
+
+ for(std::set::iterator itr = file_list.begin(), next; itr != file_list.end(); ++itr)
+ {
+ next = itr; ++next;
+ fprintf(fout, "\t%s%s\n", itr->c_str(), next == file_list.end() ? "" : " \\");
+ }
+
+ fclose(fout);
+
+ snprintf(cmd, MAX_CMD, "git add %s%s/Makefile.am", path_prefix, sql_update_dir);
+ system_switch_index(cmd);
+
+ return true;
+}
+
+bool change_sql_database()
+{
+ if(new_sql_updates.empty()) return true;
+ printf("+ changing database sql files\n");
+
+ // rename the database files, copy their contents back
+ // and change the required update line
+ for(int i = 0; i < NUM_DATABASES; i++)
+ {
+ if(last_sql_update[i][0] == '\0') continue;
+
+ char old_file[MAX_PATH], tmp_file[MAX_PATH], dummy[MAX_BUF];
+
+ snprintf(old_file, MAX_PATH, "%s%s", path_prefix, db_sql_file[i]);
+ snprintf(tmp_file, MAX_PATH, "%s%stmp", path_prefix, db_sql_file[i]);
+
+ rename(old_file, tmp_file);
+
+ FILE *fin = fopen( tmp_file, "r" );
+ if(!fin) return false;
+ FILE *fout = fopen( old_file, "w" );
+ if(!fout) return false;
+
+ snprintf(dummy, MAX_CMD, "CREATE TABLE `%s` (\n", db_version_table[i]);
+ while(fgets(buffer, MAX_BUF, fin))
+ {
+ fputs(buffer, fout);
+ if(strncmp(buffer, dummy, MAX_BUF) == 0)
+ break;
+ }
+
+ while(1)
+ {
+ if(!fgets(buffer, MAX_BUF, fin)) return false;
+ if(sscanf(buffer, " `required_%s`", dummy) == 1) break;
+ fputs(buffer, fout);
+ }
+
+ fprintf(fout, " `required_%s` bit(1) default NULL\n", last_sql_update[i]);
+ while(fgets(buffer, MAX_BUF, fin))
+ fputs(buffer, fout);
+
+ fclose(fin);
+ fclose(fout);
+ remove(tmp_file);
+
+ snprintf(cmd, MAX_CMD, "git add %s", old_file);
+ system_switch_index(cmd);
+ }
+ return true;
+}
+
+bool change_sql_history()
+{
+ snprintf(cmd, MAX_CMD, "git log HEAD --pretty=\"format:%%H\"");
+ if( (cmd_pipe = popen( cmd, "r" )) == NULL )
+ return false;
+
+ std::list hashes;
+ while(fgets(buffer, MAX_BUF, cmd_pipe))
+ {
+ buffer[strlen(buffer) - 1] = '\0';
+ if(strncmp(origin_hash, buffer, MAX_HASH) == 0)
+ break;
+
+ hashes.push_back(buffer);
+ }
+ pclose(cmd_pipe);
+ if(hashes.empty()) return false; // must have at least one commit
+ if(hashes.size() < 2) return true; // only one commit, ok but nothing to do
+
+ snprintf(cmd, MAX_CMD, "git reset --hard %s", origin_hash);
+ system(cmd);
+
+ for(std::list::reverse_iterator next = hashes.rbegin(), itr = next++; next != hashes.rend(); ++itr, ++next)
+ {
+ // stage the changes from the orignal commit
+ snprintf(cmd, MAX_CMD, "git cherry-pick -n %s", itr->c_str());
+ system(cmd);
+
+ // remove changed and deleted files
+ snprintf(cmd, MAX_CMD, "git checkout HEAD %s%s", path_prefix, sql_update_dir);
+ system(cmd);
+
+ // remove the newly added files
+ snprintf(cmd, MAX_CMD, "git diff --cached --diff-filter=A --name-only %s%s", path_prefix, sql_update_dir);
+ if( (cmd_pipe = popen( cmd, "r" )) == NULL )
+ return false;
+
+ while(fgets(buffer, MAX_BUF, cmd_pipe))
+ {
+ buffer[strlen(buffer) - 1] = '\0';
+ snprintf(cmd, MAX_CMD, "git rm -f --quiet %s%s", path_prefix, buffer);
+ system(cmd);
+ }
+
+ pclose(cmd_pipe);
+
+ // make a commit with the same author and message as the original one
+
+ snprintf(cmd, MAX_CMD, "git commit -C %s", itr->c_str());
+ system(cmd);
+ }
+
+ snprintf(cmd, MAX_CMD, "git cherry-pick %s", hashes.begin()->c_str());
+ system(cmd);
+
+ return true;
+}
+
+bool prepare_new_index()
+{
+ if(!use_new_index) return true;
+
+ // only use a new index if there are staged changes that should be preserved
+ if( (cmd_pipe = popen( "git diff --cached", "r" )) == NULL )
+ return false;
+
+ if(!fgets(buffer, MAX_BUF, cmd_pipe))
+ {
+ use_new_index = false;
+ pclose(cmd_pipe);
+ return true;
+ }
+
+ pclose(cmd_pipe);
+
+ printf("+ preparing new index\n");
+
+ // copy the existing index file to a new one
+ char src_file[MAX_PATH], dst_file[MAX_PATH];
+
+ char *old_index = getenv("GIT_INDEX_FILE");
+ if(old_index) strncpy(src_file, old_index, MAX_PATH);
+ else snprintf(src_file, MAX_PATH, "%s.git/index", path_prefix);
+ snprintf(dst_file, MAX_PATH, "%s%s", path_prefix, new_index_file);
+
+ if(!copy_file(src_file, dst_file)) return false;
+
+ // doesn't seem to work with path_prefix
+ snprintf(new_index_cmd, MAX_CMD, "GIT_INDEX_FILE=%s/%s", base_path, new_index_file);
+ if(putenv(new_index_cmd) != 0) return false;
+
+ // clear the new index
+ system("git reset -q --mixed HEAD");
+
+ // revert to old index
+ snprintf(old_index_cmd, MAX_CMD, "GIT_INDEX_FILE=");
+ if(putenv(old_index_cmd) != 0) return false;
+ return true;
+}
+
+bool cleanup_new_index()
+{
+ if(!use_new_index) return true;
+ printf("+ cleaning up the new index\n");
+ char idx_file[MAX_PATH];
+ snprintf(idx_file, MAX_PATH, "%s%s", path_prefix, new_index_file);
+ remove(idx_file);
return true;
}
@@ -258,40 +805,57 @@ int main(int argc, char *argv[])
for(int i = 1; i < argc; i++)
{
if(argv[i] == NULL) continue;
- if(strncmp(argv[i], "-r", 2) == 0 || strncmp(argv[i], "--replace", 2) == 0)
+ if(strncmp(argv[i], "-r", 2) == 0 || strncmp(argv[i], "--replace", 9) == 0)
allow_replace = true;
- if(strncmp(argv[i], "-l", 2) == 0 || strncmp(argv[i], "--local", 2) == 0)
+ else if(strncmp(argv[i], "-l", 2) == 0 || strncmp(argv[i], "--local", 7) == 0)
local = true;
- if(strncmp(argv[i], "-f", 2) == 0 || strncmp(argv[i], "--fetch", 2) == 0)
+ else if(strncmp(argv[i], "-f", 2) == 0 || strncmp(argv[i], "--fetch", 7) == 0)
do_fetch = true;
- if(strncmp(argv[i], "-h", 2) == 0 || strncmp(argv[i], "--help", 2) == 0)
+ else if(strncmp(argv[i], "-s", 2) == 0 || strncmp(argv[i], "--sql", 5) == 0)
+ do_sql = true;
+ else if(strncmp(argv[i], "--branch=", 9) == 0)
+ snprintf(remote_branch, MAX_REMOTE, "%s", argv[i] + 9);
+ else if(strncmp(argv[i], "-h", 2) == 0 || strncmp(argv[i], "--help", 6) == 0)
{
printf("Usage: git_id [OPTION]\n");
printf("Generates a new rev number and updates revision_nr.h and the commit message.\n");
printf("Should be used just before push.\n");
- printf(" -h, --help show the usage\n");
- printf(" -r, --replace replace the rev number if it was already applied to the last\n");
- printf(" commit\n");
- printf(" -l, --local search for the highest rev number on HEAD\n");
- printf(" -f, --fetch fetch from origin before searching for the new rev\n");
+ printf(" -h, --help show the usage\n");
+ printf(" -r, --replace replace the rev number if it was already applied\n");
+ printf(" to the last commit\n");
+ printf(" -l, --local search for the highest rev number on HEAD\n");
+ printf(" -f, --fetch fetch from origin before searching for the new rev\n");
+ printf(" -s, --sql search for new sql updates and do all of the changes\n");
+ printf(" for the new rev\n");
+ printf(" --branch=BRANCH specify which remote branch to use\n");
return 0;
}
}
- DO( find_path() );
+ DO( find_path() );
if(!local)
{
- DO( find_origin() );
+ DO( find_origin() );
if(do_fetch)
- {
- DO( fetch_origin() );
- DO( check_fwd() );
- }
+ DO( fetch_origin() );
+ DO( check_fwd() );
}
- DO( find_rev() );
- DO( find_head_msg() );
- DO( write_rev() );
- DO( amend_commit() );
+ DO( find_rev() );
+ DO( find_head_msg() );
+ if(do_sql)
+ DO( find_sql_updates() );
+ DO( prepare_new_index() );
+ DO( write_rev() );
+ if(do_sql)
+ {
+ DO( convert_sql_updates() );
+ DO( generate_sql_makefile() );
+ DO( change_sql_database() );
+ }
+ DO( amend_commit() );
+ DO( cleanup_new_index() );
+ //if(do_sql)
+ // DO( change_sql_history() );
return 0;
}
diff --git a/doc/Makefile.am b/doc/Makefile.am
index c42b41298..ef6954dcd 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/sql/Makefile.am b/sql/Makefile.am
index b3d95a853..6577db6ef 100644
--- a/sql/Makefile.am
+++ b/sql/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/sql/characters.sql b/sql/characters.sql
index 0dffc512e..701a2cee8 100644
--- a/sql/characters.sql
+++ b/sql/characters.sql
@@ -21,7 +21,7 @@
DROP TABLE IF EXISTS `character_db_version`;
CREATE TABLE `character_db_version` (
- `required_2008_12_22_19_characters_item_instance` bit(1) default NULL
+ `required_7075_01_characters_character_spell` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
--
@@ -626,7 +626,6 @@ DROP TABLE IF EXISTS `character_spell`;
CREATE TABLE `character_spell` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`spell` int(11) unsigned NOT NULL default '0' COMMENT 'Spell Identifier',
- `slot` int(11) unsigned NOT NULL default '0',
`active` tinyint(3) unsigned NOT NULL default '1',
`disabled` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spell`)
@@ -1216,7 +1215,6 @@ DROP TABLE IF EXISTS `pet_spell`;
CREATE TABLE `pet_spell` (
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
`spell` int(11) unsigned NOT NULL default '0' COMMENT 'Spell Identifier',
- `slot` int(11) unsigned NOT NULL default '0',
`active` int(11) unsigned NOT NULL default '0',
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Pet System';
diff --git a/sql/mangos.sql b/sql/mangos.sql
index b529fb552..1854d1492 100644
--- a/sql/mangos.sql
+++ b/sql/mangos.sql
@@ -22,7 +22,7 @@
DROP TABLE IF EXISTS `db_version`;
CREATE TABLE `db_version` (
`version` varchar(120) default NULL,
- `required_6961_01_mangos_command` bit(1) default NULL
+ `required_7075_02_mangos_spell_learn_spell` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
--
@@ -36,6 +36,31 @@ INSERT INTO `db_version` VALUES
/*!40000 ALTER TABLE `db_version` ENABLE KEYS */;
UNLOCK TABLES;
+--
+-- Table structure for table `achievement_reward`
+--
+
+DROP TABLE IF EXISTS `achievement_reward`;
+CREATE TABLE `achievement_reward` (
+ `entry` mediumint(8) unsigned NOT NULL default '0',
+ `title_A` mediumint(8) unsigned NOT NULL default '0',
+ `title_H` mediumint(8) unsigned NOT NULL default '0',
+ `item` mediumint(8) unsigned NOT NULL default '0',
+ `sender` mediumint(8) unsigned NOT NULL default '0',
+ `subject` varchar(255) default NULL,
+ `text` text,
+ PRIMARY KEY (`entry`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
+
+--
+-- Dumping data for table `achievement_reward`
+--
+
+LOCK TABLES `achievement_reward` WRITE;
+/*!40000 ALTER TABLE `achievement_reward` DISABLE KEYS */;
+/*!40000 ALTER TABLE `achievement_reward` ENABLE KEYS */;
+UNLOCK TABLES;
+
--
-- Table structure for table `areatrigger_involvedrelation`
--
@@ -160,7 +185,10 @@ INSERT INTO `battleground_template` VALUES
(5,0,2,10,70,939,0,940,3.14159),
(6,0,2,10,70,0,0,0,0),
(7,0,0,0,0,1103,3.40156,1104,0.263892),
-(8,0,2,10,70,1258,0,1259,3.14159);
+(8,0,2,10,70,1258,0,1259,3.14159),
+(9,0,0,0,0,1367,0,1368,0),
+(10,5,5,10,80,1362,0,1363,0),
+(11,5,5,10,80,1364,0,1365,0);
/*!40000 ALTER TABLE `battleground_template` ENABLE KEYS */;
UNLOCK TABLES;
@@ -1539,8 +1567,8 @@ CREATE TABLE `item_template` (
`RequiredCityRank` mediumint(8) unsigned NOT NULL default '0',
`RequiredReputationFaction` smallint(5) unsigned NOT NULL default '0',
`RequiredReputationRank` smallint(5) unsigned NOT NULL default '0',
- `maxcount` smallint(5) unsigned NOT NULL default '0',
- `stackable` smallint(5) unsigned NOT NULL default '1',
+ `maxcount` smallint(5) NOT NULL default '-1',
+ `stackable` smallint(5) NOT NULL default '1',
`ContainerSlots` tinyint(3) unsigned NOT NULL default '0',
`StatsCount` tinyint(3) unsigned NOT NULL default '0',
`stat_type1` tinyint(3) unsigned NOT NULL default '0',
@@ -1761,6 +1789,41 @@ INSERT INTO `item_template` VALUES
/*!40000 ALTER TABLE `item_template` ENABLE KEYS */;
UNLOCK TABLES;
+--
+-- Table structure for table `locales_achievement_reward`
+--
+
+DROP TABLE IF EXISTS `locales_achievement_reward`;
+CREATE TABLE `locales_achievement_reward` (
+ `entry` mediumint(8) unsigned NOT NULL default '0',
+ `subject_loc1` varchar(100) NOT NULL default '',
+ `subject_loc2` varchar(100) NOT NULL default '',
+ `subject_loc3` varchar(100) NOT NULL default '',
+ `subject_loc4` varchar(100) NOT NULL default '',
+ `subject_loc5` varchar(100) NOT NULL default '',
+ `subject_loc6` varchar(100) NOT NULL default '',
+ `subject_loc7` varchar(100) NOT NULL default '',
+ `subject_loc8` varchar(100) NOT NULL default '',
+ `text_loc1` text default NULL,
+ `text_loc2` text default NULL,
+ `text_loc3` text default NULL,
+ `text_loc4` text default NULL,
+ `text_loc5` text default NULL,
+ `text_loc6` text default NULL,
+ `text_loc7` text default NULL,
+ `text_loc8` text default NULL,
+ PRIMARY KEY (`entry`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `locales_achievement_reward`
+--
+
+LOCK TABLES `locales_achievement_reward` WRITE;
+/*!40000 ALTER TABLE `locales_achievement_reward` DISABLE KEYS */;
+/*!40000 ALTER TABLE `locales_achievement_reward` ENABLE KEYS */;
+UNLOCK TABLES;
+
--
-- Table structure for table `locales_creature`
--
@@ -9288,10 +9351,10 @@ INSERT INTO `playercreateinfo` VALUES
(6,7,1,215,-2917,-257,53),
(6,11,1,215,-2917,-257,53),
(7,1,0,1,-6240,331,383),
-(7,4,0,1,-6340,331,383),
+(7,4,0,1,-6240,331,383),
(7,6,609,4298,2355.05,-5661.7, 426.026),
-(7,8,0,1,-6340,331,383),
-(7,9,0,1,-6340,331,383),
+(7,8,0,1,-6240,331,383),
+(7,9,0,1,-6240,331,383),
(8,1,1,14,-618,-4251,39),
(8,3,1,14,-618,-4251,39),
(8,4,1,14,-618,-4251,39),
@@ -9650,14 +9713,14 @@ INSERT INTO `playercreateinfo_action` VALUES
(11,2,0,6603,0,0),
(11,2,1,21084,0,0),
(11,2,2,635,0,0),
-(11,2,3,28880,0,0),
+(11,2,3,59542,0,0),
(11,2,10,159,128,0),
(11,2,11,4540,128,0),
(11,2,83,4540,128,0),
(11,3,0,6603,0,0),
(11,3,1,2973,0,0),
(11,3,2,75,0,0),
-(11,3,3,28880,0,0),
+(11,3,3,59543,0,0),
(11,3,10,159,128,0),
(11,3,11,4540,128,0),
(11,3,72,6603,0,0),
@@ -9668,7 +9731,7 @@ INSERT INTO `playercreateinfo_action` VALUES
(11,5,0,6603,0,0),
(11,5,1,585,0,0),
(11,5,2,2050,0,0),
-(11,5,3,28880,0,0),
+(11,5,3,59544,0,0),
(11,5,10,159,128,0),
(11,5,11,4540,128,0),
(11,5,83,4540,128,0),
@@ -9678,16 +9741,17 @@ INSERT INTO `playercreateinfo_action` VALUES
(11,6,3,45462,0,0),
(11,6,4,45902,0,0),
(11,6,5,47541,0,0),
+(11,6,6,59545,0,0),
(11,7,0,6603,0,0),
(11,7,1,403,0,0),
(11,7,2,331,0,0),
-(11,7,3,28880,0,0),
+(11,7,3,59547,0,0),
(11,7,10,159,128,0),
(11,7,11,4540,128,0),
(11,8,0,6603,0,0),
(11,8,1,133,0,0),
(11,8,2,168,0,0),
-(11,8,3,28880,0,0),
+(11,8,3,59548,0,0),
(11,8,10,159,128,0),
(11,8,11,4540,128,0),
(11,8,83,4540,128,0);
@@ -9726,7 +9790,6 @@ CREATE TABLE `playercreateinfo_spell` (
`class` tinyint(3) unsigned NOT NULL default '0',
`Spell` mediumint(8) unsigned NOT NULL default '0',
`Note` varchar(255) default NULL,
- `Active` tinyint(3) unsigned NOT NULL default '1',
PRIMARY KEY (`race`,`class`,`Spell`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
@@ -9737,2693 +9800,2798 @@ CREATE TABLE `playercreateinfo_spell` (
LOCK TABLES `playercreateinfo_spell` WRITE;
/*!40000 ALTER TABLE `playercreateinfo_spell` DISABLE KEYS */;
INSERT INTO `playercreateinfo_spell` VALUES
-(1,1,78,'Heroic Strike',1),
-(1,1,81,'Dodge',1),
-(1,1,107,'Block',1),
-(1,1,196,'One-Handed Axes',1),
-(1,1,198,'One-Handed Maces',1),
-(1,1,201,'One-Handed Swords',1),
-(1,1,203,'Unarmed',1),
-(1,1,204,'Defense',1),
-(1,1,522,'SPELLDEFENSE(DND)',1),
-(1,1,668,'Language Common',1),
-(1,1,2382,'Generic',1),
-(1,1,2457,'Battle Stance',1),
-(1,1,2479,'Honorless Target',1),
-(1,1,3050,'Detect',1),
-(1,1,3365,'Opening',1),
-(1,1,5301,'Defensive State(DND)',1),
-(1,1,6233,'Closing',1),
-(1,1,6246,'Closing',1),
-(1,1,6247,'Opening',1),
-(1,1,6477,'Opening',1),
-(1,1,6478,'Opening',1),
-(1,1,6603,'Attack',1),
-(1,1,7266,'Duel',1),
-(1,1,7267,'Grovel',1),
-(1,1,7355,'Stuck',1),
-(1,1,7376,'Defensive Stance Passive',0),
-(1,1,7381,'Berserker Stance Passive',0),
-(1,1,8386,'Attacking',1),
-(1,1,8737,'Mail',1),
-(1,1,9077,'Leather',1),
-(1,1,9078,'Cloth',1),
-(1,1,9116,'Shield',1),
-(1,1,9125,'Generic',1),
-(1,1,20597,'Sword Specialization',1),
-(1,1,20598,'The Human Spirit',1),
-(1,1,20599,'Diplomacy',1),
-(1,1,20600,'Perception',1),
-(1,1,20864,'Mace Specialization',1),
-(1,1,21156,'Battle Stance Passive',0),
-(1,1,21651,'Opening',1),
-(1,1,21652,'Closing',1),
-(1,1,22027,'Remove Insignia',1),
-(1,1,22810,'Opening - No Text',1),
-(1,1,32215,'Victorious State',1),
-(1,2,81,'Dodge',1),
-(1,2,107,'Block',1),
-(1,2,198,'One-Handed Maces',1),
-(1,2,199,'Two-Handed Maces',1),
-(1,2,203,'Unarmed',1),
-(1,2,204,'Defense',1),
-(1,2,522,'SPELLDEFENSE(DND)',1),
-(1,2,635,'Holy Light',1),
-(1,2,668,'Language Common',1),
-(1,2,2382,'Generic',1),
-(1,2,2479,'Honorless Target',1),
-(1,2,3050,'Detect',1),
-(1,2,3365,'Opening',1),
-(1,2,6233,'Closing',1),
-(1,2,6246,'Closing',1),
-(1,2,6247,'Opening',1),
-(1,2,6477,'Opening',1),
-(1,2,6478,'Opening',1),
-(1,2,6603,'Attack',1),
-(1,2,7266,'Duel',1),
-(1,2,7267,'Grovel',1),
-(1,2,7355,'Stuck',1),
-(1,2,8386,'Attacking',1),
-(1,2,8737,'Mail',1),
-(1,2,9077,'Leather',1),
-(1,2,9078,'Cloth',1),
-(1,2,9116,'Shield',1),
-(1,2,9125,'Generic',1),
-(1,2,21084,'Seal of Righteousness',1),
-(1,2,20597,'Sword Specialization',1),
-(1,2,20598,'The Human Spirit',1),
-(1,2,20599,'Diplomacy',1),
-(1,2,20600,'Perception',1),
-(1,2,20864,'Mace Specialization',1),
-(1,2,21651,'Opening',1),
-(1,2,21652,'Closing',1),
-(1,2,22027,'Remove Insignia',1),
-(1,2,22810,'Opening - No Text',1),
-(1,2,27762,'Libram',1),
-(1,4,81,'Dodge',1),
-(1,4,203,'Unarmed',1),
-(1,4,204,'Defense',1),
-(1,4,522,'SPELLDEFENSE(DND)',1),
-(1,4,668,'Language Common',1),
-(1,4,1180,'Daggers',1),
-(1,4,1752,'Sinister Strike',1),
-(1,4,2098,'Eviscerate',1),
-(1,4,2382,'Generic',1),
-(1,4,2479,'Honorless Target',1),
-(1,4,2567,'Thrown',1),
-(1,4,2764,'Throw',1),
-(1,4,3050,'Detect',1),
-(1,4,3365,'Opening',1),
-(1,4,6233,'Closing',1),
-(1,4,6246,'Closing',1),
-(1,4,6247,'Opening',1),
-(1,4,6477,'Opening',1),
-(1,4,6478,'Opening',1),
-(1,4,6603,'Attack',1),
-(1,4,7266,'Duel',1),
-(1,4,7267,'Grovel',1),
-(1,4,7355,'Stuck',1),
-(1,4,8386,'Attacking',1),
-(1,4,9077,'Leather',1),
-(1,4,9078,'Cloth',1),
-(1,4,9125,'Generic',1),
-(1,4,16092,'Defensive State(DND)',1),
-(1,4,20597,'Sword Specialization',1),
-(1,4,20598,'The Human Spirit',1),
-(1,4,20599,'Diplomacy',1),
-(1,4,20600,'Perception',1),
-(1,4,20864,'Mace Specialization',1),
-(1,4,21184,'Rogue Passive(DND)',1),
-(1,4,21651,'Opening',1),
-(1,4,21652,'Closing',1),
-(1,4,22027,'Remove Insignia',1),
-(1,4,22810,'Opening - No Text',1),
-(1,5,81,'Dodge',1),
-(1,5,198,'One-Handed Maces',1),
-(1,5,203,'Unarmed',1),
-(1,5,204,'Defense',1),
-(1,5,522,'SPELLDEFENSE(DND)',1),
-(1,5,585,'Smite',1),
-(1,5,668,'Language Common',1),
-(1,5,2050,'Lesser Heal',1),
-(1,5,2382,'Generic',1),
-(1,5,2479,'Honorless Target',1),
-(1,5,3050,'Detect',1),
-(1,5,3365,'Opening',1),
-(1,5,5009,'Wands',1),
-(1,5,5019,'Shoot',1),
-(1,5,6233,'Closing',1),
-(1,5,6246,'Closing',1),
-(1,5,6247,'Opening',1),
-(1,5,6477,'Opening',1),
-(1,5,6478,'Opening',1),
-(1,5,6603,'Attack',1),
-(1,5,7266,'Duel',1),
-(1,5,7267,'Grovel',1),
-(1,5,7355,'Stuck',1),
-(1,5,8386,'Attacking',1),
-(1,5,9078,'Cloth',1),
-(1,5,9125,'Generic',1),
-(1,5,20597,'Sword Specialization',1),
-(1,5,20598,'The Human Spirit',1),
-(1,5,20599,'Diplomacy',1),
-(1,5,20600,'Perception',1),
-(1,5,20864,'Mace Specialization',1),
-(1,5,21651,'Opening',1),
-(1,5,21652,'Closing',1),
-(1,5,22027,'Remove Insignia',1),
-(1,5,22810,'Opening - No Text',1),
-(1,6,81,'Dodge',1),
-(1,6,196,'One-Handed Axes',1),
-(1,6,197,'Two-Handed Axes',1),
-(1,6,200,'Polearms',1),
-(1,6,201,'One-Handed Swords',1),
-(1,6,202,'Two-Handed Swords',1),
-(1,6,203,'Unarmed',1),
-(1,6,204,'Defense',1),
-(1,6,522,'SPELLDEFENSE (DND)',1),
-(1,6,668,'Language Common',1),
-(1,6,674,'Dual Wield',1),
-(1,6,750,'Plate Mail',1),
-(1,6,1843,'Disarm',1),
-(1,6,2382,'Generic',1),
-(1,6,2479,'Honorless Target',1),
-(1,6,3050,'Detect',1),
-(1,6,3127,'Parry',1),
-(1,6,3275,'Linen Bandage',1),
-(1,6,3276,'Heavy Linen Bandage',1),
-(1,6,3277,'Wool Bandage',1),
-(1,6,3278,'Heavy Wool Bandage',1),
-(1,6,3365,'Opening',1),
-(1,6,6233,'Closing',1),
-(1,6,6246,'Closing',1),
-(1,6,6247,'Opening',1),
-(1,6,6477,'Opening',1),
-(1,6,6478,'Opening',1),
-(1,6,6603,'Attack',1),
-(1,6,7266,'Duel',1),
-(1,6,7267,'Grovel',1),
-(1,6,7355,'Stuck',1),
-(1,6,7928,'Silk Bandage',1),
-(1,6,7929,'Heavy Silk Bandage',1),
-(1,6,7934,'Anti-Venom',1),
-(1,6,8386,'Attacking',1),
-(1,6,8737,'Mail',1),
-(1,6,9077,'Leather',1),
-(1,6,9078,'Cloth',1),
-(1,6,9125,'Generic',1),
-(1,6,10840,'Mageweave Bandage',1),
-(1,6,10841,'Heavy Mageweave Bandage',1),
-(1,6,10846,'First Aid',1),
-(1,6,18629,'Runecloth Bandage',1),
-(1,6,18630,'Heavy Runecloth Bandage',1),
-(1,6,20597,'Sword Specialization',1),
-(1,6,20598,'The Human Spirit',1),
-(1,6,20599,'Diplomacy',1),
-(1,6,20864,'Mace Specialization',1),
-(1,6,21651,'Opening',1),
-(1,6,21652,'Closing',1),
-(1,6,22027,'Remove Insignia',1),
-(1,6,22810,'Opening - No Text',1),
-(1,6,33391,'Journeyman Riding',1),
-(1,6,45462,'Plague Strike',1),
-(1,6,45477,'Icy Touch',1),
-(1,6,45902,'Blood Strike',1),
-(1,6,45903,'Offensive State (DND)',1),
-(1,6,45927,'Summon Friend',1),
-(1,6,47541,'Death Coil',1),
-(1,6,48266,'Blood Presence',1),
-(1,6,49410,'Forceful Deflection',1),
-(1,6,49576,'Death Grip',1),
-(1,6,52665,'Sigil',1),
-(1,6,58985,'Perception',1),
-(1,6,59752,'Every Man for Himself',1),
-(1,6,59879,'Blood Plague',1),
-(1,6,59921,'Frost Fever',1),
-(1,6,61437,'Opening',1),
-(1,6,61455,'Runic Focus',1),
-(1,8,81,'Dodge',1),
-(1,8,133,'Fireball',1),
-(1,8,168,'Frost Armor',1),
-(1,8,203,'Unarmed',1),
-(1,8,204,'Defense',1),
-(1,8,227,'Staves',1),
-(1,8,522,'SPELLDEFENSE(DND)',1),
-(1,8,668,'Language Common',1),
-(1,8,2382,'Generic',1),
-(1,8,2479,'Honorless Target',1),
-(1,8,3050,'Detect',1),
-(1,8,3365,'Opening',1),
-(1,8,5009,'Wands',1),
-(1,8,5019,'Shoot',1),
-(1,8,6233,'Closing',1),
-(1,8,6246,'Closing',1),
-(1,8,6247,'Opening',1),
-(1,8,6477,'Opening',1),
-(1,8,6478,'Opening',1),
-(1,8,6603,'Attack',1),
-(1,8,7266,'Duel',1),
-(1,8,7267,'Grovel',1),
-(1,8,7355,'Stuck',1),
-(1,8,8386,'Attacking',1),
-(1,8,9078,'Cloth',1),
-(1,8,9125,'Generic',1),
-(1,8,20597,'Sword Specialization',1),
-(1,8,20598,'The Human Spirit',1),
-(1,8,20599,'Diplomacy',1),
-(1,8,20600,'Perception',1),
-(1,8,20864,'Mace Specialization',1),
-(1,8,21651,'Opening',1),
-(1,8,21652,'Closing',1),
-(1,8,22027,'Remove Insignia',1),
-(1,8,22810,'Opening - No Text',1),
-(1,9,81,'Dodge',1),
-(1,9,203,'Unarmed',1),
-(1,9,204,'Defense',1),
-(1,9,522,'SPELLDEFENSE(DND)',1),
-(1,9,668,'Language Common',1),
-(1,9,686,'Shadow Bolt',1),
-(1,9,687,'Demon Skin',1),
-(1,9,1180,'Daggers',1),
-(1,9,2382,'Generic',1),
-(1,9,2479,'Honorless Target',1),
-(1,9,3050,'Detect',1),
-(1,9,3365,'Opening',1),
-(1,9,5009,'Wands',1),
-(1,9,5019,'Shoot',1),
-(1,9,6233,'Closing',1),
-(1,9,6246,'Closing',1),
-(1,9,6247,'Opening',1),
-(1,9,6477,'Opening',1),
-(1,9,6478,'Opening',1),
-(1,9,6603,'Attack',1),
-(1,9,7266,'Duel',1),
-(1,9,7267,'Grovel',1),
-(1,9,7355,'Stuck',1),
-(1,9,8386,'Attacking',1),
-(1,9,9078,'Cloth',1),
-(1,9,9125,'Generic',1),
-(1,9,20597,'Sword Specialization',1),
-(1,9,20598,'The Human Spirit',1),
-(1,9,20599,'Diplomacy',1),
-(1,9,20600,'Perception',1),
-(1,9,20864,'Mace Specialization',1),
-(1,9,21651,'Opening',1),
-(1,9,21652,'Closing',1),
-(1,9,22027,'Remove Insignia',1),
-(1,9,22810,'Opening - No Text',1),
-(2,1,78,'Heroic Strike',1),
-(2,1,81,'Dodge',1),
-(2,1,107,'Block',1),
-(2,1,196,'One-Handed Axes',1),
-(2,1,197,'Two-Handed Axes',1),
-(2,1,201,'One-Handed Swords',1),
-(2,1,203,'Unarmed',1),
-(2,1,204,'Defense',1),
-(2,1,522,'SPELLDEFENSE(DND)',1),
-(2,1,669,'Language Orcish',1),
-(2,1,2382,'Generic',1),
-(2,1,2457,'Battle Stance',1),
-(2,1,2479,'Honorless Target',1),
-(2,1,3050,'Detect',1),
-(2,1,3365,'Opening',1),
-(2,1,5301,'Defensive State(DND)',1),
-(2,1,6233,'Closing',1),
-(2,1,6246,'Closing',1),
-(2,1,6247,'Opening',1),
-(2,1,6477,'Opening',1),
-(2,1,6478,'Opening',1),
-(2,1,6603,'Attack',1),
-(2,1,7266,'Duel',1),
-(2,1,7267,'Grovel',1),
-(2,1,7355,'Stuck',1),
-(2,1,7376,'Defensive Stance Passive',0),
-(2,1,7381,'Berserker Stance Passive',0),
-(2,1,8386,'Attacking',1),
-(2,1,8737,'Mail',1),
-(2,1,9077,'Leather',1),
-(2,1,9078,'Cloth',1),
-(2,1,9116,'Shield',1),
-(2,1,9125,'Generic',1),
-(2,1,20572,'Blood Fury',1),
-(2,1,20573,'Hardiness',1),
-(2,1,20574,'Axe Specialization',1),
-(2,1,21156,'Battle Stance Passive',0),
-(2,1,21563,'Command',1),
-(2,1,21651,'Opening',1),
-(2,1,21652,'Closing',1),
-(2,1,22027,'Remove Insignia',1),
-(2,1,22810,'Opening - No Text',1),
-(2,1,32215,'Victorious State',1),
-(2,3,75,'Auto Shot',1),
-(2,3,81,'Dodge',1),
-(2,3,196,'One-Handed Axes',1),
-(2,3,203,'Unarmed',1),
-(2,3,204,'Defense',1),
-(2,3,264,'Bows',1),
-(2,3,522,'SPELLDEFENSE(DND)',1),
-(2,3,669,'Language Orcish',1),
-(2,3,2382,'Generic',1),
-(2,3,2479,'Honorless Target',1),
-(2,3,2973,'Raptor Strike',1),
-(2,3,3050,'Detect',1),
-(2,3,3365,'Opening',1),
-(2,3,6233,'Closing',1),
-(2,3,6246,'Closing',1),
-(2,3,6247,'Opening',1),
-(2,3,6477,'Opening',1),
-(2,3,6478,'Opening',1),
-(2,3,6603,'Attack',1),
-(2,3,7266,'Duel',1),
-(2,3,7267,'Grovel',1),
-(2,3,7355,'Stuck',1),
-(2,3,8386,'Attacking',1),
-(2,3,9077,'Leather',1),
-(2,3,9078,'Cloth',1),
-(2,3,9125,'Generic',1),
-(2,3,13358,'Defensive State(DND)',1),
-(2,3,20572,'Blood Fury',1),
-(2,3,20573,'Hardiness',1),
-(2,3,20574,'Axe Specialization',1),
-(2,3,20576,'Command',1),
-(2,3,21651,'Opening',1),
-(2,3,21652,'Closing',1),
-(2,3,22027,'Remove Insignia',1),
-(2,3,22810,'Opening - No Text',1),
-(2,3,24949,'Defensive State 2(DND)',1),
-(2,3,34082,'Advantaged State(DND)',1),
-(2,4,81,'Dodge',1),
-(2,4,203,'Unarmed',1),
-(2,4,204,'Defense',1),
-(2,4,522,'SPELLDEFENSE(DND)',1),
-(2,4,669,'Language Orcish',1),
-(2,4,1180,'Daggers',1),
-(2,4,1752,'Sinister Strike',1),
-(2,4,2098,'Eviscerate',1),
-(2,4,2382,'Generic',1),
-(2,4,2479,'Honorless Target',1),
-(2,4,2567,'Thrown',1),
-(2,4,2764,'Throw',1),
-(2,4,3050,'Detect',1),
-(2,4,3365,'Opening',1),
-(2,4,6233,'Closing',1),
-(2,4,6246,'Closing',1),
-(2,4,6247,'Opening',1),
-(2,4,6477,'Opening',1),
-(2,4,6478,'Opening',1),
-(2,4,6603,'Attack',1),
-(2,4,7266,'Duel',1),
-(2,4,7267,'Grovel',1),
-(2,4,7355,'Stuck',1),
-(2,4,8386,'Attacking',1),
-(2,4,9077,'Leather',1),
-(2,4,9078,'Cloth',1),
-(2,4,9125,'Generic',1),
-(2,4,16092,'Defensive State(DND)',1),
-(2,4,20572,'Blood Fury',1),
-(2,4,20573,'Hardiness',1),
-(2,4,20574,'Axe Specialization',1),
-(2,4,21184,'Rogue Passive(DND)',1),
-(2,4,21563,'Command',1),
-(2,4,21651,'Opening',1),
-(2,4,21652,'Closing',1),
-(2,4,22027,'Remove Insignia',1),
-(2,4,22810,'Opening - No Text',1),
-(2,6,81,'Dodge',1),
-(2,6,196,'One-Handed Axes',1),
-(2,6,197,'Two-Handed Axes',1),
-(2,6,200,'Polearms',1),
-(2,6,201,'One-Handed Swords',1),
-(2,6,202,'Two-Handed Swords',1),
-(2,6,203,'Unarmed',1),
-(2,6,204,'Defense',1),
-(2,6,522,'SPELLDEFENSE (DND)',1),
-(2,6,669,'Language Orcish',1),
-(2,6,674,'Dual Wield',1),
-(2,6,750,'Plate Mail',1),
-(2,6,1843,'Disarm',1),
-(2,6,2382,'Generic',1),
-(2,6,2479,'Honorless Target',1),
-(2,6,3050,'Detect',1),
-(2,6,3127,'Parry',1),
-(2,6,3275,'Linen Bandage',1),
-(2,6,3276,'Heavy Linen Bandage',1),
-(2,6,3277,'Wool Bandage',1),
-(2,6,3278,'Heavy Wool Bandage',1),
-(2,6,3365,'Opening',1),
-(2,6,6233,'Closing',1),
-(2,6,6246,'Closing',1),
-(2,6,6247,'Opening',1),
-(2,6,6477,'Opening',1),
-(2,6,6478,'Opening',1),
-(2,6,6603,'Attack',1),
-(2,6,7266,'Duel',1),
-(2,6,7267,'Grovel',1),
-(2,6,7355,'Stuck',1),
-(2,6,7928,'Silk Bandage',1),
-(2,6,7929,'Heavy Silk Bandage',1),
-(2,6,7934,'Anti-Venom',1),
-(2,6,8386,'Attacking',1),
-(2,6,8737,'Mail',1),
-(2,6,9077,'Leather',1),
-(2,6,9078,'Cloth',1),
-(2,6,9125,'Generic',1),
-(2,6,10840,'Mageweave Bandage',1),
-(2,6,10841,'Heavy Mageweave Bandage',1),
-(2,6,10846,'First Aid',1),
-(2,6,18629,'Runecloth Bandage',1),
-(2,6,18630,'Heavy Runecloth Bandage',1),
-(2,6,20572,'Blood Fury',1),
-(2,6,20573,'Hardiness',1),
-(2,6,20574,'Axe Specialization',1),
-(2,6,21651,'Opening',1),
-(2,6,21652,'Closing',1),
-(2,6,22027,'Remove Insignia',1),
-(2,6,22810,'Opening - No Text',1),
-(2,6,33391,'Journeyman Riding',1),
-(2,6,45462,'Plague Strike',1),
-(2,6,45477,'Icy Touch',1),
-(2,6,45902,'Blood Strike',1),
-(2,6,45903,'Offensive State (DND)',1),
-(2,6,45927,'Summon Friend',1),
-(2,6,47541,'Death Coil',1),
-(2,6,48266,'Blood Presence',1),
-(2,6,49410,'Forceful Deflection',1),
-(2,6,49576,'Death Grip',1),
-(2,6,52665,'Sigil',1),
-(2,6,54562,'Command',1),
-(2,6,59879,'Blood Plague',1),
-(2,6,59921,'Frost Fever',1),
-(2,6,61437,'Opening',1),
-(2,6,61455,'Runic Focus',1),
-(2,7,81,'Dodge',1),
-(2,7,107,'Block',1),
-(2,7,198,'One-Handed Maces',1),
-(2,7,203,'Unarmed',1),
-(2,7,204,'Defense',1),
-(2,7,227,'Staves',1),
-(2,7,331,'Healing Wave',1),
-(2,7,403,'Lightning Bolt',1),
-(2,7,522,'SPELLDEFENSE(DND)',1),
-(2,7,669,'Language Orcish',1),
-(2,7,2382,'Generic',1),
-(2,7,2479,'Honorless Target',1),
-(2,7,3050,'Detect',1),
-(2,7,3365,'Opening',1),
-(2,7,6233,'Closing',1),
-(2,7,6246,'Closing',1),
-(2,7,6247,'Opening',1),
-(2,7,6477,'Opening',1),
-(2,7,6478,'Opening',1),
-(2,7,6603,'Attack',1),
-(2,7,7266,'Duel',1),
-(2,7,7267,'Grovel',1),
-(2,7,7355,'Stuck',1),
-(2,7,8386,'Attacking',1),
-(2,7,9077,'Leather',1),
-(2,7,9078,'Cloth',1),
-(2,7,9116,'Shield',1),
-(2,7,9125,'Generic',1),
-(2,7,20573,'Hardiness',1),
-(2,7,20574,'Axe Specialization',1),
-(2,7,21563,'Command',1),
-(2,7,21651,'Opening',1),
-(2,7,21652,'Closing',1),
-(2,7,22027,'Remove Insignia',1),
-(2,7,22810,'Opening - No Text',1),
-(2,7,27763,'Totem',1),
-(2,7,33697,'Blood Fury',1),
-(2,9,81,'Dodge',1),
-(2,9,203,'Unarmed',1),
-(2,9,204,'Defense',1),
-(2,9,522,'SPELLDEFENSE(DND)',1),
-(2,9,669,'Language Orcish',1),
-(2,9,686,'Shadow Bolt',1),
-(2,9,687,'Demon Skin',1),
-(2,9,1180,'Daggers',1),
-(2,9,2382,'Generic',1),
-(2,9,2479,'Honorless Target',1),
-(2,9,3050,'Detect',1),
-(2,9,3365,'Opening',1),
-(2,9,5009,'Wands',1),
-(2,9,5019,'Shoot',1),
-(2,9,6233,'Closing',1),
-(2,9,6246,'Closing',1),
-(2,9,6247,'Opening',1),
-(2,9,6477,'Opening',1),
-(2,9,6478,'Opening',1),
-(2,9,6603,'Attack',1),
-(2,9,7266,'Duel',1),
-(2,9,7267,'Grovel',1),
-(2,9,7355,'Stuck',1),
-(2,9,8386,'Attacking',1),
-(2,9,9078,'Cloth',1),
-(2,9,9125,'Generic',1),
-(2,9,20573,'Hardiness',1),
-(2,9,20574,'Axe Specialization',1),
-(2,9,20575,'Command',1),
-(2,9,21651,'Opening',1),
-(2,9,21652,'Closing',1),
-(2,9,22027,'Remove Insignia',1),
-(2,9,22810,'Opening - No Text',1),
-(2,9,33702,'Blood Fury',1),
-(3,1,78,'Heroic Strike',1),
-(3,1,81,'Dodge',1),
-(3,1,107,'Block',1),
-(3,1,196,'One-Handed Axes',1),
-(3,1,197,'Two-Handed Axes',1),
-(3,1,198,'One-Handed Maces',1),
-(3,1,203,'Unarmed',1),
-(3,1,204,'Defense',1),
-(3,1,522,'SPELLDEFENSE(DND)',1),
-(3,1,668,'Language Common',1),
-(3,1,672,'Language Dwarven',1),
-(3,1,2382,'Generic',1),
-(3,1,2457,'Battle Stance',1),
-(3,1,2479,'Honorless Target',1),
-(3,1,2481,'Find Treasure',1),
-(3,1,3050,'Detect',1),
-(3,1,3365,'Opening',1),
-(3,1,5301,'Defensive State(DND)',1),
-(3,1,6233,'Closing',1),
-(3,1,6246,'Closing',1),
-(3,1,6247,'Opening',1),
-(3,1,6477,'Opening',1),
-(3,1,6478,'Opening',1),
-(3,1,6603,'Attack',1),
-(3,1,7266,'Duel',1),
-(3,1,7267,'Grovel',1),
-(3,1,7355,'Stuck',1),
-(3,1,7376,'Defensive Stance Passive',0),
-(3,1,7381,'Berserker Stance Passive',0),
-(3,1,8386,'Attacking',1),
-(3,1,8737,'Mail',1),
-(3,1,9077,'Leather',1),
-(3,1,9078,'Cloth',1),
-(3,1,9116,'Shield',1),
-(3,1,9125,'Generic',1),
-(3,1,20594,'Stoneform',1),
-(3,1,20595,'Gun Specialization',1),
-(3,1,20596,'Frost Resistance',1),
-(3,1,21156,'Battle Stance Passive',0),
-(3,1,21651,'Opening',1),
-(3,1,21652,'Closing',1),
-(3,1,22027,'Remove Insignia',1),
-(3,1,22810,'Opening - No Text',1),
-(3,1,32215,'Victorious State',1),
-(3,2,81,'Dodge',1),
-(3,2,107,'Block',1),
-(3,2,198,'One-Handed Maces',1),
-(3,2,199,'Two-Handed Maces',1),
-(3,2,203,'Unarmed',1),
-(3,2,204,'Defense',1),
-(3,2,522,'SPELLDEFENSE(DND)',1),
-(3,2,635,'Holy Light',1),
-(3,2,668,'Language Common',1),
-(3,2,672,'Language Dwarven',1),
-(3,2,2382,'Generic',1),
-(3,2,2479,'Honorless Target',1),
-(3,2,2481,'Find Treasure',1),
-(3,2,3050,'Detect',1),
-(3,2,3365,'Opening',1),
-(3,2,6233,'Closing',1),
-(3,2,6246,'Closing',1),
-(3,2,6247,'Opening',1),
-(3,2,6477,'Opening',1),
-(3,2,6478,'Opening',1),
-(3,2,6603,'Attack',1),
-(3,2,7266,'Duel',1),
-(3,2,7267,'Grovel',1),
-(3,2,7355,'Stuck',1),
-(3,2,8386,'Attacking',1),
-(3,2,8737,'Mail',1),
-(3,2,9077,'Leather',1),
-(3,2,9078,'Cloth',1),
-(3,2,9116,'Shield',1),
-(3,2,9125,'Generic',1),
-(3,2,21084,'Seal of Righteousness',1),
-(3,2,20594,'Stoneform',1),
-(3,2,20595,'Gun Specialization',1),
-(3,2,20596,'Frost Resistance',1),
-(3,2,21651,'Opening',1),
-(3,2,21652,'Closing',1),
-(3,2,22027,'Remove Insignia',1),
-(3,2,22810,'Opening - No Text',1),
-(3,2,27762,'Libram',1),
-(3,3,75,'Auto Shot',1),
-(3,3,81,'Dodge',1),
-(3,3,196,'One-Handed Axes',1),
-(3,3,203,'Unarmed',1),
-(3,3,204,'Defense',1),
-(3,3,266,'Guns',1),
-(3,3,522,'SPELLDEFENSE(DND)',1),
-(3,3,668,'Language Common',1),
-(3,3,672,'Language Dwarven',1),
-(3,3,2382,'Generic',1),
-(3,3,2479,'Honorless Target',1),
-(3,3,2481,'Find Treasure',1),
-(3,3,2973,'Raptor Strike',1),
-(3,3,3050,'Detect',1),
-(3,3,3365,'Opening',1),
-(3,3,6233,'Closing',1),
-(3,3,6246,'Closing',1),
-(3,3,6247,'Opening',1),
-(3,3,6477,'Opening',1),
-(3,3,6478,'Opening',1),
-(3,3,6603,'Attack',1),
-(3,3,7266,'Duel',1),
-(3,3,7267,'Grovel',1),
-(3,3,7355,'Stuck',1),
-(3,3,8386,'Attacking',1),
-(3,3,9077,'Leather',1),
-(3,3,9078,'Cloth',1),
-(3,3,9125,'Generic',1),
-(3,3,13358,'Defensive State(DND)',1),
-(3,3,20594,'Stoneform',1),
-(3,3,20595,'Gun Specialization',1),
-(3,3,20596,'Frost Resistance',1),
-(3,3,21651,'Opening',1),
-(3,3,21652,'Closing',1),
-(3,3,22027,'Remove Insignia',1),
-(3,3,22810,'Opening - No Text',1),
-(3,3,24949,'Defensive State 2(DND)',1),
-(3,3,34082,'Advantaged State(DND)',1),
-(3,4,81,'Dodge',1),
-(3,4,203,'Unarmed',1),
-(3,4,204,'Defense',1),
-(3,4,522,'SPELLDEFENSE(DND)',1),
-(3,4,668,'Language Common',1),
-(3,4,672,'Language Dwarven',1),
-(3,4,1180,'Daggers',1),
-(3,4,1752,'Sinister Strike',1),
-(3,4,2098,'Eviscerate',1),
-(3,4,2382,'Generic',1),
-(3,4,2479,'Honorless Target',1),
-(3,4,2481,'Find Treasure',1),
-(3,4,2567,'Thrown',1),
-(3,4,2764,'Throw',1),
-(3,4,3050,'Detect',1),
-(3,4,3365,'Opening',1),
-(3,4,6233,'Closing',1),
-(3,4,6246,'Closing',1),
-(3,4,6247,'Opening',1),
-(3,4,6477,'Opening',1),
-(3,4,6478,'Opening',1),
-(3,4,6603,'Attack',1),
-(3,4,7266,'Duel',1),
-(3,4,7267,'Grovel',1),
-(3,4,7355,'Stuck',1),
-(3,4,8386,'Attacking',1),
-(3,4,9077,'Leather',1),
-(3,4,9078,'Cloth',1),
-(3,4,9125,'Generic',1),
-(3,4,16092,'Defensive State(DND)',1),
-(3,4,20594,'Stoneform',1),
-(3,4,20595,'Gun Specialization',1),
-(3,4,20596,'Frost Resistance',1),
-(3,4,21184,'Rogue Passive(DND)',1),
-(3,4,21651,'Opening',1),
-(3,4,21652,'Closing',1),
-(3,4,22027,'Remove Insignia',1),
-(3,4,22810,'Opening - No Text',1),
-(3,5,81,'Dodge',1),
-(3,5,198,'One-Handed Maces',1),
-(3,5,203,'Unarmed',1),
-(3,5,204,'Defense',1),
-(3,5,522,'SPELLDEFENSE(DND)',1),
-(3,5,585,'Smite',1),
-(3,5,668,'Language Common',1),
-(3,5,672,'Language Dwarven',1),
-(3,5,2050,'Lesser Heal',1),
-(3,5,2382,'Generic',1),
-(3,5,2479,'Honorless Target',1),
-(3,5,2481,'Find Treasure',1),
-(3,5,3050,'Detect',1),
-(3,5,3365,'Opening',1),
-(3,5,5009,'Wands',1),
-(3,5,5019,'Shoot',1),
-(3,5,6233,'Closing',1),
-(3,5,6246,'Closing',1),
-(3,5,6247,'Opening',1),
-(3,5,6477,'Opening',1),
-(3,5,6478,'Opening',1),
-(3,5,6603,'Attack',1),
-(3,5,7266,'Duel',1),
-(3,5,7267,'Grovel',1),
-(3,5,7355,'Stuck',1),
-(3,5,8386,'Attacking',1),
-(3,5,9078,'Cloth',1),
-(3,5,9125,'Generic',1),
-(3,5,20594,'Stoneform',1),
-(3,5,20595,'Gun Specialization',1),
-(3,5,20596,'Frost Resistance',1),
-(3,5,21651,'Opening',1),
-(3,5,21652,'Closing',1),
-(3,5,22027,'Remove Insignia',1),
-(3,5,22810,'Opening - No Text',1),
-(3,6,81,'Dodge',1),
-(3,6,196,'One-Handed Axes',1),
-(3,6,197,'Two-Handed Axes',1),
-(3,6,200,'Polearms',1),
-(3,6,201,'One-Handed Swords',1),
-(3,6,202,'Two-Handed Swords',1),
-(3,6,203,'Unarmed',1),
-(3,6,204,'Defense',1),
-(3,6,522,'SPELLDEFENSE (DND)',1),
-(3,6,668,'Language Common',1),
-(3,6,672,'Language Dwarven',1),
-(3,6,674,'Dual Wield',1),
-(3,6,750,'Plate Mail',1),
-(3,6,1843,'Disarm',1),
-(3,6,2382,'Generic',1),
-(3,6,2479,'Honorless Target',1),
-(3,6,2481,'Find Treasure',1),
-(3,6,3050,'Detect',1),
-(3,6,3127,'Parry',1),
-(3,6,3275,'Linen Bandage',1),
-(3,6,3276,'Heavy Linen Bandage',1),
-(3,6,3277,'Wool Bandage',1),
-(3,6,3278,'Heavy Wool Bandage',1),
-(3,6,3365,'Opening',1),
-(3,6,6233,'Closing',1),
-(3,6,6246,'Closing',1),
-(3,6,6247,'Opening',1),
-(3,6,6477,'Opening',1),
-(3,6,6478,'Opening',1),
-(3,6,6603,'Attack',1),
-(3,6,7266,'Duel',1),
-(3,6,7267,'Grovel',1),
-(3,6,7355,'Stuck',1),
-(3,6,7928,'Silk Bandage',1),
-(3,6,7929,'Heavy Silk Bandage',1),
-(3,6,7934,'Anti-Venom',1),
-(3,6,8386,'Attacking',1),
-(3,6,8737,'Mail',1),
-(3,6,9077,'Leather',1),
-(3,6,9078,'Cloth',1),
-(3,6,9125,'Generic',1),
-(3,6,10840,'Mageweave Bandage',1),
-(3,6,10841,'Heavy Mageweave Bandage',1),
-(3,6,10846,'First Aid',1),
-(3,6,18629,'Runecloth Bandage',1),
-(3,6,18630,'Heavy Runecloth Bandage',1),
-(3,6,20594,'Stoneform',1),
-(3,6,20595,'Gun Specialization',1),
-(3,6,20596,'Frost Resistance',1),
-(3,6,21651,'Opening',1),
-(3,6,21652,'Closing',1),
-(3,6,22027,'Remove Insignia',1),
-(3,6,22810,'Opening - No Text',1),
-(3,6,33391,'Journeyman Riding',1),
-(3,6,45462,'Plague Strike',1),
-(3,6,45477,'Icy Touch',1),
-(3,6,45902,'Blood Strike',1),
-(3,6,45903,'Offensive State (DND)',1),
-(3,6,45927,'Summon Friend',1),
-(3,6,47541,'Death Coil',1),
-(3,6,48266,'Blood Presence',1),
-(3,6,49410,'Forceful Deflection',1),
-(3,6,49576,'Death Grip',1),
-(3,6,52665,'Sigil',1),
-(3,6,59224,'Mace Specialization',1),
-(3,6,59879,'Blood Plague',1),
-(3,6,59921,'Frost Fever',1),
-(3,6,61437,'Opening',1),
-(3,6,61455,'Runic Focus',1),
-(4,1,78,'Heroic Strike',1),
-(4,1,81,'Dodge',1),
-(4,1,107,'Block',1),
-(4,1,198,'One-Handed Maces',1),
-(4,1,201,'One-Handed Swords',1),
-(4,1,203,'Unarmed',1),
-(4,1,204,'Defense',1),
-(4,1,522,'SPELLDEFENSE(DND)',1),
-(4,1,668,'Language Common',1),
-(4,1,671,'Language Darnassian',1),
-(4,1,1180,'Daggers',1),
-(4,1,2382,'Generic',1),
-(4,1,2457,'Battle Stance',1),
-(4,1,2479,'Honorless Target',1),
-(4,1,3050,'Detect',1),
-(4,1,3365,'Opening',1),
-(4,1,5301,'Defensive State(DND)',1),
-(4,1,6233,'Closing',1),
-(4,1,6246,'Closing',1),
-(4,1,6247,'Opening',1),
-(4,1,6477,'Opening',1),
-(4,1,6478,'Opening',1),
-(4,1,6603,'Attack',1),
-(4,1,7266,'Duel',1),
-(4,1,7267,'Grovel',1),
-(4,1,7355,'Stuck',1),
-(4,1,7376,'Defensive Stance Passive',0),
-(4,1,7381,'Berserker Stance Passive',0),
-(4,1,8386,'Attacking',1),
-(4,1,8737,'Mail',1),
-(4,1,9077,'Leather',1),
-(4,1,9078,'Cloth',1),
-(4,1,9116,'Shield',1),
-(4,1,9125,'Generic',1),
-(4,1,20580,'Shadowmeld',1),
-(4,1,20582,'Quickness',1),
-(4,1,20583,'Nature Resistance',1),
-(4,1,20585,'Wisp Spirit',1),
-(4,1,21009,'Shadowmeld Passive',1),
-(4,1,21156,'Battle Stance Passive',0),
-(4,1,21651,'Opening',1),
-(4,1,21652,'Closing',1),
-(4,1,22027,'Remove Insignia',1),
-(4,1,22810,'Opening - No Text',1),
-(4,1,32215,'Victorious State',1),
-(4,3,75,'Auto Shot',1),
-(4,3,81,'Dodge',1),
-(4,3,203,'Unarmed',1),
-(4,3,204,'Defense',1),
-(4,3,264,'Bows',1),
-(4,3,522,'SPELLDEFENSE(DND)',1),
-(4,3,668,'Language Common',1),
-(4,3,671,'Language Darnassian',1),
-(4,3,1180,'Daggers',1),
-(4,3,2382,'Generic',1),
-(4,3,2479,'Honorless Target',1),
-(4,3,2973,'Raptor Strike',1),
-(4,3,3050,'Detect',1),
-(4,3,3365,'Opening',1),
-(4,3,6233,'Closing',1),
-(4,3,6246,'Closing',1),
-(4,3,6247,'Opening',1),
-(4,3,6477,'Opening',1),
-(4,3,6478,'Opening',1),
-(4,3,6603,'Attack',1),
-(4,3,7266,'Duel',1),
-(4,3,7267,'Grovel',1),
-(4,3,7355,'Stuck',1),
-(4,3,8386,'Attacking',1),
-(4,3,9077,'Leather',1),
-(4,3,9078,'Cloth',1),
-(4,3,9125,'Generic',1),
-(4,3,13358,'Defensive State(DND)',1),
-(4,3,20580,'Shadowmeld',1),
-(4,3,20582,'Quickness',1),
-(4,3,20583,'Nature Resistance',1),
-(4,3,20585,'Wisp Spirit',1),
-(4,3,21009,'Shadowmeld Passive',1),
-(4,3,21651,'Opening',1),
-(4,3,21652,'Closing',1),
-(4,3,22027,'Remove Insignia',1),
-(4,3,22810,'Opening - No Text',1),
-(4,3,24949,'Defensive State 2(DND)',1),
-(4,3,34082,'Advantaged State(DND)',1),
-(4,4,81,'Dodge',1),
-(4,4,203,'Unarmed',1),
-(4,4,204,'Defense',1),
-(4,4,522,'SPELLDEFENSE(DND)',1),
-(4,4,668,'Language Common',1),
-(4,4,671,'Language Darnassian',1),
-(4,4,1180,'Daggers',1),
-(4,4,1752,'Sinister Strike',1),
-(4,4,2098,'Eviscerate',1),
-(4,4,2382,'Generic',1),
-(4,4,2479,'Honorless Target',1),
-(4,4,2567,'Thrown',1),
-(4,4,2764,'Throw',1),
-(4,4,3050,'Detect',1),
-(4,4,3365,'Opening',1),
-(4,4,6233,'Closing',1),
-(4,4,6246,'Closing',1),
-(4,4,6247,'Opening',1),
-(4,4,6477,'Opening',1),
-(4,4,6478,'Opening',1),
-(4,4,6603,'Attack',1),
-(4,4,7266,'Duel',1),
-(4,4,7267,'Grovel',1),
-(4,4,7355,'Stuck',1),
-(4,4,8386,'Attacking',1),
-(4,4,9077,'Leather',1),
-(4,4,9078,'Cloth',1),
-(4,4,9125,'Generic',1),
-(4,4,16092,'Defensive State(DND)',1),
-(4,4,20580,'Shadowmeld',1),
-(4,4,20582,'Quickness',1),
-(4,4,20583,'Nature Resistance',1),
-(4,4,20585,'Wisp Spirit',1),
-(4,4,21009,'Shadowmeld Passive',1),
-(4,4,21184,'Rogue Passive(DND)',1),
-(4,4,21651,'Opening',1),
-(4,4,21652,'Closing',1),
-(4,4,22027,'Remove Insignia',1),
-(4,4,22810,'Opening - No Text',1),
-(4,5,81,'Dodge',1),
-(4,5,198,'One-Handed Maces',1),
-(4,5,203,'Unarmed',1),
-(4,5,204,'Defense',1),
-(4,5,522,'SPELLDEFENSE(DND)',1),
-(4,5,585,'Smite',1),
-(4,5,668,'Language Common',1),
-(4,5,671,'Language Darnassian',1),
-(4,5,2050,'Lesser Heal',1),
-(4,5,2382,'Generic',1),
-(4,5,2479,'Honorless Target',1),
-(4,5,3050,'Detect',1),
-(4,5,3365,'Opening',1),
-(4,5,5009,'Wands',1),
-(4,5,5019,'Shoot',1),
-(4,5,6233,'Closing',1),
-(4,5,6246,'Closing',1),
-(4,5,6247,'Opening',1),
-(4,5,6477,'Opening',1),
-(4,5,6478,'Opening',1),
-(4,5,6603,'Attack',1),
-(4,5,7266,'Duel',1),
-(4,5,7267,'Grovel',1),
-(4,5,7355,'Stuck',1),
-(4,5,8386,'Attacking',1),
-(4,5,9078,'Cloth',1),
-(4,5,9125,'Generic',1),
-(4,5,20580,'Shadowmeld',1),
-(4,5,20582,'Quickness',1),
-(4,5,20583,'Nature Resistance',1),
-(4,5,20585,'Wisp Spirit',1),
-(4,5,21009,'Shadowmeld Passive',1),
-(4,5,21651,'Opening',1),
-(4,5,21652,'Closing',1),
-(4,5,22027,'Remove Insignia',1),
-(4,5,22810,'Opening - No Text',1),
-(4,6,81,'Dodge',1),
-(4,6,196,'One-Handed Axes',1),
-(4,6,197,'Two-Handed Axes',1),
-(4,6,200,'Polearms',1),
-(4,6,201,'One-Handed Swords',1),
-(4,6,202,'Two-Handed Swords',1),
-(4,6,203,'Unarmed',1),
-(4,6,204,'Defense',1),
-(4,6,522,'SPELLDEFENSE (DND)',1),
-(4,6,668,'Language Common',1),
-(4,6,671,'Language Darnassian',1),
-(4,6,674,'Dual Wield',1),
-(4,6,750,'Plate Mail',1),
-(4,6,1843,'Disarm',1),
-(4,6,2382,'Generic',1),
-(4,6,2479,'Honorless Target',1),
-(4,6,3050,'Detect',1),
-(4,6,3127,'Parry',1),
-(4,6,3275,'Linen Bandage',1),
-(4,6,3276,'Heavy Linen Bandage',1),
-(4,6,3277,'Wool Bandage',1),
-(4,6,3278,'Heavy Wool Bandage',1),
-(4,6,3365,'Opening',1),
-(4,6,6233,'Closing',1),
-(4,6,6246,'Closing',1),
-(4,6,6247,'Opening',1),
-(4,6,6477,'Opening',1),
-(4,6,6478,'Opening',1),
-(4,6,6603,'Attack',1),
-(4,6,7266,'Duel',1),
-(4,6,7267,'Grovel',1),
-(4,6,7355,'Stuck',1),
-(4,6,7928,'Silk Bandage',1),
-(4,6,7929,'Heavy Silk Bandage',1),
-(4,6,7934,'Anti-Venom',1),
-(4,6,8386,'Attacking',1),
-(4,6,8737,'Mail',1),
-(4,6,9077,'Leather',1),
-(4,6,9078,'Cloth',1),
-(4,6,9125,'Generic',1),
-(4,6,10840,'Mageweave Bandage',1),
-(4,6,10841,'Heavy Mageweave Bandage',1),
-(4,6,10846,'First Aid',1),
-(4,6,18629,'Runecloth Bandage',1),
-(4,6,18630,'Heavy Runecloth Bandage',1),
-(4,6,20582,'Quickness',1),
-(4,6,20583,'Nature Resistance',1),
-(4,6,20585,'Wisp Spirit',1),
-(4,6,21651,'Opening',1),
-(4,6,21652,'Closing',1),
-(4,6,22027,'Remove Insignia',1),
-(4,6,22810,'Opening - No Text',1),
-(4,6,33391,'Journeyman Riding',1),
-(4,6,45462,'Plague Strike',1),
-(4,6,45477,'Icy Touch',1),
-(4,6,45902,'Blood Strike',1),
-(4,6,45903,'Offensive State (DND)',1),
-(4,6,45927,'Summon Friend',1),
-(4,6,47541,'Death Coil',1),
-(4,6,48266,'Blood Presence',1),
-(4,6,49410,'Forceful Deflection',1),
-(4,6,49576,'Death Grip',1),
-(4,6,52665,'Sigil',1),
-(4,6,58984,'Shadowmeld',1),
-(4,6,59879,'Blood Plague',1),
-(4,6,59921,'Frost Fever',1),
-(4,6,61437,'Opening',1),
-(4,6,61455,'Runic Focus',1),
-(4,11,81,'Dodge',1),
-(4,11,203,'Unarmed',1),
-(4,11,204,'Defense',1),
-(4,11,227,'Staves',1),
-(4,11,522,'SPELLDEFENSE(DND)',1),
-(4,11,668,'Language Common',1),
-(4,11,671,'Language Darnassian',1),
-(4,11,1178,'Bear Form(Passive)',0),
-(4,11,1180,'Daggers',1),
-(4,11,2382,'Generic',1),
-(4,11,2479,'Honorless Target',1),
-(4,11,3025,'Cat Form(Passive)',0),
-(4,11,3050,'Detect',1),
-(4,11,3365,'Opening',1),
-(4,11,5176,'Wrath',1),
-(4,11,5185,'Healing Touch',1),
-(4,11,5419,'Travel Form(Passive)',0),
-(4,11,5420,'Tree of Life',0),
-(4,11,5421,'Aquatic Form(Passive)',0),
-(4,11,6233,'Closing',1),
-(4,11,6246,'Closing',1),
-(4,11,6247,'Opening',1),
-(4,11,6477,'Opening',1),
-(4,11,6478,'Opening',1),
-(4,11,6603,'Attack',1),
-(4,11,7266,'Duel',1),
-(4,11,7267,'Grovel',1),
-(4,11,7355,'Stuck',1),
-(4,11,8386,'Attacking',1),
-(4,11,9077,'Leather',1),
-(4,11,9078,'Cloth',1),
-(4,11,9125,'Generic',1),
-(4,11,9635,'Dire Bear Form(Passive)',0),
-(4,11,20580,'Shadowmeld',1),
-(4,11,20582,'Quickness',1),
-(4,11,20583,'Nature Resistance',1),
-(4,11,20585,'Wisp Spirit',1),
-(4,11,21009,'Shadowmeld Passive',1),
-(4,11,21178,'Bear Form(Passive2)',0),
-(4,11,21651,'Opening',1),
-(4,11,21652,'Closing',1),
-(4,11,22027,'Remove Insignia',1),
-(4,11,22810,'Opening - No Text',1),
-(4,11,24905,'Moonkin Form(Passive)',0),
-(4,11,27764,'Fetish',1),
-(4,11,33948,'Flight Form(Passive)',0),
-(4,11,34123,'Tree of Life(Passive)',0),
-(4,11,40121,'Swift Flight Form(Passive)',0),
-(5,1,78,'Heroic Strike',1),
-(5,1,81,'Dodge',1),
-(5,1,107,'Block',1),
-(5,1,201,'One-Handed Swords',1),
-(5,1,202,'Two-Handed Swords',1),
-(5,1,203,'Unarmed',1),
-(5,1,204,'Defense',1),
-(5,1,522,'SPELLDEFENSE(DND)',1),
-(5,1,669,'Language Orcish',1),
-(5,1,1180,'Daggers',1),
-(5,1,2382,'Generic',1),
-(5,1,2457,'Battle Stance',1),
-(5,1,2479,'Honorless Target',1),
-(5,1,3050,'Detect',1),
-(5,1,3365,'Opening',1),
-(5,1,5227,'Underwater Breathing',1),
-(5,1,5301,'Defensive State(DND)',1),
-(5,1,6233,'Closing',1),
-(5,1,6246,'Closing',1),
-(5,1,6247,'Opening',1),
-(5,1,6477,'Opening',1),
-(5,1,6478,'Opening',1),
-(5,1,6603,'Attack',1),
-(5,1,7266,'Duel',1),
-(5,1,7267,'Grovel',1),
-(5,1,7355,'Stuck',1),
-(5,1,7376,'Defensive Stance Passive',0),
-(5,1,7381,'Berserker Stance Passive',0),
-(5,1,7744,'Will of the Forsaken',1),
-(5,1,8386,'Attacking',1),
-(5,1,8737,'Mail',1),
-(5,1,9077,'Leather',1),
-(5,1,9078,'Cloth',1),
-(5,1,9116,'Shield',1),
-(5,1,9125,'Generic',1),
-(5,1,17737,'Language Gutterspeak',1),
-(5,1,20577,'Cannibalize',1),
-(5,1,20579,'Shadow Resistance',1),
-(5,1,21156,'Battle Stance Passive',0),
-(5,1,21651,'Opening',1),
-(5,1,21652,'Closing',1),
-(5,1,22027,'Remove Insignia',1),
-(5,1,22810,'Opening - No Text',1),
-(5,1,32215,'Victorious State',1),
-(5,4,81,'Dodge',1),
-(5,4,203,'Unarmed',1),
-(5,4,204,'Defense',1),
-(5,4,522,'SPELLDEFENSE(DND)',1),
-(5,4,669,'Language Orcish',1),
-(5,4,1180,'Daggers',1),
-(5,4,1752,'Sinister Strike',1),
-(5,4,2098,'Eviscerate',1),
-(5,4,2382,'Generic',1),
-(5,4,2479,'Honorless Target',1),
-(5,4,2567,'Thrown',1),
-(5,4,2764,'Throw',1),
-(5,4,3050,'Detect',1),
-(5,4,3365,'Opening',1),
-(5,4,5227,'Underwater Breathing',1),
-(5,4,6233,'Closing',1),
-(5,4,6246,'Closing',1),
-(5,4,6247,'Opening',1),
-(5,4,6477,'Opening',1),
-(5,4,6478,'Opening',1),
-(5,4,6603,'Attack',1),
-(5,4,7266,'Duel',1),
-(5,4,7267,'Grovel',1),
-(5,4,7355,'Stuck',1),
-(5,4,7744,'Will of the Forsaken',1),
-(5,4,8386,'Attacking',1),
-(5,4,9077,'Leather',1),
-(5,4,9078,'Cloth',1),
-(5,4,9125,'Generic',1),
-(5,4,16092,'Defensive State(DND)',1),
-(5,4,17737,'Language Gutterspeak',1),
-(5,4,20577,'Cannibalize',1),
-(5,4,20579,'Shadow Resistance',1),
-(5,4,21184,'Rogue Passive(DND)',1),
-(5,4,21651,'Opening',1),
-(5,4,21652,'Closing',1),
-(5,4,22027,'Remove Insignia',1),
-(5,4,22810,'Opening - No Text',1),
-(5,5,81,'Dodge',1),
-(5,5,198,'One-Handed Maces',1),
-(5,5,203,'Unarmed',1),
-(5,5,204,'Defense',1),
-(5,5,522,'SPELLDEFENSE(DND)',1),
-(5,5,585,'Smite',1),
-(5,5,669,'Language Orcish',1),
-(5,5,2050,'Lesser Heal',1),
-(5,5,2382,'Generic',1),
-(5,5,2479,'Honorless Target',1),
-(5,5,3050,'Detect',1),
-(5,5,3365,'Opening',1),
-(5,5,5009,'Wands',1),
-(5,5,5019,'Shoot',1),
-(5,5,5227,'Underwater Breathing',1),
-(5,5,6233,'Closing',1),
-(5,5,6246,'Closing',1),
-(5,5,6247,'Opening',1),
-(5,5,6477,'Opening',1),
-(5,5,6478,'Opening',1),
-(5,5,6603,'Attack',1),
-(5,5,7266,'Duel',1),
-(5,5,7267,'Grovel',1),
-(5,5,7355,'Stuck',1),
-(5,5,7744,'Will of the Forsaken',1),
-(5,5,8386,'Attacking',1),
-(5,5,9078,'Cloth',1),
-(5,5,9125,'Generic',1),
-(5,5,17737,'Language Gutterspeak',1),
-(5,5,20577,'Cannibalize',1),
-(5,5,20579,'Shadow Resistance',1),
-(5,5,21651,'Opening',1),
-(5,5,21652,'Closing',1),
-(5,5,22027,'Remove Insignia',1),
-(5,5,22810,'Opening - No Text',1),
-(5,6,81,'Dodge',1),
-(5,6,196,'One-Handed Axes',1),
-(5,6,197,'Two-Handed Axes',1),
-(5,6,200,'Polearms',1),
-(5,6,201,'One-Handed Swords',1),
-(5,6,202,'Two-Handed Swords',1),
-(5,6,203,'Unarmed',1),
-(5,6,204,'Defense',1),
-(5,6,522,'SPELLDEFENSE (DND)',1),
-(5,6,669,'Language Orcish',1),
-(5,6,674,'Dual Wield',1),
-(5,6,750,'Plate Mail',1),
-(5,6,1843,'Disarm',1),
-(5,6,2382,'Generic',1),
-(5,6,2479,'Honorless Target',1),
-(5,6,3050,'Detect',1),
-(5,6,3127,'Parry',1),
-(5,6,3275,'Linen Bandage',1),
-(5,6,3276,'Heavy Linen Bandage',1),
-(5,6,3277,'Wool Bandage',1),
-(5,6,3278,'Heavy Wool Bandage',1),
-(5,6,3365,'Opening',1),
-(5,6,5227,'Underwater Breathing',1),
-(5,6,6233,'Closing',1),
-(5,6,6246,'Closing',1),
-(5,6,6247,'Opening',1),
-(5,6,6477,'Opening',1),
-(5,6,6478,'Opening',1),
-(5,6,6603,'Attack',1),
-(5,6,7266,'Duel',1),
-(5,6,7267,'Grovel',1),
-(5,6,7355,'Stuck',1),
-(5,6,7744,'Will of the Forsaken',1),
-(5,6,7928,'Silk Bandage',1),
-(5,6,7929,'Heavy Silk Bandage',1),
-(5,6,7934,'Anti-Venom',1),
-(5,6,8386,'Attacking',1),
-(5,6,8737,'Mail',1),
-(5,6,9077,'Leather',1),
-(5,6,9078,'Cloth',1),
-(5,6,9125,'Generic',1),
-(5,6,10840,'Mageweave Bandage',1),
-(5,6,10841,'Heavy Mageweave Bandage',1),
-(5,6,10846,'First Aid',1),
-(5,6,17737,'Language Gutterspeak',1),
-(5,6,18629,'Runecloth Bandage',1),
-(5,6,18630,'Heavy Runecloth Bandage',1),
-(5,6,20577,'Cannibalize',1),
-(5,6,20579,'Shadow Resistance',1),
-(5,6,21651,'Opening',1),
-(5,6,21652,'Closing',1),
-(5,6,22027,'Remove Insignia',1),
-(5,6,22810,'Opening - No Text',1),
-(5,6,33391,'Journeyman Riding',1),
-(5,6,45462,'Plague Strike',1),
-(5,6,45477,'Icy Touch',1),
-(5,6,45902,'Blood Strike',1),
-(5,6,45903,'Offensive State (DND)',1),
-(5,6,45927,'Summon Friend',1),
-(5,6,47541,'Death Coil',1),
-(5,6,48266,'Blood Presence',1),
-(5,6,49410,'Forceful Deflection',1),
-(5,6,49576,'Death Grip',1),
-(5,6,52665,'Sigil',1),
-(5,6,59879,'Blood Plague',1),
-(5,6,59921,'Frost Fever',1),
-(5,6,61437,'Opening',1),
-(5,6,61455,'Runic Focus',1),
-(5,8,81,'Dodge',1),
-(5,8,133,'Fireball',1),
-(5,8,168,'Frost Armor',1),
-(5,8,203,'Unarmed',1),
-(5,8,204,'Defense',1),
-(5,8,227,'Staves',1),
-(5,8,522,'SPELLDEFENSE(DND)',1),
-(5,8,669,'Language Orcish',1),
-(5,8,2382,'Generic',1),
-(5,8,2479,'Honorless Target',1),
-(5,8,3050,'Detect',1),
-(5,8,3365,'Opening',1),
-(5,8,5009,'Wands',1),
-(5,8,5019,'Shoot',1),
-(5,8,5227,'Underwater Breathing',1),
-(5,8,6233,'Closing',1),
-(5,8,6246,'Closing',1),
-(5,8,6247,'Opening',1),
-(5,8,6477,'Opening',1),
-(5,8,6478,'Opening',1),
-(5,8,6603,'Attack',1),
-(5,8,7266,'Duel',1),
-(5,8,7267,'Grovel',1),
-(5,8,7355,'Stuck',1),
-(5,8,7744,'Will of the Forsaken',1),
-(5,8,8386,'Attacking',1),
-(5,8,9078,'Cloth',1),
-(5,8,9125,'Generic',1),
-(5,8,17737,'Language Gutterspeak',1),
-(5,8,20577,'Cannibalize',1),
-(5,8,20579,'Shadow Resistance',1),
-(5,8,21651,'Opening',1),
-(5,8,21652,'Closing',1),
-(5,8,22027,'Remove Insignia',1),
-(5,8,22810,'Opening - No Text',1),
-(5,9,81,'Dodge',1),
-(5,9,203,'Unarmed',1),
-(5,9,204,'Defense',1),
-(5,9,522,'SPELLDEFENSE(DND)',1),
-(5,9,669,'Language Orcish',1),
-(5,9,686,'Shadow Bolt',1),
-(5,9,687,'Demon Skin',1),
-(5,9,1180,'Daggers',1),
-(5,9,2382,'Generic',1),
-(5,9,2479,'Honorless Target',1),
-(5,9,3050,'Detect',1),
-(5,9,3365,'Opening',1),
-(5,9,5009,'Wands',1),
-(5,9,5019,'Shoot',1),
-(5,9,5227,'Underwater Breathing',1),
-(5,9,6233,'Closing',1),
-(5,9,6246,'Closing',1),
-(5,9,6247,'Opening',1),
-(5,9,6477,'Opening',1),
-(5,9,6478,'Opening',1),
-(5,9,6603,'Attack',1),
-(5,9,7266,'Duel',1),
-(5,9,7267,'Grovel',1),
-(5,9,7355,'Stuck',1),
-(5,9,7744,'Will of the Forsaken',1),
-(5,9,8386,'Attacking',1),
-(5,9,9078,'Cloth',1),
-(5,9,9125,'Generic',1),
-(5,9,17737,'Language Gutterspeak',1),
-(5,9,20577,'Cannibalize',1),
-(5,9,20579,'Shadow Resistance',1),
-(5,9,21651,'Opening',1),
-(5,9,21652,'Closing',1),
-(5,9,22027,'Remove Insignia',1),
-(5,9,22810,'Opening - No Text',1),
-(6,1,78,'Heroic Strike',1),
-(6,1,81,'Dodge',1),
-(6,1,107,'Block',1),
-(6,1,196,'One-Handed Axes',1),
-(6,1,198,'One-Handed Maces',1),
-(6,1,199,'Two-Handed Maces',1),
-(6,1,203,'Unarmed',1),
-(6,1,204,'Defense',1),
-(6,1,522,'SPELLDEFENSE(DND)',1),
-(6,1,669,'Language Orcish',1),
-(6,1,670,'Language Taurahe',1),
-(6,1,2382,'Generic',1),
-(6,1,2457,'Battle Stance',1),
-(6,1,2479,'Honorless Target',1),
-(6,1,3050,'Detect',1),
-(6,1,3365,'Opening',1),
-(6,1,5301,'Defensive State(DND)',1),
-(6,1,6233,'Closing',1),
-(6,1,6246,'Closing',1),
-(6,1,6247,'Opening',1),
-(6,1,6477,'Opening',1),
-(6,1,6478,'Opening',1),
-(6,1,6603,'Attack',1),
-(6,1,7266,'Duel',1),
-(6,1,7267,'Grovel',1),
-(6,1,7355,'Stuck',1),
-(6,1,7376,'Defensive Stance Passive',0),
-(6,1,7381,'Berserker Stance Passive',0),
-(6,1,8386,'Attacking',1),
-(6,1,8737,'Mail',1),
-(6,1,9077,'Leather',1),
-(6,1,9078,'Cloth',1),
-(6,1,9116,'Shield',1),
-(6,1,9125,'Generic',1),
-(6,1,20549,'War Stomp',1),
-(6,1,20550,'Endurance',1),
-(6,1,20551,'Nature Resistance',1),
-(6,1,20552,'Cultivation',1),
-(6,1,21156,'Battle Stance Passive',0),
-(6,1,21651,'Opening',1),
-(6,1,21652,'Closing',1),
-(6,1,22027,'Remove Insignia',1),
-(6,1,22810,'Opening - No Text',1),
-(6,1,32215,'Victorious State',1),
-(6,3,75,'Auto Shot',1),
-(6,3,81,'Dodge',1),
-(6,3,196,'One-Handed Axes',1),
-(6,3,203,'Unarmed',1),
-(6,3,204,'Defense',1),
-(6,3,266,'Guns',1),
-(6,3,522,'SPELLDEFENSE(DND)',1),
-(6,3,669,'Language Orcish',1),
-(6,3,670,'Language Taurahe',1),
-(6,3,2382,'Generic',1),
-(6,3,2479,'Honorless Target',1),
-(6,3,2973,'Raptor Strike',1),
-(6,3,3050,'Detect',1),
-(6,3,3365,'Opening',1),
-(6,3,6233,'Closing',1),
-(6,3,6246,'Closing',1),
-(6,3,6247,'Opening',1),
-(6,3,6477,'Opening',1),
-(6,3,6478,'Opening',1),
-(6,3,6603,'Attack',1),
-(6,3,7266,'Duel',1),
-(6,3,7267,'Grovel',1),
-(6,3,7355,'Stuck',1),
-(6,3,8386,'Attacking',1),
-(6,3,9077,'Leather',1),
-(6,3,9078,'Cloth',1),
-(6,3,9125,'Generic',1),
-(6,3,13358,'Defensive State(DND)',1),
-(6,3,20549,'War Stomp',1),
-(6,3,20550,'Endurance',1),
-(6,3,20551,'Nature Resistance',1),
-(6,3,20552,'Cultivation',1),
-(6,3,21651,'Opening',1),
-(6,3,21652,'Closing',1),
-(6,3,22027,'Remove Insignia',1),
-(6,3,22810,'Opening - No Text',1),
-(6,3,24949,'Defensive State 2(DND)',1),
-(6,3,34082,'Advantaged State(DND)',1),
-(6,6,81,'Dodge',1),
-(6,6,196,'One-Handed Axes',1),
-(6,6,197,'Two-Handed Axes',1),
-(6,6,200,'Polearms',1),
-(6,6,201,'One-Handed Swords',1),
-(6,6,202,'Two-Handed Swords',1),
-(6,6,203,'Unarmed',1),
-(6,6,204,'Defense',1),
-(6,6,522,'SPELLDEFENSE (DND)',1),
-(6,6,669,'Language Orcish',1),
-(6,6,670,'Language Taurahe',1),
-(6,6,674,'Dual Wield',1),
-(6,6,750,'Plate Mail',1),
-(6,6,1843,'Disarm',1),
-(6,6,2382,'Generic',1),
-(6,6,2479,'Honorless Target',1),
-(6,6,3050,'Detect',1),
-(6,6,3127,'Parry',1),
-(6,6,3275,'Linen Bandage',1),
-(6,6,3276,'Heavy Linen Bandage',1),
-(6,6,3277,'Wool Bandage',1),
-(6,6,3278,'Heavy Wool Bandage',1),
-(6,6,3365,'Opening',1),
-(6,6,6233,'Closing',1),
-(6,6,6246,'Closing',1),
-(6,6,6247,'Opening',1),
-(6,6,6477,'Opening',1),
-(6,6,6478,'Opening',1),
-(6,6,6603,'Attack',1),
-(6,6,7266,'Duel',1),
-(6,6,7267,'Grovel',1),
-(6,6,7355,'Stuck',1),
-(6,6,7928,'Silk Bandage',1),
-(6,6,7929,'Heavy Silk Bandage',1),
-(6,6,7934,'Anti-Venom',1),
-(6,6,8386,'Attacking',1),
-(6,6,8737,'Mail',1),
-(6,6,9077,'Leather',1),
-(6,6,9078,'Cloth',1),
-(6,6,9125,'Generic',1),
-(6,6,10840,'Mageweave Bandage',1),
-(6,6,10841,'Heavy Mageweave Bandage',1),
-(6,6,10846,'First Aid',1),
-(6,6,18629,'Runecloth Bandage',1),
-(6,6,18630,'Heavy Runecloth Bandage',1),
-(6,6,20549,'War Stomp',1),
-(6,6,20550,'Endurance',1),
-(6,6,20551,'Nature Resistance',1),
-(6,6,20552,'Cultivation',1),
-(6,6,21651,'Opening',1),
-(6,6,21652,'Closing',1),
-(6,6,22027,'Remove Insignia',1),
-(6,6,22810,'Opening - No Text',1),
-(6,6,33391,'Journeyman Riding',1),
-(6,6,45462,'Plague Strike',1),
-(6,6,45477,'Icy Touch',1),
-(6,6,45902,'Blood Strike',1),
-(6,6,45903,'Offensive State (DND)',1),
-(6,6,45927,'Summon Friend',1),
-(6,6,47541,'Death Coil',1),
-(6,6,48266,'Blood Presence',1),
-(6,6,49410,'Forceful Deflection',1),
-(6,6,49576,'Death Grip',1),
-(6,6,52665,'Sigil',1),
-(6,6,59879,'Blood Plague',1),
-(6,6,59921,'Frost Fever',1),
-(6,6,61437,'Opening',1),
-(6,6,61455,'Runic Focus',1),
-(6,7,81,'Dodge',1),
-(6,7,107,'Block',1),
-(6,7,198,'One-Handed Maces',1),
-(6,7,203,'Unarmed',1),
-(6,7,204,'Defense',1),
-(6,7,227,'Staves',1),
-(6,7,331,'Healing Wave',1),
-(6,7,403,'Lightning Bolt',1),
-(6,7,522,'SPELLDEFENSE(DND)',1),
-(6,7,669,'Language Orcish',1),
-(6,7,670,'Language Taurahe',1),
-(6,7,2382,'Generic',1),
-(6,7,2479,'Honorless Target',1),
-(6,7,3050,'Detect',1),
-(6,7,3365,'Opening',1),
-(6,7,6233,'Closing',1),
-(6,7,6246,'Closing',1),
-(6,7,6247,'Opening',1),
-(6,7,6477,'Opening',1),
-(6,7,6478,'Opening',1),
-(6,7,6603,'Attack',1),
-(6,7,7266,'Duel',1),
-(6,7,7267,'Grovel',1),
-(6,7,7355,'Stuck',1),
-(6,7,8386,'Attacking',1),
-(6,7,9077,'Leather',1),
-(6,7,9078,'Cloth',1),
-(6,7,9116,'Shield',1),
-(6,7,9125,'Generic',1),
-(6,7,20549,'War Stomp',1),
-(6,7,20550,'Endurance',1),
-(6,7,20551,'Nature Resistance',1),
-(6,7,20552,'Cultivation',1),
-(6,7,21651,'Opening',1),
-(6,7,21652,'Closing',1),
-(6,7,22027,'Remove Insignia',1),
-(6,7,22810,'Opening - No Text',1),
-(6,7,27763,'Totem',1),
-(6,11,81,'Dodge',1),
-(6,11,198,'One-Handed Maces',1),
-(6,11,203,'Unarmed',1),
-(6,11,204,'Defense',1),
-(6,11,227,'Staves',1),
-(6,11,522,'SPELLDEFENSE(DND)',1),
-(6,11,669,'Language Orcish',1),
-(6,11,670,'Language Taurahe',1),
-(6,11,1178,'Bear Form(Passive)',0),
-(6,11,2382,'Generic',1),
-(6,11,2479,'Honorless Target',1),
-(6,11,3025,'Cat Form(Passive)',0),
-(6,11,3050,'Detect',1),
-(6,11,3365,'Opening',1),
-(6,11,5176,'Wrath',1),
-(6,11,5185,'Healing Touch',1),
-(6,11,5419,'Travel Form(Passive)',0),
-(6,11,5420,'Tree of Life',0),
-(6,11,5421,'Aquatic Form(Passive)',0),
-(6,11,6233,'Closing',1),
-(6,11,6246,'Closing',1),
-(6,11,6247,'Opening',1),
-(6,11,6477,'Opening',1),
-(6,11,6478,'Opening',1),
-(6,11,6603,'Attack',1),
-(6,11,7266,'Duel',1),
-(6,11,7267,'Grovel',1),
-(6,11,7355,'Stuck',1),
-(6,11,8386,'Attacking',1),
-(6,11,9077,'Leather',1),
-(6,11,9078,'Cloth',1),
-(6,11,9125,'Generic',1),
-(6,11,9635,'Dire Bear Form(Passive)',0),
-(6,11,20549,'War Stomp',1),
-(6,11,20550,'Endurance',1),
-(6,11,20551,'Nature Resistance',1),
-(6,11,20552,'Cultivation',1),
-(6,11,21178,'Bear Form(Passive2)',0),
-(6,11,21651,'Opening',1),
-(6,11,21652,'Closing',1),
-(6,11,22027,'Remove Insignia',1),
-(6,11,22810,'Opening - No Text',1),
-(6,11,24905,'Moonkin Form(Passive)',0),
-(6,11,27764,'Fetish',1),
-(6,11,33948,'Flight Form(Passive)',0),
-(6,11,34123,'Tree of Life(Passive)',0),
-(6,11,40121,'Swift Flight Form(Passive)',0),
-(7,1,78,'Heroic Strike',1),
-(7,1,81,'Dodge',1),
-(7,1,107,'Block',1),
-(7,1,198,'One-Handed Maces',1),
-(7,1,201,'One-Handed Swords',1),
-(7,1,203,'Unarmed',1),
-(7,1,204,'Defense',1),
-(7,1,522,'SPELLDEFENSE(DND)',1),
-(7,1,668,'Language Common',1),
-(7,1,1180,'Daggers',1),
-(7,1,2382,'Generic',1),
-(7,1,2457,'Battle Stance',1),
-(7,1,2479,'Honorless Target',1),
-(7,1,3050,'Detect',1),
-(7,1,3365,'Opening',1),
-(7,1,5301,'Defensive State(DND)',1),
-(7,1,6233,'Closing',1),
-(7,1,6246,'Closing',1),
-(7,1,6247,'Opening',1),
-(7,1,6477,'Opening',1),
-(7,1,6478,'Opening',1),
-(7,1,6603,'Attack',1),
-(7,1,7266,'Duel',1),
-(7,1,7267,'Grovel',1),
-(7,1,7340,'Language Gnomish',1),
-(7,1,7355,'Stuck',1),
-(7,1,7376,'Defensive Stance Passive',0),
-(7,1,7381,'Berserker Stance Passive',0),
-(7,1,8386,'Attacking',1),
-(7,1,8737,'Mail',1),
-(7,1,9077,'Leather',1),
-(7,1,9078,'Cloth',1),
-(7,1,9116,'Shield',1),
-(7,1,9125,'Generic',1),
-(7,1,20589,'Escape Artist',1),
-(7,1,20591,'Expansive Mind',1),
-(7,1,20592,'Arcane Resistance',1),
-(7,1,20593,'Engineering Specialization',1),
-(7,1,21156,'Battle Stance Passive',0),
-(7,1,21651,'Opening',1),
-(7,1,21652,'Closing',1),
-(7,1,22027,'Remove Insignia',1),
-(7,1,22810,'Opening - No Text',1),
-(7,1,32215,'Victorious State',1),
-(7,4,81,'Dodge',1),
-(7,4,203,'Unarmed',1),
-(7,4,204,'Defense',1),
-(7,4,522,'SPELLDEFENSE(DND)',1),
-(7,4,668,'Language Common',1),
-(7,4,1180,'Daggers',1),
-(7,4,1752,'Sinister Strike',1),
-(7,4,2098,'Eviscerate',1),
-(7,4,2382,'Generic',1),
-(7,4,2479,'Honorless Target',1),
-(7,4,2567,'Thrown',1),
-(7,4,2764,'Throw',1),
-(7,4,3050,'Detect',1),
-(7,4,3365,'Opening',1),
-(7,4,6233,'Closing',1),
-(7,4,6246,'Closing',1),
-(7,4,6247,'Opening',1),
-(7,4,6477,'Opening',1),
-(7,4,6478,'Opening',1),
-(7,4,6603,'Attack',1),
-(7,4,7266,'Duel',1),
-(7,4,7267,'Grovel',1),
-(7,4,7340,'Language Gnomish',1),
-(7,4,7355,'Stuck',1),
-(7,4,8386,'Attacking',1),
-(7,4,9077,'Leather',1),
-(7,4,9078,'Cloth',1),
-(7,4,9125,'Generic',1),
-(7,4,16092,'Defensive State(DND)',1),
-(7,4,20589,'Escape Artist',1),
-(7,4,20591,'Expansive Mind',1),
-(7,4,20592,'Arcane Resistance',1),
-(7,4,20593,'Engineering Specialization',1),
-(7,4,21184,'Rogue Passive(DND)',1),
-(7,4,21651,'Opening',1),
-(7,4,21652,'Closing',1),
-(7,4,22027,'Remove Insignia',1),
-(7,4,22810,'Opening - No Text',1),
-(7,6,81,'Dodge',1),
-(7,6,196,'One-Handed Axes',1),
-(7,6,197,'Two-Handed Axes',1),
-(7,6,200,'Polearms',1),
-(7,6,201,'One-Handed Swords',1),
-(7,6,202,'Two-Handed Swords',1),
-(7,6,203,'Unarmed',1),
-(7,6,204,'Defense',1),
-(7,6,522,'SPELLDEFENSE (DND)',1),
-(7,6,668,'Language Common',1),
-(7,6,674,'Dual Wield',1),
-(7,6,750,'Plate Mail',1),
-(7,6,1843,'Disarm',1),
-(7,6,2382,'Generic',1),
-(7,6,2479,'Honorless Target',1),
-(7,6,3050,'Detect',1),
-(7,6,3127,'Parry',1),
-(7,6,3275,'Linen Bandage',1),
-(7,6,3276,'Heavy Linen Bandage',1),
-(7,6,3277,'Wool Bandage',1),
-(7,6,3278,'Heavy Wool Bandage',1),
-(7,6,3365,'Opening',1),
-(7,6,6233,'Closing',1),
-(7,6,6246,'Closing',1),
-(7,6,6247,'Opening',1),
-(7,6,6477,'Opening',1),
-(7,6,6478,'Opening',1),
-(7,6,6603,'Attack',1),
-(7,6,7266,'Duel',1),
-(7,6,7267,'Grovel',1),
-(7,6,7340,'Language Gnomish',1),
-(7,6,7355,'Stuck',1),
-(7,6,7928,'Silk Bandage',1),
-(7,6,7929,'Heavy Silk Bandage',1),
-(7,6,7934,'Anti-Venom',1),
-(7,6,8386,'Attacking',1),
-(7,6,8737,'Mail',1),
-(7,6,9077,'Leather',1),
-(7,6,9078,'Cloth',1),
-(7,6,9125,'Generic',1),
-(7,6,10840,'Mageweave Bandage',1),
-(7,6,10841,'Heavy Mageweave Bandage',1),
-(7,6,10846,'First Aid',1),
-(7,6,18629,'Runecloth Bandage',1),
-(7,6,18630,'Heavy Runecloth Bandage',1),
-(7,6,20589,'Escape Artist',1),
-(7,6,20591,'Expansive Mind',1),
-(7,6,20592,'Arcane Resistance',1),
-(7,6,20593,'Engineering Specialization',1),
-(7,6,21651,'Opening',1),
-(7,6,21652,'Closing',1),
-(7,6,22027,'Remove Insignia',1),
-(7,6,22810,'Opening - No Text',1),
-(7,6,33391,'Journeyman Riding',1),
-(7,6,45462,'Plague Strike',1),
-(7,6,45477,'Icy Touch',1),
-(7,6,45902,'Blood Strike',1),
-(7,6,45903,'Offensive State (DND)',1),
-(7,6,45927,'Summon Friend',1),
-(7,6,47541,'Death Coil',1),
-(7,6,48266,'Blood Presence',1),
-(7,6,49410,'Forceful Deflection',1),
-(7,6,49576,'Death Grip',1),
-(7,6,52665,'Sigil',1),
-(7,6,59879,'Blood Plague',1),
-(7,6,59921,'Frost Fever',1),
-(7,6,61437,'Opening',1),
-(7,6,61455,'Runic Focus',1),
-(7,8,81,'Dodge',1),
-(7,8,133,'Fireball',1),
-(7,8,168,'Frost Armor',1),
-(7,8,203,'Unarmed',1),
-(7,8,204,'Defense',1),
-(7,8,227,'Staves',1),
-(7,8,522,'SPELLDEFENSE(DND)',1),
-(7,8,668,'Language Common',1),
-(7,8,2382,'Generic',1),
-(7,8,2479,'Honorless Target',1),
-(7,8,3050,'Detect',1),
-(7,8,3365,'Opening',1),
-(7,8,5009,'Wands',1),
-(7,8,5019,'Shoot',1),
-(7,8,6233,'Closing',1),
-(7,8,6246,'Closing',1),
-(7,8,6247,'Opening',1),
-(7,8,6477,'Opening',1),
-(7,8,6478,'Opening',1),
-(7,8,6603,'Attack',1),
-(7,8,7266,'Duel',1),
-(7,8,7267,'Grovel',1),
-(7,8,7340,'Language Gnomish',1),
-(7,8,7355,'Stuck',1),
-(7,8,8386,'Attacking',1),
-(7,8,9078,'Cloth',1),
-(7,8,9125,'Generic',1),
-(7,8,20589,'Escape Artist',1),
-(7,8,20591,'Expansive Mind',1),
-(7,8,20592,'Arcane Resistance',1),
-(7,8,20593,'Engineering Specialization',1),
-(7,8,21651,'Opening',1),
-(7,8,21652,'Closing',1),
-(7,8,22027,'Remove Insignia',1),
-(7,8,22810,'Opening - No Text',1),
-(7,9,81,'Dodge',1),
-(7,9,203,'Unarmed',1),
-(7,9,204,'Defense',1),
-(7,9,522,'SPELLDEFENSE(DND)',1),
-(7,9,668,'Language Common',1),
-(7,9,686,'Shadow Bolt',1),
-(7,9,687,'Demon Skin',1),
-(7,9,1180,'Daggers',1),
-(7,9,2382,'Generic',1),
-(7,9,2479,'Honorless Target',1),
-(7,9,3050,'Detect',1),
-(7,9,3365,'Opening',1),
-(7,9,5009,'Wands',1),
-(7,9,5019,'Shoot',1),
-(7,9,6233,'Closing',1),
-(7,9,6246,'Closing',1),
-(7,9,6247,'Opening',1),
-(7,9,6477,'Opening',1),
-(7,9,6478,'Opening',1),
-(7,9,6603,'Attack',1),
-(7,9,7266,'Duel',1),
-(7,9,7267,'Grovel',1),
-(7,9,7340,'Language Gnomish',1),
-(7,9,7355,'Stuck',1),
-(7,9,8386,'Attacking',1),
-(7,9,9078,'Cloth',1),
-(7,9,9125,'Generic',1),
-(7,9,20589,'Escape Artist',1),
-(7,9,20591,'Expansive Mind',1),
-(7,9,20592,'Arcane Resistance',1),
-(7,9,20593,'Engineering Specialization',1),
-(7,9,21651,'Opening',1),
-(7,9,21652,'Closing',1),
-(7,9,22027,'Remove Insignia',1),
-(7,9,22810,'Opening - No Text',1),
-(8,1,78,'Heroic Strike',1),
-(8,1,81,'Dodge',1),
-(8,1,107,'Block',1),
-(8,1,196,'One-Handed Axes',1),
-(8,1,203,'Unarmed',1),
-(8,1,204,'Defense',1),
-(8,1,522,'SPELLDEFENSE(DND)',1),
-(8,1,669,'Language Orcish',1),
-(8,1,1180,'Daggers',1),
-(8,1,2382,'Generic',1),
-(8,1,2457,'Battle Stance',1),
-(8,1,2479,'Honorless Target',1),
-(8,1,2567,'Thrown',1),
-(8,1,2764,'Throw',1),
-(8,1,3050,'Detect',1),
-(8,1,3365,'Opening',1),
-(8,1,5301,'Defensive State(DND)',1),
-(8,1,6233,'Closing',1),
-(8,1,6246,'Closing',1),
-(8,1,6247,'Opening',1),
-(8,1,6477,'Opening',1),
-(8,1,6478,'Opening',1),
-(8,1,6603,'Attack',1),
-(8,1,7266,'Duel',1),
-(8,1,7267,'Grovel',1),
-(8,1,7341,'Language Troll',1),
-(8,1,7355,'Stuck',1),
-(8,1,7376,'Defensive Stance Passive',0),
-(8,1,7381,'Berserker Stance Passive',0),
-(8,1,8386,'Attacking',1),
-(8,1,8737,'Mail',1),
-(8,1,9077,'Leather',1),
-(8,1,9078,'Cloth',1),
-(8,1,9116,'Shield',1),
-(8,1,9125,'Generic',1),
-(8,1,20555,'Regeneration',1),
-(8,1,20557,'Beast Slaying',1),
-(8,1,20558,'Throwing Specialization',1),
-(8,1,21156,'Battle Stance Passive',0),
-(8,1,21651,'Opening',1),
-(8,1,21652,'Closing',1),
-(8,1,22027,'Remove Insignia',1),
-(8,1,22810,'Opening - No Text',1),
-(8,1,26290,'Bow Specialization',1),
-(8,1,26296,'Berserking',1),
-(8,1,32215,'Victorious State',1),
-(8,3,75,'Auto Shot',1),
-(8,3,81,'Dodge',1),
-(8,3,196,'One-Handed Axes',1),
-(8,3,203,'Unarmed',1),
-(8,3,204,'Defense',1),
-(8,3,264,'Bows',1),
-(8,3,522,'SPELLDEFENSE(DND)',1),
-(8,3,669,'Language Orcish',1),
-(8,3,2382,'Generic',1),
-(8,3,2479,'Honorless Target',1),
-(8,3,2973,'Raptor Strike',1),
-(8,3,3050,'Detect',1),
-(8,3,3365,'Opening',1),
-(8,3,6233,'Closing',1),
-(8,3,6246,'Closing',1),
-(8,3,6247,'Opening',1),
-(8,3,6477,'Opening',1),
-(8,3,6478,'Opening',1),
-(8,3,6603,'Attack',1),
-(8,3,7266,'Duel',1),
-(8,3,7267,'Grovel',1),
-(8,3,7341,'Language Troll',1),
-(8,3,7355,'Stuck',1),
-(8,3,8386,'Attacking',1),
-(8,3,9077,'Leather',1),
-(8,3,9078,'Cloth',1),
-(8,3,9125,'Generic',1),
-(8,3,13358,'Defensive State(DND)',1),
-(8,3,20554,'Berserking',1),
-(8,3,20555,'Regeneration',1),
-(8,3,20557,'Beast Slaying',1),
-(8,3,20558,'Throwing Specialization',1),
-(8,3,21651,'Opening',1),
-(8,3,21652,'Closing',1),
-(8,3,22027,'Remove Insignia',1),
-(8,3,22810,'Opening - No Text',1),
-(8,3,24949,'Defensive State 2(DND)',1),
-(8,3,26290,'Bow Specialization',1),
-(8,3,34082,'Advantaged State(DND)',1),
-(8,4,81,'Dodge',1),
-(8,4,203,'Unarmed',1),
-(8,4,204,'Defense',1),
-(8,4,522,'SPELLDEFENSE(DND)',1),
-(8,4,669,'Language Orcish',1),
-(8,4,1180,'Daggers',1),
-(8,4,1752,'Sinister Strike',1),
-(8,4,2098,'Eviscerate',1),
-(8,4,2382,'Generic',1),
-(8,4,2479,'Honorless Target',1),
-(8,4,2567,'Thrown',1),
-(8,4,2764,'Throw',1),
-(8,4,3050,'Detect',1),
-(8,4,3365,'Opening',1),
-(8,4,6233,'Closing',1),
-(8,4,6246,'Closing',1),
-(8,4,6247,'Opening',1),
-(8,4,6477,'Opening',1),
-(8,4,6478,'Opening',1),
-(8,4,6603,'Attack',1),
-(8,4,7266,'Duel',1),
-(8,4,7267,'Grovel',1),
-(8,4,7341,'Language Troll',1),
-(8,4,7355,'Stuck',1),
-(8,4,8386,'Attacking',1),
-(8,4,9077,'Leather',1),
-(8,4,9078,'Cloth',1),
-(8,4,9125,'Generic',1),
-(8,4,16092,'Defensive State(DND)',1),
-(8,4,20555,'Regeneration',1),
-(8,4,20557,'Beast Slaying',1),
-(8,4,20558,'Throwing Specialization',1),
-(8,4,21184,'Rogue Passive(DND)',1),
-(8,4,21651,'Opening',1),
-(8,4,21652,'Closing',1),
-(8,4,22027,'Remove Insignia',1),
-(8,4,22810,'Opening - No Text',1),
-(8,4,26290,'Bow Specialization',1),
-(8,4,26297,'Berserking',1),
-(8,5,81,'Dodge',1),
-(8,5,198,'One-Handed Maces',1),
-(8,5,203,'Unarmed',1),
-(8,5,204,'Defense',1),
-(8,5,522,'SPELLDEFENSE(DND)',1),
-(8,5,585,'Smite',1),
-(8,5,669,'Language Orcish',1),
-(8,5,2050,'Lesser Heal',1),
-(8,5,2382,'Generic',1),
-(8,5,2479,'Honorless Target',1),
-(8,5,3050,'Detect',1),
-(8,5,3365,'Opening',1),
-(8,5,5009,'Wands',1),
-(8,5,5019,'Shoot',1),
-(8,5,6233,'Closing',1),
-(8,5,6246,'Closing',1),
-(8,5,6247,'Opening',1),
-(8,5,6477,'Opening',1),
-(8,5,6478,'Opening',1),
-(8,5,6603,'Attack',1),
-(8,5,7266,'Duel',1),
-(8,5,7267,'Grovel',1),
-(8,5,7341,'Language Troll',1),
-(8,5,7355,'Stuck',1),
-(8,5,8386,'Attacking',1),
-(8,5,9078,'Cloth',1),
-(8,5,9125,'Generic',1),
-(8,5,20554,'Berserking',1),
-(8,5,20555,'Regeneration',1),
-(8,5,20557,'Beast Slaying',1),
-(8,5,20558,'Throwing Specialization',1),
-(8,5,21651,'Opening',1),
-(8,5,21652,'Closing',1),
-(8,5,22027,'Remove Insignia',1),
-(8,5,22810,'Opening - No Text',1),
-(8,5,26290,'Bow Specialization',1),
-(8,6,81,'Dodge',1),
-(8,6,196,'One-Handed Axes',1),
-(8,6,197,'Two-Handed Axes',1),
-(8,6,200,'Polearms',1),
-(8,6,201,'One-Handed Swords',1),
-(8,6,202,'Two-Handed Swords',1),
-(8,6,203,'Unarmed',1),
-(8,6,204,'Defense',1),
-(8,6,522,'SPELLDEFENSE (DND)',1),
-(8,6,669,'Language Orcish',1),
-(8,6,674,'Dual Wield',1),
-(8,6,750,'Plate Mail',1),
-(8,6,1843,'Disarm',1),
-(8,6,2382,'Generic',1),
-(8,6,2479,'Honorless Target',1),
-(8,6,3050,'Detect',1),
-(8,6,3127,'Parry',1),
-(8,6,3275,'Linen Bandage',1),
-(8,6,3276,'Heavy Linen Bandage',1),
-(8,6,3277,'Wool Bandage',1),
-(8,6,3278,'Heavy Wool Bandage',1),
-(8,6,3365,'Opening',1),
-(8,6,6233,'Closing',1),
-(8,6,6246,'Closing',1),
-(8,6,6247,'Opening',1),
-(8,6,6477,'Opening',1),
-(8,6,6478,'Opening',1),
-(8,6,6603,'Attack',1),
-(8,6,7266,'Duel',1),
-(8,6,7267,'Grovel',1),
-(8,6,7341,'Language Troll',1),
-(8,6,7355,'Stuck',1),
-(8,6,7928,'Silk Bandage',1),
-(8,6,7929,'Heavy Silk Bandage',1),
-(8,6,7934,'Anti-Venom',1),
-(8,6,8386,'Attacking',1),
-(8,6,8737,'Mail',1),
-(8,6,9077,'Leather',1),
-(8,6,9078,'Cloth',1),
-(8,6,9125,'Generic',1),
-(8,6,10840,'Mageweave Bandage',1),
-(8,6,10841,'Heavy Mageweave Bandage',1),
-(8,6,10846,'First Aid',1),
-(8,6,18629,'Runecloth Bandage',1),
-(8,6,18630,'Heavy Runecloth Bandage',1),
-(8,6,20555,'Regeneration',1),
-(8,6,20557,'Beast Slaying',1),
-(8,6,20558,'Throwing Specialization',1),
-(8,6,21651,'Opening',1),
-(8,6,21652,'Closing',1),
-(8,6,22027,'Remove Insignia',1),
-(8,6,22810,'Opening - No Text',1),
-(8,6,26290,'Bow Specialization',1),
-(8,6,33391,'Journeyman Riding',1),
-(8,6,45462,'Plague Strike',1),
-(8,6,45477,'Icy Touch',1),
-(8,6,45902,'Blood Strike',1),
-(8,6,45903,'Offensive State (DND)',1),
-(8,6,45927,'Summon Friend',1),
-(8,6,47541,'Death Coil',1),
-(8,6,48266,'Blood Presence',1),
-(8,6,49410,'Forceful Deflection',1),
-(8,6,49576,'Death Grip',1),
-(8,6,50621,'Berserking',1),
-(8,6,52665,'Sigil',1),
-(8,6,58943,'Da Voodoo Shuffle',1),
-(8,6,59879,'Blood Plague',1),
-(8,6,59921,'Frost Fever',1),
-(8,6,61437,'Opening',1),
-(8,6,61455,'Runic Focus',1),
-(8,7,81,'Dodge',1),
-(8,7,107,'Block',1),
-(8,7,198,'One-Handed Maces',1),
-(8,7,203,'Unarmed',1),
-(8,7,204,'Defense',1),
-(8,7,227,'Staves',1),
-(8,7,331,'Healing Wave',1),
-(8,7,403,'Lightning Bolt',1),
-(8,7,522,'SPELLDEFENSE(DND)',1),
-(8,7,669,'Language Orcish',1),
-(8,7,2382,'Generic',1),
-(8,7,2479,'Honorless Target',1),
-(8,7,3050,'Detect',1),
-(8,7,3365,'Opening',1),
-(8,7,6233,'Closing',1),
-(8,7,6246,'Closing',1),
-(8,7,6247,'Opening',1),
-(8,7,6477,'Opening',1),
-(8,7,6478,'Opening',1),
-(8,7,6603,'Attack',1),
-(8,7,7266,'Duel',1),
-(8,7,7267,'Grovel',1),
-(8,7,7341,'Language Troll',1),
-(8,7,7355,'Stuck',1),
-(8,7,8386,'Attacking',1),
-(8,7,9077,'Leather',1),
-(8,7,9078,'Cloth',1),
-(8,7,9116,'Shield',1),
-(8,7,9125,'Generic',1),
-(8,7,20554,'Berserking',1),
-(8,7,20555,'Regeneration',1),
-(8,7,20557,'Beast Slaying',1),
-(8,7,20558,'Throwing Specialization',1),
-(8,7,21651,'Opening',1),
-(8,7,21652,'Closing',1),
-(8,7,22027,'Remove Insignia',1),
-(8,7,22810,'Opening - No Text',1),
-(8,7,26290,'Bow Specialization',1),
-(8,7,27763,'Totem',1),
-(8,8,81,'Dodge',1),
-(8,8,133,'Fireball',1),
-(8,8,168,'Frost Armor',1),
-(8,8,203,'Unarmed',1),
-(8,8,204,'Defense',1),
-(8,8,227,'Staves',1),
-(8,8,522,'SPELLDEFENSE(DND)',1),
-(8,8,669,'Language Orcish',1),
-(8,8,2382,'Generic',1),
-(8,8,2479,'Honorless Target',1),
-(8,8,3050,'Detect',1),
-(8,8,3365,'Opening',1),
-(8,8,5009,'Wands',1),
-(8,8,5019,'Shoot',1),
-(8,8,6233,'Closing',1),
-(8,8,6246,'Closing',1),
-(8,8,6247,'Opening',1),
-(8,8,6477,'Opening',1),
-(8,8,6478,'Opening',1),
-(8,8,6603,'Attack',1),
-(8,8,7266,'Duel',1),
-(8,8,7267,'Grovel',1),
-(8,8,7341,'Language Troll',1),
-(8,8,7355,'Stuck',1),
-(8,8,8386,'Attacking',1),
-(8,8,9078,'Cloth',1),
-(8,8,9125,'Generic',1),
-(8,8,20554,'Berserking',1),
-(8,8,20555,'Regeneration',1),
-(8,8,20557,'Beast Slaying',1),
-(8,8,20558,'Throwing Specialization',1),
-(8,8,21651,'Opening',1),
-(8,8,21652,'Closing',1),
-(8,8,22027,'Remove Insignia',1),
-(8,8,22810,'Opening - No Text',1),
-(8,8,26290,'Bow Specialization',1),
-(10,2,81,'Dodge',1),
-(10,2,107,'Block',1),
-(10,2,201,'One-Handed Swords',1),
-(10,2,202,'Two-Handed Swords',1),
-(10,2,203,'Unarmed',1),
-(10,2,204,'Defense',1),
-(10,2,522,'SPELLDEFENSE(DND)',1),
-(10,2,635,'Holy Light',1),
-(10,2,669,'Language Orcish',1),
-(10,2,813,'Language Thalassian',1),
-(10,2,822,'Magic Resistance',1),
-(10,2,2382,'Generic',1),
-(10,2,2479,'Honorless Target',1),
-(10,2,3050,'Detect',1),
-(10,2,3365,'Opening',1),
-(10,2,6233,'Closing',1),
-(10,2,6246,'Closing',1),
-(10,2,6247,'Opening',1),
-(10,2,6477,'Opening',1),
-(10,2,6478,'Opening',1),
-(10,2,6603,'Attack',1),
-(10,2,7266,'Duel',1),
-(10,2,7267,'Grovel',1),
-(10,2,7355,'Stuck',1),
-(10,2,8386,'Attacking',1),
-(10,2,8737,'Mail',1),
-(10,2,9077,'Leather',1),
-(10,2,9078,'Cloth',1),
-(10,2,9116,'Shield',1),
-(10,2,9125,'Generic',1),
-(10,2,21084,'Seal of Righteousness',1),
-(10,2,21651,'Opening',1),
-(10,2,21652,'Closing',1),
-(10,2,22027,'Remove Insignia',1),
-(10,2,22810,'Opening - No Text',1),
-(10,2,27762,'Libram',1),
-(10,2,28730,'Arcane Torrent',1),
-(10,2,28734,'Mana Tap',1),
-(10,2,28877,'Arcane Affinity',1),
-(10,3,75,'Auto Shot',1),
-(10,3,81,'Dodge',1),
-(10,3,203,'Unarmed',1),
-(10,3,204,'Defense',1),
-(10,3,264,'Bows',1),
-(10,3,522,'SPELLDEFENSE(DND)',1),
-(10,3,669,'Language Orcish',1),
-(10,3,813,'Language Thalassian',1),
-(10,3,822,'Magic Resistance',1),
-(10,3,1180,'Daggers',1),
-(10,3,2382,'Generic',1),
-(10,3,2479,'Honorless Target',1),
-(10,3,2973,'Raptor Strike',1),
-(10,3,3050,'Detect',1),
-(10,3,3365,'Opening',1),
-(10,3,6233,'Closing',1),
-(10,3,6246,'Closing',1),
-(10,3,6247,'Opening',1),
-(10,3,6477,'Opening',1),
-(10,3,6478,'Opening',1),
-(10,3,6603,'Attack',1),
-(10,3,7266,'Duel',1),
-(10,3,7267,'Grovel',1),
-(10,3,7355,'Stuck',1),
-(10,3,8386,'Attacking',1),
-(10,3,9077,'Leather',1),
-(10,3,9078,'Cloth',1),
-(10,3,9125,'Generic',1),
-(10,3,13358,'Defensive State(DND)',1),
-(10,3,21651,'Opening',1),
-(10,3,21652,'Closing',1),
-(10,3,22027,'Remove Insignia',1),
-(10,3,22810,'Opening - No Text',1),
-(10,3,24949,'Defensive State 2(DND)',1),
-(10,3,28730,'Arcane Torrent',1),
-(10,3,28734,'Mana Tap',1),
-(10,3,28877,'Arcane Affinity',1),
-(10,3,34082,'Advantaged State(DND)',1),
-(10,4,81,'Dodge',1),
-(10,4,203,'Unarmed',1),
-(10,4,204,'Defense',1),
-(10,4,522,'SPELLDEFENSE(DND)',1),
-(10,4,669,'Language Orcish',1),
-(10,4,813,'Language Thalassian',1),
-(10,4,822,'Magic Resistance',1),
-(10,4,1180,'Daggers',1),
-(10,4,1752,'Sinister Strike',1),
-(10,4,2098,'Eviscerate',1),
-(10,4,2382,'Generic',1),
-(10,4,2479,'Honorless Target',1),
-(10,4,2567,'Thrown',1),
-(10,4,2764,'Throw',1),
-(10,4,3050,'Detect',1),
-(10,4,3365,'Opening',1),
-(10,4,6233,'Closing',1),
-(10,4,6246,'Closing',1),
-(10,4,6247,'Opening',1),
-(10,4,6477,'Opening',1),
-(10,4,6478,'Opening',1),
-(10,4,6603,'Attack',1),
-(10,4,7266,'Duel',1),
-(10,4,7267,'Grovel',1),
-(10,4,7355,'Stuck',1),
-(10,4,8386,'Attacking',1),
-(10,4,9077,'Leather',1),
-(10,4,9078,'Cloth',1),
-(10,4,9125,'Generic',1),
-(10,4,16092,'Defensive State(DND)',1),
-(10,4,21184,'Rogue Passive(DND)',1),
-(10,4,21651,'Opening',1),
-(10,4,21652,'Closing',1),
-(10,4,22027,'Remove Insignia',1),
-(10,4,22810,'Opening - No Text',1),
-(10,4,25046,'Arcane Torrent',1),
-(10,4,28734,'Mana Tap',1),
-(10,4,28877,'Arcane Affinity',1),
-(10,5,81,'Dodge',1),
-(10,5,198,'One-Handed Maces',1),
-(10,5,203,'Unarmed',1),
-(10,5,204,'Defense',1),
-(10,5,522,'SPELLDEFENSE(DND)',1),
-(10,5,585,'Smite',1),
-(10,5,669,'Language Orcish',1),
-(10,5,813,'Language Thalassian',1),
-(10,5,822,'Magic Resistance',1),
-(10,5,2050,'Lesser Heal',1),
-(10,5,2382,'Generic',1),
-(10,5,2479,'Honorless Target',1),
-(10,5,3050,'Detect',1),
-(10,5,3365,'Opening',1),
-(10,5,5009,'Wands',1),
-(10,5,5019,'Shoot',1),
-(10,5,6233,'Closing',1),
-(10,5,6246,'Closing',1),
-(10,5,6247,'Opening',1),
-(10,5,6477,'Opening',1),
-(10,5,6478,'Opening',1),
-(10,5,6603,'Attack',1),
-(10,5,7266,'Duel',1),
-(10,5,7267,'Grovel',1),
-(10,5,7355,'Stuck',1),
-(10,5,8386,'Attacking',1),
-(10,5,9078,'Cloth',1),
-(10,5,9125,'Generic',1),
-(10,5,21651,'Opening',1),
-(10,5,21652,'Closing',1),
-(10,5,22027,'Remove Insignia',1),
-(10,5,22810,'Opening - No Text',1),
-(10,5,28730,'Arcane Torrent',1),
-(10,5,28734,'Mana Tap',1),
-(10,5,28877,'Arcane Affinity',1),
-(10,6,81,'Dodge',1),
-(10,6,196,'One-Handed Axes',1),
-(10,6,197,'Two-Handed Axes',1),
-(10,6,200,'Polearms',1),
-(10,6,201,'One-Handed Swords',1),
-(10,6,202,'Two-Handed Swords',1),
-(10,6,203,'Unarmed',1),
-(10,6,204,'Defense',1),
-(10,6,522,'SPELLDEFENSE (DND)',1),
-(10,6,669,'Language Orcish',1),
-(10,6,674,'Dual Wield',1),
-(10,6,750,'Plate Mail',1),
-(10,6,813,'Language Thalassian',1),
-(10,6,822,'Magic Resistance',1),
-(10,6,1843,'Disarm',1),
-(10,6,2382,'Generic',1),
-(10,6,2479,'Honorless Target',1),
-(10,6,3050,'Detect',1),
-(10,6,3127,'Parry',1),
-(10,6,3275,'Linen Bandage',1),
-(10,6,3276,'Heavy Linen Bandage',1),
-(10,6,3277,'Wool Bandage',1),
-(10,6,3278,'Heavy Wool Bandage',1),
-(10,6,3365,'Opening',1),
-(10,6,6233,'Closing',1),
-(10,6,6246,'Closing',1),
-(10,6,6247,'Opening',1),
-(10,6,6477,'Opening',1),
-(10,6,6478,'Opening',1),
-(10,6,6603,'Attack',1),
-(10,6,7266,'Duel',1),
-(10,6,7267,'Grovel',1),
-(10,6,7355,'Stuck',1),
-(10,6,7928,'Silk Bandage',1),
-(10,6,7929,'Heavy Silk Bandage',1),
-(10,6,7934,'Anti-Venom',1),
-(10,6,8386,'Attacking',1),
-(10,6,8737,'Mail',1),
-(10,6,9077,'Leather',1),
-(10,6,9078,'Cloth',1),
-(10,6,9125,'Generic',1),
-(10,6,10840,'Mageweave Bandage',1),
-(10,6,10841,'Heavy Mageweave Bandage',1),
-(10,6,10846,'First Aid',1),
-(10,6,18629,'Runecloth Bandage',1),
-(10,6,18630,'Heavy Runecloth Bandage',1),
-(10,6,21651,'Opening',1),
-(10,6,21652,'Closing',1),
-(10,6,22027,'Remove Insignia',1),
-(10,6,22810,'Opening - No Text',1),
-(10,6,28877,'Arcane Affinity',1),
-(10,6,33391,'Journeyman Riding',1),
-(10,6,45462,'Plague Strike',1),
-(10,6,45477,'Icy Touch',1),
-(10,6,45902,'Blood Strike',1),
-(10,6,45903,'Offensive State (DND)',1),
-(10,6,45927,'Summon Friend',1),
-(10,6,47541,'Death Coil',1),
-(10,6,48266,'Blood Presence',1),
-(10,6,49410,'Forceful Deflection',1),
-(10,6,49576,'Death Grip',1),
-(10,6,50613,'Arcane Torrent',1),
-(10,6,52665,'Sigil',1),
-(10,6,59879,'Blood Plague',1),
-(10,6,59921,'Frost Fever',1),
-(10,6,61437,'Opening',1),
-(10,6,61455,'Runic Focus',1),
-(10,8,81,'Dodge',1),
-(10,8,133,'Fireball',1),
-(10,8,168,'Frost Armor',1),
-(10,8,203,'Unarmed',1),
-(10,8,204,'Defense',1),
-(10,8,227,'Staves',1),
-(10,8,522,'SPELLDEFENSE(DND)',1),
-(10,8,669,'Language Orcish',1),
-(10,8,813,'Language Thalassian',1),
-(10,8,822,'Magic Resistance',1),
-(10,8,2382,'Generic',1),
-(10,8,2479,'Honorless Target',1),
-(10,8,3050,'Detect',1),
-(10,8,3365,'Opening',1),
-(10,8,5009,'Wands',1),
-(10,8,5019,'Shoot',1),
-(10,8,6233,'Closing',1),
-(10,8,6246,'Closing',1),
-(10,8,6247,'Opening',1),
-(10,8,6477,'Opening',1),
-(10,8,6478,'Opening',1),
-(10,8,6603,'Attack',1),
-(10,8,7266,'Duel',1),
-(10,8,7267,'Grovel',1),
-(10,8,7355,'Stuck',1),
-(10,8,8386,'Attacking',1),
-(10,8,9078,'Cloth',1),
-(10,8,9125,'Generic',1),
-(10,8,21651,'Opening',1),
-(10,8,21652,'Closing',1),
-(10,8,22027,'Remove Insignia',1),
-(10,8,22810,'Opening - No Text',1),
-(10,8,28730,'Arcane Torrent',1),
-(10,8,28734,'Mana Tap',1),
-(10,8,28877,'Arcane Affinity',1),
-(10,9,81,'Dodge',1),
-(10,9,203,'Unarmed',1),
-(10,9,204,'Defense',1),
-(10,9,522,'SPELLDEFENSE(DND)',1),
-(10,9,669,'Language Orcish',1),
-(10,9,686,'Shadow Bolt',1),
-(10,9,687,'Demon Skin',1),
-(10,9,813,'Language Thalassian',1),
-(10,9,822,'Magic Resistance',1),
-(10,9,1180,'Daggers',1),
-(10,9,2382,'Generic',1),
-(10,9,2479,'Honorless Target',1),
-(10,9,3050,'Detect',1),
-(10,9,3365,'Opening',1),
-(10,9,5009,'Wands',1),
-(10,9,5019,'Shoot',1),
-(10,9,6233,'Closing',1),
-(10,9,6246,'Closing',1),
-(10,9,6247,'Opening',1),
-(10,9,6477,'Opening',1),
-(10,9,6478,'Opening',1),
-(10,9,6603,'Attack',1),
-(10,9,7266,'Duel',1),
-(10,9,7267,'Grovel',1),
-(10,9,7355,'Stuck',1),
-(10,9,8386,'Attacking',1),
-(10,9,9078,'Cloth',1),
-(10,9,9125,'Generic',1),
-(10,9,21651,'Opening',1),
-(10,9,21652,'Closing',1),
-(10,9,22027,'Remove Insignia',1),
-(10,9,22810,'Opening - No Text',1),
-(10,9,28730,'Arcane Torrent',1),
-(10,9,28734,'Mana Tap',1),
-(10,9,28877,'Arcane Affinity',1),
-(11,1,78,'Heroic Strike',1),
-(11,1,81,'Dodge',1),
-(11,1,107,'Block',1),
-(11,1,198,'One-Handed Maces',1),
-(11,1,201,'One-Handed Swords',1),
-(11,1,202,'Two-Handed Swords',1),
-(11,1,203,'Unarmed',1),
-(11,1,204,'Defense',1),
-(11,1,522,'SPELLDEFENSE(DND)',1),
-(11,1,668,'Language Common',1),
-(11,1,2382,'Generic',1),
-(11,1,2457,'Battle Stance',1),
-(11,1,2479,'Honorless Target',1),
-(11,1,3050,'Detect',1),
-(11,1,3365,'Opening',1),
-(11,1,5301,'Defensive State(DND)',1),
-(11,1,6233,'Closing',1),
-(11,1,6246,'Closing',1),
-(11,1,6247,'Opening',1),
-(11,1,6477,'Opening',1),
-(11,1,6478,'Opening',1),
-(11,1,6562,'Heroic Presence',1),
-(11,1,6603,'Attack',1),
-(11,1,7266,'Duel',1),
-(11,1,7267,'Grovel',1),
-(11,1,7355,'Stuck',1),
-(11,1,7376,'Defensive Stance Passive',0),
-(11,1,7381,'Berserker Stance Passive',0),
-(11,1,8386,'Attacking',1),
-(11,1,8737,'Mail',1),
-(11,1,9077,'Leather',1),
-(11,1,9078,'Cloth',1),
-(11,1,9116,'Shield',1),
-(11,1,9125,'Generic',1),
-(11,1,20579,'Shadow Resistance',1),
-(11,1,21156,'Battle Stance Passive',0),
-(11,1,21651,'Opening',1),
-(11,1,21652,'Closing',1),
-(11,1,22027,'Remove Insignia',1),
-(11,1,22810,'Opening - No Text',1),
-(11,1,28875,'Gemcutting',1),
-(11,1,28880,'Gift of the Naaru',1),
-(11,1,29932,'Language Draenei',1),
-(11,1,32215,'Victorious State',1),
-(11,2,81,'Dodge',1),
-(11,2,107,'Block',1),
-(11,2,198,'One-Handed Maces',1),
-(11,2,199,'Two-Handed Maces',1),
-(11,2,203,'Unarmed',1),
-(11,2,204,'Defense',1),
-(11,2,522,'SPELLDEFENSE(DND)',1),
-(11,2,635,'Holy Light',1),
-(11,2,668,'Language Common',1),
-(11,2,2382,'Generic',1),
-(11,2,2479,'Honorless Target',1),
-(11,2,3050,'Detect',1),
-(11,2,3365,'Opening',1),
-(11,2,6233,'Closing',1),
-(11,2,6246,'Closing',1),
-(11,2,6247,'Opening',1),
-(11,2,6477,'Opening',1),
-(11,2,6478,'Opening',1),
-(11,2,6562,'Heroic Presence',1),
-(11,2,6603,'Attack',1),
-(11,2,7266,'Duel',1),
-(11,2,7267,'Grovel',1),
-(11,2,7355,'Stuck',1),
-(11,2,8386,'Attacking',1),
-(11,2,8737,'Mail',1),
-(11,2,9077,'Leather',1),
-(11,2,9078,'Cloth',1),
-(11,2,9116,'Shield',1),
-(11,2,9125,'Generic',1),
-(11,2,21084,'Seal of Righteousness',1),
-(11,2,20579,'Shadow Resistance',1),
-(11,2,21651,'Opening',1),
-(11,2,21652,'Closing',1),
-(11,2,22027,'Remove Insignia',1),
-(11,2,22810,'Opening - No Text',1),
-(11,2,27762,'Libram',1),
-(11,2,28875,'Gemcutting',1),
-(11,2,28880,'Gift of the Naaru',1),
-(11,2,29932,'Language Draenei',1),
-(11,3,75,'Auto Shot',1),
-(11,3,81,'Dodge',1),
-(11,3,201,'One-Handed Swords',1),
-(11,3,203,'Unarmed',1),
-(11,3,204,'Defense',1),
-(11,3,522,'SPELLDEFENSE(DND)',1),
-(11,3,668,'Language Common',1),
-(11,3,2382,'Generic',1),
-(11,3,2479,'Honorless Target',1),
-(11,3,2973,'Raptor Strike',1),
-(11,3,3050,'Detect',1),
-(11,3,3365,'Opening',1),
-(11,3,5011,'Crossbows',1),
-(11,3,6233,'Closing',1),
-(11,3,6246,'Closing',1),
-(11,3,6247,'Opening',1),
-(11,3,6477,'Opening',1),
-(11,3,6478,'Opening',1),
-(11,3,6562,'Heroic Presence',1),
-(11,3,6603,'Attack',1),
-(11,3,7266,'Duel',1),
-(11,3,7267,'Grovel',1),
-(11,3,7355,'Stuck',1),
-(11,3,8386,'Attacking',1),
-(11,3,9077,'Leather',1),
-(11,3,9078,'Cloth',1),
-(11,3,9125,'Generic',1),
-(11,3,13358,'Defensive State(DND)',1),
-(11,3,20579,'Shadow Resistance',1),
-(11,3,21651,'Opening',1),
-(11,3,21652,'Closing',1),
-(11,3,22027,'Remove Insignia',1),
-(11,3,22810,'Opening - No Text',1),
-(11,3,24949,'Defensive State 2(DND)',1),
-(11,3,28875,'Gemcutting',1),
-(11,3,28880,'Gift of the Naaru',1),
-(11,3,29932,'Language Draenei',1),
-(11,3,34082,'Advantaged State(DND)',1),
-(11,5,81,'Dodge',1),
-(11,5,198,'One-Handed Maces',1),
-(11,5,203,'Unarmed',1),
-(11,5,204,'Defense',1),
-(11,5,522,'SPELLDEFENSE(DND)',1),
-(11,5,585,'Smite',1),
-(11,5,668,'Language Common',1),
-(11,5,2050,'Lesser Heal',1),
-(11,5,2382,'Generic',1),
-(11,5,2479,'Honorless Target',1),
-(11,5,3050,'Detect',1),
-(11,5,3365,'Opening',1),
-(11,5,5009,'Wands',1),
-(11,5,5019,'Shoot',1),
-(11,5,6233,'Closing',1),
-(11,5,6246,'Closing',1),
-(11,5,6247,'Opening',1),
-(11,5,6477,'Opening',1),
-(11,5,6478,'Opening',1),
-(11,5,6603,'Attack',1),
-(11,5,7266,'Duel',1),
-(11,5,7267,'Grovel',1),
-(11,5,7355,'Stuck',1),
-(11,5,8386,'Attacking',1),
-(11,5,9078,'Cloth',1),
-(11,5,9125,'Generic',1),
-(11,5,20579,'Shadow Resistance',1),
-(11,5,21651,'Opening',1),
-(11,5,21652,'Closing',1),
-(11,5,22027,'Remove Insignia',1),
-(11,5,22810,'Opening - No Text',1),
-(11,5,28875,'Gemcutting',1),
-(11,5,28878,'Inspiring Presence',1),
-(11,5,28880,'Gift of the Naaru',1),
-(11,5,29932,'Language Draenei',1),
-(11,6,81,'Dodge',1),
-(11,6,196,'One-Handed Axes',1),
-(11,6,197,'Two-Handed Axes',1),
-(11,6,200,'Polearms',1),
-(11,6,201,'One-Handed Swords',1),
-(11,6,202,'Two-Handed Swords',1),
-(11,6,203,'Unarmed',1),
-(11,6,204,'Defense',1),
-(11,6,522,'SPELLDEFENSE (DND)',1),
-(11,6,668,'Language Common',1),
-(11,6,674,'Dual Wield',1),
-(11,6,750,'Plate Mail',1),
-(11,6,1843,'Disarm',1),
-(11,6,2382,'Generic',1),
-(11,6,2479,'Honorless Target',1),
-(11,6,3050,'Detect',1),
-(11,6,3127,'Parry',1),
-(11,6,3275,'Linen Bandage',1),
-(11,6,3276,'Heavy Linen Bandage',1),
-(11,6,3277,'Wool Bandage',1),
-(11,6,3278,'Heavy Wool Bandage',1),
-(11,6,3365,'Opening',1),
-(11,6,6233,'Closing',1),
-(11,6,6246,'Closing',1),
-(11,6,6247,'Opening',1),
-(11,6,6477,'Opening',1),
-(11,6,6478,'Opening',1),
-(11,6,6562,'Heroic Presence',1),
-(11,6,6603,'Attack',1),
-(11,6,7266,'Duel',1),
-(11,6,7267,'Grovel',1),
-(11,6,7355,'Stuck',1),
-(11,6,7928,'Silk Bandage',1),
-(11,6,7929,'Heavy Silk Bandage',1),
-(11,6,7934,'Anti-Venom',1),
-(11,6,8386,'Attacking',1),
-(11,6,8737,'Mail',1),
-(11,6,9077,'Leather',1),
-(11,6,9078,'Cloth',1),
-(11,6,9125,'Generic',1),
-(11,6,10840,'Mageweave Bandage',1),
-(11,6,10841,'Heavy Mageweave Bandage',1),
-(11,6,10846,'First Aid',1),
-(11,6,18629,'Runecloth Bandage',1),
-(11,6,18630,'Heavy Runecloth Bandage',1),
-(11,6,21651,'Opening',1),
-(11,6,21652,'Closing',1),
-(11,6,22027,'Remove Insignia',1),
-(11,6,22810,'Opening - No Text',1),
-(11,6,28875,'Gemcutting',1),
-(11,6,29932,'Language Draenei',1),
-(11,6,33391,'Journeyman Riding',1),
-(11,6,45462,'Plague Strike',1),
-(11,6,45477,'Icy Touch',1),
-(11,6,45902,'Blood Strike',1),
-(11,6,45903,'Offensive State (DND)',1),
-(11,6,45927,'Summon Friend',1),
-(11,6,47541,'Death Coil',1),
-(11,6,48266,'Blood Presence',1),
-(11,6,49410,'Forceful Deflection',1),
-(11,6,49576,'Death Grip',1),
-(11,6,52665,'Sigil',1),
-(11,6,59539,'Shadow Resistance',1),
-(11,6,59545,'Gift of the Naaru',1),
-(11,6,59879,'Blood Plague',1),
-(11,6,59921,'Frost Fever',1),
-(11,6,61437,'Opening',1),
-(11,6,61455,'Runic Focus',1),
-(11,7,81,'Dodge',1),
-(11,7,107,'Block',1),
-(11,7,198,'One-Handed Maces',1),
-(11,7,203,'Unarmed',1),
-(11,7,204,'Defense',1),
-(11,7,227,'Staves',1),
-(11,7,331,'Healing Wave',1),
-(11,7,403,'Lightning Bolt',1),
-(11,7,522,'SPELLDEFENSE(DND)',1),
-(11,7,668,'Language Common',1),
-(11,7,2382,'Generic',1),
-(11,7,2479,'Honorless Target',1),
-(11,7,3050,'Detect',1),
-(11,7,3365,'Opening',1),
-(11,7,6233,'Closing',1),
-(11,7,6246,'Closing',1),
-(11,7,6247,'Opening',1),
-(11,7,6477,'Opening',1),
-(11,7,6478,'Opening',1),
-(11,7,6603,'Attack',1),
-(11,7,7266,'Duel',1),
-(11,7,7267,'Grovel',1),
-(11,7,7355,'Stuck',1),
-(11,7,8386,'Attacking',1),
-(11,7,9077,'Leather',1),
-(11,7,9078,'Cloth',1),
-(11,7,9116,'Shield',1),
-(11,7,9125,'Generic',1),
-(11,7,20579,'Shadow Resistance',1),
-(11,7,21651,'Opening',1),
-(11,7,21652,'Closing',1),
-(11,7,22027,'Remove Insignia',1),
-(11,7,22810,'Opening - No Text',1),
-(11,7,27763,'Totem',1),
-(11,7,28875,'Gemcutting',1),
-(11,7,28878,'Inspiring Presence',1),
-(11,7,28880,'Gift of the Naaru',1),
-(11,7,29932,'Language Draenei',1),
-(11,8,81,'Dodge',1),
-(11,8,133,'Fireball',1),
-(11,8,168,'Frost Armor',1),
-(11,8,203,'Unarmed',1),
-(11,8,204,'Defense',1),
-(11,8,227,'Staves',1),
-(11,8,522,'SPELLDEFENSE(DND)',1),
-(11,8,668,'Language Common',1),
-(11,8,2382,'Generic',1),
-(11,8,2479,'Honorless Target',1),
-(11,8,3050,'Detect',1),
-(11,8,3365,'Opening',1),
-(11,8,5009,'Wands',1),
-(11,8,5019,'Shoot',1),
-(11,8,6233,'Closing',1),
-(11,8,6246,'Closing',1),
-(11,8,6247,'Opening',1),
-(11,8,6477,'Opening',1),
-(11,8,6478,'Opening',1),
-(11,8,6603,'Attack',1),
-(11,8,7266,'Duel',1),
-(11,8,7267,'Grovel',1),
-(11,8,7355,'Stuck',1),
-(11,8,8386,'Attacking',1),
-(11,8,9078,'Cloth',1),
-(11,8,9125,'Generic',1),
-(11,8,20579,'Shadow Resistance',1),
-(11,8,21651,'Opening',1),
-(11,8,21652,'Closing',1),
-(11,8,22027,'Remove Insignia',1),
-(11,8,22810,'Opening - No Text',1),
-(11,8,28875,'Gemcutting',1),
-(11,8,28878,'Inspiring Presence',1),
-(11,8,28880,'Gift of the Naaru',1),
-(11,8,29932,'Language Draenei',1);
+(1,1,78,'Heroic Strike'),
+(1,1,81,'Dodge'),
+(1,1,107,'Block'),
+(1,1,196,'One-Handed Axes'),
+(1,1,198,'One-Handed Maces'),
+(1,1,201,'One-Handed Swords'),
+(1,1,203,'Unarmed'),
+(1,1,204,'Defense'),
+(1,1,522,'SPELLDEFENSE (DND)'),
+(1,1,668,'Language Common'),
+(1,1,1843,'Disarm'),
+(1,1,2382,'Generic'),
+(1,1,2457,'Battle Stance'),
+(1,1,2479,'Honorless Target'),
+(1,1,3050,'Detect'),
+(1,1,3365,'Opening'),
+(1,1,5301,'Defensive State (DND)'),
+(1,1,6233,'Closing'),
+(1,1,6246,'Closing'),
+(1,1,6247,'Opening'),
+(1,1,6477,'Opening'),
+(1,1,6478,'Opening'),
+(1,1,6603,'Attack'),
+(1,1,7266,'Duel'),
+(1,1,7267,'Grovel'),
+(1,1,7355,'Stuck'),
+(1,1,8386,'Attacking'),
+(1,1,8737,'Mail'),
+(1,1,9077,'Leather'),
+(1,1,9078,'Cloth'),
+(1,1,9116,'Shield'),
+(1,1,9125,'Generic'),
+(1,1,20597,'Sword Specialization'),
+(1,1,20598,'The Human Spirit'),
+(1,1,20599,'Diplomacy'),
+(1,1,20864,'Mace Specialization'),
+(1,1,21651,'Opening'),
+(1,1,21652,'Closing'),
+(1,1,22027,'Remove Insignia'),
+(1,1,22810,'Opening - No Text'),
+(1,1,32215,'Victorious State'),
+(1,1,45927,'Summon Friend'),
+(1,1,58985,'Perception'),
+(1,1,59752,'Every Man for Himself'),
+(1,1,61437,'Opening'),
+(1,2,81,'Dodge'),
+(1,2,107,'Block'),
+(1,2,198,'One-Handed Maces'),
+(1,2,199,'Two-Handed Maces'),
+(1,2,203,'Unarmed'),
+(1,2,204,'Defense'),
+(1,2,522,'SPELLDEFENSE (DND)'),
+(1,2,635,'Holy Light'),
+(1,2,668,'Language Common'),
+(1,2,1843,'Disarm'),
+(1,2,2382,'Generic'),
+(1,2,2479,'Honorless Target'),
+(1,2,3050,'Detect'),
+(1,2,3365,'Opening'),
+(1,2,6233,'Closing'),
+(1,2,6246,'Closing'),
+(1,2,6247,'Opening'),
+(1,2,6477,'Opening'),
+(1,2,6478,'Opening'),
+(1,2,6603,'Attack'),
+(1,2,7266,'Duel'),
+(1,2,7267,'Grovel'),
+(1,2,7355,'Stuck'),
+(1,2,8386,'Attacking'),
+(1,2,8737,'Mail'),
+(1,2,9077,'Leather'),
+(1,2,9078,'Cloth'),
+(1,2,9116,'Shield'),
+(1,2,9125,'Generic'),
+(1,2,20154,'Seal of Righteousness'),
+(1,2,20597,'Sword Specialization'),
+(1,2,20598,'The Human Spirit'),
+(1,2,20599,'Diplomacy'),
+(1,2,20864,'Mace Specialization'),
+(1,2,21651,'Opening'),
+(1,2,21652,'Closing'),
+(1,2,22027,'Remove Insignia'),
+(1,2,22810,'Opening - No Text'),
+(1,2,27762,'Libram'),
+(1,2,45927,'Summon Friend'),
+(1,2,58985,'Perception'),
+(1,2,59752,'Every Man for Himself'),
+(1,2,61437,'Opening'),
+(1,4,81,'Dodge'),
+(1,4,203,'Unarmed'),
+(1,4,204,'Defense'),
+(1,4,522,'SPELLDEFENSE (DND)'),
+(1,4,668,'Language Common'),
+(1,4,1180,'Daggers'),
+(1,4,1752,'Sinister Strike'),
+(1,4,1843,'Disarm'),
+(1,4,2098,'Eviscerate'),
+(1,4,2382,'Generic'),
+(1,4,2479,'Honorless Target'),
+(1,4,2567,'Thrown'),
+(1,4,2764,'Throw'),
+(1,4,3050,'Detect'),
+(1,4,3365,'Opening'),
+(1,4,6233,'Closing'),
+(1,4,6246,'Closing'),
+(1,4,6247,'Opening'),
+(1,4,6477,'Opening'),
+(1,4,6478,'Opening'),
+(1,4,6603,'Attack'),
+(1,4,7266,'Duel'),
+(1,4,7267,'Grovel'),
+(1,4,7355,'Stuck'),
+(1,4,8386,'Attacking'),
+(1,4,9077,'Leather'),
+(1,4,9078,'Cloth'),
+(1,4,9125,'Generic'),
+(1,4,16092,'Defensive State (DND)'),
+(1,4,20597,'Sword Specialization'),
+(1,4,20598,'The Human Spirit'),
+(1,4,20599,'Diplomacy'),
+(1,4,20864,'Mace Specialization'),
+(1,4,21184,'Rogue Passive (DND)'),
+(1,4,21651,'Opening'),
+(1,4,21652,'Closing'),
+(1,4,22027,'Remove Insignia'),
+(1,4,22810,'Opening - No Text'),
+(1,4,45927,'Summon Friend'),
+(1,4,58985,'Perception'),
+(1,4,59752,'Every Man for Himself'),
+(1,4,61437,'Opening'),
+(1,5,81,'Dodge'),
+(1,5,198,'One-Handed Maces'),
+(1,5,203,'Unarmed'),
+(1,5,204,'Defense'),
+(1,5,522,'SPELLDEFENSE (DND)'),
+(1,5,585,'Smite'),
+(1,5,668,'Language Common'),
+(1,5,1843,'Disarm'),
+(1,5,2050,'Lesser Heal'),
+(1,5,2382,'Generic'),
+(1,5,2479,'Honorless Target'),
+(1,5,3050,'Detect'),
+(1,5,3365,'Opening'),
+(1,5,5009,'Wands'),
+(1,5,5019,'Shoot'),
+(1,5,6233,'Closing'),
+(1,5,6246,'Closing'),
+(1,5,6247,'Opening'),
+(1,5,6477,'Opening'),
+(1,5,6478,'Opening'),
+(1,5,6603,'Attack'),
+(1,5,7266,'Duel'),
+(1,5,7267,'Grovel'),
+(1,5,7355,'Stuck'),
+(1,5,8386,'Attacking'),
+(1,5,9078,'Cloth'),
+(1,5,9125,'Generic'),
+(1,5,20597,'Sword Specialization'),
+(1,5,20598,'The Human Spirit'),
+(1,5,20599,'Diplomacy'),
+(1,5,20864,'Mace Specialization'),
+(1,5,21651,'Opening'),
+(1,5,21652,'Closing'),
+(1,5,22027,'Remove Insignia'),
+(1,5,22810,'Opening - No Text'),
+(1,5,45927,'Summon Friend'),
+(1,5,58985,'Perception'),
+(1,5,59752,'Every Man for Himself'),
+(1,5,61437,'Opening'),
+(1,6,81,'Dodge'),
+(1,6,196,'One-Handed Axes'),
+(1,6,197,'Two-Handed Axes'),
+(1,6,200,'Polearms'),
+(1,6,201,'One-Handed Swords'),
+(1,6,202,'Two-Handed Swords'),
+(1,6,203,'Unarmed'),
+(1,6,204,'Defense'),
+(1,6,522,'SPELLDEFENSE (DND)'),
+(1,6,668,'Language Common'),
+(1,6,674,'Dual Wield'),
+(1,6,750,'Plate Mail'),
+(1,6,1843,'Disarm'),
+(1,6,2382,'Generic'),
+(1,6,2479,'Honorless Target'),
+(1,6,3050,'Detect'),
+(1,6,3127,'Parry'),
+(1,6,3275,'Linen Bandage'),
+(1,6,3276,'Heavy Linen Bandage'),
+(1,6,3277,'Wool Bandage'),
+(1,6,3278,'Heavy Wool Bandage'),
+(1,6,3365,'Opening'),
+(1,6,6233,'Closing'),
+(1,6,6246,'Closing'),
+(1,6,6247,'Opening'),
+(1,6,6477,'Opening'),
+(1,6,6478,'Opening'),
+(1,6,6603,'Attack'),
+(1,6,7266,'Duel'),
+(1,6,7267,'Grovel'),
+(1,6,7355,'Stuck'),
+(1,6,7928,'Silk Bandage'),
+(1,6,7929,'Heavy Silk Bandage'),
+(1,6,7934,'Anti-Venom'),
+(1,6,8386,'Attacking'),
+(1,6,8737,'Mail'),
+(1,6,9077,'Leather'),
+(1,6,9078,'Cloth'),
+(1,6,9125,'Generic'),
+(1,6,10840,'Mageweave Bandage'),
+(1,6,10841,'Heavy Mageweave Bandage'),
+(1,6,10846,'First Aid'),
+(1,6,18629,'Runecloth Bandage'),
+(1,6,18630,'Heavy Runecloth Bandage'),
+(1,6,20597,'Sword Specialization'),
+(1,6,20598,'The Human Spirit'),
+(1,6,20599,'Diplomacy'),
+(1,6,20864,'Mace Specialization'),
+(1,6,21651,'Opening'),
+(1,6,21652,'Closing'),
+(1,6,22027,'Remove Insignia'),
+(1,6,22810,'Opening - No Text'),
+(1,6,33391,'Journeyman Riding'),
+(1,6,45462,'Plague Strike'),
+(1,6,45477,'Icy Touch'),
+(1,6,45902,'Blood Strike'),
+(1,6,45903,'Offensive State (DND)'),
+(1,6,45927,'Summon Friend'),
+(1,6,47541,'Death Coil'),
+(1,6,48266,'Blood Presence'),
+(1,6,49410,'Forceful Deflection'),
+(1,6,49576,'Death Grip'),
+(1,6,52665,'Sigil'),
+(1,6,58985,'Perception'),
+(1,6,59752,'Every Man for Himself'),
+(1,6,59879,'Blood Plague'),
+(1,6,59921,'Frost Fever'),
+(1,6,61437,'Opening'),
+(1,6,61455,'Runic Focus'),
+(1,8,81,'Dodge'),
+(1,8,133,'Fireball'),
+(1,8,168,'Frost Armor'),
+(1,8,203,'Unarmed'),
+(1,8,204,'Defense'),
+(1,8,227,'Staves'),
+(1,8,522,'SPELLDEFENSE (DND)'),
+(1,8,668,'Language Common'),
+(1,8,1843,'Disarm'),
+(1,8,2382,'Generic'),
+(1,8,2479,'Honorless Target'),
+(1,8,3050,'Detect'),
+(1,8,3365,'Opening'),
+(1,8,5009,'Wands'),
+(1,8,5019,'Shoot'),
+(1,8,6233,'Closing'),
+(1,8,6246,'Closing'),
+(1,8,6247,'Opening'),
+(1,8,6477,'Opening'),
+(1,8,6478,'Opening'),
+(1,8,6603,'Attack'),
+(1,8,7266,'Duel'),
+(1,8,7267,'Grovel'),
+(1,8,7355,'Stuck'),
+(1,8,8386,'Attacking'),
+(1,8,9078,'Cloth'),
+(1,8,9125,'Generic'),
+(1,8,20597,'Sword Specialization'),
+(1,8,20598,'The Human Spirit'),
+(1,8,20599,'Diplomacy'),
+(1,8,20864,'Mace Specialization'),
+(1,8,21651,'Opening'),
+(1,8,21652,'Closing'),
+(1,8,22027,'Remove Insignia'),
+(1,8,22810,'Opening - No Text'),
+(1,8,45927,'Summon Friend'),
+(1,8,58985,'Perception'),
+(1,8,59752,'Every Man for Himself'),
+(1,8,61437,'Opening'),
+(1,9,81,'Dodge'),
+(1,9,203,'Unarmed'),
+(1,9,204,'Defense'),
+(1,9,522,'SPELLDEFENSE (DND)'),
+(1,9,668,'Language Common'),
+(1,9,686,'Shadow Bolt'),
+(1,9,687,'Demon Skin'),
+(1,9,1180,'Daggers'),
+(1,9,1843,'Disarm'),
+(1,9,2382,'Generic'),
+(1,9,2479,'Honorless Target'),
+(1,9,3050,'Detect'),
+(1,9,3365,'Opening'),
+(1,9,5009,'Wands'),
+(1,9,5019,'Shoot'),
+(1,9,6233,'Closing'),
+(1,9,6246,'Closing'),
+(1,9,6247,'Opening'),
+(1,9,6477,'Opening'),
+(1,9,6478,'Opening'),
+(1,9,6603,'Attack'),
+(1,9,7266,'Duel'),
+(1,9,7267,'Grovel'),
+(1,9,7355,'Stuck'),
+(1,9,8386,'Attacking'),
+(1,9,9078,'Cloth'),
+(1,9,9125,'Generic'),
+(1,9,20597,'Sword Specialization'),
+(1,9,20598,'The Human Spirit'),
+(1,9,20599,'Diplomacy'),
+(1,9,20864,'Mace Specialization'),
+(1,9,21651,'Opening'),
+(1,9,21652,'Closing'),
+(1,9,22027,'Remove Insignia'),
+(1,9,22810,'Opening - No Text'),
+(1,9,45927,'Summon Friend'),
+(1,9,58284,'Chaos Bolt Passive'),
+(1,9,58985,'Perception'),
+(1,9,59752,'Every Man for Himself'),
+(1,9,61437,'Opening'),
+(2,1,78,'Heroic Strike'),
+(2,1,81,'Dodge'),
+(2,1,107,'Block'),
+(2,1,196,'One-Handed Axes'),
+(2,1,197,'Two-Handed Axes'),
+(2,1,201,'One-Handed Swords'),
+(2,1,203,'Unarmed'),
+(2,1,204,'Defense'),
+(2,1,522,'SPELLDEFENSE (DND)'),
+(2,1,669,'Language Orcish'),
+(2,1,1843,'Disarm'),
+(2,1,2382,'Generic'),
+(2,1,2457,'Battle Stance'),
+(2,1,2479,'Honorless Target'),
+(2,1,3050,'Detect'),
+(2,1,3365,'Opening'),
+(2,1,5301,'Defensive State (DND)'),
+(2,1,6233,'Closing'),
+(2,1,6246,'Closing'),
+(2,1,6247,'Opening'),
+(2,1,6477,'Opening'),
+(2,1,6478,'Opening'),
+(2,1,6603,'Attack'),
+(2,1,7266,'Duel'),
+(2,1,7267,'Grovel'),
+(2,1,7355,'Stuck'),
+(2,1,8386,'Attacking'),
+(2,1,8737,'Mail'),
+(2,1,9077,'Leather'),
+(2,1,9078,'Cloth'),
+(2,1,9116,'Shield'),
+(2,1,9125,'Generic'),
+(2,1,20572,'Blood Fury'),
+(2,1,20573,'Hardiness'),
+(2,1,20574,'Axe Specialization'),
+(2,1,21563,'Command'),
+(2,1,21651,'Opening'),
+(2,1,21652,'Closing'),
+(2,1,22027,'Remove Insignia'),
+(2,1,22810,'Opening - No Text'),
+(2,1,32215,'Victorious State'),
+(2,1,45927,'Summon Friend'),
+(2,1,61437,'Opening'),
+(2,3,75,'Auto Shot'),
+(2,3,81,'Dodge'),
+(2,3,196,'One-Handed Axes'),
+(2,3,203,'Unarmed'),
+(2,3,204,'Defense'),
+(2,3,264,'Bows'),
+(2,3,522,'SPELLDEFENSE (DND)'),
+(2,3,669,'Language Orcish'),
+(2,3,1843,'Disarm'),
+(2,3,2382,'Generic'),
+(2,3,2479,'Honorless Target'),
+(2,3,2973,'Raptor Strike'),
+(2,3,3050,'Detect'),
+(2,3,3365,'Opening'),
+(2,3,6233,'Closing'),
+(2,3,6246,'Closing'),
+(2,3,6247,'Opening'),
+(2,3,6477,'Opening'),
+(2,3,6478,'Opening'),
+(2,3,6603,'Attack'),
+(2,3,7266,'Duel'),
+(2,3,7267,'Grovel'),
+(2,3,7355,'Stuck'),
+(2,3,8386,'Attacking'),
+(2,3,9077,'Leather'),
+(2,3,9078,'Cloth'),
+(2,3,9125,'Generic'),
+(2,3,13358,'Defensive State (DND)'),
+(2,3,20572,'Blood Fury'),
+(2,3,20573,'Hardiness'),
+(2,3,20574,'Axe Specialization'),
+(2,3,20576,'Command'),
+(2,3,21651,'Opening'),
+(2,3,21652,'Closing'),
+(2,3,22027,'Remove Insignia'),
+(2,3,22810,'Opening - No Text'),
+(2,3,24949,'Defensive State 2 (DND)'),
+(2,3,34082,'Advantaged State (DND)'),
+(2,3,45927,'Summon Friend'),
+(2,3,61437,'Opening'),
+(2,4,81,'Dodge'),
+(2,4,203,'Unarmed'),
+(2,4,204,'Defense'),
+(2,4,522,'SPELLDEFENSE (DND)'),
+(2,4,669,'Language Orcish'),
+(2,4,1180,'Daggers'),
+(2,4,1752,'Sinister Strike'),
+(2,4,1843,'Disarm'),
+(2,4,2098,'Eviscerate'),
+(2,4,2382,'Generic'),
+(2,4,2479,'Honorless Target'),
+(2,4,2567,'Thrown'),
+(2,4,2764,'Throw'),
+(2,4,3050,'Detect'),
+(2,4,3365,'Opening'),
+(2,4,6233,'Closing'),
+(2,4,6246,'Closing'),
+(2,4,6247,'Opening'),
+(2,4,6477,'Opening'),
+(2,4,6478,'Opening'),
+(2,4,6603,'Attack'),
+(2,4,7266,'Duel'),
+(2,4,7267,'Grovel'),
+(2,4,7355,'Stuck'),
+(2,4,8386,'Attacking'),
+(2,4,9077,'Leather'),
+(2,4,9078,'Cloth'),
+(2,4,9125,'Generic'),
+(2,4,16092,'Defensive State (DND)'),
+(2,4,20572,'Blood Fury'),
+(2,4,20573,'Hardiness'),
+(2,4,20574,'Axe Specialization'),
+(2,4,21184,'Rogue Passive (DND)'),
+(2,4,21563,'Command'),
+(2,4,21651,'Opening'),
+(2,4,21652,'Closing'),
+(2,4,22027,'Remove Insignia'),
+(2,4,22810,'Opening - No Text'),
+(2,4,45927,'Summon Friend'),
+(2,4,61437,'Opening'),
+(2,6,81,'Dodge'),
+(2,6,196,'One-Handed Axes'),
+(2,6,197,'Two-Handed Axes'),
+(2,6,200,'Polearms'),
+(2,6,201,'One-Handed Swords'),
+(2,6,202,'Two-Handed Swords'),
+(2,6,203,'Unarmed'),
+(2,6,204,'Defense'),
+(2,6,522,'SPELLDEFENSE (DND)'),
+(2,6,669,'Language Orcish'),
+(2,6,674,'Dual Wield'),
+(2,6,750,'Plate Mail'),
+(2,6,1843,'Disarm'),
+(2,6,2382,'Generic'),
+(2,6,2479,'Honorless Target'),
+(2,6,3050,'Detect'),
+(2,6,3127,'Parry'),
+(2,6,3275,'Linen Bandage'),
+(2,6,3276,'Heavy Linen Bandage'),
+(2,6,3277,'Wool Bandage'),
+(2,6,3278,'Heavy Wool Bandage'),
+(2,6,3365,'Opening'),
+(2,6,6233,'Closing'),
+(2,6,6246,'Closing'),
+(2,6,6247,'Opening'),
+(2,6,6477,'Opening'),
+(2,6,6478,'Opening'),
+(2,6,6603,'Attack'),
+(2,6,7266,'Duel'),
+(2,6,7267,'Grovel'),
+(2,6,7355,'Stuck'),
+(2,6,7928,'Silk Bandage'),
+(2,6,7929,'Heavy Silk Bandage'),
+(2,6,7934,'Anti-Venom'),
+(2,6,8386,'Attacking'),
+(2,6,8737,'Mail'),
+(2,6,9077,'Leather'),
+(2,6,9078,'Cloth'),
+(2,6,9125,'Generic'),
+(2,6,10840,'Mageweave Bandage'),
+(2,6,10841,'Heavy Mageweave Bandage'),
+(2,6,10846,'First Aid'),
+(2,6,18629,'Runecloth Bandage'),
+(2,6,18630,'Heavy Runecloth Bandage'),
+(2,6,20572,'Blood Fury'),
+(2,6,20573,'Hardiness'),
+(2,6,20574,'Axe Specialization'),
+(2,6,21651,'Opening'),
+(2,6,21652,'Closing'),
+(2,6,22027,'Remove Insignia'),
+(2,6,22810,'Opening - No Text'),
+(2,6,33391,'Journeyman Riding'),
+(2,6,45462,'Plague Strike'),
+(2,6,45477,'Icy Touch'),
+(2,6,45902,'Blood Strike'),
+(2,6,45903,'Offensive State (DND)'),
+(2,6,45927,'Summon Friend'),
+(2,6,47541,'Death Coil'),
+(2,6,48266,'Blood Presence'),
+(2,6,49410,'Forceful Deflection'),
+(2,6,49576,'Death Grip'),
+(2,6,52665,'Sigil'),
+(2,6,54562,'Command'),
+(2,6,59879,'Blood Plague'),
+(2,6,59921,'Frost Fever'),
+(2,6,61437,'Opening'),
+(2,6,61455,'Runic Focus'),
+(2,7,81,'Dodge'),
+(2,7,107,'Block'),
+(2,7,198,'One-Handed Maces'),
+(2,7,203,'Unarmed'),
+(2,7,204,'Defense'),
+(2,7,227,'Staves'),
+(2,7,331,'Healing Wave'),
+(2,7,403,'Lightning Bolt'),
+(2,7,522,'SPELLDEFENSE (DND)'),
+(2,7,669,'Language Orcish'),
+(2,7,1843,'Disarm'),
+(2,7,2382,'Generic'),
+(2,7,2479,'Honorless Target'),
+(2,7,3050,'Detect'),
+(2,7,3365,'Opening'),
+(2,7,6233,'Closing'),
+(2,7,6246,'Closing'),
+(2,7,6247,'Opening'),
+(2,7,6477,'Opening'),
+(2,7,6478,'Opening'),
+(2,7,6603,'Attack'),
+(2,7,7266,'Duel'),
+(2,7,7267,'Grovel'),
+(2,7,7355,'Stuck'),
+(2,7,8386,'Attacking'),
+(2,7,9077,'Leather'),
+(2,7,9078,'Cloth'),
+(2,7,9116,'Shield'),
+(2,7,9125,'Generic'),
+(2,7,20573,'Hardiness'),
+(2,7,20574,'Axe Specialization'),
+(2,7,21563,'Command'),
+(2,7,21651,'Opening'),
+(2,7,21652,'Closing'),
+(2,7,22027,'Remove Insignia'),
+(2,7,22810,'Opening - No Text'),
+(2,7,27763,'Totem'),
+(2,7,33697,'Blood Fury'),
+(2,7,45927,'Summon Friend'),
+(2,7,61437,'Opening'),
+(2,9,81,'Dodge'),
+(2,9,203,'Unarmed'),
+(2,9,204,'Defense'),
+(2,9,522,'SPELLDEFENSE (DND)'),
+(2,9,669,'Language Orcish'),
+(2,9,686,'Shadow Bolt'),
+(2,9,687,'Demon Skin'),
+(2,9,1180,'Daggers'),
+(2,9,1843,'Disarm'),
+(2,9,2382,'Generic'),
+(2,9,2479,'Honorless Target'),
+(2,9,3050,'Detect'),
+(2,9,3365,'Opening'),
+(2,9,5009,'Wands'),
+(2,9,5019,'Shoot'),
+(2,9,6233,'Closing'),
+(2,9,6246,'Closing'),
+(2,9,6247,'Opening'),
+(2,9,6477,'Opening'),
+(2,9,6478,'Opening'),
+(2,9,6603,'Attack'),
+(2,9,7266,'Duel'),
+(2,9,7267,'Grovel'),
+(2,9,7355,'Stuck'),
+(2,9,8386,'Attacking'),
+(2,9,9078,'Cloth'),
+(2,9,9125,'Generic'),
+(2,9,20573,'Hardiness'),
+(2,9,20574,'Axe Specialization'),
+(2,9,20575,'Command'),
+(2,9,21651,'Opening'),
+(2,9,21652,'Closing'),
+(2,9,22027,'Remove Insignia'),
+(2,9,22810,'Opening - No Text'),
+(2,9,33702,'Blood Fury'),
+(2,9,45927,'Summon Friend'),
+(2,9,58284,'Chaos Bolt Passive'),
+(2,9,61437,'Opening'),
+(3,1,78,'Heroic Strike'),
+(3,1,81,'Dodge'),
+(3,1,107,'Block'),
+(3,1,196,'One-Handed Axes'),
+(3,1,197,'Two-Handed Axes'),
+(3,1,198,'One-Handed Maces'),
+(3,1,203,'Unarmed'),
+(3,1,204,'Defense'),
+(3,1,522,'SPELLDEFENSE (DND)'),
+(3,1,668,'Language Common'),
+(3,1,672,'Language Dwarven'),
+(3,1,1843,'Disarm'),
+(3,1,2382,'Generic'),
+(3,1,2457,'Battle Stance'),
+(3,1,2479,'Honorless Target'),
+(3,1,2481,'Find Treasure'),
+(3,1,3050,'Detect'),
+(3,1,3365,'Opening'),
+(3,1,5301,'Defensive State (DND)'),
+(3,1,6233,'Closing'),
+(3,1,6246,'Closing'),
+(3,1,6247,'Opening'),
+(3,1,6477,'Opening'),
+(3,1,6478,'Opening'),
+(3,1,6603,'Attack'),
+(3,1,7266,'Duel'),
+(3,1,7267,'Grovel'),
+(3,1,7355,'Stuck'),
+(3,1,8386,'Attacking'),
+(3,1,8737,'Mail'),
+(3,1,9077,'Leather'),
+(3,1,9078,'Cloth'),
+(3,1,9116,'Shield'),
+(3,1,9125,'Generic'),
+(3,1,20594,'Stoneform'),
+(3,1,20595,'Gun Specialization'),
+(3,1,20596,'Frost Resistance'),
+(3,1,21651,'Opening'),
+(3,1,21652,'Closing'),
+(3,1,22027,'Remove Insignia'),
+(3,1,22810,'Opening - No Text'),
+(3,1,32215,'Victorious State'),
+(3,1,45927,'Summon Friend'),
+(3,1,59224,'Mace Specialization'),
+(3,1,61437,'Opening'),
+(3,2,81,'Dodge'),
+(3,2,107,'Block'),
+(3,2,198,'One-Handed Maces'),
+(3,2,199,'Two-Handed Maces'),
+(3,2,203,'Unarmed'),
+(3,2,204,'Defense'),
+(3,2,522,'SPELLDEFENSE (DND)'),
+(3,2,635,'Holy Light'),
+(3,2,668,'Language Common'),
+(3,2,672,'Language Dwarven'),
+(3,2,1843,'Disarm'),
+(3,2,2382,'Generic'),
+(3,2,2479,'Honorless Target'),
+(3,2,2481,'Find Treasure'),
+(3,2,3050,'Detect'),
+(3,2,3365,'Opening'),
+(3,2,6233,'Closing'),
+(3,2,6246,'Closing'),
+(3,2,6247,'Opening'),
+(3,2,6477,'Opening'),
+(3,2,6478,'Opening'),
+(3,2,6603,'Attack'),
+(3,2,7266,'Duel'),
+(3,2,7267,'Grovel'),
+(3,2,7355,'Stuck'),
+(3,2,8386,'Attacking'),
+(3,2,8737,'Mail'),
+(3,2,9077,'Leather'),
+(3,2,9078,'Cloth'),
+(3,2,9116,'Shield'),
+(3,2,9125,'Generic'),
+(3,2,20154,'Seal of Righteousness'),
+(3,2,20594,'Stoneform'),
+(3,2,20595,'Gun Specialization'),
+(3,2,20596,'Frost Resistance'),
+(3,2,21651,'Opening'),
+(3,2,21652,'Closing'),
+(3,2,22027,'Remove Insignia'),
+(3,2,22810,'Opening - No Text'),
+(3,2,27762,'Libram'),
+(3,2,45927,'Summon Friend'),
+(3,2,59224,'Mace Specialization'),
+(3,2,61437,'Opening'),
+(3,3,75,'Auto Shot'),
+(3,3,81,'Dodge'),
+(3,3,196,'One-Handed Axes'),
+(3,3,203,'Unarmed'),
+(3,3,204,'Defense'),
+(3,3,266,'Guns'),
+(3,3,522,'SPELLDEFENSE (DND)'),
+(3,3,668,'Language Common'),
+(3,3,672,'Language Dwarven'),
+(3,3,1843,'Disarm'),
+(3,3,2382,'Generic'),
+(3,3,2479,'Honorless Target'),
+(3,3,2481,'Find Treasure'),
+(3,3,2973,'Raptor Strike'),
+(3,3,3050,'Detect'),
+(3,3,3365,'Opening'),
+(3,3,6233,'Closing'),
+(3,3,6246,'Closing'),
+(3,3,6247,'Opening'),
+(3,3,6477,'Opening'),
+(3,3,6478,'Opening'),
+(3,3,6603,'Attack'),
+(3,3,7266,'Duel'),
+(3,3,7267,'Grovel'),
+(3,3,7355,'Stuck'),
+(3,3,8386,'Attacking'),
+(3,3,9077,'Leather'),
+(3,3,9078,'Cloth'),
+(3,3,9125,'Generic'),
+(3,3,13358,'Defensive State (DND)'),
+(3,3,20594,'Stoneform'),
+(3,3,20595,'Gun Specialization'),
+(3,3,20596,'Frost Resistance'),
+(3,3,21651,'Opening'),
+(3,3,21652,'Closing'),
+(3,3,22027,'Remove Insignia'),
+(3,3,22810,'Opening - No Text'),
+(3,3,24949,'Defensive State 2 (DND)'),
+(3,3,34082,'Advantaged State (DND)'),
+(3,3,45927,'Summon Friend'),
+(3,3,59224,'Mace Specialization'),
+(3,3,61437,'Opening'),
+(3,4,81,'Dodge'),
+(3,4,203,'Unarmed'),
+(3,4,204,'Defense'),
+(3,4,522,'SPELLDEFENSE (DND)'),
+(3,4,668,'Language Common'),
+(3,4,672,'Language Dwarven'),
+(3,4,1180,'Daggers'),
+(3,4,1752,'Sinister Strike'),
+(3,4,1843,'Disarm'),
+(3,4,2098,'Eviscerate'),
+(3,4,2382,'Generic'),
+(3,4,2479,'Honorless Target'),
+(3,4,2481,'Find Treasure'),
+(3,4,2567,'Thrown'),
+(3,4,2764,'Throw'),
+(3,4,3050,'Detect'),
+(3,4,3365,'Opening'),
+(3,4,6233,'Closing'),
+(3,4,6246,'Closing'),
+(3,4,6247,'Opening'),
+(3,4,6477,'Opening'),
+(3,4,6478,'Opening'),
+(3,4,6603,'Attack'),
+(3,4,7266,'Duel'),
+(3,4,7267,'Grovel'),
+(3,4,7355,'Stuck'),
+(3,4,8386,'Attacking'),
+(3,4,9077,'Leather'),
+(3,4,9078,'Cloth'),
+(3,4,9125,'Generic'),
+(3,4,16092,'Defensive State (DND)'),
+(3,4,20594,'Stoneform'),
+(3,4,20595,'Gun Specialization'),
+(3,4,20596,'Frost Resistance'),
+(3,4,21184,'Rogue Passive (DND)'),
+(3,4,21651,'Opening'),
+(3,4,21652,'Closing'),
+(3,4,22027,'Remove Insignia'),
+(3,4,22810,'Opening - No Text'),
+(3,4,45927,'Summon Friend'),
+(3,4,59224,'Mace Specialization'),
+(3,4,61437,'Opening'),
+(3,5,81,'Dodge'),
+(3,5,198,'One-Handed Maces'),
+(3,5,203,'Unarmed'),
+(3,5,204,'Defense'),
+(3,5,522,'SPELLDEFENSE (DND)'),
+(3,5,585,'Smite'),
+(3,5,668,'Language Common'),
+(3,5,672,'Language Dwarven'),
+(3,5,1843,'Disarm'),
+(3,5,2050,'Lesser Heal'),
+(3,5,2382,'Generic'),
+(3,5,2479,'Honorless Target'),
+(3,5,2481,'Find Treasure'),
+(3,5,3050,'Detect'),
+(3,5,3365,'Opening'),
+(3,5,5009,'Wands'),
+(3,5,5019,'Shoot'),
+(3,5,6233,'Closing'),
+(3,5,6246,'Closing'),
+(3,5,6247,'Opening'),
+(3,5,6477,'Opening'),
+(3,5,6478,'Opening'),
+(3,5,6603,'Attack'),
+(3,5,7266,'Duel'),
+(3,5,7267,'Grovel'),
+(3,5,7355,'Stuck'),
+(3,5,8386,'Attacking'),
+(3,5,9078,'Cloth'),
+(3,5,9125,'Generic'),
+(3,5,20594,'Stoneform'),
+(3,5,20595,'Gun Specialization'),
+(3,5,20596,'Frost Resistance'),
+(3,5,21651,'Opening'),
+(3,5,21652,'Closing'),
+(3,5,22027,'Remove Insignia'),
+(3,5,22810,'Opening - No Text'),
+(3,5,45927,'Summon Friend'),
+(3,5,59224,'Mace Specialization'),
+(3,5,61437,'Opening'),
+(3,6,81,'Dodge'),
+(3,6,196,'One-Handed Axes'),
+(3,6,197,'Two-Handed Axes'),
+(3,6,200,'Polearms'),
+(3,6,201,'One-Handed Swords'),
+(3,6,202,'Two-Handed Swords'),
+(3,6,203,'Unarmed'),
+(3,6,204,'Defense'),
+(3,6,522,'SPELLDEFENSE (DND)'),
+(3,6,668,'Language Common'),
+(3,6,672,'Language Dwarven'),
+(3,6,674,'Dual Wield'),
+(3,6,750,'Plate Mail'),
+(3,6,1843,'Disarm'),
+(3,6,2382,'Generic'),
+(3,6,2479,'Honorless Target'),
+(3,6,2481,'Find Treasure'),
+(3,6,3050,'Detect'),
+(3,6,3127,'Parry'),
+(3,6,3275,'Linen Bandage'),
+(3,6,3276,'Heavy Linen Bandage'),
+(3,6,3277,'Wool Bandage'),
+(3,6,3278,'Heavy Wool Bandage'),
+(3,6,3365,'Opening'),
+(3,6,6233,'Closing'),
+(3,6,6246,'Closing'),
+(3,6,6247,'Opening'),
+(3,6,6477,'Opening'),
+(3,6,6478,'Opening'),
+(3,6,6603,'Attack'),
+(3,6,7266,'Duel'),
+(3,6,7267,'Grovel'),
+(3,6,7355,'Stuck'),
+(3,6,7928,'Silk Bandage'),
+(3,6,7929,'Heavy Silk Bandage'),
+(3,6,7934,'Anti-Venom'),
+(3,6,8386,'Attacking'),
+(3,6,8737,'Mail'),
+(3,6,9077,'Leather'),
+(3,6,9078,'Cloth'),
+(3,6,9125,'Generic'),
+(3,6,10840,'Mageweave Bandage'),
+(3,6,10841,'Heavy Mageweave Bandage'),
+(3,6,10846,'First Aid'),
+(3,6,18629,'Runecloth Bandage'),
+(3,6,18630,'Heavy Runecloth Bandage'),
+(3,6,20594,'Stoneform'),
+(3,6,20595,'Gun Specialization'),
+(3,6,20596,'Frost Resistance'),
+(3,6,21651,'Opening'),
+(3,6,21652,'Closing'),
+(3,6,22027,'Remove Insignia'),
+(3,6,22810,'Opening - No Text'),
+(3,6,33391,'Journeyman Riding'),
+(3,6,45462,'Plague Strike'),
+(3,6,45477,'Icy Touch'),
+(3,6,45902,'Blood Strike'),
+(3,6,45903,'Offensive State (DND)'),
+(3,6,45927,'Summon Friend'),
+(3,6,47541,'Death Coil'),
+(3,6,48266,'Blood Presence'),
+(3,6,49410,'Forceful Deflection'),
+(3,6,49576,'Death Grip'),
+(3,6,52665,'Sigil'),
+(3,6,59224,'Mace Specialization'),
+(3,6,59879,'Blood Plague'),
+(3,6,59921,'Frost Fever'),
+(3,6,61437,'Opening'),
+(3,6,61455,'Runic Focus'),
+(4,1,78,'Heroic Strike'),
+(4,1,81,'Dodge'),
+(4,1,107,'Block'),
+(4,1,198,'One-Handed Maces'),
+(4,1,201,'One-Handed Swords'),
+(4,1,203,'Unarmed'),
+(4,1,204,'Defense'),
+(4,1,522,'SPELLDEFENSE (DND)'),
+(4,1,668,'Language Common'),
+(4,1,671,'Language Darnassian'),
+(4,1,1180,'Daggers'),
+(4,1,1843,'Disarm'),
+(4,1,2382,'Generic'),
+(4,1,2457,'Battle Stance'),
+(4,1,2479,'Honorless Target'),
+(4,1,3050,'Detect'),
+(4,1,3365,'Opening'),
+(4,1,5301,'Defensive State (DND)'),
+(4,1,6233,'Closing'),
+(4,1,6246,'Closing'),
+(4,1,6247,'Opening'),
+(4,1,6477,'Opening'),
+(4,1,6478,'Opening'),
+(4,1,6603,'Attack'),
+(4,1,7266,'Duel'),
+(4,1,7267,'Grovel'),
+(4,1,7355,'Stuck'),
+(4,1,8386,'Attacking'),
+(4,1,8737,'Mail'),
+(4,1,9077,'Leather'),
+(4,1,9078,'Cloth'),
+(4,1,9116,'Shield'),
+(4,1,9125,'Generic'),
+(4,1,20582,'Quickness'),
+(4,1,20583,'Nature Resistance'),
+(4,1,20585,'Wisp Spirit'),
+(4,1,21651,'Opening'),
+(4,1,21652,'Closing'),
+(4,1,22027,'Remove Insignia'),
+(4,1,22810,'Opening - No Text'),
+(4,1,32215,'Victorious State'),
+(4,1,45927,'Summon Friend'),
+(4,1,58984,'Shadowmelt'),
+(4,1,61437,'Opening'),
+(4,3,75,'Auto Shot'),
+(4,3,81,'Dodge'),
+(4,3,203,'Unarmed'),
+(4,3,204,'Defense'),
+(4,3,264,'Bows'),
+(4,3,522,'SPELLDEFENSE (DND)'),
+(4,3,668,'Language Common'),
+(4,3,671,'Language Darnassian'),
+(4,3,1180,'Daggers'),
+(4,3,1843,'Disarm'),
+(4,3,2382,'Generic'),
+(4,3,2479,'Honorless Target'),
+(4,3,2973,'Raptor Strike'),
+(4,3,3050,'Detect'),
+(4,3,3365,'Opening'),
+(4,3,6233,'Closing'),
+(4,3,6246,'Closing'),
+(4,3,6247,'Opening'),
+(4,3,6477,'Opening'),
+(4,3,6478,'Opening'),
+(4,3,6603,'Attack'),
+(4,3,7266,'Duel'),
+(4,3,7267,'Grovel'),
+(4,3,7355,'Stuck'),
+(4,3,8386,'Attacking'),
+(4,3,9077,'Leather'),
+(4,3,9078,'Cloth'),
+(4,3,9125,'Generic'),
+(4,3,13358,'Defensive State (DND)'),
+(4,3,20582,'Quickness'),
+(4,3,20583,'Nature Resistance'),
+(4,3,20585,'Wisp Spirit'),
+(4,3,21651,'Opening'),
+(4,3,21652,'Closing'),
+(4,3,22027,'Remove Insignia'),
+(4,3,22810,'Opening - No Text'),
+(4,3,24949,'Defensive State 2 (DND)'),
+(4,3,34082,'Advantaged State (DND)'),
+(4,3,45927,'Summon Friend'),
+(4,3,58984,'Shadowmelt'),
+(4,3,61437,'Opening'),
+(4,4,81,'Dodge'),
+(4,4,203,'Unarmed'),
+(4,4,204,'Defense'),
+(4,4,522,'SPELLDEFENSE (DND)'),
+(4,4,668,'Language Common'),
+(4,4,671,'Language Darnassian'),
+(4,4,1180,'Daggers'),
+(4,4,1752,'Sinister Strike'),
+(4,4,1843,'Disarm'),
+(4,4,2098,'Eviscerate'),
+(4,4,2382,'Generic'),
+(4,4,2479,'Honorless Target'),
+(4,4,2567,'Thrown'),
+(4,4,2764,'Throw'),
+(4,4,3050,'Detect'),
+(4,4,3365,'Opening'),
+(4,4,6233,'Closing'),
+(4,4,6246,'Closing'),
+(4,4,6247,'Opening'),
+(4,4,6477,'Opening'),
+(4,4,6478,'Opening'),
+(4,4,6603,'Attack'),
+(4,4,7266,'Duel'),
+(4,4,7267,'Grovel'),
+(4,4,7355,'Stuck'),
+(4,4,8386,'Attacking'),
+(4,4,9077,'Leather'),
+(4,4,9078,'Cloth'),
+(4,4,9125,'Generic'),
+(4,4,16092,'Defensive State (DND)'),
+(4,4,20582,'Quickness'),
+(4,4,20583,'Nature Resistance'),
+(4,4,20585,'Wisp Spirit'),
+(4,4,21184,'Rogue Passive (DND)'),
+(4,4,21651,'Opening'),
+(4,4,21652,'Closing'),
+(4,4,22027,'Remove Insignia'),
+(4,4,22810,'Opening - No Text'),
+(4,4,45927,'Summon Friend'),
+(4,4,58984,'Shadowmelt'),
+(4,4,61437,'Opening'),
+(4,5,81,'Dodge'),
+(4,5,198,'One-Handed Maces'),
+(4,5,203,'Unarmed'),
+(4,5,204,'Defense'),
+(4,5,522,'SPELLDEFENSE (DND)'),
+(4,5,585,'Smite'),
+(4,5,668,'Language Common'),
+(4,5,671,'Language Darnassian'),
+(4,5,1843,'Disarm'),
+(4,5,2050,'Lesser Heal'),
+(4,5,2382,'Generic'),
+(4,5,2479,'Honorless Target'),
+(4,5,3050,'Detect'),
+(4,5,3365,'Opening'),
+(4,5,5009,'Wands'),
+(4,5,5019,'Shoot'),
+(4,5,6233,'Closing'),
+(4,5,6246,'Closing'),
+(4,5,6247,'Opening'),
+(4,5,6477,'Opening'),
+(4,5,6478,'Opening'),
+(4,5,6603,'Attack'),
+(4,5,7266,'Duel'),
+(4,5,7267,'Grovel'),
+(4,5,7355,'Stuck'),
+(4,5,8386,'Attacking'),
+(4,5,9078,'Cloth'),
+(4,5,9125,'Generic'),
+(4,5,20582,'Quickness'),
+(4,5,20583,'Nature Resistance'),
+(4,5,20585,'Wisp Spirit'),
+(4,5,21651,'Opening'),
+(4,5,21652,'Closing'),
+(4,5,22027,'Remove Insignia'),
+(4,5,22810,'Opening - No Text'),
+(4,5,45927,'Summon Friend'),
+(4,5,58984,'Shadowmelt'),
+(4,5,61437,'Opening'),
+(4,6,81,'Dodge'),
+(4,6,196,'One-Handed Axes'),
+(4,6,197,'Two-Handed Axes'),
+(4,6,200,'Polearms'),
+(4,6,201,'One-Handed Swords'),
+(4,6,202,'Two-Handed Swords'),
+(4,6,203,'Unarmed'),
+(4,6,204,'Defense'),
+(4,6,522,'SPELLDEFENSE (DND)'),
+(4,6,668,'Language Common'),
+(4,6,671,'Language Darnassian'),
+(4,6,674,'Dual Wield'),
+(4,6,750,'Plate Mail'),
+(4,6,1843,'Disarm'),
+(4,6,2382,'Generic'),
+(4,6,2479,'Honorless Target'),
+(4,6,3050,'Detect'),
+(4,6,3127,'Parry'),
+(4,6,3275,'Linen Bandage'),
+(4,6,3276,'Heavy Linen Bandage'),
+(4,6,3277,'Wool Bandage'),
+(4,6,3278,'Heavy Wool Bandage'),
+(4,6,3365,'Opening'),
+(4,6,6233,'Closing'),
+(4,6,6246,'Closing'),
+(4,6,6247,'Opening'),
+(4,6,6477,'Opening'),
+(4,6,6478,'Opening'),
+(4,6,6603,'Attack'),
+(4,6,7266,'Duel'),
+(4,6,7267,'Grovel'),
+(4,6,7355,'Stuck'),
+(4,6,7928,'Silk Bandage'),
+(4,6,7929,'Heavy Silk Bandage'),
+(4,6,7934,'Anti-Venom'),
+(4,6,8386,'Attacking'),
+(4,6,8737,'Mail'),
+(4,6,9077,'Leather'),
+(4,6,9078,'Cloth'),
+(4,6,9125,'Generic'),
+(4,6,10840,'Mageweave Bandage'),
+(4,6,10841,'Heavy Mageweave Bandage'),
+(4,6,10846,'First Aid'),
+(4,6,18629,'Runecloth Bandage'),
+(4,6,18630,'Heavy Runecloth Bandage'),
+(4,6,20582,'Quickness'),
+(4,6,20583,'Nature Resistance'),
+(4,6,20585,'Wisp Spirit'),
+(4,6,21651,'Opening'),
+(4,6,21652,'Closing'),
+(4,6,22027,'Remove Insignia'),
+(4,6,22810,'Opening - No Text'),
+(4,6,33391,'Journeyman Riding'),
+(4,6,45462,'Plague Strike'),
+(4,6,45477,'Icy Touch'),
+(4,6,45902,'Blood Strike'),
+(4,6,45903,'Offensive State (DND)'),
+(4,6,45927,'Summon Friend'),
+(4,6,47541,'Death Coil'),
+(4,6,48266,'Blood Presence'),
+(4,6,49410,'Forceful Deflection'),
+(4,6,49576,'Death Grip'),
+(4,6,52665,'Sigil'),
+(4,6,58984,'Shadowmeld'),
+(4,6,59879,'Blood Plague'),
+(4,6,59921,'Frost Fever'),
+(4,6,61437,'Opening'),
+(4,6,61455,'Runic Focus'),
+(4,11,81,'Dodge'),
+(4,11,203,'Unarmed'),
+(4,11,204,'Defense'),
+(4,11,227,'Staves'),
+(4,11,522,'SPELLDEFENSE (DND)'),
+(4,11,668,'Language Common'),
+(4,11,671,'Language Darnassian'),
+(4,11,1180,'Daggers'),
+(4,11,1843,'Disarm'),
+(4,11,2382,'Generic'),
+(4,11,2479,'Honorless Target'),
+(4,11,3050,'Detect'),
+(4,11,3365,'Opening'),
+(4,11,5176,'Wrath'),
+(4,11,5185,'Healing Touch'),
+(4,11,6233,'Closing'),
+(4,11,6246,'Closing'),
+(4,11,6247,'Opening'),
+(4,11,6477,'Opening'),
+(4,11,6478,'Opening'),
+(4,11,6603,'Attack'),
+(4,11,7266,'Duel'),
+(4,11,7267,'Grovel'),
+(4,11,7355,'Stuck'),
+(4,11,8386,'Attacking'),
+(4,11,9077,'Leather'),
+(4,11,9078,'Cloth'),
+(4,11,9125,'Generic'),
+(4,11,20582,'Quickness'),
+(4,11,20583,'Nature Resistance'),
+(4,11,20585,'Wisp Spirit'),
+(4,11,21651,'Opening'),
+(4,11,21652,'Closing'),
+(4,11,22027,'Remove Insignia'),
+(4,11,22810,'Opening - No Text'),
+(4,11,27764,'Fetish'),
+(4,11,45927,'Summon Friend'),
+(4,11,58984,'Shadowmelt'),
+(4,11,61437,'Opening'),
+(5,1,78,'Heroic Strike'),
+(5,1,81,'Dodge'),
+(5,1,107,'Block'),
+(5,1,201,'One-Handed Swords'),
+(5,1,202,'Two-Handed Swords'),
+(5,1,203,'Unarmed'),
+(5,1,204,'Defense'),
+(5,1,522,'SPELLDEFENSE (DND)'),
+(5,1,669,'Language Orcish'),
+(5,1,1180,'Daggers'),
+(5,1,1843,'Disarm'),
+(5,1,2382,'Generic'),
+(5,1,2457,'Battle Stance'),
+(5,1,2479,'Honorless Target'),
+(5,1,3050,'Detect'),
+(5,1,3365,'Opening'),
+(5,1,5227,'Underwater Breathing'),
+(5,1,5301,'Defensive State (DND)'),
+(5,1,6233,'Closing'),
+(5,1,6246,'Closing'),
+(5,1,6247,'Opening'),
+(5,1,6477,'Opening'),
+(5,1,6478,'Opening'),
+(5,1,6603,'Attack'),
+(5,1,7266,'Duel'),
+(5,1,7267,'Grovel'),
+(5,1,7355,'Stuck'),
+(5,1,7744,'Will of the Forsaken'),
+(5,1,8386,'Attacking'),
+(5,1,8737,'Mail'),
+(5,1,9077,'Leather'),
+(5,1,9078,'Cloth'),
+(5,1,9116,'Shield'),
+(5,1,9125,'Generic'),
+(5,1,17737,'Language Gutterspeak'),
+(5,1,20577,'Cannibalize'),
+(5,1,20579,'Shadow Resistance'),
+(5,1,21651,'Opening'),
+(5,1,21652,'Closing'),
+(5,1,22027,'Remove Insignia'),
+(5,1,22810,'Opening - No Text'),
+(5,1,32215,'Victorious State'),
+(5,1,45927,'Summon Friend'),
+(5,1,61437,'Opening'),
+(5,4,81,'Dodge'),
+(5,4,203,'Unarmed'),
+(5,4,204,'Defense'),
+(5,4,522,'SPELLDEFENSE (DND)'),
+(5,4,669,'Language Orcish'),
+(5,4,1180,'Daggers'),
+(5,4,1752,'Sinister Strike'),
+(5,4,1843,'Disarm'),
+(5,4,2098,'Eviscerate'),
+(5,4,2382,'Generic'),
+(5,4,2479,'Honorless Target'),
+(5,4,2567,'Thrown'),
+(5,4,2764,'Throw'),
+(5,4,3050,'Detect'),
+(5,4,3365,'Opening'),
+(5,4,5227,'Underwater Breathing'),
+(5,4,6233,'Closing'),
+(5,4,6246,'Closing'),
+(5,4,6247,'Opening'),
+(5,4,6477,'Opening'),
+(5,4,6478,'Opening'),
+(5,4,6603,'Attack'),
+(5,4,7266,'Duel'),
+(5,4,7267,'Grovel'),
+(5,4,7355,'Stuck'),
+(5,4,7744,'Will of the Forsaken'),
+(5,4,8386,'Attacking'),
+(5,4,9077,'Leather'),
+(5,4,9078,'Cloth'),
+(5,4,9125,'Generic'),
+(5,4,16092,'Defensive State (DND)'),
+(5,4,17737,'Language Gutterspeak'),
+(5,4,20577,'Cannibalize'),
+(5,4,20579,'Shadow Resistance'),
+(5,4,21184,'Rogue Passive (DND)'),
+(5,4,21651,'Opening'),
+(5,4,21652,'Closing'),
+(5,4,22027,'Remove Insignia'),
+(5,4,22810,'Opening - No Text'),
+(5,4,45927,'Summon Friend'),
+(5,4,61437,'Opening'),
+(5,5,81,'Dodge'),
+(5,5,198,'One-Handed Maces'),
+(5,5,203,'Unarmed'),
+(5,5,204,'Defense'),
+(5,5,522,'SPELLDEFENSE (DND)'),
+(5,5,585,'Smite'),
+(5,5,669,'Language Orcish'),
+(5,5,1843,'Disarm'),
+(5,5,2050,'Lesser Heal'),
+(5,5,2382,'Generic'),
+(5,5,2479,'Honorless Target'),
+(5,5,3050,'Detect'),
+(5,5,3365,'Opening'),
+(5,5,5009,'Wands'),
+(5,5,5019,'Shoot'),
+(5,5,5227,'Underwater Breathing'),
+(5,5,6233,'Closing'),
+(5,5,6246,'Closing'),
+(5,5,6247,'Opening'),
+(5,5,6477,'Opening'),
+(5,5,6478,'Opening'),
+(5,5,6603,'Attack'),
+(5,5,7266,'Duel'),
+(5,5,7267,'Grovel'),
+(5,5,7355,'Stuck'),
+(5,5,7744,'Will of the Forsaken'),
+(5,5,8386,'Attacking'),
+(5,5,9078,'Cloth'),
+(5,5,9125,'Generic'),
+(5,5,17737,'Language Gutterspeak'),
+(5,5,20577,'Cannibalize'),
+(5,5,20579,'Shadow Resistance'),
+(5,5,21651,'Opening'),
+(5,5,21652,'Closing'),
+(5,5,22027,'Remove Insignia'),
+(5,5,22810,'Opening - No Text'),
+(5,5,45927,'Summon Friend'),
+(5,5,61437,'Opening'),
+(5,6,81,'Dodge'),
+(5,6,196,'One-Handed Axes'),
+(5,6,197,'Two-Handed Axes'),
+(5,6,200,'Polearms'),
+(5,6,201,'One-Handed Swords'),
+(5,6,202,'Two-Handed Swords'),
+(5,6,203,'Unarmed'),
+(5,6,204,'Defense'),
+(5,6,522,'SPELLDEFENSE (DND)'),
+(5,6,669,'Language Orcish'),
+(5,6,674,'Dual Wield'),
+(5,6,750,'Plate Mail'),
+(5,6,1843,'Disarm'),
+(5,6,2382,'Generic'),
+(5,6,2479,'Honorless Target'),
+(5,6,3050,'Detect'),
+(5,6,3127,'Parry'),
+(5,6,3275,'Linen Bandage'),
+(5,6,3276,'Heavy Linen Bandage'),
+(5,6,3277,'Wool Bandage'),
+(5,6,3278,'Heavy Wool Bandage'),
+(5,6,3365,'Opening'),
+(5,6,5227,'Underwater Breathing'),
+(5,6,6233,'Closing'),
+(5,6,6246,'Closing'),
+(5,6,6247,'Opening'),
+(5,6,6477,'Opening'),
+(5,6,6478,'Opening'),
+(5,6,6603,'Attack'),
+(5,6,7266,'Duel'),
+(5,6,7267,'Grovel'),
+(5,6,7355,'Stuck'),
+(5,6,7744,'Will of the Forsaken'),
+(5,6,7928,'Silk Bandage'),
+(5,6,7929,'Heavy Silk Bandage'),
+(5,6,7934,'Anti-Venom'),
+(5,6,8386,'Attacking'),
+(5,6,8737,'Mail'),
+(5,6,9077,'Leather'),
+(5,6,9078,'Cloth'),
+(5,6,9125,'Generic'),
+(5,6,10840,'Mageweave Bandage'),
+(5,6,10841,'Heavy Mageweave Bandage'),
+(5,6,10846,'First Aid'),
+(5,6,17737,'Language Gutterspeak'),
+(5,6,18629,'Runecloth Bandage'),
+(5,6,18630,'Heavy Runecloth Bandage'),
+(5,6,20577,'Cannibalize'),
+(5,6,20579,'Shadow Resistance'),
+(5,6,21651,'Opening'),
+(5,6,21652,'Closing'),
+(5,6,22027,'Remove Insignia'),
+(5,6,22810,'Opening - No Text'),
+(5,6,33391,'Journeyman Riding'),
+(5,6,45462,'Plague Strike'),
+(5,6,45477,'Icy Touch'),
+(5,6,45902,'Blood Strike'),
+(5,6,45903,'Offensive State (DND)'),
+(5,6,45927,'Summon Friend'),
+(5,6,47541,'Death Coil'),
+(5,6,48266,'Blood Presence'),
+(5,6,49410,'Forceful Deflection'),
+(5,6,49576,'Death Grip'),
+(5,6,52665,'Sigil'),
+(5,6,59879,'Blood Plague'),
+(5,6,59921,'Frost Fever'),
+(5,6,61437,'Opening'),
+(5,6,61455,'Runic Focus'),
+(5,8,81,'Dodge'),
+(5,8,133,'Fireball'),
+(5,8,168,'Frost Armor'),
+(5,8,203,'Unarmed'),
+(5,8,204,'Defense'),
+(5,8,227,'Staves'),
+(5,8,522,'SPELLDEFENSE (DND)'),
+(5,8,669,'Language Orcish'),
+(5,8,1843,'Disarm'),
+(5,8,2382,'Generic'),
+(5,8,2479,'Honorless Target'),
+(5,8,3050,'Detect'),
+(5,8,3365,'Opening'),
+(5,8,5009,'Wands'),
+(5,8,5019,'Shoot'),
+(5,8,5227,'Underwater Breathing'),
+(5,8,6233,'Closing'),
+(5,8,6246,'Closing'),
+(5,8,6247,'Opening'),
+(5,8,6477,'Opening'),
+(5,8,6478,'Opening'),
+(5,8,6603,'Attack'),
+(5,8,7266,'Duel'),
+(5,8,7267,'Grovel'),
+(5,8,7355,'Stuck'),
+(5,8,7744,'Will of the Forsaken'),
+(5,8,8386,'Attacking'),
+(5,8,9078,'Cloth'),
+(5,8,9125,'Generic'),
+(5,8,17737,'Language Gutterspeak'),
+(5,8,20577,'Cannibalize'),
+(5,8,20579,'Shadow Resistance'),
+(5,8,21651,'Opening'),
+(5,8,21652,'Closing'),
+(5,8,22027,'Remove Insignia'),
+(5,8,22810,'Opening - No Text'),
+(5,8,45927,'Summon Friend'),
+(5,8,61437,'Opening'),
+(5,9,81,'Dodge'),
+(5,9,203,'Unarmed'),
+(5,9,204,'Defense'),
+(5,9,522,'SPELLDEFENSE (DND)'),
+(5,9,669,'Language Orcish'),
+(5,9,686,'Shadow Bolt'),
+(5,9,687,'Demon Skin'),
+(5,9,1180,'Daggers'),
+(5,9,1843,'Disarm'),
+(5,9,2382,'Generic'),
+(5,9,2479,'Honorless Target'),
+(5,9,3050,'Detect'),
+(5,9,3365,'Opening'),
+(5,9,5009,'Wands'),
+(5,9,5019,'Shoot'),
+(5,9,5227,'Underwater Breathing'),
+(5,9,6233,'Closing'),
+(5,9,6246,'Closing'),
+(5,9,6247,'Opening'),
+(5,9,6477,'Opening'),
+(5,9,6478,'Opening'),
+(5,9,6603,'Attack'),
+(5,9,7266,'Duel'),
+(5,9,7267,'Grovel'),
+(5,9,7355,'Stuck'),
+(5,9,7744,'Will of the Forsaken'),
+(5,9,8386,'Attacking'),
+(5,9,9078,'Cloth'),
+(5,9,9125,'Generic'),
+(5,9,17737,'Language Gutterspeak'),
+(5,9,20577,'Cannibalize'),
+(5,9,20579,'Shadow Resistance'),
+(5,9,21651,'Opening'),
+(5,9,21652,'Closing'),
+(5,9,22027,'Remove Insignia'),
+(5,9,22810,'Opening - No Text'),
+(5,9,45927,'Summon Friend'),
+(5,9,58284,'Chaos Bolt Passive'),
+(5,9,61437,'Opening'),
+(6,1,78,'Heroic Strike'),
+(6,1,81,'Dodge'),
+(6,1,107,'Block'),
+(6,1,196,'One-Handed Axes'),
+(6,1,198,'One-Handed Maces'),
+(6,1,199,'Two-Handed Maces'),
+(6,1,203,'Unarmed'),
+(6,1,204,'Defense'),
+(6,1,522,'SPELLDEFENSE (DND)'),
+(6,1,669,'Language Orcish'),
+(6,1,670,'Language Taurahe'),
+(6,1,1843,'Disarm'),
+(6,1,2382,'Generic'),
+(6,1,2457,'Battle Stance'),
+(6,1,2479,'Honorless Target'),
+(6,1,3050,'Detect'),
+(6,1,3365,'Opening'),
+(6,1,5301,'Defensive State (DND)'),
+(6,1,6233,'Closing'),
+(6,1,6246,'Closing'),
+(6,1,6247,'Opening'),
+(6,1,6477,'Opening'),
+(6,1,6478,'Opening'),
+(6,1,6603,'Attack'),
+(6,1,7266,'Duel'),
+(6,1,7267,'Grovel'),
+(6,1,7355,'Stuck'),
+(6,1,8386,'Attacking'),
+(6,1,8737,'Mail'),
+(6,1,9077,'Leather'),
+(6,1,9078,'Cloth'),
+(6,1,9116,'Shield'),
+(6,1,9125,'Generic'),
+(6,1,20549,'War Stomp'),
+(6,1,20550,'Endurance'),
+(6,1,20551,'Nature Resistance'),
+(6,1,20552,'Cultivation'),
+(6,1,21651,'Opening'),
+(6,1,21652,'Closing'),
+(6,1,22027,'Remove Insignia'),
+(6,1,22810,'Opening - No Text'),
+(6,1,32215,'Victorious State'),
+(6,1,45927,'Summon Friend'),
+(6,1,61437,'Opening'),
+(6,3,75,'Auto Shot'),
+(6,3,81,'Dodge'),
+(6,3,196,'One-Handed Axes'),
+(6,3,203,'Unarmed'),
+(6,3,204,'Defense'),
+(6,3,266,'Guns'),
+(6,3,522,'SPELLDEFENSE (DND)'),
+(6,3,669,'Language Orcish'),
+(6,3,670,'Language Taurahe'),
+(6,3,1843,'Disarm'),
+(6,3,2382,'Generic'),
+(6,3,2479,'Honorless Target'),
+(6,3,2973,'Raptor Strike'),
+(6,3,3050,'Detect'),
+(6,3,3365,'Opening'),
+(6,3,6233,'Closing'),
+(6,3,6246,'Closing'),
+(6,3,6247,'Opening'),
+(6,3,6477,'Opening'),
+(6,3,6478,'Opening'),
+(6,3,6603,'Attack'),
+(6,3,7266,'Duel'),
+(6,3,7267,'Grovel'),
+(6,3,7355,'Stuck'),
+(6,3,8386,'Attacking'),
+(6,3,9077,'Leather'),
+(6,3,9078,'Cloth'),
+(6,3,9125,'Generic'),
+(6,3,13358,'Defensive State (DND)'),
+(6,3,20549,'War Stomp'),
+(6,3,20550,'Endurance'),
+(6,3,20551,'Nature Resistance'),
+(6,3,20552,'Cultivation'),
+(6,3,21651,'Opening'),
+(6,3,21652,'Closing'),
+(6,3,22027,'Remove Insignia'),
+(6,3,22810,'Opening - No Text'),
+(6,3,24949,'Defensive State 2 (DND)'),
+(6,3,34082,'Advantaged State (DND)'),
+(6,3,45927,'Summon Friend'),
+(6,3,61437,'Opening'),
+(6,6,81,'Dodge'),
+(6,6,196,'One-Handed Axes'),
+(6,6,197,'Two-Handed Axes'),
+(6,6,200,'Polearms'),
+(6,6,201,'One-Handed Swords'),
+(6,6,202,'Two-Handed Swords'),
+(6,6,203,'Unarmed'),
+(6,6,204,'Defense'),
+(6,6,522,'SPELLDEFENSE (DND)'),
+(6,6,669,'Language Orcish'),
+(6,6,670,'Language Taurahe'),
+(6,6,674,'Dual Wield'),
+(6,6,750,'Plate Mail'),
+(6,6,1843,'Disarm'),
+(6,6,2382,'Generic'),
+(6,6,2479,'Honorless Target'),
+(6,6,3050,'Detect'),
+(6,6,3127,'Parry'),
+(6,6,3275,'Linen Bandage'),
+(6,6,3276,'Heavy Linen Bandage'),
+(6,6,3277,'Wool Bandage'),
+(6,6,3278,'Heavy Wool Bandage'),
+(6,6,3365,'Opening'),
+(6,6,6233,'Closing'),
+(6,6,6246,'Closing'),
+(6,6,6247,'Opening'),
+(6,6,6477,'Opening'),
+(6,6,6478,'Opening'),
+(6,6,6603,'Attack'),
+(6,6,7266,'Duel'),
+(6,6,7267,'Grovel'),
+(6,6,7355,'Stuck'),
+(6,6,7928,'Silk Bandage'),
+(6,6,7929,'Heavy Silk Bandage'),
+(6,6,7934,'Anti-Venom'),
+(6,6,8386,'Attacking'),
+(6,6,8737,'Mail'),
+(6,6,9077,'Leather'),
+(6,6,9078,'Cloth'),
+(6,6,9125,'Generic'),
+(6,6,10840,'Mageweave Bandage'),
+(6,6,10841,'Heavy Mageweave Bandage'),
+(6,6,10846,'First Aid'),
+(6,6,18629,'Runecloth Bandage'),
+(6,6,18630,'Heavy Runecloth Bandage'),
+(6,6,20549,'War Stomp'),
+(6,6,20550,'Endurance'),
+(6,6,20551,'Nature Resistance'),
+(6,6,20552,'Cultivation'),
+(6,6,21651,'Opening'),
+(6,6,21652,'Closing'),
+(6,6,22027,'Remove Insignia'),
+(6,6,22810,'Opening - No Text'),
+(6,6,33391,'Journeyman Riding'),
+(6,6,45462,'Plague Strike'),
+(6,6,45477,'Icy Touch'),
+(6,6,45902,'Blood Strike'),
+(6,6,45903,'Offensive State (DND)'),
+(6,6,45927,'Summon Friend'),
+(6,6,47541,'Death Coil'),
+(6,6,48266,'Blood Presence'),
+(6,6,49410,'Forceful Deflection'),
+(6,6,49576,'Death Grip'),
+(6,6,52665,'Sigil'),
+(6,6,59879,'Blood Plague'),
+(6,6,59921,'Frost Fever'),
+(6,6,61437,'Opening'),
+(6,6,61455,'Runic Focus'),
+(6,7,81,'Dodge'),
+(6,7,107,'Block'),
+(6,7,198,'One-Handed Maces'),
+(6,7,203,'Unarmed'),
+(6,7,204,'Defense'),
+(6,7,227,'Staves'),
+(6,7,331,'Healing Wave'),
+(6,7,403,'Lightning Bolt'),
+(6,7,522,'SPELLDEFENSE (DND)'),
+(6,7,669,'Language Orcish'),
+(6,7,670,'Language Taurahe'),
+(6,7,1843,'Disarm'),
+(6,7,2382,'Generic'),
+(6,7,2479,'Honorless Target'),
+(6,7,3050,'Detect'),
+(6,7,3365,'Opening'),
+(6,7,6233,'Closing'),
+(6,7,6246,'Closing'),
+(6,7,6247,'Opening'),
+(6,7,6477,'Opening'),
+(6,7,6478,'Opening'),
+(6,7,6603,'Attack'),
+(6,7,7266,'Duel'),
+(6,7,7267,'Grovel'),
+(6,7,7355,'Stuck'),
+(6,7,8386,'Attacking'),
+(6,7,9077,'Leather'),
+(6,7,9078,'Cloth'),
+(6,7,9116,'Shield'),
+(6,7,9125,'Generic'),
+(6,7,20549,'War Stomp'),
+(6,7,20550,'Endurance'),
+(6,7,20551,'Nature Resistance'),
+(6,7,20552,'Cultivation'),
+(6,7,21651,'Opening'),
+(6,7,21652,'Closing'),
+(6,7,22027,'Remove Insignia'),
+(6,7,22810,'Opening - No Text'),
+(6,7,27763,'Totem'),
+(6,7,45927,'Summon Friend'),
+(6,7,61437,'Opening'),
+(6,11,81,'Dodge'),
+(6,11,198,'One-Handed Maces'),
+(6,11,203,'Unarmed'),
+(6,11,204,'Defense'),
+(6,11,227,'Staves'),
+(6,11,522,'SPELLDEFENSE (DND)'),
+(6,11,669,'Language Orcish'),
+(6,11,670,'Language Taurahe'),
+(6,11,1843,'Disarm'),
+(6,11,2382,'Generic'),
+(6,11,2479,'Honorless Target'),
+(6,11,3050,'Detect'),
+(6,11,3365,'Opening'),
+(6,11,5176,'Wrath'),
+(6,11,5185,'Healing Touch'),
+(6,11,6233,'Closing'),
+(6,11,6246,'Closing'),
+(6,11,6247,'Opening'),
+(6,11,6477,'Opening'),
+(6,11,6478,'Opening'),
+(6,11,6603,'Attack'),
+(6,11,7266,'Duel'),
+(6,11,7267,'Grovel'),
+(6,11,7355,'Stuck'),
+(6,11,8386,'Attacking'),
+(6,11,9077,'Leather'),
+(6,11,9078,'Cloth'),
+(6,11,9125,'Generic'),
+(6,11,20549,'War Stomp'),
+(6,11,20550,'Endurance'),
+(6,11,20551,'Nature Resistance'),
+(6,11,20552,'Cultivation'),
+(6,11,21651,'Opening'),
+(6,11,21652,'Closing'),
+(6,11,22027,'Remove Insignia'),
+(6,11,22810,'Opening - No Text'),
+(6,11,27764,'Fetish'),
+(6,11,45927,'Summon Friend'),
+(6,11,61437,'Opening'),
+(7,1,78,'Heroic Strike'),
+(7,1,81,'Dodge'),
+(7,1,107,'Block'),
+(7,1,198,'One-Handed Maces'),
+(7,1,201,'One-Handed Swords'),
+(7,1,203,'Unarmed'),
+(7,1,204,'Defense'),
+(7,1,522,'SPELLDEFENSE (DND)'),
+(7,1,668,'Language Common'),
+(7,1,1180,'Daggers'),
+(7,1,1843,'Disarm'),
+(7,1,2382,'Generic'),
+(7,1,2457,'Battle Stance'),
+(7,1,2479,'Honorless Target'),
+(7,1,3050,'Detect'),
+(7,1,3365,'Opening'),
+(7,1,5301,'Defensive State (DND)'),
+(7,1,6233,'Closing'),
+(7,1,6246,'Closing'),
+(7,1,6247,'Opening'),
+(7,1,6477,'Opening'),
+(7,1,6478,'Opening'),
+(7,1,6603,'Attack'),
+(7,1,7266,'Duel'),
+(7,1,7267,'Grovel'),
+(7,1,7340,'Language Gnomish'),
+(7,1,7355,'Stuck'),
+(7,1,8386,'Attacking'),
+(7,1,8737,'Mail'),
+(7,1,9077,'Leather'),
+(7,1,9078,'Cloth'),
+(7,1,9116,'Shield'),
+(7,1,9125,'Generic'),
+(7,1,20589,'Escape Artist'),
+(7,1,20591,'Expansive Mind'),
+(7,1,20592,'Arcane Resistance'),
+(7,1,20593,'Engineering Specialization'),
+(7,1,21651,'Opening'),
+(7,1,21652,'Closing'),
+(7,1,22027,'Remove Insignia'),
+(7,1,22810,'Opening - No Text'),
+(7,1,32215,'Victorious State'),
+(7,1,45927,'Summon Friend'),
+(7,1,61437,'Opening'),
+(7,4,81,'Dodge'),
+(7,4,203,'Unarmed'),
+(7,4,204,'Defense'),
+(7,4,522,'SPELLDEFENSE (DND)'),
+(7,4,668,'Language Common'),
+(7,4,1180,'Daggers'),
+(7,4,1752,'Sinister Strike'),
+(7,4,1843,'Disarm'),
+(7,4,2098,'Eviscerate'),
+(7,4,2382,'Generic'),
+(7,4,2479,'Honorless Target'),
+(7,4,2567,'Thrown'),
+(7,4,2764,'Throw'),
+(7,4,3050,'Detect'),
+(7,4,3365,'Opening'),
+(7,4,6233,'Closing'),
+(7,4,6246,'Closing'),
+(7,4,6247,'Opening'),
+(7,4,6477,'Opening'),
+(7,4,6478,'Opening'),
+(7,4,6603,'Attack'),
+(7,4,7266,'Duel'),
+(7,4,7267,'Grovel'),
+(7,4,7340,'Language Gnomish'),
+(7,4,7355,'Stuck'),
+(7,4,8386,'Attacking'),
+(7,4,9077,'Leather'),
+(7,4,9078,'Cloth'),
+(7,4,9125,'Generic'),
+(7,4,16092,'Defensive State (DND)'),
+(7,4,20589,'Escape Artist'),
+(7,4,20591,'Expansive Mind'),
+(7,4,20592,'Arcane Resistance'),
+(7,4,20593,'Engineering Specialization'),
+(7,4,21184,'Rogue Passive (DND)'),
+(7,4,21651,'Opening'),
+(7,4,21652,'Closing'),
+(7,4,22027,'Remove Insignia'),
+(7,4,22810,'Opening - No Text'),
+(7,4,45927,'Summon Friend'),
+(7,4,61437,'Opening'),
+(7,6,81,'Dodge'),
+(7,6,196,'One-Handed Axes'),
+(7,6,197,'Two-Handed Axes'),
+(7,6,200,'Polearms'),
+(7,6,201,'One-Handed Swords'),
+(7,6,202,'Two-Handed Swords'),
+(7,6,203,'Unarmed'),
+(7,6,204,'Defense'),
+(7,6,522,'SPELLDEFENSE (DND)'),
+(7,6,668,'Language Common'),
+(7,6,674,'Dual Wield'),
+(7,6,750,'Plate Mail'),
+(7,6,1843,'Disarm'),
+(7,6,2382,'Generic'),
+(7,6,2479,'Honorless Target'),
+(7,6,3050,'Detect'),
+(7,6,3127,'Parry'),
+(7,6,3275,'Linen Bandage'),
+(7,6,3276,'Heavy Linen Bandage'),
+(7,6,3277,'Wool Bandage'),
+(7,6,3278,'Heavy Wool Bandage'),
+(7,6,3365,'Opening'),
+(7,6,6233,'Closing'),
+(7,6,6246,'Closing'),
+(7,6,6247,'Opening'),
+(7,6,6477,'Opening'),
+(7,6,6478,'Opening'),
+(7,6,6603,'Attack'),
+(7,6,7266,'Duel'),
+(7,6,7267,'Grovel'),
+(7,6,7340,'Language Gnomish'),
+(7,6,7355,'Stuck'),
+(7,6,7928,'Silk Bandage'),
+(7,6,7929,'Heavy Silk Bandage'),
+(7,6,7934,'Anti-Venom'),
+(7,6,8386,'Attacking'),
+(7,6,8737,'Mail'),
+(7,6,9077,'Leather'),
+(7,6,9078,'Cloth'),
+(7,6,9125,'Generic'),
+(7,6,10840,'Mageweave Bandage'),
+(7,6,10841,'Heavy Mageweave Bandage'),
+(7,6,10846,'First Aid'),
+(7,6,18629,'Runecloth Bandage'),
+(7,6,18630,'Heavy Runecloth Bandage'),
+(7,6,20589,'Escape Artist'),
+(7,6,20591,'Expansive Mind'),
+(7,6,20592,'Arcane Resistance'),
+(7,6,20593,'Engineering Specialization'),
+(7,6,21651,'Opening'),
+(7,6,21652,'Closing'),
+(7,6,22027,'Remove Insignia'),
+(7,6,22810,'Opening - No Text'),
+(7,6,33391,'Journeyman Riding'),
+(7,6,45462,'Plague Strike'),
+(7,6,45477,'Icy Touch'),
+(7,6,45902,'Blood Strike'),
+(7,6,45903,'Offensive State (DND)'),
+(7,6,45927,'Summon Friend'),
+(7,6,47541,'Death Coil'),
+(7,6,48266,'Blood Presence'),
+(7,6,49410,'Forceful Deflection'),
+(7,6,49576,'Death Grip'),
+(7,6,52665,'Sigil'),
+(7,6,59879,'Blood Plague'),
+(7,6,59921,'Frost Fever'),
+(7,6,61437,'Opening'),
+(7,6,61455,'Runic Focus'),
+(7,8,81,'Dodge'),
+(7,8,133,'Fireball'),
+(7,8,168,'Frost Armor'),
+(7,8,203,'Unarmed'),
+(7,8,204,'Defense'),
+(7,8,227,'Staves'),
+(7,8,522,'SPELLDEFENSE (DND)'),
+(7,8,668,'Language Common'),
+(7,8,1843,'Disarm'),
+(7,8,2382,'Generic'),
+(7,8,2479,'Honorless Target'),
+(7,8,3050,'Detect'),
+(7,8,3365,'Opening'),
+(7,8,5009,'Wands'),
+(7,8,5019,'Shoot'),
+(7,8,6233,'Closing'),
+(7,8,6246,'Closing'),
+(7,8,6247,'Opening'),
+(7,8,6477,'Opening'),
+(7,8,6478,'Opening'),
+(7,8,6603,'Attack'),
+(7,8,7266,'Duel'),
+(7,8,7267,'Grovel'),
+(7,8,7340,'Language Gnomish'),
+(7,8,7355,'Stuck'),
+(7,8,8386,'Attacking'),
+(7,8,9078,'Cloth'),
+(7,8,9125,'Generic'),
+(7,8,20589,'Escape Artist'),
+(7,8,20591,'Expansive Mind'),
+(7,8,20592,'Arcane Resistance'),
+(7,8,20593,'Engineering Specialization'),
+(7,8,21651,'Opening'),
+(7,8,21652,'Closing'),
+(7,8,22027,'Remove Insignia'),
+(7,8,22810,'Opening - No Text'),
+(7,8,45927,'Summon Friend'),
+(7,8,61437,'Opening'),
+(7,9,81,'Dodge'),
+(7,9,203,'Unarmed'),
+(7,9,204,'Defense'),
+(7,9,522,'SPELLDEFENSE (DND)'),
+(7,9,668,'Language Common'),
+(7,9,686,'Shadow Bolt'),
+(7,9,687,'Demon Skin'),
+(7,9,1180,'Daggers'),
+(7,9,1843,'Disarm'),
+(7,9,2382,'Generic'),
+(7,9,2479,'Honorless Target'),
+(7,9,3050,'Detect'),
+(7,9,3365,'Opening'),
+(7,9,5009,'Wands'),
+(7,9,5019,'Shoot'),
+(7,9,6233,'Closing'),
+(7,9,6246,'Closing'),
+(7,9,6247,'Opening'),
+(7,9,6477,'Opening'),
+(7,9,6478,'Opening'),
+(7,9,6603,'Attack'),
+(7,9,7266,'Duel'),
+(7,9,7267,'Grovel'),
+(7,9,7340,'Language Gnomish'),
+(7,9,7355,'Stuck'),
+(7,9,8386,'Attacking'),
+(7,9,9078,'Cloth'),
+(7,9,9125,'Generic'),
+(7,9,20589,'Escape Artist'),
+(7,9,20591,'Expansive Mind'),
+(7,9,20592,'Arcane Resistance'),
+(7,9,20593,'Engineering Specialization'),
+(7,9,21651,'Opening'),
+(7,9,21652,'Closing'),
+(7,9,22027,'Remove Insignia'),
+(7,9,22810,'Opening - No Text'),
+(7,9,45927,'Summon Friend'),
+(7,9,61437,'Opening'),
+(8,1,78,'Heroic Strike'),
+(8,1,81,'Dodge'),
+(8,1,107,'Block'),
+(8,1,196,'One-Handed Axes'),
+(8,1,203,'Unarmed'),
+(8,1,204,'Defense'),
+(8,1,522,'SPELLDEFENSE (DND)'),
+(8,1,669,'Language Orcish'),
+(8,1,1180,'Daggers'),
+(8,1,1843,'Disarm'),
+(8,1,2382,'Generic'),
+(8,1,2457,'Battle Stance'),
+(8,1,2479,'Honorless Target'),
+(8,1,2567,'Thrown'),
+(8,1,2764,'Throw'),
+(8,1,3050,'Detect'),
+(8,1,3365,'Opening'),
+(8,1,5301,'Defensive State (DND)'),
+(8,1,6233,'Closing'),
+(8,1,6246,'Closing'),
+(8,1,6247,'Opening'),
+(8,1,6477,'Opening'),
+(8,1,6478,'Opening'),
+(8,1,6603,'Attack'),
+(8,1,7266,'Duel'),
+(8,1,7267,'Grovel'),
+(8,1,7341,'Language Troll'),
+(8,1,7355,'Stuck'),
+(8,1,8386,'Attacking'),
+(8,1,8737,'Mail'),
+(8,1,9077,'Leather'),
+(8,1,9078,'Cloth'),
+(8,1,9116,'Shield'),
+(8,1,9125,'Generic'),
+(8,1,20555,'Regeneration'),
+(8,1,20557,'Beast Slaying'),
+(8,1,20558,'Throwing Specialization'),
+(8,1,21651,'Opening'),
+(8,1,21652,'Closing'),
+(8,1,22027,'Remove Insignia'),
+(8,1,22810,'Opening - No Text'),
+(8,1,26290,'Bow Specialization'),
+(8,1,26296,'Berserking'),
+(8,1,32215,'Victorious State'),
+(8,1,45927,'Summon Friend'),
+(8,1,58943,'Da Voodoo Shuffle'),
+(8,1,61437,'Opening'),
+(8,3,75,'Auto Shot'),
+(8,3,81,'Dodge'),
+(8,3,196,'One-Handed Axes'),
+(8,3,203,'Unarmed'),
+(8,3,204,'Defense'),
+(8,3,264,'Bows'),
+(8,3,522,'SPELLDEFENSE (DND)'),
+(8,3,669,'Language Orcish'),
+(8,3,1843,'Disarm'),
+(8,3,2382,'Generic'),
+(8,3,2479,'Honorless Target'),
+(8,3,2973,'Raptor Strike'),
+(8,3,3050,'Detect'),
+(8,3,3365,'Opening'),
+(8,3,6233,'Closing'),
+(8,3,6246,'Closing'),
+(8,3,6247,'Opening'),
+(8,3,6477,'Opening'),
+(8,3,6478,'Opening'),
+(8,3,6603,'Attack'),
+(8,3,7266,'Duel'),
+(8,3,7267,'Grovel'),
+(8,3,7341,'Language Troll'),
+(8,3,7355,'Stuck'),
+(8,3,8386,'Attacking'),
+(8,3,9077,'Leather'),
+(8,3,9078,'Cloth'),
+(8,3,9125,'Generic'),
+(8,3,13358,'Defensive State (DND)'),
+(8,3,20554,'Berserking'),
+(8,3,20555,'Regeneration'),
+(8,3,20557,'Beast Slaying'),
+(8,3,20558,'Throwing Specialization'),
+(8,3,21651,'Opening'),
+(8,3,21652,'Closing'),
+(8,3,22027,'Remove Insignia'),
+(8,3,22810,'Opening - No Text'),
+(8,3,24949,'Defensive State 2 (DND)'),
+(8,3,26290,'Bow Specialization'),
+(8,3,34082,'Advantaged State (DND)'),
+(8,3,45927,'Summon Friend'),
+(8,3,58943,'Da Voodoo Shuffle'),
+(8,3,61437,'Opening'),
+(8,4,81,'Dodge'),
+(8,4,203,'Unarmed'),
+(8,4,204,'Defense'),
+(8,4,522,'SPELLDEFENSE (DND)'),
+(8,4,669,'Language Orcish'),
+(8,4,1180,'Daggers'),
+(8,4,1752,'Sinister Strike'),
+(8,4,1843,'Disarm'),
+(8,4,2098,'Eviscerate'),
+(8,4,2382,'Generic'),
+(8,4,2479,'Honorless Target'),
+(8,4,2567,'Thrown'),
+(8,4,2764,'Throw'),
+(8,4,3050,'Detect'),
+(8,4,3365,'Opening'),
+(8,4,6233,'Closing'),
+(8,4,6246,'Closing'),
+(8,4,6247,'Opening'),
+(8,4,6477,'Opening'),
+(8,4,6478,'Opening'),
+(8,4,6603,'Attack'),
+(8,4,7266,'Duel'),
+(8,4,7267,'Grovel'),
+(8,4,7341,'Language Troll'),
+(8,4,7355,'Stuck'),
+(8,4,8386,'Attacking'),
+(8,4,9077,'Leather'),
+(8,4,9078,'Cloth'),
+(8,4,9125,'Generic'),
+(8,4,16092,'Defensive State (DND)'),
+(8,4,20555,'Regeneration'),
+(8,4,20557,'Beast Slaying'),
+(8,4,20558,'Throwing Specialization'),
+(8,4,21184,'Rogue Passive (DND)'),
+(8,4,21651,'Opening'),
+(8,4,21652,'Closing'),
+(8,4,22027,'Remove Insignia'),
+(8,4,22810,'Opening - No Text'),
+(8,4,26290,'Bow Specialization'),
+(8,4,26297,'Berserking'),
+(8,4,45927,'Summon Friend'),
+(8,4,58943,'Da Voodoo Shuffle'),
+(8,4,61437,'Opening'),
+(8,5,81,'Dodge'),
+(8,5,198,'One-Handed Maces'),
+(8,5,203,'Unarmed'),
+(8,5,204,'Defense'),
+(8,5,522,'SPELLDEFENSE (DND)'),
+(8,5,585,'Smite'),
+(8,5,669,'Language Orcish'),
+(8,5,1843,'Disarm'),
+(8,5,2050,'Lesser Heal'),
+(8,5,2382,'Generic'),
+(8,5,2479,'Honorless Target'),
+(8,5,3050,'Detect'),
+(8,5,3365,'Opening'),
+(8,5,5009,'Wands'),
+(8,5,5019,'Shoot'),
+(8,5,6233,'Closing'),
+(8,5,6246,'Closing'),
+(8,5,6247,'Opening'),
+(8,5,6477,'Opening'),
+(8,5,6478,'Opening'),
+(8,5,6603,'Attack'),
+(8,5,7266,'Duel'),
+(8,5,7267,'Grovel'),
+(8,5,7341,'Language Troll'),
+(8,5,7355,'Stuck'),
+(8,5,8386,'Attacking'),
+(8,5,9078,'Cloth'),
+(8,5,9125,'Generic'),
+(8,5,20554,'Berserking'),
+(8,5,20555,'Regeneration'),
+(8,5,20557,'Beast Slaying'),
+(8,5,20558,'Throwing Specialization'),
+(8,5,21651,'Opening'),
+(8,5,21652,'Closing'),
+(8,5,22027,'Remove Insignia'),
+(8,5,22810,'Opening - No Text'),
+(8,5,26290,'Bow Specialization'),
+(8,5,45927,'Summon Friend'),
+(8,5,58943,'Da Voodoo Shuffle'),
+(8,5,61437,'Opening'),
+(8,6,81,'Dodge'),
+(8,6,196,'One-Handed Axes'),
+(8,6,197,'Two-Handed Axes'),
+(8,6,200,'Polearms'),
+(8,6,201,'One-Handed Swords'),
+(8,6,202,'Two-Handed Swords'),
+(8,6,203,'Unarmed'),
+(8,6,204,'Defense'),
+(8,6,522,'SPELLDEFENSE (DND)'),
+(8,6,669,'Language Orcish'),
+(8,6,674,'Dual Wield'),
+(8,6,750,'Plate Mail'),
+(8,6,1843,'Disarm'),
+(8,6,2382,'Generic'),
+(8,6,2479,'Honorless Target'),
+(8,6,3050,'Detect'),
+(8,6,3127,'Parry'),
+(8,6,3275,'Linen Bandage'),
+(8,6,3276,'Heavy Linen Bandage'),
+(8,6,3277,'Wool Bandage'),
+(8,6,3278,'Heavy Wool Bandage'),
+(8,6,3365,'Opening'),
+(8,6,6233,'Closing'),
+(8,6,6246,'Closing'),
+(8,6,6247,'Opening'),
+(8,6,6477,'Opening'),
+(8,6,6478,'Opening'),
+(8,6,6603,'Attack'),
+(8,6,7266,'Duel'),
+(8,6,7267,'Grovel'),
+(8,6,7341,'Language Troll'),
+(8,6,7355,'Stuck'),
+(8,6,7928,'Silk Bandage'),
+(8,6,7929,'Heavy Silk Bandage'),
+(8,6,7934,'Anti-Venom'),
+(8,6,8386,'Attacking'),
+(8,6,8737,'Mail'),
+(8,6,9077,'Leather'),
+(8,6,9078,'Cloth'),
+(8,6,9125,'Generic'),
+(8,6,10840,'Mageweave Bandage'),
+(8,6,10841,'Heavy Mageweave Bandage'),
+(8,6,10846,'First Aid'),
+(8,6,18629,'Runecloth Bandage'),
+(8,6,18630,'Heavy Runecloth Bandage'),
+(8,6,20555,'Regeneration'),
+(8,6,20557,'Beast Slaying'),
+(8,6,20558,'Throwing Specialization'),
+(8,6,21651,'Opening'),
+(8,6,21652,'Closing'),
+(8,6,22027,'Remove Insignia'),
+(8,6,22810,'Opening - No Text'),
+(8,6,26290,'Bow Specialization'),
+(8,6,33391,'Journeyman Riding'),
+(8,6,45462,'Plague Strike'),
+(8,6,45477,'Icy Touch'),
+(8,6,45902,'Blood Strike'),
+(8,6,45903,'Offensive State (DND)'),
+(8,6,45927,'Summon Friend'),
+(8,6,47541,'Death Coil'),
+(8,6,48266,'Blood Presence'),
+(8,6,49410,'Forceful Deflection'),
+(8,6,49576,'Death Grip'),
+(8,6,50621,'Berserking'),
+(8,6,52665,'Sigil'),
+(8,6,58943,'Da Voodoo Shuffle'),
+(8,6,59879,'Blood Plague'),
+(8,6,59921,'Frost Fever'),
+(8,6,61437,'Opening'),
+(8,6,61455,'Runic Focus'),
+(8,7,81,'Dodge'),
+(8,7,107,'Block'),
+(8,7,198,'One-Handed Maces'),
+(8,7,203,'Unarmed'),
+(8,7,204,'Defense'),
+(8,7,227,'Staves'),
+(8,7,331,'Healing Wave'),
+(8,7,403,'Lightning Bolt'),
+(8,7,522,'SPELLDEFENSE (DND)'),
+(8,7,669,'Language Orcish'),
+(8,7,1843,'Disarm'),
+(8,7,2382,'Generic'),
+(8,7,2479,'Honorless Target'),
+(8,7,3050,'Detect'),
+(8,7,3365,'Opening'),
+(8,7,6233,'Closing'),
+(8,7,6246,'Closing'),
+(8,7,6247,'Opening'),
+(8,7,6477,'Opening'),
+(8,7,6478,'Opening'),
+(8,7,6603,'Attack'),
+(8,7,7266,'Duel'),
+(8,7,7267,'Grovel'),
+(8,7,7341,'Language Troll'),
+(8,7,7355,'Stuck'),
+(8,7,8386,'Attacking'),
+(8,7,9077,'Leather'),
+(8,7,9078,'Cloth'),
+(8,7,9116,'Shield'),
+(8,7,9125,'Generic'),
+(8,7,20554,'Berserking'),
+(8,7,20555,'Regeneration'),
+(8,7,20557,'Beast Slaying'),
+(8,7,20558,'Throwing Specialization'),
+(8,7,21651,'Opening'),
+(8,7,21652,'Closing'),
+(8,7,22027,'Remove Insignia'),
+(8,7,22810,'Opening - No Text'),
+(8,7,26290,'Bow Specialization'),
+(8,7,27763,'Totem'),
+(8,7,45927,'Summon Friend'),
+(8,7,58943,'Da Voodoo Shuffle'),
+(8,7,61437,'Opening'),
+(8,8,81,'Dodge'),
+(8,8,133,'Fireball'),
+(8,8,168,'Frost Armor'),
+(8,8,203,'Unarmed'),
+(8,8,204,'Defense'),
+(8,8,227,'Staves'),
+(8,8,522,'SPELLDEFENSE (DND)'),
+(8,8,669,'Language Orcish'),
+(8,8,1843,'Disarm'),
+(8,8,2382,'Generic'),
+(8,8,2479,'Honorless Target'),
+(8,8,3050,'Detect'),
+(8,8,3365,'Opening'),
+(8,8,5009,'Wands'),
+(8,8,5019,'Shoot'),
+(8,8,6233,'Closing'),
+(8,8,6246,'Closing'),
+(8,8,6247,'Opening'),
+(8,8,6477,'Opening'),
+(8,8,6478,'Opening'),
+(8,8,6603,'Attack'),
+(8,8,7266,'Duel'),
+(8,8,7267,'Grovel'),
+(8,8,7341,'Language Troll'),
+(8,8,7355,'Stuck'),
+(8,8,8386,'Attacking'),
+(8,8,9078,'Cloth'),
+(8,8,9125,'Generic'),
+(8,8,20554,'Berserking'),
+(8,8,20555,'Regeneration'),
+(8,8,20557,'Beast Slaying'),
+(8,8,20558,'Throwing Specialization'),
+(8,8,21651,'Opening'),
+(8,8,21652,'Closing'),
+(8,8,22027,'Remove Insignia'),
+(8,8,22810,'Opening - No Text'),
+(8,8,26290,'Bow Specialization'),
+(8,8,45927,'Summon Friend'),
+(8,8,58943,'Da Voodoo Shuffle'),
+(8,8,61437,'Opening'),
+(10,2,81,'Dodge'),
+(10,2,107,'Block'),
+(10,2,201,'One-Handed Swords'),
+(10,2,202,'Two-Handed Swords'),
+(10,2,203,'Unarmed'),
+(10,2,204,'Defense'),
+(10,2,522,'SPELLDEFENSE (DND)'),
+(10,2,635,'Holy Light'),
+(10,2,669,'Language Orcish'),
+(10,2,813,'Language Thalassian'),
+(10,2,822,'Magic Resistance'),
+(10,2,2382,'Generic'),
+(10,2,2479,'Honorless Target'),
+(10,2,3050,'Detect'),
+(10,2,3365,'Opening'),
+(10,2,6233,'Closing'),
+(10,2,6246,'Closing'),
+(10,2,6247,'Opening'),
+(10,2,6477,'Opening'),
+(10,2,6478,'Opening'),
+(10,2,6603,'Attack'),
+(10,2,7266,'Duel'),
+(10,2,7267,'Grovel'),
+(10,2,7355,'Stuck'),
+(10,2,8386,'Attacking'),
+(10,2,8737,'Mail'),
+(10,2,9077,'Leather'),
+(10,2,9078,'Cloth'),
+(10,2,9116,'Shield'),
+(10,2,9125,'Generic'),
+(10,2,21084,'Seal of Righteousness'),
+(10,2,21651,'Opening'),
+(10,2,21652,'Closing'),
+(10,2,22027,'Remove Insignia'),
+(10,2,22810,'Opening - No Text'),
+(10,2,27762,'Libram'),
+(10,2,28730,'Arcane Torrent'),
+(10,2,28734,'Mana Tap'),
+(10,2,28877,'Arcane Affinity'),
+(10,3,75,'Auto Shot'),
+(10,3,81,'Dodge'),
+(10,3,203,'Unarmed'),
+(10,3,204,'Defense'),
+(10,3,264,'Bows'),
+(10,3,522,'SPELLDEFENSE (DND)'),
+(10,3,669,'Language Orcish'),
+(10,3,813,'Language Thalassian'),
+(10,3,822,'Magic Resistance'),
+(10,3,1180,'Daggers'),
+(10,3,2382,'Generic'),
+(10,3,2479,'Honorless Target'),
+(10,3,2973,'Raptor Strike'),
+(10,3,3050,'Detect'),
+(10,3,3365,'Opening'),
+(10,3,6233,'Closing'),
+(10,3,6246,'Closing'),
+(10,3,6247,'Opening'),
+(10,3,6477,'Opening'),
+(10,3,6478,'Opening'),
+(10,3,6603,'Attack'),
+(10,3,7266,'Duel'),
+(10,3,7267,'Grovel'),
+(10,3,7355,'Stuck'),
+(10,3,8386,'Attacking'),
+(10,3,9077,'Leather'),
+(10,3,9078,'Cloth'),
+(10,3,9125,'Generic'),
+(10,3,13358,'Defensive State (DND)'),
+(10,3,21651,'Opening'),
+(10,3,21652,'Closing'),
+(10,3,22027,'Remove Insignia'),
+(10,3,22810,'Opening - No Text'),
+(10,3,24949,'Defensive State 2 (DND)'),
+(10,3,28730,'Arcane Torrent'),
+(10,3,28734,'Mana Tap'),
+(10,3,28877,'Arcane Affinity'),
+(10,3,34082,'Advantaged State (DND)'),
+(10,4,81,'Dodge'),
+(10,4,203,'Unarmed'),
+(10,4,204,'Defense'),
+(10,4,522,'SPELLDEFENSE (DND)'),
+(10,4,669,'Language Orcish'),
+(10,4,813,'Language Thalassian'),
+(10,4,822,'Magic Resistance'),
+(10,4,1180,'Daggers'),
+(10,4,1752,'Sinister Strike'),
+(10,4,2098,'Eviscerate'),
+(10,4,2382,'Generic'),
+(10,4,2479,'Honorless Target'),
+(10,4,2567,'Thrown'),
+(10,4,2764,'Throw'),
+(10,4,3050,'Detect'),
+(10,4,3365,'Opening'),
+(10,4,6233,'Closing'),
+(10,4,6246,'Closing'),
+(10,4,6247,'Opening'),
+(10,4,6477,'Opening'),
+(10,4,6478,'Opening'),
+(10,4,6603,'Attack'),
+(10,4,7266,'Duel'),
+(10,4,7267,'Grovel'),
+(10,4,7355,'Stuck'),
+(10,4,8386,'Attacking'),
+(10,4,9077,'Leather'),
+(10,4,9078,'Cloth'),
+(10,4,9125,'Generic'),
+(10,4,16092,'Defensive State (DND)'),
+(10,4,21184,'Rogue Passive (DND)'),
+(10,4,21651,'Opening'),
+(10,4,21652,'Closing'),
+(10,4,22027,'Remove Insignia'),
+(10,4,22810,'Opening - No Text'),
+(10,4,25046,'Arcane Torrent'),
+(10,4,28734,'Mana Tap'),
+(10,4,28877,'Arcane Affinity'),
+(10,5,81,'Dodge'),
+(10,5,198,'One-Handed Maces'),
+(10,5,203,'Unarmed'),
+(10,5,204,'Defense'),
+(10,5,522,'SPELLDEFENSE (DND)'),
+(10,5,585,'Smite'),
+(10,5,669,'Language Orcish'),
+(10,5,813,'Language Thalassian'),
+(10,5,822,'Magic Resistance'),
+(10,5,2050,'Lesser Heal'),
+(10,5,2382,'Generic'),
+(10,5,2479,'Honorless Target'),
+(10,5,3050,'Detect'),
+(10,5,3365,'Opening'),
+(10,5,5009,'Wands'),
+(10,5,5019,'Shoot'),
+(10,5,6233,'Closing'),
+(10,5,6246,'Closing'),
+(10,5,6247,'Opening'),
+(10,5,6477,'Opening'),
+(10,5,6478,'Opening'),
+(10,5,6603,'Attack'),
+(10,5,7266,'Duel'),
+(10,5,7267,'Grovel'),
+(10,5,7355,'Stuck'),
+(10,5,8386,'Attacking'),
+(10,5,9078,'Cloth'),
+(10,5,9125,'Generic'),
+(10,5,21651,'Opening'),
+(10,5,21652,'Closing'),
+(10,5,22027,'Remove Insignia'),
+(10,5,22810,'Opening - No Text'),
+(10,5,28730,'Arcane Torrent'),
+(10,5,28734,'Mana Tap'),
+(10,5,28877,'Arcane Affinity'),
+(10,6,81,'Dodge'),
+(10,6,196,'One-Handed Axes'),
+(10,6,197,'Two-Handed Axes'),
+(10,6,200,'Polearms'),
+(10,6,201,'One-Handed Swords'),
+(10,6,202,'Two-Handed Swords'),
+(10,6,203,'Unarmed'),
+(10,6,204,'Defense'),
+(10,6,522,'SPELLDEFENSE (DND)'),
+(10,6,669,'Language Orcish'),
+(10,6,674,'Dual Wield'),
+(10,6,750,'Plate Mail'),
+(10,6,813,'Language Thalassian'),
+(10,6,822,'Magic Resistance'),
+(10,6,1843,'Disarm'),
+(10,6,2382,'Generic'),
+(10,6,2479,'Honorless Target'),
+(10,6,3050,'Detect'),
+(10,6,3127,'Parry'),
+(10,6,3275,'Linen Bandage'),
+(10,6,3276,'Heavy Linen Bandage'),
+(10,6,3277,'Wool Bandage'),
+(10,6,3278,'Heavy Wool Bandage'),
+(10,6,3365,'Opening'),
+(10,6,6233,'Closing'),
+(10,6,6246,'Closing'),
+(10,6,6247,'Opening'),
+(10,6,6477,'Opening'),
+(10,6,6478,'Opening'),
+(10,6,6603,'Attack'),
+(10,6,7266,'Duel'),
+(10,6,7267,'Grovel'),
+(10,6,7355,'Stuck'),
+(10,6,7928,'Silk Bandage'),
+(10,6,7929,'Heavy Silk Bandage'),
+(10,6,7934,'Anti-Venom'),
+(10,6,8386,'Attacking'),
+(10,6,8737,'Mail'),
+(10,6,9077,'Leather'),
+(10,6,9078,'Cloth'),
+(10,6,9125,'Generic'),
+(10,6,10840,'Mageweave Bandage'),
+(10,6,10841,'Heavy Mageweave Bandage'),
+(10,6,10846,'First Aid'),
+(10,6,18629,'Runecloth Bandage'),
+(10,6,18630,'Heavy Runecloth Bandage'),
+(10,6,21651,'Opening'),
+(10,6,21652,'Closing'),
+(10,6,22027,'Remove Insignia'),
+(10,6,22810,'Opening - No Text'),
+(10,6,28877,'Arcane Affinity'),
+(10,6,33391,'Journeyman Riding'),
+(10,6,45462,'Plague Strike'),
+(10,6,45477,'Icy Touch'),
+(10,6,45902,'Blood Strike'),
+(10,6,45903,'Offensive State (DND)'),
+(10,6,45927,'Summon Friend'),
+(10,6,47541,'Death Coil'),
+(10,6,48266,'Blood Presence'),
+(10,6,49410,'Forceful Deflection'),
+(10,6,49576,'Death Grip'),
+(10,6,50613,'Arcane Torrent'),
+(10,6,52665,'Sigil'),
+(10,6,59879,'Blood Plague'),
+(10,6,59921,'Frost Fever'),
+(10,6,61437,'Opening'),
+(10,6,61455,'Runic Focus'),
+(10,8,81,'Dodge'),
+(10,8,133,'Fireball'),
+(10,8,168,'Frost Armor'),
+(10,8,203,'Unarmed'),
+(10,8,204,'Defense'),
+(10,8,227,'Staves'),
+(10,8,522,'SPELLDEFENSE (DND)'),
+(10,8,669,'Language Orcish'),
+(10,8,813,'Language Thalassian'),
+(10,8,822,'Magic Resistance'),
+(10,8,2382,'Generic'),
+(10,8,2479,'Honorless Target'),
+(10,8,3050,'Detect'),
+(10,8,3365,'Opening'),
+(10,8,5009,'Wands'),
+(10,8,5019,'Shoot'),
+(10,8,6233,'Closing'),
+(10,8,6246,'Closing'),
+(10,8,6247,'Opening'),
+(10,8,6477,'Opening'),
+(10,8,6478,'Opening'),
+(10,8,6603,'Attack'),
+(10,8,7266,'Duel'),
+(10,8,7267,'Grovel'),
+(10,8,7355,'Stuck'),
+(10,8,8386,'Attacking'),
+(10,8,9078,'Cloth'),
+(10,8,9125,'Generic'),
+(10,8,21651,'Opening'),
+(10,8,21652,'Closing'),
+(10,8,22027,'Remove Insignia'),
+(10,8,22810,'Opening - No Text'),
+(10,8,28730,'Arcane Torrent'),
+(10,8,28734,'Mana Tap'),
+(10,8,28877,'Arcane Affinity'),
+(10,9,81,'Dodge'),
+(10,9,203,'Unarmed'),
+(10,9,204,'Defense'),
+(10,9,522,'SPELLDEFENSE (DND)'),
+(10,9,669,'Language Orcish'),
+(10,9,686,'Shadow Bolt'),
+(10,9,687,'Demon Skin'),
+(10,9,813,'Language Thalassian'),
+(10,9,822,'Magic Resistance'),
+(10,9,1180,'Daggers'),
+(10,9,2382,'Generic'),
+(10,9,2479,'Honorless Target'),
+(10,9,3050,'Detect'),
+(10,9,3365,'Opening'),
+(10,9,5009,'Wands'),
+(10,9,5019,'Shoot'),
+(10,9,6233,'Closing'),
+(10,9,6246,'Closing'),
+(10,9,6247,'Opening'),
+(10,9,6477,'Opening'),
+(10,9,6478,'Opening'),
+(10,9,6603,'Attack'),
+(10,9,7266,'Duel'),
+(10,9,7267,'Grovel'),
+(10,9,7355,'Stuck'),
+(10,9,8386,'Attacking'),
+(10,9,9078,'Cloth'),
+(10,9,9125,'Generic'),
+(10,9,21651,'Opening'),
+(10,9,21652,'Closing'),
+(10,9,22027,'Remove Insignia'),
+(10,9,22810,'Opening - No Text'),
+(10,9,28730,'Arcane Torrent'),
+(10,9,28734,'Mana Tap'),
+(10,9,28877,'Arcane Affinity'),
+(11,1,78,'Heroic Strike'),
+(11,1,81,'Dodge'),
+(11,1,107,'Block'),
+(11,1,198,'One-Handed Maces'),
+(11,1,201,'One-Handed Swords'),
+(11,1,202,'Two-Handed Swords'),
+(11,1,203,'Unarmed'),
+(11,1,204,'Defense'),
+(11,1,522,'SPELLDEFENSE (DND)'),
+(11,1,668,'Language Common'),
+(11,1,1843,'Disarm'),
+(11,1,2382,'Generic'),
+(11,1,2457,'Battle Stance'),
+(11,1,2479,'Honorless Target'),
+(11,1,3050,'Detect'),
+(11,1,3365,'Opening'),
+(11,1,5301,'Defensive State (DND)'),
+(11,1,6233,'Closing'),
+(11,1,6246,'Closing'),
+(11,1,6247,'Opening'),
+(11,1,6477,'Opening'),
+(11,1,6478,'Opening'),
+(11,1,6562,'Heroic Presence'),
+(11,1,6603,'Attack'),
+(11,1,7266,'Duel'),
+(11,1,7267,'Grovel'),
+(11,1,7355,'Stuck'),
+(11,1,8386,'Attacking'),
+(11,1,8737,'Mail'),
+(11,1,9077,'Leather'),
+(11,1,9078,'Cloth'),
+(11,1,9116,'Shield'),
+(11,1,9125,'Generic'),
+(11,1,21651,'Opening'),
+(11,1,21652,'Closing'),
+(11,1,22027,'Remove Insignia'),
+(11,1,22810,'Opening - No Text'),
+(11,1,28875,'Gemcutting'),
+(11,1,28880,'Gift of the Naaru'),
+(11,1,29932,'Language Draenei'),
+(11,1,32215,'Victorious State'),
+(11,1,45927,'Summon Friend'),
+(11,1,59221,'Shadow Resistance'),
+(11,1,61437,'Opening'),
+(11,2,81,'Dodge'),
+(11,2,107,'Block'),
+(11,2,198,'One-Handed Maces'),
+(11,2,199,'Two-Handed Maces'),
+(11,2,203,'Unarmed'),
+(11,2,204,'Defense'),
+(11,2,522,'SPELLDEFENSE (DND)'),
+(11,2,635,'Holy Light'),
+(11,2,668,'Language Common'),
+(11,2,1843,'Disarm'),
+(11,2,2382,'Generic'),
+(11,2,2479,'Honorless Target'),
+(11,2,3050,'Detect'),
+(11,2,3365,'Opening'),
+(11,2,6233,'Closing'),
+(11,2,6246,'Closing'),
+(11,2,6247,'Opening'),
+(11,2,6477,'Opening'),
+(11,2,6478,'Opening'),
+(11,2,6562,'Heroic Presence'),
+(11,2,6603,'Attack'),
+(11,2,7266,'Duel'),
+(11,2,7267,'Grovel'),
+(11,2,7355,'Stuck'),
+(11,2,8386,'Attacking'),
+(11,2,8737,'Mail'),
+(11,2,9077,'Leather'),
+(11,2,9078,'Cloth'),
+(11,2,9116,'Shield'),
+(11,2,9125,'Generic'),
+(11,2,21084,'Seal of Righteousness'),
+(11,2,21651,'Opening'),
+(11,2,21652,'Closing'),
+(11,2,22027,'Remove Insignia'),
+(11,2,22810,'Opening - No Text'),
+(11,2,27762,'Libram'),
+(11,2,28875,'Gemcutting'),
+(11,2,29932,'Language Draenei'),
+(11,2,45927,'Summon Friend'),
+(11,2,59221,'Shadow Resistance'),
+(11,2,59542,'Gift of the Naaru'),
+(11,2,61437,'Opening'),
+(11,3,75,'Auto Shot'),
+(11,3,81,'Dodge'),
+(11,3,201,'One-Handed Swords'),
+(11,3,203,'Unarmed'),
+(11,3,204,'Defense'),
+(11,3,522,'SPELLDEFENSE (DND)'),
+(11,3,668,'Language Common'),
+(11,3,1843,'Disarm'),
+(11,3,2382,'Generic'),
+(11,3,2479,'Honorless Target'),
+(11,3,2973,'Raptor Strike'),
+(11,3,3050,'Detect'),
+(11,3,3365,'Opening'),
+(11,3,5011,'Crossbows'),
+(11,3,6233,'Closing'),
+(11,3,6246,'Closing'),
+(11,3,6247,'Opening'),
+(11,3,6477,'Opening'),
+(11,3,6478,'Opening'),
+(11,3,6562,'Heroic Presence'),
+(11,3,6603,'Attack'),
+(11,3,7266,'Duel'),
+(11,3,7267,'Grovel'),
+(11,3,7355,'Stuck'),
+(11,3,8386,'Attacking'),
+(11,3,9077,'Leather'),
+(11,3,9078,'Cloth'),
+(11,3,9125,'Generic'),
+(11,3,13358,'Defensive State (DND)'),
+(11,3,21651,'Opening'),
+(11,3,21652,'Closing'),
+(11,3,22027,'Remove Insignia'),
+(11,3,22810,'Opening - No Text'),
+(11,3,24949,'Defensive State 2 (DND)'),
+(11,3,28875,'Gemcutting'),
+(11,3,29932,'Language Draenei'),
+(11,3,34082,'Advantaged State (DND)'),
+(11,3,45927,'Summon Friend'),
+(11,3,59221,'Shadow Resistance'),
+(11,3,59543,'Gift of the Naaru'),
+(11,3,61437,'Opening'),
+(11,5,81,'Dodge'),
+(11,5,198,'One-Handed Maces'),
+(11,5,203,'Unarmed'),
+(11,5,204,'Defense'),
+(11,5,522,'SPELLDEFENSE (DND)'),
+(11,5,585,'Smite'),
+(11,5,668,'Language Common'),
+(11,5,1843,'Disarm'),
+(11,5,2050,'Lesser Heal'),
+(11,5,2382,'Generic'),
+(11,5,2479,'Honorless Target'),
+(11,5,3050,'Detect'),
+(11,5,3365,'Opening'),
+(11,5,5009,'Wands'),
+(11,5,5019,'Shoot'),
+(11,5,6233,'Closing'),
+(11,5,6246,'Closing'),
+(11,5,6247,'Opening'),
+(11,5,6477,'Opening'),
+(11,5,6478,'Opening'),
+(11,5,6603,'Attack'),
+(11,5,7266,'Duel'),
+(11,5,7267,'Grovel'),
+(11,5,7355,'Stuck'),
+(11,5,8386,'Attacking'),
+(11,5,9078,'Cloth'),
+(11,5,9125,'Generic'),
+(11,5,21651,'Opening'),
+(11,5,21652,'Closing'),
+(11,5,22027,'Remove Insignia'),
+(11,5,22810,'Opening - No Text'),
+(11,5,28875,'Gemcutting'),
+(11,5,28878,'Inspiring Presence'),
+(11,5,29932,'Language Draenei'),
+(11,5,45927,'Summon Friend'),
+(11,5,59221,'Shadow Resistance'),
+(11,5,59544,'Gift of the Naaru'),
+(11,5,61437,'Opening'),
+(11,6,81,'Dodge'),
+(11,6,196,'One-Handed Axes'),
+(11,6,197,'Two-Handed Axes'),
+(11,6,200,'Polearms'),
+(11,6,201,'One-Handed Swords'),
+(11,6,202,'Two-Handed Swords'),
+(11,6,203,'Unarmed'),
+(11,6,204,'Defense'),
+(11,6,522,'SPELLDEFENSE (DND)'),
+(11,6,668,'Language Common'),
+(11,6,674,'Dual Wield'),
+(11,6,750,'Plate Mail'),
+(11,6,1843,'Disarm'),
+(11,6,2382,'Generic'),
+(11,6,2479,'Honorless Target'),
+(11,6,3050,'Detect'),
+(11,6,3127,'Parry'),
+(11,6,3275,'Linen Bandage'),
+(11,6,3276,'Heavy Linen Bandage'),
+(11,6,3277,'Wool Bandage'),
+(11,6,3278,'Heavy Wool Bandage'),
+(11,6,3365,'Opening'),
+(11,6,6233,'Closing'),
+(11,6,6246,'Closing'),
+(11,6,6247,'Opening'),
+(11,6,6477,'Opening'),
+(11,6,6478,'Opening'),
+(11,6,6562,'Heroic Presence'),
+(11,6,6603,'Attack'),
+(11,6,7266,'Duel'),
+(11,6,7267,'Grovel'),
+(11,6,7355,'Stuck'),
+(11,6,7928,'Silk Bandage'),
+(11,6,7929,'Heavy Silk Bandage'),
+(11,6,7934,'Anti-Venom'),
+(11,6,8386,'Attacking'),
+(11,6,8737,'Mail'),
+(11,6,9077,'Leather'),
+(11,6,9078,'Cloth'),
+(11,6,9125,'Generic'),
+(11,6,10840,'Mageweave Bandage'),
+(11,6,10841,'Heavy Mageweave Bandage'),
+(11,6,10846,'First Aid'),
+(11,6,18629,'Runecloth Bandage'),
+(11,6,18630,'Heavy Runecloth Bandage'),
+(11,6,21651,'Opening'),
+(11,6,21652,'Closing'),
+(11,6,22027,'Remove Insignia'),
+(11,6,22810,'Opening - No Text'),
+(11,6,28875,'Gemcutting'),
+(11,6,29932,'Language Draenei'),
+(11,6,33391,'Journeyman Riding'),
+(11,6,45462,'Plague Strike'),
+(11,6,45477,'Icy Touch'),
+(11,6,45902,'Blood Strike'),
+(11,6,45903,'Offensive State (DND)'),
+(11,6,45927,'Summon Friend'),
+(11,6,47541,'Death Coil'),
+(11,6,48266,'Blood Presence'),
+(11,6,49410,'Forceful Deflection'),
+(11,6,49576,'Death Grip'),
+(11,6,52665,'Sigil'),
+(11,6,59221,'Shadow Resistance'),
+(11,6,59539,'Shadow Resistance'),
+(11,6,59545,'Gift of the Naaru'),
+(11,6,59879,'Blood Plague'),
+(11,6,59921,'Frost Fever'),
+(11,6,61437,'Opening'),
+(11,6,61455,'Runic Focus'),
+(11,7,81,'Dodge'),
+(11,7,107,'Block'),
+(11,7,198,'One-Handed Maces'),
+(11,7,203,'Unarmed'),
+(11,7,204,'Defense'),
+(11,7,227,'Staves'),
+(11,7,331,'Healing Wave'),
+(11,7,403,'Lightning Bolt'),
+(11,7,522,'SPELLDEFENSE (DND)'),
+(11,7,668,'Language Common'),
+(11,7,1843,'Disarm'),
+(11,7,2382,'Generic'),
+(11,7,2479,'Honorless Target'),
+(11,7,3050,'Detect'),
+(11,7,3365,'Opening'),
+(11,7,6233,'Closing'),
+(11,7,6246,'Closing'),
+(11,7,6247,'Opening'),
+(11,7,6477,'Opening'),
+(11,7,6478,'Opening'),
+(11,7,6603,'Attack'),
+(11,7,7266,'Duel'),
+(11,7,7267,'Grovel'),
+(11,7,7355,'Stuck'),
+(11,7,8386,'Attacking'),
+(11,7,9077,'Leather'),
+(11,7,9078,'Cloth'),
+(11,7,9116,'Shield'),
+(11,7,9125,'Generic'),
+(11,7,21651,'Opening'),
+(11,7,21652,'Closing'),
+(11,7,22027,'Remove Insignia'),
+(11,7,22810,'Opening - No Text'),
+(11,7,27763,'Totem'),
+(11,7,28875,'Gemcutting'),
+(11,7,28878,'Inspiring Presence'),
+(11,7,29932,'Language Draenei'),
+(11,7,45927,'Summon Friend'),
+(11,7,59221,'Shadow Resistance'),
+(11,7,59547,'Gift of the Naaru'),
+(11,7,61437,'Opening'),
+(11,8,81,'Dodge'),
+(11,8,133,'Fireball'),
+(11,8,168,'Frost Armor'),
+(11,8,203,'Unarmed'),
+(11,8,204,'Defense'),
+(11,8,227,'Staves'),
+(11,8,522,'SPELLDEFENSE (DND)'),
+(11,8,668,'Language Common'),
+(11,8,1843,'Disarm'),
+(11,8,2382,'Generic'),
+(11,8,2479,'Honorless Target'),
+(11,8,3050,'Detect'),
+(11,8,3365,'Opening'),
+(11,8,5009,'Wands'),
+(11,8,5019,'Shoot'),
+(11,8,6233,'Closing'),
+(11,8,6246,'Closing'),
+(11,8,6247,'Opening'),
+(11,8,6477,'Opening'),
+(11,8,6478,'Opening'),
+(11,8,6603,'Attack'),
+(11,8,7266,'Duel'),
+(11,8,7267,'Grovel'),
+(11,8,7355,'Stuck'),
+(11,8,8386,'Attacking'),
+(11,8,9078,'Cloth'),
+(11,8,9125,'Generic'),
+(11,8,21651,'Opening'),
+(11,8,21652,'Closing'),
+(11,8,22027,'Remove Insignia'),
+(11,8,22810,'Opening - No Text'),
+(11,8,28875,'Gemcutting'),
+(11,8,28878,'Inspiring Presence'),
+(11,8,29932,'Language Draenei'),
+(11,8,45927,'Summon Friend'),
+(11,8,59221,'Shadow Resistance'),
+(11,8,59548,'Gift of the Naaru'),
+(11,8,61437,'Opening');
/*!40000 ALTER TABLE `playercreateinfo_spell` ENABLE KEYS */;
UNLOCK TABLES;
@@ -13466,6 +13634,16 @@ INSERT INTO spell_chain VALUES
(48159,34917,34914,4,0),
(48160,48159,34914,5,0),
/*------------------
+-- (129) First Aid
+------------------*/
+/*First Aid*/
+(3273,0,3273,1,0),
+(3274,3273,3273,2,0),
+(7924,3274,3273,3,0),
+(10846,7924,3273,4,0),
+(27028,10846,3273,5,0),
+(45542,27028,3273,6,0),
+/*------------------
-- (134) Feral Combat (Druid)
------------------*/
/*Bash*/
@@ -13691,6 +13869,64 @@ INSERT INTO spell_chain VALUES
(58431,27022,1510,5,0),
(58434,58431,1510,6,0),
/*------------------
+-- (164) Blacksmithing
+------------------*/
+/*Blacksmithing*/
+(2018,0,2018,1,0),
+(3100,2018,2018,2,0),
+(3538,3100,2018,3,0),
+(9785,3538,2018,4,0),
+(9787,9785,2018,5,0),
+(9788,9785,2018,5,0),
+(29844,9785,2018,5,0),
+(17039,9787,2018,6,0),
+(17040,9787,2018,6,0),
+(17041,9787,2018,6,0),
+(51300,29844,2018,6,0),
+/*------------------
+-- (165) Leatherworking
+------------------*/
+/*Leatherworking*/
+(2108,0,2108,1,0),
+(3104,2108,2108,2,0),
+(3811,3104,2108,3,0),
+(10662,3811,2108,4,0),
+(10656,10662,2108,5,0),
+(10658,10662,2108,5,0),
+(10660,10662,2108,5,0),
+(32549,10662,2108,5,0),
+(51302,32549,2108,6,0),
+/*------------------
+-- (171) Alchemy
+------------------*/
+/* Alchemy */
+(2259,0,2259,1,0),
+(3101,2259,2259,2,0),
+(3464,3101,2259,3,0),
+(11611,3464,2259,4,0),
+(28596,11611,2259,5,0),
+(28672,11611,2259,5,0),
+(28675,11611,2259,5,0),
+(28677,11611,2259,5,0),
+(51304,28596,2259,6,0),
+/*------------------
+-- (182) Herbalizm
+------------------*/
+/*Herb Gathering*/
+(2366,0,2366,1,0),
+(2368,2366,2366,2,0),
+(3570,2368,2366,3,0),
+(11993,3570,2366,4,0),
+(28695,11993,2366,5,0),
+(50300,28695,2366,6,0),
+/*Lifeblood*/
+(55428,0,55428,1,0),
+(55480,55428,55428,2,0),
+(55500,55480,55428,3,0),
+(55501,55500,55428,4,0),
+(55502,55501,55428,5,0),
+(55503,55502,55428,6,0),
+/*------------------
-- (184) Retribution (Paladin)
------------------*/
/*Blessingof Might*/
@@ -13726,7 +13962,34 @@ INSERT INTO spell_chain VALUES
(27150,10301,7294,6,0),
(54043,27150,7294,7,0),
/*------------------
---(188) Pet - Imp
+-- (185) Cooking
+------------------*/
+/*Cooking*/
+(2550,0,2550,1,0),
+(3102,2550,2550,2,0),
+(3413,3102,2550,3,0),
+(18260,3413,2550,4,0),
+(33359,18260,2550,5,0),
+(51296,33359,2550,6,0),
+/*------------------
+-- (186) Mining
+------------------*/
+/*Mining*/
+(2575,0,2575,1,0),
+(2576,2575,2575,2,0),
+(3564,2576,2575,3,0),
+(10248,3564,2575,4,0),
+(29354,10248,2575,5,0),
+(50310,29354,2575,6,0),
+/*Toughness*/
+(53120,0,53120,1,0),
+(53121,53120,53120,2,0),
+(53122,53121,53120,3,0),
+(53123,53122,53120,4,0),
+(53124,53123,53120,5,0),
+(53040,53124,53120,6,0),
+/*------------------
+-- (188) Pet - Imp
------------------*/
/*Blood Pact*/
(6307,0,6307,1,0),
@@ -13775,6 +14038,19 @@ INSERT INTO spell_chain VALUES
(19244,0,19244,1,0),
(19647,19244,19244,2,0),
/*------------------
+-- (197) Tailoring
+------------------*/
+/*Tailoring*/
+(3908,0,3908,1,0),
+(3909,3908,3908,2,0),
+(3910,3909,3908,3,0),
+(12180,3910,3908,4,0),
+(26790,12180,3908,5,0),
+(26797,12180,3908,5,0),
+(26798,12180,3908,5,0),
+(26801,12180,3908,5,0),
+(51309,26790,3908,6,0),
+/*------------------
--(203)Pet-Spider
--(208)Pet-Wolf
--(212)Pet-Crocolisk
@@ -13796,6 +14072,18 @@ INSERT INTO spell_chain VALUES
(52473,27050,17253,10,0),
(52474,52473,17253,11,0),
/*------------------
+-- (202) Engineering
+------------------*/
+/*Engineering*/
+(4036,0,4036,1,0),
+(4037,4036,4036,2,0),
+(4038,4037,4036,3,0),
+(12656,4038,4036,4,0),
+(20219,12656,4036,5,0),
+(20222,12656,4036,5,0),
+(30350,12656,4036,5,0),
+(51306,30350,4036,6,0),
+/*------------------
-- (204) Pet - Voidwalker
------------------*/
/*Consume Shadows*/
@@ -14339,6 +14627,16 @@ INSERT INTO spell_chain VALUES
(27047,14921,2649,8,0),
(61676,27047,2649,9,0),
/*------------------
+-- (333) Enchanting
+------------------*/
+/*Enchanting*/
+(7411,0,7411,1,0),
+(7412,7411,7411,2,0),
+(7413,7412,7411,3,0),
+(13920,7413,7411,4,0),
+(28029,13920,7411,5,0),
+(51313,28029,7411,6,0),
+/*------------------
--(354)Demonology
------------------*/
/*Banish*/
@@ -14536,16 +14834,26 @@ INSERT INTO spell_chain VALUES
(47841,30405,30108,4,0),
(47843,47841,30108,5,0),
/*------------------
---(373)Enhancement
+-- (356) Fishing
------------------*/
-/*FireResistanceTotem*/
+/*Fishing*/
+(7620,0,7620,1,0),
+(7731,7620,7620,2,0),
+(7732,7731,7620,3,0),
+(18248,7732,7620,4,0),
+(33095,18248,7620,5,0),
+(51294,33095,7620,6,0),
+/*------------------
+--(373) Enhancement
+------------------*/
+/*Fire Resistance Totem*/
(8184,0,8184,1,0),
(10537,8184,8184,2,0),
(10538,10537,8184,3,0),
(25563,10538,8184,4,0),
(58737,25563,8184,5,0),
(58739,58737,8184,6,0),
-/*FlametongueTotem*/
+/*Flametongue Totem*/
(8227,0,8227,1,0),
(8249,8227,8227,2,0),
(10526,8249,8227,3,0),
@@ -14554,7 +14862,7 @@ INSERT INTO spell_chain VALUES
(58649,25557,8227,6,0),
(58652,58649,8227,7,0),
(58656,58652,8227,8,0),
-/*FlametongueWeapon*/
+/*Flametongue Weapon*/
(8024,0,8024,1,0),
(8027,8024,8024,2,0),
(8030,8027,8024,3,0),
@@ -14565,14 +14873,14 @@ INSERT INTO spell_chain VALUES
(58785,25489,8024,8,0),
(58789,58785,8024,9,0),
(58790,58789,8024,10,0),
-/*FrostResistanceTotem*/
+/*Frost Resistance Totem*/
(8181,0,8181,1,0),
(10478,8181,8181,2,0),
(10479,10478,8181,3,0),
(25560,10479,8181,4,0),
(58741,25560,8181,5,0),
(58745,58741,8181,6,0),
-/*FrostbrandWeapon*/
+/*Frostbrand Weapon*/
(8033,0,8033,1,0),
(8038,8033,8033,2,0),
(10456,8038,8033,3,0),
@@ -14603,19 +14911,19 @@ INSERT INTO spell_chain VALUES
(25472,25469,324,9,0),
(49280,25472,324,10,0),
(49281,49280,324,11,0),
-/*NatureResistanceTotem*/
+/*Nature Resistance Totem*/
(10595,0,10595,1,0),
(10600,10595,10595,2,0),
(10601,10600,10595,3,0),
(25574,10601,10595,4,0),
(58746,25574,10595,5,0),
(58749,58746,10595,6,0),
-/*RockbiterWeapon*/
+/*Rockbiter Weapon*/
(8017,0,8017,1,0),
(8018,8017,8017,2,0),
(8019,8018,8017,3,0),
(10399,8019,8017,4,0),
-/*StoneskinTotem*/
+/*Stoneskin Totem*/
(8071,0,8071,1,0),
(8154,8071,8071,2,0),
(8155,8154,8071,3,0),
@@ -14626,7 +14934,7 @@ INSERT INTO spell_chain VALUES
(25509,25508,8071,8,0),
(58751,25509,8071,9,0),
(58753,58751,8071,10,0),
-/*StrengthofEarthTotem*/
+/*Strength of Earth Totem*/
(8075,0,8075,1,0),
(8160,8075,8075,2,0),
(8161,8160,8075,3,0),
@@ -14786,10 +15094,10 @@ INSERT INTO spell_chain VALUES
(25464,10473,8056,5,0),
(49235,25464,8056,6,0),
(49236,49235,8056,7,0),
-/*LavaBurst*/
+/*Lava Burst*/
(51505,0,51505,1,0),
(60043,51505,51505,2,0),
-/*LightningBolt*/
+/*Lightning Bolt*/
(403,0,403,1,0),
(529,403,403,2,0),
(548,529,403,3,0),
@@ -14804,7 +15112,7 @@ INSERT INTO spell_chain VALUES
(25449,25448,403,12,0),
(49237,25449,403,13,0),
(49238,49237,403,14,0),
-/*MagmaTotem*/
+/*Magma Totem*/
(8190,0,8190,1,0),
(10585,8190,8190,2,0),
(10586,10585,8190,3,0),
@@ -14815,7 +15123,7 @@ INSERT INTO spell_chain VALUES
/*Purge*/
(370,0,370,1,0),
(8012,370,370,2,0),
-/*SearingTotem*/
+/*Searing Totem*/
(3599,0,3599,1,0),
(6363,3599,3599,2,0),
(6364,6363,3599,3,0),
@@ -14826,7 +15134,7 @@ INSERT INTO spell_chain VALUES
(58699,25533,3599,8,0),
(58703,58699,3599,9,0),
(58704,58703,3599,10,0),
-/*StoneclawTotem*/
+/*Stoneclaw Totem*/
(5730,0,5730,1,0),
(6390,5730,5730,2,0),
(6391,6390,5730,3,0),
@@ -14837,11 +15145,33 @@ INSERT INTO spell_chain VALUES
(58580,25525,5730,8,0),
(58581,58580,5730,9,0),
(58582,58581,5730,10,0),
-/*TotemofWrath*/
+/*Totemof Wrath*/
(30706,0,30706,1,0),
(57720,30706,30706,2,0),
(57721,57720,30706,3,0),
(57722,57721,30706,4,0),
+/*Thunderstorm*/
+(51490,0,51490,1,0),
+(59156,51490,51490,2,0),
+(59158,59156,51490,3,0),
+(59159,59158,51490,4,0),
+/*------------------
+-- (393) Skinning
+------------------*/
+/*Skinning*/
+(8613,0,8613,1,0),
+(8617,8613,8613,2,0),
+(8618,8617,8613,3,0),
+(10768,8618,8613,4,0),
+(32678,10768,8613,5,0),
+(50305,32678,8613,6,0),
+/*Master of Anatomy*/
+(53125,0,53125,1,0),
+(53662,53125,53125,2,0),
+(53663,53662,53125,3,0),
+(53664,53663,53125,4,0),
+(53665,53664,53125,5,0),
+(53666,53665,53125,6,0),
/*------------------
--(573)Restoration
------------------*/
@@ -15345,6 +15675,16 @@ INSERT INTO spell_chain VALUES
(25011,25010,24844,5,0),
(25012,25011,24844,6,0),
/*------------------
+-- (755) Jewelcrafting
+------------------*/
+/*Jewelcrafting*/
+(25229,0,25229,1,0),
+(25230,25229,25229,2,0),
+(28894,25230,25229,3,0),
+(28895,28894,25229,4,0),
+(28897,28895,25229,5,0),
+(51311,28897,25229,6,0),
+/*------------------
--(761)Pet-Felguard
------------------*/
/*Anguish*/
@@ -15363,6 +15703,14 @@ INSERT INTO spell_chain VALUES
(30198,30194,30151,3,0),
(47996,30198,30151,4,0),
/*------------------
+-- (762) Riding
+------------------*/
+/*Riding*/
+(33388,0,33388,1,0),
+(33391,33388,33388,2,0),
+(34090,33391,33388,3,0),
+(34091,34090,33388,4,0),
+/*------------------
--(763)Pet-Dragonhawk
------------------*/
/*FireBreath*/
@@ -15529,6 +15877,16 @@ INSERT INTO spell_chain VALUES
(51378,51376,49194,3,0),
(51379,51378,49194,4,0),
/*------------------
+-- (773) Inscription
+------------------*/
+/*Inscription*/
+(45357,0,45357,1,0),
+(45358,45357,45357,2,0),
+(45359,45358,45357,3,0),
+(45360,45359,45357,4,0),
+(45361,45360,45357,5,0),
+(45363,45361,45357,6,0),
+/*------------------
--(780)Pet-ExoticChimaera
------------------*/
/*FroststormBreath*/
@@ -15587,129 +15945,7 @@ INSERT INTO spell_chain VALUES
(61195,61194,61193,3,0),
(61196,61195,61193,4,0),
(61197,61196,61193,5,0),
-(61198,61197,61193,6,0),
-/*------------------
---Professions
-------------------*/
-/*Alchemy*/
-(2259,0,2259,1,0),
-(3101,2259,2259,2,0),
-(3464,3101,2259,3,0),
-(11611,3464,2259,4,0),
-(28596,11611,2259,5,0),
-(28672,11611,2259,5,0),
-(28675,11611,2259,5,0),
-(28677,11611,2259,5,0),
-(51304,28596,2259,6,0),
-/*Blacksmithing*/
-(2018,0,2018,1,0),
-(3100,2018,2018,2,0),
-(3538,3100,2018,3,0),
-(9785,3538,2018,4,0),
-(9787,9785,2018,5,0),
-(9788,9785,2018,5,0),
-(29844,9785,2018,5,0),
-(17039,9787,2018,6,0),
-(17040,9787,2018,6,0),
-(17041,9787,2018,6,0),
-(51300,29844,2018,6,0),
-/*Cooking*/
-(2550,0,2550,1,0),
-(3102,2550,2550,2,0),
-(3413,3102,2550,3,0),
-(18260,3413,2550,4,0),
-(33359,18260,2550,5,0),
-(51296,33359,2550,6,0),
-/*Enchanting*/
-(7411,0,7411,1,0),
-(7412,7411,7411,2,0),
-(7413,7412,7411,3,0),
-(13920,7413,7411,4,0),
-(28029,13920,7411,5,0),
-(51313,28029,7411,6,0),
-/*Engineering*/
-(4036,0,4036,1,0),
-(4037,4036,4036,2,0),
-(4038,4037,4036,3,0),
-(12656,4038,4036,4,0),
-(20219,12656,4036,5,0),
-(20222,12656,4036,5,0),
-(30350,12656,4036,5,0),
-(51306,30350,4036,6,0),
-/*First Aid*/
-(3273,0,3273,1,0),
-(3274,3273,3273,2,0),
-(7924,3274,3273,3,0),
-(10846,7924,3273,4,0),
-(27028,10846,3273,5,0),
-(45542,27028,3273,6,0),
-/*Fishing*/
-(7620,0,7620,1,0),
-(7731,7620,7620,2,0),
-(7732,7731,7620,3,0),
-(18248,7732,7620,4,0),
-(33095,18248,7620,5,0),
-(51294,33095,7620,6,0),
-/*Herb Gathering*/
-(2366,0,2366,1,0),
-(2368,2366,2366,2,0),
-(3570,2368,2366,3,0),
-(11993,3570,2366,4,0),
-(28695,11993,2366,5,0),
-(50300,28695,2366,6,0),
-/*Inscription*/
-(45357,0,45357,1,0),
-(45358,45357,45357,2,0),
-(45359,45358,45357,3,0),
-(45360,45359,45357,4,0),
-(45361,45360,45357,5,0),
-(45363,45361,45357,6,0),
-/*Jewelcrafting*/
-(25229,0,25229,1,0),
-(25230,25229,25229,2,0),
-(28894,25230,25229,3,0),
-(28895,28894,25229,4,0),
-(28897,28895,25229,5,0),
-(51311,28897,25229,6,0),
-/*Leatherworking*/
-(2108,0,2108,1,0),
-(3104,2108,2108,2,0),
-(3811,3104,2108,3,0),
-(10662,3811,2108,4,0),
-(10656,10662,2108,5,0),
-(10658,10662,2108,5,0),
-(10660,10662,2108,5,0),
-(32549,10662,2108,5,0),
-(51302,32549,2108,6,0),
-/*Mining*/
-(2575,0,2575,1,0),
-(2576,2575,2575,2,0),
-(3564,2576,2575,3,0),
-(10248,3564,2575,4,0),
-(29354,10248,2575,5,0),
-(50310,29354,2575,6,0),
-/*Riding*/
-(33388,0,33388,1,0),
-(33391,33388,33388,2,0),
-(34090,33391,33388,3,0),
-(34091,34090,33388,4,0),
-/*Skinning*/
-(8613,0,8613,1,0),
-(8617,8613,8613,2,0),
-(8618,8617,8613,3,0),
-(10768,8618,8613,4,0),
-(32678,10768,8613,5,0),
-(50305,32678,8613,6,0),
-/*Tailoring*/
-(3908,0,3908,1,0),
-(3909,3908,3908,2,0),
-(3910,3909,3908,3,0),
-(12180,3910,3908,4,0),
-(26790,12180,3908,5,0),
-(26797,12180,3908,5,0),
-(26798,12180,3908,5,0),
-(26801,12180,3908,5,0),
-(51309,26790,3908,6,0);
+(61198,61197,61193,6,0);
/*!40000 ALTER TABLE `spell_chain` ENABLE KEYS */;
UNLOCK TABLES;
@@ -15841,6 +16077,7 @@ DROP TABLE IF EXISTS `spell_learn_spell`;
CREATE TABLE `spell_learn_spell` (
`entry` smallint(5) unsigned NOT NULL default '0',
`SpellID` smallint(5) unsigned NOT NULL default '0',
+ `Active` tinyint(3) unsigned NOT NULL default '1',
PRIMARY KEY (`entry`,`SpellID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
@@ -15851,19 +16088,38 @@ CREATE TABLE `spell_learn_spell` (
LOCK TABLES `spell_learn_spell` WRITE;
/*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
INSERT INTO `spell_learn_spell` VALUES
-(5784,33388),
-(13819,33388),
-(17002,24867),
-(23161,33391),
-(23214,33391),
-(24866,24864),
-(33872,47179),
-(33873,47180),
-(33943,34090),
-(34767,33391),
-(34769,33388),
-(53428,53341),
-(53428,53343);
+(71,7376,0),
+(768,3025,0),
+(783,5419,0),
+(1066,5421,0),
+(2457,21156,0),
+(2458,7381,0),
+(5487,1178,0),
+(5487,21178,0),
+(5784,33388,1),
+(9634,9635,0),
+(9634,21178,0),
+(13819,33388,1),
+(17002,24867,0),
+(23161,33391,1),
+(23214,33391,1),
+(24858,24905,0),
+(24866,24864,0),
+(33872,47179,0),
+(33873,47180,0),
+(33891,5420,0),
+(33891,34123,0),
+(33943,33948,0),
+(33943,34090,1),
+(33943,34764,0),
+(34767,33391,1),
+(34769,33388,1),
+(40123,40121,0),
+(40123,40122,0),
+(53428,53341,1),
+(53428,53343,1),
+(58984,21009,1);
+
/*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
UNLOCK TABLES;
@@ -15934,7 +16190,9 @@ CREATE TABLE `spell_proc_event` (
`entry` smallint(5) unsigned NOT NULL default '0',
`SchoolMask` tinyint(4) NOT NULL default '0',
`SpellFamilyName` smallint(5) unsigned NOT NULL default '0',
- `SpellFamilyMask` bigint(20) unsigned NOT NULL default '0',
+ `SpellFamilyMask0` int(10) unsigned NOT NULL default '0',
+ `SpellFamilyMask1` int(10) unsigned NOT NULL default '0',
+ `SpellFamilyMask2` int(10) unsigned NOT NULL default '0',
`procFlags` int(10) unsigned NOT NULL default '0',
`procEx` int(10) unsigned NOT NULL default '0',
`ppmRate` float NOT NULL default '0',
@@ -15950,687 +16208,828 @@ CREATE TABLE `spell_proc_event` (
LOCK TABLES `spell_proc_event` WRITE;
/*!40000 ALTER TABLE `spell_proc_event` DISABLE KEYS */;
INSERT INTO `spell_proc_event` VALUES
-(324, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(325, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(905, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(945, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(974, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(1463, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(3232, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(5952, 0x00000000, 8, 0x0000000100000001, 0x00000000, 0x00000000, 0, 0, 0),
-(6346, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000100, 0, 0, 0),
-(7383, 0x00000001, 0, 0x0000000000000000, 0x00000000, 0x00000100, 0, 0, 0),
-(7434, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(8134, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(8178, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(8494, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(8495, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(9452, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(9782, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(9784, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(9799, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(10191, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(10192, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(10193, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(10431, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(10432, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(11095, 0x00000000, 3, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0),
-(11103, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(11119, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(11120, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(11129, 0x00000000, 3, 0x0000004000C00017, 0x00000000, 0x00000000, 0, 0, 0),
-(11180, 0x00000010, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(11185, 0x00000000, 3, 0x0000000000000080, 0x00050000, 0x00000000, 0, 0, 0),
-(11255, 0x00000000, 3, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0),
-(12169, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(12281, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6),
-(12289, 0x00000000, 4, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(12298, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(12311, 0x00000000, 4, 0x0000000100000800, 0x00000000, 0x00000000, 0, 0, 0),
-(12317, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12319, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12322, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0),
-(12357, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(12358, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(12487, 0x00000000, 3, 0x0000000000000080, 0x00050000, 0x00000000, 0, 0, 0),
-(12488, 0x00000000, 3, 0x0000000000000080, 0x00050000, 0x00000000, 0, 0, 0),
-(12598, 0x00000000, 3, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0),
-(12668, 0x00000000, 4, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(12724, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(12725, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(12726, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(12727, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(12797, 0x00000000, 4, 0x0000000000000400, 0x00000000, 0x00000000, 0, 0, 0),
-(12799, 0x00000000, 4, 0x0000000000000400, 0x00000000, 0x00000000, 0, 0, 0),
-(12812, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6),
-(12813, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6),
-(12814, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6),
-(12815, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6),
-(12834, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12846, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12847, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12848, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12849, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12867, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12872, 0x00000000, 3, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0),
-(12873, 0x00000000, 3, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0),
-(12958, 0x00000000, 4, 0x0000000100000800, 0x00000000, 0x00000000, 0, 0, 0),
-(12966, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(12967, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(12968, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(12969, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(12970, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(12971, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12972, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12973, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12974, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(12999, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 4, 0, 0),
-(13000, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 6, 0, 0),
-(13001, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 8, 0, 0),
-(13002, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 10, 0, 0),
-(13045, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(13046, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(13047, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(13048, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(13165, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(13754, 0x00000000, 8, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0),
-(13867, 0x00000000, 8, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0),
-(13983, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000018, 0, 0, 0),
-(14070, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000018, 0, 0, 0),
-(14071, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000018, 0, 0, 0),
-(14156, 0x00000000, 8, 0x00000000003E0000, 0x00000000, 0x00000000, 0, 0, 0),
-(14160, 0x00000000, 8, 0x00000000003E0000, 0x00000000, 0x00000000, 0, 0, 0),
-(14161, 0x00000000, 8, 0x00000000003E0000, 0x00000000, 0x00000000, 0, 0, 0),
-(14186, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0),
-(14190, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0),
-(14193, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0),
-(14194, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0),
-(14195, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0),
-(14318, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(14319, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(14320, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(14321, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(14322, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(14531, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(14774, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(14892, 0x00000000, 6, 0x0000000410001E00, 0x00000000, 0x00000002, 0, 0, 0),
-(15088, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(15128, 0x00000004, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(15268, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0),
-(15277, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 6, 0, 0),
-(15286, 0x00000020, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(15323, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0),
-(15324, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0),
-(15325, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0),
-(15326, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0),
-(15337, 0x00000000, 6, 0x0000000200002000, 0x00000000, 0x00000002, 0, 0, 0),
-(15338, 0x00000000, 6, 0x0000000200002000, 0x00000000, 0x00000002, 0, 0, 0),
-(15346, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 6, 0, 0),
-(15362, 0x00000000, 6, 0x0000000410001E00, 0x00000000, 0x00000002, 0, 0, 0),
-(15363, 0x00000000, 6, 0x0000000410001E00, 0x00000000, 0x00000002, 0, 0, 0),
-(15600, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1, 0, 0),
-(16164, 0x00000000, 11, 0x0000000090100003, 0x00000000, 0x00000002, 0, 0, 0),
-(16176, 0x00000000, 11, 0x00000000000001C0, 0x00000000, 0x00000002, 0, 0, 0),
-(16180, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000002, 0, 0, 0),
-(16196, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000002, 0, 0, 0),
-(16198, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000002, 0, 0, 0),
-(16235, 0x00000000, 11, 0x00000000000001C0, 0x00000000, 0x00000002, 0, 0, 0),
-(16240, 0x00000000, 11, 0x00000000000001C0, 0x00000000, 0x00000002, 0, 0, 0),
-(16256, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16257, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(16277, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(16278, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(16279, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(16280, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(16281, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16282, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16283, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16284, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16487, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16489, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16492, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16550, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16620, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 30),
-(16624, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(16850, 0x00000000, 7, 0x0000000000000004, 0x00000000, 0x00000000, 0, 0, 0),
-(16864, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0),
-(16880, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16923, 0x00000000, 7, 0x0000000000000004, 0x00000000, 0x00000000, 0, 0, 0),
-(16924, 0x00000000, 7, 0x0000000000000004, 0x00000000, 0x00000000, 0, 0, 0),
-(16952, 0x00000000, 7, 0x0000040000039000, 0x00000000, 0x00000002, 0, 0, 0),
-(16954, 0x00000000, 7, 0x0000040000039000, 0x00000000, 0x00000002, 0, 0, 0),
-(16958, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(16961, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(17106, 0x00000000, 7, 0x0000000000080000, 0x00000000, 0x00000000, 0, 0, 0),
-(17107, 0x00000000, 7, 0x0000000000080000, 0x00000000, 0x00000000, 0, 0, 0),
-(17108, 0x00000000, 7, 0x0000000000080000, 0x00000000, 0x00000000, 0, 0, 0),
-(17364, 0x00000008, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(17495, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(17793, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0),
-(17794, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000001, 0, 0, 0),
-(17796, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0),
-(17797, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(17798, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(17799, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(17800, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(17801, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0),
-(17802, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0),
-(17803, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0),
-(18073, 0x00000000, 5, 0x0000008000000060, 0x00000000, 0x00000000, 0, 0, 0),
-(18094, 0x00000000, 5, 0x000000000000000A, 0x00000000, 0x00000000, 0, 0, 0),
-(18095, 0x00000000, 5, 0x000000000000000A, 0x00000000, 0x00000000, 0, 0, 0),
-(18096, 0x00000000, 5, 0x0000008000000060, 0x00000000, 0x00000000, 0, 0, 0),
-(18119, 0x00000000, 5, 0x000010C0000003E5, 0x00000000, 0x00000000, 0, 0, 0),
-(18120, 0x00000000, 5, 0x000010C0000003E5, 0x00000000, 0x00000000, 0, 0, 0),
-(18820, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(19184, 0x00000000, 9, 0x0000200000000014, 0x00000000, 0x00000000, 0, 0, 0),
-(19228, 0x00000000, 0, 0x0000000000000040, 0x00000000, 0x00000000, 0, 0, 0),
-(19232, 0x00000000, 9, 0x0000000000000040, 0x00000000, 0x00000000, 0, 0, 0),
-(19233, 0x00000000, 9, 0x0000000000000040, 0x00000000, 0x00000000, 0, 0, 0),
-(19387, 0x00000000, 9, 0x0000200000000014, 0x00000000, 0x00000000, 0, 0, 0),
-(19388, 0x00000000, 9, 0x0000200000000014, 0x00000000, 0x00000000, 0, 0, 0),
-(19572, 0x00000000, 9, 0x0000000000800000, 0x00004000, 0x00000000, 0, 0, 0),
-(19573, 0x00000000, 9, 0x0000000000800000, 0x00004000, 0x00000000, 0, 0, 0),
-(20049, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(20056, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(20057, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(20128, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(20131, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(20132, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(20164, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 5, 0, 0),
-(20165, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 20, 0, 0),
-(20166, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 20, 0, 0),
-(20182, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(20210, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0),
-(20212, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0),
-(20213, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0),
-(20214, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0),
-(20215, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0),
-(20234, 0x00000000, 10, 0x0000000000008000, 0x00000000, 0x00000000, 0, 0, 0),
-(20235, 0x00000000, 10, 0x0000000000008000, 0x00000000, 0x00000000, 0, 0, 0),
-(20375, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 7, 0, 0),
-(20500, 0x00000000, 4, 0x0000000010000000, 0x00000000, 0x00000000, 0, 0, 0),
-(20501, 0x00000000, 4, 0x0000000010000000, 0x00000000, 0x00000000, 0, 0, 0),
-(20705, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(20911, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0),
-(20925, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(20927, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(20928, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(21185, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(21882, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(21890, 0x00000000, 4, 0x0000036C2A764EEF, 0x00000000, 0x00000000, 0, 0, 0),
-(22007, 0x00000000, 3, 0x0000000000200021, 0x00000000, 0x00010000, 0, 0, 0),
-(22618, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(22648, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(23547, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0),
-(23548, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(23551, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000000, 0, 0, 0),
-(23552, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(23572, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000000, 0, 0, 0),
-(23578, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0),
-(23581, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0),
-(23602, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(23686, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0),
-(23688, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(23689, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 4, 0, 0),
-(23695, 0x00000000, 4, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(23721, 0x00000000, 9, 0x0000000000000800, 0x00000000, 0x00000000, 0, 0, 0),
-(23920, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0),
-(24353, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(24389, 0x00000000, 3, 0x0000004000C00017, 0x00000000, 0x00000000, 0, 0, 0),
-(24398, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(24658, 0x00000000, 0, 0x0000000000000000, 0x00014110, 0x00000000, 0, 0, 0),
-(24905, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 15, 0, 0),
-(24932, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 6),
-(25050, 0x00000004, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(25296, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(25469, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(25472, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(25669, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1, 0, 0),
-(25899, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0),
-(25988, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(26016, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0),
-(26107, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000064, 0, 0, 0),
-(26119, 0x00000000, 10, 0x0000000090100003, 0x00000000, 0x00010000, 0, 0, 0),
-(26128, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 0),
-(26135, 0x00000000, 10, 0x0000000000800000, 0x00000000, 0x00010000, 0, 0, 0),
-(26480, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(26605, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(27044, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(27131, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(27179, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(27419, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(27498, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(27521, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(27656, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(27774, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(27787, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(27811, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(27815, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(27816, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(28592, 0x00000010, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(28593, 0x00000010, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(28716, 0x00000000, 7, 0x0000000000000010, 0x00048000, 0x00000000, 0, 0, 0),
-(28719, 0x00000000, 7, 0x0000000000000020, 0x00000000, 0x00000002, 0, 0, 0),
-(28744, 0x00000000, 7, 0x0000000000000040, 0x00044000, 0x00000000, 0, 0, 0),
-(28752, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(28789, 0x00000000, 10, 0x00000000C0000000, 0x00000000, 0x00000000, 0, 0, 0),
-(28802, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(28809, 0x00000000, 6, 0x0000000000001000, 0x00000000, 0x00000002, 0, 0, 0),
-(28812, 0x00000000, 8, 0x0000000002000006, 0x00000000, 0x00000002, 0, 0, 0),
-(28816, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(28823, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000000, 0, 0, 0),
-(28847, 0x00000000, 7, 0x0000000000000020, 0x00000000, 0x00000000, 0, 0, 0),
-(28849, 0x00000000, 11, 0x0000000000000080, 0x00000000, 0x00000000, 0, 0, 0),
-(29074, 0x00000014, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(29075, 0x00000014, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(29076, 0x00000014, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(29150, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29179, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(29180, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(29385, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 7, 0, 0),
-(29441, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 1),
-(29444, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 1),
-(29455, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(29501, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29593, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0),
-(29594, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0),
-(29624, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29625, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29626, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29632, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29633, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29634, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29635, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29636, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29637, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(29801, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(29834, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(29838, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(29977, 0x00000000, 3, 0x0000004000C00017, 0x00000000, 0x00000000, 0, 0, 0),
-(30003, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0),
-(30160, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30293, 0x00000000, 5, 0x000000C000000381, 0x00000000, 0x00000000, 0, 0, 0),
-(30295, 0x00000000, 5, 0x000000C000000381, 0x00000000, 0x00000000, 0, 0, 0),
-(30296, 0x00000000, 5, 0x000000C000000381, 0x00000000, 0x00000000, 0, 0, 0),
-(30299, 0x00000024, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(30301, 0x00000024, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(30302, 0x00000024, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(30675, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0),
-(30678, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0),
-(30679, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0),
-(30680, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0),
-(30681, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0),
-(30701, 0x0000001C, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(30705, 0x0000001C, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(30802, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30803, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30804, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30805, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30806, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30807, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30808, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30809, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30810, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30811, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(30823, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 10.5, 0, 0),
-(30881, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5),
-(30883, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5),
-(30884, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5),
-(30885, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5),
-(30886, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5),
-(30937, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(31124, 0x00000000, 8, 0x000000002000000E, 0x00000000, 0x00000000, 0, 0, 0),
-(31126, 0x00000000, 8, 0x000000002000000E, 0x00000000, 0x00000000, 0, 0, 0),
-(31244, 0x00000000, 8, 0x00000009003E0000, 0x00000000, 0x00000004, 0, 0, 0),
-(31245, 0x00000000, 8, 0x00000009003E0000, 0x00000000, 0x00000004, 0, 0, 0),
-(31394, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(31569, 0x00000000, 3, 0x0000000000010000, 0x00000000, 0x00000000, 0, 0, 0),
-(31570, 0x00000000, 3, 0x0000000000010000, 0x00000000, 0x00000000, 0, 0, 0),
-(31785, 0x00000000, 0, 0x0000000000000000, 0x00008800, 0x00000000, 0, 0, 0),
-(31794, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(31801, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 20, 0, 0),
-(31833, 0x00000000, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0, 0, 0),
-(31835, 0x00000000, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0, 0, 0),
-(31836, 0x00000000, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0, 0, 0),
-(31904, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(32385, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0),
-(32387, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0),
-(32392, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0),
-(32393, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0),
-(32394, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0),
-(32587, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(32593, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(32594, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(32642, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(32734, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(32748, 0x00000000, 8, 0x0000000100000000, 0x00000140, 0x00000000, 0, 0, 0),
-(32776, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(32777, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(32837, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 45),
-(32844, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0),
-(32885, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33076, 0x00000000, 0, 0x0000000000000000, 0x000A02A8, 0x00000000, 0, 0, 0),
-(33089, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(33127, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 7, 0, 0),
-(33142, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33145, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33146, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33150, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33151, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33154, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33191, 0x00000000, 6, 0x0000040000808000, 0x00000000, 0x00000000, 0, 0, 0),
-(33192, 0x00000000, 6, 0x0000040000808000, 0x00000000, 0x00000000, 0, 0, 0),
-(33193, 0x00000000, 6, 0x0000040000808000, 0x00000000, 0x00000000, 0, 0, 0),
-(33299, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(33510, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 5, 0, 0),
-(33648, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33719, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0),
-(33736, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(33746, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(33757, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(33759, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(33776, 0x00000000, 0, 0x0000000000000000, 0x00008800, 0x00000000, 0, 0, 0),
-(33881, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33882, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(33883, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34080, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 0),
-(34138, 0x00000000, 11, 0x0000000000000080, 0x00000000, 0x00000000, 0, 0, 0),
-(34139, 0x00000000, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0, 0, 0),
-(34258, 0x00000000, 10, 0x0000000800000400, 0x00000000, 0x00000000, 0, 0, 0),
-(34262, 0x00000000, 10, 0x0000000000800000, 0x00000000, 0x00010000, 0, 0, 0),
-(34320, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34355, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(34497, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34498, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34499, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34500, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34502, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34503, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34584, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 30),
-(34586, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1.5, 0, 0),
-(34598, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45),
-(34749, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 0),
-(34753, 0x00000000, 6, 0x0000000400001800, 0x00000000, 0x00000000, 0, 0, 0),
-(34774, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1.5, 0, 20),
-(34783, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0),
-(34827, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(34859, 0x00000000, 6, 0x0000000400001800, 0x00000000, 0x00000000, 0, 0, 0),
-(34860, 0x00000000, 6, 0x0000000400001800, 0x00000000, 0x00000000, 0, 0, 0),
-(34914, 0x00000020, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(34916, 0x00000020, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(34917, 0x00000020, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(34935, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 8),
-(34938, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 8),
-(34939, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 8),
-(34950, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(34954, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(35077, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60),
-(35080, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1, 0, 60),
-(35083, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60),
-(35086, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60),
-(35100, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(35102, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(35103, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(35121, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(36096, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0),
-(36111, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(37165, 0x00000000, 8, 0x0000000000200400, 0x00000000, 0x00000000, 0, 0, 0),
-(37168, 0x00000000, 8, 0x00000009003E0000, 0x00000000, 0x00000000, 0, 0, 0),
-(37170, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1, 0, 0),
-(37173, 0x00000000, 8, 0x000001062CBC0598, 0x00000000, 0x00000000, 0, 0, 30),
-(37189, 0x00000000, 10, 0x00000000C0000000, 0x00000000, 0x00000002, 0, 0, 60),
-(37193, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(37195, 0x00000000, 10, 0x0000000000800000, 0x00000000, 0x00000000, 0, 0, 0),
-(37197, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 45),
-(37213, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(37214, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(37227, 0x00000000, 11, 0x00000000000001C0, 0x00000000, 0x00000002, 0, 0, 60),
-(37237, 0x00000000, 11, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0),
-(37247, 0x00000008, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 45),
-(37377, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(37384, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(37443, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(37514, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0),
-(37516, 0x00000000, 4, 0x0000000000000400, 0x00000000, 0x00000000, 0, 0, 0),
-(37519, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000030, 0, 0, 0),
-(37523, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(37528, 0x00000000, 4, 0x0000000000000004, 0x00000000, 0x00000000, 0, 0, 0),
-(37536, 0x00000000, 4, 0x0000000000010000, 0x00000000, 0x00000000, 0, 0, 0),
-(37568, 0x00000000, 6, 0x0000000000000800, 0x00000000, 0x00000000, 0, 0, 0),
-(37594, 0x00000000, 6, 0x0000000000001000, 0x00000000, 0x00000000, 0, 0, 0),
-(37600, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(37601, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(37603, 0x00000000, 6, 0x0000000000008000, 0x00000000, 0x00000000, 0, 0, 0),
-(37655, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60),
-(37657, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 3),
-(38026, 0x00000001, 0, 0x0000000000000000, 0x00000000, 0x00000100, 0, 0, 0),
-(38031, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(38290, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1.6, 0, 0),
-(38326, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(38327, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(38334, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60),
-(38347, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(38350, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(38394, 0x00000000, 5, 0x0000000000000006, 0x00000000, 0x00000000, 0, 0, 0),
-(38857, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(39027, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(39372, 0x00000030, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(39437, 0x00000004, 5, 0x000000C000001364, 0x00000000, 0x00010000, 0, 0, 0),
-(39442, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000001, 0, 0, 0),
-(39443, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(39530, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(39958, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0.7, 0, 40),
-(40407, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 6, 0, 0),
-(40438, 0x00000000, 6, 0x0000000000008040, 0x00000000, 0x00000000, 0, 0, 0),
-(40442, 0x00000000, 7, 0x0000044000000014, 0x00000000, 0x00000000, 0, 0, 0),
-(40444, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(40458, 0x00000000, 4, 0x0000060102000000, 0x00000000, 0x00000000, 0, 0, 0),
-(40463, 0x00000000, 11, 0x0000001000000081, 0x00000000, 0x00000000, 0, 0, 0),
-(40470, 0x00000000, 10, 0x00000000C0800000, 0x00000000, 0x00000000, 0, 0, 0),
-(40475, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0),
-(40478, 0x00000000, 5, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(40482, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(40485, 0x00000000, 9, 0x0000000100000000, 0x00000000, 0x00000000, 0, 0, 0),
-(40899, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(41034, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(41260, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(41262, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(41381, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000100, 0, 0, 0),
-(41393, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0),
-(41434, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 45),
-(41469, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 7, 0, 0),
-(41635, 0x00000000, 0, 0x0000000000000000, 0x000A02A8, 0x00000000, 0, 0, 0),
-(41989, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0.5, 0, 0),
-(42083, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 45),
-(42135, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 90),
-(42136, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 90),
-(42368, 0x00000000, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0, 0, 0),
-(42370, 0x00000000, 11, 0x0000000000000040, 0x00000000, 0x00000000, 0, 0, 0),
-(43019, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(43020, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0),
-(43338, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(43443, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0),
-(43726, 0x00000000, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0, 0, 0),
-(43728, 0x00000000, 11, 0x0000000000000080, 0x00000000, 0x00000000, 0, 0, 0),
-(43737, 0x00000000, 7, 0x0000044000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(43739, 0x00000000, 7, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(43741, 0x00000000, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0, 0, 0),
-(43745, 0x00000000, 10, 0x0000020000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(43748, 0x00000000, 11, 0x0000000090100000, 0x00000000, 0x00000000, 0, 0, 0),
-(43750, 0x00000000, 11, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(43819, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0),
-(44404, 0x00000000, 3, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0),
-(44835, 0x00000000, 7, 0x0000008000000000, 0x00000010, 0x00000000, 0, 0, 0),
-(45054, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 15),
-(45057, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 30),
-(45234, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(45243, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(45244, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(45354, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45),
-(45481, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45),
-(45482, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45),
-(45483, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45),
-(45484, 0x00000000, 0, 0x0000000000000000, 0x00004000, 0x00000000, 0, 0, 45),
-(46025, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(46092, 0x00000000, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0, 0, 0),
-(46098, 0x00000000, 11, 0x0000000000000080, 0x00000000, 0x00000000, 0, 0, 0),
-(46569, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45),
-(46662, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 20),
-(46832, 0x00000000, 7, 0x0000000000000001, 0x00000000, 0x00010000, 0, 0, 0),
-(46854, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(46855, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(46867, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(46913, 0x00000000, 4, 0x0000040000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(46914, 0x00000000, 4, 0x0000040000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(46915, 0x00000000, 4, 0x0000040000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(46916, 0x00000000, 4, 0x0000040000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(46951, 0x00000000, 4, 0x0000004000000400, 0x00000000, 0x00000000, 0, 0, 0),
-(46952, 0x00000000, 0, 0x0000004000000400, 0x00000000, 0x00000000, 0, 0, 0),
-(46953, 0x00000000, 0, 0x0000004000000400, 0x00000000, 0x00000000, 0, 0, 0),
-(47509, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(47511, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(47515, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(48835, 0x00000000, 10, 0x0000000800000000, 0x00000000, 0x00000000, 0, 0, 0),
-(48837, 0x00000000, 11, 0x0000000090100000, 0x00000000, 0x00000000, 0, 0, 0),
-(48951, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(48952, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(48988, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(49018, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0),
-(49137, 0x00000000, 15, 0x0000400000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(49188, 0x00000000, 15, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(49208, 0x00000000, 15, 0x0000000000440000, 0x00000000, 0x00000000, 0, 0, 0),
-(49222, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(49280, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(49281, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(49283, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(49284, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(49503, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(49504, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(49529, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0),
-(49530, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0),
-(49531, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0),
-(49532, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0),
-(49657, 0x00000000, 15, 0x0000400000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(50781, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51123, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51127, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51128, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51129, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51130, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51346, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(51349, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(51352, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(51359, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10),
-(51466, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51470, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51625, 0x00000000, 8, 0x000000001000A000, 0x00000000, 0x00000000, 0, 0, 0),
-(51626, 0x00000000, 8, 0x000000001000A000, 0x00000000, 0x00000000, 0, 0, 0),
-(51627, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0),
-(51628, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0),
-(51629, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0),
-(51634, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51635, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51636, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(51664, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0),
-(51665, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0),
-(51667, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0),
-(51668, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0),
-(51669, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0),
-(51672, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 1),
-(51674, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 1),
-(51679, 0x00000000, 8, 0x0000000100000001, 0x00000000, 0x00000000, 0, 0, 0),
-(51692, 0x00000000, 8, 0x0000000000000200, 0x00000000, 0x00000002, 0, 0, 0),
-(51696, 0x00000000, 8, 0x0000000000000200, 0x00000000, 0x00000002, 0, 0, 0),
-(51698, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 1),
-(51700, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 1),
-(51701, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 1),
-(52420, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 30),
-(52423, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0),
-(52898, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(53137, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0),
-(53138, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0),
-(53215, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(53216, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(53217, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(53221, 0x00000000, 9, 0x0000000100000000, 0x00000000, 0x00000000, 0, 0, 0),
-(53222, 0x00000000, 9, 0x0000000100000000, 0x00000000, 0x00000000, 0, 0, 0),
-(53224, 0x00000000, 9, 0x0000000100000000, 0x00000000, 0x00000000, 0, 0, 0),
-(53256, 0x00000000, 9, 0x0080000100000800, 0x00000000, 0x00000002, 0, 0, 0),
-(53259, 0x00000000, 9, 0x0080000100000800, 0x00000000, 0x00000002, 0, 0, 0),
-(53260, 0x00000000, 9, 0x0080000100000800, 0x00000000, 0x00000002, 0, 0, 0),
-(53290, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0),
-(53291, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0),
-(53292, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0),
-(53293, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0),
-(53294, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0),
-(53380, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0),
-(53381, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0),
-(53382, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0),
-(53383, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0),
-(53384, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0),
-(53486, 0x00000000, 10, 0x0002800000800000, 0x00000000, 0x00000002, 0, 0, 0),
-(53488, 0x00000000, 10, 0x0002800000800000, 0x00000000, 0x00000002, 0, 0, 0),
-(53569, 0x00000000, 10, 0x0000000000200000, 0x00000000, 0x00000002, 0, 0, 0),
-(53576, 0x00000000, 10, 0x0000000000200000, 0x00000000, 0x00000002, 0, 0, 0),
-(54149, 0x00000000, 10, 0x0000000000200000, 0x00000000, 0x00000002, 0, 0, 0),
-(54486, 0x00000000, 0, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0),
-(54488, 0x00000000, 0, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0),
-(54489, 0x00000000, 0, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0),
-(54490, 0x00000000, 0, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0),
-(54738, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(54841, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(55620, 0x00000000, 15, 0x0800000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(55623, 0x00000000, 15, 0x0800000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(55666, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(55667, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(55668, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(55669, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(55670, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0),
-(55689, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(56342, 0x00000000, 9, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0),
-(56343, 0x00000000, 9, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0),
-(56344, 0x00000000, 9, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0),
-(56451, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3),
-(56611, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(56612, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(56613, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(56614, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(56636, 0x00000000, 4, 0x0000000000000020, 0x00000000, 0x00000000, 0, 0, 0),
-(56637, 0x00000000, 4, 0x0000000000000020, 0x00000000, 0x00000000, 0, 0, 0),
-(56638, 0x00000000, 4, 0x0000000000000020, 0x00000000, 0x00000000, 0, 0, 0),
-(56821, 0x00000000, 8, 0x0000000000000002, 0x00000000, 0x00000002, 0, 0, 0),
-(56822, 0x00000000, 15, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(56834, 0x00000000, 15, 0x0000000000440000, 0x00000000, 0x00000000, 0, 0, 0),
-(56835, 0x00000000, 15, 0x0000000000440000, 0x00000000, 0x00000000, 0, 0, 0),
-(57878, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 0),
-(57880, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 0),
-(57881, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 0),
-(58357, 0x00000000, 4, 0x0000000000000040, 0x00000000, 0x00000002, 0, 0, 0),
-(58364, 0x00000000, 4, 0x0000000000000400, 0x00000000, 0x00000000, 0, 0, 0),
-(58372, 0x00000000, 4, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(58386, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0),
-(58616, 0x00000000, 15, 0x0000000000040000, 0x00000000, 0x00000000, 0, 0, 0),
-(58620, 0x00000000, 15, 0x0000400000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(58626, 0x00000000, 15, 0x0000000002000000, 0x00000000, 0x00000000, 0, 0, 0),
-(58631, 0x00000000, 15, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(58642, 0x00000000, 15, 0x0800000000000000, 0x00000000, 0x00000000, 0, 0, 0),
-(58644, 0x00000000, 15, 0x0000000400000000, 0x00000000, 0x00000000, 0, 0, 0),
-(58647, 0x00000000, 15, 0x0000000400000000, 0x00000000, 0x00000000, 0, 0, 0),
-(58676, 0x00000000, 15, 0x0000000800000000, 0x00000000, 0x00000000, 0, 0, 0),
-(58677, 0x00000000, 15, 0x0000000000002000, 0x00000000, 0x00000000, 0, 0, 0),
-(58872, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(58874, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0),
-(58901, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(59057, 0x00000000, 15, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0),
-(59176, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(59327, 0x00000000, 15, 0x0000000008000000, 0x00000000, 0x00000000, 0, 0, 0),
-(59725, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0),
-(60537, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0),
-(60572, 0x00000000, 11, 0x0000000090100000, 0x00000000, 0x00000000, 0, 0, 0),
-(60617, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0),
-(60826, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0),
-(61324, 0x00000000, 10, 0x0002000000000000, 0x00000000, 0x00000000, 0, 0, 0);
+( 324, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 325, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 905, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 945, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 974, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 1463, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+( 3232, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+( 5952, 0x00000000, 8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+( 6346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0),
+( 7383, 0x00000001, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0),
+( 7434, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+( 8134, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 8178, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+( 8494, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+( 8495, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+( 9452, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+( 9782, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+( 9784, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+( 9799, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(10191, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(10192, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(10193, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(10431, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(10432, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(11095, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(11119, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(11120, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(11129, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(11180, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(11185, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0),
+(11255, 0x00000000, 3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12169, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12289, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12298, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12311, 0x00000000, 4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12317, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12319, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12322, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(12487, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0),
+(12488, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0),
+(12598, 0x00000000, 3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12668, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12724, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12725, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12726, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12727, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12797, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12799, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12812, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12813, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12814, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12815, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12834, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12846, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12847, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12848, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12849, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12867, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12872, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12873, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12958, 0x00000000, 4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12966, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12967, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12968, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12969, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12970, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12971, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12972, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12973, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12974, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12999, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000, 0),
+(13000, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0),
+(13001, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8.000000, 0.000000, 0),
+(13002, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.000000, 0.000000, 0),
+(13045, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(13046, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(13047, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(13048, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(13165, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(13754, 0x00000000, 8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(13867, 0x00000000, 8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(13983, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0),
+(14070, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0),
+(14071, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0),
+(14156, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14160, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14161, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14186, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14190, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14193, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14194, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14195, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14318, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14319, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14320, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14321, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14322, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14531, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14892, 0x00000000, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15088, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15128, 0x00000004, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15268, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15277, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0),
+(15286, 0x00000020, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15323, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15324, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15325, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15326, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15337, 0x00000000, 6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15338, 0x00000000, 6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0),
+(15362, 0x00000000, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15363, 0x00000000, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15600, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0),
+(16164, 0x00000000, 11, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16176, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16180, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16196, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16198, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16235, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16240, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16256, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16257, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16277, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16278, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16279, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16280, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16282, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16283, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16284, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16487, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16489, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16492, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16550, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16620, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(16624, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(16850, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(16864, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(16880, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16923, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(16924, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(16952, 0x00000000, 7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16954, 0x00000000, 7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16958, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16961, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17106, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17107, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17108, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17364, 0x00000008, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17495, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(17793, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17794, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000, 0),
+(17796, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17797, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17798, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17799, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17800, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17801, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17802, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17803, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(18073, 0x00000000, 5, 0x00000060, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18094, 0x00000000, 5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18095, 0x00000000, 5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18096, 0x00000000, 5, 0x00000060, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18119, 0x00000000, 5, 0x000003E5, 0x000010C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18120, 0x00000000, 5, 0x000003E5, 0x000010C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18820, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(19184, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19228, 0x00000000, 0, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19232, 0x00000000, 9, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19233, 0x00000000, 9, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19387, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19388, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19572, 0x00000000, 9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0),
+(19573, 0x00000000, 9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0),
+(20049, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20056, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20057, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20132, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20164, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000, 0),
+(20165, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0),
+(20166, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0),
+(20182, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20210, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20212, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20213, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20214, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20215, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20234, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(20235, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(20375, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0),
+(20500, 0x00000000, 4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(20501, 0x00000000, 4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(20705, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20911, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(20925, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20927, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20928, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(21185, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(21882, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(21890, 0x00000000, 4, 0x2A764EEF, 0x0000036C, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(22007, 0x00000000, 3, 0x00200021, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(22618, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(22648, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(23547, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(23548, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(23551, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(23552, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(23572, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(23578, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(23581, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(23602, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(23686, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(23688, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(23689, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000, 0),
+(23695, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(23721, 0x00000000, 9, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(23920, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(24353, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(24389, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(24398, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(24658, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00014110, 0x00000000, 0.000000, 0.000000, 0),
+(24905, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 15.000000, 0.000000, 0),
+(24932, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 6),
+(25050, 0x00000004, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(25296, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(25469, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(25472, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(25669, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0),
+(25899, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(25988, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(26016, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(26107, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000064, 0.000000, 0.000000, 0),
+(26119, 0x00000000, 10, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(26128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0),
+(26135, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(26480, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(26605, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(27044, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(27131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(27179, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(27419, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(27498, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(27521, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(27656, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(27774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(27787, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(27811, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(27815, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(27816, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28592, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28593, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28716, 0x00000000, 7, 0x00000010, 0x00000000, 0x00000000, 0x00048000, 0x00000000, 0.000000, 0.000000, 0),
+(28719, 0x00000000, 7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28744, 0x00000000, 7, 0x00000040, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0.000000, 0.000000, 0),
+(28752, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28789, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28802, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(28809, 0x00000000, 6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28812, 0x00000000, 8, 0x02000006, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28816, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(28823, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28847, 0x00000000, 7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28849, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(29074, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29075, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29076, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29150, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29179, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29180, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29385, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0),
+(29441, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 1),
+(29444, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 1),
+(29455, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(29501, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29593, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(29594, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(29624, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29625, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29626, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29632, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29633, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29634, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29636, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29637, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29801, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29834, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(29838, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(29977, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30003, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(30160, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30293, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30295, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30296, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30299, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30301, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30302, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30675, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30678, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30679, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30680, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30681, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30701, 0x0000001C, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30705, 0x0000001C, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30802, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30803, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30804, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30805, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30806, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30807, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30808, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30809, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30810, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30811, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30823, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.500000, 0.000000, 0),
+(30881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30883, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30884, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30885, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30886, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30937, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31124, 0x00000000, 8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31126, 0x00000000, 8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31244, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000, 0),
+(31245, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000, 0),
+(31394, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31569, 0x00000000, 3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31570, 0x00000000, 3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31785, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000, 0),
+(31794, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(31801, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0),
+(31833, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31835, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31836, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31876, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31877, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31878, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31904, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32385, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32387, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32392, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32393, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32394, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32409, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32587, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32593, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(32594, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(32642, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32734, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(32748, 0x00000000, 8, 0x00000000, 0x00000001, 0x00000000, 0x00000140, 0x00000000, 0.000000, 0.000000, 0),
+(32776, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32777, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32837, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
+(32844, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(32885, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33076, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0),
+(33089, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(33127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0),
+(33142, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33145, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33146, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33150, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33151, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33154, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33191, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(33192, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(33193, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(33299, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(33510, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000, 0),
+(33648, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33719, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(33736, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(33746, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(33757, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(33759, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(33776, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000, 0),
+(33881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33882, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33883, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33953, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
+(34080, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0),
+(34138, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34139, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34258, 0x00000000, 10, 0x00000400, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34262, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(34320, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34355, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(34497, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34498, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34499, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34500, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34502, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34503, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34584, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(34586, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 0),
+(34598, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(34749, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0),
+(34753, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 20),
+(34783, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(34827, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(34859, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34860, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34914, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34916, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34917, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34935, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8),
+(34938, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8),
+(34939, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8),
+(34950, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34954, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(35077, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(35080, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 60),
+(35083, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(35086, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(35100, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(35102, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(35103, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(35121, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(36096, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(36111, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(36541, 0x00000004, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37165, 0x00000000, 8, 0x00200400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37168, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37170, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0),
+(37173, 0x00000000, 8, 0x2CBC0598, 0x00000106, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(37189, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
+(37193, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(37195, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37197, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
+(37213, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(37214, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(37227, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
+(37237, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(37247, 0x00000008, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
+(37377, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(37379, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37384, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(37514, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(37516, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37519, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000, 0),
+(37523, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(37528, 0x00000000, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37536, 0x00000000, 4, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37568, 0x00000000, 6, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37594, 0x00000000, 6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37600, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(37601, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(37603, 0x00000000, 6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37655, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(37657, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 3),
+(38026, 0x00000001, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0),
+(38031, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(38290, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.600000, 0.000000, 0),
+(38326, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(38327, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(38334, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(38347, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(38350, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(38394, 0x00000000, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(38857, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(39027, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(39372, 0x00000030, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(39437, 0x00000004, 5, 0x00001364, 0x000000C0, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(39442, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000, 0),
+(39443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(39530, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(39958, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.700000, 0.000000, 40),
+(40407, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0),
+(40438, 0x00000000, 6, 0x00008040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40442, 0x00000000, 7, 0x00000014, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40444, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(40458, 0x00000000, 4, 0x02000000, 0x00000601, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40463, 0x00000000, 11, 0x00000081, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40470, 0x00000000, 10, 0xC0800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40475, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(40478, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40482, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(40485, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40899, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(41034, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(41260, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(41262, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(41381, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0),
+(41393, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(41434, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 45),
+(41469, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0),
+(41635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0),
+(41989, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.500000, 0.000000, 0),
+(42083, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
+(42135, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
+(42136, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
+(42368, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(42370, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43019, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(43020, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(43338, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(43443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(43726, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43728, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43737, 0x00000000, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(43739, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43741, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43745, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43748, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43750, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43819, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(44404, 0x00000000, 3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44445, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44446, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44448, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44449, 0x00000000, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(44469, 0x00000000, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(44470, 0x00000000, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(44471, 0x00000000, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(44472, 0x00000000, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(44546, 0x00000000, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44548, 0x00000000, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44549, 0x00000000, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44835, 0x00000000, 7, 0x00000000, 0x00000080, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000, 0),
+(45054, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
+(45057, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(45234, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(45243, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(45244, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(45354, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(45481, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(45482, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(45483, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(45484, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
+(46025, 0x00000020, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46092, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46098, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46569, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(46662, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 20),
+(46832, 0x00000000, 7, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(46854, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46855, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46867, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46913, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46914, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46915, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46916, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46951, 0x00000000, 4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46952, 0x00000000, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46953, 0x00000000, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47195, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(47196, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(47197, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(47201, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47202, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47203, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47204, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47205, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47232, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47234, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47235, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47245, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47246, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47247, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47258, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47259, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47260, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47263, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
+(47264, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
+(47265, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
+(47509, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47511, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47515, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47516, 0x00000000, 6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47517, 0x00000000, 6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47535, 0x00000000, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47536, 0x00000000, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47537, 0x00000000, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47538, 0x00000000, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47539, 0x00000000, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47549, 0x00000000, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47551, 0x00000000, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47552, 0x00000000, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47555, 0x00000000, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47556, 0x00000000, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47557, 0x00000000, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47572, 0x00000000, 6, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47580, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47581, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47582, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48110, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0),
+(48111, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0),
+(48112, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0),
+(48113, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0),
+(48159, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48160, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48483, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48484, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48485, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48496, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(48499, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(48500, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(48506, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48510, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48511, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48516, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
+(48521, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
+(48525, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
+(48833, 0x00000000, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48835, 0x00000000, 10, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48837, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48951, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(48952, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(48988, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(49018, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49137, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49188, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49208, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49222, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49280, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49283, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49284, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49503, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(49504, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(49529, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49530, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49531, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49532, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49622, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(49657, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(50781, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51123, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51129, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51130, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(51349, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(51352, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(51359, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(51466, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51470, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51474, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(51478, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(51556, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51557, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51558, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51562, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51563, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51564, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51565, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51566, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51625, 0x00000000, 8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51626, 0x00000000, 8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51627, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(51628, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(51629, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(51634, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51636, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51664, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51665, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51667, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51668, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51669, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51672, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 1),
+(51674, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 1),
+(51679, 0x00000000, 8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51692, 0x00000000, 8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51696, 0x00000000, 8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51698, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1),
+(51700, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1),
+(51701, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1),
+(52020, 0x00000000, 7, 0x00008000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52129, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52134, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52136, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52138, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52420, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(52423, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(52795, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52797, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52798, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52799, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52800, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52898, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53137, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53138, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53215, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53216, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53217, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53221, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53222, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53224, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53228, 0x00000000, 9, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53232, 0x00000000, 9, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53256, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53259, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53260, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53290, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53291, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53292, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53293, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53294, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53380, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53381, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53382, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53383, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53384, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53486, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53488, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53551, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53552, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53553, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53569, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53576, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53601, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(53671, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53673, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54149, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(54151, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54154, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54155, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54278, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(54486, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54488, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54489, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54490, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54738, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(54747, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(54749, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(54754, 0x00000000, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54841, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(54936, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54937, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54939, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55440, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55620, 0x00000000, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55623, 0x00000000, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55666, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55667, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55668, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55669, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55670, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55677, 0x00000000, 6, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55680, 0x00000000, 6, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55689, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56218, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56342, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56343, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56344, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56364, 0x00000000, 3, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56451, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(56611, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56612, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56613, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56614, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56636, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56637, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56638, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56821, 0x00000000, 8, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56822, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56834, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56835, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(57878, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0),
+(57880, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0),
+(57881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0),
+(57960, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(58357, 0x00000000, 4, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(58364, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58372, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58386, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(58435, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58436, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58437, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58616, 0x00000000, 15, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58620, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58626, 0x00000000, 15, 0x02000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58631, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58642, 0x00000000, 15, 0x00000000, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58644, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58647, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58676, 0x00000000, 15, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58677, 0x00000000, 15, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58872, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(58874, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(58901, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(59057, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(59176, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(59327, 0x00000000, 15, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(59725, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(60132, 0x00000000, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60170, 0x00000000, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60172, 0x00000000, 5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(60200, 0x00000000, 15, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(60493, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(60503, 0x00000000, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60537, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(60564, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60571, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60572, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60573, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60574, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60575, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60617, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(60710, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60717, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60719, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60722, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60724, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60726, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60770, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60818, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60826, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(61188, 0x00000000, 5, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(61324, 0x00000000, 10, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
/*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
UNLOCK TABLES;
diff --git a/sql/realmd.sql b/sql/realmd.sql
index b2b881499..4d08c776a 100644
--- a/sql/realmd.sql
+++ b/sql/realmd.sql
@@ -21,7 +21,7 @@
DROP TABLE IF EXISTS `realmd_db_version`;
CREATE TABLE `realmd_db_version` (
- `required_2008_11_07_04_realmd_account` bit(1) default NULL
+ `required_6976_01_realmd_realmd_db_version` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
--
diff --git a/sql/tools/Makefile.am b/sql/tools/Makefile.am
index dabcc67cd..49a79346e 100644
--- a/sql/tools/Makefile.am
+++ b/sql/tools/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/sql/tools/README b/sql/tools/README
index f5953acef..1b9cdd79b 100644
--- a/sql/tools/README
+++ b/sql/tools/README
@@ -1,6 +1,6 @@
= MaNGOS -- README =
-Copyright (c) 2005-2008 MaNGOS
+Copyright (c) 2005-2009 MaNGOS
See the COPYING file for copying conditions.
diff --git a/sql/updates/6970_01_mangos_playercreateinfo.sql b/sql/updates/6970_01_mangos_playercreateinfo.sql
new file mode 100644
index 000000000..a6d774738
--- /dev/null
+++ b/sql/updates/6970_01_mangos_playercreateinfo.sql
@@ -0,0 +1,7 @@
+ALTER TABLE db_version CHANGE COLUMN required_6961_01_mangos_command required_6970_01_mangos_playercreateinfo bit;
+
+DELETE FROM `playercreateinfo` WHERE `race`=7 AND `class` IN (4,8,9);
+INSERT INTO `playercreateinfo` VALUES
+(7,4,0,1,-6240,331,383),
+(7,8,0,1,-6240,331,383),
+(7,9,0,1,-6240,331,383);
diff --git a/sql/updates/6976_01_realmd_realmd_db_version.sql b/sql/updates/6976_01_realmd_realmd_db_version.sql
new file mode 100644
index 000000000..0ebbb2c82
--- /dev/null
+++ b/sql/updates/6976_01_realmd_realmd_db_version.sql
@@ -0,0 +1 @@
+ALTER TABLE realmd_db_version CHANGE COLUMN required_2008_11_07_04_realmd_account required_6976_01_realmd_realmd_db_version bit;
\ No newline at end of file
diff --git a/sql/updates/6976_02_characters_character_db_version.sql b/sql/updates/6976_02_characters_character_db_version.sql
new file mode 100644
index 000000000..5fc192058
--- /dev/null
+++ b/sql/updates/6976_02_characters_character_db_version.sql
@@ -0,0 +1 @@
+ALTER TABLE character_db_version CHANGE COLUMN required_2008_12_22_19_characters_item_instance required_6976_02_characters_character_db_version bit;
\ No newline at end of file
diff --git a/sql/updates/7002_01_mangos_spell_chain.sql b/sql/updates/7002_01_mangos_spell_chain.sql
new file mode 100644
index 000000000..1ec5c5c03
--- /dev/null
+++ b/sql/updates/7002_01_mangos_spell_chain.sql
@@ -0,0 +1,9 @@
+ALTER TABLE db_version CHANGE COLUMN required_6970_01_mangos_playercreateinfo required_7002_01_mangos_spell_chain bit;
+
+DELETE FROM `spell_chain` WHERE `spell_id` IN (51490,59156,59158,59159);
+
+INSERT INTO `spell_chain` VALUES
+(51490,0,51490,1,0),
+(59156,51490,51490,2,0),
+(59158,59156,51490,3,0),
+(59159,59158,51490,4,0);
diff --git a/sql/updates/7015_01_mangos_item_template.sql b/sql/updates/7015_01_mangos_item_template.sql
new file mode 100644
index 000000000..bdf9a92e7
--- /dev/null
+++ b/sql/updates/7015_01_mangos_item_template.sql
@@ -0,0 +1,14 @@
+ALTER TABLE db_version CHANGE COLUMN required_7002_01_mangos_spell_chain required_7015_01_mangos_item_template bit;
+
+UPDATE item_template
+ SET maxcount = 0 WHERE maxcount > 32000;
+
+UPDATE item_template
+ SET stackable = 0 WHERE stackable > 32000;
+
+ALTER TABLE item_template
+ CHANGE COLUMN maxcount maxcount smallint(5) NOT NULL default '-1',
+ CHANGE COLUMN stackable stackable smallint(5) NOT NULL default '1';
+
+UPDATE item_template
+ SET stackable = -1 WHERE stackable = 0;
diff --git a/sql/updates/7024_01_mangos_spell_chain.sql b/sql/updates/7024_01_mangos_spell_chain.sql
new file mode 100644
index 000000000..858e8506e
--- /dev/null
+++ b/sql/updates/7024_01_mangos_spell_chain.sql
@@ -0,0 +1,31 @@
+ALTER TABLE db_version CHANGE COLUMN required_7015_01_mangos_item_template required_7024_01_mangos_spell_chain bit;
+
+/* Lifeblood (Herbalizm) */
+DELETE FROM `spell_chain` WHERE `spell_id` IN (55428,55480,55500,55501,55502,55503);
+INSERT INTO `spell_chain` VALUES
+(55428,0,55428,1,0),
+(55480,55428,55428,2,0),
+(55500,55480,55428,3,0),
+(55501,55500,55428,4,0),
+(55502,55501,55428,5,0),
+(55503,55502,55428,6,0);
+
+/* Toughness (Mining) */
+DELETE FROM `spell_chain` WHERE `spell_id` IN (53120,53121,53122,53123,53124,53040);
+INSERT INTO `spell_chain` VALUES
+(53120,0,53120,1,0),
+(53121,53120,53120,2,0),
+(53122,53121,53120,3,0),
+(53123,53122,53120,4,0),
+(53124,53123,53120,5,0),
+(53040,53124,53120,6,0);
+
+/* Master of Anatomy (Skinning) */
+DELETE FROM `spell_chain` WHERE `spell_id` IN (53125,53662,53663,53664,53665,53666);
+INSERT INTO `spell_chain` VALUES
+(53125,0,53125,1,0),
+(53662,53125,53125,2,0),
+(53663,53662,53125,3,0),
+(53664,53663,53125,4,0),
+(53665,53664,53125,5,0),
+(53666,53665,53125,6,0);
diff --git a/sql/updates/7026_01_mangos_battleground_template.sql b/sql/updates/7026_01_mangos_battleground_template.sql
new file mode 100644
index 000000000..9da034c3e
--- /dev/null
+++ b/sql/updates/7026_01_mangos_battleground_template.sql
@@ -0,0 +1,7 @@
+ALTER TABLE db_version CHANGE COLUMN required_7024_01_mangos_spell_chain required_7026_01_mangos_battleground_template bit;
+
+DELETE FROM battleground_template WHERE id IN (9,10,11);
+INSERT INTO battleground_template VALUES
+(9,0,0,0,0,1367,0,1368,0),
+(10,5,5,10,80,1362,0,1363,0),
+(11,5,5,10,80,1364,0,1365,0);
diff --git a/sql/updates/7031_01_mangos_spell_proc_event.sql b/sql/updates/7031_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..d10f099fb
--- /dev/null
+++ b/sql/updates/7031_01_mangos_spell_proc_event.sql
@@ -0,0 +1,25 @@
+ALTER TABLE db_version CHANGE COLUMN required_7026_01_mangos_battleground_template required_7031_01_mangos_spell_proc_event bit;
+
+-- (44445) Hot Streak (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44445);
+INSERT INTO `spell_proc_event` VALUES (44445, 0x00, 3, 0x0000100000000013, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (44446) Hot Streak (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44446);
+INSERT INTO `spell_proc_event` VALUES (44446, 0x00, 3, 0x0000100000000013, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (44448) Hot Streak (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44448);
+INSERT INTO `spell_proc_event` VALUES (44448, 0x00, 3, 0x0000100000000013, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (54939) Glyph of Divinity ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54939);
+INSERT INTO `spell_proc_event` VALUES (54939, 0x00, 10, 0x0000000000008000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (54936) Glyph of Flash of Light ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54936);
+INSERT INTO `spell_proc_event` VALUES (54936, 0x00, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (54937) Glyph of Holy Light ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54937);
+INSERT INTO `spell_proc_event` VALUES (54937, 0x00, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file
diff --git a/sql/updates/7033_01_mangos_spell_proc_event.sql b/sql/updates/7033_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..b95cbf93f
--- /dev/null
+++ b/sql/updates/7033_01_mangos_spell_proc_event.sql
@@ -0,0 +1,78 @@
+ALTER TABLE db_version CHANGE COLUMN required_7031_01_mangos_spell_proc_event required_7033_01_mangos_spell_proc_event bit;
+
+-- (48516) Eclipse (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48516);
+INSERT INTO `spell_proc_event` VALUES (48516, 0x00, 7, 0x0000000000000005, 0x00000000, 0x00000002, 0.000000, 0.000000, 30);
+
+-- (48521) Eclipse (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48521);
+INSERT INTO `spell_proc_event` VALUES (48521, 0x00, 7, 0x0000000000000005, 0x00000000, 0x00000002, 0.000000, 0.000000, 30);
+
+-- (48525) Eclipse (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48525);
+INSERT INTO `spell_proc_event` VALUES (48525, 0x00, 7, 0x0000000000000005, 0x00000000, 0x00000002, 0.000000, 0.000000, 30);
+
+-- (48496) Living Seed (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48496);
+INSERT INTO `spell_proc_event` VALUES (48496, 0x00, 7, 0x0200000200000060, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (48499) Living Seed (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48499);
+INSERT INTO `spell_proc_event` VALUES (48499, 0x00, 7, 0x0200000200000060, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (48500) Living Seed (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48500);
+INSERT INTO `spell_proc_event` VALUES (48500, 0x00, 7, 0x0200000200000060, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (53228) Rapid Recuperation (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (53228);
+INSERT INTO `spell_proc_event` VALUES (53228, 0x00, 9, 0x0000000000000020, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (53232) Rapid Recuperation (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (53232);
+INSERT INTO `spell_proc_event` VALUES (53232, 0x00, 9, 0x0000000000000020, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (55440) Glyph of Healing Wave ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (55440);
+INSERT INTO `spell_proc_event` VALUES (55440, 0x00, 11, 0x0000000000000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (52795) Borrowed Time (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (52795);
+INSERT INTO `spell_proc_event` VALUES (52795, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (52797) Borrowed Time (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (52797);
+INSERT INTO `spell_proc_event` VALUES (52797, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (52798) Borrowed Time (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (52798);
+INSERT INTO `spell_proc_event` VALUES (52798, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (52799) Borrowed Time (Rank 4)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (52799);
+INSERT INTO `spell_proc_event` VALUES (52799, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (52800) Borrowed Time (Rank 5)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (52800);
+INSERT INTO `spell_proc_event` VALUES (52800, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (55677) Glyph of Dispel Magic ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (55677);
+INSERT INTO `spell_proc_event` VALUES (55677, 0x00, 6, 0x0000000100000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (55680) Glyph of Prayer of Healing ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (55680);
+INSERT INTO `spell_proc_event` VALUES (55680, 0x00, 6, 0x0000000000000200, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (47572) Psychic Horror (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47572);
+INSERT INTO `spell_proc_event` VALUES (47572, 0x00, 6, 0x0000000000010000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (48159) Vampiric Touch (Rank 4)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48159);
+INSERT INTO `spell_proc_event` VALUES (48159, 0x20, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (48160) Vampiric Touch (Rank 5)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48160);
+INSERT INTO `spell_proc_event` VALUES (48160, 0x20, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
diff --git a/sql/updates/7034_01_mangos_spell_proc_event.sql b/sql/updates/7034_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..c7bc44bc4
--- /dev/null
+++ b/sql/updates/7034_01_mangos_spell_proc_event.sql
@@ -0,0 +1,798 @@
+ALTER TABLE db_version CHANGE COLUMN required_7033_01_mangos_spell_proc_event required_7034_01_mangos_spell_proc_event bit;
+
+DROP TABLE IF EXISTS `spell_proc_event`;
+CREATE TABLE `spell_proc_event` (
+ `entry` smallint(5) unsigned NOT NULL default '0',
+ `SchoolMask` tinyint(4) NOT NULL default '0',
+ `SpellFamilyName` smallint(5) unsigned NOT NULL default '0',
+ `SpellFamilyMask0` int(10) unsigned NOT NULL default '0',
+ `SpellFamilyMask1` int(10) unsigned NOT NULL default '0',
+ `SpellFamilyMask2` int(10) unsigned NOT NULL default '0',
+ `procFlags` int(10) unsigned NOT NULL default '0',
+ `procEx` int(10) unsigned NOT NULL default '0',
+ `ppmRate` float NOT NULL default '0',
+ `CustomChance` float NOT NULL default '0',
+ `Cooldown` int(10) unsigned NOT NULL default '0',
+ PRIMARY KEY (`entry`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+INSERT INTO `spell_proc_event` VALUES
+( 324, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 325, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 905, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 945, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 974, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 1463, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+( 3232, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+( 5952, 0x00000000, 8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+( 6346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0),
+( 7383, 0x00000001, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0),
+( 7434, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+( 8134, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+( 8178, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+( 8494, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+( 8495, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+( 9452, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+( 9782, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+( 9784, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+( 9799, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(10191, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(10192, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(10193, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(10431, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(10432, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(11095, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(11119, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(11120, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(11129, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(11180, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(11185, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0),
+(11255, 0x00000000, 3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12169, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12289, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12298, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12311, 0x00000000, 4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12317, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12319, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12322, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(12487, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0),
+(12488, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0),
+(12598, 0x00000000, 3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12668, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12724, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12725, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12726, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12727, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(12797, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12799, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12812, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12813, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12814, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12815, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6),
+(12834, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12846, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12847, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12848, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12849, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12867, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12872, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12873, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12958, 0x00000000, 4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(12966, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12967, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12968, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12969, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12970, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(12971, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12972, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12973, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12974, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(12999, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000, 0),
+(13000, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0),
+(13001, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8.000000, 0.000000, 0),
+(13002, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.000000, 0.000000, 0),
+(13045, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(13046, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(13047, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(13048, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(13165, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(13754, 0x00000000, 8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(13867, 0x00000000, 8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(13983, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0),
+(14070, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0),
+(14071, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0),
+(14156, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14160, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14161, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14186, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14190, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14193, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14194, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14195, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14318, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14319, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14320, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14321, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14322, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(14531, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(14892, 0x00000000, 6, 0x10001E00, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15088, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15128, 0x00000004, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15268, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15277, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0),
+(15286, 0x00000020, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15323, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15324, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15325, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15326, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(15337, 0x00000000, 6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15338, 0x00000000, 6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0),
+(15362, 0x00000000, 6, 0x10001E00, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15363, 0x00000000, 6, 0x10001E00, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(15600, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0),
+(16164, 0x00000000, 11, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16176, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16180, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16196, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16198, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16235, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16240, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16256, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16257, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16277, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16278, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16279, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16280, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(16281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16282, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16283, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16284, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16487, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16489, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16492, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16550, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16620, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(16624, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(16850, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(16864, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(16880, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16923, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(16924, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(16952, 0x00000000, 7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16954, 0x00000000, 7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16958, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(16961, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17106, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17107, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17108, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17364, 0x00000008, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17495, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(17793, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17794, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000, 0),
+(17796, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17797, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17798, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17799, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17800, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(17801, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17802, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(17803, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(18073, 0x00000000, 5, 0x00000060, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18094, 0x00000000, 5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18095, 0x00000000, 5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18096, 0x00000000, 5, 0x00000060, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18119, 0x00000000, 5, 0x000003E5, 0x000010C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18120, 0x00000000, 5, 0x000003E5, 0x000010C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(18820, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(19184, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19228, 0x00000000, 0, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19232, 0x00000000, 9, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19233, 0x00000000, 9, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19387, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19388, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(19572, 0x00000000, 9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0),
+(19573, 0x00000000, 9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0),
+(20049, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20056, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20057, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20132, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20164, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000, 0),
+(20165, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0),
+(20166, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0),
+(20182, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20210, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20212, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20213, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20214, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20215, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20234, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(20235, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(20375, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0),
+(20500, 0x00000000, 4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(20501, 0x00000000, 4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(20705, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(20911, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(20925, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20927, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(20928, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(21185, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(21882, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(21890, 0x00000000, 4, 0x2A764EEF, 0x0000036C, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(22007, 0x00000000, 3, 0x00200021, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(22618, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(22648, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(23547, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(23548, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(23551, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(23552, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(23572, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(23578, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(23581, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(23602, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(23686, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(23688, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(23689, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000, 0),
+(23695, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(23721, 0x00000000, 9, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(23920, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(24353, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(24389, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(24398, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(24658, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00014110, 0x00000000, 0.000000, 0.000000, 0),
+(24905, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 15.000000, 0.000000, 0),
+(24932, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 6),
+(25050, 0x00000004, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(25296, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(25469, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(25472, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(25669, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0),
+(25899, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(25988, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(26016, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(26107, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000064, 0.000000, 0.000000, 0),
+(26119, 0x00000000, 10, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(26128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0),
+(26135, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(26480, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(26605, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(27044, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(27131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(27179, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(27419, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(27498, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(27521, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(27656, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(27774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(27787, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(27811, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(27815, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(27816, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28592, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28593, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28716, 0x00000000, 7, 0x00000010, 0x00000000, 0x00000000, 0x00048000, 0x00000000, 0.000000, 0.000000, 0),
+(28719, 0x00000000, 7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28744, 0x00000000, 7, 0x00000040, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0.000000, 0.000000, 0),
+(28752, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28789, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28802, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(28809, 0x00000000, 6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28812, 0x00000000, 8, 0x02000006, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(28816, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(28823, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28847, 0x00000000, 7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(28849, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(29074, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29075, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29076, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29150, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29179, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29180, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29385, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0),
+(29441, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 1),
+(29444, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 1),
+(29455, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(29501, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29593, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(29594, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(29624, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29625, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29626, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29632, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29633, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29634, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29636, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29637, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(29801, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(29834, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(29838, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(29977, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30003, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(30160, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30293, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30295, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30296, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30299, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30301, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30302, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30675, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30678, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30679, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30680, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30681, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30701, 0x0000001C, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30705, 0x0000001C, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(30802, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30803, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30804, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30805, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30806, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30807, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30808, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30809, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30810, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30811, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(30823, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.500000, 0.000000, 0),
+(30881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30883, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30884, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30885, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30886, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5),
+(30937, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31124, 0x00000000, 8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31126, 0x00000000, 8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31244, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000, 0),
+(31245, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000, 0),
+(31394, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31569, 0x00000000, 3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31570, 0x00000000, 3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31785, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000, 0),
+(31794, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(31801, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0),
+(31833, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31835, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31836, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(31904, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32385, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32387, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32392, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32393, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32394, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(32587, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32593, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(32594, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(32642, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32734, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(32748, 0x00000000, 8, 0x00000000, 0x00000001, 0x00000000, 0x00000140, 0x00000000, 0.000000, 0.000000, 0),
+(32776, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32777, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(32837, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
+(32844, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0),
+(32885, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33076, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0),
+(33089, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(33127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0),
+(33142, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33145, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33146, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33150, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33151, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33154, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33191, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(33192, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(33193, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(33299, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(33510, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000, 0),
+(33648, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33719, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(33736, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(33746, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(33757, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(33759, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(33776, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000, 0),
+(33881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33882, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(33883, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34080, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0),
+(34138, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34139, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34258, 0x00000000, 10, 0x00000400, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34262, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(34320, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34355, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(34497, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34498, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34499, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34500, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34502, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34503, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34584, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(34586, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 0),
+(34598, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(34749, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0),
+(34753, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 20),
+(34783, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(34827, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(34859, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34860, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34914, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34916, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34917, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(34935, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8),
+(34938, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8),
+(34939, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8),
+(34950, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(34954, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(35077, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(35080, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 60),
+(35083, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(35086, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(35100, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(35102, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(35103, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(35121, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(36096, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(36111, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37165, 0x00000000, 8, 0x00200400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37168, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37170, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0),
+(37173, 0x00000000, 8, 0x2CBC0598, 0x00000106, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(37189, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
+(37193, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(37195, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37197, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
+(37213, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(37214, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(37227, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
+(37237, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(37247, 0x00000008, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
+(37377, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(37384, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(37514, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(37516, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37519, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000, 0),
+(37523, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(37528, 0x00000000, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37536, 0x00000000, 4, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37568, 0x00000000, 6, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37594, 0x00000000, 6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37600, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(37601, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(37603, 0x00000000, 6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(37655, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(37657, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 3),
+(38026, 0x00000001, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0),
+(38031, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(38290, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.600000, 0.000000, 0),
+(38326, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(38327, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(38334, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(38347, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(38350, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(38394, 0x00000000, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(38857, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(39027, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(39372, 0x00000030, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(39437, 0x00000004, 5, 0x00001364, 0x000000C0, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(39442, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000, 0),
+(39443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(39530, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(39958, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.700000, 0.000000, 40),
+(40407, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0),
+(40438, 0x00000000, 6, 0x00008040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40442, 0x00000000, 7, 0x00000014, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40444, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(40458, 0x00000000, 4, 0x02000000, 0x00000601, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40463, 0x00000000, 11, 0x00000081, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40470, 0x00000000, 10, 0xC0800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40475, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0),
+(40478, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40482, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(40485, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(40899, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(41034, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(41260, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(41262, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(41381, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0),
+(41393, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(41434, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 45),
+(41469, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0),
+(41635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0),
+(41989, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.500000, 0.000000, 0),
+(42083, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
+(42135, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
+(42136, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
+(42368, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(42370, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43019, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(43020, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0),
+(43338, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(43443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(43726, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43728, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43737, 0x00000000, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(43739, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43741, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43745, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43748, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43750, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(43819, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(44404, 0x00000000, 3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44445, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44446, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44448, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(44835, 0x00000000, 7, 0x00000000, 0x00000080, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000, 0),
+(45054, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
+(45057, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(45234, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(45243, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(45244, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(45354, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(45481, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(45482, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(45483, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(45484, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
+(46025, 0x00000020, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46092, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46098, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46569, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
+(46662, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 20),
+(46832, 0x00000000, 7, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(46854, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46855, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46867, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46913, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46914, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46915, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46916, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(46951, 0x00000000, 4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46952, 0x00000000, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(46953, 0x00000000, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47195, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(47196, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(47197, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(47201, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47202, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47203, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47204, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47205, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47232, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47234, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47235, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47245, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47246, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47247, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47258, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47259, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47260, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(47263, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
+(47264, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
+(47265, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
+(47509, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47511, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47515, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(47516, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47517, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47535, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47536, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47537, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47538, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47539, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47572, 0x00000000, 6, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47580, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47581, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(47582, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48159, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48160, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48483, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48484, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48485, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48496, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(48499, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(48500, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(48506, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48510, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48511, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48516, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
+(48521, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
+(48525, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
+(48833, 0x00000000, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48835, 0x00000000, 10, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48837, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(48951, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(48952, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(48988, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(49018, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49137, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49188, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49208, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49222, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49280, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49283, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49284, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(49503, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(49504, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(49529, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49530, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49531, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49532, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(49622, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
+(49657, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(50781, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51123, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51129, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51130, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(51349, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(51352, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(51359, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
+(51466, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51470, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51562, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51563, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51564, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51565, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51566, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51625, 0x00000000, 8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51626, 0x00000000, 8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51627, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(51628, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(51629, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0),
+(51634, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51636, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51664, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51665, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51667, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51668, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51669, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51672, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 1),
+(51674, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 1),
+(51679, 0x00000000, 8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(51692, 0x00000000, 8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51696, 0x00000000, 8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(51698, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1),
+(51700, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1),
+(51701, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1),
+(52020, 0x00000000, 7, 0x00008000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52129, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52134, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52136, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52138, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(52420, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
+(52423, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(52795, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52797, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52798, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52799, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52800, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(52898, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53137, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53138, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53215, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53216, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53217, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53221, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53222, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53224, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53228, 0x00000000, 9, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53232, 0x00000000, 9, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53256, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53259, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53260, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53290, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53291, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53292, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53293, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53294, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53380, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53381, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53382, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53383, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53384, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53486, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53488, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53551, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53552, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53553, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(53569, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(53576, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(54149, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(54486, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54488, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54489, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54490, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54738, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(54754, 0x00000000, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54841, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(54936, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54937, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(54939, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55440, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55620, 0x00000000, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55623, 0x00000000, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55666, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55667, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55668, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55669, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55670, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55677, 0x00000000, 6, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55680, 0x00000000, 6, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(55689, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56218, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56342, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56343, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56344, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56364, 0x00000000, 3, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56451, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(56611, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56612, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56613, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56614, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56636, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56637, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56638, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56821, 0x00000000, 8, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(56822, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56834, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(56835, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(57878, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0),
+(57880, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0),
+(57881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0),
+(57960, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
+(58357, 0x00000000, 4, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(58364, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58372, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58386, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(58435, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58436, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58437, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58616, 0x00000000, 15, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58620, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58626, 0x00000000, 15, 0x02000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58631, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58642, 0x00000000, 15, 0x00000000, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58644, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58647, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58676, 0x00000000, 15, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58677, 0x00000000, 15, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(58872, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(58874, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0),
+(58901, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(59057, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(59176, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(59327, 0x00000000, 15, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(59725, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0),
+(60132, 0x00000000, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60172, 0x00000000, 5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(60200, 0x00000000, 15, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0),
+(60537, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
+(60564, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60571, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60572, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60573, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60574, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60575, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60617, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0),
+(60710, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60717, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60719, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60722, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60724, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60726, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60770, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60818, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(60826, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(61324, 0x00000000, 10, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file
diff --git a/sql/updates/7040_01_mangos_achievement_reward.sql b/sql/updates/7040_01_mangos_achievement_reward.sql
new file mode 100644
index 000000000..0402a0025
--- /dev/null
+++ b/sql/updates/7040_01_mangos_achievement_reward.sql
@@ -0,0 +1,36 @@
+ALTER TABLE db_version CHANGE COLUMN required_7034_01_mangos_spell_proc_event required_7040_01_mangos_achievement_reward bit;
+
+DROP TABLE IF EXISTS `achievement_reward`;
+CREATE TABLE `achievement_reward` (
+ `entry` mediumint(8) unsigned NOT NULL default '0',
+ `title_A` mediumint(8) unsigned NOT NULL default '0',
+ `title_H` mediumint(8) unsigned NOT NULL default '0',
+ `item` mediumint(8) unsigned NOT NULL default '0',
+ `sender` mediumint(8) unsigned NOT NULL default '0',
+ `subject` varchar(255) default NULL,
+ `text` text,
+ PRIMARY KEY (`entry`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
+
+
+DROP TABLE IF EXISTS `locales_achievement_reward`;
+CREATE TABLE `locales_achievement_reward` (
+ `entry` mediumint(8) unsigned NOT NULL default '0',
+ `subject_loc1` varchar(100) NOT NULL default '',
+ `subject_loc2` varchar(100) NOT NULL default '',
+ `subject_loc3` varchar(100) NOT NULL default '',
+ `subject_loc4` varchar(100) NOT NULL default '',
+ `subject_loc5` varchar(100) NOT NULL default '',
+ `subject_loc6` varchar(100) NOT NULL default '',
+ `subject_loc7` varchar(100) NOT NULL default '',
+ `subject_loc8` varchar(100) NOT NULL default '',
+ `text_loc1` text default NULL,
+ `text_loc2` text default NULL,
+ `text_loc3` text default NULL,
+ `text_loc4` text default NULL,
+ `text_loc5` text default NULL,
+ `text_loc6` text default NULL,
+ `text_loc7` text default NULL,
+ `text_loc8` text default NULL,
+ PRIMARY KEY (`entry`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
diff --git a/sql/updates/7044_01_mangos_spell_proc_event.sql b/sql/updates/7044_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..576d5611a
--- /dev/null
+++ b/sql/updates/7044_01_mangos_spell_proc_event.sql
@@ -0,0 +1,17 @@
+ALTER TABLE db_version CHANGE COLUMN required_7040_01_mangos_achievement_reward required_7044_01_mangos_spell_proc_event bit;
+
+-- (48110) Prayer of Mending (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48110);
+INSERT INTO `spell_proc_event` VALUES (48110, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (48112) Prayer of Mending (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48112);
+INSERT INTO `spell_proc_event` VALUES (48112, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (48111) Prayer of Mending (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48111);
+INSERT INTO `spell_proc_event` VALUES (48111, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (48113) Prayer of Mending (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (48113);
+INSERT INTO `spell_proc_event` VALUES (48113, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file
diff --git a/sql/updates/7047_01_characters_character_spell.sql b/sql/updates/7047_01_characters_character_spell.sql
new file mode 100644
index 000000000..a0f3abc8d
--- /dev/null
+++ b/sql/updates/7047_01_characters_character_spell.sql
@@ -0,0 +1,11 @@
+ALTER TABLE character_db_version CHANGE COLUMN required_6976_02_characters_character_db_version required_7047_01_characters_character_spell bit;
+
+DELETE FROM `character_spell` WHERE `spell` IN ('28880', 59542, 59543, 59544, 59545, 59547, 59548);
+
+INSERT INTO character_spell SELECT characters.guid as guid, 28880, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 1;
+INSERT INTO character_spell SELECT characters.guid as guid, 59542, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 2;
+INSERT INTO character_spell SELECT characters.guid as guid, 59543, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 3;
+INSERT INTO character_spell SELECT characters.guid as guid, 59544, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 5;
+INSERT INTO character_spell SELECT characters.guid as guid, 59545, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 6;
+INSERT INTO character_spell SELECT characters.guid as guid, 59547, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 7;
+INSERT INTO character_spell SELECT characters.guid as guid, 59548, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 8;
diff --git a/sql/updates/7047_02_mangos_playercreateinfo_action.sql b/sql/updates/7047_02_mangos_playercreateinfo_action.sql
new file mode 100644
index 000000000..894334b86
--- /dev/null
+++ b/sql/updates/7047_02_mangos_playercreateinfo_action.sql
@@ -0,0 +1,11 @@
+ALTER TABLE db_version CHANGE COLUMN required_7044_01_mangos_spell_proc_event required_7047_02_mangos_playercreateinfo_action bit;
+
+DELETE FROM `playercreateinfo_action` WHERE `action` IN ('28880', 59542, 59543, 59544, 59545, 59547, 59548);
+INSERT INTO `playercreateinfo_action` VALUES
+(11,1,74,28880,0,0),
+(11,2,3,59542,0,0),
+(11,3,3,59543,0,0),
+(11,5,3,59544,0,0),
+(11,6,6,59545,0,0),
+(11,7,3,59547,0,0),
+(11,8,3,59548,0,0);
\ No newline at end of file
diff --git a/sql/updates/7047_03_mangos_playercreateinfo_spell.sql b/sql/updates/7047_03_mangos_playercreateinfo_spell.sql
new file mode 100644
index 000000000..c82490788
--- /dev/null
+++ b/sql/updates/7047_03_mangos_playercreateinfo_spell.sql
@@ -0,0 +1,12 @@
+ALTER TABLE db_version CHANGE COLUMN required_7047_02_mangos_playercreateinfo_action required_7047_03_mangos_playercreateinfo_spell bit;
+
+DELETE FROM `playercreateinfo_spell` WHERE `Spell` IN ('28880', 59542, 59543, 59544, 59545, 59547, 59548);
+
+INSERT INTO `playercreateinfo_spell` VALUES
+(11,1,28880,'Gift of the Naaru',1),
+(11,2,59542,'Gift of the Naaru',1),
+(11,3,59543,'Gift of the Naaru',1),
+(11,5,59544,'Gift of the Naaru',1),
+(11,6,59545,'Gift of the Naaru',1),
+(11,7,59547,'Gift of the Naaru',1),
+(11,8,59548,'Gift of the Naaru',1);
\ No newline at end of file
diff --git a/sql/updates/7050_01_mangos_spell_proc_event.sql b/sql/updates/7050_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..bd01cabdd
--- /dev/null
+++ b/sql/updates/7050_01_mangos_spell_proc_event.sql
@@ -0,0 +1,13 @@
+ALTER TABLE db_version CHANGE COLUMN required_7047_03_mangos_playercreateinfo_spell required_7050_01_mangos_spell_proc_event bit;
+
+-- (34753) Holy Concentration (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (34753);
+INSERT INTO `spell_proc_event` VALUES (34753, 0x00, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (34859) Holy Concentration (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (34859);
+INSERT INTO `spell_proc_event` VALUES (34859, 0x00, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (34860) Holy Concentration (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (34860);
+INSERT INTO `spell_proc_event` VALUES (34860, 0x00, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
\ No newline at end of file
diff --git a/sql/updates/7051_01_mangos_spell_proc_event.sql b/sql/updates/7051_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..8775ee158
--- /dev/null
+++ b/sql/updates/7051_01_mangos_spell_proc_event.sql
@@ -0,0 +1,41 @@
+ALTER TABLE db_version CHANGE COLUMN required_7050_01_mangos_spell_proc_event required_7051_01_mangos_spell_proc_event bit;
+
+-- (44546) Brain Freeze (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44546);
+INSERT INTO `spell_proc_event` VALUES (44546, 0x00, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (44548) Brain Freeze (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44548);
+INSERT INTO `spell_proc_event` VALUES (44548, 0x00, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (44549) Brain Freeze (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44549);
+INSERT INTO `spell_proc_event` VALUES (44549, 0x00, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (44449) Burnout (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44449);
+INSERT INTO `spell_proc_event` VALUES (44449, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (44469) Burnout (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44469);
+INSERT INTO `spell_proc_event` VALUES (44469, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (44470) Burnout (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44470);
+INSERT INTO `spell_proc_event` VALUES (44470, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (44471) Burnout (Rank 4)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44471);
+INSERT INTO `spell_proc_event` VALUES (44471, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (44472) Burnout (Rank 5)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (44472);
+INSERT INTO `spell_proc_event` VALUES (44472, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (54747) Burning Determination (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54747);
+INSERT INTO `spell_proc_event` VALUES (54747, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
+
+-- (54749) Burning Determination (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54749);
+INSERT INTO `spell_proc_event` VALUES (54749, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
diff --git a/sql/updates/7052_01_mangos_spell_proc_event.sql b/sql/updates/7052_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..a59e3526d
--- /dev/null
+++ b/sql/updates/7052_01_mangos_spell_proc_event.sql
@@ -0,0 +1,13 @@
+ALTER TABLE db_version CHANGE COLUMN required_7051_01_mangos_spell_proc_event required_7052_01_mangos_spell_proc_event bit;
+
+-- (47549) Improved Holy Concentration (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47549);
+INSERT INTO `spell_proc_event` VALUES (47549, 0x00, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (47551) Improved Holy Concentration (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47551);
+INSERT INTO `spell_proc_event` VALUES (47551, 0x00, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (47552) Improved Holy Concentration (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47552);
+INSERT INTO `spell_proc_event` VALUES (47552, 0x00, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file
diff --git a/sql/updates/7053_01_mangos_spell_proc_event.sql b/sql/updates/7053_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..5d29f5d40
--- /dev/null
+++ b/sql/updates/7053_01_mangos_spell_proc_event.sql
@@ -0,0 +1,62 @@
+ALTER TABLE db_version CHANGE COLUMN required_7052_01_mangos_spell_proc_event required_7053_01_mangos_spell_proc_event bit;
+
+-- (60493) Dying Curse ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (60493);
+INSERT INTO `spell_proc_event` VALUES (60493, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45);
+
+-- (60503) Taste for Blood ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (60503);
+INSERT INTO `spell_proc_event` VALUES (60503, 0x00, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (61188) Chaotic Mind ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (61188);
+INSERT INTO `spell_proc_event` VALUES (61188, 0x00, 5, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (60170) Corruption Triggers Crit ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (60170);
+INSERT INTO `spell_proc_event` VALUES (60170, 0x00, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (36541) Curse of Burning Shadows ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (36541);
+INSERT INTO `spell_proc_event` VALUES (36541, 0x04, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (54278) Empowered Imp ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54278);
+INSERT INTO `spell_proc_event` VALUES (54278, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (37379) Flameshadow ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (37379);
+INSERT INTO `spell_proc_event` VALUES (37379, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (53671) Judgements of the Pure (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (53671);
+INSERT INTO `spell_proc_event` VALUES (53671, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (53673) Judgements of the Pure (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (53673);
+INSERT INTO `spell_proc_event` VALUES (53673, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (54151) Judgements of the Pure (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54151);
+INSERT INTO `spell_proc_event` VALUES (54151, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (54154) Judgements of the Pure (Rank 4)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54154);
+INSERT INTO `spell_proc_event` VALUES (54154, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (54155) Judgements of the Pure (Rank 5)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (54155);
+INSERT INTO `spell_proc_event` VALUES (54155, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (31876) Judgements of the Wise (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (31876);
+INSERT INTO `spell_proc_event` VALUES (31876, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (31877) Judgements of the Wise (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (31877);
+INSERT INTO `spell_proc_event` VALUES (31877, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (31878) Judgements of the Wise (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (31878);
+INSERT INTO `spell_proc_event` VALUES (31878, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
diff --git a/sql/updates/7056_01_mangos_spell_proc_event.sql b/sql/updates/7056_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..c4788253e
--- /dev/null
+++ b/sql/updates/7056_01_mangos_spell_proc_event.sql
@@ -0,0 +1,25 @@
+ALTER TABLE db_version CHANGE COLUMN required_7053_01_mangos_spell_proc_event required_7056_01_mangos_spell_proc_event bit;
+
+-- (20210) Illumination (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (20210);
+INSERT INTO `spell_proc_event` VALUES (20210, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (20212) Illumination (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (20212);
+INSERT INTO `spell_proc_event` VALUES (20212, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (20213) Illumination (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (20213);
+INSERT INTO `spell_proc_event` VALUES (20213, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (20214) Illumination (Rank 4)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (20214);
+INSERT INTO `spell_proc_event` VALUES (20214, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (20215) Illumination (Rank 5)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (20215);
+INSERT INTO `spell_proc_event` VALUES (20215, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (33953) Essence of Life ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (33953);
+INSERT INTO `spell_proc_event` VALUES (33953, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45);
\ No newline at end of file
diff --git a/sql/updates/7059_01_characters_character_spell.sql b/sql/updates/7059_01_characters_character_spell.sql
new file mode 100644
index 000000000..6280798cc
--- /dev/null
+++ b/sql/updates/7059_01_characters_character_spell.sql
@@ -0,0 +1,4 @@
+ALTER TABLE character_db_version CHANGE COLUMN required_7047_01_characters_character_spell required_7059_01_characters_character_spell bit;
+
+ALTER TABLE character_spell
+ DROP slot;
diff --git a/sql/updates/7059_02_characters_pet_spell.sql b/sql/updates/7059_02_characters_pet_spell.sql
new file mode 100644
index 000000000..e2ee87b9f
--- /dev/null
+++ b/sql/updates/7059_02_characters_pet_spell.sql
@@ -0,0 +1,4 @@
+ALTER TABLE character_db_version CHANGE COLUMN required_7059_01_characters_character_spell required_7059_02_characters_pet_spell bit;
+
+ALTER TABLE pet_spell
+ DROP slot;
diff --git a/sql/updates/7060_01_mangos_spell_proc_event.sql b/sql/updates/7060_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..dbe87be7f
--- /dev/null
+++ b/sql/updates/7060_01_mangos_spell_proc_event.sql
@@ -0,0 +1,31 @@
+ALTER TABLE db_version CHANGE COLUMN required_7056_01_mangos_spell_proc_event required_7060_01_mangos_spell_proc_event bit;
+
+-- (51556) Ancestral Awakening (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (51556);
+INSERT INTO `spell_proc_event` VALUES (51556, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (51557) Ancestral Awakening (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (51557);
+INSERT INTO `spell_proc_event` VALUES (51557, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (51558) Ancestral Awakening (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (51558);
+INSERT INTO `spell_proc_event` VALUES (51558, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (47555) Serendipity (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47555);
+INSERT INTO `spell_proc_event` VALUES (47555, 0x00, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (47556) Serendipity (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47556);
+INSERT INTO `spell_proc_event` VALUES (47556, 0x00, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (47557) Serendipity (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47557);
+INSERT INTO `spell_proc_event` VALUES (47557, 0x00, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (32409) Shadow Word: Death ()
+DELETE FROM `spell_proc_event` WHERE `entry` IN (32409);
+INSERT INTO `spell_proc_event` VALUES (32409, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+
diff --git a/sql/updates/7061_01_mangos_spell_proc_event.sql b/sql/updates/7061_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..a4f85f40f
--- /dev/null
+++ b/sql/updates/7061_01_mangos_spell_proc_event.sql
@@ -0,0 +1,41 @@
+ALTER TABLE db_version CHANGE COLUMN required_7060_01_mangos_spell_proc_event required_7061_01_mangos_spell_proc_event bit;
+
+-- (47516) Grace (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47516);
+INSERT INTO `spell_proc_event` VALUES (47516, 0x00, 6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (47517) Grace (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47517);
+INSERT INTO `spell_proc_event` VALUES (47517, 0x00, 6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
+
+-- (14892) Inspiration (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (14892);
+INSERT INTO `spell_proc_event` VALUES (14892, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (15362) Inspiration (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (15362);
+INSERT INTO `spell_proc_event` VALUES (15362, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (15363) Inspiration (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (15363);
+INSERT INTO `spell_proc_event` VALUES (15363, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
+
+-- (47535) Rapture (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47535);
+INSERT INTO `spell_proc_event` VALUES (47535, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
+
+-- (47536) Rapture (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47536);
+INSERT INTO `spell_proc_event` VALUES (47536, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
+
+-- (47537) Rapture (Rank 3)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47537);
+INSERT INTO `spell_proc_event` VALUES (47537, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
+
+-- (47538) Rapture (Rank 4)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47538);
+INSERT INTO `spell_proc_event` VALUES (47538, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
+
+-- (47539) Rapture (Rank 5)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (47539);
+INSERT INTO `spell_proc_event` VALUES (47539, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
diff --git a/sql/updates/7063_01_mangos_spell_proc_event.sql b/sql/updates/7063_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..d3bbbe754
--- /dev/null
+++ b/sql/updates/7063_01_mangos_spell_proc_event.sql
@@ -0,0 +1,13 @@
+ALTER TABLE db_version CHANGE COLUMN required_7061_01_mangos_spell_proc_event required_7063_01_mangos_spell_proc_event bit;
+
+-- (51474) Astral Shift (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (51474);
+INSERT INTO `spell_proc_event` VALUES (51474, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
+
+-- (51478) Astral Shift (Rank 2)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (51478);
+INSERT INTO `spell_proc_event` VALUES (51478, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0);
+
+-- (53601) Sacred Shield (Rank 1)
+DELETE FROM `spell_proc_event` WHERE `entry` IN (53601);
+INSERT INTO `spell_proc_event` VALUES (53601, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6);
\ No newline at end of file
diff --git a/sql/updates/7067_01_mangos_playercreateinfo_spell.sql b/sql/updates/7067_01_mangos_playercreateinfo_spell.sql
new file mode 100644
index 000000000..b26adb333
--- /dev/null
+++ b/sql/updates/7067_01_mangos_playercreateinfo_spell.sql
@@ -0,0 +1,6 @@
+ALTER TABLE db_version CHANGE COLUMN required_7063_01_mangos_spell_proc_event required_7067_01_mangos_playercreateinfo_spell bit;
+
+ALTER TABLE playercreateinfo_spell
+ DROP COLUMN Active;
+
+DELETE FROM playercreateinfo_spell WHERE Spell IN (1178,3025,5419,5420,5421,7376,7381,9635,21156,21178,24905,33948,34123,40121);
diff --git a/sql/updates/7067_02_mangos_spell_learn_spell.sql b/sql/updates/7067_02_mangos_spell_learn_spell.sql
new file mode 100644
index 000000000..9c16468af
--- /dev/null
+++ b/sql/updates/7067_02_mangos_spell_learn_spell.sql
@@ -0,0 +1,33 @@
+ALTER TABLE db_version CHANGE COLUMN required_7067_01_mangos_playercreateinfo_spell required_7067_02_mangos_spell_learn_spell bit;
+
+ALTER TABLE spell_learn_spell
+ ADD COLUMN Active tinyint(3) unsigned NOT NULL default '1' AFTER SpellID;
+
+DELETE FROM spell_learn_spell WHERE Entry IN (
+ 71,768,783,1066,2458,2457,5487,5487,9634,9634,17002,24858,24866,
+ 33872,33873,33891,33891,33943,33943,33943,40123,40123
+);
+
+INSERT INTO spell_learn_spell VALUES
+(71,7376,0),
+(768,3025,0),
+(783,5419,0),
+(1066,5421,0),
+(2457,21156,0),
+(2458,7381,0),
+(5487,1178,0),
+(5487,21178,0),
+(9634,9635,0),
+(9634,21178,0),
+(17002,24867,0),
+(24858,24905,0),
+(24866,24864,0),
+(33872,47179,0),
+(33873,47180,0),
+(33891,5420,0),
+(33891,34123,0),
+(33943,33948,0),
+(33943,34090,1),
+(33943,34764,0),
+(40123,40121,0),
+(40123,40122,0);
diff --git a/sql/updates/7067_03_characters_character_spell.sql b/sql/updates/7067_03_characters_character_spell.sql
new file mode 100644
index 000000000..7dd212210
--- /dev/null
+++ b/sql/updates/7067_03_characters_character_spell.sql
@@ -0,0 +1,3 @@
+ALTER TABLE character_db_version CHANGE COLUMN required_7059_02_characters_pet_spell required_7067_03_characters_character_spell bit;
+
+DELETE FROM `character_spell` WHERE `spell` IN (7376,3025,5419,5421,21156,7381,1178,21178,9635,21178,24905,5420,34123,33948,34090,34764,40121,40122);
diff --git a/sql/updates/7074_01_mangos_playercreateinfo_spell.sql b/sql/updates/7074_01_mangos_playercreateinfo_spell.sql
new file mode 100644
index 000000000..7bf0b6775
--- /dev/null
+++ b/sql/updates/7074_01_mangos_playercreateinfo_spell.sql
@@ -0,0 +1,2797 @@
+ALTER TABLE db_version CHANGE COLUMN required_7067_02_mangos_spell_learn_spell required_7074_01_mangos_playercreateinfo_spell bit;
+
+DELETE FROM `playercreateinfo_spell`;
+
+INSERT INTO `playercreateinfo_spell` VALUES
+(1,1,78,'Heroic Strike'),
+(1,1,81,'Dodge'),
+(1,1,107,'Block'),
+(1,1,196,'One-Handed Axes'),
+(1,1,198,'One-Handed Maces'),
+(1,1,201,'One-Handed Swords'),
+(1,1,203,'Unarmed'),
+(1,1,204,'Defense'),
+(1,1,522,'SPELLDEFENSE (DND)'),
+(1,1,668,'Language Common'),
+(1,1,1843,'Disarm'),
+(1,1,2382,'Generic'),
+(1,1,2457,'Battle Stance'),
+(1,1,2479,'Honorless Target'),
+(1,1,3050,'Detect'),
+(1,1,3365,'Opening'),
+(1,1,5301,'Defensive State (DND)'),
+(1,1,6233,'Closing'),
+(1,1,6246,'Closing'),
+(1,1,6247,'Opening'),
+(1,1,6477,'Opening'),
+(1,1,6478,'Opening'),
+(1,1,6603,'Attack'),
+(1,1,7266,'Duel'),
+(1,1,7267,'Grovel'),
+(1,1,7355,'Stuck'),
+(1,1,8386,'Attacking'),
+(1,1,8737,'Mail'),
+(1,1,9077,'Leather'),
+(1,1,9078,'Cloth'),
+(1,1,9116,'Shield'),
+(1,1,9125,'Generic'),
+(1,1,20597,'Sword Specialization'),
+(1,1,20598,'The Human Spirit'),
+(1,1,20599,'Diplomacy'),
+(1,1,20864,'Mace Specialization'),
+(1,1,21651,'Opening'),
+(1,1,21652,'Closing'),
+(1,1,22027,'Remove Insignia'),
+(1,1,22810,'Opening - No Text'),
+(1,1,32215,'Victorious State'),
+(1,1,45927,'Summon Friend'),
+(1,1,58985,'Perception'),
+(1,1,59752,'Every Man for Himself'),
+(1,1,61437,'Opening'),
+(1,2,81,'Dodge'),
+(1,2,107,'Block'),
+(1,2,198,'One-Handed Maces'),
+(1,2,199,'Two-Handed Maces'),
+(1,2,203,'Unarmed'),
+(1,2,204,'Defense'),
+(1,2,522,'SPELLDEFENSE (DND)'),
+(1,2,635,'Holy Light'),
+(1,2,668,'Language Common'),
+(1,2,1843,'Disarm'),
+(1,2,2382,'Generic'),
+(1,2,2479,'Honorless Target'),
+(1,2,3050,'Detect'),
+(1,2,3365,'Opening'),
+(1,2,6233,'Closing'),
+(1,2,6246,'Closing'),
+(1,2,6247,'Opening'),
+(1,2,6477,'Opening'),
+(1,2,6478,'Opening'),
+(1,2,6603,'Attack'),
+(1,2,7266,'Duel'),
+(1,2,7267,'Grovel'),
+(1,2,7355,'Stuck'),
+(1,2,8386,'Attacking'),
+(1,2,8737,'Mail'),
+(1,2,9077,'Leather'),
+(1,2,9078,'Cloth'),
+(1,2,9116,'Shield'),
+(1,2,9125,'Generic'),
+(1,2,20154,'Seal of Righteousness'),
+(1,2,20597,'Sword Specialization'),
+(1,2,20598,'The Human Spirit'),
+(1,2,20599,'Diplomacy'),
+(1,2,20864,'Mace Specialization'),
+(1,2,21651,'Opening'),
+(1,2,21652,'Closing'),
+(1,2,22027,'Remove Insignia'),
+(1,2,22810,'Opening - No Text'),
+(1,2,27762,'Libram'),
+(1,2,45927,'Summon Friend'),
+(1,2,58985,'Perception'),
+(1,2,59752,'Every Man for Himself'),
+(1,2,61437,'Opening'),
+(1,4,81,'Dodge'),
+(1,4,203,'Unarmed'),
+(1,4,204,'Defense'),
+(1,4,522,'SPELLDEFENSE (DND)'),
+(1,4,668,'Language Common'),
+(1,4,1180,'Daggers'),
+(1,4,1752,'Sinister Strike'),
+(1,4,1843,'Disarm'),
+(1,4,2098,'Eviscerate'),
+(1,4,2382,'Generic'),
+(1,4,2479,'Honorless Target'),
+(1,4,2567,'Thrown'),
+(1,4,2764,'Throw'),
+(1,4,3050,'Detect'),
+(1,4,3365,'Opening'),
+(1,4,6233,'Closing'),
+(1,4,6246,'Closing'),
+(1,4,6247,'Opening'),
+(1,4,6477,'Opening'),
+(1,4,6478,'Opening'),
+(1,4,6603,'Attack'),
+(1,4,7266,'Duel'),
+(1,4,7267,'Grovel'),
+(1,4,7355,'Stuck'),
+(1,4,8386,'Attacking'),
+(1,4,9077,'Leather'),
+(1,4,9078,'Cloth'),
+(1,4,9125,'Generic'),
+(1,4,16092,'Defensive State (DND)'),
+(1,4,20597,'Sword Specialization'),
+(1,4,20598,'The Human Spirit'),
+(1,4,20599,'Diplomacy'),
+(1,4,20864,'Mace Specialization'),
+(1,4,21184,'Rogue Passive (DND)'),
+(1,4,21651,'Opening'),
+(1,4,21652,'Closing'),
+(1,4,22027,'Remove Insignia'),
+(1,4,22810,'Opening - No Text'),
+(1,4,45927,'Summon Friend'),
+(1,4,58985,'Perception'),
+(1,4,59752,'Every Man for Himself'),
+(1,4,61437,'Opening'),
+(1,5,81,'Dodge'),
+(1,5,198,'One-Handed Maces'),
+(1,5,203,'Unarmed'),
+(1,5,204,'Defense'),
+(1,5,522,'SPELLDEFENSE (DND)'),
+(1,5,585,'Smite'),
+(1,5,668,'Language Common'),
+(1,5,1843,'Disarm'),
+(1,5,2050,'Lesser Heal'),
+(1,5,2382,'Generic'),
+(1,5,2479,'Honorless Target'),
+(1,5,3050,'Detect'),
+(1,5,3365,'Opening'),
+(1,5,5009,'Wands'),
+(1,5,5019,'Shoot'),
+(1,5,6233,'Closing'),
+(1,5,6246,'Closing'),
+(1,5,6247,'Opening'),
+(1,5,6477,'Opening'),
+(1,5,6478,'Opening'),
+(1,5,6603,'Attack'),
+(1,5,7266,'Duel'),
+(1,5,7267,'Grovel'),
+(1,5,7355,'Stuck'),
+(1,5,8386,'Attacking'),
+(1,5,9078,'Cloth'),
+(1,5,9125,'Generic'),
+(1,5,20597,'Sword Specialization'),
+(1,5,20598,'The Human Spirit'),
+(1,5,20599,'Diplomacy'),
+(1,5,20864,'Mace Specialization'),
+(1,5,21651,'Opening'),
+(1,5,21652,'Closing'),
+(1,5,22027,'Remove Insignia'),
+(1,5,22810,'Opening - No Text'),
+(1,5,45927,'Summon Friend'),
+(1,5,58985,'Perception'),
+(1,5,59752,'Every Man for Himself'),
+(1,5,61437,'Opening'),
+(1,6,81,'Dodge'),
+(1,6,196,'One-Handed Axes'),
+(1,6,197,'Two-Handed Axes'),
+(1,6,200,'Polearms'),
+(1,6,201,'One-Handed Swords'),
+(1,6,202,'Two-Handed Swords'),
+(1,6,203,'Unarmed'),
+(1,6,204,'Defense'),
+(1,6,522,'SPELLDEFENSE (DND)'),
+(1,6,668,'Language Common'),
+(1,6,674,'Dual Wield'),
+(1,6,750,'Plate Mail'),
+(1,6,1843,'Disarm'),
+(1,6,2382,'Generic'),
+(1,6,2479,'Honorless Target'),
+(1,6,3050,'Detect'),
+(1,6,3127,'Parry'),
+(1,6,3275,'Linen Bandage'),
+(1,6,3276,'Heavy Linen Bandage'),
+(1,6,3277,'Wool Bandage'),
+(1,6,3278,'Heavy Wool Bandage'),
+(1,6,3365,'Opening'),
+(1,6,6233,'Closing'),
+(1,6,6246,'Closing'),
+(1,6,6247,'Opening'),
+(1,6,6477,'Opening'),
+(1,6,6478,'Opening'),
+(1,6,6603,'Attack'),
+(1,6,7266,'Duel'),
+(1,6,7267,'Grovel'),
+(1,6,7355,'Stuck'),
+(1,6,7928,'Silk Bandage'),
+(1,6,7929,'Heavy Silk Bandage'),
+(1,6,7934,'Anti-Venom'),
+(1,6,8386,'Attacking'),
+(1,6,8737,'Mail'),
+(1,6,9077,'Leather'),
+(1,6,9078,'Cloth'),
+(1,6,9125,'Generic'),
+(1,6,10840,'Mageweave Bandage'),
+(1,6,10841,'Heavy Mageweave Bandage'),
+(1,6,10846,'First Aid'),
+(1,6,18629,'Runecloth Bandage'),
+(1,6,18630,'Heavy Runecloth Bandage'),
+(1,6,20597,'Sword Specialization'),
+(1,6,20598,'The Human Spirit'),
+(1,6,20599,'Diplomacy'),
+(1,6,20864,'Mace Specialization'),
+(1,6,21651,'Opening'),
+(1,6,21652,'Closing'),
+(1,6,22027,'Remove Insignia'),
+(1,6,22810,'Opening - No Text'),
+(1,6,33391,'Journeyman Riding'),
+(1,6,45462,'Plague Strike'),
+(1,6,45477,'Icy Touch'),
+(1,6,45902,'Blood Strike'),
+(1,6,45903,'Offensive State (DND)'),
+(1,6,45927,'Summon Friend'),
+(1,6,47541,'Death Coil'),
+(1,6,48266,'Blood Presence'),
+(1,6,49410,'Forceful Deflection'),
+(1,6,49576,'Death Grip'),
+(1,6,52665,'Sigil'),
+(1,6,58985,'Perception'),
+(1,6,59752,'Every Man for Himself'),
+(1,6,59879,'Blood Plague'),
+(1,6,59921,'Frost Fever'),
+(1,6,61437,'Opening'),
+(1,6,61455,'Runic Focus'),
+(1,8,81,'Dodge'),
+(1,8,133,'Fireball'),
+(1,8,168,'Frost Armor'),
+(1,8,203,'Unarmed'),
+(1,8,204,'Defense'),
+(1,8,227,'Staves'),
+(1,8,522,'SPELLDEFENSE (DND)'),
+(1,8,668,'Language Common'),
+(1,8,1843,'Disarm'),
+(1,8,2382,'Generic'),
+(1,8,2479,'Honorless Target'),
+(1,8,3050,'Detect'),
+(1,8,3365,'Opening'),
+(1,8,5009,'Wands'),
+(1,8,5019,'Shoot'),
+(1,8,6233,'Closing'),
+(1,8,6246,'Closing'),
+(1,8,6247,'Opening'),
+(1,8,6477,'Opening'),
+(1,8,6478,'Opening'),
+(1,8,6603,'Attack'),
+(1,8,7266,'Duel'),
+(1,8,7267,'Grovel'),
+(1,8,7355,'Stuck'),
+(1,8,8386,'Attacking'),
+(1,8,9078,'Cloth'),
+(1,8,9125,'Generic'),
+(1,8,20597,'Sword Specialization'),
+(1,8,20598,'The Human Spirit'),
+(1,8,20599,'Diplomacy'),
+(1,8,20864,'Mace Specialization'),
+(1,8,21651,'Opening'),
+(1,8,21652,'Closing'),
+(1,8,22027,'Remove Insignia'),
+(1,8,22810,'Opening - No Text'),
+(1,8,45927,'Summon Friend'),
+(1,8,58985,'Perception'),
+(1,8,59752,'Every Man for Himself'),
+(1,8,61437,'Opening'),
+(1,9,81,'Dodge'),
+(1,9,203,'Unarmed'),
+(1,9,204,'Defense'),
+(1,9,522,'SPELLDEFENSE (DND)'),
+(1,9,668,'Language Common'),
+(1,9,686,'Shadow Bolt'),
+(1,9,687,'Demon Skin'),
+(1,9,1180,'Daggers'),
+(1,9,1843,'Disarm'),
+(1,9,2382,'Generic'),
+(1,9,2479,'Honorless Target'),
+(1,9,3050,'Detect'),
+(1,9,3365,'Opening'),
+(1,9,5009,'Wands'),
+(1,9,5019,'Shoot'),
+(1,9,6233,'Closing'),
+(1,9,6246,'Closing'),
+(1,9,6247,'Opening'),
+(1,9,6477,'Opening'),
+(1,9,6478,'Opening'),
+(1,9,6603,'Attack'),
+(1,9,7266,'Duel'),
+(1,9,7267,'Grovel'),
+(1,9,7355,'Stuck'),
+(1,9,8386,'Attacking'),
+(1,9,9078,'Cloth'),
+(1,9,9125,'Generic'),
+(1,9,20597,'Sword Specialization'),
+(1,9,20598,'The Human Spirit'),
+(1,9,20599,'Diplomacy'),
+(1,9,20864,'Mace Specialization'),
+(1,9,21651,'Opening'),
+(1,9,21652,'Closing'),
+(1,9,22027,'Remove Insignia'),
+(1,9,22810,'Opening - No Text'),
+(1,9,45927,'Summon Friend'),
+(1,9,58284,'Chaos Bolt Passive'),
+(1,9,58985,'Perception'),
+(1,9,59752,'Every Man for Himself'),
+(1,9,61437,'Opening'),
+(2,1,78,'Heroic Strike'),
+(2,1,81,'Dodge'),
+(2,1,107,'Block'),
+(2,1,196,'One-Handed Axes'),
+(2,1,197,'Two-Handed Axes'),
+(2,1,201,'One-Handed Swords'),
+(2,1,203,'Unarmed'),
+(2,1,204,'Defense'),
+(2,1,522,'SPELLDEFENSE (DND)'),
+(2,1,669,'Language Orcish'),
+(2,1,1843,'Disarm'),
+(2,1,2382,'Generic'),
+(2,1,2457,'Battle Stance'),
+(2,1,2479,'Honorless Target'),
+(2,1,3050,'Detect'),
+(2,1,3365,'Opening'),
+(2,1,5301,'Defensive State (DND)'),
+(2,1,6233,'Closing'),
+(2,1,6246,'Closing'),
+(2,1,6247,'Opening'),
+(2,1,6477,'Opening'),
+(2,1,6478,'Opening'),
+(2,1,6603,'Attack'),
+(2,1,7266,'Duel'),
+(2,1,7267,'Grovel'),
+(2,1,7355,'Stuck'),
+(2,1,8386,'Attacking'),
+(2,1,8737,'Mail'),
+(2,1,9077,'Leather'),
+(2,1,9078,'Cloth'),
+(2,1,9116,'Shield'),
+(2,1,9125,'Generic'),
+(2,1,20572,'Blood Fury'),
+(2,1,20573,'Hardiness'),
+(2,1,20574,'Axe Specialization'),
+(2,1,21563,'Command'),
+(2,1,21651,'Opening'),
+(2,1,21652,'Closing'),
+(2,1,22027,'Remove Insignia'),
+(2,1,22810,'Opening - No Text'),
+(2,1,32215,'Victorious State'),
+(2,1,45927,'Summon Friend'),
+(2,1,61437,'Opening'),
+(2,3,75,'Auto Shot'),
+(2,3,81,'Dodge'),
+(2,3,196,'One-Handed Axes'),
+(2,3,203,'Unarmed'),
+(2,3,204,'Defense'),
+(2,3,264,'Bows'),
+(2,3,522,'SPELLDEFENSE (DND)'),
+(2,3,669,'Language Orcish'),
+(2,3,1843,'Disarm'),
+(2,3,2382,'Generic'),
+(2,3,2479,'Honorless Target'),
+(2,3,2973,'Raptor Strike'),
+(2,3,3050,'Detect'),
+(2,3,3365,'Opening'),
+(2,3,6233,'Closing'),
+(2,3,6246,'Closing'),
+(2,3,6247,'Opening'),
+(2,3,6477,'Opening'),
+(2,3,6478,'Opening'),
+(2,3,6603,'Attack'),
+(2,3,7266,'Duel'),
+(2,3,7267,'Grovel'),
+(2,3,7355,'Stuck'),
+(2,3,8386,'Attacking'),
+(2,3,9077,'Leather'),
+(2,3,9078,'Cloth'),
+(2,3,9125,'Generic'),
+(2,3,13358,'Defensive State (DND)'),
+(2,3,20572,'Blood Fury'),
+(2,3,20573,'Hardiness'),
+(2,3,20574,'Axe Specialization'),
+(2,3,20576,'Command'),
+(2,3,21651,'Opening'),
+(2,3,21652,'Closing'),
+(2,3,22027,'Remove Insignia'),
+(2,3,22810,'Opening - No Text'),
+(2,3,24949,'Defensive State 2 (DND)'),
+(2,3,34082,'Advantaged State (DND)'),
+(2,3,45927,'Summon Friend'),
+(2,3,61437,'Opening'),
+(2,4,81,'Dodge'),
+(2,4,203,'Unarmed'),
+(2,4,204,'Defense'),
+(2,4,522,'SPELLDEFENSE (DND)'),
+(2,4,669,'Language Orcish'),
+(2,4,1180,'Daggers'),
+(2,4,1752,'Sinister Strike'),
+(2,4,1843,'Disarm'),
+(2,4,2098,'Eviscerate'),
+(2,4,2382,'Generic'),
+(2,4,2479,'Honorless Target'),
+(2,4,2567,'Thrown'),
+(2,4,2764,'Throw'),
+(2,4,3050,'Detect'),
+(2,4,3365,'Opening'),
+(2,4,6233,'Closing'),
+(2,4,6246,'Closing'),
+(2,4,6247,'Opening'),
+(2,4,6477,'Opening'),
+(2,4,6478,'Opening'),
+(2,4,6603,'Attack'),
+(2,4,7266,'Duel'),
+(2,4,7267,'Grovel'),
+(2,4,7355,'Stuck'),
+(2,4,8386,'Attacking'),
+(2,4,9077,'Leather'),
+(2,4,9078,'Cloth'),
+(2,4,9125,'Generic'),
+(2,4,16092,'Defensive State (DND)'),
+(2,4,20572,'Blood Fury'),
+(2,4,20573,'Hardiness'),
+(2,4,20574,'Axe Specialization'),
+(2,4,21184,'Rogue Passive (DND)'),
+(2,4,21563,'Command'),
+(2,4,21651,'Opening'),
+(2,4,21652,'Closing'),
+(2,4,22027,'Remove Insignia'),
+(2,4,22810,'Opening - No Text'),
+(2,4,45927,'Summon Friend'),
+(2,4,61437,'Opening'),
+(2,6,81,'Dodge'),
+(2,6,196,'One-Handed Axes'),
+(2,6,197,'Two-Handed Axes'),
+(2,6,200,'Polearms'),
+(2,6,201,'One-Handed Swords'),
+(2,6,202,'Two-Handed Swords'),
+(2,6,203,'Unarmed'),
+(2,6,204,'Defense'),
+(2,6,522,'SPELLDEFENSE (DND)'),
+(2,6,669,'Language Orcish'),
+(2,6,674,'Dual Wield'),
+(2,6,750,'Plate Mail'),
+(2,6,1843,'Disarm'),
+(2,6,2382,'Generic'),
+(2,6,2479,'Honorless Target'),
+(2,6,3050,'Detect'),
+(2,6,3127,'Parry'),
+(2,6,3275,'Linen Bandage'),
+(2,6,3276,'Heavy Linen Bandage'),
+(2,6,3277,'Wool Bandage'),
+(2,6,3278,'Heavy Wool Bandage'),
+(2,6,3365,'Opening'),
+(2,6,6233,'Closing'),
+(2,6,6246,'Closing'),
+(2,6,6247,'Opening'),
+(2,6,6477,'Opening'),
+(2,6,6478,'Opening'),
+(2,6,6603,'Attack'),
+(2,6,7266,'Duel'),
+(2,6,7267,'Grovel'),
+(2,6,7355,'Stuck'),
+(2,6,7928,'Silk Bandage'),
+(2,6,7929,'Heavy Silk Bandage'),
+(2,6,7934,'Anti-Venom'),
+(2,6,8386,'Attacking'),
+(2,6,8737,'Mail'),
+(2,6,9077,'Leather'),
+(2,6,9078,'Cloth'),
+(2,6,9125,'Generic'),
+(2,6,10840,'Mageweave Bandage'),
+(2,6,10841,'Heavy Mageweave Bandage'),
+(2,6,10846,'First Aid'),
+(2,6,18629,'Runecloth Bandage'),
+(2,6,18630,'Heavy Runecloth Bandage'),
+(2,6,20572,'Blood Fury'),
+(2,6,20573,'Hardiness'),
+(2,6,20574,'Axe Specialization'),
+(2,6,21651,'Opening'),
+(2,6,21652,'Closing'),
+(2,6,22027,'Remove Insignia'),
+(2,6,22810,'Opening - No Text'),
+(2,6,33391,'Journeyman Riding'),
+(2,6,45462,'Plague Strike'),
+(2,6,45477,'Icy Touch'),
+(2,6,45902,'Blood Strike'),
+(2,6,45903,'Offensive State (DND)'),
+(2,6,45927,'Summon Friend'),
+(2,6,47541,'Death Coil'),
+(2,6,48266,'Blood Presence'),
+(2,6,49410,'Forceful Deflection'),
+(2,6,49576,'Death Grip'),
+(2,6,52665,'Sigil'),
+(2,6,54562,'Command'),
+(2,6,59879,'Blood Plague'),
+(2,6,59921,'Frost Fever'),
+(2,6,61437,'Opening'),
+(2,6,61455,'Runic Focus'),
+(2,7,81,'Dodge'),
+(2,7,107,'Block'),
+(2,7,198,'One-Handed Maces'),
+(2,7,203,'Unarmed'),
+(2,7,204,'Defense'),
+(2,7,227,'Staves'),
+(2,7,331,'Healing Wave'),
+(2,7,403,'Lightning Bolt'),
+(2,7,522,'SPELLDEFENSE (DND)'),
+(2,7,669,'Language Orcish'),
+(2,7,1843,'Disarm'),
+(2,7,2382,'Generic'),
+(2,7,2479,'Honorless Target'),
+(2,7,3050,'Detect'),
+(2,7,3365,'Opening'),
+(2,7,6233,'Closing'),
+(2,7,6246,'Closing'),
+(2,7,6247,'Opening'),
+(2,7,6477,'Opening'),
+(2,7,6478,'Opening'),
+(2,7,6603,'Attack'),
+(2,7,7266,'Duel'),
+(2,7,7267,'Grovel'),
+(2,7,7355,'Stuck'),
+(2,7,8386,'Attacking'),
+(2,7,9077,'Leather'),
+(2,7,9078,'Cloth'),
+(2,7,9116,'Shield'),
+(2,7,9125,'Generic'),
+(2,7,20573,'Hardiness'),
+(2,7,20574,'Axe Specialization'),
+(2,7,21563,'Command'),
+(2,7,21651,'Opening'),
+(2,7,21652,'Closing'),
+(2,7,22027,'Remove Insignia'),
+(2,7,22810,'Opening - No Text'),
+(2,7,27763,'Totem'),
+(2,7,33697,'Blood Fury'),
+(2,7,45927,'Summon Friend'),
+(2,7,61437,'Opening'),
+(2,9,81,'Dodge'),
+(2,9,203,'Unarmed'),
+(2,9,204,'Defense'),
+(2,9,522,'SPELLDEFENSE (DND)'),
+(2,9,669,'Language Orcish'),
+(2,9,686,'Shadow Bolt'),
+(2,9,687,'Demon Skin'),
+(2,9,1180,'Daggers'),
+(2,9,1843,'Disarm'),
+(2,9,2382,'Generic'),
+(2,9,2479,'Honorless Target'),
+(2,9,3050,'Detect'),
+(2,9,3365,'Opening'),
+(2,9,5009,'Wands'),
+(2,9,5019,'Shoot'),
+(2,9,6233,'Closing'),
+(2,9,6246,'Closing'),
+(2,9,6247,'Opening'),
+(2,9,6477,'Opening'),
+(2,9,6478,'Opening'),
+(2,9,6603,'Attack'),
+(2,9,7266,'Duel'),
+(2,9,7267,'Grovel'),
+(2,9,7355,'Stuck'),
+(2,9,8386,'Attacking'),
+(2,9,9078,'Cloth'),
+(2,9,9125,'Generic'),
+(2,9,20573,'Hardiness'),
+(2,9,20574,'Axe Specialization'),
+(2,9,20575,'Command'),
+(2,9,21651,'Opening'),
+(2,9,21652,'Closing'),
+(2,9,22027,'Remove Insignia'),
+(2,9,22810,'Opening - No Text'),
+(2,9,33702,'Blood Fury'),
+(2,9,45927,'Summon Friend'),
+(2,9,58284,'Chaos Bolt Passive'),
+(2,9,61437,'Opening'),
+(3,1,78,'Heroic Strike'),
+(3,1,81,'Dodge'),
+(3,1,107,'Block'),
+(3,1,196,'One-Handed Axes'),
+(3,1,197,'Two-Handed Axes'),
+(3,1,198,'One-Handed Maces'),
+(3,1,203,'Unarmed'),
+(3,1,204,'Defense'),
+(3,1,522,'SPELLDEFENSE (DND)'),
+(3,1,668,'Language Common'),
+(3,1,672,'Language Dwarven'),
+(3,1,1843,'Disarm'),
+(3,1,2382,'Generic'),
+(3,1,2457,'Battle Stance'),
+(3,1,2479,'Honorless Target'),
+(3,1,2481,'Find Treasure'),
+(3,1,3050,'Detect'),
+(3,1,3365,'Opening'),
+(3,1,5301,'Defensive State (DND)'),
+(3,1,6233,'Closing'),
+(3,1,6246,'Closing'),
+(3,1,6247,'Opening'),
+(3,1,6477,'Opening'),
+(3,1,6478,'Opening'),
+(3,1,6603,'Attack'),
+(3,1,7266,'Duel'),
+(3,1,7267,'Grovel'),
+(3,1,7355,'Stuck'),
+(3,1,8386,'Attacking'),
+(3,1,8737,'Mail'),
+(3,1,9077,'Leather'),
+(3,1,9078,'Cloth'),
+(3,1,9116,'Shield'),
+(3,1,9125,'Generic'),
+(3,1,20594,'Stoneform'),
+(3,1,20595,'Gun Specialization'),
+(3,1,20596,'Frost Resistance'),
+(3,1,21651,'Opening'),
+(3,1,21652,'Closing'),
+(3,1,22027,'Remove Insignia'),
+(3,1,22810,'Opening - No Text'),
+(3,1,32215,'Victorious State'),
+(3,1,45927,'Summon Friend'),
+(3,1,59224,'Mace Specialization'),
+(3,1,61437,'Opening'),
+(3,2,81,'Dodge'),
+(3,2,107,'Block'),
+(3,2,198,'One-Handed Maces'),
+(3,2,199,'Two-Handed Maces'),
+(3,2,203,'Unarmed'),
+(3,2,204,'Defense'),
+(3,2,522,'SPELLDEFENSE (DND)'),
+(3,2,635,'Holy Light'),
+(3,2,668,'Language Common'),
+(3,2,672,'Language Dwarven'),
+(3,2,1843,'Disarm'),
+(3,2,2382,'Generic'),
+(3,2,2479,'Honorless Target'),
+(3,2,2481,'Find Treasure'),
+(3,2,3050,'Detect'),
+(3,2,3365,'Opening'),
+(3,2,6233,'Closing'),
+(3,2,6246,'Closing'),
+(3,2,6247,'Opening'),
+(3,2,6477,'Opening'),
+(3,2,6478,'Opening'),
+(3,2,6603,'Attack'),
+(3,2,7266,'Duel'),
+(3,2,7267,'Grovel'),
+(3,2,7355,'Stuck'),
+(3,2,8386,'Attacking'),
+(3,2,8737,'Mail'),
+(3,2,9077,'Leather'),
+(3,2,9078,'Cloth'),
+(3,2,9116,'Shield'),
+(3,2,9125,'Generic'),
+(3,2,20154,'Seal of Righteousness'),
+(3,2,20594,'Stoneform'),
+(3,2,20595,'Gun Specialization'),
+(3,2,20596,'Frost Resistance'),
+(3,2,21651,'Opening'),
+(3,2,21652,'Closing'),
+(3,2,22027,'Remove Insignia'),
+(3,2,22810,'Opening - No Text'),
+(3,2,27762,'Libram'),
+(3,2,45927,'Summon Friend'),
+(3,2,59224,'Mace Specialization'),
+(3,2,61437,'Opening'),
+(3,3,75,'Auto Shot'),
+(3,3,81,'Dodge'),
+(3,3,196,'One-Handed Axes'),
+(3,3,203,'Unarmed'),
+(3,3,204,'Defense'),
+(3,3,266,'Guns'),
+(3,3,522,'SPELLDEFENSE (DND)'),
+(3,3,668,'Language Common'),
+(3,3,672,'Language Dwarven'),
+(3,3,1843,'Disarm'),
+(3,3,2382,'Generic'),
+(3,3,2479,'Honorless Target'),
+(3,3,2481,'Find Treasure'),
+(3,3,2973,'Raptor Strike'),
+(3,3,3050,'Detect'),
+(3,3,3365,'Opening'),
+(3,3,6233,'Closing'),
+(3,3,6246,'Closing'),
+(3,3,6247,'Opening'),
+(3,3,6477,'Opening'),
+(3,3,6478,'Opening'),
+(3,3,6603,'Attack'),
+(3,3,7266,'Duel'),
+(3,3,7267,'Grovel'),
+(3,3,7355,'Stuck'),
+(3,3,8386,'Attacking'),
+(3,3,9077,'Leather'),
+(3,3,9078,'Cloth'),
+(3,3,9125,'Generic'),
+(3,3,13358,'Defensive State (DND)'),
+(3,3,20594,'Stoneform'),
+(3,3,20595,'Gun Specialization'),
+(3,3,20596,'Frost Resistance'),
+(3,3,21651,'Opening'),
+(3,3,21652,'Closing'),
+(3,3,22027,'Remove Insignia'),
+(3,3,22810,'Opening - No Text'),
+(3,3,24949,'Defensive State 2 (DND)'),
+(3,3,34082,'Advantaged State (DND)'),
+(3,3,45927,'Summon Friend'),
+(3,3,59224,'Mace Specialization'),
+(3,3,61437,'Opening'),
+(3,4,81,'Dodge'),
+(3,4,203,'Unarmed'),
+(3,4,204,'Defense'),
+(3,4,522,'SPELLDEFENSE (DND)'),
+(3,4,668,'Language Common'),
+(3,4,672,'Language Dwarven'),
+(3,4,1180,'Daggers'),
+(3,4,1752,'Sinister Strike'),
+(3,4,1843,'Disarm'),
+(3,4,2098,'Eviscerate'),
+(3,4,2382,'Generic'),
+(3,4,2479,'Honorless Target'),
+(3,4,2481,'Find Treasure'),
+(3,4,2567,'Thrown'),
+(3,4,2764,'Throw'),
+(3,4,3050,'Detect'),
+(3,4,3365,'Opening'),
+(3,4,6233,'Closing'),
+(3,4,6246,'Closing'),
+(3,4,6247,'Opening'),
+(3,4,6477,'Opening'),
+(3,4,6478,'Opening'),
+(3,4,6603,'Attack'),
+(3,4,7266,'Duel'),
+(3,4,7267,'Grovel'),
+(3,4,7355,'Stuck'),
+(3,4,8386,'Attacking'),
+(3,4,9077,'Leather'),
+(3,4,9078,'Cloth'),
+(3,4,9125,'Generic'),
+(3,4,16092,'Defensive State (DND)'),
+(3,4,20594,'Stoneform'),
+(3,4,20595,'Gun Specialization'),
+(3,4,20596,'Frost Resistance'),
+(3,4,21184,'Rogue Passive (DND)'),
+(3,4,21651,'Opening'),
+(3,4,21652,'Closing'),
+(3,4,22027,'Remove Insignia'),
+(3,4,22810,'Opening - No Text'),
+(3,4,45927,'Summon Friend'),
+(3,4,59224,'Mace Specialization'),
+(3,4,61437,'Opening'),
+(3,5,81,'Dodge'),
+(3,5,198,'One-Handed Maces'),
+(3,5,203,'Unarmed'),
+(3,5,204,'Defense'),
+(3,5,522,'SPELLDEFENSE (DND)'),
+(3,5,585,'Smite'),
+(3,5,668,'Language Common'),
+(3,5,672,'Language Dwarven'),
+(3,5,1843,'Disarm'),
+(3,5,2050,'Lesser Heal'),
+(3,5,2382,'Generic'),
+(3,5,2479,'Honorless Target'),
+(3,5,2481,'Find Treasure'),
+(3,5,3050,'Detect'),
+(3,5,3365,'Opening'),
+(3,5,5009,'Wands'),
+(3,5,5019,'Shoot'),
+(3,5,6233,'Closing'),
+(3,5,6246,'Closing'),
+(3,5,6247,'Opening'),
+(3,5,6477,'Opening'),
+(3,5,6478,'Opening'),
+(3,5,6603,'Attack'),
+(3,5,7266,'Duel'),
+(3,5,7267,'Grovel'),
+(3,5,7355,'Stuck'),
+(3,5,8386,'Attacking'),
+(3,5,9078,'Cloth'),
+(3,5,9125,'Generic'),
+(3,5,20594,'Stoneform'),
+(3,5,20595,'Gun Specialization'),
+(3,5,20596,'Frost Resistance'),
+(3,5,21651,'Opening'),
+(3,5,21652,'Closing'),
+(3,5,22027,'Remove Insignia'),
+(3,5,22810,'Opening - No Text'),
+(3,5,45927,'Summon Friend'),
+(3,5,59224,'Mace Specialization'),
+(3,5,61437,'Opening'),
+(3,6,81,'Dodge'),
+(3,6,196,'One-Handed Axes'),
+(3,6,197,'Two-Handed Axes'),
+(3,6,200,'Polearms'),
+(3,6,201,'One-Handed Swords'),
+(3,6,202,'Two-Handed Swords'),
+(3,6,203,'Unarmed'),
+(3,6,204,'Defense'),
+(3,6,522,'SPELLDEFENSE (DND)'),
+(3,6,668,'Language Common'),
+(3,6,672,'Language Dwarven'),
+(3,6,674,'Dual Wield'),
+(3,6,750,'Plate Mail'),
+(3,6,1843,'Disarm'),
+(3,6,2382,'Generic'),
+(3,6,2479,'Honorless Target'),
+(3,6,2481,'Find Treasure'),
+(3,6,3050,'Detect'),
+(3,6,3127,'Parry'),
+(3,6,3275,'Linen Bandage'),
+(3,6,3276,'Heavy Linen Bandage'),
+(3,6,3277,'Wool Bandage'),
+(3,6,3278,'Heavy Wool Bandage'),
+(3,6,3365,'Opening'),
+(3,6,6233,'Closing'),
+(3,6,6246,'Closing'),
+(3,6,6247,'Opening'),
+(3,6,6477,'Opening'),
+(3,6,6478,'Opening'),
+(3,6,6603,'Attack'),
+(3,6,7266,'Duel'),
+(3,6,7267,'Grovel'),
+(3,6,7355,'Stuck'),
+(3,6,7928,'Silk Bandage'),
+(3,6,7929,'Heavy Silk Bandage'),
+(3,6,7934,'Anti-Venom'),
+(3,6,8386,'Attacking'),
+(3,6,8737,'Mail'),
+(3,6,9077,'Leather'),
+(3,6,9078,'Cloth'),
+(3,6,9125,'Generic'),
+(3,6,10840,'Mageweave Bandage'),
+(3,6,10841,'Heavy Mageweave Bandage'),
+(3,6,10846,'First Aid'),
+(3,6,18629,'Runecloth Bandage'),
+(3,6,18630,'Heavy Runecloth Bandage'),
+(3,6,20594,'Stoneform'),
+(3,6,20595,'Gun Specialization'),
+(3,6,20596,'Frost Resistance'),
+(3,6,21651,'Opening'),
+(3,6,21652,'Closing'),
+(3,6,22027,'Remove Insignia'),
+(3,6,22810,'Opening - No Text'),
+(3,6,33391,'Journeyman Riding'),
+(3,6,45462,'Plague Strike'),
+(3,6,45477,'Icy Touch'),
+(3,6,45902,'Blood Strike'),
+(3,6,45903,'Offensive State (DND)'),
+(3,6,45927,'Summon Friend'),
+(3,6,47541,'Death Coil'),
+(3,6,48266,'Blood Presence'),
+(3,6,49410,'Forceful Deflection'),
+(3,6,49576,'Death Grip'),
+(3,6,52665,'Sigil'),
+(3,6,59224,'Mace Specialization'),
+(3,6,59879,'Blood Plague'),
+(3,6,59921,'Frost Fever'),
+(3,6,61437,'Opening'),
+(3,6,61455,'Runic Focus'),
+(4,1,78,'Heroic Strike'),
+(4,1,81,'Dodge'),
+(4,1,107,'Block'),
+(4,1,198,'One-Handed Maces'),
+(4,1,201,'One-Handed Swords'),
+(4,1,203,'Unarmed'),
+(4,1,204,'Defense'),
+(4,1,522,'SPELLDEFENSE (DND)'),
+(4,1,668,'Language Common'),
+(4,1,671,'Language Darnassian'),
+(4,1,1180,'Daggers'),
+(4,1,1843,'Disarm'),
+(4,1,2382,'Generic'),
+(4,1,2457,'Battle Stance'),
+(4,1,2479,'Honorless Target'),
+(4,1,3050,'Detect'),
+(4,1,3365,'Opening'),
+(4,1,5301,'Defensive State (DND)'),
+(4,1,6233,'Closing'),
+(4,1,6246,'Closing'),
+(4,1,6247,'Opening'),
+(4,1,6477,'Opening'),
+(4,1,6478,'Opening'),
+(4,1,6603,'Attack'),
+(4,1,7266,'Duel'),
+(4,1,7267,'Grovel'),
+(4,1,7355,'Stuck'),
+(4,1,8386,'Attacking'),
+(4,1,8737,'Mail'),
+(4,1,9077,'Leather'),
+(4,1,9078,'Cloth'),
+(4,1,9116,'Shield'),
+(4,1,9125,'Generic'),
+(4,1,20582,'Quickness'),
+(4,1,20583,'Nature Resistance'),
+(4,1,20585,'Wisp Spirit'),
+(4,1,21651,'Opening'),
+(4,1,21652,'Closing'),
+(4,1,22027,'Remove Insignia'),
+(4,1,22810,'Opening - No Text'),
+(4,1,32215,'Victorious State'),
+(4,1,45927,'Summon Friend'),
+(4,1,58984,'Shadowmelt'),
+(4,1,61437,'Opening'),
+(4,3,75,'Auto Shot'),
+(4,3,81,'Dodge'),
+(4,3,203,'Unarmed'),
+(4,3,204,'Defense'),
+(4,3,264,'Bows'),
+(4,3,522,'SPELLDEFENSE (DND)'),
+(4,3,668,'Language Common'),
+(4,3,671,'Language Darnassian'),
+(4,3,1180,'Daggers'),
+(4,3,1843,'Disarm'),
+(4,3,2382,'Generic'),
+(4,3,2479,'Honorless Target'),
+(4,3,2973,'Raptor Strike'),
+(4,3,3050,'Detect'),
+(4,3,3365,'Opening'),
+(4,3,6233,'Closing'),
+(4,3,6246,'Closing'),
+(4,3,6247,'Opening'),
+(4,3,6477,'Opening'),
+(4,3,6478,'Opening'),
+(4,3,6603,'Attack'),
+(4,3,7266,'Duel'),
+(4,3,7267,'Grovel'),
+(4,3,7355,'Stuck'),
+(4,3,8386,'Attacking'),
+(4,3,9077,'Leather'),
+(4,3,9078,'Cloth'),
+(4,3,9125,'Generic'),
+(4,3,13358,'Defensive State (DND)'),
+(4,3,20582,'Quickness'),
+(4,3,20583,'Nature Resistance'),
+(4,3,20585,'Wisp Spirit'),
+(4,3,21651,'Opening'),
+(4,3,21652,'Closing'),
+(4,3,22027,'Remove Insignia'),
+(4,3,22810,'Opening - No Text'),
+(4,3,24949,'Defensive State 2 (DND)'),
+(4,3,34082,'Advantaged State (DND)'),
+(4,3,45927,'Summon Friend'),
+(4,3,58984,'Shadowmelt'),
+(4,3,61437,'Opening'),
+(4,4,81,'Dodge'),
+(4,4,203,'Unarmed'),
+(4,4,204,'Defense'),
+(4,4,522,'SPELLDEFENSE (DND)'),
+(4,4,668,'Language Common'),
+(4,4,671,'Language Darnassian'),
+(4,4,1180,'Daggers'),
+(4,4,1752,'Sinister Strike'),
+(4,4,1843,'Disarm'),
+(4,4,2098,'Eviscerate'),
+(4,4,2382,'Generic'),
+(4,4,2479,'Honorless Target'),
+(4,4,2567,'Thrown'),
+(4,4,2764,'Throw'),
+(4,4,3050,'Detect'),
+(4,4,3365,'Opening'),
+(4,4,6233,'Closing'),
+(4,4,6246,'Closing'),
+(4,4,6247,'Opening'),
+(4,4,6477,'Opening'),
+(4,4,6478,'Opening'),
+(4,4,6603,'Attack'),
+(4,4,7266,'Duel'),
+(4,4,7267,'Grovel'),
+(4,4,7355,'Stuck'),
+(4,4,8386,'Attacking'),
+(4,4,9077,'Leather'),
+(4,4,9078,'Cloth'),
+(4,4,9125,'Generic'),
+(4,4,16092,'Defensive State (DND)'),
+(4,4,20582,'Quickness'),
+(4,4,20583,'Nature Resistance'),
+(4,4,20585,'Wisp Spirit'),
+(4,4,21184,'Rogue Passive (DND)'),
+(4,4,21651,'Opening'),
+(4,4,21652,'Closing'),
+(4,4,22027,'Remove Insignia'),
+(4,4,22810,'Opening - No Text'),
+(4,4,45927,'Summon Friend'),
+(4,4,58984,'Shadowmelt'),
+(4,4,61437,'Opening'),
+(4,5,81,'Dodge'),
+(4,5,198,'One-Handed Maces'),
+(4,5,203,'Unarmed'),
+(4,5,204,'Defense'),
+(4,5,522,'SPELLDEFENSE (DND)'),
+(4,5,585,'Smite'),
+(4,5,668,'Language Common'),
+(4,5,671,'Language Darnassian'),
+(4,5,1843,'Disarm'),
+(4,5,2050,'Lesser Heal'),
+(4,5,2382,'Generic'),
+(4,5,2479,'Honorless Target'),
+(4,5,3050,'Detect'),
+(4,5,3365,'Opening'),
+(4,5,5009,'Wands'),
+(4,5,5019,'Shoot'),
+(4,5,6233,'Closing'),
+(4,5,6246,'Closing'),
+(4,5,6247,'Opening'),
+(4,5,6477,'Opening'),
+(4,5,6478,'Opening'),
+(4,5,6603,'Attack'),
+(4,5,7266,'Duel'),
+(4,5,7267,'Grovel'),
+(4,5,7355,'Stuck'),
+(4,5,8386,'Attacking'),
+(4,5,9078,'Cloth'),
+(4,5,9125,'Generic'),
+(4,5,20582,'Quickness'),
+(4,5,20583,'Nature Resistance'),
+(4,5,20585,'Wisp Spirit'),
+(4,5,21651,'Opening'),
+(4,5,21652,'Closing'),
+(4,5,22027,'Remove Insignia'),
+(4,5,22810,'Opening - No Text'),
+(4,5,45927,'Summon Friend'),
+(4,5,58984,'Shadowmelt'),
+(4,5,61437,'Opening'),
+(4,6,81,'Dodge'),
+(4,6,196,'One-Handed Axes'),
+(4,6,197,'Two-Handed Axes'),
+(4,6,200,'Polearms'),
+(4,6,201,'One-Handed Swords'),
+(4,6,202,'Two-Handed Swords'),
+(4,6,203,'Unarmed'),
+(4,6,204,'Defense'),
+(4,6,522,'SPELLDEFENSE (DND)'),
+(4,6,668,'Language Common'),
+(4,6,671,'Language Darnassian'),
+(4,6,674,'Dual Wield'),
+(4,6,750,'Plate Mail'),
+(4,6,1843,'Disarm'),
+(4,6,2382,'Generic'),
+(4,6,2479,'Honorless Target'),
+(4,6,3050,'Detect'),
+(4,6,3127,'Parry'),
+(4,6,3275,'Linen Bandage'),
+(4,6,3276,'Heavy Linen Bandage'),
+(4,6,3277,'Wool Bandage'),
+(4,6,3278,'Heavy Wool Bandage'),
+(4,6,3365,'Opening'),
+(4,6,6233,'Closing'),
+(4,6,6246,'Closing'),
+(4,6,6247,'Opening'),
+(4,6,6477,'Opening'),
+(4,6,6478,'Opening'),
+(4,6,6603,'Attack'),
+(4,6,7266,'Duel'),
+(4,6,7267,'Grovel'),
+(4,6,7355,'Stuck'),
+(4,6,7928,'Silk Bandage'),
+(4,6,7929,'Heavy Silk Bandage'),
+(4,6,7934,'Anti-Venom'),
+(4,6,8386,'Attacking'),
+(4,6,8737,'Mail'),
+(4,6,9077,'Leather'),
+(4,6,9078,'Cloth'),
+(4,6,9125,'Generic'),
+(4,6,10840,'Mageweave Bandage'),
+(4,6,10841,'Heavy Mageweave Bandage'),
+(4,6,10846,'First Aid'),
+(4,6,18629,'Runecloth Bandage'),
+(4,6,18630,'Heavy Runecloth Bandage'),
+(4,6,20582,'Quickness'),
+(4,6,20583,'Nature Resistance'),
+(4,6,20585,'Wisp Spirit'),
+(4,6,21651,'Opening'),
+(4,6,21652,'Closing'),
+(4,6,22027,'Remove Insignia'),
+(4,6,22810,'Opening - No Text'),
+(4,6,33391,'Journeyman Riding'),
+(4,6,45462,'Plague Strike'),
+(4,6,45477,'Icy Touch'),
+(4,6,45902,'Blood Strike'),
+(4,6,45903,'Offensive State (DND)'),
+(4,6,45927,'Summon Friend'),
+(4,6,47541,'Death Coil'),
+(4,6,48266,'Blood Presence'),
+(4,6,49410,'Forceful Deflection'),
+(4,6,49576,'Death Grip'),
+(4,6,52665,'Sigil'),
+(4,6,58984,'Shadowmeld'),
+(4,6,59879,'Blood Plague'),
+(4,6,59921,'Frost Fever'),
+(4,6,61437,'Opening'),
+(4,6,61455,'Runic Focus'),
+(4,11,81,'Dodge'),
+(4,11,203,'Unarmed'),
+(4,11,204,'Defense'),
+(4,11,227,'Staves'),
+(4,11,522,'SPELLDEFENSE (DND)'),
+(4,11,668,'Language Common'),
+(4,11,671,'Language Darnassian'),
+(4,11,1180,'Daggers'),
+(4,11,1843,'Disarm'),
+(4,11,2382,'Generic'),
+(4,11,2479,'Honorless Target'),
+(4,11,3050,'Detect'),
+(4,11,3365,'Opening'),
+(4,11,5176,'Wrath'),
+(4,11,5185,'Healing Touch'),
+(4,11,6233,'Closing'),
+(4,11,6246,'Closing'),
+(4,11,6247,'Opening'),
+(4,11,6477,'Opening'),
+(4,11,6478,'Opening'),
+(4,11,6603,'Attack'),
+(4,11,7266,'Duel'),
+(4,11,7267,'Grovel'),
+(4,11,7355,'Stuck'),
+(4,11,8386,'Attacking'),
+(4,11,9077,'Leather'),
+(4,11,9078,'Cloth'),
+(4,11,9125,'Generic'),
+(4,11,20582,'Quickness'),
+(4,11,20583,'Nature Resistance'),
+(4,11,20585,'Wisp Spirit'),
+(4,11,21651,'Opening'),
+(4,11,21652,'Closing'),
+(4,11,22027,'Remove Insignia'),
+(4,11,22810,'Opening - No Text'),
+(4,11,27764,'Fetish'),
+(4,11,45927,'Summon Friend'),
+(4,11,58984,'Shadowmelt'),
+(4,11,61437,'Opening'),
+(5,1,78,'Heroic Strike'),
+(5,1,81,'Dodge'),
+(5,1,107,'Block'),
+(5,1,201,'One-Handed Swords'),
+(5,1,202,'Two-Handed Swords'),
+(5,1,203,'Unarmed'),
+(5,1,204,'Defense'),
+(5,1,522,'SPELLDEFENSE (DND)'),
+(5,1,669,'Language Orcish'),
+(5,1,1180,'Daggers'),
+(5,1,1843,'Disarm'),
+(5,1,2382,'Generic'),
+(5,1,2457,'Battle Stance'),
+(5,1,2479,'Honorless Target'),
+(5,1,3050,'Detect'),
+(5,1,3365,'Opening'),
+(5,1,5227,'Underwater Breathing'),
+(5,1,5301,'Defensive State (DND)'),
+(5,1,6233,'Closing'),
+(5,1,6246,'Closing'),
+(5,1,6247,'Opening'),
+(5,1,6477,'Opening'),
+(5,1,6478,'Opening'),
+(5,1,6603,'Attack'),
+(5,1,7266,'Duel'),
+(5,1,7267,'Grovel'),
+(5,1,7355,'Stuck'),
+(5,1,7744,'Will of the Forsaken'),
+(5,1,8386,'Attacking'),
+(5,1,8737,'Mail'),
+(5,1,9077,'Leather'),
+(5,1,9078,'Cloth'),
+(5,1,9116,'Shield'),
+(5,1,9125,'Generic'),
+(5,1,17737,'Language Gutterspeak'),
+(5,1,20577,'Cannibalize'),
+(5,1,20579,'Shadow Resistance'),
+(5,1,21651,'Opening'),
+(5,1,21652,'Closing'),
+(5,1,22027,'Remove Insignia'),
+(5,1,22810,'Opening - No Text'),
+(5,1,32215,'Victorious State'),
+(5,1,45927,'Summon Friend'),
+(5,1,61437,'Opening'),
+(5,4,81,'Dodge'),
+(5,4,203,'Unarmed'),
+(5,4,204,'Defense'),
+(5,4,522,'SPELLDEFENSE (DND)'),
+(5,4,669,'Language Orcish'),
+(5,4,1180,'Daggers'),
+(5,4,1752,'Sinister Strike'),
+(5,4,1843,'Disarm'),
+(5,4,2098,'Eviscerate'),
+(5,4,2382,'Generic'),
+(5,4,2479,'Honorless Target'),
+(5,4,2567,'Thrown'),
+(5,4,2764,'Throw'),
+(5,4,3050,'Detect'),
+(5,4,3365,'Opening'),
+(5,4,5227,'Underwater Breathing'),
+(5,4,6233,'Closing'),
+(5,4,6246,'Closing'),
+(5,4,6247,'Opening'),
+(5,4,6477,'Opening'),
+(5,4,6478,'Opening'),
+(5,4,6603,'Attack'),
+(5,4,7266,'Duel'),
+(5,4,7267,'Grovel'),
+(5,4,7355,'Stuck'),
+(5,4,7744,'Will of the Forsaken'),
+(5,4,8386,'Attacking'),
+(5,4,9077,'Leather'),
+(5,4,9078,'Cloth'),
+(5,4,9125,'Generic'),
+(5,4,16092,'Defensive State (DND)'),
+(5,4,17737,'Language Gutterspeak'),
+(5,4,20577,'Cannibalize'),
+(5,4,20579,'Shadow Resistance'),
+(5,4,21184,'Rogue Passive (DND)'),
+(5,4,21651,'Opening'),
+(5,4,21652,'Closing'),
+(5,4,22027,'Remove Insignia'),
+(5,4,22810,'Opening - No Text'),
+(5,4,45927,'Summon Friend'),
+(5,4,61437,'Opening'),
+(5,5,81,'Dodge'),
+(5,5,198,'One-Handed Maces'),
+(5,5,203,'Unarmed'),
+(5,5,204,'Defense'),
+(5,5,522,'SPELLDEFENSE (DND)'),
+(5,5,585,'Smite'),
+(5,5,669,'Language Orcish'),
+(5,5,1843,'Disarm'),
+(5,5,2050,'Lesser Heal'),
+(5,5,2382,'Generic'),
+(5,5,2479,'Honorless Target'),
+(5,5,3050,'Detect'),
+(5,5,3365,'Opening'),
+(5,5,5009,'Wands'),
+(5,5,5019,'Shoot'),
+(5,5,5227,'Underwater Breathing'),
+(5,5,6233,'Closing'),
+(5,5,6246,'Closing'),
+(5,5,6247,'Opening'),
+(5,5,6477,'Opening'),
+(5,5,6478,'Opening'),
+(5,5,6603,'Attack'),
+(5,5,7266,'Duel'),
+(5,5,7267,'Grovel'),
+(5,5,7355,'Stuck'),
+(5,5,7744,'Will of the Forsaken'),
+(5,5,8386,'Attacking'),
+(5,5,9078,'Cloth'),
+(5,5,9125,'Generic'),
+(5,5,17737,'Language Gutterspeak'),
+(5,5,20577,'Cannibalize'),
+(5,5,20579,'Shadow Resistance'),
+(5,5,21651,'Opening'),
+(5,5,21652,'Closing'),
+(5,5,22027,'Remove Insignia'),
+(5,5,22810,'Opening - No Text'),
+(5,5,45927,'Summon Friend'),
+(5,5,61437,'Opening'),
+(5,6,81,'Dodge'),
+(5,6,196,'One-Handed Axes'),
+(5,6,197,'Two-Handed Axes'),
+(5,6,200,'Polearms'),
+(5,6,201,'One-Handed Swords'),
+(5,6,202,'Two-Handed Swords'),
+(5,6,203,'Unarmed'),
+(5,6,204,'Defense'),
+(5,6,522,'SPELLDEFENSE (DND)'),
+(5,6,669,'Language Orcish'),
+(5,6,674,'Dual Wield'),
+(5,6,750,'Plate Mail'),
+(5,6,1843,'Disarm'),
+(5,6,2382,'Generic'),
+(5,6,2479,'Honorless Target'),
+(5,6,3050,'Detect'),
+(5,6,3127,'Parry'),
+(5,6,3275,'Linen Bandage'),
+(5,6,3276,'Heavy Linen Bandage'),
+(5,6,3277,'Wool Bandage'),
+(5,6,3278,'Heavy Wool Bandage'),
+(5,6,3365,'Opening'),
+(5,6,5227,'Underwater Breathing'),
+(5,6,6233,'Closing'),
+(5,6,6246,'Closing'),
+(5,6,6247,'Opening'),
+(5,6,6477,'Opening'),
+(5,6,6478,'Opening'),
+(5,6,6603,'Attack'),
+(5,6,7266,'Duel'),
+(5,6,7267,'Grovel'),
+(5,6,7355,'Stuck'),
+(5,6,7744,'Will of the Forsaken'),
+(5,6,7928,'Silk Bandage'),
+(5,6,7929,'Heavy Silk Bandage'),
+(5,6,7934,'Anti-Venom'),
+(5,6,8386,'Attacking'),
+(5,6,8737,'Mail'),
+(5,6,9077,'Leather'),
+(5,6,9078,'Cloth'),
+(5,6,9125,'Generic'),
+(5,6,10840,'Mageweave Bandage'),
+(5,6,10841,'Heavy Mageweave Bandage'),
+(5,6,10846,'First Aid'),
+(5,6,17737,'Language Gutterspeak'),
+(5,6,18629,'Runecloth Bandage'),
+(5,6,18630,'Heavy Runecloth Bandage'),
+(5,6,20577,'Cannibalize'),
+(5,6,20579,'Shadow Resistance'),
+(5,6,21651,'Opening'),
+(5,6,21652,'Closing'),
+(5,6,22027,'Remove Insignia'),
+(5,6,22810,'Opening - No Text'),
+(5,6,33391,'Journeyman Riding'),
+(5,6,45462,'Plague Strike'),
+(5,6,45477,'Icy Touch'),
+(5,6,45902,'Blood Strike'),
+(5,6,45903,'Offensive State (DND)'),
+(5,6,45927,'Summon Friend'),
+(5,6,47541,'Death Coil'),
+(5,6,48266,'Blood Presence'),
+(5,6,49410,'Forceful Deflection'),
+(5,6,49576,'Death Grip'),
+(5,6,52665,'Sigil'),
+(5,6,59879,'Blood Plague'),
+(5,6,59921,'Frost Fever'),
+(5,6,61437,'Opening'),
+(5,6,61455,'Runic Focus'),
+(5,8,81,'Dodge'),
+(5,8,133,'Fireball'),
+(5,8,168,'Frost Armor'),
+(5,8,203,'Unarmed'),
+(5,8,204,'Defense'),
+(5,8,227,'Staves'),
+(5,8,522,'SPELLDEFENSE (DND)'),
+(5,8,669,'Language Orcish'),
+(5,8,1843,'Disarm'),
+(5,8,2382,'Generic'),
+(5,8,2479,'Honorless Target'),
+(5,8,3050,'Detect'),
+(5,8,3365,'Opening'),
+(5,8,5009,'Wands'),
+(5,8,5019,'Shoot'),
+(5,8,5227,'Underwater Breathing'),
+(5,8,6233,'Closing'),
+(5,8,6246,'Closing'),
+(5,8,6247,'Opening'),
+(5,8,6477,'Opening'),
+(5,8,6478,'Opening'),
+(5,8,6603,'Attack'),
+(5,8,7266,'Duel'),
+(5,8,7267,'Grovel'),
+(5,8,7355,'Stuck'),
+(5,8,7744,'Will of the Forsaken'),
+(5,8,8386,'Attacking'),
+(5,8,9078,'Cloth'),
+(5,8,9125,'Generic'),
+(5,8,17737,'Language Gutterspeak'),
+(5,8,20577,'Cannibalize'),
+(5,8,20579,'Shadow Resistance'),
+(5,8,21651,'Opening'),
+(5,8,21652,'Closing'),
+(5,8,22027,'Remove Insignia'),
+(5,8,22810,'Opening - No Text'),
+(5,8,45927,'Summon Friend'),
+(5,8,61437,'Opening'),
+(5,9,81,'Dodge'),
+(5,9,203,'Unarmed'),
+(5,9,204,'Defense'),
+(5,9,522,'SPELLDEFENSE (DND)'),
+(5,9,669,'Language Orcish'),
+(5,9,686,'Shadow Bolt'),
+(5,9,687,'Demon Skin'),
+(5,9,1180,'Daggers'),
+(5,9,1843,'Disarm'),
+(5,9,2382,'Generic'),
+(5,9,2479,'Honorless Target'),
+(5,9,3050,'Detect'),
+(5,9,3365,'Opening'),
+(5,9,5009,'Wands'),
+(5,9,5019,'Shoot'),
+(5,9,5227,'Underwater Breathing'),
+(5,9,6233,'Closing'),
+(5,9,6246,'Closing'),
+(5,9,6247,'Opening'),
+(5,9,6477,'Opening'),
+(5,9,6478,'Opening'),
+(5,9,6603,'Attack'),
+(5,9,7266,'Duel'),
+(5,9,7267,'Grovel'),
+(5,9,7355,'Stuck'),
+(5,9,7744,'Will of the Forsaken'),
+(5,9,8386,'Attacking'),
+(5,9,9078,'Cloth'),
+(5,9,9125,'Generic'),
+(5,9,17737,'Language Gutterspeak'),
+(5,9,20577,'Cannibalize'),
+(5,9,20579,'Shadow Resistance'),
+(5,9,21651,'Opening'),
+(5,9,21652,'Closing'),
+(5,9,22027,'Remove Insignia'),
+(5,9,22810,'Opening - No Text'),
+(5,9,45927,'Summon Friend'),
+(5,9,58284,'Chaos Bolt Passive'),
+(5,9,61437,'Opening'),
+(6,1,78,'Heroic Strike'),
+(6,1,81,'Dodge'),
+(6,1,107,'Block'),
+(6,1,196,'One-Handed Axes'),
+(6,1,198,'One-Handed Maces'),
+(6,1,199,'Two-Handed Maces'),
+(6,1,203,'Unarmed'),
+(6,1,204,'Defense'),
+(6,1,522,'SPELLDEFENSE (DND)'),
+(6,1,669,'Language Orcish'),
+(6,1,670,'Language Taurahe'),
+(6,1,1843,'Disarm'),
+(6,1,2382,'Generic'),
+(6,1,2457,'Battle Stance'),
+(6,1,2479,'Honorless Target'),
+(6,1,3050,'Detect'),
+(6,1,3365,'Opening'),
+(6,1,5301,'Defensive State (DND)'),
+(6,1,6233,'Closing'),
+(6,1,6246,'Closing'),
+(6,1,6247,'Opening'),
+(6,1,6477,'Opening'),
+(6,1,6478,'Opening'),
+(6,1,6603,'Attack'),
+(6,1,7266,'Duel'),
+(6,1,7267,'Grovel'),
+(6,1,7355,'Stuck'),
+(6,1,8386,'Attacking'),
+(6,1,8737,'Mail'),
+(6,1,9077,'Leather'),
+(6,1,9078,'Cloth'),
+(6,1,9116,'Shield'),
+(6,1,9125,'Generic'),
+(6,1,20549,'War Stomp'),
+(6,1,20550,'Endurance'),
+(6,1,20551,'Nature Resistance'),
+(6,1,20552,'Cultivation'),
+(6,1,21651,'Opening'),
+(6,1,21652,'Closing'),
+(6,1,22027,'Remove Insignia'),
+(6,1,22810,'Opening - No Text'),
+(6,1,32215,'Victorious State'),
+(6,1,45927,'Summon Friend'),
+(6,1,61437,'Opening'),
+(6,3,75,'Auto Shot'),
+(6,3,81,'Dodge'),
+(6,3,196,'One-Handed Axes'),
+(6,3,203,'Unarmed'),
+(6,3,204,'Defense'),
+(6,3,266,'Guns'),
+(6,3,522,'SPELLDEFENSE (DND)'),
+(6,3,669,'Language Orcish'),
+(6,3,670,'Language Taurahe'),
+(6,3,1843,'Disarm'),
+(6,3,2382,'Generic'),
+(6,3,2479,'Honorless Target'),
+(6,3,2973,'Raptor Strike'),
+(6,3,3050,'Detect'),
+(6,3,3365,'Opening'),
+(6,3,6233,'Closing'),
+(6,3,6246,'Closing'),
+(6,3,6247,'Opening'),
+(6,3,6477,'Opening'),
+(6,3,6478,'Opening'),
+(6,3,6603,'Attack'),
+(6,3,7266,'Duel'),
+(6,3,7267,'Grovel'),
+(6,3,7355,'Stuck'),
+(6,3,8386,'Attacking'),
+(6,3,9077,'Leather'),
+(6,3,9078,'Cloth'),
+(6,3,9125,'Generic'),
+(6,3,13358,'Defensive State (DND)'),
+(6,3,20549,'War Stomp'),
+(6,3,20550,'Endurance'),
+(6,3,20551,'Nature Resistance'),
+(6,3,20552,'Cultivation'),
+(6,3,21651,'Opening'),
+(6,3,21652,'Closing'),
+(6,3,22027,'Remove Insignia'),
+(6,3,22810,'Opening - No Text'),
+(6,3,24949,'Defensive State 2 (DND)'),
+(6,3,34082,'Advantaged State (DND)'),
+(6,3,45927,'Summon Friend'),
+(6,3,61437,'Opening'),
+(6,6,81,'Dodge'),
+(6,6,196,'One-Handed Axes'),
+(6,6,197,'Two-Handed Axes'),
+(6,6,200,'Polearms'),
+(6,6,201,'One-Handed Swords'),
+(6,6,202,'Two-Handed Swords'),
+(6,6,203,'Unarmed'),
+(6,6,204,'Defense'),
+(6,6,522,'SPELLDEFENSE (DND)'),
+(6,6,669,'Language Orcish'),
+(6,6,670,'Language Taurahe'),
+(6,6,674,'Dual Wield'),
+(6,6,750,'Plate Mail'),
+(6,6,1843,'Disarm'),
+(6,6,2382,'Generic'),
+(6,6,2479,'Honorless Target'),
+(6,6,3050,'Detect'),
+(6,6,3127,'Parry'),
+(6,6,3275,'Linen Bandage'),
+(6,6,3276,'Heavy Linen Bandage'),
+(6,6,3277,'Wool Bandage'),
+(6,6,3278,'Heavy Wool Bandage'),
+(6,6,3365,'Opening'),
+(6,6,6233,'Closing'),
+(6,6,6246,'Closing'),
+(6,6,6247,'Opening'),
+(6,6,6477,'Opening'),
+(6,6,6478,'Opening'),
+(6,6,6603,'Attack'),
+(6,6,7266,'Duel'),
+(6,6,7267,'Grovel'),
+(6,6,7355,'Stuck'),
+(6,6,7928,'Silk Bandage'),
+(6,6,7929,'Heavy Silk Bandage'),
+(6,6,7934,'Anti-Venom'),
+(6,6,8386,'Attacking'),
+(6,6,8737,'Mail'),
+(6,6,9077,'Leather'),
+(6,6,9078,'Cloth'),
+(6,6,9125,'Generic'),
+(6,6,10840,'Mageweave Bandage'),
+(6,6,10841,'Heavy Mageweave Bandage'),
+(6,6,10846,'First Aid'),
+(6,6,18629,'Runecloth Bandage'),
+(6,6,18630,'Heavy Runecloth Bandage'),
+(6,6,20549,'War Stomp'),
+(6,6,20550,'Endurance'),
+(6,6,20551,'Nature Resistance'),
+(6,6,20552,'Cultivation'),
+(6,6,21651,'Opening'),
+(6,6,21652,'Closing'),
+(6,6,22027,'Remove Insignia'),
+(6,6,22810,'Opening - No Text'),
+(6,6,33391,'Journeyman Riding'),
+(6,6,45462,'Plague Strike'),
+(6,6,45477,'Icy Touch'),
+(6,6,45902,'Blood Strike'),
+(6,6,45903,'Offensive State (DND)'),
+(6,6,45927,'Summon Friend'),
+(6,6,47541,'Death Coil'),
+(6,6,48266,'Blood Presence'),
+(6,6,49410,'Forceful Deflection'),
+(6,6,49576,'Death Grip'),
+(6,6,52665,'Sigil'),
+(6,6,59879,'Blood Plague'),
+(6,6,59921,'Frost Fever'),
+(6,6,61437,'Opening'),
+(6,6,61455,'Runic Focus'),
+(6,7,81,'Dodge'),
+(6,7,107,'Block'),
+(6,7,198,'One-Handed Maces'),
+(6,7,203,'Unarmed'),
+(6,7,204,'Defense'),
+(6,7,227,'Staves'),
+(6,7,331,'Healing Wave'),
+(6,7,403,'Lightning Bolt'),
+(6,7,522,'SPELLDEFENSE (DND)'),
+(6,7,669,'Language Orcish'),
+(6,7,670,'Language Taurahe'),
+(6,7,1843,'Disarm'),
+(6,7,2382,'Generic'),
+(6,7,2479,'Honorless Target'),
+(6,7,3050,'Detect'),
+(6,7,3365,'Opening'),
+(6,7,6233,'Closing'),
+(6,7,6246,'Closing'),
+(6,7,6247,'Opening'),
+(6,7,6477,'Opening'),
+(6,7,6478,'Opening'),
+(6,7,6603,'Attack'),
+(6,7,7266,'Duel'),
+(6,7,7267,'Grovel'),
+(6,7,7355,'Stuck'),
+(6,7,8386,'Attacking'),
+(6,7,9077,'Leather'),
+(6,7,9078,'Cloth'),
+(6,7,9116,'Shield'),
+(6,7,9125,'Generic'),
+(6,7,20549,'War Stomp'),
+(6,7,20550,'Endurance'),
+(6,7,20551,'Nature Resistance'),
+(6,7,20552,'Cultivation'),
+(6,7,21651,'Opening'),
+(6,7,21652,'Closing'),
+(6,7,22027,'Remove Insignia'),
+(6,7,22810,'Opening - No Text'),
+(6,7,27763,'Totem'),
+(6,7,45927,'Summon Friend'),
+(6,7,61437,'Opening'),
+(6,11,81,'Dodge'),
+(6,11,198,'One-Handed Maces'),
+(6,11,203,'Unarmed'),
+(6,11,204,'Defense'),
+(6,11,227,'Staves'),
+(6,11,522,'SPELLDEFENSE (DND)'),
+(6,11,669,'Language Orcish'),
+(6,11,670,'Language Taurahe'),
+(6,11,1843,'Disarm'),
+(6,11,2382,'Generic'),
+(6,11,2479,'Honorless Target'),
+(6,11,3050,'Detect'),
+(6,11,3365,'Opening'),
+(6,11,5176,'Wrath'),
+(6,11,5185,'Healing Touch'),
+(6,11,6233,'Closing'),
+(6,11,6246,'Closing'),
+(6,11,6247,'Opening'),
+(6,11,6477,'Opening'),
+(6,11,6478,'Opening'),
+(6,11,6603,'Attack'),
+(6,11,7266,'Duel'),
+(6,11,7267,'Grovel'),
+(6,11,7355,'Stuck'),
+(6,11,8386,'Attacking'),
+(6,11,9077,'Leather'),
+(6,11,9078,'Cloth'),
+(6,11,9125,'Generic'),
+(6,11,20549,'War Stomp'),
+(6,11,20550,'Endurance'),
+(6,11,20551,'Nature Resistance'),
+(6,11,20552,'Cultivation'),
+(6,11,21651,'Opening'),
+(6,11,21652,'Closing'),
+(6,11,22027,'Remove Insignia'),
+(6,11,22810,'Opening - No Text'),
+(6,11,27764,'Fetish'),
+(6,11,45927,'Summon Friend'),
+(6,11,61437,'Opening'),
+(7,1,78,'Heroic Strike'),
+(7,1,81,'Dodge'),
+(7,1,107,'Block'),
+(7,1,198,'One-Handed Maces'),
+(7,1,201,'One-Handed Swords'),
+(7,1,203,'Unarmed'),
+(7,1,204,'Defense'),
+(7,1,522,'SPELLDEFENSE (DND)'),
+(7,1,668,'Language Common'),
+(7,1,1180,'Daggers'),
+(7,1,1843,'Disarm'),
+(7,1,2382,'Generic'),
+(7,1,2457,'Battle Stance'),
+(7,1,2479,'Honorless Target'),
+(7,1,3050,'Detect'),
+(7,1,3365,'Opening'),
+(7,1,5301,'Defensive State (DND)'),
+(7,1,6233,'Closing'),
+(7,1,6246,'Closing'),
+(7,1,6247,'Opening'),
+(7,1,6477,'Opening'),
+(7,1,6478,'Opening'),
+(7,1,6603,'Attack'),
+(7,1,7266,'Duel'),
+(7,1,7267,'Grovel'),
+(7,1,7340,'Language Gnomish'),
+(7,1,7355,'Stuck'),
+(7,1,8386,'Attacking'),
+(7,1,8737,'Mail'),
+(7,1,9077,'Leather'),
+(7,1,9078,'Cloth'),
+(7,1,9116,'Shield'),
+(7,1,9125,'Generic'),
+(7,1,20589,'Escape Artist'),
+(7,1,20591,'Expansive Mind'),
+(7,1,20592,'Arcane Resistance'),
+(7,1,20593,'Engineering Specialization'),
+(7,1,21651,'Opening'),
+(7,1,21652,'Closing'),
+(7,1,22027,'Remove Insignia'),
+(7,1,22810,'Opening - No Text'),
+(7,1,32215,'Victorious State'),
+(7,1,45927,'Summon Friend'),
+(7,1,61437,'Opening'),
+(7,4,81,'Dodge'),
+(7,4,203,'Unarmed'),
+(7,4,204,'Defense'),
+(7,4,522,'SPELLDEFENSE (DND)'),
+(7,4,668,'Language Common'),
+(7,4,1180,'Daggers'),
+(7,4,1752,'Sinister Strike'),
+(7,4,1843,'Disarm'),
+(7,4,2098,'Eviscerate'),
+(7,4,2382,'Generic'),
+(7,4,2479,'Honorless Target'),
+(7,4,2567,'Thrown'),
+(7,4,2764,'Throw'),
+(7,4,3050,'Detect'),
+(7,4,3365,'Opening'),
+(7,4,6233,'Closing'),
+(7,4,6246,'Closing'),
+(7,4,6247,'Opening'),
+(7,4,6477,'Opening'),
+(7,4,6478,'Opening'),
+(7,4,6603,'Attack'),
+(7,4,7266,'Duel'),
+(7,4,7267,'Grovel'),
+(7,4,7340,'Language Gnomish'),
+(7,4,7355,'Stuck'),
+(7,4,8386,'Attacking'),
+(7,4,9077,'Leather'),
+(7,4,9078,'Cloth'),
+(7,4,9125,'Generic'),
+(7,4,16092,'Defensive State (DND)'),
+(7,4,20589,'Escape Artist'),
+(7,4,20591,'Expansive Mind'),
+(7,4,20592,'Arcane Resistance'),
+(7,4,20593,'Engineering Specialization'),
+(7,4,21184,'Rogue Passive (DND)'),
+(7,4,21651,'Opening'),
+(7,4,21652,'Closing'),
+(7,4,22027,'Remove Insignia'),
+(7,4,22810,'Opening - No Text'),
+(7,4,45927,'Summon Friend'),
+(7,4,61437,'Opening'),
+(7,6,81,'Dodge'),
+(7,6,196,'One-Handed Axes'),
+(7,6,197,'Two-Handed Axes'),
+(7,6,200,'Polearms'),
+(7,6,201,'One-Handed Swords'),
+(7,6,202,'Two-Handed Swords'),
+(7,6,203,'Unarmed'),
+(7,6,204,'Defense'),
+(7,6,522,'SPELLDEFENSE (DND)'),
+(7,6,668,'Language Common'),
+(7,6,674,'Dual Wield'),
+(7,6,750,'Plate Mail'),
+(7,6,1843,'Disarm'),
+(7,6,2382,'Generic'),
+(7,6,2479,'Honorless Target'),
+(7,6,3050,'Detect'),
+(7,6,3127,'Parry'),
+(7,6,3275,'Linen Bandage'),
+(7,6,3276,'Heavy Linen Bandage'),
+(7,6,3277,'Wool Bandage'),
+(7,6,3278,'Heavy Wool Bandage'),
+(7,6,3365,'Opening'),
+(7,6,6233,'Closing'),
+(7,6,6246,'Closing'),
+(7,6,6247,'Opening'),
+(7,6,6477,'Opening'),
+(7,6,6478,'Opening'),
+(7,6,6603,'Attack'),
+(7,6,7266,'Duel'),
+(7,6,7267,'Grovel'),
+(7,6,7340,'Language Gnomish'),
+(7,6,7355,'Stuck'),
+(7,6,7928,'Silk Bandage'),
+(7,6,7929,'Heavy Silk Bandage'),
+(7,6,7934,'Anti-Venom'),
+(7,6,8386,'Attacking'),
+(7,6,8737,'Mail'),
+(7,6,9077,'Leather'),
+(7,6,9078,'Cloth'),
+(7,6,9125,'Generic'),
+(7,6,10840,'Mageweave Bandage'),
+(7,6,10841,'Heavy Mageweave Bandage'),
+(7,6,10846,'First Aid'),
+(7,6,18629,'Runecloth Bandage'),
+(7,6,18630,'Heavy Runecloth Bandage'),
+(7,6,20589,'Escape Artist'),
+(7,6,20591,'Expansive Mind'),
+(7,6,20592,'Arcane Resistance'),
+(7,6,20593,'Engineering Specialization'),
+(7,6,21651,'Opening'),
+(7,6,21652,'Closing'),
+(7,6,22027,'Remove Insignia'),
+(7,6,22810,'Opening - No Text'),
+(7,6,33391,'Journeyman Riding'),
+(7,6,45462,'Plague Strike'),
+(7,6,45477,'Icy Touch'),
+(7,6,45902,'Blood Strike'),
+(7,6,45903,'Offensive State (DND)'),
+(7,6,45927,'Summon Friend'),
+(7,6,47541,'Death Coil'),
+(7,6,48266,'Blood Presence'),
+(7,6,49410,'Forceful Deflection'),
+(7,6,49576,'Death Grip'),
+(7,6,52665,'Sigil'),
+(7,6,59879,'Blood Plague'),
+(7,6,59921,'Frost Fever'),
+(7,6,61437,'Opening'),
+(7,6,61455,'Runic Focus'),
+(7,8,81,'Dodge'),
+(7,8,133,'Fireball'),
+(7,8,168,'Frost Armor'),
+(7,8,203,'Unarmed'),
+(7,8,204,'Defense'),
+(7,8,227,'Staves'),
+(7,8,522,'SPELLDEFENSE (DND)'),
+(7,8,668,'Language Common'),
+(7,8,1843,'Disarm'),
+(7,8,2382,'Generic'),
+(7,8,2479,'Honorless Target'),
+(7,8,3050,'Detect'),
+(7,8,3365,'Opening'),
+(7,8,5009,'Wands'),
+(7,8,5019,'Shoot'),
+(7,8,6233,'Closing'),
+(7,8,6246,'Closing'),
+(7,8,6247,'Opening'),
+(7,8,6477,'Opening'),
+(7,8,6478,'Opening'),
+(7,8,6603,'Attack'),
+(7,8,7266,'Duel'),
+(7,8,7267,'Grovel'),
+(7,8,7340,'Language Gnomish'),
+(7,8,7355,'Stuck'),
+(7,8,8386,'Attacking'),
+(7,8,9078,'Cloth'),
+(7,8,9125,'Generic'),
+(7,8,20589,'Escape Artist'),
+(7,8,20591,'Expansive Mind'),
+(7,8,20592,'Arcane Resistance'),
+(7,8,20593,'Engineering Specialization'),
+(7,8,21651,'Opening'),
+(7,8,21652,'Closing'),
+(7,8,22027,'Remove Insignia'),
+(7,8,22810,'Opening - No Text'),
+(7,8,45927,'Summon Friend'),
+(7,8,61437,'Opening'),
+(7,9,81,'Dodge'),
+(7,9,203,'Unarmed'),
+(7,9,204,'Defense'),
+(7,9,522,'SPELLDEFENSE (DND)'),
+(7,9,668,'Language Common'),
+(7,9,686,'Shadow Bolt'),
+(7,9,687,'Demon Skin'),
+(7,9,1180,'Daggers'),
+(7,9,1843,'Disarm'),
+(7,9,2382,'Generic'),
+(7,9,2479,'Honorless Target'),
+(7,9,3050,'Detect'),
+(7,9,3365,'Opening'),
+(7,9,5009,'Wands'),
+(7,9,5019,'Shoot'),
+(7,9,6233,'Closing'),
+(7,9,6246,'Closing'),
+(7,9,6247,'Opening'),
+(7,9,6477,'Opening'),
+(7,9,6478,'Opening'),
+(7,9,6603,'Attack'),
+(7,9,7266,'Duel'),
+(7,9,7267,'Grovel'),
+(7,9,7340,'Language Gnomish'),
+(7,9,7355,'Stuck'),
+(7,9,8386,'Attacking'),
+(7,9,9078,'Cloth'),
+(7,9,9125,'Generic'),
+(7,9,20589,'Escape Artist'),
+(7,9,20591,'Expansive Mind'),
+(7,9,20592,'Arcane Resistance'),
+(7,9,20593,'Engineering Specialization'),
+(7,9,21651,'Opening'),
+(7,9,21652,'Closing'),
+(7,9,22027,'Remove Insignia'),
+(7,9,22810,'Opening - No Text'),
+(7,9,45927,'Summon Friend'),
+(7,9,61437,'Opening'),
+(8,1,78,'Heroic Strike'),
+(8,1,81,'Dodge'),
+(8,1,107,'Block'),
+(8,1,196,'One-Handed Axes'),
+(8,1,203,'Unarmed'),
+(8,1,204,'Defense'),
+(8,1,522,'SPELLDEFENSE (DND)'),
+(8,1,669,'Language Orcish'),
+(8,1,1180,'Daggers'),
+(8,1,1843,'Disarm'),
+(8,1,2382,'Generic'),
+(8,1,2457,'Battle Stance'),
+(8,1,2479,'Honorless Target'),
+(8,1,2567,'Thrown'),
+(8,1,2764,'Throw'),
+(8,1,3050,'Detect'),
+(8,1,3365,'Opening'),
+(8,1,5301,'Defensive State (DND)'),
+(8,1,6233,'Closing'),
+(8,1,6246,'Closing'),
+(8,1,6247,'Opening'),
+(8,1,6477,'Opening'),
+(8,1,6478,'Opening'),
+(8,1,6603,'Attack'),
+(8,1,7266,'Duel'),
+(8,1,7267,'Grovel'),
+(8,1,7341,'Language Troll'),
+(8,1,7355,'Stuck'),
+(8,1,8386,'Attacking'),
+(8,1,8737,'Mail'),
+(8,1,9077,'Leather'),
+(8,1,9078,'Cloth'),
+(8,1,9116,'Shield'),
+(8,1,9125,'Generic'),
+(8,1,20555,'Regeneration'),
+(8,1,20557,'Beast Slaying'),
+(8,1,20558,'Throwing Specialization'),
+(8,1,21651,'Opening'),
+(8,1,21652,'Closing'),
+(8,1,22027,'Remove Insignia'),
+(8,1,22810,'Opening - No Text'),
+(8,1,26290,'Bow Specialization'),
+(8,1,26296,'Berserking'),
+(8,1,32215,'Victorious State'),
+(8,1,45927,'Summon Friend'),
+(8,1,58943,'Da Voodoo Shuffle'),
+(8,1,61437,'Opening'),
+(8,3,75,'Auto Shot'),
+(8,3,81,'Dodge'),
+(8,3,196,'One-Handed Axes'),
+(8,3,203,'Unarmed'),
+(8,3,204,'Defense'),
+(8,3,264,'Bows'),
+(8,3,522,'SPELLDEFENSE (DND)'),
+(8,3,669,'Language Orcish'),
+(8,3,1843,'Disarm'),
+(8,3,2382,'Generic'),
+(8,3,2479,'Honorless Target'),
+(8,3,2973,'Raptor Strike'),
+(8,3,3050,'Detect'),
+(8,3,3365,'Opening'),
+(8,3,6233,'Closing'),
+(8,3,6246,'Closing'),
+(8,3,6247,'Opening'),
+(8,3,6477,'Opening'),
+(8,3,6478,'Opening'),
+(8,3,6603,'Attack'),
+(8,3,7266,'Duel'),
+(8,3,7267,'Grovel'),
+(8,3,7341,'Language Troll'),
+(8,3,7355,'Stuck'),
+(8,3,8386,'Attacking'),
+(8,3,9077,'Leather'),
+(8,3,9078,'Cloth'),
+(8,3,9125,'Generic'),
+(8,3,13358,'Defensive State (DND)'),
+(8,3,20554,'Berserking'),
+(8,3,20555,'Regeneration'),
+(8,3,20557,'Beast Slaying'),
+(8,3,20558,'Throwing Specialization'),
+(8,3,21651,'Opening'),
+(8,3,21652,'Closing'),
+(8,3,22027,'Remove Insignia'),
+(8,3,22810,'Opening - No Text'),
+(8,3,24949,'Defensive State 2 (DND)'),
+(8,3,26290,'Bow Specialization'),
+(8,3,34082,'Advantaged State (DND)'),
+(8,3,45927,'Summon Friend'),
+(8,3,58943,'Da Voodoo Shuffle'),
+(8,3,61437,'Opening'),
+(8,4,81,'Dodge'),
+(8,4,203,'Unarmed'),
+(8,4,204,'Defense'),
+(8,4,522,'SPELLDEFENSE (DND)'),
+(8,4,669,'Language Orcish'),
+(8,4,1180,'Daggers'),
+(8,4,1752,'Sinister Strike'),
+(8,4,1843,'Disarm'),
+(8,4,2098,'Eviscerate'),
+(8,4,2382,'Generic'),
+(8,4,2479,'Honorless Target'),
+(8,4,2567,'Thrown'),
+(8,4,2764,'Throw'),
+(8,4,3050,'Detect'),
+(8,4,3365,'Opening'),
+(8,4,6233,'Closing'),
+(8,4,6246,'Closing'),
+(8,4,6247,'Opening'),
+(8,4,6477,'Opening'),
+(8,4,6478,'Opening'),
+(8,4,6603,'Attack'),
+(8,4,7266,'Duel'),
+(8,4,7267,'Grovel'),
+(8,4,7341,'Language Troll'),
+(8,4,7355,'Stuck'),
+(8,4,8386,'Attacking'),
+(8,4,9077,'Leather'),
+(8,4,9078,'Cloth'),
+(8,4,9125,'Generic'),
+(8,4,16092,'Defensive State (DND)'),
+(8,4,20555,'Regeneration'),
+(8,4,20557,'Beast Slaying'),
+(8,4,20558,'Throwing Specialization'),
+(8,4,21184,'Rogue Passive (DND)'),
+(8,4,21651,'Opening'),
+(8,4,21652,'Closing'),
+(8,4,22027,'Remove Insignia'),
+(8,4,22810,'Opening - No Text'),
+(8,4,26290,'Bow Specialization'),
+(8,4,26297,'Berserking'),
+(8,4,45927,'Summon Friend'),
+(8,4,58943,'Da Voodoo Shuffle'),
+(8,4,61437,'Opening'),
+(8,5,81,'Dodge'),
+(8,5,198,'One-Handed Maces'),
+(8,5,203,'Unarmed'),
+(8,5,204,'Defense'),
+(8,5,522,'SPELLDEFENSE (DND)'),
+(8,5,585,'Smite'),
+(8,5,669,'Language Orcish'),
+(8,5,1843,'Disarm'),
+(8,5,2050,'Lesser Heal'),
+(8,5,2382,'Generic'),
+(8,5,2479,'Honorless Target'),
+(8,5,3050,'Detect'),
+(8,5,3365,'Opening'),
+(8,5,5009,'Wands'),
+(8,5,5019,'Shoot'),
+(8,5,6233,'Closing'),
+(8,5,6246,'Closing'),
+(8,5,6247,'Opening'),
+(8,5,6477,'Opening'),
+(8,5,6478,'Opening'),
+(8,5,6603,'Attack'),
+(8,5,7266,'Duel'),
+(8,5,7267,'Grovel'),
+(8,5,7341,'Language Troll'),
+(8,5,7355,'Stuck'),
+(8,5,8386,'Attacking'),
+(8,5,9078,'Cloth'),
+(8,5,9125,'Generic'),
+(8,5,20554,'Berserking'),
+(8,5,20555,'Regeneration'),
+(8,5,20557,'Beast Slaying'),
+(8,5,20558,'Throwing Specialization'),
+(8,5,21651,'Opening'),
+(8,5,21652,'Closing'),
+(8,5,22027,'Remove Insignia'),
+(8,5,22810,'Opening - No Text'),
+(8,5,26290,'Bow Specialization'),
+(8,5,45927,'Summon Friend'),
+(8,5,58943,'Da Voodoo Shuffle'),
+(8,5,61437,'Opening'),
+(8,6,81,'Dodge'),
+(8,6,196,'One-Handed Axes'),
+(8,6,197,'Two-Handed Axes'),
+(8,6,200,'Polearms'),
+(8,6,201,'One-Handed Swords'),
+(8,6,202,'Two-Handed Swords'),
+(8,6,203,'Unarmed'),
+(8,6,204,'Defense'),
+(8,6,522,'SPELLDEFENSE (DND)'),
+(8,6,669,'Language Orcish'),
+(8,6,674,'Dual Wield'),
+(8,6,750,'Plate Mail'),
+(8,6,1843,'Disarm'),
+(8,6,2382,'Generic'),
+(8,6,2479,'Honorless Target'),
+(8,6,3050,'Detect'),
+(8,6,3127,'Parry'),
+(8,6,3275,'Linen Bandage'),
+(8,6,3276,'Heavy Linen Bandage'),
+(8,6,3277,'Wool Bandage'),
+(8,6,3278,'Heavy Wool Bandage'),
+(8,6,3365,'Opening'),
+(8,6,6233,'Closing'),
+(8,6,6246,'Closing'),
+(8,6,6247,'Opening'),
+(8,6,6477,'Opening'),
+(8,6,6478,'Opening'),
+(8,6,6603,'Attack'),
+(8,6,7266,'Duel'),
+(8,6,7267,'Grovel'),
+(8,6,7341,'Language Troll'),
+(8,6,7355,'Stuck'),
+(8,6,7928,'Silk Bandage'),
+(8,6,7929,'Heavy Silk Bandage'),
+(8,6,7934,'Anti-Venom'),
+(8,6,8386,'Attacking'),
+(8,6,8737,'Mail'),
+(8,6,9077,'Leather'),
+(8,6,9078,'Cloth'),
+(8,6,9125,'Generic'),
+(8,6,10840,'Mageweave Bandage'),
+(8,6,10841,'Heavy Mageweave Bandage'),
+(8,6,10846,'First Aid'),
+(8,6,18629,'Runecloth Bandage'),
+(8,6,18630,'Heavy Runecloth Bandage'),
+(8,6,20555,'Regeneration'),
+(8,6,20557,'Beast Slaying'),
+(8,6,20558,'Throwing Specialization'),
+(8,6,21651,'Opening'),
+(8,6,21652,'Closing'),
+(8,6,22027,'Remove Insignia'),
+(8,6,22810,'Opening - No Text'),
+(8,6,26290,'Bow Specialization'),
+(8,6,33391,'Journeyman Riding'),
+(8,6,45462,'Plague Strike'),
+(8,6,45477,'Icy Touch'),
+(8,6,45902,'Blood Strike'),
+(8,6,45903,'Offensive State (DND)'),
+(8,6,45927,'Summon Friend'),
+(8,6,47541,'Death Coil'),
+(8,6,48266,'Blood Presence'),
+(8,6,49410,'Forceful Deflection'),
+(8,6,49576,'Death Grip'),
+(8,6,50621,'Berserking'),
+(8,6,52665,'Sigil'),
+(8,6,58943,'Da Voodoo Shuffle'),
+(8,6,59879,'Blood Plague'),
+(8,6,59921,'Frost Fever'),
+(8,6,61437,'Opening'),
+(8,6,61455,'Runic Focus'),
+(8,7,81,'Dodge'),
+(8,7,107,'Block'),
+(8,7,198,'One-Handed Maces'),
+(8,7,203,'Unarmed'),
+(8,7,204,'Defense'),
+(8,7,227,'Staves'),
+(8,7,331,'Healing Wave'),
+(8,7,403,'Lightning Bolt'),
+(8,7,522,'SPELLDEFENSE (DND)'),
+(8,7,669,'Language Orcish'),
+(8,7,1843,'Disarm'),
+(8,7,2382,'Generic'),
+(8,7,2479,'Honorless Target'),
+(8,7,3050,'Detect'),
+(8,7,3365,'Opening'),
+(8,7,6233,'Closing'),
+(8,7,6246,'Closing'),
+(8,7,6247,'Opening'),
+(8,7,6477,'Opening'),
+(8,7,6478,'Opening'),
+(8,7,6603,'Attack'),
+(8,7,7266,'Duel'),
+(8,7,7267,'Grovel'),
+(8,7,7341,'Language Troll'),
+(8,7,7355,'Stuck'),
+(8,7,8386,'Attacking'),
+(8,7,9077,'Leather'),
+(8,7,9078,'Cloth'),
+(8,7,9116,'Shield'),
+(8,7,9125,'Generic'),
+(8,7,20554,'Berserking'),
+(8,7,20555,'Regeneration'),
+(8,7,20557,'Beast Slaying'),
+(8,7,20558,'Throwing Specialization'),
+(8,7,21651,'Opening'),
+(8,7,21652,'Closing'),
+(8,7,22027,'Remove Insignia'),
+(8,7,22810,'Opening - No Text'),
+(8,7,26290,'Bow Specialization'),
+(8,7,27763,'Totem'),
+(8,7,45927,'Summon Friend'),
+(8,7,58943,'Da Voodoo Shuffle'),
+(8,7,61437,'Opening'),
+(8,8,81,'Dodge'),
+(8,8,133,'Fireball'),
+(8,8,168,'Frost Armor'),
+(8,8,203,'Unarmed'),
+(8,8,204,'Defense'),
+(8,8,227,'Staves'),
+(8,8,522,'SPELLDEFENSE (DND)'),
+(8,8,669,'Language Orcish'),
+(8,8,1843,'Disarm'),
+(8,8,2382,'Generic'),
+(8,8,2479,'Honorless Target'),
+(8,8,3050,'Detect'),
+(8,8,3365,'Opening'),
+(8,8,5009,'Wands'),
+(8,8,5019,'Shoot'),
+(8,8,6233,'Closing'),
+(8,8,6246,'Closing'),
+(8,8,6247,'Opening'),
+(8,8,6477,'Opening'),
+(8,8,6478,'Opening'),
+(8,8,6603,'Attack'),
+(8,8,7266,'Duel'),
+(8,8,7267,'Grovel'),
+(8,8,7341,'Language Troll'),
+(8,8,7355,'Stuck'),
+(8,8,8386,'Attacking'),
+(8,8,9078,'Cloth'),
+(8,8,9125,'Generic'),
+(8,8,20554,'Berserking'),
+(8,8,20555,'Regeneration'),
+(8,8,20557,'Beast Slaying'),
+(8,8,20558,'Throwing Specialization'),
+(8,8,21651,'Opening'),
+(8,8,21652,'Closing'),
+(8,8,22027,'Remove Insignia'),
+(8,8,22810,'Opening - No Text'),
+(8,8,26290,'Bow Specialization'),
+(8,8,45927,'Summon Friend'),
+(8,8,58943,'Da Voodoo Shuffle'),
+(8,8,61437,'Opening'),
+(10,2,81,'Dodge'),
+(10,2,107,'Block'),
+(10,2,201,'One-Handed Swords'),
+(10,2,202,'Two-Handed Swords'),
+(10,2,203,'Unarmed'),
+(10,2,204,'Defense'),
+(10,2,522,'SPELLDEFENSE (DND)'),
+(10,2,635,'Holy Light'),
+(10,2,669,'Language Orcish'),
+(10,2,813,'Language Thalassian'),
+(10,2,822,'Magic Resistance'),
+(10,2,2382,'Generic'),
+(10,2,2479,'Honorless Target'),
+(10,2,3050,'Detect'),
+(10,2,3365,'Opening'),
+(10,2,6233,'Closing'),
+(10,2,6246,'Closing'),
+(10,2,6247,'Opening'),
+(10,2,6477,'Opening'),
+(10,2,6478,'Opening'),
+(10,2,6603,'Attack'),
+(10,2,7266,'Duel'),
+(10,2,7267,'Grovel'),
+(10,2,7355,'Stuck'),
+(10,2,8386,'Attacking'),
+(10,2,8737,'Mail'),
+(10,2,9077,'Leather'),
+(10,2,9078,'Cloth'),
+(10,2,9116,'Shield'),
+(10,2,9125,'Generic'),
+(10,2,21084,'Seal of Righteousness'),
+(10,2,21651,'Opening'),
+(10,2,21652,'Closing'),
+(10,2,22027,'Remove Insignia'),
+(10,2,22810,'Opening - No Text'),
+(10,2,27762,'Libram'),
+(10,2,28730,'Arcane Torrent'),
+(10,2,28734,'Mana Tap'),
+(10,2,28877,'Arcane Affinity'),
+(10,3,75,'Auto Shot'),
+(10,3,81,'Dodge'),
+(10,3,203,'Unarmed'),
+(10,3,204,'Defense'),
+(10,3,264,'Bows'),
+(10,3,522,'SPELLDEFENSE (DND)'),
+(10,3,669,'Language Orcish'),
+(10,3,813,'Language Thalassian'),
+(10,3,822,'Magic Resistance'),
+(10,3,1180,'Daggers'),
+(10,3,2382,'Generic'),
+(10,3,2479,'Honorless Target'),
+(10,3,2973,'Raptor Strike'),
+(10,3,3050,'Detect'),
+(10,3,3365,'Opening'),
+(10,3,6233,'Closing'),
+(10,3,6246,'Closing'),
+(10,3,6247,'Opening'),
+(10,3,6477,'Opening'),
+(10,3,6478,'Opening'),
+(10,3,6603,'Attack'),
+(10,3,7266,'Duel'),
+(10,3,7267,'Grovel'),
+(10,3,7355,'Stuck'),
+(10,3,8386,'Attacking'),
+(10,3,9077,'Leather'),
+(10,3,9078,'Cloth'),
+(10,3,9125,'Generic'),
+(10,3,13358,'Defensive State (DND)'),
+(10,3,21651,'Opening'),
+(10,3,21652,'Closing'),
+(10,3,22027,'Remove Insignia'),
+(10,3,22810,'Opening - No Text'),
+(10,3,24949,'Defensive State 2 (DND)'),
+(10,3,28730,'Arcane Torrent'),
+(10,3,28734,'Mana Tap'),
+(10,3,28877,'Arcane Affinity'),
+(10,3,34082,'Advantaged State (DND)'),
+(10,4,81,'Dodge'),
+(10,4,203,'Unarmed'),
+(10,4,204,'Defense'),
+(10,4,522,'SPELLDEFENSE (DND)'),
+(10,4,669,'Language Orcish'),
+(10,4,813,'Language Thalassian'),
+(10,4,822,'Magic Resistance'),
+(10,4,1180,'Daggers'),
+(10,4,1752,'Sinister Strike'),
+(10,4,2098,'Eviscerate'),
+(10,4,2382,'Generic'),
+(10,4,2479,'Honorless Target'),
+(10,4,2567,'Thrown'),
+(10,4,2764,'Throw'),
+(10,4,3050,'Detect'),
+(10,4,3365,'Opening'),
+(10,4,6233,'Closing'),
+(10,4,6246,'Closing'),
+(10,4,6247,'Opening'),
+(10,4,6477,'Opening'),
+(10,4,6478,'Opening'),
+(10,4,6603,'Attack'),
+(10,4,7266,'Duel'),
+(10,4,7267,'Grovel'),
+(10,4,7355,'Stuck'),
+(10,4,8386,'Attacking'),
+(10,4,9077,'Leather'),
+(10,4,9078,'Cloth'),
+(10,4,9125,'Generic'),
+(10,4,16092,'Defensive State (DND)'),
+(10,4,21184,'Rogue Passive (DND)'),
+(10,4,21651,'Opening'),
+(10,4,21652,'Closing'),
+(10,4,22027,'Remove Insignia'),
+(10,4,22810,'Opening - No Text'),
+(10,4,25046,'Arcane Torrent'),
+(10,4,28734,'Mana Tap'),
+(10,4,28877,'Arcane Affinity'),
+(10,5,81,'Dodge'),
+(10,5,198,'One-Handed Maces'),
+(10,5,203,'Unarmed'),
+(10,5,204,'Defense'),
+(10,5,522,'SPELLDEFENSE (DND)'),
+(10,5,585,'Smite'),
+(10,5,669,'Language Orcish'),
+(10,5,813,'Language Thalassian'),
+(10,5,822,'Magic Resistance'),
+(10,5,2050,'Lesser Heal'),
+(10,5,2382,'Generic'),
+(10,5,2479,'Honorless Target'),
+(10,5,3050,'Detect'),
+(10,5,3365,'Opening'),
+(10,5,5009,'Wands'),
+(10,5,5019,'Shoot'),
+(10,5,6233,'Closing'),
+(10,5,6246,'Closing'),
+(10,5,6247,'Opening'),
+(10,5,6477,'Opening'),
+(10,5,6478,'Opening'),
+(10,5,6603,'Attack'),
+(10,5,7266,'Duel'),
+(10,5,7267,'Grovel'),
+(10,5,7355,'Stuck'),
+(10,5,8386,'Attacking'),
+(10,5,9078,'Cloth'),
+(10,5,9125,'Generic'),
+(10,5,21651,'Opening'),
+(10,5,21652,'Closing'),
+(10,5,22027,'Remove Insignia'),
+(10,5,22810,'Opening - No Text'),
+(10,5,28730,'Arcane Torrent'),
+(10,5,28734,'Mana Tap'),
+(10,5,28877,'Arcane Affinity'),
+(10,6,81,'Dodge'),
+(10,6,196,'One-Handed Axes'),
+(10,6,197,'Two-Handed Axes'),
+(10,6,200,'Polearms'),
+(10,6,201,'One-Handed Swords'),
+(10,6,202,'Two-Handed Swords'),
+(10,6,203,'Unarmed'),
+(10,6,204,'Defense'),
+(10,6,522,'SPELLDEFENSE (DND)'),
+(10,6,669,'Language Orcish'),
+(10,6,674,'Dual Wield'),
+(10,6,750,'Plate Mail'),
+(10,6,813,'Language Thalassian'),
+(10,6,822,'Magic Resistance'),
+(10,6,1843,'Disarm'),
+(10,6,2382,'Generic'),
+(10,6,2479,'Honorless Target'),
+(10,6,3050,'Detect'),
+(10,6,3127,'Parry'),
+(10,6,3275,'Linen Bandage'),
+(10,6,3276,'Heavy Linen Bandage'),
+(10,6,3277,'Wool Bandage'),
+(10,6,3278,'Heavy Wool Bandage'),
+(10,6,3365,'Opening'),
+(10,6,6233,'Closing'),
+(10,6,6246,'Closing'),
+(10,6,6247,'Opening'),
+(10,6,6477,'Opening'),
+(10,6,6478,'Opening'),
+(10,6,6603,'Attack'),
+(10,6,7266,'Duel'),
+(10,6,7267,'Grovel'),
+(10,6,7355,'Stuck'),
+(10,6,7928,'Silk Bandage'),
+(10,6,7929,'Heavy Silk Bandage'),
+(10,6,7934,'Anti-Venom'),
+(10,6,8386,'Attacking'),
+(10,6,8737,'Mail'),
+(10,6,9077,'Leather'),
+(10,6,9078,'Cloth'),
+(10,6,9125,'Generic'),
+(10,6,10840,'Mageweave Bandage'),
+(10,6,10841,'Heavy Mageweave Bandage'),
+(10,6,10846,'First Aid'),
+(10,6,18629,'Runecloth Bandage'),
+(10,6,18630,'Heavy Runecloth Bandage'),
+(10,6,21651,'Opening'),
+(10,6,21652,'Closing'),
+(10,6,22027,'Remove Insignia'),
+(10,6,22810,'Opening - No Text'),
+(10,6,28877,'Arcane Affinity'),
+(10,6,33391,'Journeyman Riding'),
+(10,6,45462,'Plague Strike'),
+(10,6,45477,'Icy Touch'),
+(10,6,45902,'Blood Strike'),
+(10,6,45903,'Offensive State (DND)'),
+(10,6,45927,'Summon Friend'),
+(10,6,47541,'Death Coil'),
+(10,6,48266,'Blood Presence'),
+(10,6,49410,'Forceful Deflection'),
+(10,6,49576,'Death Grip'),
+(10,6,50613,'Arcane Torrent'),
+(10,6,52665,'Sigil'),
+(10,6,59879,'Blood Plague'),
+(10,6,59921,'Frost Fever'),
+(10,6,61437,'Opening'),
+(10,6,61455,'Runic Focus'),
+(10,8,81,'Dodge'),
+(10,8,133,'Fireball'),
+(10,8,168,'Frost Armor'),
+(10,8,203,'Unarmed'),
+(10,8,204,'Defense'),
+(10,8,227,'Staves'),
+(10,8,522,'SPELLDEFENSE (DND)'),
+(10,8,669,'Language Orcish'),
+(10,8,813,'Language Thalassian'),
+(10,8,822,'Magic Resistance'),
+(10,8,2382,'Generic'),
+(10,8,2479,'Honorless Target'),
+(10,8,3050,'Detect'),
+(10,8,3365,'Opening'),
+(10,8,5009,'Wands'),
+(10,8,5019,'Shoot'),
+(10,8,6233,'Closing'),
+(10,8,6246,'Closing'),
+(10,8,6247,'Opening'),
+(10,8,6477,'Opening'),
+(10,8,6478,'Opening'),
+(10,8,6603,'Attack'),
+(10,8,7266,'Duel'),
+(10,8,7267,'Grovel'),
+(10,8,7355,'Stuck'),
+(10,8,8386,'Attacking'),
+(10,8,9078,'Cloth'),
+(10,8,9125,'Generic'),
+(10,8,21651,'Opening'),
+(10,8,21652,'Closing'),
+(10,8,22027,'Remove Insignia'),
+(10,8,22810,'Opening - No Text'),
+(10,8,28730,'Arcane Torrent'),
+(10,8,28734,'Mana Tap'),
+(10,8,28877,'Arcane Affinity'),
+(10,9,81,'Dodge'),
+(10,9,203,'Unarmed'),
+(10,9,204,'Defense'),
+(10,9,522,'SPELLDEFENSE (DND)'),
+(10,9,669,'Language Orcish'),
+(10,9,686,'Shadow Bolt'),
+(10,9,687,'Demon Skin'),
+(10,9,813,'Language Thalassian'),
+(10,9,822,'Magic Resistance'),
+(10,9,1180,'Daggers'),
+(10,9,2382,'Generic'),
+(10,9,2479,'Honorless Target'),
+(10,9,3050,'Detect'),
+(10,9,3365,'Opening'),
+(10,9,5009,'Wands'),
+(10,9,5019,'Shoot'),
+(10,9,6233,'Closing'),
+(10,9,6246,'Closing'),
+(10,9,6247,'Opening'),
+(10,9,6477,'Opening'),
+(10,9,6478,'Opening'),
+(10,9,6603,'Attack'),
+(10,9,7266,'Duel'),
+(10,9,7267,'Grovel'),
+(10,9,7355,'Stuck'),
+(10,9,8386,'Attacking'),
+(10,9,9078,'Cloth'),
+(10,9,9125,'Generic'),
+(10,9,21651,'Opening'),
+(10,9,21652,'Closing'),
+(10,9,22027,'Remove Insignia'),
+(10,9,22810,'Opening - No Text'),
+(10,9,28730,'Arcane Torrent'),
+(10,9,28734,'Mana Tap'),
+(10,9,28877,'Arcane Affinity'),
+(11,1,78,'Heroic Strike'),
+(11,1,81,'Dodge'),
+(11,1,107,'Block'),
+(11,1,198,'One-Handed Maces'),
+(11,1,201,'One-Handed Swords'),
+(11,1,202,'Two-Handed Swords'),
+(11,1,203,'Unarmed'),
+(11,1,204,'Defense'),
+(11,1,522,'SPELLDEFENSE (DND)'),
+(11,1,668,'Language Common'),
+(11,1,1843,'Disarm'),
+(11,1,2382,'Generic'),
+(11,1,2457,'Battle Stance'),
+(11,1,2479,'Honorless Target'),
+(11,1,3050,'Detect'),
+(11,1,3365,'Opening'),
+(11,1,5301,'Defensive State (DND)'),
+(11,1,6233,'Closing'),
+(11,1,6246,'Closing'),
+(11,1,6247,'Opening'),
+(11,1,6477,'Opening'),
+(11,1,6478,'Opening'),
+(11,1,6562,'Heroic Presence'),
+(11,1,6603,'Attack'),
+(11,1,7266,'Duel'),
+(11,1,7267,'Grovel'),
+(11,1,7355,'Stuck'),
+(11,1,8386,'Attacking'),
+(11,1,8737,'Mail'),
+(11,1,9077,'Leather'),
+(11,1,9078,'Cloth'),
+(11,1,9116,'Shield'),
+(11,1,9125,'Generic'),
+(11,1,21651,'Opening'),
+(11,1,21652,'Closing'),
+(11,1,22027,'Remove Insignia'),
+(11,1,22810,'Opening - No Text'),
+(11,1,28875,'Gemcutting'),
+(11,1,28880,'Gift of the Naaru'),
+(11,1,29932,'Language Draenei'),
+(11,1,32215,'Victorious State'),
+(11,1,45927,'Summon Friend'),
+(11,1,59221,'Shadow Resistance'),
+(11,1,61437,'Opening'),
+(11,2,81,'Dodge'),
+(11,2,107,'Block'),
+(11,2,198,'One-Handed Maces'),
+(11,2,199,'Two-Handed Maces'),
+(11,2,203,'Unarmed'),
+(11,2,204,'Defense'),
+(11,2,522,'SPELLDEFENSE (DND)'),
+(11,2,635,'Holy Light'),
+(11,2,668,'Language Common'),
+(11,2,1843,'Disarm'),
+(11,2,2382,'Generic'),
+(11,2,2479,'Honorless Target'),
+(11,2,3050,'Detect'),
+(11,2,3365,'Opening'),
+(11,2,6233,'Closing'),
+(11,2,6246,'Closing'),
+(11,2,6247,'Opening'),
+(11,2,6477,'Opening'),
+(11,2,6478,'Opening'),
+(11,2,6562,'Heroic Presence'),
+(11,2,6603,'Attack'),
+(11,2,7266,'Duel'),
+(11,2,7267,'Grovel'),
+(11,2,7355,'Stuck'),
+(11,2,8386,'Attacking'),
+(11,2,8737,'Mail'),
+(11,2,9077,'Leather'),
+(11,2,9078,'Cloth'),
+(11,2,9116,'Shield'),
+(11,2,9125,'Generic'),
+(11,2,21084,'Seal of Righteousness'),
+(11,2,21651,'Opening'),
+(11,2,21652,'Closing'),
+(11,2,22027,'Remove Insignia'),
+(11,2,22810,'Opening - No Text'),
+(11,2,27762,'Libram'),
+(11,2,28875,'Gemcutting'),
+(11,2,29932,'Language Draenei'),
+(11,2,45927,'Summon Friend'),
+(11,2,59221,'Shadow Resistance'),
+(11,2,59542,'Gift of the Naaru'),
+(11,2,61437,'Opening'),
+(11,3,75,'Auto Shot'),
+(11,3,81,'Dodge'),
+(11,3,201,'One-Handed Swords'),
+(11,3,203,'Unarmed'),
+(11,3,204,'Defense'),
+(11,3,522,'SPELLDEFENSE (DND)'),
+(11,3,668,'Language Common'),
+(11,3,1843,'Disarm'),
+(11,3,2382,'Generic'),
+(11,3,2479,'Honorless Target'),
+(11,3,2973,'Raptor Strike'),
+(11,3,3050,'Detect'),
+(11,3,3365,'Opening'),
+(11,3,5011,'Crossbows'),
+(11,3,6233,'Closing'),
+(11,3,6246,'Closing'),
+(11,3,6247,'Opening'),
+(11,3,6477,'Opening'),
+(11,3,6478,'Opening'),
+(11,3,6562,'Heroic Presence'),
+(11,3,6603,'Attack'),
+(11,3,7266,'Duel'),
+(11,3,7267,'Grovel'),
+(11,3,7355,'Stuck'),
+(11,3,8386,'Attacking'),
+(11,3,9077,'Leather'),
+(11,3,9078,'Cloth'),
+(11,3,9125,'Generic'),
+(11,3,13358,'Defensive State (DND)'),
+(11,3,21651,'Opening'),
+(11,3,21652,'Closing'),
+(11,3,22027,'Remove Insignia'),
+(11,3,22810,'Opening - No Text'),
+(11,3,24949,'Defensive State 2 (DND)'),
+(11,3,28875,'Gemcutting'),
+(11,3,29932,'Language Draenei'),
+(11,3,34082,'Advantaged State (DND)'),
+(11,3,45927,'Summon Friend'),
+(11,3,59221,'Shadow Resistance'),
+(11,3,59543,'Gift of the Naaru'),
+(11,3,61437,'Opening'),
+(11,5,81,'Dodge'),
+(11,5,198,'One-Handed Maces'),
+(11,5,203,'Unarmed'),
+(11,5,204,'Defense'),
+(11,5,522,'SPELLDEFENSE (DND)'),
+(11,5,585,'Smite'),
+(11,5,668,'Language Common'),
+(11,5,1843,'Disarm'),
+(11,5,2050,'Lesser Heal'),
+(11,5,2382,'Generic'),
+(11,5,2479,'Honorless Target'),
+(11,5,3050,'Detect'),
+(11,5,3365,'Opening'),
+(11,5,5009,'Wands'),
+(11,5,5019,'Shoot'),
+(11,5,6233,'Closing'),
+(11,5,6246,'Closing'),
+(11,5,6247,'Opening'),
+(11,5,6477,'Opening'),
+(11,5,6478,'Opening'),
+(11,5,6603,'Attack'),
+(11,5,7266,'Duel'),
+(11,5,7267,'Grovel'),
+(11,5,7355,'Stuck'),
+(11,5,8386,'Attacking'),
+(11,5,9078,'Cloth'),
+(11,5,9125,'Generic'),
+(11,5,21651,'Opening'),
+(11,5,21652,'Closing'),
+(11,5,22027,'Remove Insignia'),
+(11,5,22810,'Opening - No Text'),
+(11,5,28875,'Gemcutting'),
+(11,5,28878,'Inspiring Presence'),
+(11,5,29932,'Language Draenei'),
+(11,5,45927,'Summon Friend'),
+(11,5,59221,'Shadow Resistance'),
+(11,5,59544,'Gift of the Naaru'),
+(11,5,61437,'Opening'),
+(11,6,81,'Dodge'),
+(11,6,196,'One-Handed Axes'),
+(11,6,197,'Two-Handed Axes'),
+(11,6,200,'Polearms'),
+(11,6,201,'One-Handed Swords'),
+(11,6,202,'Two-Handed Swords'),
+(11,6,203,'Unarmed'),
+(11,6,204,'Defense'),
+(11,6,522,'SPELLDEFENSE (DND)'),
+(11,6,668,'Language Common'),
+(11,6,674,'Dual Wield'),
+(11,6,750,'Plate Mail'),
+(11,6,1843,'Disarm'),
+(11,6,2382,'Generic'),
+(11,6,2479,'Honorless Target'),
+(11,6,3050,'Detect'),
+(11,6,3127,'Parry'),
+(11,6,3275,'Linen Bandage'),
+(11,6,3276,'Heavy Linen Bandage'),
+(11,6,3277,'Wool Bandage'),
+(11,6,3278,'Heavy Wool Bandage'),
+(11,6,3365,'Opening'),
+(11,6,6233,'Closing'),
+(11,6,6246,'Closing'),
+(11,6,6247,'Opening'),
+(11,6,6477,'Opening'),
+(11,6,6478,'Opening'),
+(11,6,6562,'Heroic Presence'),
+(11,6,6603,'Attack'),
+(11,6,7266,'Duel'),
+(11,6,7267,'Grovel'),
+(11,6,7355,'Stuck'),
+(11,6,7928,'Silk Bandage'),
+(11,6,7929,'Heavy Silk Bandage'),
+(11,6,7934,'Anti-Venom'),
+(11,6,8386,'Attacking'),
+(11,6,8737,'Mail'),
+(11,6,9077,'Leather'),
+(11,6,9078,'Cloth'),
+(11,6,9125,'Generic'),
+(11,6,10840,'Mageweave Bandage'),
+(11,6,10841,'Heavy Mageweave Bandage'),
+(11,6,10846,'First Aid'),
+(11,6,18629,'Runecloth Bandage'),
+(11,6,18630,'Heavy Runecloth Bandage'),
+(11,6,21651,'Opening'),
+(11,6,21652,'Closing'),
+(11,6,22027,'Remove Insignia'),
+(11,6,22810,'Opening - No Text'),
+(11,6,28875,'Gemcutting'),
+(11,6,29932,'Language Draenei'),
+(11,6,33391,'Journeyman Riding'),
+(11,6,45462,'Plague Strike'),
+(11,6,45477,'Icy Touch'),
+(11,6,45902,'Blood Strike'),
+(11,6,45903,'Offensive State (DND)'),
+(11,6,45927,'Summon Friend'),
+(11,6,47541,'Death Coil'),
+(11,6,48266,'Blood Presence'),
+(11,6,49410,'Forceful Deflection'),
+(11,6,49576,'Death Grip'),
+(11,6,52665,'Sigil'),
+(11,6,59221,'Shadow Resistance'),
+(11,6,59539,'Shadow Resistance'),
+(11,6,59545,'Gift of the Naaru'),
+(11,6,59879,'Blood Plague'),
+(11,6,59921,'Frost Fever'),
+(11,6,61437,'Opening'),
+(11,6,61455,'Runic Focus'),
+(11,7,81,'Dodge'),
+(11,7,107,'Block'),
+(11,7,198,'One-Handed Maces'),
+(11,7,203,'Unarmed'),
+(11,7,204,'Defense'),
+(11,7,227,'Staves'),
+(11,7,331,'Healing Wave'),
+(11,7,403,'Lightning Bolt'),
+(11,7,522,'SPELLDEFENSE (DND)'),
+(11,7,668,'Language Common'),
+(11,7,1843,'Disarm'),
+(11,7,2382,'Generic'),
+(11,7,2479,'Honorless Target'),
+(11,7,3050,'Detect'),
+(11,7,3365,'Opening'),
+(11,7,6233,'Closing'),
+(11,7,6246,'Closing'),
+(11,7,6247,'Opening'),
+(11,7,6477,'Opening'),
+(11,7,6478,'Opening'),
+(11,7,6603,'Attack'),
+(11,7,7266,'Duel'),
+(11,7,7267,'Grovel'),
+(11,7,7355,'Stuck'),
+(11,7,8386,'Attacking'),
+(11,7,9077,'Leather'),
+(11,7,9078,'Cloth'),
+(11,7,9116,'Shield'),
+(11,7,9125,'Generic'),
+(11,7,21651,'Opening'),
+(11,7,21652,'Closing'),
+(11,7,22027,'Remove Insignia'),
+(11,7,22810,'Opening - No Text'),
+(11,7,27763,'Totem'),
+(11,7,28875,'Gemcutting'),
+(11,7,28878,'Inspiring Presence'),
+(11,7,29932,'Language Draenei'),
+(11,7,45927,'Summon Friend'),
+(11,7,59221,'Shadow Resistance'),
+(11,7,59547,'Gift of the Naaru'),
+(11,7,61437,'Opening'),
+(11,8,81,'Dodge'),
+(11,8,133,'Fireball'),
+(11,8,168,'Frost Armor'),
+(11,8,203,'Unarmed'),
+(11,8,204,'Defense'),
+(11,8,227,'Staves'),
+(11,8,522,'SPELLDEFENSE (DND)'),
+(11,8,668,'Language Common'),
+(11,8,1843,'Disarm'),
+(11,8,2382,'Generic'),
+(11,8,2479,'Honorless Target'),
+(11,8,3050,'Detect'),
+(11,8,3365,'Opening'),
+(11,8,5009,'Wands'),
+(11,8,5019,'Shoot'),
+(11,8,6233,'Closing'),
+(11,8,6246,'Closing'),
+(11,8,6247,'Opening'),
+(11,8,6477,'Opening'),
+(11,8,6478,'Opening'),
+(11,8,6603,'Attack'),
+(11,8,7266,'Duel'),
+(11,8,7267,'Grovel'),
+(11,8,7355,'Stuck'),
+(11,8,8386,'Attacking'),
+(11,8,9078,'Cloth'),
+(11,8,9125,'Generic'),
+(11,8,21651,'Opening'),
+(11,8,21652,'Closing'),
+(11,8,22027,'Remove Insignia'),
+(11,8,22810,'Opening - No Text'),
+(11,8,28875,'Gemcutting'),
+(11,8,28878,'Inspiring Presence'),
+(11,8,29932,'Language Draenei'),
+(11,8,45927,'Summon Friend'),
+(11,8,59221,'Shadow Resistance'),
+(11,8,59548,'Gift of the Naaru'),
+(11,8,61437,'Opening');
diff --git a/sql/updates/7075_01_characters_character_spell.sql b/sql/updates/7075_01_characters_character_spell.sql
new file mode 100644
index 000000000..4e6ef7ea9
--- /dev/null
+++ b/sql/updates/7075_01_characters_character_spell.sql
@@ -0,0 +1,13 @@
+ALTER TABLE character_db_version CHANGE COLUMN required_7067_03_characters_character_spell required_7075_01_characters_character_spell bit;
+
+DELETE FROM character_spell WHERE `spell` IN (
+ 20580, /*old Shadowmeld*/
+ 20600, /*Perception*/
+ 21009, /*old Shadowmeld Passive and new Elusiveness (learned as racial passive)*/
+ 21184 /*old Seal of Righteousness*/
+);
+
+
+/*old Shadow Resistance, leaned as racial passive of race 5 */
+DELETE FROM character_spell USING character_spell INNER JOIN characters ON character_spell.guid = characters.guid
+WHERE character_spell.spell = 20579 AND characters.race <> 5;
diff --git a/sql/updates/7075_02_mangos_spell_learn_spell.sql b/sql/updates/7075_02_mangos_spell_learn_spell.sql
new file mode 100644
index 000000000..4aec0314a
--- /dev/null
+++ b/sql/updates/7075_02_mangos_spell_learn_spell.sql
@@ -0,0 +1,6 @@
+ALTER TABLE db_version CHANGE COLUMN required_7074_01_mangos_playercreateinfo_spell required_7075_02_mangos_spell_learn_spell bit;
+
+DELETE FROM spell_learn_spell WHERE Entry = 58984;
+
+INSERT INTO spell_learn_spell VALUES
+(58984,21009,1);
diff --git a/sql/updates/Makefile.am b/sql/updates/Makefile.am
index 719867fa7..33bc07947 100644
--- a/sql/updates/Makefile.am
+++ b/sql/updates/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -104,6 +104,37 @@ pkgdata_DATA = \
6960_01_mangos_command.sql \
6960_02_mangos_string.sql \
6961_01_mangos_command.sql \
+ 6970_01_mangos_playercreateinfo.sql \
+ 6976_01_realmd_realmd_db_version.sql \
+ 6976_02_characters_character_db_version.sql \
+ 7002_01_mangos_spell_chain.sql \
+ 7015_01_mangos_item_template.sql \
+ 7024_01_mangos_spell_chain.sql \
+ 7026_01_mangos_battleground_template.sql \
+ 7031_01_mangos_spell_proc_event.sql \
+ 7033_01_mangos_spell_proc_event.sql \
+ 7034_01_mangos_spell_proc_event.sql \
+ 7040_01_mangos_achievement_reward.sql \
+ 7044_01_mangos_spell_proc_event.sql \
+ 7047_01_characters_character_spell.sql \
+ 7047_02_mangos_playercreateinfo_action.sql \
+ 7047_03_mangos_playercreateinfo_spell.sql \
+ 7050_01_mangos_spell_proc_event.sql \
+ 7051_01_mangos_spell_proc_event.sql \
+ 7052_01_mangos_spell_proc_event.sql \
+ 7053_01_mangos_spell_proc_event.sql \
+ 7056_01_mangos_spell_proc_event.sql \
+ 7059_01_characters_character_spell.sql \
+ 7059_02_characters_pet_spell.sql \
+ 7060_01_mangos_spell_proc_event.sql \
+ 7061_01_mangos_spell_proc_event.sql \
+ 7063_01_mangos_spell_proc_event.sql \
+ 7067_01_mangos_playercreateinfo_spell.sql \
+ 7067_02_mangos_spell_learn_spell.sql \
+ 7067_03_characters_character_spell.sql \
+ 7074_01_mangos_playercreateinfo_spell.sql \
+ 7075_01_characters_character_spell.sql \
+ 7075_02_mangos_spell_learn_spell.sql \
README
## Additional files to include when running 'make dist'
@@ -188,4 +219,35 @@ EXTRA_DIST = \
6960_01_mangos_command.sql \
6960_02_mangos_string.sql \
6961_01_mangos_command.sql \
+ 6970_01_mangos_playercreateinfo.sql \
+ 6976_01_realmd_realmd_db_version.sql \
+ 6976_02_characters_character_db_version.sql \
+ 7002_01_mangos_spell_chain.sql \
+ 7015_01_mangos_item_template.sql \
+ 7024_01_mangos_spell_chain.sql \
+ 7026_01_mangos_battleground_template.sql \
+ 7031_01_mangos_spell_proc_event.sql \
+ 7033_01_mangos_spell_proc_event.sql \
+ 7034_01_mangos_spell_proc_event.sql \
+ 7040_01_mangos_achievement_reward.sql \
+ 7044_01_mangos_spell_proc_event.sql \
+ 7047_01_characters_character_spell.sql \
+ 7047_02_mangos_playercreateinfo_action.sql \
+ 7047_03_mangos_playercreateinfo_spell.sql \
+ 7050_01_mangos_spell_proc_event.sql \
+ 7051_01_mangos_spell_proc_event.sql \
+ 7052_01_mangos_spell_proc_event.sql \
+ 7053_01_mangos_spell_proc_event.sql \
+ 7056_01_mangos_spell_proc_event.sql \
+ 7059_01_characters_character_spell.sql \
+ 7059_02_characters_pet_spell.sql \
+ 7060_01_mangos_spell_proc_event.sql \
+ 7061_01_mangos_spell_proc_event.sql \
+ 7063_01_mangos_spell_proc_event.sql \
+ 7067_01_mangos_playercreateinfo_spell.sql \
+ 7067_02_mangos_spell_learn_spell.sql \
+ 7067_03_characters_character_spell.sql \
+ 7074_01_mangos_playercreateinfo_spell.sql \
+ 7075_01_characters_character_spell.sql \
+ 7075_02_mangos_spell_learn_spell.sql \
README
diff --git a/sql/updates/README b/sql/updates/README
index 2b0c8974b..6f14366c6 100644
--- a/sql/updates/README
+++ b/sql/updates/README
@@ -1,6 +1,6 @@
= MaNGOS -- README =
-Copyright (c) 2005-2008 MaNGOS
+Copyright (c) 2005-2009 MaNGOS
See the COPYING file for copying conditions.
diff --git a/src/Makefile.am b/src/Makefile.am
index abf76a649..da5fc636f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/Makefile.am b/src/bindings/Makefile.am
index 9080b8d31..2cc0efde4 100644
--- a/src/bindings/Makefile.am
+++ b/src/bindings/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/universal/Makefile.am b/src/bindings/universal/Makefile.am
index d2914329a..9c605004c 100644
--- a/src/bindings/universal/Makefile.am
+++ b/src/bindings/universal/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/universal/ScriptMgr.cpp b/src/bindings/universal/ScriptMgr.cpp
index e2e7349cb..2045386ac 100644
--- a/src/bindings/universal/ScriptMgr.cpp
+++ b/src/bindings/universal/ScriptMgr.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/universal/ScriptMgr.h b/src/bindings/universal/ScriptMgr.h
index 415aa23cc..a05edf493 100644
--- a/src/bindings/universal/ScriptMgr.h
+++ b/src/bindings/universal/ScriptMgr.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/universal/Scripts/sc_default.cpp b/src/bindings/universal/Scripts/sc_default.cpp
index d4a98feaa..bcb0e3302 100644
--- a/src/bindings/universal/Scripts/sc_default.cpp
+++ b/src/bindings/universal/Scripts/sc_default.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/universal/Scripts/sc_defines.cpp b/src/bindings/universal/Scripts/sc_defines.cpp
index f0c732cdd..0f12248d2 100644
--- a/src/bindings/universal/Scripts/sc_defines.cpp
+++ b/src/bindings/universal/Scripts/sc_defines.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/universal/Scripts/sc_defines.h b/src/bindings/universal/Scripts/sc_defines.h
index 6343c02fb..d9c9fde22 100644
--- a/src/bindings/universal/Scripts/sc_defines.h
+++ b/src/bindings/universal/Scripts/sc_defines.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/universal/config.h b/src/bindings/universal/config.h
index 1541db505..a88e03cb8 100644
--- a/src/bindings/universal/config.h
+++ b/src/bindings/universal/config.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/bindings/universal/system.cpp b/src/bindings/universal/system.cpp
index a59b24c7d..6589f0fae 100644
--- a/src/bindings/universal/system.cpp
+++ b/src/bindings/universal/system.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Dynamic/FactoryHolder.h b/src/framework/Dynamic/FactoryHolder.h
index 1c3eea8bc..d564da4a7 100644
--- a/src/framework/Dynamic/FactoryHolder.h
+++ b/src/framework/Dynamic/FactoryHolder.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Dynamic/ObjectRegistry.h b/src/framework/Dynamic/ObjectRegistry.h
index e78874d4b..068d5cd13 100644
--- a/src/framework/Dynamic/ObjectRegistry.h
+++ b/src/framework/Dynamic/ObjectRegistry.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/Grid.h b/src/framework/GameSystem/Grid.h
index 8d2751e9a..f1c826da0 100644
--- a/src/framework/GameSystem/Grid.h
+++ b/src/framework/GameSystem/Grid.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/GridLoader.h b/src/framework/GameSystem/GridLoader.h
index e73913638..cde606646 100644
--- a/src/framework/GameSystem/GridLoader.h
+++ b/src/framework/GameSystem/GridLoader.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/GridRefManager.h b/src/framework/GameSystem/GridRefManager.h
index cf9d4207f..021f0fe8c 100644
--- a/src/framework/GameSystem/GridRefManager.h
+++ b/src/framework/GameSystem/GridRefManager.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/GridReference.h b/src/framework/GameSystem/GridReference.h
index afd118c7f..57440b5a2 100644
--- a/src/framework/GameSystem/GridReference.h
+++ b/src/framework/GameSystem/GridReference.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/NGrid.h b/src/framework/GameSystem/NGrid.h
index 60fcbaaa8..b93e5d9a9 100644
--- a/src/framework/GameSystem/NGrid.h
+++ b/src/framework/GameSystem/NGrid.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/TypeContainer.h b/src/framework/GameSystem/TypeContainer.h
index 849a33385..894027c2f 100644
--- a/src/framework/GameSystem/TypeContainer.h
+++ b/src/framework/GameSystem/TypeContainer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/TypeContainerFunctions.h b/src/framework/GameSystem/TypeContainerFunctions.h
index 1e6685f32..ebfcb1b86 100644
--- a/src/framework/GameSystem/TypeContainerFunctions.h
+++ b/src/framework/GameSystem/TypeContainerFunctions.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/TypeContainerFunctionsPtr.h b/src/framework/GameSystem/TypeContainerFunctionsPtr.h
index 3673668e5..82028782b 100644
--- a/src/framework/GameSystem/TypeContainerFunctionsPtr.h
+++ b/src/framework/GameSystem/TypeContainerFunctionsPtr.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/GameSystem/TypeContainerVisitor.h b/src/framework/GameSystem/TypeContainerVisitor.h
index b6e8da9c6..7ffd14a92 100644
--- a/src/framework/GameSystem/TypeContainerVisitor.h
+++ b/src/framework/GameSystem/TypeContainerVisitor.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Makefile.am b/src/framework/Makefile.am
index 2a62943ab..a519dad42 100644
--- a/src/framework/Makefile.am
+++ b/src/framework/Makefile.am
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2008 MaNGOS
+# Copyright (C) 2005-2009 MaNGOS
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Network/SocketDefines.h b/src/framework/Network/SocketDefines.h
index 2d82f8e05..9658cd60f 100644
--- a/src/framework/Network/SocketDefines.h
+++ b/src/framework/Network/SocketDefines.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Platform/CompilerDefs.h b/src/framework/Platform/CompilerDefs.h
index 3d88bbcec..e835491b4 100644
--- a/src/framework/Platform/CompilerDefs.h
+++ b/src/framework/Platform/CompilerDefs.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Platform/Define.h b/src/framework/Platform/Define.h
index 0f6b4cd46..5602bb365 100644
--- a/src/framework/Platform/Define.h
+++ b/src/framework/Platform/Define.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Policies/CreationPolicy.h b/src/framework/Policies/CreationPolicy.h
index 43312d130..528f6cbbf 100644
--- a/src/framework/Policies/CreationPolicy.h
+++ b/src/framework/Policies/CreationPolicy.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Policies/ObjectLifeTime.cpp b/src/framework/Policies/ObjectLifeTime.cpp
index 0bbb0e4e2..8f56ddb26 100644
--- a/src/framework/Policies/ObjectLifeTime.cpp
+++ b/src/framework/Policies/ObjectLifeTime.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Policies/ObjectLifeTime.h b/src/framework/Policies/ObjectLifeTime.h
index f93283dde..dab37a98c 100644
--- a/src/framework/Policies/ObjectLifeTime.h
+++ b/src/framework/Policies/ObjectLifeTime.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Policies/Singleton.h b/src/framework/Policies/Singleton.h
index 2f77a1d16..9502fb120 100644
--- a/src/framework/Policies/Singleton.h
+++ b/src/framework/Policies/Singleton.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Policies/SingletonImp.h b/src/framework/Policies/SingletonImp.h
index d0ff54f1d..f1f5eaa17 100644
--- a/src/framework/Policies/SingletonImp.h
+++ b/src/framework/Policies/SingletonImp.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Policies/ThreadingModel.h b/src/framework/Policies/ThreadingModel.h
index 9f8eddb30..cb2f79259 100644
--- a/src/framework/Policies/ThreadingModel.h
+++ b/src/framework/Policies/ThreadingModel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/ByteConverter.h b/src/framework/Utilities/ByteConverter.h
index 199edcb6c..c4bf7029a 100644
--- a/src/framework/Utilities/ByteConverter.h
+++ b/src/framework/Utilities/ByteConverter.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/Callback.h b/src/framework/Utilities/Callback.h
index 1e2e07ab9..c2ed36421 100644
--- a/src/framework/Utilities/Callback.h
+++ b/src/framework/Utilities/Callback.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/CountedReference/Reference.h b/src/framework/Utilities/CountedReference/Reference.h
index c06a2eba3..8fd513bb5 100644
--- a/src/framework/Utilities/CountedReference/Reference.h
+++ b/src/framework/Utilities/CountedReference/Reference.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/CountedReference/ReferenceHolder.h b/src/framework/Utilities/CountedReference/ReferenceHolder.h
index 821a240cc..d0bb2cb3e 100644
--- a/src/framework/Utilities/CountedReference/ReferenceHolder.h
+++ b/src/framework/Utilities/CountedReference/ReferenceHolder.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/CountedReference/ReferenceImpl.h b/src/framework/Utilities/CountedReference/ReferenceImpl.h
index a1a7b352b..cd0143748 100644
--- a/src/framework/Utilities/CountedReference/ReferenceImpl.h
+++ b/src/framework/Utilities/CountedReference/ReferenceImpl.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/EventProcessor.cpp b/src/framework/Utilities/EventProcessor.cpp
index 2bcf6a46a..74e1a73fa 100644
--- a/src/framework/Utilities/EventProcessor.cpp
+++ b/src/framework/Utilities/EventProcessor.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/EventProcessor.h b/src/framework/Utilities/EventProcessor.h
index 350db5bb5..e395dd3f6 100644
--- a/src/framework/Utilities/EventProcessor.h
+++ b/src/framework/Utilities/EventProcessor.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/LinkedList.h b/src/framework/Utilities/LinkedList.h
index 9e6f9249c..092ce9ffe 100644
--- a/src/framework/Utilities/LinkedList.h
+++ b/src/framework/Utilities/LinkedList.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/LinkedReference/RefManager.h b/src/framework/Utilities/LinkedReference/RefManager.h
index 080133371..319c3ebf2 100644
--- a/src/framework/Utilities/LinkedReference/RefManager.h
+++ b/src/framework/Utilities/LinkedReference/RefManager.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/LinkedReference/Reference.h b/src/framework/Utilities/LinkedReference/Reference.h
index 3c84704dc..d74723a42 100644
--- a/src/framework/Utilities/LinkedReference/Reference.h
+++ b/src/framework/Utilities/LinkedReference/Reference.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/TypeList.h b/src/framework/Utilities/TypeList.h
index a94e4a280..090f5aeba 100644
--- a/src/framework/Utilities/TypeList.h
+++ b/src/framework/Utilities/TypeList.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/framework/Utilities/UnorderedMap.h b/src/framework/Utilities/UnorderedMap.h
index 32a436f42..3a9a401a4 100644
--- a/src/framework/Utilities/UnorderedMap.h
+++ b/src/framework/Utilities/UnorderedMap.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/game/AccountMgr.cpp b/src/game/AccountMgr.cpp
index 3060554a9..a10b0575f 100644
--- a/src/game/AccountMgr.cpp
+++ b/src/game/AccountMgr.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -23,11 +23,7 @@
#include "Policies/SingletonImp.h"
#include "Util.h"
-#ifdef DO_POSTGRESQL
-extern DatabasePostgre loginDatabase;
-#else
-extern DatabaseMysql loginDatabase;
-#endif
+extern DatabaseType loginDatabase;
INSTANTIATE_SINGLETON_1(AccountMgr);
diff --git a/src/game/AccountMgr.h b/src/game/AccountMgr.h
index 1b74c7134..86d09312c 100644
--- a/src/game/AccountMgr.h
+++ b/src/game/AccountMgr.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/game/AchievementMgr.cpp b/src/game/AchievementMgr.cpp
index e4e26dec1..fb6684892 100644
--- a/src/game/AchievementMgr.cpp
+++ b/src/game/AchievementMgr.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -27,8 +27,13 @@
#include "GameEvent.h"
#include "World.h"
#include "SpellMgr.h"
+#include "ProgressBar.h"
-const CriteriaCastSpellRequirement AchievementMgr::criteriaCastSpellRequirements[CRITERIA_CAST_SPELL_REQ_COUNT] =
+#include "Policies/SingletonImp.h"
+
+INSTANTIATE_SINGLETON_1(AchievementGlobalMgr);
+
+const CriteriaCastSpellRequirement AchievementGlobalMgr::m_criteriaCastSpellRequirements[CRITERIA_CAST_SPELL_REQ_COUNT] =
{
{5272, 3057, 0, 0},
{5273, 2784, 0, 0},
@@ -76,68 +81,6 @@ const CriteriaCastSpellRequirement AchievementMgr::criteriaCastSpellRequirements
{6320, 0, CLASS_PALADIN, RACE_DRAENEI},
{6321, 0, CLASS_HUNTER, RACE_DWARF},
{6662, 31261, 0, 0}
- };
-
-const AchievementReward AchievementMgr::achievementRewards[ACHIEVEMENT_REWARD_COUNT] =
- {
- // achievementId, horde titleid, alliance titleid, itemid
- {45, 0, 0, 43348},
- {46, 78, 78, 0},
- {230, 72, 72, 0},
- {456, 139, 139, 0},
- {614, 0, 0, 44223},
- {619, 0, 0, 44224},
- {714, 47, 47, 0},
- {762, 130, 130, 0},
- {870, 127, 126, 0},
- {871, 144, 144, 0},
- {876, 0, 0, 43349},
- {907, 48, 48, 0},
- {913, 74, 74, 0},
- {942, 79, 79, 0},
- {943, 79, 79, 0},
- {945, 131, 131, 0},
- {948, 130, 130, 0},
- {953, 132, 132, 0},
- {978, 81, 81, 0},
- {1015, 77, 77, 0},
- {1021, 0, 0, 40643},
- {1038, 75, 75, 0},
- {1039, 76, 76, 0},
- {1163, 128, 128, 0},
- {1174, 82, 82, 0},
- {1175, 72, 72, 0},
- {1250, 0, 0, 40653},
- {1400, 120, 120, 0},
- {1402, 122, 122, 0},
- {1516, 83, 83, 0},
- {1563, 84, 84, 0},
- {1656, 124, 124, 0},
- {1657, 124, 124, 0},
- {1658, 129, 129, 0},
- {1681, 125, 125, 43300},
- {1682, 125, 125, 43300},
- {1683, 133, 133, 0},
- {1684, 133, 133, 0},
- {1691, 134, 134, 0},
- {1692, 134, 134, 0},
- {1693, 135, 135, 0},
- {1707, 135, 135, 0},
- {1784, 84, 84, 0},
- {1793, 137, 137, 0},
- {1956, 0, 0, 43824},
- {2051, 140, 140, 0},
- {2054, 121, 121, 0},
- {2096, 0, 0, 44430},
- {2136, 0, 0, 0},// <- TODO: find item for spell 59961
- {2137, 0, 0, 0},// <- TODO: find item for spell 60021
- {2138, 0, 0, 0},// <- TODO: find item for spell 59976
- {2143, 0, 0, 44178},
- {2144, 0, 0, 0},// <- TODO: find item for spell 60024
- {2145, 0, 0, 0},// <- TODO: find item for spell 60024
- {2186, 141, 141, 0},
- {2187, 142, 142, 0},
- {2188, 143, 143, 0}
};
AchievementMgr::AchievementMgr(Player *player)
@@ -363,8 +306,8 @@ void AchievementMgr::CheckAllAchievementCriteria()
*/
void AchievementMgr::UpdateAchievementCriteria(AchievementCriteriaTypes type, uint32 miscvalue1, uint32 miscvalue2, Unit *unit, uint32 time)
{
- sLog.outString("AchievementMgr::UpdateAchievementCriteria(%u, %u, %u, %u)", type, miscvalue1, miscvalue2, time);
- AchievementCriteriaEntryList const& achievementCriteriaList = objmgr.GetAchievementCriteriaByType(type);
+ sLog.outDetail("AchievementMgr::UpdateAchievementCriteria(%u, %u, %u, %u)", type, miscvalue1, miscvalue2, time);
+ AchievementCriteriaEntryList const& achievementCriteriaList = achievementmgr.GetAchievementCriteriaByType(type);
for(AchievementCriteriaEntryList::const_iterator i = achievementCriteriaList.begin(); i!=achievementCriteriaList.end(); ++i)
{
AchievementCriteriaEntry const *achievementCriteria = (*i);
@@ -523,19 +466,9 @@ void AchievementMgr::UpdateAchievementCriteria(AchievementCriteriaTypes type, ui
{
if (!miscvalue1 || miscvalue1 != achievementCriteria->cast_spell.spellID)
continue;
+
// those requirements couldn't be found in the dbc
-
- const CriteriaCastSpellRequirement *requirement = NULL;
- for (uint32 i=0; iID)
- {
- requirement = &criteriaCastSpellRequirements[i];
- break;
- }
- }
-
- if (requirement)
+ if (CriteriaCastSpellRequirement const* requirement = AchievementGlobalMgr::GetCriteriaCastSpellRequirement(achievementCriteria))
{
if (!unit)
continue;
@@ -549,6 +482,7 @@ void AchievementMgr::UpdateAchievementCriteria(AchievementCriteriaTypes type, ui
if (requirement->playerClass && (unit->GetTypeId() != TYPEID_PLAYER || unit->getClass()!=requirement->playerClass))
continue;
}
+
SetCriteriaProgress(achievementCriteria, 1, true);
break;
}
@@ -614,7 +548,26 @@ void AchievementMgr::UpdateAchievementCriteria(AchievementCriteriaTypes type, ui
SetCriteriaProgress(achievementCriteria, 1);
break;
}
+ case ACHIEVEMENT_CRITERIA_TYPE_ROLL_GREED_ON_LOOT:
+ case ACHIEVEMENT_CRITERIA_TYPE_ROLL_NEED_ON_LOOT:
+ {
+ // miscvalue1 = itemid
+ // miscvalue2 = diced value
+ if(!miscvalue1)
+ continue;
+ if(miscvalue2 != achievementCriteria->roll_greed_on_loot.rollValue)
+ continue;
+ ItemPrototype const *pProto = objmgr.GetItemPrototype( miscvalue1 );
+ uint32 requiredItemLevel = 0;
+ if (achievementCriteria->ID == 2412 || achievementCriteria->ID == 2358)
+ requiredItemLevel = 185;
+
+ if(!pProto || pProto->ItemLevel flags & (ACHIEVEMENT_FLAG_REALM_FIRST_REACH | ACHIEVEMENT_FLAG_REALM_FIRST_KILL))
{
// someone on this realm has already completed that achievement
- if(objmgr.allCompletedAchievements.find(achievement->ID)!=objmgr.allCompletedAchievements.end())
+ if(achievementmgr.IsRealmCompleted(achievement))
return false;
}
@@ -678,6 +631,8 @@ bool AchievementMgr::IsCompletedCriteria(AchievementCriteriaEntry const* achieve
return m_completedAchievements.find(achievementCriteria->complete_achievement.linkedAchievement) != m_completedAchievements.end();
case ACHIEVEMENT_CRITERIA_TYPE_REACH_SKILL_LEVEL:
return progress->counter >= achievementCriteria->reach_skill_level.skillLevel;
+ case ACHIEVEMENT_CRITERIA_TYPE_COMPLETE_QUEST_COUNT:
+ return progress->counter >= achievementCriteria->complete_quest_count.totalQuestCount;
case ACHIEVEMENT_CRITERIA_TYPE_COMPLETE_QUESTS_IN_ZONE:
return progress->counter >= achievementCriteria->complete_quests_in_zone.questCount;
case ACHIEVEMENT_CRITERIA_TYPE_COMPLETE_DAILY_QUEST:
@@ -710,6 +665,9 @@ bool AchievementMgr::IsCompletedCriteria(AchievementCriteriaEntry const* achieve
return progress->counter >= achievementCriteria->gain_exalted_reputation.numberOfExaltedFactions;
case ACHIEVEMENT_CRITERIA_TYPE_EXPLORE_AREA:
return progress->counter >= 1;
+ case ACHIEVEMENT_CRITERIA_TYPE_ROLL_GREED_ON_LOOT:
+ case ACHIEVEMENT_CRITERIA_TYPE_ROLL_NEED_ON_LOOT:
+ return progress->counter >= achievementCriteria->roll_greed_on_loot.count;
// handle all statistic-only criteria here
case ACHIEVEMENT_CRITERIA_TYPE_COMPLETE_BATTLEGROUND:
@@ -764,7 +722,7 @@ AchievementCompletionState AchievementMgr::GetAchievementCompletionState(Achieve
void AchievementMgr::SetCriteriaProgress(AchievementCriteriaEntry const* entry, uint32 newValue, bool relative)
{
- sLog.outString("AchievementMgr::SetCriteriaProgress(%u, %u)", entry->ID, newValue);
+ sLog.outDetail("AchievementMgr::SetCriteriaProgress(%u, %u)", entry->ID, newValue);
CriteriaProgress *progress = NULL;
CriteriaProgressMap::iterator iter = m_criteriaProgress.find(entry->ID);
@@ -772,7 +730,7 @@ void AchievementMgr::SetCriteriaProgress(AchievementCriteriaEntry const* entry,
if(iter == m_criteriaProgress.end())
{
progress = &m_criteriaProgress[entry->ID];
- progress->counter = 0;
+ progress->counter = newValue;
progress->date = time(NULL);
}
else
@@ -802,7 +760,7 @@ void AchievementMgr::SetCriteriaProgress(AchievementCriteriaEntry const* entry,
void AchievementMgr::CompletedAchievement(AchievementEntry const* achievement)
{
- sLog.outString("AchievementMgr::CompletedAchievement(%u)", achievement->ID);
+ sLog.outDetail("AchievementMgr::CompletedAchievement(%u)", achievement->ID);
if(achievement->flags & ACHIEVEMENT_FLAG_COUNTER || m_completedAchievements.find(achievement->ID)!=m_completedAchievements.end())
return;
@@ -814,55 +772,58 @@ void AchievementMgr::CompletedAchievement(AchievementEntry const* achievement)
// don't insert for ACHIEVEMENT_FLAG_REALM_FIRST_KILL since otherwise only the first group member would reach that achievement
// TODO: where do set this instead?
if(!(achievement->flags & ACHIEVEMENT_FLAG_REALM_FIRST_KILL))
- objmgr.allCompletedAchievements.insert(achievement->ID);
+ achievementmgr.SetRealmCompleted(achievement);
UpdateAchievementCriteria(ACHIEVEMENT_CRITERIA_TYPE_COMPLETE_ACHIEVEMENT);
- // reward items and titles
- AchievementReward const* reward = NULL;
- for (uint32 i=0; iID)
- {
- reward = &achievementRewards[i];
- break;
- }
- }
+ // reward items and titles if any
+ AchievementReward const* reward = achievementmgr.GetAchievementReward(achievement);
- if (reward)
+ // no rewards
+ if(!reward)
+ return;
+
+ // titles
+ if(uint32 titleId = reward->titleId[GetPlayer()->GetTeam() == HORDE?0:1])
{
- sLog.outString("achiev %u, title= %u, %u", reward->achievementId, reward->titleId[0], reward->titleId[1]);
- uint32 titleId = reward->titleId[GetPlayer()->GetTeam() == HORDE?0:1];
if(CharTitlesEntry const* titleEntry = sCharTitlesStore.LookupEntry(titleId))
GetPlayer()->SetTitle(titleEntry);
+ }
- if (reward->itemId)
+ // mail
+ if(reward->sender)
+ {
+ Item* item = reward->itemId ? Item::CreateItem(reward->itemId,1,GetPlayer ()) : NULL;
+
+ MailItemsInfo mi;
+ if(item)
{
- ItemPrototype const *pProto = objmgr.GetItemPrototype( reward->itemId );
+ // save new item before send
+ item->SaveToDB(); // save for prevent lost at next mail load, if send fail then item will deleted
- if(!pProto)
+ // item
+ mi.AddItem(item->GetGUIDLow(), item->GetEntry(), item);
+ }
+
+ int loc_idx = GetPlayer()->GetSession()->GetSessionDbLocaleIndex();
+
+ // subject and text
+ std::string subject = reward->subject;
+ std::string text = reward->text;
+ if ( loc_idx >= 0 )
+ {
+ if(AchievementRewardLocale const* loc = achievementmgr.GetAchievementRewardLocale(achievement))
{
- GetPlayer()->SendEquipError( EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL );
- return;
- }
-
- ItemPosCountVec dest;
- uint32 no_space = 0;
- uint8 msg = GetPlayer()->CanStoreNewItem( NULL_BAG, NULL_SLOT, dest, reward->itemId, 1, &no_space );
-
- if( msg != EQUIP_ERR_OK )
- {
- GetPlayer()->SendEquipError( msg, NULL, NULL );
- return;
- }
- Item* pItem = GetPlayer()->StoreNewItem( dest, reward->itemId, true);
-
- if(!pItem)
- {
- GetPlayer()->SendEquipError( EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL );
- return;
+ if (loc->subject.size() > size_t(loc_idx) && !loc->subject[loc_idx].empty())
+ subject = loc->subject[loc_idx];
+ if (loc->text.size() > size_t(loc_idx) && !loc->text[loc_idx].empty())
+ text = loc->text[loc_idx];
}
}
+
+ uint32 itemTextId = objmgr.CreateItemText( text );
+
+ WorldSession::SendMailTo(GetPlayer(), MAIL_CREATURE, MAIL_STATIONERY_NORMAL, reward->sender, GetPlayer()->GetGUIDLow(), subject, itemTextId , &mi, 0, 0, MAIL_CHECK_MASK_NONE);
}
}
@@ -908,3 +869,217 @@ void AchievementMgr::BuildAllDataPacket(WorldPacket *data)
*data << int32(-1);
}
+
+//==========================================================
+AchievementCriteriaEntryList const& AchievementGlobalMgr::GetAchievementCriteriaByType(AchievementCriteriaTypes type)
+{
+ return m_AchievementCriteriasByType[type];
+}
+
+void AchievementGlobalMgr::LoadAchievementCriteriaList()
+{
+ for (uint32 entryId = 0; entryIdrequiredType].push_back(criteria);
+ }
+}
+
+
+void AchievementGlobalMgr::LoadCompletedAchievements()
+{
+ QueryResult *result = CharacterDatabase.Query("SELECT achievement FROM character_achievement GROUP BY achievement");
+
+ if(!result)
+ return;
+
+ do
+ {
+ Field *fields = result->Fetch();
+ m_allCompletedAchievements.insert(fields[0].GetUInt32());
+ } while(result->NextRow());
+
+ delete result;
+}
+
+void AchievementGlobalMgr::LoadRewards()
+{
+ m_achievementRewards.clear(); // need for reload case
+
+ // 0 1 2 3 4 5 6
+ QueryResult *result = WorldDatabase.Query("SELECT entry, title_A, title_H, item, sender, subject, text FROM achievement_reward");
+
+ if(!result)
+ {
+ barGoLink bar(1);
+
+ bar.step();
+
+ sLog.outString("");
+ sLog.outString(">> Loaded 0 achievement rewards. DB table `achievement_reward` is empty.");
+ return;
+ }
+
+ barGoLink bar(result->GetRowCount());
+
+ do
+ {
+ Field *fields = result->Fetch();
+ bar.step();
+
+ uint32 entry = fields[0].GetUInt32();
+ if (!sAchievementStore.LookupEntry(entry))
+ {
+ sLog.outErrorDb( "Table `achievement_reward` has wrong achievement (Entry: %u), ignore", entry);
+ continue;
+ }
+
+ AchievementReward reward;
+ reward.titleId[0] = fields[1].GetUInt32();
+ reward.titleId[1] = fields[2].GetUInt32();
+ reward.itemId = fields[3].GetUInt32();
+ reward.sender = fields[4].GetUInt32();
+ reward.subject = fields[5].GetCppString();
+ reward.text = fields[6].GetCppString();
+
+ if ((reward.titleId[0]==0)!=(reward.titleId[1]==0))
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) has title (A: %u H: %u) only for one from teams.", entry, reward.titleId[0], reward.titleId[1]);
+
+ // must be title or mail at least
+ if (!reward.titleId[0] && !reward.titleId[1] && !reward.sender)
+ {
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) not have title or item reward data, ignore.", entry);
+ continue;
+ }
+
+ if (reward.titleId[0])
+ {
+ CharTitlesEntry const* titleEntry = sCharTitlesStore.LookupEntry(reward.titleId[0]);
+ if (!titleEntry)
+ {
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) has invalid title id (%u) in `title_A`, set to 0", entry, reward.titleId[0]);
+ reward.titleId[0] = 0;
+ }
+ }
+
+ if (reward.titleId[1])
+ {
+ CharTitlesEntry const* titleEntry = sCharTitlesStore.LookupEntry(reward.titleId[1]);
+ if (!titleEntry)
+ {
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) has invalid title id (%u) in `title_A`, set to 0", entry, reward.titleId[1]);
+ reward.titleId[1] = 0;
+ }
+ }
+
+ //check mail data before item for report including wrong item case
+ if (reward.sender)
+ {
+ if (!objmgr.GetCreatureTemplate(reward.sender))
+ {
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) has invalid creature entry %u as sender, mail reward skipped.", entry, reward.sender);
+ reward.sender = 0;
+ }
+ }
+ else
+ {
+ if (reward.itemId)
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) not have sender data but have item reward, item will not rewarded", entry);
+
+ if (!reward.subject.empty())
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) not have sender data but have mail subject.", entry);
+
+ if (!reward.text.empty())
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) not have sender data but have mail text.", entry);
+ }
+
+ if (reward.itemId)
+ {
+ if (!objmgr.GetItemPrototype(reward.itemId))
+ {
+ sLog.outErrorDb( "Table `achievement_reward` (Entry: %u) has invalid item id %u, reward mail will be without item.", entry, reward.itemId);
+ reward.itemId = 0;
+ }
+ }
+
+ m_achievementRewards[entry] = reward;
+
+ } while (result->NextRow());
+
+ delete result;
+
+ sLog.outString();
+ sLog.outString( ">> Loaded %u achievement reward locale strings", m_achievementRewardLocales.size() );
+}
+
+void AchievementGlobalMgr::LoadRewardLocales()
+{
+ m_achievementRewardLocales.clear(); // need for reload case
+
+ QueryResult *result = WorldDatabase.Query("SELECT entry,subject_loc1,text_loc1,subject_loc2,text_loc2,subject_loc3,text_loc3,subject_loc4,text_loc4,subject_loc5,text_loc5,subject_loc6,text_loc6,subject_loc7,text_loc7,subject_loc8,text_loc8 FROM locales_achievement_reward");
+
+ if(!result)
+ {
+ barGoLink bar(1);
+
+ bar.step();
+
+ sLog.outString("");
+ sLog.outString(">> Loaded 0 achievement reward locale strings. DB table `locales_achievement_reward` is empty.");
+ return;
+ }
+
+ barGoLink bar(result->GetRowCount());
+
+ do
+ {
+ Field *fields = result->Fetch();
+ bar.step();
+
+ uint32 entry = fields[0].GetUInt32();
+
+ if(m_achievementRewards.find(entry)==m_achievementRewards.end())
+ {
+ sLog.outErrorDb( "Table `locales_achievement_reward` (Entry: %u) has locale strings for not existed achievement reward .", entry);
+ continue;
+ }
+
+ AchievementRewardLocale& data = m_achievementRewardLocales[entry];
+
+ for(int i = 1; i < MAX_LOCALE; ++i)
+ {
+ std::string str = fields[1+2*(i-1)].GetCppString();
+ if(!str.empty())
+ {
+ int idx = objmgr.GetOrNewIndexForLocale(LocaleConstant(i));
+ if(idx >= 0)
+ {
+ if(data.subject.size() <= idx)
+ data.subject.resize(idx+1);
+
+ data.subject[idx] = str;
+ }
+ }
+ str = fields[1+2*(i-1)+1].GetCppString();
+ if(!str.empty())
+ {
+ int idx = objmgr.GetOrNewIndexForLocale(LocaleConstant(i));
+ if(idx >= 0)
+ {
+ if(data.text.size() <= idx)
+ data.text.resize(idx+1);
+
+ data.text[idx] = str;
+ }
+ }
+ }
+ } while (result->NextRow());
+
+ delete result;
+
+ sLog.outString();
+ sLog.outString( ">> Loaded %u achievement reward locale strings", m_achievementRewardLocales.size() );
+}
diff --git a/src/game/AchievementMgr.h b/src/game/AchievementMgr.h
index 6392a9fc6..a34729519 100644
--- a/src/game/AchievementMgr.h
+++ b/src/game/AchievementMgr.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2008 MaNGOS
+ * Copyright (C) 2005-2009 MaNGOS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -19,13 +19,19 @@
#define __MANGOS_ACHIEVEMENTMGR_H
#include "Common.h"
+#include "Policies/Singleton.h"
#include "Database/DBCEnums.h"
#include "Database/DBCStores.h"
#include "Database/DatabaseEnv.h"
+#include