sql
stringlengths
6
1.05M
<reponame>BugsUK/FindApprenticeship<filename>src/SFA.Apprenticeships.Data.AvmsPlus/dbo/Functions/fnx_GetOrganisationCode.sql CREATE FUNCTION [dbo].[fnx_GetOrganisationCode] ( @OrganisationID INT, @OrgType INT ) RETURNS INT AS BEGIN DECLARE @Code INT IF (@OrgType = 1 ) SELECT @Code = EdsUrn from Employer where EmployerId = @OrganisationID IF (@OrgType = 2 ) SELECT @Code = UKPRN from Provider JOIN ProviderSiteRelationship ON Provider.ProviderID = ProviderSiteRelationship.ProviderID JOIN ProviderSiteRelationshipType on ProviderSiteRelationship.ProviderSiteRelationShipTypeID = ProviderSiteRelationshipType.ProviderSiteRelationshipTypeID AND ProviderSiteRelationshipTYpe.ProviderSiteRelationshipTYpeName = N'Owner' JOIN ProviderSite ON ProviderSiteRelationShip.ProviderSiteID = ProviderSite.ProviderSiteID where ProviderSite.ProviderSiteID = @OrganisationID IF (@OrgType = 3 ) SELECT @Code = EDSURN from ThirdParty where ID = @OrganisationID Return @Code END
<reponame>mwcaisse/ShowReminder<filename>ShowReminder.Web/Database/Migrations/V0001__InitialCreate.sql CREATE TABLE EPISODE ( ID BIGINT NOT NULL AUTO_INCREMENT, OVERALL_NUMBER INT NULL, SEASON_NUMBER INT NULL, EPISODE_NUMBER INT NULL, AIR_DATE DATETIME NULL, NAME VARCHAR(250) NULL, OVERVIEW VARCHAR (4000) NULL, CREATE_DATE DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, UPDATE_DATE DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY PK_EPISODE (ID) ); CREATE TABLE `SHOW` ( ID BIGINT NOT NULL AUTO_INCREMENT, TVDB_ID BIGINT NOT NULL, NAME VARCHAR(250) NOT NULL, FIRST_AIRED_DATE DATETIME NULL, AIR_DAY VARCHAR(50) NULL, AIR_TIME VARCHAR(50) NULL, LAST_EPISODE_ID BIGINT NULL, NEXT_EPISODE_ID BIGINT NULL, CREATE_DATE DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, UPDATE_DATE DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY PK_SHOW (ID), FOREIGN KEY FK_EPISODE_LAST (LAST_EPISODE_ID) REFERENCES EPISODE(ID), FOREIGN KEY FK_EPISODE_NEXT (NEXT_EPISODE_ID) REFERENCES EPISODE(ID) );
<reponame>Foxpips/LayeredArchitecture /********************************************************************************************************************* ** ** Procedure Name : h3giCreateTopUpLocation ** Author : <NAME> ** Date Created : 19/04/2006 ** ********************************************************************************************************************** ** ** Description : This stored procedure creates a Top Up Location ** ********************************************************************************************************************** ** ** Change Control : 1.0.0 - Initial version ** : 1.0.1 - <NAME> - added CreateDate and DataSupplier ** **********************************************************************************************************************/ CREATE PROCEDURE dbo.h3giCreateTopUpLocation @StoreID int, @StoreName varchar(50), @StorePhone varchar(30), @StoreAddr1 varchar(50), @StoreAddr2 varchar(50), @StoreCity varchar(50), @Locality varchar(50), @PostCode varchar(2), @StoreCountyID varchar(50), @DataSupplier varchar(20) = '' as BEGIN TRAN insert into h3giTopUpLocation (storeName, storePhoneNumber, storeAddress1, storeAddress2, storeCity, Locality, postCode, storeCounty, DataSupplier, CreateDate) values(@StoreName, @StorePhone, @StoreAddr1, @StoreAddr2, @StoreCity, @Locality, @PostCode, @StoreCountyID, @DataSupplier, getdate()) IF @@Error > 0 BEGIN ROLLBACK TRAN return 1 END ELSE BEGIN COMMIT TRAN return 0 END GRANT EXECUTE ON h3giCreateTopUpLocation TO b4nuser GO GRANT EXECUTE ON h3giCreateTopUpLocation TO ofsuser GO GRANT EXECUTE ON h3giCreateTopUpLocation TO reportuser GO
create table "postgres".test_normalization."nested_stream_with_c___long_names_partition__dbt_tmp" as ( with __dbt__CTE__nested_stream_with_c___long_names_partition_ab1 as ( -- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema select _airbyte_nested_stre__nto_long_names_hashid, jsonb_extract_path("partition", 'double_array_data') as double_array_data, jsonb_extract_path("partition", 'DATA') as "DATA", jsonb_extract_path("partition", 'column`_''with"_quotes') as "column`_'with""_quotes", _airbyte_emitted_at from "postgres".test_normalization."nested_stream_with_c__lting_into_long_names" as table_alias where "partition" is not null -- partition at nested_stream_with_complex_columns_resulting_into_long_names/partition ), __dbt__CTE__nested_stream_with_c___long_names_partition_ab2 as ( -- SQL model to cast each column to its adequate SQL type converted from the JSON schema type select _airbyte_nested_stre__nto_long_names_hashid, double_array_data, "DATA", "column`_'with""_quotes", _airbyte_emitted_at from __dbt__CTE__nested_stream_with_c___long_names_partition_ab1 -- partition at nested_stream_with_complex_columns_resulting_into_long_names/partition ), __dbt__CTE__nested_stream_with_c___long_names_partition_ab3 as ( -- SQL model to build a hash column based on the values of this record select md5(cast( coalesce(cast(_airbyte_nested_stre__nto_long_names_hashid as varchar ), '') || '-' || coalesce(cast(double_array_data as varchar ), '') || '-' || coalesce(cast("DATA" as varchar ), '') || '-' || coalesce(cast("column`_'with""_quotes" as varchar ), '') as varchar )) as _airbyte_partition_hashid, tmp.* from __dbt__CTE__nested_stream_with_c___long_names_partition_ab2 tmp -- partition at nested_stream_with_complex_columns_resulting_into_long_names/partition )-- Final base SQL model select _airbyte_nested_stre__nto_long_names_hashid, double_array_data, "DATA", "column`_'with""_quotes", _airbyte_emitted_at, _airbyte_partition_hashid from __dbt__CTE__nested_stream_with_c___long_names_partition_ab3 -- partition at nested_stream_with_complex_columns_resulting_into_long_names/partition from "postgres".test_normalization."nested_stream_with_c__lting_into_long_names" );
<reponame>PhilippeBinggeli/Hands-On-Data-Science-with-SQL-Server-2017 WITH newData as ( SELECT * FROM (values(@isCorporate, @size, @actionRoute, (select x from @x))) as t(IsCorporate, Size, ActionRoute, MonthAndYear) ) SELECT newData.*, p.* FROM PREDICT(MODEL = @model, DATA = newData) WITH(Units_Pred float) as p
<reponame>uzura8/flockbird ALTER TABLE `album` MODIFY `foreign_table` varchar(64) NOT NULL COMMENT 'Reference table name'; ALTER TABLE `notice` MODIFY `foreign_table` varchar(64) NOT NULL COMMENT 'Reference table name'; ALTER TABLE `member_watch_content` MODIFY `foreign_table` varchar(64) NOT NULL COMMENT 'Reference table name'; ALTER TABLE `timeline` MODIFY `foreign_table` varchar(64) NOT NULL COMMENT 'Reference table name'; ALTER TABLE `timeline` MODIFY `foreign_id` varchar(10) NOT NULL COMMENT 'The id of reference table'; ALTER TABLE `timeline_child_data` MODIFY `foreign_table` varchar(64) NOT NULL COMMENT 'Reference table name'; ALTER TABLE `timeline_child_data` MODIFY `foreign_id` varchar(10) NOT NULL COMMENT 'The id of reference table'; ALTER TABLE `message` MODIFY `foreign_table` varchar(64) NOT NULL COMMENT 'Reference table name'; ALTER TABLE `message` MODIFY `foreign_id` varchar(10) NOT NULL COMMENT 'The id of reference table';
-- Revert procedures/revoke_execute_on_function from pg BEGIN; DROP FUNCTION public.revoke_execute_on_function; COMMIT;
<filename>src/test/resources/fts3query.test_1.sql -- fts3query.test -- -- execsql { -- CREATE VIRTUAL TABLE t1 USING fts3(x); -- BEGIN; -- INSERT INTO t1 VALUES('The source code for SQLite is in the public'); -- } CREATE VIRTUAL TABLE t1 USING fts3(x); BEGIN; INSERT INTO t1 VALUES('The source code for SQLite is in the public');
<filename>zstd--1.0.0--1.1.0.sql<gh_stars>10-100 CREATE OR REPLACE FUNCTION zstd_length(bytea) RETURNS integer AS '$libdir/zstd.so', 'length' LANGUAGE C IMMUTABLE;
<filename>sql/updates/world/already_applied/12_04_29_creature_text.sql<gh_stars>10-100 /* SQLyog Community v9.50 MySQL - 5.5.22 : Database - asdasdasd ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*Table structure for table `creature_text` */ DROP TABLE IF EXISTS `creature_text`; CREATE TABLE `creature_text` ( `entry` mediumint(8) unsigned NOT NULL DEFAULT '0', `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0', `id` tinyint(3) unsigned NOT NULL DEFAULT '0', `content_default` longtext, `type` tinyint(3) unsigned NOT NULL DEFAULT '0', `language` tinyint(3) unsigned NOT NULL DEFAULT '0', `probability` float NOT NULL DEFAULT '0', `emote` mediumint(8) unsigned NOT NULL DEFAULT '0', `duration` mediumint(8) unsigned NOT NULL DEFAULT '0', `sound` mediumint(8) unsigned NOT NULL DEFAULT '0', `content_loc1` longtext, `content_loc2` longtext, `content_loc3` longtext, `content_loc4` longtext, `content_loc5` longtext, `content_loc6` longtext, `content_loc7` longtext, `content_loc8` longtext, `comment` varchar(255) DEFAULT '', PRIMARY KEY (`entry`,`groupid`,`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='CTDB Creature texts'; /*Data for the table `creature_text` */ LOCK TABLES `creature_text` WRITE; insert into `creature_text`(`entry`,`groupid`,`id`,`content_default`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`content_loc1`,`content_loc2`,`content_loc3`,`content_loc4`,`content_loc5`,`content_loc6`,`content_loc7`,`content_loc8`,`comment`) values (40,0,0,'You no take candle!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(40,0,1,'Yiieeeee! Me run!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(80,0,0,'You no take candle!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(80,0,1,'Yiieeeee! Me run!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(94,0,0,'You\'re in the wrong place at the wrong time, friend!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(97,0,0,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(97,0,1,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(116,0,0,'You\'re in the wrong place at the wrong time, friend!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(295,0,0,'So much to do, so much to do! Where does the time go?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OOC say'),(18728,6,1,'Impudent whelps, you only delay the inevitable. Where one has fallen, ten shall rise. Such is the will of Kazzak...',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_RAND2'),(474,1,0,'You\'re in the wrong place at the wrong time, friend!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(475,0,0,'You no take candle!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(475,0,1,'Yiieeeee! Me run!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(476,1,0,'You no take candle!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(478,0,0,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(478,0,1,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(9458,0,1,'Our foes will fail!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kolkar Axe Thrower'),(9458,0,2,'For the Horde',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kolkar Axe Thrower'),(6172,0,0,'Thank you, dear $C, you just saved my life.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(6177,0,0,'Thank you, dear $C, you just saved my life.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(6927,0,0,'You\'re in the wrong place at the wrong time, friend!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(37125,4,0,'Beware the dangers that lie ahead... and do try to remain in one piece.',1,0,0,0,0,17003,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Rupert - SAY_RUPERT_SURVIVE_TALK'),(3389,0,0,'Beware, $N! Look to the west!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regthar Deathgate: quest start'),(3389,1,0,'A defender has fallen!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Regthar Deathgate: Horde Defender death'),(9524,0,0,'Kolkar Invader charges!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kolkar Invader: aggro'),(12379,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(14887,0,0,'The strands of LIFE have been severed! The Dreamers must be avenged!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ysondre - SAY_YSONDRE_AGGRO'),(14887,1,0,'Come forth, ye Dreamers - and claim your vengeance!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ysondre - SAY_YSONDRE_SUMMON_DRUIDS'),(14888,0,0,'I can sense the SHADOW on your hearts. There can be no rest for the wicked!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lethon - SAY_LETHON_AGGRO'),(14888,1,0,'Your wicked souls shall feed my power!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lethon - SAY_LETHON_DRAW_SPIRIT'),(14889,0,0,'Hope is a DISEASE of the soul! This land shall wither and die!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emeriss - SAY_EMERISS_AGGRO'),(14889,1,0,'Taste your world\'s corruption!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emeriss - SAY_EMERISS_CAST_CORRUPTION'),(14890,0,0,'Peace is but a fleeting dream! Let the NIGHTMARE reign!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Taerar - SAY_TAERAR_AGGRO'),(14890,1,0,'Children of Madness - I release you upon this world!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Taerar - SAY_TAERAR_SUMMON_SHADE'),(15367,0,0,'Take heart! Your friends will not long mourn your passing!',0,0,100,0,0,8506,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'text say'),(15643,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(15657,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(37125,3,0,'What an... explosive ending!',1,0,0,0,0,17001,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Rupert - SAY_RUPERT_SECOND_DEATH'),(16206,0,0,'Thank you. I thought I was going to die.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(16208,0,0,'Thanks, I should\'ve never left Silverpine Forest.',0,0,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Apothecary Enith'),(16209,0,0,'You have my thanks!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ranger Vedoran'),(16309,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(37125,2,0,'So that\'s what happens when you stand too close to a bomb!',1,0,0,0,0,17000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Rupert - SAY_RUPERT_KILL'),(16328,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(16332,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(16329,0,0,'Insolence!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Yell'),(37125,1,0,'There is no escaping the Lich King\'s will. Prepare for an explosive encounter!',1,0,0,0,0,16999,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Rupert - SAY_RUPERT_RESURRECTED'),(16518,0,4,'The %s looks confused.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inoculated Nestlewood Owlkin'),(16518,0,3,'The %s didn\'t like what just happened.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inoculated Nestlewood Owlkin'),(16518,0,2,'The %s doesn\'t look like it minds the crystal\'s effects.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inoculated Nestlewood Owlkin'),(16518,0,1,'The %s seems disoriented.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inoculated Nestlewood Owlkin'),(16518,0,0,'The %s seems overjoyed.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inoculated Nestlewood Owlkin'),(37495,2,0,'So that\'s what happens when you stand too close to a bomb!',1,0,0,0,0,17000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Rupert - SAY_RUPERT_KILL'),(17711,3,1,'Directive accomplished.',1,0,0,0,0,11350,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_SLAY_2'),(17711,3,0,'Threat level zero.',1,0,0,0,0,11349,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_SLAY_1'),(17711,2,1,'Engage maximum speed.',1,0,0,0,0,11348,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_OVERRUN_2'),(17711,2,0,'Trajectory locked.',1,0,0,0,0,11347,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_OVERRUN_1'),(17711,1,1,'Magnitude set. Release.',1,0,0,0,0,11346,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_EARTHQUAKE_2'),(17711,1,0,'Tectonic disruption commencing.',1,0,0,0,0,11345,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_EARTHQUAKE_1'),(17711,0,0,'Do not proceed. You will be eliminated!',1,0,0,0,0,11344,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_AGGRO'),(18103,0,0,'Obey the laws of Silvermoon. Failure to do so will result in termination.',0,1,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Arcane Guardian'),(18103,0,1,'Maintain order within these walls.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Arcane Guardian'),(18728,4,0,'The Legion... will never... fall.',1,0,0,0,0,11340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_DEATH'),(18728,5,0,'%s goes into a frenzy!',2,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak EMOTE_FRENZY'),(18728,6,0,'Invaders, you dangle upon the precipice of oblivion! The Burning Legion comes and with it comes your end.',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_RAND1'),(18728,3,2,'The universe will be remade.',1,0,0,0,0,11339,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_KILL3'),(18728,3,1,'Contemptible wretch!',1,0,0,0,0,11338,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_KILL2'),(18728,3,0,'Kirel Narak!',1,0,0,0,0,11337,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_KILL1'),(18728,2,1,'I\'ll rip the flesh from your bones!',1,0,0,0,0,11336,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_SURPREME2'),(18728,2,0,'All life must be eradicated!',1,0,0,0,0,11335,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_SURPREME1'),(18728,1,1,'All mortals will perish!',1,0,0,0,0,11334,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_AGGRO2'),(18728,1,0,'The Legion will conquer all!',1,0,0,0,0,11333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_AGGRO1'),(18728,0,0,'I remember well the sting of defeat at the conclusion of the Third War. I have waited far too long for my revenge. Now the shadow of the Legion falls over this world. It is only a matter of time until all of your failed creation... is undone.',1,0,0,0,0,11332,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kazzak SAY_INTRO'),(19534,0,0,'The creatures of this place are strong, wayfarer. You\'ll need ample ammunition if you hope to survive. You\'re in luck - I am well-stocked with fine arrows, bullets, and throwing weapons. The price is reasonable, considering circumstances.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Dealer Digriz'),(19533,0,0,'A tradesman, perhaps? You need look no further than I for supplies. My prices are quite fair, friend. These items were difficult to acquire, but what does the source matter, eh? You\'ll have what you need.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(20159,1,0,'Spare my life! I will tell you about Arelion\'s secret.',0,1,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(20159,0,0,'If you think I\'ll betray my friend that easily, think again! Face me, you scoundrel!',0,1,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(20242,0,0,'The best selection of smuggled goods is available right here, $N. Great for the whole family! Avoid goblin taxation and naaru prohibition - the Consortium is here to fill your every shopping need!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Karaaz'),(21295,3,0,'%s regains consciousness.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Coilskar Commander'),(21291,6,0,'GET UP YOU ROTTEN PIECE OF TRASH! GET UP BEFORE I END YOU!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Grom\'tor, Son of Oronok'),(21291,5,0,'%s spits on the Coilskar naga.',2,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Grom\'tor, Son of Oronok'),(21291,4,0,'DO I HONESTLY LOOK THAT STUPID TO YOU, NAGA? NOW YOU FEEL PAIN!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Grom\'tor, Son of Oronok'),(21295,2,0,'Yesss... Yesss... Ssset me freee...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Coilskar Commander'),(21291,3,0,'I feel so stupid. Maybe I should unchain you and set you free?',0,0,100,11,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Grom\'tor, Son of Oronok'),(21291,2,0,'No... Of course not. What was I thinking? Why would you have a third of the Cipher of Damnation?',0,0,100,274,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Grom\'tor, Son of Oronok'),(21295,1,0,'The naga do nottt... have thissss... cipherrr...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Coilskar Commander'),(21291,1,0,'Where is the Cipher of Damnation? I know a third of it is in this village.',0,0,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Grom\'tor, Son of Oronok'),(21295,0,0,'Whhaaat... are you sssspeaking of, ssssoft-sskin?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Coilskar Commander'),(21291,0,0,'I\'m through asking nicely, fish-man.',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Grom\'tor, Son of Oronok'),(23859,0,0,'Guards!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Greer Orehammer'),(4370,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(23861,0,3,'The darkness...the corruption...they came too quickly for anyone to know...',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(23861,0,4,'The manor...someone else...will soon be consumed...',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(23861,0,5,'The darkness will consume all...all the living...',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(4371,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37125,0,0,'It was... a worthy afterlife.',1,0,0,0,0,16998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_RUPERT_DEATH'),(23975,1,0,'Water grant me serenity...',0,7,100,20,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thoralius the Wise'),(23975,2,0,'%s inhales the wispy smoke tendrils emanating from the burner.',2,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thoralius the Wise'),(24528,1,0,'You don\'t understand! If I\'m not ready to go soon, all the good homesteading land will be taken!',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Brune Grayblade'),(24052,1,0,'Not my problem! If yer so antsy to get yerself a house built, do it \'ere in the fort and quit yer whinin\'!',0,7,100,274,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Eldrim Mounder'),(24052,0,0,'We don\'t shoe no mules here. \'Sides, it\'s strictly expedition business right now.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Eldrim Mounder'),(24078,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(24321,0,0,'%s motions for silence.',2,0,100,397,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Ymiron emote'),(24321,1,0,'Vrykul, your king implores you to listen!',1,0,100,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Ymiron yell'),(24321,2,0,'The crowd gasps in horror.',2,0,100,53,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Ymiron emote'),(24321,3,0,'Even now, in our darkest hour, they mock us!',1,0,100,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Ymiron yell'),(24321,4,0,'Where are the titans in our time of greatest need? Our women birth abberations - disfigured runts unable to even stand on their own! Weak and ugly... Useless...',1,0,100,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24321,5,0,'Ymiron has toiled. Long have I sat upon my throne and thought hard of our plight. There is only one answer... one reason...',1,0,100,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24321,6,0,'For who but the titans themselves could bestow such a curse? What could have such power?',1,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24321,7,0,'And the answer is nothing... For it is the titans that have cursed us!',1,0,100,53,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24321,8,0,'The crowd cheers.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24321,9,0,'On this day all Vrykul will shed their old beliefs! We denounce our old gods! All Vrykul will pledge their allegiance to Ymiron! Ymiron will protect our noble race!',1,0,100,53,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24321,10,0,'And now my first decree upon the Vrykul! All malformed infants born of Vrykul mother and father are to be destroyed upon birth! Our blood must remain pure always! Those found in violation of Ymiron\'s decree will be taken to Gjalerbron for execution!',1,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Ymiron yell'),(24322,0,0,'Silence!',1,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ancient Citizen of Nifflevar yell'),(24322,1,0,'Show them mercy, my king! They are of our flesh and blood!',1,0,100,53,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ancient Citizen of Nifflevar yell'),(24322,2,0,'All hail our glorious king, Ymiron!',1,0,100,53,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ancient Citizen of Nifflevar yell'),(24323,0,0,'Show the abberations no mercy, Ymiron!',1,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ancient Citizen of Nifflevar yell'),(24323,1,0,'They weaken us! Our strength is dilluted by their very existence! Destroy them all!',1,0,100,113,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ancient Citizen of Nifflevar yell'),(24052,2,0,'Now, if you\'d be so kind as to get your ass away from my forge...',0,7,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Eldrim Mounder'),(24532,2,0,'Remember, honey, we need to get a plot of land with a nice hot spring.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sabetta Ward'),(24532,0,0,'And I don\'t want our land to have any of those horrible wolves, or giants, or ugly rams!',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sabetta Ward'),(24531,0,0,'Yes, darling. You realize you\'ll be eating dire ram mutton for dinner until the crops are planted...',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gavin Ward'),(24532,1,0,'I\'d sooner butcher that mule of yours! Why did you bring that beast in here, anyway?',0,7,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sabetta Ward'),(24534,2,0,'We will win this land with the sword, and break it with the plow! You are the men and women who will be remembered for taming the wild continent!',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24534,3,0,'But, you will not be alone out there. My men and I have prepared pack mules carrying the supplies you\'ll need most.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24534,4,0,'Axes, picks, seed, nails, food, blankets, water... it\'s all there, waiting for you. I think you\'ll find my prices quite reasonable, too.',0,7,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>ue'),(24534,5,0,'There are more than enough to go around. Should you need other goods, don\'t hesitate to ask!',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24534,6,0,'Now, my loyal custo... err, friends, go forth and conquer this land for our people!',0,7,100,274,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(17711,4,0,'System failure in five, f-o-u-r...',1,0,0,0,0,11352,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_DEATH'),(24972,0,0,'Core overload detected. System malfunction detected...',0,2,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(17711,3,2,'Target exterminated.',1,0,0,0,0,11351,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doomwalker SAY_SLAY_3'),(37495,3,0,'What an... explosive ending!',1,0,0,0,0,17001,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Rupert - SAY_RUPERT_SECOND_DEATH'),(25242,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(25243,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(25244,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(25321,0,0,'Thank you for freeing me! May the tides always favor you.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kaskala Craftman'),(25321,0,1,'Do not allow Kaskala to forget what has happened here.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kaskala Craftman'),(25322,0,0,'May the ancestors always aid you, $n, as you have aided me.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kaskala Shaman'),(25322,0,1,'Thank you, $n. May the winds and seas always deliver you safely.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kaskala Shaman'),(25415,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(25428,0,1,'Etu Magmothregar, cha!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25428,0,2,'Kada nu batteka, oht!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25429,0,1,'Etu Magmothregar, cha!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25429,0,2,'Kada nu batteka, oht!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25432,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(25439,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(25467,0,0,'No Touch Spores!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25468,0,0,'No Touch Spores!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25682,0,0,'You cannot stop us!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25753,0,1,'You have been detected. You will be assimilated or eliminated.',0,0,30,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25753,0,2,'Activate counter-measures. Repel intruder.',0,0,30,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25783,0,0,'I\'m flesh and blood again. That\'s all that matters!',0,7,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fizzcrank Survivor'),(25806,0,4,'Just fifty more hooves and I\'ll have the new gun!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25806,0,5,'Give it up, little beast!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25806,0,6,'Nesingwary is going to go broke if he keeps this up! Lane probably has no idea what he\'s doing!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25836,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(25979,0,4,'Just fifty more hooves and I\'ll have the new gun!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25979,0,5,'Give it up, little beast!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25979,0,6,'Nesingwary is going to go broke if he keeps this up! Lane probably has no idea what he\'s doing!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26073,0,0,'Who disturbs my meditation?!',1,7,100,15,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Priest Talet-Kha'),(26196,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(16980,0,0,'Intruders have breached the inner sanctum. Hasten the destruction of the green dragon! Leave only bones and sinew for the reanimation!',1,0,0,0,0,17251,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Lich King - SAY_LICH_KING_INTRO'),(26199,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(26205,1,0,' That was entirely your own fault, Molsen. Maybe you\'ll know to separate your colors from now on...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(26205,2,0,' Fine. Have it your way.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(26334,0,0,'For the thane! For Loken!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26334,0,1,'To battle, my children! Show the enemy no mercy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26334,0,2,'Constructs, defend the capital at all costs!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26392,1,0,'Buckets! Where\'s my laundry?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(26392,2,0,'No way.I\'m a soldier, Buckets. You know, a fighting man... You\'re the laundry boy.And not a very good one! Remember what you did to my tabard?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(26392,3,0,'The tabard was pink when I got it back, Buckets. Pink! Think about that...The whole squad laughed at me for a week! Don\'t let it happen again!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(26392,4,0,'What\'s wrong with you? That was dinner!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 5'),(36789,0,0,'Heroes, lend me your aid. I... I cannot hold them off much longer. You must heal my wounds!',1,0,0,0,0,17064,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Valithria Dreamwalker - SAY_VALITHRIA_ENTER_COMBAT'),(27316,16,0,'Let\'s you and I have a chat about some things, Godfrey.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27316,15,0,'Return to Halford with the information that the good mayor was kind enough to submit, $N. I will finish here and squeeze whatever else this wretch might know about Thel\'zan. Now, I will show Godfrey the rarely seen \"option three.\"',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27316,14,0,'You let us worry about how we kill the monster, Godfrey.',0,7,100,396,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(26796,1,0,'Now we\re getting someplace!',1,0,100,0,0,13195,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26798,1,0,'Our task is not yet done!',1,0,100,0,0,13459,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26817,0,1,'You\'re sending me back there?!',0,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fizzcrank Fighter'),(26943,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(27020,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(27024,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28559,0,4,'The... They promised that we\'d be safe... ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(27577,11,0,'You cannot stop Thel\'zan! He bears the dark gift, bestowed upon him by the Lich King himself!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'May<NAME>'),(27156,2,0,'Yes, yes, I haven\'t forgotten Hyjal, or Silithus, or the march of the Legion, or every other damnable confrontation the 7th Legion has faced. It... I don\'t want the soldiers to hear this, Two--bit, but for the first time in my life...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(27156,1,0,'Grim news, my pint--sized companion. Should we suffer a defeat here the ramifications will be felt across this frozen wasteland. Lord Fordragon and our armies at the Wrathgate will be defenseless against an assault from Naxxramas.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(27156,0,0,'The mine is lost. All of our defenders have perished and the miners resurrected as Scourge aberrations!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(27159,3,0,'I have heard whisperings from the east that our esteemed Scarab Lord has joined the battle, as have entire batallions from Shattrath: heroes blessed by A\'dal himself, granted rank as Hand of A\'dal!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(27159,1,0,'We have been through worse and survived, Leoric. Do not forget Hyjal...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(27159,2,0,'Say no more, Leoric. We all feel the chill in our bones. Yet, each day, heroes arrive from across the world -- and beyond.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(27159,0,0,'It does get worse, old friend. According to my calculations, without suitable materials to repair our parapets, the walls protecting this keep will crumble in twelve hours.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(21295,5,0,'COILSSSKARRR!',0,0,100,15,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Coilskar Commander'),(27191,0,0,'I\'m gonna jump this time Brote, I swear it!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(27198,2,0,'I hope one of us dies. I hope that one is you, Skrotee.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(27198,3,0,'Of all the hair--brained, idiotic, BRAINLESS ideas... \"Yeah Brote, it\'ll be great... The Forsaken will rain gold coins down on our heads!\"',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(27198,4,0,'This is all your fault, you know...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 5'),(27198,1,0,'And you know what pisses me off more than anything, Skrotee? No, not that we\'ve been made into a living cuckoo clock for the amusement of the Forsaken. And not that we have to endure being spat upon and mocked every waking minute of our time here... What pisses me off the most is being made to wear these damned short--shorts...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(27209,0,0,'Come to play?',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(27235,0,0,'Renounce the Scarlet Onslaught! Don\'t listen to the lies of the high general and the grand admiral any longer!',1,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27236,0,0,'Abbendis is nothing but a harlot and Grand Admiral Westwind is selling her cheap like he sold us out!',1,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stable Master Mercer'),(27234,0,0,'You are being misled! The Onslaught is all lies! The Scourge and the Forsaken are not our enemies! Wake up!',1,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27237,0,0,'High general Abbendis personally told me that it was a mistake to come north and that we\'re doomed! I urge you all to lay down your weapons and leave before it\'s too late!',1,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(21295,4,0,'Do not beat the Coilsssskaarrr commander anymore, orc! I will tell you! The cipherrr... It is hidden in one of the chests at Coilssskarrr Point... The naga there hold the keysss...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Coilskar Commander'),(21291,7,0,'I\'m listening...',0,0,100,273,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Grom\'tor, Son of Oronok'),(27577,10,0,'How? Humans truly are stupid, yes? Thel\'zan the Duskbringer! Thel\'zan the Lich! He who is born of human flesh and bone, sacrificed all for power, protected by the Lich King!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27316,13,0,'What? There is a mausoleum beneath the old village? What fools we are to not have noticed! We will find and strike down your master now, Godfrey. We will end this nightmare.',0,7,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27577,9,0,'Humans... Beneath the earth of Wintergarde Village you built a mausoleum! Why do you think Naxxramas attacked that spot? Thel\'zan hides deep in your own crypt and sends a thousand-thousand corpses at you! Perish you will...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27577,8,0,'NOOOO!!! I tell you! I tell you everything!',0,0,100,39,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27316,12,0,'RUBBISH! Godfrey do you take me for a fool? Do not spew your Scourge propaganda at a man of the Light, heathen! Speak now or I will have the peasants craft a holy water bath and dip you into it like a dog with fleas!',0,7,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27316,11,0,'I thought you would see the Light, Godfrey... Now speak quickly, fiend. What does it say?',0,7,100,396,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27577,7,0,'It tells of the coming apocalypse. How this world will burn and be reborn from death.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27577,6,0,'Never felt hurt like this!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27316,10,0,'May the power of Light compel you!',0,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27316,9,0,'LET THE LIGHT IN, GODFREY GOODARD!',0,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27316,7,0,'LIGHT TAKE YOU, BEAST!',0,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27577,5,0,'No more LIGHT! NO MORE! I BEG YOU!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27316,8,0,'BURN IN HOLY FIRE!',0,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27316,6,0,'Let the sermon begin.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(40429,8,0,'Help! I am trapped within this tree! I require aid!',1,0,100,5,0,17490,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(27430,0,0,'The %s gains in power.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Destructive Ward power up'),(27430,1,0,'The %s is fully charged up.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Destructive Ward fully charged'),(27431,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(27440,0,0,'Saurfang is here, Sagai! Saurfang! The brother of Broxigar himself, here to aid our efforts!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(27441,0,0,'Yah. Hellscream, he be a fierce one, but too eager to prove himself, I be thinkin. It be good Saurfang be here, for sure',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(27447,0,0,'There will be no mercy!',1,0,0,0,0,13649,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(27447,1,1,'Blast them! Destroy them!',1,0,0,0,0,13650,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(27447,2,2,'%s calls an Azure Ring Captain!',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(27447,3,3,'They are... too strong! Underestimated their... fortitude.',1,0,0,0,0,13655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(40429,7,0,'I know not the extent of their plans, heroes, but I know this: They cannot be allowed to succeed!',0,0,100,5,0,17498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(27551,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(39746,3,0,'HALION! I...',1,0,100,0,0,17515,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'General Zarithrian'),(27316,5,0,'I say a prayer for you now, lost soul. May the Light take you gracefully.',0,7,100,68,4000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27316,4,0,'Then it is option two.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27577,4,0,'The book is your salvation, yes... but nothing will you know! NOTHING I SAY! NOTHING! ',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27577,3,0,'What can you do to me that Kel\'Thuzad has not? That the Lich King will not?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27577,1,0,'%s hisses!',2,0,100,0,0,410,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27577,2,0,'Tell you nothing, preacher.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27316,2,0,'Good. I have your attention, then, Godfrey?',0,7,100,396,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27316,3,0,'We can do this in one of two ways, Godfrey. First, I will simply ask you to tell me what the unholy markings etched upon the pages of this tome mean. What say you?',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27316,1,0,'GODFREY! Hear me, fiend! Hear me, for I am the Light, here to deliver you from evil!',0,7,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27577,0,0,'%s growls.',2,0,100,0,0,409,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(27316,0,0,'Stand back, $N, the beast might lash out and harm you.',0,7,100,396,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inquisitor Hallard'),(27656,0,0,'You brash interlopers are out of your element! I will ground you!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Boss Eregos - Aggro'),(27656,1,0,'Such insolence... such arrogance... must be PUNISHED!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Boss Eregos - Enrage'),(27656,2,0,'Savor this small victory, foolish little creatures. You and your dragon allies have won this battle. But we will win... the Nexus War.',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Boss Eregos - Death'),(18999,1,4,'The bonelashers of the wastes are no laughing matter. I hear they carry diseases!',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(27683,3,0,'My time is done... I offered myself to Alexstrasza in life, but I have nothing left to offer in death. She will need a new keeper for her shrine.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(27683,1,0,'Dahlia spits on the ground at the thought of the name.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(27683,2,0,'The Lich King is stretching his hand far now... fearlessly treading on the most sacred lands of all the flights. He intends to force us to action',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(18999,1,3,'I don\'t know and I don\'t care.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(18999,1,2,'I could use the extra money.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(27842,0,0,'Bat gizzards again for the gnomes tonight...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fenrick Barlowe text'),(27842,0,1,'What do they expect, making the bats come in at that angle? Broken necks and gamey bat stew, that\'s what they get.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fenrick Barlowe text'),(27842,0,2,'\'We like trees, Fenrick. They provide cover.\' They won\'t let me chop them down, either.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fenrick Barlowe text'),(27842,0,3,'I wonder how many reinforcements need to suffer injury before they allows us to chop down these idiotic trees. They\'re costing us a fortune in bats. Maybe I\'ll rig a harness or two...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fenrick Barlowe text'),(27846,1,0,'Where are you?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(27846,0,0,'Patchy?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(27871,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(27915,0,0,'Good work with the crates! Come talk to me in front of Stratholme for your next assignment!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chromie - SAY_EVENT_START'),(27959,0,0,'You think that you can get rid of me through meditation?',5,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inner Turmoil text 0'),(27959,1,0,'Fool! I will destroy you and finally become that which has been building inside of you all of these years!',5,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inner Turmoil text 1'),(27959,2,0,'You cannot defeat me. I\'m an inseparable part of you!',5,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inner Turmoil text 50%'),(27959,3,0,'NOOOOOOOoooooooooo!',5,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inner Turmoil text death'),(27990,1,0,'From your description, I\'m certain the book I loaned our visitor could allow you to easily identify the weapon.',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Krasus'),(27990,2,0,'I\'m afraid you\'ll have to ask the -- Well, perhaps Kalecgos can help.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Krasus'),(27990,3,0,'$n may have found the remains of a prismatic blade, Kalecgos. Will you offer your help to our visitor?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Krasus'),(27990,4,0,'You believe our allies will not be able to control the power of the swords?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Krasus'),(27990,5,0,'As will we all.',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Krasus'),(27990,6,0,'Please, mortal, speak with Arcanist Tybalin in Dalaran. He may be able to negotiate with the Sunreavers for access to the book.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Krasus'),(27990,7,0,'Please, mortal, seek out <NAME> in Dalaran. He might be able to negotiate with the Silver Covenant for access to the book.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Krasus'),(28068,2,0,'I see you, insect! Come closer',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28068,2,1,'With the power of the wild gods burning in our veins, none, not even the Lich King, can stand in our way!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28068,2,2,'They dare attack us? The fools! Do they not know we are now all-powerful?!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28076,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28078,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(18999,1,1,'I\'m up to looking into that bounty after this shift.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(28086,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(28087,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28095,0,1,'Ahh! It\'s coming right for us!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28095,1,0,'Dumb! Don\'t shoot at it! Gekgek want trophy in one piece!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28095,1,1,'No let it get away! We got it this time.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28095,1,2,'Careful! No let it scratch you like last time.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28103,0,0,'%s begins to emanate a power dark energy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Emote'),(28105,0,0,'Tartek and nasty dragon going to kill you! You so dumb.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28105,0,1,'My treasure! You no steal from Tartek, dumb big-tongue traitor thing.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28111,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28136,0,0,'Thank you, friend. Were it not for your aid I would be no more.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crusader Jonathan rescued text'),(28136,1,0,'',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crusader Jonathan death text'),(28142,0,0,'<sigh>... Well, I suppose it could be worse.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crusader Lamoof rescued text'),(28142,1,0,'<sigh>... This is the end of me.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crusader Lamoof death text'),(28148,0,0,'I am in your debt, friend. Thank you for my life.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crusader Josephine rescued text'),(28148,1,0,'',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crusader Josephine death text'),(30377,0,0,'You are dealing with a being that holds within it the consciousness of the most cunning, intelligent, and ruthless individuals to ever live.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30377,1,0,'The Lich King is unlike any foe that you have ever faced, Highlord. Though you bested him upon the holy ground of Light\'s Hope Chapel, you tread now upon his domain.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(28213,0,0,'The %s screams with rage and rushes to the aid of her babies.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emote Say'),(18999,1,0,'Is that wanted poster all that you\'re going to talk about today?',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(18999,0,4,'This poster has a bounty on bonelashers. You think I should do that?',0,7,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(28474,3,0,'You have more learning ahead of you disciple. Return to your studies.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(28474,2,0,'Frozen solid, ripe for the slaughter. Let loose a howling blast and shatter them into pieces, disciple.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(28474,1,0,'You are not overwhelmed just yet disciple... let the hungering cold of death halt this onslaught.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(28557,0,3,'I picked the wrong week to quit drinkin! ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28557,0,2,'I... I have a sick grandmother at home... I...I\'m all she\'s got.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28557,0,1,'Please, dont kill me! I only took this job for the benefits!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,2,'Where are those ships going,Quimby? Tell us the truth!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,1,'What\'s \"Crimson Down\" We deserve to know the truth,Quimby!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,0,'If you don\'t come out, we\'ll tear this place apart!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,1,5,'Come then,death knight!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,1,4,'DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,1,3,'You may take my life, but you won\'t take my freedom!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,1,2,'Is this the best the Scourge can do?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,1,1,'Die Scourge dog!DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,0,7,'HELP!HELP! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,1,0,'I won\'t go down that easy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,0,6,'Ask for anything and you shall have it! Just spare my life! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,0,5,'I\'m too young to die! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,2,'Where are those ships going,Quimby? Tell us the truth!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,1,'What\'s \"Crimson Down\" We deserve to know the truth,Quimby!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,0,'If you don\'t come out, we\'ll tear this place apart!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,1,5,'Come then,death knight!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,1,4,'DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,1,3,'You may take my life, but you won\'t take my freedom!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,1,2,'Is this the best the Scourge can do?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,1,1,'Die Scourge dog!DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,0,7,'HELP!HELP! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,1,0,'I won\'t go down that easy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,0,6,'Ask for anything and you shall have it! Just spare my life! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,0,5,'I\'m too young to die! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28566,6,1,'That\'ll do. Never know what it\'ll need next...',0,0,100,4,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,6,0,'Good job! Keep your eyes open, now.',0,0,100,4,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,5,0,'The still needs heat! Light the brazier!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,4,0,'Pressure\'s too high! Open the pressure valve!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,3,0,'Add bananas!',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,2,0,'Put a papaya in the still!',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,1,0,'Add another orange, quickly!',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,0,0,'Beginning the distillation in 5 seconds.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28575,0,0,'Filthy $r intruder. DIE! If Rhunok regains his strength, we all die!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,1,4,'The Lich King whispers:Show it the meaning of terror!',2,0,50,0,0,14782,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,1,3,'The Lich King whispers:No survivors!',2,0,50,0,0,14776,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,1,2,'The Lich King whispers:Mercy is for the weak!',2,0,50,0,0,14773,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,1,1,'The Lich King whispers:Finish it!',2,0,50,0,0,14774,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,1,0,'The Lich King whispers:Kill them all!',2,0,50,0,0,14772,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,0,6,'Ask for anything and you shall have it! Just spare my life! ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,0,5,'I\'m too young to die! ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,0,4,'The... They promised that we\'d be safe... ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,0,3,'You make my children orphans on this day,friend! ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,1,4,'The Lich King whispers:Show it the meaning of terror!',2,0,50,0,0,14782,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,1,3,'The Lich King whispers:No survivors!',2,0,50,0,0,14776,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,1,2,'The Lich King whispers:Mercy is for the weak!',2,0,50,0,0,14773,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,1,1,'The Lich King whispers:Finish it!',2,0,50,0,0,14774,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,1,0,'The Lich King whispers:Kill them all!',2,0,50,0,0,14772,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,0,6,'Ask for anything and you shall have it! Just spare my life! ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,0,5,'I\'m too young to die! ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,0,4,'The... They promised that we\'d be safe... ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,0,3,'You make my children orphans on this day,friend! ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28579,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28756,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28803,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28859,3,0,'Few have experienced the pain I will now inflict upon you!',1,0,0,0,0,14523,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Aggro (Phase 2)'),(28859,4,0,'I will teach you IGNORANT children just how little you know of magic...',1,0,0,0,0,14524,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Anti-Magic Shell'),(28859,5,0,'Watch helplessly as your hopes are swept away...',1,0,0,0,0,14525,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Magic Blast'),(28859,6,0,'Your energy will be put to good use!',1,0,0,0,0,14526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player 1 (Phase 2)'),(28859,6,1,'I am the spell-weaver! My power is infinite!',1,0,0,0,0,14527,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player 2 (Phase 2)'),(28859,6,2,'Your spirit will linger here forever!',1,0,0,0,0,14528,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player 3 (Phase 2)'),(28859,7,0,'ENOUGH! If you intend to reclaim Azeroth\'s magic, then you shall have it...',1,0,0,0,0,14529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - End Phase 2'),(28859,8,0,'Now your benefactors make their appearance... But they are too late. The powers contained here are sufficient to destroy the world ten times over! What do you think they will do to you?',1,0,0,0,0,14530,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Intro Phase 3'),(28859,9,0,'SUBMIT!',1,0,0,0,0,14531,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Aggro (Phase 3)'),(28859,10,0,'The powers at work here exceed anything you could possibly imagine!',1,0,0,0,0,14532,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Surge of Power'),(28859,11,0,'I AM UNSTOPPABLE!',1,0,0,0,0,14533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Buffed by a spark'),(28859,12,0,'Alexstrasza! Another of your brood falls!',1,0,0,0,0,14534,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player 1 (Phase 3)'),(28859,12,1,'Little more then gnats!',1,0,0,0,0,14535,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player 2 (Phase 3)'),(28859,12,2,'Your red allies will share your fate...',1,0,0,0,0,14536,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player 3 (Phase 3)'),(28859,13,0,'Still standing? Not for long...',1,0,0,0,0,14537,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Spell Casting 1(Phase 3)'),(28902,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28917,0,0,'Daddy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28918,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(28922,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(28936,0,2,'The Crusade will be victorious!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28936,0,1,'I will present your head to Abbendis myself!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28936,0,0,'Scourge lilth!DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(18999,0,3,'You want to go do the bounty off of this wanted poster after the shift is over?',0,7,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(28941,0,7,'HELP!HELP! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,0,6,'Ask for anything and you shall have it! Just spare my life! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,0,5,'I\'m too young to die! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,0,4,'The... They promised that we\'d be safe... ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,0,3,'You make my children orphans on this day,friend! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,0,7,'HELP!HELP! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,0,6,'Ask for anything and you shall have it! Just spare my life! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,0,5,'I\'m too young to die! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,0,4,'The... They promised that we\'d be safe... ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,0,3,'You make my children orphans on this day,friend! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28945,0,0,'The Crusade will be victorious!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29001,0,0,'Your dark Scourge magic won\'t protect you from the Light!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29001,1,0,'Come out and play!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29001,2,0,'Coward!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29001,3,0,'You have come seeking devilerance? I have come to deliver!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29082,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(29112,1,0,'That\'s how you know it\'s working.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(29112,2,0,'Don\'t be ridiculous. Where would you even go if I did spare you? We just finished eradicating your civilization, remember?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(29193,4,0,'You\'re a monster!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 5'),(29193,3,0,'Please! Spare me! I...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(29193,2,0,'It tingles...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(18999,0,2,'This wanted poster says that they\'re offering gold to these so-called adventurers to go kill things. Isn\'t that what we do? I don\'t think I\'m being paid enough!',0,7,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(18999,0,1,'The Bone Wastes! I don\'t care what\'s being offered as a reward, I\'m not going into the Bone Wastes!',0,7,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(29384,0,0,'Does not compute. Unit malfunctioning. Directive: Shut down.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captive Mechagnome text 0'),(29384,0,1,'New directive: Leave mine and return to Inventor\'s Library.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captive Mechagnome text 1'),(29384,0,2,'New directive: Assist in the defeat of the iron dwarves.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captive Mechagnome text 2'),(29384,0,3,'Free again? Keeper Mimir\'s work awaits.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captive Mechagnome text 3'),(29384,0,4,'Thank you, $r. I will join your struggle against the stormforged.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captive Mechagnome text 4'),(29437,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(29438,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(29439,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(18999,0,0,'Hey, did you read the bounty on this wanted poster?',0,7,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Allerian Defender'),(14507,2,0,'Ssserenity..at lassst!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'venoxis SAY_VENOXIS_DEATH'),(29643,1,0,'That right? Well why don\'t you prance your merry little self over there and grab them, eh?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(29643,2,0,'That\'s strange... for a moment there, I could have swore you called me short.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(29643,3,0,'Toss me? Okay, that\'s it, punk.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(29644,1,0,'Well... I was just thinking... you\'re a bit smaller, so you\'re less likely to set off any of those mines.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(29644,2,0,'No, no, no! Not short... it\'s just... well... maybe I could toss you across most of it?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(14507,1,0,'Let the coils of hate unfurl!',1,0,0,0,0,8421,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'venoxis SAY_VENOXIS_TRANSFORM'),(29735,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(15305,0,0,'Your treachery only speeds your doom. This world will fall to darkness!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Skwol - YELL_ROYAL_AGGRO'),(30017,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(30023,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(30024,0,0,'I am the baddest of the bad, the coolest of the cool! To my side, my elements, let us freeze and rule!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(30025,0,0,'I\'m the king of dirt, there is none higher! To my aid, minions - assist your sire!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(30037,0,0,'I will take pleasure in gutting you',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(27683,4,0,'And thank you... thank you for freeing me from the shackles of the damned. You are a hero... I know you will go on to great deeds',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 5'),(15205,0,0,'Your treachery only speeds your doom. This world will fall to darkness!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bar<NAME> - YELL_ROYAL_AGGRO'),(30224,0,0,'What\'s on yer mind, lad?',0,0,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crusader Lord Dalfors'),(30225,0,0,'Eversong Woods, Dalfors. I\'m thinking about how beautiful it was before Arthas cut a swathe of death through it...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crusader Sunborn'),(15204,0,0,'Your treachery only speeds your doom. This world will fall to darkness!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Marshal Whirlaxis - YELL_ROYAL_AGGRO'),(30274,0,0,'Thank you and farewell, friend. I must return to the Argent Vanguard.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Crusader Speach'),(30277,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(30284,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(15203,0,0,'Your treachery only speeds your doom. This world will fall to darkness!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - YELL_ROYAL_AGGRO'),(30329,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(30377,9,0,'Then you have lost, Highlord.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30377,2,0,'You cannot win. Not like this...',0,0,100,274,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30377,3,0,'Nothing. There is nothing that you can do while the Light binds you. It controls you wholly, shackling you to the ground with its virtues.',0,0,100,274,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30377,4,0,'%s shakes his head.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30377,5,0,'Look upon the field, Highlord. The Lich King has halted your advance completely and won the upper hand!',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30377,6,0,'The breach you created was sealed with Nerubian webbing almost as quickly as it was opened.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30377,7,0,'Your soldiers are being used as living shields to stave off artillery fire in the Valley of Echoes, allowing the forces of the Lich King to assault your base without impediment.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30377,8,0,'The Lich King knows your boundaries, Highlord. He knows that you will not fire on your own men. Do you not understand? He has no boundaries. No rules to abide.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Ebon Watcher'),(30403,0,0,'Look at the size of that thing!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(30404,0,0,'Now the nightmare\'s real.Now Dr. Terrible is here.To make you quake with fear.To make the whole world kneel.And I won\'t feel\n...a thing',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(30407,0,0,'Let\'s get out of here! Quickly!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captured Crusader Start'),(30407,1,0,'Faster, hero! We must get back to the Argent Vanguard and warn them of the impending attack!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captured Crusader Middle'),(30407,1,1,'There are hundreds of them! Maybe thousands! They will attack at any moment! I\'m sure of it!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captured Crusader Middle'),(30407,1,2,'Had you not come along I would have died for sure!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captured Crusader Middle'),(30407,1,3,'They\'re planning a huge attack! We need to warn Highlord Fordring!',0,0,100,2,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captured Crusader Middle'),(30407,2,0,'Thank you, hero.',0,0,100,2,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captured Crusader End'),(30407,2,1,'Thank you, friend, but we\'re not out of trouble yet!',0,0,100,2,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captured Crusader End'),(30453,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(15220,0,0,'What? Such a small, frail thing beckons me? This will not do unpunished!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Duke of Zephyrs - SAY_DUKE_AGGRO'),(30922,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(30951,0,0,'%s becomes frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(31104,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(31397,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(31554,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(15208,0,0,'What? Such a small, frail thing beckons me? This will not do unpunished!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Duke of Shards - SAY_DUKE_AGGRO'),(31812,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(32186,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(32295,2,0,'This resolution pains me deeply, but the destruction, the monumental loss of life had to end. Regardless of Malygos\' recent transgressions, I will mourn his loss. He was once a guardian, a protector. This day, one of the world\'s mightiest has fallen.',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Alexstrasza - Yell Three'),(28859,13,1,'Your cause is lost',1,0,0,0,0,14538,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Spell Casting 2 (Phase 3)'),(28859,13,2,'Your fragile mind will be shattered!',1,0,0,0,0,14539,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Spell Casting 3 (Phase 3)'),(28859,14,0,'Unthinkable! The mortals will destroy... everything... my sister... what have you...',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Death'),(32295,0,0,'I did what I had to, brother. You gave me no alternative.',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Alexstrasza - Yell One'),(32295,1,0,'And so ends the Nexus War.',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Alexstrasza - Yell Two'),(15207,0,0,'What? Such a small, frail thing beckons me? This will not do unpunished!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Duke of Fathoms - SAY_DUKE_AGGRO'),(32736,0,0,'The view up here is amazing!',0,0,0,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(32736,0,1,'Too bad I left my light feathers at home... Slow Fall would work perfect here!',0,0,0,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(32741,0,0,'The view up here is amazing!',0,0,0,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(32741,0,1,'Too bad I left my light feathers at home... Slow Fall would work perfect here!',0,0,0,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(33303,0,0,'Thank you, mortal, for freeing me from this curse. I beg you, take this blade.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maiden of Winter\'s Breath Lake'),(33303,1,0,'It has brought me naught but ill. Mayhap you can find someone who will contain its power.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maiden of Winter\'s Breath Lake'),(33788,0,1,'There you are',0,7,100,273,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fhyron Shadesong'),(33788,0,2,'Grow, little one.',0,7,100,273,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fhyron Shadesong'),(34850,0,2,'Stand ready, guards! We don\'t know how many intruders we\'re dealing with, but the Headlands are overrun and we\'re cut off from the harbor towns. Expect to be outnumbered.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(34850,0,0,'I want the perimeter secured and the gates manned by two guards at all times. No one gets in, no one gets out.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(34850,0,1,'We protected Gilneas from the Scourge. We protected Gilneas during the Northgate rebellion. We will protect Gilneas from whatever this new threat may be.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(34851,0,0,'Why?',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,0,1,'Somebody save me!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,0,2,'Spare my life! I will leave this place forever!Please!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,0,3,'You make my children orphans on this day,friend! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,0,4,'The... They promised that we\'d be safe... ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,0,5,'I\'m too young to die! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,0,6,'Ask for anything and you shall have it! Just spare my life! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,0,7,'HELP!HELP! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,1,0,'I won\'t go down that easy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,1,1,'Die Monster dog!DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,1,2,'You was just a doggy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,1,3,'You may take my life, but you won\'t take my freedom!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,1,4,'DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34851,1,5,'Come then,Wolf!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(34947,0,0,'%s becomes frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(35012,0,0,'%s becomes frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(36612,0,0,'This is the beginning AND the end, mortals. None may enter the master\'s sanctum!',1,0,0,0,0,16950,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_ENTER_ZONE'),(36612,1,0,'The Scourge will wash over this world as a swarm of death and destruction!',1,0,0,0,0,16941,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_AGGRO'),(36612,2,0,'BONE STORM!',1,0,0,0,0,16946,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_BONE_STORM'),(36612,3,0,'Bound by bone!',1,0,0,0,0,16947,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_BONESPIKE_1'),(36612,4,0,'More bones for the offering!',1,0,0,0,0,16942,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_KILL_1'),(36612,5,0,'I see... only darkness...',1,0,0,0,0,16944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_DEATH'),(36612,6,0,'THE MASTER\'S RAGE COURSES THROUGH ME!',1,0,0,0,0,16945,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_BERSERK'),(36626,0,0,'NOOOO! You kill Stinky! You pay!',1,0,0,0,0,16907,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - SAY_STINKY_DEAD'),(36626,1,0,'Fun time!',1,0,0,0,0,16901,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - SAY_AGGRO'),(36626,2,0,'%s farts.',0,0,0,0,0,16911,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - EMOTE_GAS_SPORE'),(36626,3,0,'%s releases Gas Spores!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - EMOTE_WARN_GAS_SPORE'),(36626,4,0,'Gyah! Uhhh, I not feel so good...',1,0,0,0,0,16906,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - SAY_PUNGENT_BLIGHT'),(36626,5,0,'%s begins to cast |cFFFF7F00Pungent Blight!|r',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - EMOTE_WARN_PUNGENT_BLIGHT'),(36626,6,0,'%s vomits.',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - EMOTE_PUNGENT_BLIGHT'),(36626,7,0,'Daddy, I did it!',1,0,0,0,0,16902,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - SAY_KILL_1'),(36626,7,1,'Dead, dead, dead!',1,0,0,0,0,16903,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - SAY_KILL_2'),(36626,8,0,'Fun time over!',1,0,0,0,0,16905,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - SAY_BERSERK'),(36626,9,0,'Da ... Ddy...',1,0,0,0,0,16904,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Festergut - SAY_DEATH'),(36627,0,0,'What? Precious? Noooooooooo!!!',1,0,0,0,0,16993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - SAY_PRECIOUS_DIES'),(36627,1,0,'WEEEEEE!',1,0,0,0,0,16986,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - SAY_AGGRO'),(36627,2,0,'%s begins to cast Slime Spray!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - EMOTE_SLIME_SPRAY'),(36627,3,0,'Icky sticky.',1,0,0,0,0,16991,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - SAY_SLIME_SPRAY'),(36627,4,0,'|TInterfaceIconsspell_shadow_unstableaffliction_2.blp:16|t%s begins to cast |cFFFF0000Unstable Ooze Explosion!|r',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - EMOTE_UNSTABLE_EXPLOSION'),(36627,5,0,'I think I made an angry poo-poo. It gonna blow!',1,0,0,0,0,16992,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - SAY_UNSTABLE_EXPLOSION'),(36627,6,0,'Daddy make toys out of you!',1,0,0,0,0,16988,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - SAY_KILL_1'),(36627,6,1,'I brokes-ded it...',1,0,0,0,0,16987,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - SAY_KILL_2'),(36627,7,0,'Sleepy Time!',1,0,0,0,0,16990,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - SAY_BERSERK'),(36627,8,0,'Bad news daddy...',1,0,0,0,0,16989,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - SAY_DEATH'),(36678,0,0,'Just an ordinary gas cloud. But watch out, because that\'s no ordinary gas cloud!',1,0,0,432,0,17119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Professor Putricide - SAY_GASEOUS_BLIGHT'),(36678,1,0,'Oh, Festergut. You were always my favorite. Next to Rotface. The good news is you left behind so much gas, I can practically taste it!',1,0,0,0,0,17124,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Professor Putricide - SAY_FESTERGUT_DEATH'),(36678,2,0,'Great news, everyone! The slime is flowing again!',1,0,0,1,0,17126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Professor Putricide - SAY_ROTFACE_OOZE_FLOOD1'),(36678,2,1,'Good news, everyone! I\'ve fixed the poison slime pipes!',1,0,0,1,0,17123,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Professor Putricide - SAY_ROTFACE_OOZE_FLOOD2'),(36678,3,0,'Terrible news, everyone, Rotface is dead! But great news everyone, he left behind plenty of ooze for me to use! Whaa...? I\'m a poet, and I didn\'t know it? Astounding!',1,0,0,0,0,17146,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_ROTFACE_DEATH'),(36678,4,0,'Good news, everyone! I think I perfected a plague that will destroy all life on Azeroth!',1,0,0,0,0,17114,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_AGGRO'),(36678,5,0,'%s begins to cast Unstable Experiment!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - EMOTE_UNSTABLE_EXPERIMENT'),(36678,6,0,'Two oozes, one room! So many delightful possibilities...',1,0,0,0,0,17122,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_PHASE_TRANSITION_HEROIC'),(36678,7,0,'Hmm. I don\'t feel a thing. Whaa...? Where\'d those come from?',1,0,0,15,0,17120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_TRANSFORM_1'),(36678,8,0,'Tastes like... Cherry! Oh! Excuse me!',1,0,0,15,0,17121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_TRANSFORM_2'),(36678,9,0,'|TInterfaceIconsinv_misc_herb_evergreenmoss.blp:16|t%s cast |cFF00FF00Malleable Goo!|r',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - EMOTE_MALLEABLE_GOO'),(36678,10,0,'%s cast |cFFFF7F00Choking Gas Bomb!|r',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - EMOTE_CHOKING_GAS_BOMB'),(36678,11,0,'Hmm... Interesting...',1,0,0,0,0,17115,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_KILL_1'),(36678,11,1,'That was unexpected!',1,0,0,0,0,17116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_KILL_2'),(36678,12,0,'Great news, everyone!',1,0,0,0,0,17118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_BERSERK'),(36678,13,0,'Bad news, everyone! I don\'t think I\'m going to make it.',1,0,0,0,0,17117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_DEATH'),(36774,0,1,'You won\'t escape from us so easily!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Silver Covenant Agent'),(36776,0,1,'You\'ll never run us out of the city, Silver Covenant thug!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sunreaver Agent'),(37495,1,0,'There is no escaping the Lich King\'s will. Prepare for an explosive encounter!',1,0,0,0,0,16999,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Rupert - SAY_RUPERT_RESURRECTED'),(37494,2,0,'Can you feel the burn?',1,0,0,0,0,16846,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Grondel - SAY_GRONDEL_KILL'),(37494,3,0,'What... have I done? No!',1,0,0,0,0,16847,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Grondel - SAY_GRONDEL_SECOND_DEATH'),(37494,1,0,'No! Why was I denied a death by flame? You must all BURN!',1,0,0,0,0,16845,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Grondel - SAY_GRONDEL_RESURRECTED'),(37493,2,0,'It doesn\'t hurt anymore, does it?',1,0,0,0,0,16812,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Brandon - SAY_BRANDON_KILL'),(37493,3,0,'I\'m sorry...',1,0,0,0,0,16813,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Brandon - SAY_BRANDON_SECOND_DEATH'),(37493,1,0,'What? This strength...? All of the pain is gone! You... must join me in the eternal embrace of death!',1,0,0,0,0,16811,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Brandon - SAY_BRANDON_RESURRECTED'),(36853,8,0,'Perish!',1,0,0,0,0,17008,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_KILL 1'),(36853,2,0,'%s prepares to unleash a wave of blistering cold!',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - EMOTE_WARN_BLISTERING_COLD'),(36853,3,0,'Can you feel the cold hand of death upon your heart?',1,0,0,0,0,17013,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_BLISTERING_COLD'),(36853,4,0,'Aaah! It burns! What sorcery is this?!',1,0,0,0,0,17015,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_RESPITE_FOR_A_TORMENTED_SOUL'),(36853,5,0,'Your incursion ends here! None shall survive!',1,0,0,0,0,17012,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_AIR_PHASE'),(36853,6,0,'Now feel my master\'s limitless power and despair!',1,0,0,0,0,17016,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_PHASE_2'),(36853,7,0,'%s fires a frozen orb towards $N!',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - EMOTE_WARN_FROZEN_ORB'),(36855,0,0,'You have found your way here, because you are among the few gifted with true vision in a world cursed with blindness.',1,0,0,0,0,17272,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_INTRO_1'),(36855,1,0,'You can see through the fog that hangs over this world like a shroud, and grasp where true power lies.',1,0,0,0,0,17273,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_INTRO_2'),(36855,2,0,'Fix your eyes upon your crude hands: the sinew, the soft meat, the dark blood coursing within.',1,0,0,0,0,16878,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_INTRO_3'),(36855,3,0,'It is a weakness; a crippling flaw.... A joke played by the Creators upon their own creations.',1,0,0,0,0,17268,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_INTRO_4'),(36855,4,0,'The sooner you come to accept your condition as a defect, the sooner you will find yourselves in a position to transcend it.',1,0,0,0,0,17269,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_INTRO_5'),(36855,5,0,'Through our Master, all things are possible. His power is without limit, and his will unbending.',1,0,0,0,0,17270,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_INTRO_6'),(36855,6,0,'Those who oppose him will be destroyed utterly, and those who serve -- who serve wholly, unquestioningly, with utter devotion of mind and soul -- elevated to heights beyond your ken.',1,0,0,0,0,17271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_INTRO_7'),(36855,7,0,'What is this disturbance?! You dare trespass upon this hallowed ground? This shall be your final resting place.',1,0,0,0,0,16868,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_AGGRO'),(36855,8,0,'Enough! I see I must take matters into my own hands!',1,0,0,0,0,16877,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_PHASE_2'),(36855,9,0,'%s\'s Mana Barrier shimmers and fades away!',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_PHASE_2_EMOTE'),(36855,10,0,'You are weak, powerless to resist my will!',1,0,0,0,0,16876,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_DOMINATE_MIND'),(36855,11,0,'Take this blessing and show these intruders a taste of our master\'s power.',1,0,0,0,0,16873,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_DARK_EMPOWERMENT'),(36855,12,0,'I release you from the curse of flesh!',1,0,0,0,0,16874,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_DARK_TRANSFORMATION'),(36855,13,0,'Arise and exult in your pure form!',1,0,0,0,0,16875,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_ANIMATE_DEAD'),(36855,14,0,'Do you yet grasp of the futility of your actions?',1,0,0,0,0,16869,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_KILL_1'),(36855,14,1,'Embrace the darkness... Darkness eternal!',1,0,0,0,0,16870,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_KILL_2'),(36855,15,0,'This charade has gone on long enough.',1,0,0,0,0,16872,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_BERSERK'),(36855,16,0,'All part of the masters plan! Your end is... inevitable!',1,0,0,0,0,16871,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lady Deathwhisper - SAY_DEATH'),(36789,2,0,'My strength is returning! Press on, heroes!',1,0,0,0,0,17070,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Valithria Dreamwalker - SAY_VALITHRIA_75_PERCENT'),(36789,1,0,'I have opened a portal into the Dream. Your salvation lies within, heroes...',1,0,0,0,0,17068,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Valithria Dreamwalker - SAY_VALITHRIA_DREAM_PORTAL'),(37119,0,0,'This is our final stand. What happens here will echo through the ages. Regardless of outcome, they will know that we fought with honor. That we fought for the freedom and safety of our people!',1,0,0,22,0,16653,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring - SAY_TIRION_INTRO_1'),(37119,1,0,'Remember, heroes, fear is your greatest enemy in these befouled halls. Steel your heart and your soul will shine brighter than a thousand suns. The enemy will falter at the sight of you. They will fall as the light of righteousness envelops them!',1,0,0,22,0,16654,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring - SAY_TIRION_INTRO_2'),(37119,2,0,'Our march upon Icecrown Citadel begins now!',1,0,0,22,0,16655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring - SAY_TIRION_INTRO_3'),(37122,4,0,'The loss of our comrades was unpreventable. They lived and died in the service of the Argent Crusade.',1,0,0,0,0,16590,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_SURVIVE_TALK'),(37122,5,0,'Even dying here beats spending another day collecting reagents for that madman, Finklestein.',1,0,0,0,0,16585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_INTRO_2'),(37123,0,0,'No amount of healing can save me now. Fight on, brothers...',1,0,0,0,0,16810,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Brandon - SAY_BRANDON_DEATH'),(37123,1,0,'What? This strength...? All of the pain is gone! You... must join me in the eternal embrace of death!',1,0,0,0,0,16811,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Brandon - SAY_BRANDON_RESURRECTED'),(37123,2,0,'It doesn\'t hurt anymore, does it?',1,0,0,0,0,16812,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Brandon - SAY_BRANDON_KILL'),(37123,3,0,'I\'m sorry...',1,0,0,0,0,16813,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Brandon - SAY_BRANDON_SECOND_DEATH'),(37123,4,0,'You have done much in this war against the Scourge. May the light embrace you.',1,0,0,0,0,16815,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Brandon - SAY_BRANDON_SURVIVE_TALK'),(37124,0,0,'Please... burn my remains. Let me live warm in the afterlife...',1,0,0,0,0,16844,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Grondel - SAY_GRONDEL_DEATH'),(37124,1,0,'No! Why was I denied a death by flame? You must all BURN!',1,0,0,0,0,16845,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Grondel - SAY_GRONDEL_RESURRECTED'),(37124,2,0,'Can you feel the burn?',1,0,0,0,0,16846,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Grondel - SAY_GRONDEL_KILL'),(37124,3,0,'What... have I done? No!',1,0,0,0,0,16847,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Grondel - SAY_GRONDEL_SECOND_DEATH'),(37124,4,0,'What can possibly redeem this unholy place? Thank you...',1,0,0,0,0,16849,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Capt<NAME> - SAY_GRONDEL_SURVIVE_TALK'),(37126,0,0,'You may have once fought beside me, Crok, but now you are nothing more than a traitor. Come, your second death approaches!',1,0,0,0,0,17017,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svalna - SAY_EVENT_START'),(37126,1,0,'Miserable creatures! Die!',1,0,0,0,0,17018,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svalna - SAY_KILL_CAPTAIN'),(37126,2,0,'Foolish Crok. You brought my reinforcements with you. Arise, Argent Champions, and serve the Lich King in death!',1,0,0,0,0,17019,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svanlna - SAY_RESURRECT_CAPTAINS'),(37126,3,0,'Come, Scourgebane. I\'ll show the master which of us is truly worthy of the title of \"Champion\"!',1,0,0,0,0,17020,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svalna - SAY_AGGRO'),(37126,4,0,'What a pitiful choice of an ally, Crok!',1,0,0,0,0,17021,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svalna - SAY_KILL'),(37126,5,0,'What? They died so easily? No matter.',1,0,0,0,0,17022,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svalna - SAY_CAPTAIN_DEATH'),(37126,6,0,'Perhaps... you were right, Crok.',1,0,0,0,0,17023,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svalna - SAY_DEATH'),(37126,7,0,'%s has impaled $N!',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svalna - EMOTE_SVALNA_IMPALE'),(37126,8,0,'%s\'s Aether Shield has been shattered by $N!',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sister Svalna - EMOTE_SVALNA_BROKEN_SHIELD'),(37129,0,0,'Ready your arms, my Argent Brothers. The Vrykul will protect the Frost Queen with their lives.',1,0,0,0,0,16819,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_INTRO_1'),(37129,1,0,'Enough idle banter! Our champions have arrived - support them as we push our way through the hall!',1,0,0,0,0,16820,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_INTRO_3'),(37129,2,0,'Draw them back to us, and we\'ll assist you.',1,0,0,0,0,16821,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_COMBAT_WP_0'),(37129,3,0,'Quickly, push on!',1,0,0,0,0,16823,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_COMBAT_WP_1'),(37129,4,0,'Her reinforcements will arrive shortly, we must bring her down quickly!',1,0,0,0,0,16824,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_FINAL_WP'),(37129,5,0,'I\'ll draw her attacks. Return our brothers to their graves, then help me bring her down!',1,0,0,15,0,16826,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_COMBAT_SVALNA'),(37129,6,0,'I must rest for a moment',1,0,0,0,0,16826,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_WEAKENING_GAUNTLET'),(37129,7,0,'Champions, I cannot hold her back any longer!',1,0,0,0,0,16827,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_WEAKENING_SVALNA'),(37181,1,0,'You could have been my greatest champion, Fordring: A force of darkness that would wash over this world and deliver it into a new age of strife.',1,0,0,0,0,17231,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Lich King - SAY_LK_INTRO_2'),(37187,15,0,'The paladin still lives? Is it possible, Highlord? Could he have survived?',0,0,0,6,0,17107,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_SAURFANG_INTRO_1'),(37181,3,0,'The breaking of this one has been taxing. The atrocities I have committed upon his soul. He has resisted for so long, but he will bow down before his king soon.',1,0,0,0,0,17233,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Lich King - SAY_LK_INTRO_4'),(37181,4,0,'In the end, you will all serve me.',1,0,0,0,0,17234,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Lich King - SAY_LK_INTRO_5'),(37183,0,0,'NEVER! I... I will never... serve... you...',1,0,0,0,0,17078,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Bolvar Fordragon - SAY_BOLVAR_INTRO_1'),(37187,0,0,'Kor\'kron, move out! Champions, watch your backs. The Scourge have been...',1,0,0,22,0,17103,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_1'),(37187,1,0,'My boy died at the Wrath Gate. I am here only to collect his body.',0,0,0,397,0,17097,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_3'),(37187,2,0,'We named him Dranosh. It means \"Heart of Draenor\" in orcish. I would not let the warlocks take him. My boy would be safe, hidden away by the elders of Garadar.',0,0,0,1,0,17098,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_5'),(37187,3,0,'I made a promise to his mother before she died; that I would cross the Dark Portal alone - whether I lived or died, my son would be safe. Untainted...',0,0,0,1,0,17099,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_6'),(37187,4,0,'Today, I fulfill that promise.',0,0,0,397,0,17100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_7'),(37187,5,0,'High Overlord Saurfang charges!',2,0,0,53,0,17104,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_8'),(37187,6,0,'Behind you lies the body of my only son. Nothing will keep me from him.',0,0,0,0,0,17094,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_ALLIANCE_8'),(37187,7,0,'High Overlord Saurfang walks over to his son and kneels before his son\'s body.',2,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_ALLIANCE_12'),(37187,8,0,'[Orcish] No\'ku kil zil\'nok ha tar.',0,0,0,0,0,17096,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_ALLIANCE_13'),(37187,9,0,'Higher Overlord Saurfang picks up the body of his son and walks over towards Varian',2,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_ALLIANCE_14'),(37187,10,0,'I will not forget this... kindness. I thank you, Highness',0,0,0,0,0,17095,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_ALLIANCE_15'),(37187,11,0,'%s coughs.',2,0,0,0,0,17105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_HORDE_1'),(37187,12,0,'%s weeps over the corpse of his son.',2,0,0,15,0,17106,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_HORDE_2'),(37187,13,0,'You will have a proper ceremony in Nagrand next to the pyres of your mother and ancestors.',0,0,0,0,0,17101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_HORDE_3'),(37187,14,0,'Honor, young heroes... no matter how dire the battle... Never forsake it!',0,0,0,0,0,17102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_OUTRO_HORDE_4'),(37187,18,0,'Kor\'kron, prepare Orgrim\'s Hammer for its final voyage! Champions, our gunship will find a point to dock on the upper reaches of the citadel. Meet us there!',1,0,0,22,0,17110,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_SAURFANG_INTRO_4'),(37119,3,0,'ARTHAS! I swore that I would see you dead and the Scourge dismantled! I\'m going to finish what I started at Light\'s Hope!',1,0,0,22,0,16656,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring - SAY_TIRION_INTRO_4'),(37181,0,0,'You now stand upon the hallowed ground of the Scourge. The Light won\'t protect you here, paladin. Nothing will protect you...',1,0,0,0,0,17230,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Lich King - SAY_LK_INTRO_1'),(37188,0,0,'%s cries.',0,0,0,18,0,16651,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_17'),(37188,1,0,'It was nothing, your majesty. Just... I\'m proud of my king.',0,0,0,0,0,16652,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'L<NAME> - SAY_OUTRO_ALLIANCE_19'),(37200,0,0,'Let\'s get a move on then! Move ou...',1,0,0,0,0,16974,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_1'),(37200,1,0,'A lone orc against the might of the Alliance???',1,0,0,0,0,16970,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_4'),(37200,2,0,'Charge!!!',1,0,0,0,0,16971,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_5'),(37200,3,0,'%s gasps for air.',0,0,0,0,0,16975,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_1'),(37200,4,0,'That was Saurfang\'s boy - the Horde commander at the Wrath Gate. Such a tragic end...',0,0,0,0,0,16976,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_2'),(37200,5,0,'What in the... There, in the distance!',0,0,0,0,0,16977,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_3'),(37200,6,0,'A Horde Zeppelin flies up to the rise.',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_4'),(37200,7,0,'Soldiers, fall in! Looks like the Horde are comin\' to take another shot!',1,0,0,0,0,16978,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_5'),(37200,8,0,'The Zeppelin docks, and High Overlord Saurfang hops out, confronting the Alliance soldiers and Muradin',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>ard - SAY_OUTRO_ALLIANCE_6'),(37200,9,0,'Don\'t force me hand, orc. We can\'t let ye pass.',0,0,0,0,0,16972,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_7'),(37200,10,0,'I... I can\'t do it. Get back on yer ship and we\'ll spare yer life.',0,0,0,0,0,16973,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_9'),(37200,11,0,'A mage portal from Stormwind appears between the two and <NAME> and <NAME> emerge.',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_10'),(37200,12,0,'Right away, yer majesty!',0,0,0,0,0,16979,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_OUTRO_ALLIANCE_21'),(37119,4,0,'The power of the Light knows no bounds, Saurfang. His soul is under great strain, but he lives - for now.',0,0,0,1,0,16658,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring - SAY_TIRION_INTRO_5'),(37181,2,0,'But that honor is no longer yours. Soon, I will have a new champion.',1,0,0,0,0,17232,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Lich King - SAY_LK_INTRO_3'),(37200,13,0,'Could it be, <NAME>? If Bolvar lives, mayhap there is hope fer peace between the Alliance and the Horde. We must reach the top o\' this cursed place and free the paladin!',0,0,0,6,0,16980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_SAURFANG_INTRO_2'),(15206,0,0,'What? Such a small, frail thing beckons me? This will not do unpunished!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Duke of Cynders - SAY_DUKE_AGGRO'),(37217,0,0,'%s cries out with a loud, baying howl!',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Precious - EMOTE_PRECIOUS_ZOMBIES'),(36789,3,0,'I will not last much longer!',1,0,0,0,0,17069,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Valithria Dreamwalker - SAY_VALITHRIA_25_PERCENT'),(36789,4,0,'Forgive me for what I do! I... cannot... stop... ONLY NIGHTMARES REMAIN!',1,0,0,0,0,17072,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Valithria Dreamwalker - SAY_VALITHRIA_DEATH'),(36789,5,0,'A tragic loss...',1,0,0,0,0,17066,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Valithria Dreamwalker - SAY_VALITHRIA_PLAYER_DEATH'),(36789,6,0,'FAILURES!',1,0,0,0,0,17067,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Valithria Dreamwalker - SAY_VALITHRIA_BERSERK'),(36789,7,0,'I am renewed! Ysera grants me the favor to lay these foul creatures to rest!',1,0,0,0,0,17071,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Valithria Dreamwalker - SAY_VALITHRIA_SUCCESS'),(37491,1,0,'You miserable fools never did manage to select a decent bat wing.',1,0,0,0,0,16587,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_RESURRECTED'),(37491,2,0,'THAT was for bringing me spoiled spider ichor!',1,0,0,0,0,16588,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_KILL'),(37007,0,0,'The master\'s sanctum has been disturbed!',1,0,0,0,0,16865,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbound Ward - SAY_TRAP_ACTIVATE'),(37491,3,0,'Don\'t... let Finklestein use me... for his potions...',1,0,0,0,0,16589,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_SECOND_DEATH'),(37007,0,1,'I... awaken!',1,0,0,0,0,16866,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbound Ward - SAY_TRAP_ACTIVATE'),(37007,0,2,'Who... goes there...?',1,0,0,0,0,16867,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbound Ward - SAY_TRAP_ACTIVATE'),(37813,0,0,'For every Horde soldier that you killed -- for every Alliance dog that fell, the Lich King\'s armies grew. Even now the val\'kyr work to raise your fallen as Scourge.',1,0,0,0,0,16701,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_INTRO_ALLIANCE_2'),(37813,1,0,'Things are about to get much worse. Come, taste the power that the Lich King has bestowed upon me!',1,0,0,0,0,16702,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_INTRO_ALLIANCE_3'),(37813,2,0,'Dwarves...',1,0,0,0,0,16703,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_INTRO_ALLIANCE_6'),(37813,3,0,'%s immobilizes Muradin and his guards.',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_INTRO_ALLIANCE_7'),(37813,4,0,'Join me, father. Join me and we will crush this world in the name of the Scourge -- for the glory of the Lich King!',1,0,0,0,0,16704,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_INTRO_HORDE_2'),(37813,5,0,'Stubborn and old. What chance do you have? I am stronger, and more powerful than you ever were.',1,0,0,5,0,16705,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_INTRO_HORDE_4'),(37813,6,0,'Pathetic old orc. Come then heroes. Come and face the might of the Scourge!',1,0,0,15,0,16706,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_INTRO_HORDE_9'),(37813,7,0,'BY THE MIGHT OF THE LICH KING!',1,0,0,0,0,16694,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_AGGRO'),(37813,8,0,'The ground runs red with your blood!',1,0,0,0,0,16699,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_MARK_OF_THE_FALLEN_CHAMPION'),(37813,9,0,'Feast, my minions!',1,0,0,0,0,16700,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_BLOOD_BEASTS'),(37813,10,0,'You are nothing!',1,0,0,0,0,16695,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_KILL_1'),(37813,10,1,'Your soul will find no redemption here!',1,0,0,0,0,16696,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_KILL_2'),(37813,11,0,'%s goes into frenzy!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_FRENZY'),(37813,12,0,'I have become...DEATH!',1,0,0,0,0,16698,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_BERSERK'),(37813,13,0,'I... Am... Released.',1,0,0,0,0,16697,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Deathbringer Saurfang - SAY_DEATH'),(37879,0,0,'Stand down, Muradin. Let a grieving father pass.',0,0,0,0,0,16690,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Varian Wrynn - SAY_OUTRO_ALLIANCE_11'),(37879,1,0,'I... I was not at the Wrath Gate, but the soldiers who survived told me much of what happened. Your son fought with honor. He died a hero\'s death. He deserves a hero\'s burial.',0,0,0,0,0,16691,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Varian Wrynn - SAY_OUTRO_ALLIANCE_16'),(37879,2,0,'Jaina? Why are you crying?',0,0,0,0,0,16692,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Varian Wrynn - SAY_OUTRO_ALLIANCE_18'),(37879,3,0,'Bah! Muradin, secure the deck and prepare our soldiers for an assault on the upper citadel. I\'ll send out another regiment from Stormwind.',0,0,0,0,0,16693,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Varian Wrynn - SAY_OUTRO_ALLIANCE_20'),(37955,0,0,'You have made an... unwise... decision.',1,0,0,0,0,16782,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_AGGRO'),(37955,1,0,'Just a taste...',1,0,0,0,0,16783,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_VAMPIRIC_BITE'),(37955,1,1,'Know my hunger!',1,0,0,0,0,16784,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_VAMPIRIC_BITE'),(37955,2,0,'Yes... feed my precious one! You\'re mine now!',1,0,0,0,0,16790,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_MIND_CONTROL'),(37955,3,0,'You thirst for blood!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - EMOTE_BLOODTHIRST'),(37955,4,0,'SUFFER!',1,0,75,0,0,16786,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_SWARMING_SHADOWS'),(37955,5,0,'Shadows amass and swarm around $N!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - EMOTE_SWARMING_SHADOWS'),(37955,6,0,'Can you handle this?',1,0,75,0,0,16787,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_PACT_OF_THE_DARKFALLEN'),(37955,7,0,'Here it comes.',1,0,0,0,0,16788,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_AIR_PHASE'),(37955,8,0,'Really... is that all you got?',1,0,0,0,0,16791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_KILL'),(37955,8,1,'Such a pity.',1,0,0,0,0,16792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_KILL'),(37955,9,0,'How... unfortunate...',1,0,0,0,0,16789,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_WIPE'),(37955,10,0,'THIS ENDS NOW!',1,0,0,0,0,16793,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_BERSERK'),(37955,11,0,'But... we were getting along... so well...',1,0,0,0,0,16794,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_DEATH'),(37970,0,0,'Naxxanar was merely a setback! With the power of the orb, Valanar will have his vengeance!',1,0,0,0,0,16685,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Valanar - SAY_VALANAR_INVOCATION'),(37970,1,0,'Invocation of Blood jumps to <NAME>!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Valanar - EMOTE_VALANAR_INVOCATION'),(37970,2,0,'My cup runneth over.',1,0,0,0,0,16686,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Valanar - SAY_VALANAR_SPECIAL'),(37970,3,0,'%s begins casting Empowered Schock Vortex!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Valanar - EMOTE_VALANAR_SHOCK_VORTEX'),(37970,4,0,'Dinner... is served.',1,0,0,0,0,16681,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Valanar - SAY_VALANAR_KILL_1'),(37970,4,1,'Do you see NOW the power of the Darkfallen?',1,0,0,0,0,16682,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Valanar - SAY_VALANAR_KILL_2'),(37970,5,0,'BOW DOWN BEFORE THE SAN\'LAYN!',1,0,0,0,0,16684,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Valanar - SAY_VALANAR_BERSERK'),(37970,6,0,'...why...?',1,0,0,0,0,16683,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Valanar - SAY_VALANAR_DEATH'),(37972,0,0,'Such wondrous power! The Darkfallen Orb has made me INVINCIBLE!',1,0,0,0,0,16727,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Keleseth - SAY_KELESETH_INVOCATION'),(37972,1,0,'Invocation of Blood jumps to Prince Keleseth!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Keleseth - EMOTE_KELESETH_INVOCATION'),(37972,2,0,'Blood will flow!',1,0,0,0,0,16728,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Keleseth - SAY_KELESETH_SPECIAL'),(37972,3,0,'Were you ever a threat?',1,0,0,0,0,16723,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Keleseth - SAY_KELESETH_KILL_1'),(37972,3,1,'Truth is found in death.',1,0,0,0,0,16724,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Keleseth - SAY_KELESETH_KILL_2'),(37972,4,0,'%s cackles maniacally!',0,0,0,0,0,16726,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Keleseth - EMOTE_KELESETH_BERSERK'),(37972,5,0,'My queen... they come...',1,0,0,0,0,16725,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Keleseth - SAY_KELESETH_DEATH'),(37973,0,0,'Tremble before Taldaram, mortals, for the power of the orb flows through me!',1,0,0,0,0,16857,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Taldaram - SAY_TALDARAM_INVOCATION'),(37973,1,0,'Invocation of Blood jumps to Prince Taldaram!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Taldaram - EMOTE_TALDARAM_INVOCATION'),(37973,2,0,'Delight in the pain!',1,0,0,0,0,16858,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Taldaram - SAY_TALDARAM_SPECIAL'),(37973,3,0,'Inferno Flames speed toward $N!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Taldaram - EMOTE_TALDARAM_FLAME'),(37973,4,0,'Worm food.',1,0,0,0,0,16853,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Taldaram - SAY_TALDARAM_KILL_1'),(37973,4,1,'Beg for mercy!',1,0,0,0,0,16854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Taldaram - SAY_TALDARAM_KILL_2'),(37973,5,0,'%s laughs.',0,0,0,0,0,16856,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Taldaram - EMOTE_TALDARAM_BERSERK'),(37973,6,0,'%s gurgles and dies.',0,0,0,0,0,16855,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prince Taldaram - EMOTE_TALDARAM_DEATH'),(38004,0,0,'Foolish mortals. You thought us defeated so easily? The San\'layn are the Lich King\'s immortal soldiers! Now you shall face their might combined!',1,0,0,1,0,16795,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_INTRO_1'),(38004,1,0,'Rise up, brothers, and destroy our enemies.',1,0,0,0,0,16796,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blood-Queen Lana\'thel - SAY_INTRO_2'),(38017,0,0,'Are you certain you should be helping these mortals in their quest for the sword?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kalecgos'),(38017,1,0,'These blades, Krasus... They were made long ago, when things were... different.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kalecgos'),(38017,2,0,'Our enemies once turned our strongest weapon against us. What makes you think the prismatic blades will be any different?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kalecgos'),(38472,0,0,'Die, intruders! None shall interfere with the Cult\'s plans!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Darnavan - SAY_DARNAVAN_AGGRO'),(38472,1,0,'Wh- where am I...? What a nightmare I have had... But this is no time to reflect, I have much information to report!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Darnavan - SAY_DARNAVAN_RESCUED'),(38485,0,0,'Die, intruders! None shall interfere with the Cult\'s plans!',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Darnavan - SAY_DARNAVAN_AGGRO'),(38485,1,0,'Wh- where am I...? What a nightmare I have had... But this is no time to reflect, I have much information to report!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Darnavan - SAY_DARNAVAN_RESCUED'),(38490,0,0,'$n is infected with the Death Plague!',41,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotting Frost Giant - Death Plague'),(38494,0,0,'$n is infected with the Death Plague!',41,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotting Frost Giant - Death Plague'),(15307,0,0,'The Abyssal Council does not tolerate deceit! Feel our wrath, little human!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Earthen Templar - SAY_TEMPLAR_AGGRO'),(39368,0,0,'All right, you twisted mess of broken gears, let\'s get to work!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,1,0,'I am going to teach you all what it takes to be a proper soldier!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,2,0,'The first thing you need to learn is proper discipline.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,3,0,'Show me that discipline with a proper salute when I say so!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,4,0,'Okay, recruits, salute!',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,5,0,'Nice job!',0,0,100,273,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,6,0,'When you go into combat, it is important that you know how to intimidate the enemy with a deafening battle roar!',0,0,100,396,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,7,0,'When I give the signal, let loose your greatest roar!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,8,0,'Let me hear that battle roar!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,9,0,'Wow, nice and scary!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,10,0,'Remember though, a key factor in winning any battle is positive reinforcement.',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,11,0,'Reward your fellow soldiers in battle with a resounding cheer. Now, cheer at me when I tell you to!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,12,0,'Everyone, cheer!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,13,0,'Fantastic!',0,0,100,273,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,14,0,'However, the most important part of battle is how you celebrate a good hard earned victory!',0,0,100,396,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,15,0,'Show me your best victory dance when I give the signal!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,16,0,'Now, dance!',0,0,100,10,5000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,17,0,'Superb!',0,0,100,273,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39368,18,0,'You might be the best set of recruits I\'ve ever seen! Let\'s go through all of that again!',0,0,100,396,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Drill Sergeant Steamcrank'),(39378,0,0,'Defilers! Wretches! Fiends! Begone from here!',1,0,0,0,0,18911,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Rajh_Engage'),(39378,1,0,'Can you feel it? The blessed warmth of the sun?',1,0,0,0,0,18912,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Rajh_Event01'),(39378,2,0,'I send you to your deity.',1,0,0,0,0,18913,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Rajh_Slay01'),(39378,2,1,'I will take this life as an offering!',1,0,0,0,0,18914,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Rajh_Slay01'),(39378,3,0,'Blazing rays of light, take me!',1,0,0,0,0,18910,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Rajh_Death'),(39425,0,0,'Turn back, intruders! These halls must not be disturbed!',1,0,0,0,0,18580,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anhuur_Engage'),(39425,1,0,'Beacons of light, bestow upon me your aegis!',1,0,0,0,0,18581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anhuur_Event'),(39425,2,0,'A product of your own insolence!',1,0,0,0,0,18583,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anhuur_Slay02'),(39425,2,1,'I regret nothing !',1,0,0,0,0,18582,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anhuur_Slay01'),(39425,3,0,'What... have you... done? ',1,0,0,0,0,18579,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anhuur_Death'),(39428,0,0,'More carrion for the swarm... ',1,0,0,0,0,18906,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ptah_Engage'),(39428,1,0,'Ptah... is... no more... ',1,0,0,0,0,18905,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ptah_Death'),(39428,2,0,'Dust to dust... ',1,0,0,0,0,18907,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ptah_Slay01'),(39428,2,1,'HYAAAH!!',1,0,0,0,0,18908,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ptah_Slay02'),(39587,0,0,'Gaze to the heavens! What do you see?',1,0,0,0,0,18843,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Isiset_Engage'),(39587,1,0,'Bask in my radiance!',1,0,0,0,0,18845,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Isiset_Event01'),(39587,2,0,'Insignificant!',1,0,0,0,0,18847,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Isiset_Slay02'),(39587,2,1,'The glimmer of your life, extinguished.',1,0,0,0,0,18846,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Isiset_Slay01'),(39587,3,0,'Eons of darkness... by your hand.',1,0,0,0,0,18842,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Isiset_Death01'),(39587,3,1,'My luster... wanes.',1,0,0,0,0,18844,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Isiset_Death02'),(39625,0,0,'A million more await my orders. What chance you do have?',1,0,0,0,0,18530,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Umbriss_Engage'),(39625,1,0,'All in my path shall be destroyed!',1,0,0,0,0,18534,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Umbriss_Event01'),(39625,2,0,'Attack you cowardly vermin!',1,0,0,0,0,18535,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Umbriss_Malignant Troggs'),(39625,3,0,'Reinforce the front! We are being invaded!',1,0,0,0,0,18536,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Umbriss_Bomb1'),(39625,3,1,'Cover the rear! Alexstrazas brood decimate our rank!',1,0,0,0,0,18537,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Umbriss_Bomb2'),(39625,4,0,'Messy...',1,0,0,0,0,18532,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Umbriss_Slay01'),(39625,4,1,'Vermin, your dinner awaits!',1,0,0,0,0,18531,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Umbriss_Slay02'),(39625,5,0,'Death, is my only option...',1,0,0,0,0,18533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Umbriss_Death'),(15212,0,0,'The Abyssal Council does not tolerate deceit! Feel our wrath, little human!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hoary Templar - SAY_TEMPLAR_AGGRO'),(39646,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(39665,0,0,'Boss Chogall not gonna be happy bout dis! ',1,0,0,0,0,18925,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Romogg_Aggro01'),(39665,1,0,'Stand still! Romogg crack your skulls! ',1,0,0,0,0,18927,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Romogg_Event03'),(39665,2,0,'That what you get! Nothing! ',1,0,0,0,0,18926,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Romogg_Slay'),(39665,3,0,'Romogg...sorry... ',1,0,0,0,0,18928,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Romogg_Death'),(39679,0,0,'HERETICS! You will suffer for this interruption!',1,0,0,0,0,18589,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Corla_Aggro'),(39679,1,0,'Bask in his power! Rise as an agent of the masters rage!',1,0,0,0,0,18592,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Corla_Event03'),(39679,2,0,'There is only one true path of enlightenment! DEATH!',1,0,0,0,0,18590,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Corla_Slay'),(39679,3,0,'For the master I die a thousand times... A thousan...',1,0,0,0,0,18594,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Corla_Death'),(39698,0,0,'Bodies to test my armaments upon! ',1,0,0,0,0,18852,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Karsh_Aggro'),(39698,1,0,'Feel the burn!',1,0,0,0,0,18854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Karsh_Event03'),(39698,2,0,'Merely an impurity in the compound!',1,0,0,0,0,18853,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Karsh_Slay'),(39698,3,0,'We number in the millions! Your efforts are wasted...',1,0,0,0,0,18855,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Karsh_Death'),(39705,0,0,'You come seeking answers? Then have them! Look upon your answer to living!',1,0,0,0,0,18899,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Obsidius_Aggro'),(39705,1,0,'Earth can be shaped, molded... You cannot! You are useless!',1,0,0,0,0,18905,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Obsidius_Event01'),(39705,2,0,'Your kind has no place in the masters world!',1,0,0,0,0,18901,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Obsidius_Slay'),(39705,3,0,'I cannot be destroyed... Only de... layed...',1,0,0,0,0,18902,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_BC_Obsidius_Death'),(39731,0,0,'This chamber will flourish with your life energy!',1,0,0,0,0,18571,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ammunae_Engage'),(39731,1,0,'Your life, UNLEASHED!',1,0,0,0,0,18572,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ammunae_Event'),(39731,2,0,'Wither away!',1,0,0,0,0,18573,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ammunae_Slay01'),(39731,2,1,'Waste of energy.',1,0,0,0,0,18574,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ammunae_Slay02'),(39731,3,0,'The cycle continues...',1,0,0,0,0,18569,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Ammunae_Death'),(39732,0,0,'You fear that which you cannot control. But can you control your fear? ',1,0,0,0,0,18553,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Setesh_Engage'),(39732,1,0,'Behold, how infinity befalls your world',1,0,0,0,0,18554,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Setesh_Event'),(39732,2,0,'Do you understand now?',1,0,0,0,0,18556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Setesh_Slay02'),(39732,2,1,'Embrace the end.',1,0,0,0,0,18555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Setesh_Slay01'),(39732,3,0,'Yes! Harness... your... hatred.',1,0,0,0,0,18552,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Setesh_Death'),(39746,1,1,'It\'s for the best.',1,0,50,0,0,17514,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'General Zarithrian'),(39746,2,0,'Turn them to ash, minions!',1,0,100,0,0,17516,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'General Zarithrian'),(39746,1,0,'You thought you stood a chance?',1,0,50,0,0,17513,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'General Zarithrian'),(39746,0,0,'Alexstrasza has chosen capable allies.... A pity that I must END YOU!',1,0,100,0,0,17512,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Baltharus the Warborn'),(39747,0,0,'You will sssuffer for this intrusion!',1,0,100,0,0,17528,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saviana Ragefire'),(39747,1,0,'Burn in the master\'s flame!',1,0,100,0,0,17532,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saviana Ragefire'),(39747,2,0,'%s becomes enraged!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saviana Ragefire'),(39747,3,0,'Halion will be pleased.',1,0,100,0,0,17530,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(39747,3,1,'As it should be....',1,0,100,0,0,17529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saviana Ragefire'),(40429,6,0,'In their initial assault, I caught a glimpse of their true leader, a fearsome full-grown twilight dragon.',0,0,100,1,0,17497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(40429,5,0,'The commander of the forces on the ground here is a cruel brute named Zarithrian, but I fear there are greater powers at work.',0,0,100,1,0,17496,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(39788,0,0,'This unit has been activated outside normal operating protocols. Downloading new operational parameters. Download complete. Full unit self defense routines are now active. Destruction of foreign units in this system shall now commence.',1,0,0,0,0,20857,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anraphet_Intro01'),(39788,1,0,'Purge of unauthorized entities commencing.',1,0,0,0,0,20862,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anraphet_Engage01'),(39788,2,0,'Target Annihilated.',1,0,0,0,0,20858,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anraphet_Slay01'),(39788,2,1,'Purge Complete. ',1,0,0,0,0,20859,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anraphet_Slay02'),(39788,3,0,'Omega Stance activated. Annihilation of foreign unit is now imminent.',1,0,0,0,0,20861,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anraphet_Special02'),(39788,4,0,'Anraphet unit shutting down...',1,0,0,0,0,20856,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_HO_Anraphet_Death01'),(15211,0,0,'The Abyssal Council does not tolerate deceit! Feel our wrath, little human!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Azure Templar - SAY_TEMPLAR_AGGRO'),(40177,0,0,'NO! Throngus get whipped again if he no finish!',1,0,0,0,0,18943,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Throngus_Engage'),(40177,1,0,'You not get through defenses!',1,0,0,0,0,18947,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Throngus_Shield'),(40177,2,0,'Throngus SLICE you up!',1,0,0,0,0,18948,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Throngus_Sword'),(40177,3,0,'Oh, this is gonna HURT!',1,0,0,0,0,18949,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Throngus_Mace'),(40177,4,0,'You break easy!',1,0,0,0,0,18945,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Throngus_Slay01'),(40177,4,1,'Throngus use your corpse on body. Somewhere...',1,0,0,0,0,18944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Throngus_Slay02'),(40177,5,0,'Death... Good choice. Not best choice maybe, but better than fail and live.',1,0,0,0,0,18946,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Throngus_Death'),(40329,4,0,'Go back to Vol\'jin an\' tell him dis: Zen\'tabra stands ready to help him in de coming battle.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zen\'tabra'),(40260,0,0,'Sign me up!',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer JustSpawned'),(40260,0,1,'Anythin\' for Vol\'jin!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer JustSpawned'),(40260,0,2,'I\'d be glad to help.',0,0,100,273,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer JustSpawned'),(40260,0,3,'Just point me at de enemy!',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer JustSpawned'),(40264,0,0,'Sign me up!',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer JustSpawned'),(40264,0,1,'Anythin\' for Vol\'jin!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer JustSpawned'),(40264,0,2,'I\'d be glad to help.',0,0,100,273,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer JustSpawned'),(40264,0,3,'Just point me at de enemy!',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer JustSpawned'),(40260,1,0,'Reportin\' for duty.',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40260,1,1,'Ready to take de fight to Zalazane.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40260,1,2,'Ready to fight beside Vol\'jin!',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40260,1,3,'New troll here!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40260,1,4,'When does de trainin\' start?',0,0,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40319,0,0,'I will burn you from the inside out!',1,0,0,0,0,18610,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Drahga_Engage'),(40319,1,0,'INCINERATE THEM, MINIONS!',1,0,0,0,0,18616,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Drahga_Sum_Spirits1'),(40319,1,1,'BY FIRE BE... BURNED!',1,0,0,0,0,18619,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Drahga_Sum_Spirits2'),(40319,2,0,'Dragon, you will do as I command! Catch me!',1,0,0,0,0,18621,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Drahga_Sum_Valiona'),(40319,3,0,'You should have come better prepared!',1,0,0,0,0,18612,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Drahga_Slay01'),(40319,3,1,'An easy kill!',1,0,0,0,0,18611,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Drahga_Slay02'),(40319,4,0,'Valiona, finish them! Avenge me!',1,0,0,0,0,18614,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Drahga_Death'),(40352,1,0,'Spirits, we be gathered here to ask for your guidance.',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'W<NAME>'),(40352,2,0,'Our leader, Vol\'jin, son of Sen\'jin, issued de call to all Darkspears: reclaim de Echo Isles for our tribe.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Witch Doctor Hez\'tok'),(40352,3,0,'Spirits! I offer me own body to you! Speak through me! Is de time right for mighty Vol\'jin\'s undertaking?',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Witch Doctor Hez\'tok'),(40352,4,0,'De ancestors hear ya, witch doctor!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Witch Doctor Hez\'tok'),(40352,5,0,'Know dat your plans please us, Darkspears. De son of Sen\'jin walks de right path.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Witch Doctor Hez\'tok'),(40352,6,0,'De task in front of ya will not be easy, but ya have our blessin\'.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Witch Doctor Hez\'tok'),(40352,7,0,'Ya gave up your home an\' ya gave up de loas of your ancestors when ya left de Echo Isles. Dey will not be pleased dat you been ignorin\' dem.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Witch Doctor Hez\'tok'),(40352,8,0,'Ya must make amends wit\' Bwonsamdi, de guardian of de dead, if ya hope to defeat Zalazane. It be de only way. Tell de son of Sen\'jin dese things.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Witch Doctor Hez\'tok'),(40264,1,0,'Reportin\' for duty.',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40264,1,1,'Ready to take de fight to Zalazane.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40264,1,2,'Ready to fight beside Vol\'jin!',0,0,100,66,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40264,1,3,'New troll here!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40264,1,4,'When does de trainin\' start?',0,0,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Troll Volunteer Quest Turn in'),(40301,0,0,'The tiger matriarch appears! Prove yourself in combat!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tiger Matriarch Credit'),(40352,0,0,'Darkspears, we consult de spirits! Drummers, take your places!',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(40429,4,0,'They slaughtered us with cold efficiency, but the true focus of their interest seemed to be the eggs kept here in the Sanctum.',0,0,100,1,0,17495,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(40429,3,0,'We did not stand a chance. As my brethren perished around me, I managed to retreat here and bar the entrance.',0,0,100,1,0,17494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(40429,2,0,'The Black dragonkin materialized from thin air, and set upon us before we could react.',0,0,100,1,0,17493,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(40429,1,0,'We believed the Sanctum was well-fortified, but we were not prepared for the nature of this assault.',0,0,100,1,0,17492,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(40429,0,0,'Thank you! I could not have held out for much longer.... A terrible thing has happened here.',1,0,100,5,0,17491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sanctum Guardian Xerestrasza'),(39751,3,0,'Twice the pain and half the fun.',1,0,100,0,0,17524,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Baltharus the Warborn'),(39751,4,1,'I... didn\'t see that coming....',1,0,100,0,0,17523,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Baltharus the Warborn'),(39751,2,1,'This world has enough heroes.',1,0,100,0,0,17522,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Baltharus the Warborn'),(39751,1,0,'Ah, the entertainment has arrived.',1,0,100,0,0,17520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Baltharus the Warborn'),(39751,2,0,'Baltharus leaves no survivors!',1,0,100,0,0,17521,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Baltharus the Warborn'),(39751,0,0,'Your power wanes, ancient one.... Soon you will join your friends.',1,0,100,0,0,17525,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Baltharus the Warborn'),(40484,0,0,'The darkest days are still ahead!',1,0,0,0,0,18638,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Erudax_Engage'),(40484,1,0,'Flakh ghet! The shadows hunger cannot be sated! ',1,0,0,0,0,18644,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Erudax_Shad_Gale'),(40484,2,0,'Come, suffering... Enter, chaos!',1,0,0,0,0,18646,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Erudax_Guardian'),(40484,3,0,'Flesh for the offering!',1,0,0,0,0,18640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Erudax_Slay02'),(40484,3,1,'Erudax cackles maniacally.',2,0,0,0,0,18639,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Erudax_Slay01'),(40484,4,0,'Ywaq maq oou; ywaq maq ssaggh. Yawq ma shg fhn.',1,0,0,0,0,18641,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_GB_Erudax_Death'),(15209,0,0,'The Abyssal Council does not tolerate deceit! Feel our wrath, little human!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crimson Templar - SAY_TEMPLAR_AGGRO'),(11352,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurubashi Berserker - At 30% HP - Emote Line 0'),(42291,0,0,'Optical sesor malfuction detected...... Shuting down.....',0,0,15,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crushcog Sentry-Bot - Text'),(43612,0,0,'Begone infidels, you are not welcome here!',1,0,0,0,0,19735,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Barim_Engage01'),(43612,1,0,'May peace find you now.',1,0,0,0,0,19738,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Barim_Kill01'),(43612,2,0,'Kneel before me and repent!',1,0,0,0,0,19737,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Barim_Event02'),(43612,2,1,'The Heavens take you!',1,0,0,0,0,19736,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Barim_Event01'),(43612,3,0,'Death is only the beginning!',1,0,0,0,0,19733,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Barim_Death'),(43875,0,0,'YOU tread upon the sacrosanct! Mortals have no please amidst the clouds.',1,0,0,0,0,20867,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_VP_AsimAlAkir_Engage'),(43875,1,0,'AlAkir, your servant calls for aid!',1,0,0,0,0,20869,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_VP_AsimAlAkir_Event02'),(43875,2,0,'BACK to the earth with you!',1,0,0,0,0,20868,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_VP_AsimAlAkir_Slay'),(43875,3,0,'The winds take me!',1,0,0,0,0,20870,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_VP_AsimAlAkir_Death'),(43878,0,0,'Filthy beasts! Your presence in Skywall will not be tolerated!',1,0,0,0,0,20876,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_VP_Ertan_Engage'),(43878,1,0,'Ravaged!',1,0,0,0,0,20877,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_VP_Ertan_Event02'),(43878,2,0,'AHHHHHHHHH!',1,0,0,0,0,20878,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_VP_Ertan_Death'),(44577,0,0,'Invaders! You shall go no further! ',1,0,0,0,0,21886,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Husam_Engage01'),(44577,1,0,'Tread Lightly! ',1,0,0,0,0,21887,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Husam_Event01'),(44577,1,1,'Murkash!',1,0,0,0,0,21888,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Husam_Event02'),(44577,2,0,'Siamat must not be freed! Turn back before it is too late!',1,0,0,0,0,21885,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Husam_Death01'),(44577,3,0,'Insolent rats!',1,0,0,0,0,21889,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Husam_Kill02'),(44819,0,0,'I. AM. UNLEASHED!',1,0,0,0,0,20231,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Siamat_Intro01'),(44819,1,0,'Winds of the south, rise and come to your masters aid!',1,0,0,0,0,20227,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Siamat_Engage01'),(44819,2,0,'Cower before the tempest storm!',1,0,0,0,0,20228,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Siamat_Event01'),(44819,2,1,'Suffer the storm!',1,0,0,0,0,20229,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Siamat_Event02'),(44819,2,2,'Your city will be buried! Your lives forfeit to the elements! ',1,0,0,0,0,20230,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Siamat_Event03'),(44819,3,0,'Nothing more than dust in the wind.',1,0,0,0,0,20232,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Siamat_Kill01'),(44819,4,0,'The sky... Beckons...',1,0,0,0,0,20226,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'VO_TV_Siamat_Death01'),(11360,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zulian Cub - At 15% HP - Emote line 0'),(11340,0,6,'You be dead soon!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11340,0,5,'My weapon be thirsty!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11340,0,4,'Feel da big bad voodoo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(46617,0,4,'So... EPIC!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46617,0,3,'ROCK ON!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46617,0,2,'Weaponized sharks? Why didn\'t I think of that!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46617,0,1,'You could bounce a washer off those legs!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11340,0,3,'I gonna make you into mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11340,0,2,'Your skull gonna decorate our ritual altars!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11340,0,1,'Troll mojo da strongest mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11340,0,0,'Killing you be easy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11359,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soulflayer - At 30% HP - Say Line 0'),(11339,0,6,'You be dead soon!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11339,0,5,'My weapon be thirsty!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11339,0,4,'Feel da big bad voodoo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11339,0,3,'I gonna make you into mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11339,0,2,'Your skull gonna decorate our ritual altars!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(50053,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(51451,0,0,'%s becomes enrage!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(51712,0,0,'%s becomes rage!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Rage'),(11339,0,1,'Troll mojo da strongest mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(42722,0,0,'Auuuuuuuuuuuuuuuuu',0,0,100,1,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(42722,0,1,'Wofff!',0,0,100,25,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(42722,0,2,'Grrrrrrrrrrrrrrrrrrrrrrrr!',0,0,100,1,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(31111,0,0,'Too many fools these times Mighty.',0,0,100,1,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(31111,0,1,'They don\'t event know me..',0,0,100,25,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(31111,0,2,'You, come closer.',0,0,100,1,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(240,0,0,'Welcome to Golshire, don\'t cause problems here.',0,0,100,1,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(240,0,1,'We don\'t sell beers to childrens so don\'t ask!',0,0,100,25,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(240,0,2,'If you want help Goldshire take a look here.',0,0,100,1,19000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(16518,0,5,'The %s nods appreciatively.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Inoculated Nestlewood Owlkin'),(23651,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(23671,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(23940,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11339,0,0,'Killing you be easy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11356,0,6,'You be dead soon!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11356,0,5,'My weapon be thirsty!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11356,0,4,'Feel da big bad voodoo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11356,0,3,'I gonna make you into mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(24539,0,0,'Do not test me, scurvy dog! I\'m trained in the way of the Blood Knights!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(24546,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(24635,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(24644,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11356,0,2,'Your skull gonna decorate our ritual altars!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(29261,0,0,'Hi!I\'m Windle! You are using SmartAI scripts made by user with nick ~cooler~. Mobs can use spells,cosmetic fixes approved,many texts for mobs,exclusive phases for difficult events - all are here. Thanks for your choice!( Contact by Skype: cooler19860212 ),',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OOC say'),(9559,0,0,'Come on! take The Maiden\'s Fancy to Kalimdor from here! .',0,0,100,1,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(9559,0,1,'Move your ass or miss the boat!.',0,0,100,25,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(9559,0,2,'Stupid trolls! we only accept gold, if you don\'t have any gold go away!.',0,0,100,1,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(43099,0,0,'Show me what do you have!.',0,0,100,1,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(43099,0,1,'Fight with one Gurubashi Arena Challenger for the honor of arena!.',0,0,100,25,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(43099,0,2,'I want to see your bonds cry!.',0,0,100,1,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(11748,0,0,'Hate walk and walk every day.',0,0,100,1,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(11748,0,1,'I am worried about these rebels.',0,0,100,25,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(11748,0,2,'Stranglethron is a lonely place at night.',0,0,100,1,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(43045,0,0,'Hurry hurry! take your fly here.',0,0,100,1,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(43045,0,1,'Fly with James Airlines and you will be always secure and safely',0,0,100,25,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(43045,0,2,'Come on all of you!, fly with James to Stormwind, IronForge, Gilneas and Undercity! Errr no... Undercity no .',0,0,100,1,29000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(4829,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(4831,1,0,'You should not be here! Slay them!',1,0,100,0,0,5799,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4832,2,0,'Just... Dust...',1,0,100,0,0,5803,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4832,1,0,'Who dares disturb my meditation!',1,0,100,0,0,5802,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11356,0,1,'Troll mojo da strongest mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11356,0,0,'Killing you be easy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(14821,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Razzashi Raptor - At 30% HP - Say Line 0'),(9042,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11831,0,6,'You be dead soon!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11831,0,5,'My weapon be thirsty!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(8906,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11831,0,4,'Feel da big bad voodoo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11831,0,3,'I gonna make you into mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11831,0,2,'Your skull gonna decorate our ritual altars!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(25806,0,2,'Now THIS is a sport!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25806,0,3,'No way! Rhino head helmet for the low, low price of thirty rhino heads? I\'ll take two at those prices!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25979,0,2,'Now THIS is a sport!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25979,0,3,'No way! Rhino head helmet for the low, low price of thirty rhino heads? I\'ll take two at those prices!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11451,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(27683,0,0,'I\'ve lived here and kept this shrine with the blessing of the Alexstrasza for longer than I can remember. In its darkest hour, I\'ve failed... I fell at the feet of that damned deathknight... Bloodbane.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(27198,5,0,'<NAME>... Find religion... Because if we ever get out of here, you will be wishing you were back in here!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 6'),(11831,0,1,'Troll mojo da strongest mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(6235,0,0,'Electric justice!',1,0,100,0,0,5811,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(7800,3,0,'...and stay dead! He got served!',1,0,100,0,0,5810,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(7800,2,0,'Explosions! MORE explosions! I\'ve got to have more explosions!',1,0,100,0,0,5809,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(7800,1,0,'My machines are the future! They\'ll destroy you all!',1,0,100,0,0,5808,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(7800,0,0,'USURPERS!!! GNOMEREGAN IS MINE!!!',1,0,100,0,0,5807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6224,0,2,'No gnome will be left behind.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6224,0,1,'This sickness clouds my vision, but I know you must be a trogg. Die foul invader!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6224,0,0,'A foul trogg if ever I saw one. Die!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6222,0,2,'No gnome will be left behind.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6222,0,1,'This sickness clouds my vision, but I know you must be a trogg. Die foul invader!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6222,0,0,'A foul trogg if ever I saw one. Die!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6329,1,0,'%s blood sprays into the air!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Emote'),(6329,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(7849,0,0,'Warning! Warning! Intruder alert! Intruder alert!',1,0,100,0,0,5805,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26392,0,0,'Brrrr... It\'s cold up here.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(26205,0,0,' I\'m working on it, Molsen. If you want it done faster, do it yourself.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(24966,2,0,'Get away, this place is ours!',0,33,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(24960,2,0,'Get away, this place is ours!',0,33,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(13601,0,0,'Mine! Mine! Mine! Gizlock is the ruler of this domain! You shall never reveal my presence!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28474,4,0,'Do not let it consider its next spell so freely, disciple... freeze its mind.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 5'),(28577,1,5,'The Lich King whispers:No mercy!',2,0,50,0,0,14771,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,1,6,'The Lich King whispers:Kill or die!',2,0,50,0,0,14777,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,1,7,'The Lich King whispers:Suffering to the conquered!',2,0,50,0,0,14781,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,1,5,'The Lich King whispers:No mercy!',2,0,50,0,0,14771,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,1,6,'The Lich King whispers:Kill or die!',2,0,50,0,0,14777,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,1,7,'The Lich King whispers:Suffering to the conquered!',2,0,50,0,0,14781,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,1,0,'I won\'t go down that easy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,1,1,'Die Scourge dog!DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,1,0,'I won\'t go down that easy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,1,1,'Die Scourge dog!DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,3,'QUIMBY!!!!!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,4,'Everybody is dying! Help us!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,5,'My whole family\'s been killed! Where was the army when we needed them most?',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,6,'No more lies,Quimby! We need answers!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,7,'This is a slap in the face! We demand answers!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,3,'QUIMBY!!!!!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,4,'Everybody is dying! Help us!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,5,'My whole family\'s been killed! Where was the army when we needed them most?',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,6,'No more lies,Quimby! We need answers!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,7,'This is a slap in the face! We demand answers!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29193,5,0,'Why don\'t you Just Kill me Already?',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 6'),(29112,3,0,'Flattery will get you nowhere.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3'),(28610,0,1,'By the Light be cleansed!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28557,0,4,'You don\'t have to do this! Nobody has to die! ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11831,0,0,'Killing you be easy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11351,0,6,'You be dead soon!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(8567,1,0,'%s is getting VERY hungry!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(8567,0,0,'%s is getting hungry!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(7329,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7328,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7332,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7327,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(4420,0,0,'For Victory! For Agamaggan!',1,0,100,0,0,5812,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4421,2,0,'Troublesome whelps. I\'ll teach you to interfere!',1,0,100,0,0,5813,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(4421,1,0,'Bah! My power rules here!',1,0,100,0,0,5816,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(4421,0,0,'Our new allies will avenge us!',1,0,100,0,0,5814,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(4422,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11351,0,5,'My weapon be thirsty!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(4514,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11351,0,4,'Feel da big bad voodoo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11351,0,3,'I gonna make you into mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(10433,0,0,'We are betrayed!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(10488,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11582,0,0,'Hmmm, this one looks like something that would be better off as a windchime. Take notes class... This is NOT what you want to summon in the heat of battle.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11582,0,1,'Now this is an example of what not to summon. Look, it\'s frail and brittle. One good whack from a mace will send bone shards flying.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11582,0,2,'This one is slightly better than the last. However, it still suffers from the same flimsy bone structure as the others. When you summon one of these, you are on the right path.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28095,0,0,'...Go or I taunt you a second time!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5710,1,0,'The Soulflayer comes!',1,0,100,0,0,5862,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5709,0,0,'This evil cannot be allowed to enter this world! Come my children!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11351,0,2,'Your skull gonna decorate our ritual altars!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11351,0,1,'Troll mojo da strongest mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11351,0,0,'Killing you be easy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11350,1,6,'You be dead soon!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11350,1,5,'My weapon be thirsty!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11350,1,4,'Feel da big bad voodoo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11350,1,3,'I gonna make you into mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(48262,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(48445,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(26798,0,0,'What is this? Mag thorin Kar! Kill them!',1,0,100,0,0,13458,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26796,0,0,'What? Where in a..? Don\'t just stand around lads KILL SOMEBODY!',1,0,100,0,0,13193,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46379,0,0,'Get up you,lazy bums,there\'s fighting to do!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46381,0,1,'Time to fight!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46375,0,0,'Get up you,lazy bums,there\'s fighting to do!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11350,1,2,'Your skull gonna decorate our ritual altars!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(46261,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(46383,1,0,'<NAME> vanishes!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46264,1,0,'FIRE...EXTINGUISHED!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46254,1,0,'Hogger enrages!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(29643,0,0,'This doesn\'t look pretty, lad.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(29644,0,0,'I don\'t know, Bailey... it\'s not so bad. We could throw a rock at the tools from here.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(7291,0,0,'By Thaurissan\'s beard! Slay them!',1,0,100,0,0,5852,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4854,0,0,'Me Grimlok, king!',1,0,100,0,0,5853,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11350,1,1,'Troll mojo da strongest mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(7320,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(24830,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(4855,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(7175,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(46617,0,5,'200 horsepower, dual combustion engine with modified flux capacitors! ZOING!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(3670,0,0,'The coils of death... Will crush you.',1,0,100,0,0,5787,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(3673,0,0,'I am the serpent king! I can do anything.',1,0,100,0,0,5788,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(3669,0,0,'You will never wake the dreamer!',1,0,100,0,0,5785,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11350,1,0,'Killing you be easy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(28068,0,0,'Mmm, more mojo.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28068,1,0,'NOOOOOOOOooooooo.........!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(8127,1,0,'Lunch has arrived, my beautiful children. Tear them to pieces!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(8127,0,0,'The children of Sul will protect their master. Rise once more Sul\'lithuz!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(7267,3,0,'This desert be mine!',1,0,100,0,0,5876,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(7267,2,0,'The Sandfury reign supreme!',1,0,100,0,0,5878,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(7267,1,0,'Feel the fury of the sands!',1,0,100,0,0,5879,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(7267,0,0,'Die, outlander!',1,0,100,0,0,5877,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(7274,0,0,'Let the executions begin!',1,0,100,0,0,5874,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(7271,0,0,'How dare you enter my sanctum!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11350,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11830,0,6,'You be dead soon!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11830,0,5,'My weapon be thirsty!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(8877,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(37122,3,0,'Don\'t... let Finklestein use me... for his potions...',1,0,0,0,0,16589,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_SECOND_DEATH'),(37122,2,0,'THAT was for bringing me spoiled spider ichor!',1,0,0,0,0,16588,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_KILL'),(37122,1,0,'You miserable fools never did manage to select a decent bat wing.',1,0,0,0,0,16587,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_RESURRECTED'),(37122,0,0,'Never... could reach... the top shelf...',1,0,0,0,0,16586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Captain Arnath - SAY_ARNATH_DEATH'),(37129,8,0,'Vengeance alone... was not enough!',1,0,0,0,0,16828,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Crok Scourgebane - SAY_CROK_DEATH'),(10363,0,0,'%s becomes raged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Rage'),(9718,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11830,0,4,'Feel da big bad voodoo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(11830,0,3,'I gonna make you into mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(9716,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(9259,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11830,0,2,'Your skull gonna decorate our ritual altars!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(9096,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11830,0,1,'Troll mojo da strongest mojo!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(9268,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11830,0,0,'Killing you be easy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Part of the ZulGurub on aggro lines'),(14750,0,0,'%s fully engulfs in flame and a maddened look appears in his eyes!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurubashi Bat Rider - On Unstable Concoction cast - Emote Line 0'),(9216,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(36627,9,0,'|TInterfaceIconsability_creature_disease_02.blp:16|tYou have |cFF00FF00Mutated Infection!|r',5,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rotface - EMOTE_MUTATED_INFECTION'),(15481,0,0,'I SAID GOOD BYE!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Spirit of Azuregos'),(25806,0,7,'It\'s gonna be veal tonight!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25979,0,7,'It\'s gonna be veal tonight!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(30104,0,1,'Too bad I left my light feathers at home... Slow Fall would work perfect here!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(30104,0,0,'The view up here is amazing!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(27033,0,0,'Get out of there.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(27198,0,0,'If I get out of here, I will CRUSH every clock I come into contact with...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(476,1,1,'Yiieeeee! Me run!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6224,0,3,'The troggs...they never stop coming. Die trogg! Die!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(6222,0,3,'The troggs...they never stop coming. Die trogg! Die!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26392,5,0,'You\'re dead, Buckets! You hear me? Dead!',1,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 6'),(26205,3,0,' Now it\'s laundry.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(24531,1,0,'I\'d rather listen to his braying than yours, dear.',0,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gavin Ward'),(24966,1,0,'Mine! You shall not take this place!',0,33,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(24960,1,0,'Mine! You shall not take this place!',0,33,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(39828,0,0,'STOP RIGHT THERE, CRIMINAL SCUM!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28474,0,0,'You have stood and listened long enough. Step forth.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(28577,0,2,'Spare my life! I will leave this place forever!Please!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,0,0,'Why?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,0,1,'P... Please don\'t...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,0,2,'Spare my life! I will leave this place forever!Please!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,0,0,'Why?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,0,1,'P... Please don\'t...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,0,2,'Spare my life! I will leave this place forever!Please!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,0,1,'Somebody save me!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,0,0,'Why?',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,0,2,'Spare my life! I will leave this place forever!Please!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,0,1,'Somebody save me!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,0,0,'Why?',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,0,3,'You make my children orphans on this day,friend! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,0,2,'Spare my life! I will leave this place forever!Please!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,0,0,'Why?',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,0,1,'Somebody save me!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,0,4,'The... They promised that we\'d be safe... ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,0,3,'You make my children orphans on this day,friend! ',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,0,2,'Spare my life! I will leave this place forever!Please!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,0,0,'Why?',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,0,1,'Somebody save me!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29193,0,0,'The horror! THE HORROR!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(29193,1,0,'Wi... Will it hurt?',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(29112,0,0,'Oh yes. Immensely. The pain will propably render you unconcious - hence the vat of slime you\'re floating in!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1'),(28610,0,0,'You\'re not welcome in these lands.monster!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28557,0,0,'Ungh! I ... I think I pooped...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4421,3,0,'You outsiders will pay for encroaching on our land!',1,0,100,0,0,5815,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(25773,0,4,'I\'m flesh and blood again! Thank you!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(25773,0,3,'Where am I? Who are you? What\'s that strange feeling?',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(25773,0,2,'But... but... I was perfect!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(25773,0,1,'I survived and I\'m flesh again!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(25814,1,3,'We can decurse you, we have the technology.',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(4295,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(25814,1,2,'The flesh is weak. We will make you better, stronger...faster.',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(25814,1,1,'We are Mechagnome...resistance is futile.',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(4306,0,0,'What? Oh no. I don\'t care what you have to say. I just enjoy inflicting pain.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4306,0,1,'You will talk eventually. You might as well spill it now.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4306,0,2,'Confess and we shall set you free.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28095,1,3,'Gekgek finally trap dumb cat. You Gekgek\'s now!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11058,0,0,'I\'m going to wear your skin as a smoking jacket! The stogies? You\'ll have to pry them from my cold dead... er... RAWR!!!!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(11058,0,1,'Looking for these???? You\'ll never have em!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(10405,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(42975,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11142,0,0,'No tampering with the mail!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5710,0,0,'The shield be down! Rise up Atal\'ai! Rise up!',1,0,100,0,0,5861,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26798,2,0,'GOOO!',1,0,100,0,0,13460,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(26796,2,0,'Is that all you\'ve... got?',1,0,100,0,0,13194,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46381,0,2,'Freedom!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46383,2,0,'My epic schemes,my great plans!Gone!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29644,3,0,'Ahhh! That was close! You scared me.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(46617,0,0,'Hubba-hubba!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(8127,2,0,'Rise and defend your master!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(7274,1,0,'Justice is done!',1,0,100,0,0,5875,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(7271,1,0,'Aaaahhhhhh!',1,0,100,0,0,5873,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(9458,0,0,'Defend the bunkers!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kolkar Axe Thrower'),(23678,1,1,'Where am I? What happened to me? You... you freed me?',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chill Nymph'),(23678,1,0,'I knew Lurielle would send help! Thank you friend, and give Lurielle my thanks as well!',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chill Nymph'),(23678,0,0,'Chill Nymph appears weak!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chill Nymph'),(24534,1,0,'True, Northrend is a hard land, but our people are strong, hardy, and equal to the task!',0,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(28179,3,0,'We will do this with honor, Darion. We will not sink to the levels of the Scourge to be victorious. To do so would make us no better than the monster that we fight to destroy!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring'),(23975,0,0,'Fire grant me vision...',0,7,100,20,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thoralius the Wise'),(27990,0,0,'You\'re too late, $n. Another visitor from Dalaran came asking after information about the same prismatic dragon blades.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Krasus'),(26917,0,0,'Mortal champions have long used these weapons to combat evil. I see no reason to keep the swords from them in this battle.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Alexstrasza the Life-Binder'),(24528,0,0,'How much\'ll it cost me to get my mules shod?',0,7,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Brune Grayblade'),(36853,1,0,'Suffer, mortals, as your pathetic magic betrays you!',1,0,0,0,0,17014,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_UNCHAINED_MAGIC'),(36853,0,0,'You are fools to have come to this place! The icy winds of Northrend will consume your souls!',1,0,0,0,0,17007,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_AGGRO'),(32739,0,0,'The view up here is amazing!',0,0,0,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(32739,0,1,'Too bad I left my light feathers at home... Slow Fall would work perfect here!',0,0,0,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Baroness Zildjia'),(37187,17,0,'Our mission is now clear: The Lich King will answer for his crimes and we will save Highlord <NAME>!',0,0,0,15,0,17109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_SAURFANG_INTRO_3'),(37187,16,0,'Then we must save him! If we rescue Bolvar Fordragon, we may quell the unrest between the Alliance and the Horde.',0,0,0,5,0,17108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_SAURFANG_INTRO_2'),(28859,1,1,'More artifacts to confiscate...',1,0,0,0,0,14520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player (2) (Phase 1)'),(28859,1,2,'<Laughs> How very... naive...',1,0,0,0,0,14521,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player (3) (Phase 1)'),(28859,2,0,'I had hoped to end your lives quickly, but you have proven more... resilient then I had anticipated. Nonetheless, your efforts are in vain, it is you reckless, careless mortals who are to blame for this war! I do what I must... And if it means your... extinction... THEN SO BE IT',1,0,0,0,0,14522,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - End Phase One'),(28859,0,0,'My patience has reached its limit, I will be rid of you!',1,0,0,0,0,14517,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Aggro (Phase 1)'),(28859,1,0,'Your stupidity has finally caught up to you',1,0,0,0,0,14519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Malygos - Killed Player (1) (Phase 1)'),(40329,3,0,'Now dat it looks like de Darkspear be returnin\' to these isles, maybe de time has come for us to reveal ourselves.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zen\'tabra'),(40329,2,0,'My kind, da druids, we been layin\' low for some time now. We been waitin\' to see when an\' if Vol\'jin might return.',0,0,100,11,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zen\'tabra'),(40184,0,0,'O spirit of de tigers, lend $N your power and help us find de answers we seek!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Vanira'),(40329,0,0,'Dat be enough for now!',0,0,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zen\'tabra'),(40329,1,0,'Don\'t be lookin\' so surprised. Your shaman friend has sharp eyes, or should I say, sharp frogs.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Zen\'tabra'),(23861,0,1,'Why have you come here,outsider?You will only find pain!Our fate will be yours...',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(23861,0,2,'It is too late for Jarl...its hold is too strong...',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(41499,0,0,'The tide has turned? i\'got to get back to the fight',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lost Wardens'),(41499,1,0,'I... I think i can make it back to Irontree. We can win this',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lost Wardens'),(36776,0,0,'Did you think you would escape with your life?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sunreaver Agent'),(36774,0,0,'You Sunreaver lackeys are all the same.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Silver Covenant Agent'),(29618,0,3,'No kill me!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Snowblind Follower'),(29618,0,2,'Net not stop me! No... net stop me.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Snowblind Follower'),(29618,0,1,'Me not afraid!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Snowblind Follower'),(29618,0,0,'Grrrrr!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Snowblind Follower'),(29327,0,0,'It\'s an angry male!',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Male Frost Leopard'),(33008,0,0,'It\'s an angry male!',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Male Icepaw Bear'),(14354,1,0,'Chase me if you dare! I run without a care!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pusillin text #2'),(14354,2,0,'Why would you ever want to harm me!? Come. Friends we can be!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pusillin text #3'),(14354,3,0,'DIE?! You make Pusillin cry!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pusillin text #4'),(24238,2,0,'Fight without fear and the Val\'kyr will reward you!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - Random 1'),(24238,1,0,'No one speaks of my mother in that manner!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - On aggro 2'),(24238,0,0,'Drive the invaders out! For Queen Angerboda!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - On aggro 1'),(31237,0,0,'You shouldn\'t have done that! He\'s not going to like it.',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>ner - On quest accept'),(23576,0,0,'Get da move on, guards! It be killin\' time!',1,0,100,0,0,12066,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk intro'),(23576,1,0,'Guards, go already! Who you more afraid of, dem... or me?',1,0,100,0,0,12067,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk intro2'),(23576,2,0,'Da Amani gonna rule again!',1,0,100,0,0,12076,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk intro4'),(23576,3,0,'You be dead soon enough!',1,0,100,0,0,12070,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk aggro'),(23576,4,0,'I bring da pain!',1,0,100,0,0,12071,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk surge'),(23576,5,0,'I be losin\' me patience! Go on, make dem wish dey was never born!',1,0,100,0,0,12069,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk intro3'),(23576,6,0,'You call on da beast, you gonna get more dan you bargain for!',1,0,100,0,0,12072,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk bear'),(23576,7,0,'Mua-ha-ha! Now whatchoo got to say?',1,0,100,0,0,12075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk kill'),(23576,8,0,'I... be waitin\' on da udda side....',1,0,100,0,0,12077,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk die'),(23576,9,0,'I smell you, strangers. Don\'t be delayin\' your fate. Come to me now. I make your sacrifice quick.',1,0,100,0,0,12079,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nalorakk range'),(23863,0,0,'Everybody try to keep de Amani Empire down. Now we got friends. We wit de Zandalari now. We part of something bigger. You can\'t stop us all. De whole world gonna drown in blood!!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daakara intro'),(23863,1,0,'De Zandalari give us strength. Nobody push around de Amani no more!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daakara intro2'),(23863,2,0,'Da Amani di chuka!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daakara aggro'),(23863,3,0,'Dis is why dey call me INVINCIBLE!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daakara berserk'),(23863,4,0,'Got me some new tricks... like me brudda bear....',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daakara bear'),(23863,5,0,'Lot more going to fall like you.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daakara kill'),(23863,6,0,'Mebbe me fall... but da Amani empire... never going to die.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daakara die'),(23863,7,0,'Let me introduce you to me new bruddas: fang and claw!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Daakara lynx'),(33973,1,0,'Put up Defense.$B$BThen use Thrust on a Melee Target.',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(33974,1,0,'Use Shield-Breaker on a Ranged Target.$B$BThen use Shield-Breaker while the target is defenseless.',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(33972,1,0,'Use Shield-Breaker on a Charge Target.$B$BFollow up with Charge while the target is vulnerable.',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(9461,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Frenzied Black Drake'),(36670,0,0,'You\'re late, courier. No, I don\'t want any excuses; this errand is far too important.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Magister Hathorel'),(36670,1,0,'Here\'s the tome our representative brought from Wyrmrest. Get this to Myralion Sunblaze immediately.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(36670,2,0,'Watch your back, courier. I needn\'t remind you of the value of the book, nor the fact that the Silver Covenant will stop at nothing to take it from us.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>orel'),(36669,0,0,'It\'s good to finally see you, courier. Krasus has entrusted us with one of the few remaining copies of Ancient Dragonforged Blades.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Arcanist Tybalin'),(36669,1,0,'Here is the book. You must ensure it gets to Caladis Brightspear in Icecrown before the Sunreavers realize what is happening.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Arcanist Tybalin'),(36669,2,0,'Travel quickly! The Sunreavers will not waste any time once they realize that we have the information they seek.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Arcanist Tybalin'),(28566,6,2,'Nicely handled! Stay on your toes!',0,0,100,4,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,6,3,'Well done! Be ready for anything!',0,0,100,4,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,7,0,'It\'s no good! I\'m shutting it down...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(28566,8,0,'We\'ve done it! Come get the cask.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tipsy McManus'),(29618,0,4,'No!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Snowblind Follower'),(29618,0,5,'You no take... me!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Snowblind Follower'),(20610,0,0,'%s calls for the aid of a nearby male!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Talbuk Doe'),(20610,1,0,'%s seems to have weakened.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Talbuk Doe'),(20777,0,0,'%s seems to have weakened.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Talbuk Sir'),(20774,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Farahlon Lasher'),(20983,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mutated Farahlon Lasher'),(19035,0,0,'Oh sweet, delicious, spotted eggs - you will be mine...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Wazat'),(19035,1,1,'If only I could get this blasted machine working!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Wazat'),(19035,2,2,'They look so delicious...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Wazat'),(19055,0,0,'Emote blabla',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Windroc Matriarch'),(18351,0,0,'In Nagrand, food hunt ogre!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lump'),(18351,0,1,'You taste good with maybe a little salt and pepper.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lump'),(18351,1,2,'OK, OK! Lump give up!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lump'),(15420,0,0,'Very well. Let\'s see what you have to show me, $N.',0,1,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prospector Anvilward'),(15420,1,0,'What manner of trick is this, $r? If you seek to ambush me, I warn you I will not go down quietly!',0,1,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Prospector Anvilward'),(15420,2,0,'These arcane sanctums of yours are quite... interesting, Mr. Caidanis. I appreciate the information you have given me today.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(14354,0,0,'If you want the key, you\'ll have to catch me!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pusillin text #1'),(24238,2,1,'The Winterskorn tribe will prevail!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - Random 2'),(16878,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shattered Hand Berserker'),(26293,0,0,'The Hulking Jormungar falters for a moment, opening its mouth wide.',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hulking Jormungar'),(24639,0,0,'Keep quiet, will you? If anyone catches on, we\'re both dead.',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Olga, the Scalawag Wench'),(24639,1,0,'All right, fellas! Who ordered the spiced rum? Was it you, <NAME>?',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Olga, the Scalawag Wench'),(24639,2,0,'It\'s okay, sweetheart. This one\'s on the house.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Olga, the Scalawag Wench'),(24788,0,0,'Sure thing, love. Put it on Harry\'s tab, will ya? He owes me a drink!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24788,1,0,'Free rum? Why... that\'s me favorite kind!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24788,2,0,'Sweet Neptulon! That was... one drink... too many!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24711,0,0,'Well time\'s money, and time\'s wasting! Let\'s have that drink...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24711,1,0,'Wow! This really greases the steamplugs!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24711,2,0,'If I were an honest goblin, I\'d say this was the best beer of the festival...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24711,3,0,'Too bad Coren\'s dead. If I could buy that brew from him and resell it - watered down and rebottled under my own label, of course - I\'d be rich!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24711,4,0,'Hey there, and welcome to Brewfest. Come in and have a drink or three!',0,1,100,3,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24711,4,1,'What\'s up, friend? Welcome to the Brewfest Grounds! Now go buy some drinks!',0,1,100,3,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24711,4,2,'Hey hey, it\'s another $r! Welcome to my annual Brewfest celebration... now go feast and drink some!',0,1,100,3,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24710,0,0,'Right! Let\'s try this so-called dire brew...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24710,1,0,'Bronzebeard\'s beard! What a drink!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24710,2,0,'$N, this beer... well, it might be the best of Brewfest!',0,0,100,15,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24710,3,0,'It is a shame Coren\'s Dire Brew can\'t quench more thirsting throats! It\'s blasphemy, I know, but I envy those Dark Iron dwarves!',0,0,100,274,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24710,4,0,'Ho there, and welcome to Brewfest!',0,7,100,3,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24710,4,1,'Hello, friend! Welcome to the Brewfest Grounds!',0,7,100,3,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24710,4,2,'Hail, good $c! Welcome to Ironforge\'s annual Brewfest celebration!',0,7,100,3,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(18471,0,0,'Get in the Ring of Blood, $N. The fight is about to start!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,1,0,'The battle is about to begin! $N versus the ferocious clefthoof, Brokentoe!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,2,0,'$N has defeated Brokentoe!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,3,0,'The battle is about to begin! The unmerciful Murkblood twins versus $N!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,4,0,'Unbelievable! $N has defeated the Murkblood Twins!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,5,0,'Hailing from the mountains of Blade\'s Edge comes Rokdar the Sundered Lord! $N is in for the fight of $g his:her; life.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,6,0,'$N is victorious once more!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,7,0,'From parts unkown: Skra\'gath! Can $N possibly survive the onslaught of void energies?',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,8,0,'$N is victorious once more!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,9,0,'This is the moment we\'ve all been waiting for! The Warmaul champion is about to make $g his:her; first showing at the Ring of Blood in weeks! Will $N go down in defeat as easily as the champion\'s other opponents? We shall see...',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,10,0,'$N is victorious once more!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18471,11,0,'Mogor has challenged you. You have to accept! Get in the ring if you are ready to fight.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gurgthock'),(18069,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mogor'),(18069,1,0,'Dat was poop! Mogor could put up much better fight den dat!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mogor'),(18069,2,0,'Mogor not impressed! Skra\'gath wuz made of da air and shadow! Soft like da squishy orcies!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mogor'),(18069,3,0,'Now you face da true champion! I give you chance to run away little one. Run away now before Mogor decim... destyor... Run away before Mogor KILL!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mogor'),(18069,4,0,'No more chances! Now you pay da ogre!',1,0,100,15,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mogor'),(18069,5,0,'No more nice ogre! You hurt Mogor!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mogor'),(18069,6,0,'WUT!? UNPOSSIBLE!! You fight Mogor now! Mogor destroy!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mogor'),(18399,0,0,'Blue brothers reign supreme!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Murkblood Twin'),(18400,0,0,'ROKDAR SMASH PUNY %t!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rokdar the Sundered Lord'),(18401,0,0,'Closer... Come closer... See what the void brings!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skra\'gath'),(18402,0,0,'Piece by piece I will tear this challenger apart... PIECE BY PIECE!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Warmaul Champion'),(30146,0,0,'Curse you! You will not treat me like a beast!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Exhausted Vrykul'),(30146,0,1,'Enough! I will teach you some manners, wench!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Exhausted Vrykul'),(30146,0,2,'I\'d rather die fighting than live like a slave!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Exhausted Vrykul'),(30146,1,0,'Back... to work...',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Exhausted Vrykul'),(30146,1,1,'We will have revenge... some day.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Exhausted Vrykul'),(30146,1,2,'You treat us worse than animals!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Exhausted Vrykul'),(22373,0,0,'More Minions of Terokk are coming!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Defender Grashna'),(22373,1,0,'The invaders persist! Hold them off!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Defender Grashna'),(22373,2,0,'An Avatar of Terokk!! To arms!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Defender Grashna'),(22373,3,0,'The Avatar of Terokk has been defeated! Death to Terokk! Death to Skettis!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Defender Grashna'),(24211,0,0,'Blessings of the spirits of the land and air upon you.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Winterhoof Longrunner'),(24211,0,1,'I must return. Good hunting to you.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Winterhoof Longrunner'),(24211,0,2,'I owe you a life debt, stranger.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Winterhoof Longrunner'),(24211,0,3,'Strange ghosts walk the land. Be careful!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Winterhoof Longrunner'),(24211,0,4,'Thank you, stranger.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Winterhoof Longrunner'),(24211,0,5,'They took us one by one. I\'m sure there are other survivors.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Winterhoof Longrunner'),(24211,0,6,'We should never have traveled through the Rivenwood. Everyone knows this!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Winterhoof Longrunner'),(24211,0,7,'You saved me from certain death. I owe you.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Freed Winterhoof Longrunner'),(6546,0,0,'Grid yourself, $N. The demon in this orb is a fel beast.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabetha'),(50047,0,0,'Bless you, hero!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Injured Stormwind Infantry'),(50047,0,1,'I live to fight another day!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Injured Stormwind Infantry'),(50047,0,2,'I... I\'m ok! I\'m ok!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Injured Stormwind Infantry'),(50047,0,3,'I will fear no evil!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Injured Stormwind Infantry'),(50047,0,4,'You\'re $N! The hero that everyone has been talking about! Thank you!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Injured Stormwind Infantry'),(50047,0,5,'Thank the Light!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Injured Stormwind Infantry'),(15641,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(15950,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(18210,0,0,'Look out!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maghar Captive'),(18210,1,0,'Don\'t let them escape! Kill the strong one first!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maghar Captive'),(18210,2,0,'More of them are coming! Watch out!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maghar Captive'),(18210,3,0,'Where do you think you\'re going? Kill them all!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maghar Captive'),(18210,4,0,'Ride the lightning, filth!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maghar Captive'),(18210,5,0,'FROST SHOCK!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maghar Captive'),(18210,6,0,'It is best that we split up now, in case they send more after us. Hopefully one of us will make it back to Garrosh. Farewell, stranger.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maghar Captive'),(18209,0,0,'Look out!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kurenai Captive'),(18209,1,0,'Don\'t let them escape! Kill the strong one first!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kurenai Captive'),(18209,2,0,'More of them are coming! Watch out!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kurenai Captive'),(18209,3,0,'Where do you think you\'re going? Kill them all!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kurenai Captive'),(18209,4,0,'Ride the lightning, filth!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kurenai Captive'),(18209,5,0,'FROST SHOCK!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kurenai Captive'),(18209,6,0,'Up ahead is the road to Telaar. We will split up when we reach the fork as they will surely send more Murkblood after us. Hopefully one of us makes it back to Telaar alive.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kurenai Captive'),(18428,0,2,'One day, a hero will rise and lift the orcs up to their former glory.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mag\'har Prisoner'),(18428,0,3,'Spirits watch over you, $r!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mag\'har Prisoner'),(18428,0,4,'Thank you, $r! Your service to the Mag\'har will not be forgotten.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mag\'har Prisoner'),(18428,0,0,'Death to the ogres!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mag\'har Prisoner'),(18428,0,1,'Many thanks, hero!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mag\'har Prisoner'),(24035,0,0,'Avenge my friends who have already been sacrificed',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,1,'I don\'t want to be sacrificed',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,2,'I don\'t want to be taken down into the catacombs',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,3,'I think I saw a key on one of those Gjalerbron vrykul up top.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,4,'I think I saw a key on one of those vrykul.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,5,'Is there no hero to rescue me?',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,6,'My thanks to you, hero',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,7,'Oh, thank you, thank you',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,8,'Please, let me out of here',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,9,'Thank goodness for you',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,10,'Thank you. I will not forget this',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,11,'The key... you have to find the key',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,12,'The vrykul are evil and must be destroyed',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,13,'They\'re performing unholy rites down in the catacombs, and I\'m about to be the sacrifice',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,14,'This is the end.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,15,'You have to put a stop to this madness before it\'s too late',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(24035,0,16,'You saved my life',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gjalerbron Prisoner'),(29007,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(28474,5,0,'Well done.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 6'),(28577,2,0,'I won\'t go down that easy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,2,1,'Die Scourge dog!DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,2,2,'Is this the best the Scourge can do?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28577,2,3,'You may take my life, but you won\'t take my freedom!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,2,0,'I won\'t go down that easy!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,2,1,'Die Scourge dog!DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,2,2,'Is this the best the Scourge can do?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28576,2,3,'You may take my life, but you won\'t take my freedom!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,1,2,'Is this the best the Scourge can do?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,1,3,'You may take my life, but you won\'t take my freedom!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,1,4,'DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28941,1,5,'Come then,death knight!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,1,2,'Is this the best the Scourge can do?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,1,3,'You may take my life, but you won\'t take my freedom!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,1,4,'DIE!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28942,1,5,'Come then,death knight!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,8,'The Scourge are running freely through the streets!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,9,'So much for the Scarlet \"paradise!\"',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,10,'You are useless,Quimby!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,11,'I want on that last ship! Don\'t leave us!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,12,'We we promised safety! Security!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,13,'We\'re done for.Safe us,Quimby!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28559,2,14,'Naxxramas is gone? Who cares! Acherus is here now and the death knights are killing everybody!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,8,'The Scourge are running freely through the streets!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,9,'So much for the Scarlet \"paradise!\"',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,10,'You are useless,Quimby!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,11,'I want on that last ship! Don\'t leave us!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,12,'We we promised safety! Security!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,13,'We\'re done for.Safe us,Quimby!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28560,2,14,'Naxxramas is gone? Who cares! Acherus is here now and the death knights are killing everybody!',0,0,50,22,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(29193,6,0,'Is it too late to change my mind? How about you just kill me instead?',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 7'),(29112,4,0,'You idiot! That\'s What I\'m Doing Right Now!',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(29112,5,0,'I AM going to kill you. What\'s the rush?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 5'),(28610,0,2,'Let the purging begin!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28939,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(28557,0,5,'The... They promised that we\'d be safe... ',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(28557,0,6,'Not again! Don\'t kill me, i have a family...HELP!!!HELP ME SOMEBODY!!!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(16337,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(16318,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(16317,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(16204,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(16344,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(7379,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(7372,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(25073,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(24978,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(24966,3,0,'The rift\'s power is ours!',0,33,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(24960,3,0,'The rift\'s power is ours!',0,33,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(25470,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(25429,0,0,'Kaganishu!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25428,0,0,'Kaganishu!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25806,0,1,'KILL KILL KILL!!!!!!!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25806,0,0,'I\'m sure ol\' Hemet can do something with your bones!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25979,0,1,'KILL KILL KILL!!!!!!!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25979,0,0,'I\'m sure ol\' Hemet can do something with your bones!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25753,0,0,'Warning! Warning! Intruder alert! Intruder alert!',0,0,30,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25216,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26319,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27564,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27162,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26779,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27791,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27160,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27713,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27588,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27246,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26762,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27351,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26780,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26816,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27560,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27683,5,0,'The Remnant of <NAME> fades away...',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 6'),(27540,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27576,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27677,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27749,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27687,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27539,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27033,1,0,'If you want to jump to your death this time, I won\'t stop you.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2'),(27198,6,0,'Has it really been an hour?',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 7'),(27202,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27178,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26815,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27357,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26705,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26198,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27278,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(27156,3,0,'You are right, of course, old friend. Let us hope that these heroes arrive soon.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 4'),(32238,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(29490,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(33695,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(31832,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30755,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30632,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(29333,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(29338,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30243,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(29330,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(31145,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(31267,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(31731,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30179,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30319,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30111,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(24071,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(24849,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(28410,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(23956,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(24082,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(26554,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(9456,0,0,'The Kolkar are the strongest!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Warlord Krom\'zar: spawn'),(23678,1,2,'Thank you. I thought I would die without seeing my sisters again!',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chill Nymph'),(24534,0,0,'Welcome to Fort Wildervar, brave homesteaders! There\'s a whole continent out there just waiting to be claimed!',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(28179,2,0,'Choose your words wisely, death knight. You stand amidst the company of the devoted.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring'),(28179,1,0,'What would you have me do, Darion?',0,0,100,6,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring'),(28179,0,0,'The Lich King reacted swiftly to the breach. Faster than I anticipated.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring'),(26817,0,0,'I\'ll blast those gnomish wannabes back to the scrap heap!',0,7,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fizzcrank Fighter'),(33788,0,0,'Help shield us from these cutting winds, little sapling.',0,7,100,2,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Fhyron Shadesong'),(23975,3,0,'Thank you, spirits.',0,7,100,2,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thoralius the Wise'),(27615,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Scourge Deathspeaker'),(29836,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(29820,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(29822,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36853,8,1,'A flaw of mortality...',1,0,0,0,0,17009,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_KILL 2'),(36853,9,0,'Enough! I tire of these games!',1,0,0,0,0,17011,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_BERSERK'),(36853,10,0,'Free...at last...',1,0,0,0,0,17010,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Sindragosa - SAY_DEATH'),(37200,14,0,'Prepare the Skybreaker fer an aerial assault on the citadel!',1,0,0,5,0,16981,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_SAURFANG_INTRO_3'),(37200,15,0,'Heroes, ye must fight yer way to a clear extraction point within Icecrown. We\'ll try an\' rendezvous on the ramparts!',1,0,0,22,0,16982,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_SAURFANG_INTRO_4'),(37119,5,0,'By the Light, it must be so!',0,0,0,5,0,16657,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlord Tirion Fordring - SAY_TIRION_INTRO_A_5'),(32295,3,0,'The red dragonflight will take on the burden of mending the devastation wrought on Azeroth. Return home to your people and rest. Tomorrow will bring you new challenges, and you must be ready to face them. Life... goes on.',1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Alexstrasza - Yell Four'),(40352,9,0,'De spirits have blessed us wit\' an answer! De Echo Isles will be ours again!',0,0,100,5,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(40416,0,0,'He got a big army, an\' he be plannin\' somethin\' down dere.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Darkspear Scout'),(40416,0,1,'Zalazane got most of his hexes trolls hidden under de canopy on de big island.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Darkspear Scout'),(40391,0,0,'Thank ya, scout. Keep up da patrols. But for now, a rest is in order. Dismissed.',0,0,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Vol\'jin'),(23861,0,0,'Go away,whoever you are!W<NAME> is mine...mine!',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(38017,3,0,'As you wish, my queen. I will not stand in their way, but I will keep a close watch.',0,0,100,16,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kalecgos'),(24531,2,0,'Of course, darling.',0,7,100,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME>'),(24528,2,0,'That, sir, is a mule!',0,7,100,25,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Brune Grayblade'),(14354,4,0,'Say hello to my little friends!',0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pusillin text #5'),(39863,0,0,'Meddlesome insects! You are too late. The Ruby Sanctum is lost!',1,0,100,1,0,17499,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(39863,1,0,'Your world teeters on the brink of annihilation. You will ALL bear witness to the coming of a new age of DESTRUCTION!',1,0,100,0,0,17500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(39863,2,0,'The heavens burn!',1,0,100,0,0,17505,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(39863,3,0,'You will find only suffering within the realm of twilight! Enter if you dare!',1,0,100,0,0,17507,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(39863,4,0,'Relish this victory, mortals, for it will be your last! This world will burn with the master\'s return!',1,0,100,0,0,17503,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(39863,5,0,'Another \"hero\" falls.',1,0,100,0,0,17501,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(39863,6,0,'Not good enough.',1,0,100,0,0,17504,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(40142,0,0,'Beware the shadow!',1,0,100,0,0,17506,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(40142,1,0,'I am the light and the darkness! Cower, mortals, before the herald of Deathwing!',1,0,100,0,0,17508,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(40146,0,0,'Your companion\'s efforts have forced Halion further out of the Physical realm!',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(40146,1,0,'Your efforts have forced Halion further into the Physical realm!',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(40146,2,0,'Your companion\'s efforts have forced Halion further out of the Twilight realm!',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(40146,3,0,'Your efforts have forced Halion further into the Twilight realm!',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(40146,4,0,'Without pressure in both realms, Halion begins to regenerate.',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(40146,5,0,'The orbiting spheres pulse with dark energy!',5,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Halion'),(50004,1,0,'Reavers, Sergeants, attack!.',1,0,0,0,0,17081,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(50004,0,0,'This is not your battle, dwarf. Back down or we will be forced to destroy your ship.',1,0,0,0,0,17093,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(50006,1,0,'Marines! Sergeants! Attack!',1,0,0,0,0,16956,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(50006,0,0,'Move yer jalopy or well blow it out of the sky, orc! The Hordes got no business here!',1,0,0,0,0,16969,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(36948,0,0,'Fire up the engines! We got a meetin\' with destiny, lads!',1,0,100,0,0,16962,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_0'),(36948,1,0,'Hold on to yer hats!',1,0,100,0,0,16963,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_1'),(36948,2,0,'What in the world is that? Grab me spyglass, crewman!',1,0,100,0,0,16964,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_INTRO_ALLIANCE_2'),(36948,3,0,'By me own beard! HORDE SAILIN\' IN FAST \'N HOT!',1,0,100,0,0,16965,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_3'),(36948,4,0,'EVASIVE ACTION! MAN THE GUNS!',1,0,100,0,0,16966,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_4'),(36948,5,0,'Cowardly dogs! Ye blindsided us!',1,0,100,0,0,16967,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_5'),(36948,6,0,'Not me battle? I dunnae who ye? think ye are, mister, but I got a score to settle with Arthas and yer not gettin\' in me way! FIRE ALL GUNS! FIRE! FIRE!',1,0,100,0,0,16968,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<NAME> - SAY_INTRO_ALLIANCE_7'),(36948,7,0,'Move yer jalopy or we\'ll blow it out of the sky, orc! The Horde\'s got no business here!',1,0,100,0,0,16969,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_INTRO_HORDE_3'),(36948,8,0,'What\'s this then?! Ye won\'t be takin\' this son o\' Ironforge\'s vessel without a fight!.',1,0,100,0,0,16958,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_BOARDING_SKYBREAKER_1'),(36948,9,0,'Marines, Sergeants, attack!',1,0,100,0,0,16956,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_BOARDING_ORGRIMS_HAMMER_0'),(36948,10,0,'Riflemen, shoot faster!',1,0,100,0,0,16954,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_NEW_RIFLEMEN_SPAWNED'),(36948,11,0,'Mortar team, reload!',1,0,100,0,0,16955,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_NEW_MORTAR_TEAM_SPAWNED'),(36948,12,0,'We\'re taking hull damage, get a sorcerer out here to shut down those cannons!',1,0,100,0,0,16957,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_NEW_MAGE_SPAWNED'),(36948,13,0,'Don\'t say I didn\'t warn ya, scoundrels! Onward, brothers and sisters!',1,0,100,0,0,16959,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_ALLIANCE_VICTORY'),(36948,14,0,'<NAME>, get us out of here! We\'re taken too much damage to stay afloat!',1,0,100,0,0,16960,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Muradin Bronzebeard - SAY_ALLIANCE_DEFEAT'),(36939,0,0,'Rise up, sons and daughters of the Horde! Today we battle a hated enemy of the Horde! LOK\'TAR OGAR!',1,0,100,0,0,17087,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_0'),(36939,1,0,'Kor\'kron, take us out!',1,0,100,0,0,17088,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_1_1'),(36939,2,0,'What is that?! Something approaching in the distance!',1,0,100,0,0,17089,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_1'),(36939,3,0,'ALLIANCE GUNSHIP! ALL HANDS ON DECK!',1,0,100,0,0,17090,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_2'),(36939,4,0,'You will know our business soon! KOR\'KRON, ANNIHILATE THEM!',1,0,100,0,0,17092,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_HORDE_4'),(36939,5,0,'Reavers, Sergeants, attack!',1,0,100,0,0,17081,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_BOARDING_SKYBREAKER_0'),(36939,6,0,'You DARE board my ship? Your death will come swiftly.',1,0,100,0,0,17083,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_BOARDING_ORGRIMS_HAMMER_1'),(36939,7,0,'Axethrowers, hurl faster!',1,0,100,0,0,17079,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_NEW_AXETHROWER_SPAWNED'),(36939,8,0,'Rocketeers, reload!',1,0,100,0,0,17080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_NEW_ROCKETEERS_SPAWNED'),(36939,9,0,'We\'re taking hull damage, get a battle-mage out here to shut down those cannons!',1,0,100,0,0,17082,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_NEW_BATTLE_MAGE_SPAWNED'),(36939,10,0,'The Alliance falter. Onward to the Lich King!',1,0,100,0,0,17084,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_HORDE_VICTORY'),(36939,11,0,'Damage control! Put those fires out! You haven\'t seen the last of the Horde!',1,0,100,0,0,17085,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_HORDE_DEFEAT'),(36939,12,0,'This is not your battle, dwarf. Back down or we will be forced to destroy your ship.',1,0,100,0,0,17093,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'High Overlord Saurfang - SAY_INTRO_ALLIANCE_6'),(37030,0,0,'Thank the spirits for you, brothers and sisters. The Skybreaker has already left. Quickly now, to Orgrim\'s Hammer! If you leave soon, you may be able to catch them.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kor\'kron Primalist - SAY_FIRST_SQUAD_RESCUED_HORDE_0'),(37033,0,0,'This should be helpin\'ya!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kor\'kron Invoker - SAY_FIRST_SQUAD_RESCUED_HORDE_1'),(37033,1,0,'%s summons a Kor\'kron Battle Standard.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kor\'kron Invoker - SAY_SUMMON_BATTLE_STANDARD'),(37032,0,0,'Aka\'Magosh, brave warriors. The alliance is in great number here.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kor\'kron Defender - SAY_SECOND_SQUAD_RESCUED_HORDE_0'),(37032,1,0,'Captain Saurfang will be pleased to see you aboard Orgrim\'s Hammer. Make haste, we will secure the area until you are ready for take-off.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Kor\'kron Defender - SAY_SECOND_SQUAD_RESCUED_HORDE_1'),(37032,2,0,'A screeching cry pierces the air above!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Frostwyrm - SAY_FROSTWYRM_SUMMON_0'),(37003,0,0,'Thank goodness you arrived when you did, heroes. Orgrim\'s Hammer has already left. Quickly now, to The Skybreaker! If you leave soon, you may be able to catch them.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skybreaker Vindicator - SAY_FIRST_SQUAD_RESCUED_ALLIANCE_0'),(37026,0,0,'This ought to help!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skybreaker Sorcerer - SAY_FIRST_SQUAD_RESCUED_ALLIANCE_1'),(37026,1,0,'%s summons a Skybreaker Battle Standard.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skybreaker Sorcerer - SAY_SUMMON_BATTLE_STANDARD'),(36998,0,0,'You have my thanks. We were outnumbered until you arrived.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skybreaker Protector - SAY_SECOND_SQUAD_RESCUED_ALLIANCE_0'),(36998,1,0,'Captain Muradin is waiting aboard The Skybreaker. We\'ll secure the area until you are ready for take off.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skybreaker Protector - SAY_SECOND_SQUAD_RESCUED_ALLIANCE_1'),(36998,2,0,'Skybreaker infantry, hold position!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Skybreaker Protector - SAY_SECOND_SQUAD_RESCUED_ALLIANCE_2'),(36998,3,0,'A screeching cry pierces the air above!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Frostwyrm - SAY_FROSTWYRM_SUMMON_0'),(37230,0,0,'A Spire Frostwyrm lands just before Orgrim\'s Hammer.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Frostwyrm - SAY_FROSTWYRM_LAND_H_1'),(37230,1,0,'A Spire Frostwyrm lands just before The Skybreaker. ',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Frostwyrm - SAY_FROSTWYRM_LAND_A_2'),(9796,0,0,'Duokna... this is embarrassing.',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Galbar'),(37087,0,0,'Let\'s keep this fire going, dwarves!',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Jona Ironstock - Text 1'),(37087,0,1,'What\'s Joren doin\' out there, anyhow?',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Jona Ironstock - Text 2'),(37087,0,2,'Don\'t fret, we\'ll be outta here soon.',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Jona Ironstock - Text 3'),(37087,0,3,'Get ta work, boys!',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Jona Ironstock - Text 4'),(37112,0,0,'<NAME>!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OCC Text for Wayward Fire Elemental'),(37112,1,0,'<NAME>',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aggro Text for Wayward Fire Elemental'),(808,0,0,'First da fire, and now da $R! You gonna die!',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OCC Text for Grik\'nir the Cold'),(37080,0,0,'Yer a lifesaver! For Ironforge!',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1 - Wounded Coldridge Mountaineer'),(37080,0,1,'Thanks! I can make it from here.',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2 - Wounded Coldridge Mountaineer'),(37080,0,2,'Ahh, much better. I owe ya one.',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 3 - Wounded Coldridge Mountaineer'),(37073,0,0,'You break our cave, I break your skull!',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 1 - Rockjaw Goon'),(37073,0,1,'Why you break our home?!',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text 2 - Rockjaw Goon'),(23953,1,0,'Your blood is mine!',1,0,0,7,0,13221,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(23953,2,0,'Aranal, ledel! Their fate shall be yours!',1,0,0,0,0,13224,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(23953,3,0,'Not so fast.',1,0,0,0,0,13222,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(23953,4,0,'%s casts Frost Tomb on $n.',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(23953,5,0,'I join... the night.',1,0,0,0,0,13225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(36612,7,0,'Lord Marrowgar creates a whirling storm of bone!',41,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_BONE_STORM_EMOTE'),(100001,0,2,'Don\'t look into their eyes! They\'re not the people you once knew!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gilneas City Guard - Text 3'),(100001,0,0,'They\'re turning our people into MONSTERS!!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gilneas City Guard - Text 1'),(100001,0,1,'Hold them back! We must protect the survivors!.',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gilneas City Guard - Text 2'),(36612,4,1,'Languish in damnation!',1,0,0,0,0,16943,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_KILL_2'),(36612,3,2,'The only escape is death!',1,0,0,0,0,16949,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_BONESPIKE_3'),(36612,3,1,'Stick Around!',1,0,0,0,0,16948,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lord Marrowgar - SAY_BONESPIKE_2'),(35840,0,2,'The plan is to keep moving south. We can`t go back to the Merchant Square. It\'s not safe.',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gwen Armstead - Text 3'),(35840,0,1,'The King\'s men will protect us. We`re almost here.',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gwen Armstead - Text 2'),(35840,0,0,'We mast stick together to survive. Move around in groups',0,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gwen Armstead - Text 1'),(35550,0,2,'Hold the barricades! Do not give them an inch!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Genn Greymane - Text 3'),(35550,0,1,'Fire!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Genn Greymane - Text 2'),(35550,0,0,'Keep them back!!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'King Genn Greymane - Text 1'),(35369,0,3,'My hands... don\'t look at my hands!!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Josiah Avery - Text 4'),(35369,0,2,'That\'s wrong whit me??!!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Josiah Avery - Text 3'),(35369,0,1,'My face! What\'s wrong with my face!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Josiah Avery - Text 2'),(35369,0,0,'The pain is unberable!',1,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Josiah Avery - Text 1'),(17406,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(12856,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34177,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34419,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3771,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3765,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3770,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3767,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3932,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(12918,1,0,'No! You cannot be stronger than the Foulweald! No!!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(12918,0,0,'You are a little gnat to the Foulweald! Die!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3987,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(6075,0,0,'%s calls for help!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'emote Text'),(3762,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3759,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3758,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3763,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3733,0,1,'You will not stop us,filthy $R!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3733,0,0,'Some nice contagion of rot for you,my pretty?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3745,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3750,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3743,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3823,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3825,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(34590,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17300,0,0,'%s calls for help!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'emote Text'),(25951,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(25949,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(14753,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(4273,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(10559,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3772,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(34295,0,5,'The Earthen Ring cannot withstand my fury!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34295,0,4,'Death rises from below and erupts from above, there is no escape!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34295,0,3,'There is no escape, there is only the fiery embrace of my lava!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34295,0,2,'Scorch the ground, boil the water, ignite the skies!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34295,0,1,'Like moths to flame!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34295,0,0,'I am free of the bonds of earth, never to return again!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(3734,0,4,'Warchief Hellscream will have your head if you don\'t pick up the pace,Forsaken!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(3734,0,3,'Work faster for the glory of the Horde!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(3734,0,2,'This is coward\'s work. We should be crushing the Alliance now.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(3734,0,1,'How special... you\'re good at picking flowers. Are you going to send me a bouquet? Hahahaha!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(3734,0,0,'They say there\'s no rest for the wicked. That means you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(33356,0,2,'There is no blood easier spilt than that of a puny night elf!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(33356,0,1,'Smash them! Destroy them! Lok\'tar ogar!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(33356,0,0,'I want that one killed! The one right there that doesn\'t look like the others!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34499,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(39096,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(34204,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34208,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3696,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(6115,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(10639,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzied Rage'),(17325,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17326,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17330,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17328,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17327,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17329,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17713,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17496,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17527,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17610,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17607,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17608,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17678,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17606,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17609,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17336,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46590,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46617,0,6,'Shake it like a sine wave, baby!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(48874,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(47730,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(45772,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46134,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(47762,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48625,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46402,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(47699,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(49255,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(49253,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48514,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(51776,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48041,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48043,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48883,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(47067,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48443,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48631,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46993,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46979,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(47974,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48012,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(48668,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(45205,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(43427,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39643,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39637,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39828,0,1,'Stop thief!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(40882,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(41027,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39974,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(40562,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39437,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(40185,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(38926,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39756,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(41500,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39843,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2019,0,0,'You will be easy prey, $c.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2019,0,1,'My talons will shred your puny body, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2019,0,2,'A fine trophy your head will make, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2015,0,0,'You will be easy prey, $c.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2015,0,1,'My talons will shred your puny body, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2015,0,2,'A fine trophy your head will make, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2021,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2021,1,0,'You will be easy prey, $c.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2021,1,1,'My talons will shred your puny body, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2021,1,2,'A fine trophy your head will make, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2017,0,0,'You will be easy prey, $c.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2017,0,1,'My talons will shred your puny body, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2017,0,2,'A fine trophy your head will make, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2018,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2018,1,0,'You will be easy prey, $c.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2018,1,1,'My talons will shred your puny body, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2018,1,2,'A fine trophy your head will make, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2020,0,0,'You will be easy prey, $c.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2020,0,1,'My talons will shred your puny body, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2020,0,2,'A fine trophy your head will make, $r.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3569,0,0,'KILL!!!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2006,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2007,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(7235,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2012,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2009,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2003,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34941,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11917,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4051,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34969,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34937,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(4053,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4409,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(11913,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(41408,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35333,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34939,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(34931,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(34934,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(40906,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Furious Rage'),(4061,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4056,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35154,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(7730,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(4070,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3992,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8956,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(8958,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(9462,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(7157,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(14344,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(9454,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7149,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(47679,0,0,'Kitty... KITTY! I\'M SO SORRY KITTY! COME BACK! DON\'T LEAVE ME LIKE THIS!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3667,0,0,'Finally, my soul may rest... Oh, dearest Cerellean...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(33044,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(33079,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(34415,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34413,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7015,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34046,0,0,'%s cackles in glee.',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(2206,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2207,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34339,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(33262,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34347,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(32859,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(33207,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(32868,0,0,'Don\'t move,little adventurer.I have the death you seek.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(32861,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34248,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(32863,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(34309,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(33071,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(32860,0,0,'Relax,mon.I be makin\' dis quick.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2172,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34033,0,0,'Your flesh is for feit!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(34033,1,0,'I said,SEARCH the bodies BEFORE you eat them!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OOC Text'),(32888,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(32888,1,0,'Intruders! Good, I was getting bored...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(32888,1,1,'Masters, I pledge this Pin to you!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(34405,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(33057,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(32989,0,0,'Ya be messin\' with Tzu-Tzu? It no matter...Aetherion\'s here,mon.We gonna roll on ya refugee camp an\' then bring the hurt to ya Lor\'demal.But first ya die!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3733,0,2,'What are you doing here?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(34295,0,6,'Destroy them my minions!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34295,0,7,'ASHENVALE WILL BURN!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(3734,1,0,'I\'ll crush you,puny $R!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(33356,1,0,'Pathetic weakling.You will die quickly!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34592,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(43657,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(12897,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(12859,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3925,0,0,'%s becomes vengeance!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Vengeance'),(3926,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3921,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzied Rage'),(33389,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3711,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3944,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3712,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3715,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3717,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3713,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(28602,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(25470,1,0,'No Touch Spores!',0,0,25,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25429,1,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(25428,1,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(25806,0,8,'I wonder what nesingwary will give me for your hide!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(25979,0,8,'I wonder what nesingwary will give me for your hide!',0,0,20,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(23618,0,0,'Will you help me find my dog...?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(23618,0,1,'I miss my dog so much...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(23618,0,2,'Where is that dog?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(36712,0,0,'Squealer take this land! Tauren will burn!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5787,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(3056,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(37178,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36828,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36825,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36827,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36832,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2951,0,0,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2951,0,1,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2950,0,0,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2950,0,1,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2949,0,0,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2949,0,1,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(2949,1,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5785,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5786,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(2976,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2979,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2977,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2978,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2964,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(2963,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3198,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3199,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3196,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5824,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5952,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3115,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3116,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3117,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3118,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5822,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39352,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Taunka Rage'),(3204,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39353,0,0,'What\'s the matter, chum... Never seen a worgen before?',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(10676,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5953,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3114,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3113,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3101,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(38032,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30263,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30238,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30265,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30233,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(30860,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(7524,0,0,'The crystal will save us! We can be saved!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7524,0,1,'My children... what have I done?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7524,0,2,'The crystal can still be found... if we can just find it again...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7524,0,3,'It\'s our fault... the destruction is all our fault...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7524,1,0,'No... I was to leave forever... I will still...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(7524,1,1,'My curse will yours,fooløûð $R',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(48727,0,0,'Thank you...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(48727,0,1,'The crystal has returned.You must leave...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(48727,0,2,'Leave now... you do not deserve to suffer the crystal\'s wrath...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(48740,0,0,'You don\'t understand! I had to study it! I HAD TO!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(48740,1,0,'Forgive... me...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(7454,0,0,'%s becomes crazed!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Crazed'),(10807,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7452,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7433,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7434,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7432,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(7523,0,0,'The crystal will save us! We can be saved!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7523,0,1,'My children... what have I done?',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7523,0,2,'The crystal can still be found... if we can just find it again...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7523,0,3,'It\'s our fault... the destruction is all our fault...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7523,1,0,'No... I was to leave forever... I will still...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(7523,1,1,'My curse will yours,fooløûð $R',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(15623,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11747,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(14435,0,0,'My power is discompopulatingly devastating! It\'s ladicrous that this mortals even attempt to enter my real.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11880,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(15542,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11882,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34782,0,0,'Do not trifle with me, $R.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3394,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5838,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3380,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3379,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(14718,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(14718,1,0,'%s attempts to to get help!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3397,0,0,'I am slain! Summon Verog!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'death Text'),(3275,0,0,'I am slain! Summon Verog!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'death Text'),(3274,0,0,'I am slain! Summon Verog!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'death Text'),(3273,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(9523,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34635,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3245,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(34509,0,0,'Pigs! Scum! I will cleave your heads like apples!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34509,0,1,'Flat-nosed filth! Get off my land!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34509,0,2,'That\'s right! Die, vemin! The Horde will have your heads for this.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(34545,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(3269,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3265,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3271,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34503,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34733,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(6020,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3382,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34790,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3384,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5629,0,0,'$R, I\'ll have your head. It\'s a little more personal and I like it.',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3386,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34706,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34560,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(3282,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3279,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3276,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3277,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3278,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3280,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34846,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(14229,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4665,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4663,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4666,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4667,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4668,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36414,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35452,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(18241,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(4677,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11562,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(11563,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36094,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(12347,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(4651,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4653,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4646,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4648,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4673,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36183,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35632,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(12977,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36137,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36150,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(12976,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5760,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36159,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4645,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4638,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4642,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36134,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4641,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4640,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4659,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4656,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4654,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4658,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4657,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4655,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(11559,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(14225,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(4726,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36181,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36182,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35605,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4714,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4711,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4718,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4715,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4719,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35606,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4712,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4716,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4713,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35827,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35898,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(21694,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(21338,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17801,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17805,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17722,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17799,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17991,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17941,1,1,'You should not have come.',1,0,50,0,0,10381,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(17941,1,0,'It had to be done.',1,0,50,0,0,10380,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(17941,0,2,'You brought this on yourselves.',1,0,50,0,0,10379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17941,0,1,'Don\'t make me kill you!',1,0,50,0,0,10378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17941,0,0,'The work must continue.',1,0,50,0,0,10376,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17962,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17959,0,5,'Get back to work you!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17959,0,4,'This is terrible..... my arms grow tired from beating on you lazy peons!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17959,0,3,'Hey! Over here! Yeah, over here... I\'m in this cage!!!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17959,0,2,'Too soon! You are slacking off too soon!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17959,0,1,'Wake up! Now get up and back to work!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17959,0,0,'Hurry up with it already! The longer you take, the more of a hurtin\' I\'m putting on you!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17964,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(18105,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17826,2,1,'Krypta!',1,0,50,0,0,10387,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(17826,2,0,'Well... done...',1,0,50,0,0,10389,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(17826,1,0,'Beast! Obey me! Kill them at once!',1,0,100,0,0,10383,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'in Combat Text'),(17826,0,1,'We fight to the death!',1,0,50,0,0,10384,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17826,0,0,'I will end this quickly...',1,0,50,0,0,10385,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17723,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17827,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(19632,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17732,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17729,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17728,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17734,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17727,0,0,'Illidan reigns!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17735,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36289,0,1,'Don\'t hurt me! I was just looking for my sisters! I think Ashley\'s inside that house!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(36288,0,1,'Are you one of the good worgen,$gmister:ma\'am;? Did you see Cynthia hiding in the sheds outside?',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(17941,2,0,'I... Deserve this.',1,0,100,0,0,10382,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(17959,0,6,'What is this?! Didn\'t mommy and daddy teach you anything?',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17959,1,0,'Assist me slaves!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17826,3,0,'It is finished.',1,0,100,0,0,10388,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(36287,0,1,'You are scary! I just want my mommy!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(17270,0,0,'The blood is our power!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17270,0,1,'We are the true Horde!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17270,0,2,'This world is OURS!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17478,0,0,'The blood is our power!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17478,0,1,'We are the true Horde!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17478,0,2,'This world is OURS!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17455,0,0,'Hold them back while I release the warhounds!',1,0,100,0,0,10160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17455,1,0,'My pets are hungry and they will dine on your flesh!',1,0,100,0,0,10161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17271,0,0,'The blood is our power!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17271,0,1,'We are the true Horde!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17271,0,2,'This world is OURS!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17259,0,0,'The blood is our power!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17259,0,1,'We are the true Horde!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17259,0,2,'This world is OURS!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17259,1,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17264,0,0,'The blood is our power!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17264,0,1,'We are the true Horde!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17264,0,2,'This world is OURS!',1,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17264,1,0,'You there! Keep a close watch on these ramparts, intruders could approach at any time!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OOC Text'),(17281,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(20363,0,0,'I hate this place and everyone in it! Smithers do this! Smithers do that! Oh so I\'m a farmer now, eh? So I\'m going to have to harvest stuff, eh? I hope one day this whole place becomes one big graveyard and all the loud-mouths are buried right damned here!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(17819,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(17840,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17833,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(18371,0,0,'Shirrak the Dead Watcher focuses his energy on $T',6,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(18311,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(4974,0,0,'Start your own guild right now and lead your group into deep grounds of Azeroth!',1,0,0,1,1900,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text1'),(4974,0,1,'Prove yourself being a guild master right now!',1,0,0,1,1600,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Text2'),(1287,0,0,'Weapons for everyone! *SWUACK* only for self defense...',1,0,0,1,300,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(1287,0,1,'Come and check this beauty Longsword with nice price...',1,0,0,1,400,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(1287,0,2,'Swords! Quivers! Staffs! Axes! Maces! Crossbows! Hammers! and a nice girl!',1,0,0,1,100,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(1291,0,0,'Armor for sale, come closed!',1,0,0,1,500,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(1291,0,1,'New armor arrived from Kalimdor, come and see what I have for you!.',1,0,0,0,700,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(12481,0,0,'Stormwind City is recruiting for the war, please see the Heros Call Board',0,0,0,0,500,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(12481,0,1,'Check the Board if you want any extra job!',1,0,0,0,400,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,''),(18322,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17835,0,0,'Your efforts... are in vain.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17835,0,1,'We will not be stopped!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17835,0,2,'The wizard will fall!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17892,0,0,'Your efforts... are in vain.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17892,0,1,'We will not be stopped!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17892,0,2,'The wizard will fall!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(18994,0,0,'Your efforts... are in vain.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(18994,0,1,'We will not be stopped!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(18994,0,2,'The wizard will fall!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(18995,0,0,'Your efforts... are in vain.',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(18995,0,1,'We will not be stopped!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(18995,0,2,'The wizard will fall!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(21104,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17839,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(17370,0,0,'L<NAME>!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17626,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17491,0,0,'What a pathetic victim!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17621,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17623,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17420,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(16700,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(16699,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(16523,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(19218,0,0,'I predict a painful death.',1,0,100,0,0,11101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(19218,1,0,'Measure twice, cut once.',1,0,50,0,0,11104,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(19218,1,1,'If my division is correct you should be quite dead.',1,0,50,0,0,11105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(19218,2,0,'Your strategy was flawed.',1,0,50,0,0,11102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(19218,2,1,'Yes, the only logical outcome.',1,0,50,0,0,11103,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(19218,3,0,'An unforeseen... contingency.',1,0,100,0,0,11106,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(19219,0,0,'You should split while you can.',1,0,100,0,0,11162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(19219,1,0,'Go ahead, gimme your best shot. I can take it!',1,0,50,0,0,11166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Spell Cast Text'),(19219,1,1,'Think you can hurt me, huh? Think I\'m afraid of you?!',1,0,50,0,0,11165,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Spell Cast Text'),(19219,2,0,'Damn, I\'m good!',1,0,50,0,0,11164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Spell Cast Text'),(19219,2,1,'Bully!',1,0,50,0,0,11167,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Spell Cast Text'),(19219,3,0,'Can\'t say I didn\'t warn you!',1,0,100,0,0,11163,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(4831,0,0,'Hearty Kill!',1,0,100,0,0,5801,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4832,0,0,'Sleep...',1,0,100,0,0,5804,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(4805,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4820,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4811,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4810,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4813,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8895,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8901,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8900,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8899,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(9547,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(9956,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8904,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8896,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8920,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(8913,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(11793,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46381,0,0,'Start fighting or start bleeding!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46252,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46250,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46383,0,0,'Allow me to introduce myself. I am <NAME> and I will be killing you all today.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46264,0,0,'ALL MUST BURN!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(46254,0,0,'Forest just setback!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(18635,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(18632,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(18638,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(19209,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17976,0,0,'Step forward! I will see that you are properly welcomed.',1,0,100,0,0,11071,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17976,1,0,'You are no longer dealing with some underling.',1,0,100,0,0,11076,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(17976,2,0,'Band\'or shorel\'aran!',1,0,100,0,0,11077,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(17976,3,0,'Guards! Come and kill these intruders!',1,0,100,0,0,11078,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Summon Text'),(17976,4,0,'Mission accomplished.',1,0,50,0,0,11073,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(17976,4,1,'Oh stop your whimpering.',1,0,50,0,0,11072,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(17976,5,0,'I have not yet... begun to...',1,0,100,0,0,11079,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(17978,0,0,'What aggravation is this? You will die!',1,0,100,0,0,11205,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(17978,1,0,'Scream while you burn!',1,0,50,0,0,11211,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(17978,1,1,'I\'ll incinerate you!',1,0,50,0,0,11210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(17978,2,0,'Your life will be mine!',1,0,100,0,0,11208,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(17978,3,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(17978,4,0,'I revel in your pain!',1,0,100,0,0,11209,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'at 50% HP Text'),(17978,5,0,'You seek a prize, eh? How about death?',1,0,100,0,0,11206,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'at 20% HP Text'),(17978,6,0,'I hate to say I told you so...',1,0,100,0,0,11207,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Player Kill Text'),(17978,7,0,'You won\'t... get far.',1,0,100,0,0,11212,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(11319,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(11322,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(11323,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(11324,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5710,2,0,'Join us!',1,0,100,0,0,5864,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5269,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5273,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(46254,2,0,'Yiiipe!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(3672,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3840,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3887,0,0,'Leave this accursed place at once!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(3887,1,0,'This death is only a temporary respite from my curse.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(4278,0,0,'Intruders in the keep!To arms!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(4278,1,0,'Repel the intruders!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Battle Text'),(4278,2,0,'Our vigilance is eternal...',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(46962,0,0,'<NAME>! the hunt begins!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(46962,1,0,'This is just too easy...',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(46962,2,0,'<NAME> begins to cast Stay of Execution!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(46962,3,0,'HA!Let\'s at least keep it interesting.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(46962,4,0,'I grow tired of this hunt... Time to die!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(46962,5,0,'Killed by lowly commoners,how droll... ',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(46964,0,0,'That bitch Sylvanas sent you too,did she?No matter,your journey ends in agony.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(46964,1,0,'<NAME> begins to cast Pistol Barrage!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(46964,2,0,'I thank you for the clearn death.I would not of done the same... ',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(46963,0,0,'Even here I find myself beset by fools!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(46963,1,0,'My new life was just beginning...',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(3870,0,0,'Gargoyle comes to life!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(14325,0,0,'No one get past me and threaten da king! Ungh, take it!!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(14325,1,0,'Help me crush these punys!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(14325,2,0,'%s begins to retaliate all attacks against him!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Cast Text'),(14321,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(14326,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(14323,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11496,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(11501,0,0,'You no challenge me, scrubs! I\'m da king now, and I stay king FOREVER!!!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11486,0,0,'Who dares disrupt the sanctity of Eldre\'Thalas? Face me, cowards!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(14322,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(14322,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(14322,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(14322,1,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(14322,2,0,'%s goes into a drunken rage!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Drunken Rage'),(11489,0,0,'You do not belong here! Ancients, rise against these intruders!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11469,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(16098,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11441,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11441,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11441,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11441,1,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(14351,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(14351,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(14351,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(36593,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36592,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36407,0,0,'My house!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(36015,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36013,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36884,0,0,'Haaadouuuu.....',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(36884,1,0,'... KEN!',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(36873,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(6649,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35880,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35881,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(6350,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(6370,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(6372,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35371,0,0,'What a leattle sneaky $R here?',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(8761,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36936,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36156,0,0,'The mutant goblin\'s tentacles break free and sither across the ground!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(36385,0,0,'Got one!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(36385,0,1,'Snagged one!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(36385,0,2,'Zap\'em!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(35190,0,0,'Defend the gates!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(35190,0,1,'For the Horde!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(35190,0,2,'For the Warchief!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(35190,1,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(35111,0,0,'Syntax Error Line 14,Sequence:Flee for Life.Entering Passive Mode.*Click!*',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(35503,0,0,'These grounds...are not...yours...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(7886,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35833,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(6193,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35832,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(6195,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(6190,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36147,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(36614,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35198,0,0,'Why, what brings you all the way over here, young $r? Please be cautious. Our foes stream from a hole in the mountains to the east - they have done irreparable harm to this land.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(35198,1,0,'The Talrendis Ancient howls out in pain!',41,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'in Battle Text'),(36611,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36816,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36849,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36660,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35177,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35312,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35095,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(35149,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36638,0,0,'You\'ve come seeking your death?Happy to oblige.',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(36815,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(35096,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(36384,0,0,'Got one!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(36384,0,1,'Snagged one!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(36384,0,2,'Zap\'em!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(3374,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3375,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3378,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3377,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3376,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37536,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37511,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37529,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(3261,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37157,0,0,'Guards!I expect this $r to be clapped into chains!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(37157,1,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(38940,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(38884,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37171,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(39174,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(39279,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(39280,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5847,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37161,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34855,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(34848,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(38327,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(38659,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(6132,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37560,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37661,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37513,0,0,'You, <Snort> you are strong <Gurgle>. But... Strong enough for THE BOARPOCALYPSE?',1,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(37513,1,0,'You... survive the boars? <Snort> So many boars! So sad!...',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Death Text'),(37513,2,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(37743,0,0,'Grab anything you think we can fence.',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(37743,0,1,'There\'s got to be more. Double check the bodies!',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(37743,0,2,'Hey did anyone loot the mailbox yet?',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(37743,0,3,'Most of this stuff is beads and hides. Where\'s all the treasure?',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(37743,0,4,'Time is wasting. I want this place picked cleaned before they counter-attack',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(37743,0,5,'Has anyone seen the quilboar they had caged up over here?',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(37743,0,6,'Have we cleaned out the inn yet? Burn the rest of it when you\'re done!',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(37743,0,7,'Hurry it up. The soldiers have already pulled out of here',0,0,50,1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'say Text'),(37160,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(37173,0,0,'What we gon\' do now, you ask ? We wait.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Rikkari 1st sentence'),(37173,1,0,'Grik\'nir says he gon\' talk to the elemental, get it to fight on our side.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Rikkari 2nd sentence'),(37173,2,0,'Soon enough we take over dis valley. Soon enough.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Rikkari 3rd sentence'),(37108,0,0,'Da spirits be angry with us.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Shi\'kala 1st sentence'),(37108,1,0,'I don\' know why the spirits be rejectin\' us so.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Shi\'kala 2nd sentence'),(37108,2,0,'Don\' worry, child. Grik\'nir gonna help us get through this.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Shi\'kala 3rd sentence'),(37174,0,0,'Our land be a land of ice an\' snow',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Mirim\'koa 1st sentence'),(37174,1,0,'But beneath the earth, child, there always be fire.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Mirim\'koa 2nd sentence'),(37174,2,0,'De spirit come from deep down to talk with Grik\'nir.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Soothsayer Mirim\'koa 3rd sentence'),(23590,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(23591,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(23589,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(10321,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(23679,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(23714,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(14236,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(23701,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4362,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4361,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4359,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4363,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4401,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4403,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4404,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(23555,0,0,'You\'re being eaten alive!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Text'),(5057,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4834,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(4385,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(39958,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(5346,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11498,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11497,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11447,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11498,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11498,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5328,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5327,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5345,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(8075,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39896,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(11440,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11440,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11440,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11443,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11443,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(11443,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39965,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39965,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39965,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39952,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39952,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39952,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39952,1,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(5234,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5234,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5234,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5234,1,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(5236,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5236,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5236,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39957,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39957,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39957,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5240,0,0,'I\'ll crush you!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5240,0,1,'Me smash! You die!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5240,0,2,'Raaar!!! Me smash $r!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39949,0,0,'%s goes into a frenzy!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Frenzy'),(39733,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(40069,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(39395,0,0,'We are all a part of him...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39395,0,1,'For Taerar!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(39394,0,0,'<NAME> no longer dwells here,fool.He has bestowed me with enough power to stop you!',0,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'on Aggro Text'),(5362,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5366,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(40224,0,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(5258,0,0,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5258,0,1,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5258,1,0,'%s becomes enraged!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Enrage'),(5258,2,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5253,0,0,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5253,0,1,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5253,1,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5249,0,0,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5249,0,1,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5249,1,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5254,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5254,1,0,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5254,1,1,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5255,0,0,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5255,0,1,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5255,1,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5251,0,0,'%s attempts to run away in fear!',2,0,100,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Flee'),(5251,1,0,'Grrrr... fresh meat!',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(5251,1,1,'More bones to gnaw on...',0,0,50,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'combat Say'),(42308,1,0,'Looks like they really put the cart...',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine 2nd sentence'),(42559,1,0,'What they did to Old Blanchy is truly a shame.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stormwind investigator 3rd sentence'),(42308,0,0,'No kidding, Probie...',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine 1st sentence'),(42309,0,0,'According to body temperature, I\'ll say they\'ve been dead for less than six hours.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stormwind investigator 2nd sentence'),(42559,0,0,'It\'s a real bloodshed, lieutenant. They were murdered.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stormwind investigator 1st sentence'),(42391,4,0,'Between you, me, and the tree, murlocs killed the Furlbrows. Yep, saw \'em with my own two eyes. Think they\'d been casin\' the joint for days, maybe months. They left in a hurry once they got wind of \"Johnny Law\" and the idiot brigade over there...',0,0,100,1,6000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Murder was the case 4th clue'),(42391,3,0,'Who killed the Furlbrows? I\'ll tell you who killed the Furlbrows: KING <NAME>. THAT\'S WHO! And he\'s killin\' the rest of us too. Once bum at a time. The only thing I can tell you is that I saw some gnolls leavin\' the place a few hours before the law arrived.',0,0,100,1,5000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Murder was the case 3rd clue'),(42391,2,0,'I didn\'t see who killed \'em, $Gbub:sis , but I got a whiff. Smelled rich, kinda like you. Damn shame too. Furlbrows were a fixture around here. Nice people, always willin\' to share a meal or a patch of dirt.',0,0,100,1,5000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Murder was the case 2nd clue'),(42391,1,0,'Listen, pal. I don\'t want any trouble, ok? I didn\'t see who murdered \'em, but I sure heard it! Lots of yelling. Human voices... you dig? Now get out of here before I change my mind about beating you up and takin\' your shoes.',0,0,100,1,5000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Murder was the case 1st clue'),(42391,0,0,'I ain\'t tellin\' you a damn thing!',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Murder was the case 1st aggro sentence'),(42391,0,1,'You rich punks are all the same!',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Murder was the case 2nd aggro sentence'),(42391,0,2,'Now you\'v\'e gone and done it! TIME FOR THE FIST!',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Murder was the case 3rd aggro sentence'),(42617,0,0,'Last Call !!!',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Feeding the Hungry and the Hopeless'),(42750,2,0,'Do you know anything about this, beast? Speak!',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gryan Stoutmantle In Defense of Westfall end event 1st sentence'),(42635,1,0,'The dawning comes, Stoutmantle, and with it comes your end.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ripsnarl In Defense of Westfall end event 1st sentence'),(42308,2,0,'...Before the horse.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine 3rd sentence'),(42386,0,0,'It\'s so good, now I go to sleep !!!',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Feeding the Hungry and the Hopeless'),(42515,0,0,'Sad... Is this the life you had hoped for, Glubtok? Running two-bit extortion operations out of a cave?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shadowy figure 1st sentence'),(42515,1,0,'Oh will you? Do you dare cross that line and risk your life?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shadowy figure 2nd sentence'),(42515,2,0,'You may attempt to kill me - and fail - or you may take option two.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shadowy figure 3rd sentence'),(42515,3,0,'You join me and I shower wealth and power upon you.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shadowy figure 4th sentence'),(42515,4,0,'I thought you\'d see it my way.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shadowy figure 5th sentence'),(42515,5,0,'I will call for you when the dawning is upon us.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Shadowy figure 6th sentence'),(42492,0,0,'What little humie want? Why you call Glubtok?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Glubtok 1st sentence'),(42492,1,0,'Glubtok crush you!',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Glubtok 2nd sentence'),(42492,2,0,'What option two?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Glubtok 3rd sentence'),(42492,3,0,'So Glubtok have two choices: die or be rich and powerful?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Glubtok 4th sentence'),(42492,4,0,'Glubtok take choice two.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Glubtok 5th sentence'),(42387,0,0,'Did you... Did you meet her?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thug 1st sentence'),(42387,1,0,'Yep. She\'s for real.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thug 2nd sentence'),(42387,2,0,'She wanted me to tell you lugs that she appreciates the job that we did for her on the Furlbrows. gave me a pile o\' gold to split with you all.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thug 3rd sentence'),(42387,3,0,'See her face? Is it really...',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thug 4th sentence'),(42387,4,0,'Whoa, what do we have here? Looks like we have ourselves an eavesdropper, boys.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thug 5th sentence'),(42387,5,0,'Only one thing to do with a lousy, good-for-nothin eavesdropper.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thug 6th sentence'),(42387,6,0,'DIE!',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thug 7th sentence'),(42309,1,0,'You were standing right here! What the hell did you see? Speak up!',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stormwind investigator Lou\'s murder 1st sentence'),(42384,0,0,'I... I didn\'t see nothin\'! He... he died of natural causes.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Homeless Lou\'s murder 1st sentence'),(42309,2,0,'Natural causes? Two bullets in the chest and his shoes are on his head. What kind of natural death would that be?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stormwind investigator Lou\'s murder 2nd sentence'),(42308,3,0,'Doesn\'t look good, rookie.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine Lou\'s murder 1st sentence'),(42308,4,0,'This was an execution. Whoever did this was sending a message.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine Lou\'s murder 2nd sentence'),(42308,5,0,'A message for anyone that would dare snitch on these criminals.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine Lou\'s murder 3rd sentence'),(42308,6,0,'It would appear that poor Lou readlly did put his foot...',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine Lou\'s murder 4th sentence'),(42308,7,0,'In his mouth.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine Lou\'s murder 5th sentence'),(42750,0,0,'You have our full cooperation, lieutenant. The Furlbrows were good people. Their deaths will not go unpunished.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gryan Stoutmantle 1st sentence'),(42308,8,0,'That\'s good to hear, marshal. While $N has brought the perpetrators to justice, their ringleader is still on the loose. Perhaps with the aid of the Westfall Brigade we will finally be able to solve this case.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine 1st sentence'),(42308,9,0,'Might I ask, what\'s with the worgen in the stocks?',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine 2nd sentence'),(42750,1,0,'We caught this beast slaughtering sheep in the countryside. He is unrepentant and easily agitated. Keep your distance, lieutenant.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gryan Stoutmantle 2nd sentence'),(42635,0,0,'When I break out of these stocks I\'m going to rip out your heart and devour it whole!',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ripsnarl 1st sentence'),(42308,10,0,'Wow, the marshal wasn\'t kidding.',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine 3rd sentence'),(42308,11,0,'But is your bark....',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine 4th sentence'),(42308,12,0,'Worse than your bite?',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Horatio Laine 5th sentence'),(42384,1,0,'It\'s so good, now I go to sleep !!!',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Feeding the Hungry and the Hopeless'),(42750,3,0,'Gibberish from a mad wolf. Bah!',0,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Gryan Stoutmantle In Defense of Westfall end event 2nd sentence'),(7024,0,0,'Not a chance.',5,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Agent Kearnen random sentence'),(7024,0,1,'Easy Peasy.',5,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Agent Kearnen random sentence'),(7024,0,2,'Headshot!',5,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Agent Kearnen random sentence'),(7024,0,3,'Got him!',5,0,100,1,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Agent Kearnen random sentence'),(42655,0,0,'The gnolls have failed, mistress.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Helix 1st sentence'),(42515,6,0,'They provided the distraction I required. We continue as planned.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Shadowy figure 1st sentence'),(42655,1,0,'But mistress, the admiral is sti...',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Helix 2nd sentence'),(42515,7,0,'We will free the admiral during the dawning.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Shadowy figure 2nd sentence'),(42655,2,0,'Yes, mistress.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Helix 3rd sentence'),(42515,8,0,'Judgment day is soon upon us, Helix.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Shadowy figure 3rd sentence'),(42515,9,0,'Call for the people. I wish to speak to them one last time before the dawning.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Shadowy figure 4th sentence'),(42655,3,0,'Moonbrook, mistress?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Helix 4th sentence'),(42515,10,0,'Aye. Tonight.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Secrets of the Tower Shadowy figure 5th sentence'),(42680,0,0,'Gather, brothers and sisters! Come, all, and listen!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Dawning of a New Day 1st sentence'),(42680,1,0,'Brothers. Sisters. We are ABANDONED - the orphaned children of Stormwind.',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Dawning of a New Day 2nd sentence'),(42680,2,0,'Our \"king\" sits atop his throne made of gold and shurgs at our plight!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Dawning of a New Day 3rd sentence'),(42680,3,0,'Meanwhile, our children die of starvation on these very streets!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Dawning of a New Day 4th sentence'),(42680,4,0,'HIS war, not ours, cost us our livelihood. WE paid for the Alliance\'s victories with our blood and the blood of our loved ones!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Dawning of a New Day 5th sentence'),(42680,5,0,'The time has come, brothers and sisters, to stop this injustice!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Dawning of a New Day 6th sentence'),(42680,6,0,'The government of Stormwind, of the ALLIANCE, must be made accountable for what it has done to us!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Dawning of a New Day 7th sentence'),(42680,7,0,'Today, we are reborn! Today we take a stand as men and women, not nameless, faceless numbers!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Dawning of a New Day 8th sentence'),(42750,4,0,'I don\'t like this, $N. Stay alert!',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 1st sentence'),(42750,5,0,'Hope! Wha..',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 3rd sentence'),(42750,6,0,'$N, get to Stormwind. Tell King Wrynn everything. EVERYTHING! GO NOW!',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 16th sentence'),(42750,7,0,'Dummy',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Dummy'),(42749,0,0,'You bastards will burn for what you did.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 2nd sentence'),(42749,1,0,'Hope? Is that what I was supposed to feel when I saw my father decapitated by your henchmen?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 4th sentence'),(42749,2,0,'Hope is a cruel joke, played upon us by a harsh and uncaring world. There is no Hope, there is only Vanessa. Vanessa VanCleef.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 5th sentence'),(42778,0,0,'Thank you, my dear.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 9th sentence'),(42308,13,0,'Just tell me one thing, Vanessa.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 11th sentence'),(42308,14,0,'Why\'d you have the Furlbrows killed?',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 12th sentence'),(42372,0,0,'RISE UP BROTHERHOOD! THE DAWNING DAY IS UPON US!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 6th sentence'),(42372,1,0,'Tie them up.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 7th sentence'),(42372,2,0,'Admiral, your hat.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 8th sentence'),(42372,3,0,' And you, $N. I will spare your life. You have done much to help our cause, albeit unwittingly, but the next time we meet it will be as enemies.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 10th sentence'),(42372,4,0,'I had no choice, lieutenant. They recognized me. They only people in the world who even knew I existed, recognized my face from when I was an infant.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 13th sentence'),(42372,5,0,'I took no pleasure in their deaths.',0,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 14th sentence'),(42372,6,0,'Leave nothing but ashes in your wake, brothers! Burn Sentinel Hill to the ground!',1,0,100,1,3000,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rise of the Brotherhood 15th sentence'); UNLOCK TABLES; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
INSERT INTO department (department_name) VALUES ('Operations'), ('Engineering'), ('Production'), ('Maintenance'); INSERT INTO role (title, salary, department_id) VALUES ('Ops', 100000, 1), ('Eng', 90000, 2), ('Prod', 55000, 3), ('Maint', 45000, 4); INSERT INTO employee (employee_id, first_name, last_name, role_id, manager_id) VALUES (1, 'Ronald', 'Firbank', 1, NULL), (2, 'Virginia', 'Woolf', 2, 1), (3, 'Piers', 'Gaveston', 3, 2), (4, 'Charles', 'LeRoi', 4, 2), (5, 'Katherine', 'Mansfield', 2, 1), (6, 'Dora', 'Carrington', 4, 2), (7, 'Edward', 'Bellamy', 3, 2), (8, 'Montague', 'Summers', 1, NULL), (9, 'Octavia', 'Butler', 3, 2), (10, 'Unica', 'Zurn', 3, 2);
<reponame>boriskezikov/DbConnector CREATE TABLE spring_session ( PRIMARY_ID CHAR(36) NOT NULL, SESSION_ID CHAR(36) NOT NULL, CREATION_TIME BIGINT NOT NULL, LAST_ACCESS_TIME BIGINT NOT NULL, MAX_INACTIVE_INTERVAL INT NOT NULL, EXPIRY_TIME BIGINT NOT NULL, PRINCIPAL_NAME VARCHAR(100), CONSTRAINT spring_session_pk PRIMARY KEY (PRIMARY_ID) ); CREATE TABLE spring_session_attributes ( session_primary_id CHAR(36) not null, attribute_name VARCHAR(200) NOT NULL, attribute_bytes bytea not null, constraint spring_session_attributes_pk primary key (session_primary_id, attribute_name), constraint spring_session_attributes_fk foreign key (session_primary_id) references spring_session (PRIMARY_ID) );
-- Storage of Agronomic Data CREATE TABLE agronomic_data( site varchar(24), plotid varchar(24), varname varchar(24), year smallint, value varchar(32), updated timestamptz default now() ); CREATE TABLE agronomic_data_log( site varchar(24), plotid varchar(24), varname varchar(24), year smallint, value varchar(32), updated timestamptz default now() ); CREATE OR REPLACE FUNCTION agronomic_insert_before_F() RETURNS TRIGGER AS $BODY$ DECLARE result INTEGER; BEGIN result = (select count(*) from agronomic_data where site = new.site and plotid = new.plotid and varname = new.varname and year = new.year and (value = new.value or (value is null and new.value is null)) ); -- Data is duplication, no-op IF result = 1 THEN RETURN null; END IF; result = (select count(*) from agronomic_data where site = new.site and plotid = new.plotid and varname = new.varname and year = new.year); -- Data is a new value! IF result = 1 THEN UPDATE agronomic_data SET value = new.value, updated = now() WHERE site = new.site and plotid = new.plotid and varname = new.varname and year = new.year; INSERT into agronomic_data_log SELECT * from agronomic_data WHERE site = new.site and plotid = new.plotid and varname = new.varname and year = new.year; RETURN null; END IF; INSERT into agronomic_data_log (site, plotid, varname, year, value) VALUES (new.site, new.plotid, new.varname, new.year, new.value); -- The default branch is to return "NEW" which -- causes the original INSERT to go forward RETURN new; END; $BODY$ LANGUAGE 'plpgsql' SECURITY DEFINER; CREATE TRIGGER agronomic_insert_before_T before insert ON agronomic_data FOR EACH ROW EXECUTE PROCEDURE agronomic_insert_before_F(); CREATE UNIQUE index agronomic_data_idx on agronomic_data(site, plotid, varname, year); GRANT SELECT on agronomic_data to nobody,apache;
-- MySQL dump 10.13 Distrib 5.6.24, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: baseprova -- ------------------------------------------------------ -- Server version 5.6.22-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `autores` -- DROP TABLE IF EXISTS `autores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `autores` ( `id_autor` int(11) NOT NULL, `Nome` varchar(255) DEFAULT NULL, PRIMARY KEY (`id_autor`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `autores` -- LOCK TABLES `autores` WRITE; /*!40000 ALTER TABLE `autores` DISABLE KEYS */; INSERT INTO `autores` VALUES (1,'Pedro'),(2,'Salete'),(3,'Valdecir'),(4,'Marcos'); /*!40000 ALTER TABLE `autores` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2019-12-18 9:59:56
# Host: localhost (Version: 5.5.47) # Date: 2016-05-08 16:28:25 # Generator: MySQL-Front 5.3 (Build 4.234) /*!40101 SET NAMES utf8 */; # # Structure for table "a1tl_jj1_0log1" # DROP TABLE IF EXISTS `a1tl_jj1_0log1`; CREATE TABLE `a1tl_jj1_0log1` ( `iid` int(11) NOT NULL AUTO_INCREMENT, `yid01` int(11) DEFAULT NULL, `userid` mediumint(9) DEFAULT NULL, `yeji` int(11) DEFAULT NULL COMMENT 'results', `jiangj` mediumint(9) DEFAULT NULL COMMENT 'bonus', `timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `dat1time` bigint(12) DEFAULT '1456940000', `rcud` tinyint(3) DEFAULT NULL COMMENT 'r:0-c:1-u:2-d3', `atlaststate` tinyint(3) DEFAULT '0' COMMENT '0不是最后记录;>0是后期记录;越大越是最后面纪录;可用timestamp取代;是否最后(时间)纪录', PRIMARY KEY (`iid`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='日志-业绩-奖金&等'; # # Data for table "a1tl_jj1_0log1" # INSERT INTO `a1tl_jj1_0log1` VALUES (1,1,1,1000,100,'2016-05-08 15:44:40',1456940001,1,0),(2,2,2,2000,200,'2016-05-08 15:44:44',1456940002,1,0),(3,2,2,3000,300,'2016-05-08 15:44:48',1456940003,2,1),(4,1,1,4000,400,'2016-05-08 15:45:08',1456940004,2,1); # # Structure for table "a1tl_jj1point" # DROP TABLE IF EXISTS `a1tl_jj1point`; CREATE TABLE `a1tl_jj1point` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `logstarid` int(11) DEFAULT NULL, `startime` timestamp NULL DEFAULT '0000-00-00 00:00:00', `logendid` int(11) DEFAULT NULL, `endtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`Id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='指针'; # # Data for table "a1tl_jj1point" # INSERT INTO `a1tl_jj1point` VALUES (1,1,'0000-00-00 00:00:00',4,'2016-05-08 09:09:05'); # # Structure for table "a1tl_jj1user1yeji" # DROP TABLE IF EXISTS `a1tl_jj1user1yeji`; CREATE TABLE `a1tl_jj1user1yeji` ( `yId` int(11) NOT NULL AUTO_INCREMENT, `userid` mediumint(9) DEFAULT NULL, `yeji` int(11) DEFAULT NULL COMMENT 'results', `jiangj` mediumint(9) DEFAULT NULL COMMENT 'bonus', PRIMARY KEY (`yId`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='业绩results-奖金bonus&等'; # # Data for table "a1tl_jj1user1yeji" # INSERT INTO `a1tl_jj1user1yeji` VALUES (1,1,1000,100),(2,1,4000,400); # # Structure for table "a1tl_jj1user1yeji00" # DROP TABLE IF EXISTS `a1tl_jj1user1yeji00`; CREATE TABLE `a1tl_jj1user1yeji00` ( `yId` int(11) NOT NULL AUTO_INCREMENT, `userid` mediumint(9) DEFAULT NULL, `yeji` int(11) DEFAULT NULL COMMENT 'results', `jiangj` mediumint(9) DEFAULT NULL COMMENT 'bonus', `timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `rcud` tinyint(3) DEFAULT NULL COMMENT 'r:0-c:1-u:2-d3', `atlaststate` tinyint(3) DEFAULT '0' COMMENT '0不是最后记录;>0是后期记录;越大越是最后面纪录;可用timestamp取代;是否最后(时间)纪录', PRIMARY KEY (`yId`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='业绩results-奖金bonus&等'; # # Data for table "a1tl_jj1user1yeji00" # # # Structure for table "a1tl_jj1user1yeji02" # DROP TABLE IF EXISTS `a1tl_jj1user1yeji02`; CREATE TABLE `a1tl_jj1user1yeji02` ( `iid` int(11) NOT NULL AUTO_INCREMENT, `yid2` int(11) DEFAULT '0', `userid` mediumint(9) DEFAULT NULL, `yeji` int(11) DEFAULT NULL COMMENT 'results', `jiangj` mediumint(9) DEFAULT NULL COMMENT 'bonus', `timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `dat1time` int(11) DEFAULT '0', `rcud` tinyint(3) DEFAULT NULL COMMENT 'r:0-c:1-u:2-d3', `atlaststate` tinyint(3) DEFAULT '0' COMMENT '0不是最后记录;>0是后期记录;越大越是最后面纪录;可用timestamp取代;是否最后(时间)纪录', PRIMARY KEY (`iid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='业绩results-奖金bonus&等'; # # Data for table "a1tl_jj1user1yeji02" # INSERT INTO `a1tl_jj1user1yeji02` VALUES (1,1,1,1000,100,'2016-05-08 15:44:40',1456940001,1,0),(2,2,2,2000,200,'2016-05-08 15:44:44',1456940002,1,0),(3,2,2,3000,300,'2016-05-08 15:44:48',1456940003,2,1); # # Structure for table "a1tl_jjz1z__log11all2" # DROP TABLE IF EXISTS `a1tl_jjz1z__log11all2`; CREATE TABLE `a1tl_jjz1z__log11all2` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `yid` int(11) DEFAULT NULL, `field012` mediumint(9) DEFAULT NULL, `timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `rcud` tinyint(3) DEFAULT NULL COMMENT 'r:0--c:1-u2-d3', `timebefore` int(11) DEFAULT NULL, `timechanged` int(11) DEFAULT NULL, PRIMARY KEY (`Id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='a1tl_jj1num日志'; # # Data for table "a1tl_jjz1z__log11all2" # INSERT INTO `a1tl_jjz1z__log11all2` VALUES (1,1,1,'2016-05-08 09:09:01',1,0,1000),(2,1,2,'2016-05-08 09:09:01',1,0,100);
<filename>project/Addons/RealPrize/install.sql CREATE TABLE IF NOT EXISTS `wp_prize_address` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `address` varchar(255) NULL COMMENT '奖品收货地址', `mobile` varchar(50) NULL COMMENT '手机', `turename` varchar(255) NULL COMMENT '收货人姓名', `uid` int(10) NULL COMMENT '用户id', `remark` varchar(255) NULL COMMENT '备注', `prizeid` int(10) NULL COMMENT '奖品编号', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci CHECKSUM=0 ROW_FORMAT=DYNAMIC DELAY_KEY_WRITE=0; INSERT INTO `wp_model` (`name`,`title`,`need_pk`,`field_sort`,`list_grid`,`list_row`,`search_key`,`engine_type`,`addon`,`file_md5`) VALUES ('prize_address','奖品收货地址','1','["address","mobile","turename","remark"]','prizeid:奖品名称\r\nturename:收货人\r\nmobile:联系方式\r\naddress:收货地址\r\nremark:备注\r\nids:操作:address_edit&id=[id]&_controller=RealPrize&_addons=RealPrize|编辑,[DELETE]|删除','20','turename:请输入收货人搜索','MyISAM','RealPrize','7d85a7fd1974bbb6ece560f081986505'); CREATE TABLE IF NOT EXISTS `wp_real_prize` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `prize_name` varchar(255) NULL COMMENT '奖品名称', `prize_conditions` text NULL COMMENT '活动说明', `prize_count` int(10) NULL COMMENT '奖品个数', `prize_image` varchar(255) NULL DEFAULT '上传奖品图片' COMMENT '奖品图片', `token` varchar(255) NULL COMMENT 'token', `prize_type` tinyint(2) NULL DEFAULT 1 COMMENT '奖品类型', `use_content` text NULL COMMENT '使用说明', `prize_title` varchar(255) NULL COMMENT '活动标题', `fail_content` text NULL COMMENT '领取失败提示', `template` varchar(255) NULL DEFAULT 'default' COMMENT '素材模板', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARACTER SET=utf8 COLLATE=utf8_general_ci CHECKSUM=0 ROW_FORMAT=DYNAMIC DELAY_KEY_WRITE=0; INSERT INTO `wp_model` (`name`,`title`,`need_pk`,`field_sort`,`list_grid`,`list_row`,`search_key`,`engine_type`,`addon`,`file_md5`) VALUES ('real_prize','实物奖励','1','["prize_title","prize_name","prize_conditions","prize_count","prize_image","prize_type","use_content","fail_content","template"]','prize_name:20%奖品名称\r\nprize_conditions:20%活动说明\r\nprize_count:10%奖品个数\r\nprize_type:10%奖品类型\r\nuse_content:20%使用说明\r\nid:20%操作:[EDIT]|编辑,[DELETE]|删除,address_lists?target_id=[id]|查看数据,preview?id=[id]&target=_blank|预览','20','prize_name:请输入奖品名称','MyISAM','RealPrize','130781cad4b68137352013177cc8b258');
-- phpMyAdmin SQL Dump -- version 4.7.3 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Oct 18, 2017 at 12:35 AM -- Server version: 5.5.57-cll -- PHP Version: 5.6.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `iotahr_wallet` -- -- -------------------------------------------------------- -- -- Table structure for table `nodes` -- CREATE TABLE `nodes` ( `id` varchar(4) NOT NULL, `name` varchar(64) NOT NULL, `url` varchar(128) NOT NULL, `port` mediumint(6) NOT NULL, `type` varchar(6) NOT NULL DEFAULT 'http', `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `pow_time` -- CREATE TABLE `pow_time` ( `id` int(11) NOT NULL, `time` mediumint(8) DEFAULT NULL, `device` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `system` -- CREATE TABLE `system` ( `id` smallint(2) NOT NULL, `recaptcha_sitekey` varchar(128) NOT NULL, `recaptcha_secretkey` varchar(128) NOT NULL, `g_analytics` text NOT NULL, `avg_pow_time` text, `donation_address` varchar(243) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `tickets` -- CREATE TABLE `tickets` ( `id` varchar(14) NOT NULL, `sender` text, `title` varchar(255) NOT NULL, `message` text NOT NULL, `user` varchar(8) NOT NULL, `created` datetime NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` varchar(8) NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `seed` varchar(512) NOT NULL, `hint` varchar(64) DEFAULT '-', `pin_type` varchar(8) NOT NULL DEFAULT 'simple', `hash` varchar(128) DEFAULT NULL, `joined` datetime NOT NULL, `joined_ip` varchar(16) NOT NULL, `last_login` datetime NOT NULL, `last_login_ip` varchar(16) DEFAULT NULL, `failed_login` smallint(2) NOT NULL DEFAULT '0', `level` tinyint(1) NOT NULL DEFAULT '3', `status` tinyint(1) NOT NULL DEFAULT '2' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Indexes for dumped tables -- -- -- Indexes for table `nodes` -- ALTER TABLE `nodes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `pow_time` -- ALTER TABLE `pow_time` ADD PRIMARY KEY (`id`); -- -- Indexes for table `system` -- ALTER TABLE `system` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tickets` -- ALTER TABLE `tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `pow_time` -- ALTER TABLE `pow_time` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Trying user 'abnetadm' with correct password|(<PASSWORD>,<PASSWORD>)|select public.ddps_login('abnetadm', '1qazxsw2'); Trying nonexistant user||select public.ddps_login('xxxxxxxx', '1qazxsw2'); Trying user 'administrator' with wrong password||select public.ddps_login('administrator', 'xxxxxxxx'); # Trying user 'administrator' with correct password|(<PASSWORD>,<PASSWORD>)|select public.ddps_login('administrator', '1qazxsw2');
SELECT s, arr, a, num, mapped FROM arrays_test ARRAY JOIN arr AS a, arrayEnumerate(arr) AS num, arrayMap(x -> x + 1, arr) AS mapped
DROP TABLE IF EXISTS ACTION_EXECUTIONS CASCADE;
/* r1447 structure change */ ALTER TABLE `cot_structure` ADD COLUMN `structure_area` varchar(64) collate utf8_unicode_ci NOT NULL default ''; UPDATE `cot_structure` SET `structure_area` = 'page' WHERE 1;
<filename>blog-api.sql -- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jul 11, 2020 at 04:08 PM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.4.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `blog-api` -- -- -------------------------------------------------------- -- -- Table structure for table `authors` -- CREATE TABLE `authors` ( `id` bigint(20) UNSIGNED NOT NULL, `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `authors` -- INSERT INTO `authors` (`id`, `first_name`, `last_name`, `created_at`, `updated_at`) VALUES (1, 'Carrie', 'Reynolds', '2020-07-10 10:38:26', '2020-07-10 10:38:26'), (2, 'Maymie', 'Koepp', '2020-07-10 10:38:26', '2020-07-10 10:38:26'), (3, 'Renee', 'Jaskolski', '2020-07-10 10:38:26', '2020-07-10 10:38:26'), (4, 'Deja', 'Balistreri', '2020-07-10 10:38:27', '2020-07-10 10:38:27'), (5, 'Ida', 'Dietrich', '2020-07-10 10:38:27', '2020-07-10 10:38:27'), (6, 'Milford', 'Koch', '2020-07-10 10:38:27', '2020-07-10 10:38:27'), (7, 'Russell', 'Lemke', '2020-07-10 10:38:27', '2020-07-10 10:38:27'), (8, 'Reymundo', 'Mitchell', '2020-07-10 10:38:27', '2020-07-10 10:38:27'), (9, 'Elton', 'Krajcik', '2020-07-10 10:38:27', '2020-07-10 10:38:27'), (10, 'Modesto', 'Zulauf', '2020-07-10 10:38:27', '2020-07-10 10:38:27'); -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`id`, `name`, `created_at`, `updated_at`) VALUES (1, 'Mobile', '2020-07-10 12:38:10', NULL), (2, 'Hardware', '2020-07-10 12:38:10', NULL), (3, 'Games', '2020-07-10 12:38:10', NULL); -- -------------------------------------------------------- -- -- Table structure for table `images` -- CREATE TABLE `images` ( `id` bigint(20) UNSIGNED NOT NULL, `src` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `alt` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `post_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `images` -- INSERT INTO `images` (`id`, `src`, `alt`, `post_id`, `created_at`, `updated_at`) VALUES (1, 'ryzen 3.jpg', 'ryzen', 1, '2020-07-10 14:38:42', NULL), (2, 'sony.jpg', 'sony', 2, '2020-07-10 14:38:33', NULL), (3, 'ryzen 9 3900x.jpg', 'ryzen 9 3900x', 3, '2020-07-10 14:42:01', NULL), (4, 'samsung-buds.jpg', 'samsung-buds', 4, '2020-07-10 14:44:25', NULL), (5, 'thunderbolt.jpg', 'thunderbolt', 5, '2020-07-10 14:47:13', NULL), (6, 'apple.png', 'apple', 6, '2020-07-11 13:32:15', NULL), (7, 'killing-flor.jpg', 'killing-flor', 7, '2020-07-11 13:24:00', NULL), (8, 'android-10.jpg', 'android-10', 8, '2020-07-10 15:01:03', NULL), (9, 'samsung-a31.jpg', 'samsung-a31', 9, '2020-07-10 15:00:36', NULL), (10, 'lenovo.jpg', 'lenovo', 10, '2020-07-10 14:59:53', NULL), (12, 'cs-go.jpg', 'cs-go', 12, '2020-07-11 13:32:26', NULL); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (11, '2020_07_06_154321_create_authors_table', 1), (12, '2020_07_06_154347_create_categories_table', 1), (13, '2020_07_06_154403_create_posts_table', 1), (14, '2020_07_10_114026_create_images_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `posts` -- CREATE TABLE `posts` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, `date` datetime NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` bigint(20) UNSIGNED NOT NULL, `author_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `posts` -- INSERT INTO `posts` (`id`, `title`, `date`, `description`, `category_id`, `author_id`, `created_at`, `updated_at`) VALUES (1, 'AMD: Zen 3 is on track to launch in 2020 and looking great', '2020-07-10 12:12:34', 'Highly anticipated: AMD boss Dr. <NAME> has reiterated that Zen 3 is on track to launch later this year, adding that the architecture is “looking great in the labs.” There had been rumors that the new CPUs wouldn’t arrive until 2021, but this is the second time the company has assured fans they’ll be here within the next five months.\r\nFears that we wouldn’t see Zen 3 in 2020 were already gathering because of the Covid-19 crisis, which has delayed several product launches. It was starting to look like the rumors were true when DigiTimes published a report stating that the Ryzen 4000 desktop CPUs wouldn’t get here until next year, allegedly because the current 3000 series was performing so well against Intel’s offerings. Additionally, the launch of the 3000XT series was considered more evidence of a 2021 Zen 3 launch.\r\n\r\nAMD quickly refuted the report, calling rumors of the delay “inaccurate.” Yesterday, in a video celebrating the first anniversary of the 3rd-gen Ryzen processors and Radeon 5000 series, as well as the launch of the 3000XT CPUs, Su once again confirmed that Zen 3 was on track for a 2020 release.\r\n\r\nWe recently heard that Ryzen 4000 desktop processors, codenamed Vermeer, are about to enter mass production. The chips are rumored to boast massive IPC (instructions per clock) gains over their predecessors, meaning some consumers could hold off buying current 3000-series CPUs in favor of Zen 3, despite AMD offering a free copy of Assassin’s Creed Valhalla as an incentive for buyers of certain Zen 2 chips.\r\n\r\nSu also mentions the new 3000XT chips in the video. We were far from impressed by the tiny performance improvements offered by the three processors, advising buyers to opt for the cheaper non-XT 3000-series instead, or you could always wait for Zen 3.\r\n\r\n\r\n\r\n', 2, 10, '2020-07-10 12:45:33', '2020-07-10 10:38:34'), (2, 'Sony invests $250 million into Epic Games', '2020-07-10 12:12:34', 'Sony has made a $250 million investment into Epic Games, granting it a minority share of the company and opening the door to a deeper collaboration between them. Specific plans for the future weren\'t revealed, but Epic said in a statement that the investment will blend \"Sony’s leading portfolio of entertainment assets and technology, and Epic’s social entertainment platform and digital ecosystem to create unique experiences for consumers and creators.\"\r\n\r\n\"Epic\'s powerful technology in areas such as graphics places them at the forefront of game engine development with Unreal Engine and other innovations,\" said Sony Corporation chairman, president, and CEO <NAME>. \"There\'s no better example of this than the revolutionary entertainment experience, Fortnite. \r\n\r\n\"Through our investment, we will explore opportunities for further collaboration with Epic to delight and bring value to consumers and the industry at large, not only in games, but also across the rapidly evolving digital entertainment landscape.\"\r\n\r\nEpic CEO <NAME> also suggested that the partnership will go beyond videogames. \"We share a vision of real-time 3D social experiences leading to a convergence of gaming, film, and music,\" he said. \"Together we strive to build an even more open and accessible digital ecosystem for all consumers and content creators alike.\"\r\n\r\nSony has recently shown a heightened interest in PC gaming—the previously PS4-exclusive Horizon: Zero Dawn is coming our way this summer, for one obvious example—but likely even more relevant to the partnership is Epic\'s focus on bringing its technology to the world of movie-making. The Unreal Engine website touts its capabilities for \"episodic animation, live-action blockbusters, or short-form content,\" and for a company like Sony—which, in case you weren\'t aware, makes a few movies here and there—that could be a major asset.\r\n\r\nAlso interesting, as Niko Partners senior analyst <NAME> noted on Twitter, is that while Sony\'s investment isn\'t that much terribly smaller than Tencent put into Epic in 2012, it\'s getting a much smaller slice of the pie. Timing is everything.', 3, 9, '2020-07-10 14:34:14', '2020-07-10 10:38:34'), (3, 'AMD RYZEN 9 3900XT REVIEW', '2020-07-10 12:12:34', 'The AMD Ryzen 9 3900X was released exactly a year ago today. And we loved it. Loads of cores and decent gaming performance made it one of our favorite CPUs, and cemented its place in our best CPU guide. On paper this brand new Ryzen 9 3900XT takes that impressive chip and squeezes just a little more power out of it. The base clocks are unchanged at 3.8GHz, but the Boost goes from 4.6GHz up to 4.7GHz. Yup, a whole 100MHz.\r\n\r\nAMD RYZEN 9 3900XT SPECS\r\nCores: 12\r\nThreads: 24\r\nBase clock: 3.8GHz\r\nMax boost clock: 4.7GHz\r\nL3 Cache: 64MB\r\nMemory support: DDR4 3200MHz\r\nSocket: AM4\r\nTDP: 105 W\r\nCooler: None\r\nLaunch price: $499 (£499)\r\n\r\nYou may be wondering how AMD has managed to squeeze an extra 100MHz out of this chip, even if it is only at boost, and apparently it\'s down to a better understanding of the 7nm production process. There are no other changes, though. The core and thread counts are the same, the cache levels are unchanged, and there are no tweaks to the underlying architecture.\r\n\r\nWhat is different, compared to the existing 3900X, is you don\'t get the Wraith Prism cooler with the 3900XT. So essentially you gain 100MHz to the Boost clock and lose a cooler for the trouble.\r\n\r\nI\'m a big fan of AMD\'s coolers, and have used them in plenty of builds without issue. While there is certainly an argument for the 3900XT being at the limit of what the Wraith Prism can handle, and that plenty of high-end builders will want to go down the AIO route for such a high-end chip, having the option of doing so is very different to being forced to. Of course this was true of the 16-core, 32-thread Ryzen 9 3950X, but that chip really does push what the Wraith can handle. I don\'t have the same feeling about the 3900XT.\r\n\r\nThe Ryzen 9 3900XT, like the 3900X before it, is a beast of a mainstream processor. 12 cores and 24 threads gives you lots of raw power if you\'re a content creator that needs to produce videos and/or dabble in some 3D rendering. The 3900XT chews through such workloads in a way few desktops processors can, and it really pulls ahead of Intel\'s finest in such tasks.', 2, 5, '2020-07-10 14:36:49', '2020-07-10 10:38:34'), (4, 'Samsung Galaxy Buds Live TWS earphones images reveal colors, charging case design', '2020-07-10 12:12:34', 'Back in April, we got our first look at Samsung\'s bean-shaped Galaxy Buds Live TWS earphones and today a fresh set of renders have been shared by <NAME>, showing the earphones in Mystic Bronze color.\r\n\r\nYou can see that the Buds Live earphones have a glossy finish and there are two microphones on the outside along with a grille. The inside of the Buds Live isn\'t shown in the images but going by previous leaks the earphones won\'t come with silicon tips which could affect sound isolation. Another picture shows the Buds Live in three colors with the charging case. The lid of the case appears to have a rubber strip and you can also see the two LED charging indicators - one on the inside between the slots for the two buds, and the other on the outside on the front. The Galaxy Buds Live are rumored to be announced later this month with a price tag below $150.\r\n', 1, 1, '2020-07-10 13:25:22', '2020-07-10 10:38:34'), (5, 'Thunderbolt 4 is official, will debut in PCs with Intel Tiger Lake CPUs later this year', '2020-07-10 12:12:34', 'In brief: Thunderbolt 4 is here and adds impressive capabilities in every Type-C port that will support it. The new standard is meant to declutter your desk space and push everyone towards universal cables, but USB4 looks more likely to dominate in the long run.\r\nToday, Intel announced the Thunderbolt 4 specification with a series of improvements over Thunderbolt 3. The new standard will offer the same speed of up to 40 Gbps, but is designed to remove some of the confusion that has governed the Thunderbolt 3 realm for a decade.\r\n\r\nAs expected, Thunderbolt 4 is USB4-compliant and will debut with Intel\'s upcoming Tiger Lake mobile CPUs, courtesy of the Maple Ridge 8000 Series controller. The new protocol is also backwards-compatible with all Thunderbolt 3 and USB 3.1 (or higher) devices and accessories.\r\n\r\nIntel says Thunderbolt 4 will support up to two 4K monitors or one 8K monitor at 60 Hz, which is a welcome improvement over the previous standard. And while Thunderbolt 3 only required 16 Gbps PCIe connections, Thunderbolt 4 requires 32 Gbps of PCIe bandwidth to do its magic and allow external storage speeds of up to 3,000 MB per second.', 2, 6, '2020-07-10 14:47:28', '2020-07-10 10:38:34'), (6, 'Apple says ARM Macs will support Thunderbolt well into the future', '2020-07-10 12:12:34', 'Bottom line: Apple\'s aggressive transition from Intel processors to ARM-based ones is no doubt a major inflection point for the Cupertino company. However, Thunderbolt still has an important place in future Macs, even though historically speaking it\'s been somewhat dependent on the presence of an Intel processor in the same system.\r\nIntel on Wednesday detailed its new Thunderbolt 4 standard, which doesn\'t come with speed improvements but represents an evolution of Thunderbolt 3 in almost every other sense. But as with every new standard, it left many with the question of which manufacturers would commit to supporting it.\r\n\r\nFor one, AMD\'s position hasn\'t changed -- the company sees little reason to go for Thunderbolt 4 despite it being essentially a superset of USB4 with better capabilities and somewhat more clear branding. With Thunderbolt 4, Intel has made cable certification even more expensive which will translate into pricier cables, just like with Thunderbolt 3.\r\n\r\nAs for Apple, the company didn\'t mention Thunderbolt for its upcoming Macs with ARM-based CPUs when it revealed its two-year transition plan at WWDC. Now the company has told The Verge that \"we remain committed to the future of Thunderbolt and will support it in Macs with Apple silicon,\" quelling some of the concerns that it might soon drop the protocol from its products.', 2, 7, '2020-07-10 14:47:54', '2020-07-10 10:38:34'), (7, 'Killing Floor 2, The Escapists 2, and Lifeless Planet are free for the week from Epic', '2020-07-10 12:12:34', 'A new Thursday is upon us, this one delivering not one, not two, but three—three!— free games from the Epic Games Store. The headliner this week is Killing Floor 2, the co-op FPS about massacring endless waves of zombies—called Zeds in this particular undead setting—who are rampaging across Europe.\r\n\r\nKF2 has actually been out for several years now—it debuted in Early Access in 2015—but Tripwire Interactive has been actively updating it with new weapons, enemies, maps, and events throughout. There\'s still a solid base of players on Steam, and crossplay between the Epic and Steam releases will be supported, so newcomers will be able to hop into the action with the existing crew of Zed-killers.\r\n\r\nAlso up this week is Lifeless Planet, an exploration-adventure about an international team of astronauts that crash-lands on a distant planet and discovers a small Russian town. Weird, right? The second half of the game doesn\'t support the promise of the first, but the setting is like a Golden Age sci-fi novel cover come to life and that\'s good enough for me.\r\n\r\nAnd finally, we have The Escapists 2, a game about living in—and, more to the point, busting out of—the toughest prisons in the world. It was actually supposed to be free a few weeks ago, but something went wrong with the Epic Games Store release, so here it is now.\r\n\r\nKilling Floor 2, Lifeless Planet, and The Escapists 2 are free on the Epic Games Store until July 16, when Runic\'s hit action-RPG Torchlight 2 will take their place on the freebie block. For more free stuff, be sure to keep an eye on our running list of all the free games you can grab right now.\r\n\r\n', 3, 8, '2020-07-10 14:35:04', '2020-07-10 10:38:34'), (8, 'Google’s efforts in making updates faster have paid off, Android 10 fastest adopted update', '2020-07-10 12:12:34', 'We’ve all heard the argument that Apple iPhones update quickly because Apple controls both hardware and software. With the hundreds of unique devices that run Android, its very difficult to have this same speed and effectiveness of major updates – not to mention, the vast differences of software that OEMs offer. Google has been able to push many updates through Google Play Services, even if devices are no longer receiving major OS updates.\r\n\r\nIn a Google Developers Blog post, it’s revealed that Android 10 was the quickest adopted Android version ever. Of course, it didn’t happen overnight. Google gradually introduced new practices over the past few years to speed up the update process for OEMs while also testing newer version of Android much earlier through Developer and Public Beta programs for Google Pixels, and other OEMs.In Android Oreo, Google introduced Project Treble, which modulated the core Android OS seperate from OEMs skin customizations. This sped up Android Pie adoption by 2.5X compared to Oreo. Every smartphone that came with Android Oreo was compliant with Treble.\r\n\r\nThen with Android Pie, Google launched a Developer Preview program with other OEMs so that pre-Beta builds could be tested across more smartphone models prior to release. This sped up Android 10 adoption by 1.5X compared to Pie.\r\n\r\nWith Android 10, Google’s Project Mainline made it possible to update critical apps and elements of Android via Google Play. This is what Google used to update 2 billion devices with the Exposure Notification API that was developed for contact-tracing COVID-19.', 1, 5, '2020-07-10 14:53:06', '2020-07-10 10:38:34'), (9, 'Samsung Galaxy A31 review\r\n', '2020-07-10 12:12:34', 'Navigating Samsung\'s sprawling device lineup in 2020 is no easy task. The Korean giant is hardly the root of the problem but is still part of the trend. Through a combination of factors and processes, we currently have a potent smartphone market where both model volume and turn-over are at an all-time high. That\'s especially true for the budget and mid-ranger space, which is precisely where the Galaxy A31 positions itself.It is one of Samsung\'s cheaper entry points into the sought-after Super AMOLED display tech, giving it a neck up ahead of siblings like the Galaxy A11 and A21s. The confusion starts to settle in once you look further up the Galaxy A device lineup, though. Particularly the Galaxy A41, which the A31 manages to outpace with a longer 6.4-inch screen diagonal and a larger 5,000 mAh battery. An odd choice, for sure, especially since the A41 is a bit more expensive in stores than the A31.Things get weirder still when the Galaxy M family comes into play. The Galaxy M21 offers the same 6.4-inch Super AMOLED display, paired with a bigger 6,000 mAh battery and a slightly different chipset. The in-house Exynos 9611 might be lacking behind the A31\'s MediaTek P65 in raw performance, but it is made on a more-efficient 10nm manufacturing node and impressively manages to squeeze 4K video recording and gyro-based EIS from a nearly identical main camera setup. To get the same kind of video capture versatility from a Galaxy A series device, you have to look at the more expensive Galaxy A51, which relies on the Exynos 9611 chipset, just like the Galaxy M21 and has a smaller 4,000 mAh battery.', 1, 4, '2020-07-10 14:54:10', '2020-07-10 10:38:34'), (10, 'Lenovo\'s latest touchscreen portable display adds 14\" of screen real estate', '2020-07-10 12:12:34', 'Why it matters: Portable displays are a fairly uncommon purchase outside of commercial establishments, but they do tend to offer a good mix of flexibility, functionality, and freedom to PC users with particular workflow requirements. Lenovo\'s M14t is among such hardware that looks to enhance the productivity of creatives, animators, and presenters with a 14\" Full HD portable touchscreen that\'s also a USB Type-C hub.\r\nLenovo has announced the new ThinkVision M14t mobile display for PC users looking to extend their screen space, albeit in a sleek, minimal fashion minus the heft that comes with a full-on standard monitor. The 14-inch 1080p peripheral adds 10-point touchscreen functionality to existing non-touch display setups and comes with an included active stylus that offers 4096 levels of pressure sensitivity for digital artists, graphic designers, and annotators.\r\n\r\nLike its non-touch predecessor, the M14t supports up to 300 nits of brightness and features tilt and height adjustment, alongside 2 x USB-C ports. These also allow for passthrough charging to a connected device, besides video and data transfer capability. The monitor works in both landscape and portrait mode and has automatic screen rotation support.', 2, 9, '2020-07-10 14:55:42', '2020-07-10 10:38:34'), (12, 'CS:GO\'s Trusted Mode anticheat system is live, but it\'s causing problems', '2020-07-10 12:12:34', 'Counter-Strike: Global Offensive\'s new anti-cheat system has been introduced in the game\'s latest update, but its rollout has been anything but smooth.\r\n\r\nTrusted Mode blocks the vast majority of external processes from interacting with the game, requiring players to close any offending programs and restart CS:GO before access will be granted. While trusted mode can be disabled through adding \"-untrusted\" to the game\'s launch options in Steam, doing so will not only prevent you from accessing any VAC-enabled servers, it also reduces your trust factor, which in turn impacts on how matchmaking works.\r\n\r\nUnofficial game modes, such as those downloaded through and run on community servers, may need to be run with trusted mode disabled in order to even work. Considering community servers and custom game modes have been at the heart of Counter-Strike since forever, this is an absolutely bizarre decision.\r\n\r\nEven worse, ordinary players are reporting that software such as OBS, Discord, Spotify and Nvidia Game Filter are falling foul of Trusted Mode, despite having no impact on the game itself. Another problem is that the game doesn\'t actually tell you which process is triggering trusted mode, meaning players are finding themselves barred from the game with no idea why.\r\n\r\nIf players manage to get through to a match, they are also reporting large performance decreases. A precise cause for this hasn\'t been determined yet, although some are reporting closing other programs (that didn\'t get caught by Trusted Mode) rectified the issue.\r\n\r\nUnfortunately, there isn\'t anything individual players can do to get their favourite programs working with CS:GO again aside from disabling trusted mode entirely and suffering the consequences. It is up to the software\'s developer to ensure their files are \"digitally signed with an Authenticode signature\" in order to comply with the new system, and even then, Valve says it maintains the right to block any signed code that \"interferes with the game in any way\".\r\n\r\nValve is yet to release any statement regarding the issues players have been facing since the update launched.', 3, 3, '2020-07-10 14:35:43', '2020-07-10 10:38:34'); -- -- Indexes for dumped tables -- -- -- Indexes for table `authors` -- ALTER TABLE `authors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `images` -- ALTER TABLE `images` ADD PRIMARY KEY (`id`), ADD KEY `images_post_id_foreign` (`post_id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `posts` -- ALTER TABLE `posts` ADD PRIMARY KEY (`id`), ADD KEY `posts_category_id_foreign` (`category_id`), ADD KEY `posts_author_id_foreign` (`author_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `authors` -- ALTER TABLE `authors` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `images` -- ALTER TABLE `images` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `posts` -- ALTER TABLE `posts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- Constraints for dumped tables -- -- -- Constraints for table `images` -- ALTER TABLE `images` ADD CONSTRAINT `images_post_id_foreign` FOREIGN KEY (`post_id`) REFERENCES `posts` (`id`) ON DELETE CASCADE; -- -- Constraints for table `posts` -- ALTER TABLE `posts` ADD CONSTRAINT `posts_author_id_foreign` FOREIGN KEY (`author_id`) REFERENCES `authors` (`id`), ADD CONSTRAINT `posts_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
SELECT * FROM co_actors WHERE name <> '<NAME>' EXCEPT ( SELECT DISTINCT name FROM non_existent);
USE [MIM_RequestArchive] GO /****** Object: StoredProcedure [dbo].[Report-GetRequestDetails] Script Date: 15.03.2018 15:54:58 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: <NAME>, <NAME> -- Create date: 15.2.2018 -- Description: Procedure to pull detailed request data/information from the request archive -- ============================================= CREATE PROCEDURE [dbo].[Report-GetRequestDetails] @RequestId uniqueidentifier, @DataType nvarchar(50) AS BEGIN SET NOCOUNT ON; --------------------------------------------------- -- Fetch "raw" request data from dbo.RequestData table --------------------------------------------------- IF (@DataType = 'RAW') BEGIN SELECT id, inserted, RequestID, AttributeKey, AttributeName, DataTypeKey, DataTypeKey, Multivalued, TextValue, StringValue, DateTimeValue, ReferenceValue, IntegerValue, BoolValue FROM dbo.RequestData WHERE RequestID = @RequestId END; --------------------------------------------------- -- Fetch basic request data from dbo.RequestData table --------------------------------------------------- IF (@DataType = 'Basic') BEGIN SELECT Request.RequestID, DisplayName.StringValue as RequestName, Operation.StringValue as Operation, Status.StringValue as Status, NULLIF(CAST(CAST(StatusDetails.TextValue as XML).query('/RequestStatusDetail/node()') as nvarchar(4000)),'') as StatusDetails, Partition.StringValue as Partition, Created.DateTimeValue as CreatedTime, Committed.DateTimeValue as CommittedTime, Completed.DateTimeValue as CompletedTime, dbo.resolveObject(Creator.ReferenceValue) as Creator, dbo.resolveObject(Target.ReferenceValue) as Target FROM (SELECT DISTINCT RequestId FROM dbo.RequestData WHERE RequestID = @RequestId) as Request LEFT JOIN dbo.RequestData as DisplayName ON (DisplayName.RequestID = Request.RequestID AND DisplayName.AttributeKey = 66) -- DisplayName LEFT JOIN dbo.RequestData as Operation ON (Operation.RequestID = Request.RequestID AND Operation.AttributeKey = 136) -- Operation LEFT JOIN dbo.RequestData as Status ON (Status.RequestID = Request.RequestID AND Status.AttributeKey = 158) -- Status LEFT JOIN dbo.RequestData as StatusDetails ON (StatusDetails.RequestID = Request.RequestID AND StatusDetails.AttributeKey = 159) -- StatusDetails LEFT JOIN dbo.RequestData as Partition ON (Partition.RequestID = Request.RequestID AND Partition.AttributeKey = 251) -- Partition LEFT JOIN dbo.RequestData as Created ON (Created.RequestID = Request.RequestID AND Created.AttributeKey = 53) -- Created Time LEFT JOIN dbo.RequestData as Committed ON (Committed.RequestID = Request.RequestID AND Committed.AttributeKey = 37) -- Committed time LEFT JOIN dbo.RequestData as Completed ON (Completed.RequestID = Request.RequestID AND Completed.AttributeKey = 257) -- Completed time LEFT JOIN dbo.RequestData as Creator ON (Creator.RequestID = Request.RequestID AND Creator.AttributeKey = 55) -- Creator LEFT JOIN dbo.RequestData as Target ON (Target.RequestID = Request.RequestID AND Target.AttributeKey = 227) -- Target END; --------------------------------------------------- -- Fetch request details from dbo.RequestData: MPRs --------------------------------------------------- IF (@DataType = 'MPR') BEGIN SELECT ReferenceValue as Id, dbo.resolveObject(ReferenceValue) as Name FROM dbo.RequestData WHERE RequestID = @RequestId AND AttributeKey = 118 END; --------------------------------------------------- -- Fetch request details from dbo.RequestData: Workflows --------------------------------------------------- IF (@DataType = 'Workflow') BEGIN SELECT AttributeName as WorkflowType, dbo.resolveObject(ReferenceValue) as WorkflowName FROM dbo.RequestData WHERE RequestID = @RequestId AND AttributeKey IN (5,24,29) -- Action, AuthN, AuthZ Workflows END; --------------------------------------------------- -- Fetch request details from dbo.RequestData: Request Chain --------------------------------------------------- IF (@DataType = 'RequestChain') BEGIN -- Get Current Request SELECT Request.* INTO #Request FROM (SELECT DISTINCT RequestID, ParentRequestID, 0 as Level FROM dbo.RequestDataExtracted WHERE RequestID = @RequestID) as Request -- Get Parent Requests if exist and loop until we dont have any parent reference (First request) DECLARE @CurrentRequest uniqueidentifier, @NextRequest uniqueidentifier, @Level as int SELECT @NextRequest = ParentRequestID, @Level = Level from #Request WHILE @NextRequest IS NOT NULL BEGIN SET @CurrentRequest = @NextRequest SELECT DISTINCT @NextRequest = ParentRequestID, @Level = @Level-1 FROM dbo.RequestDataExtracted WHERE RequestID = @CurrentRequest INSERT INTO #Request (RequestID,ParentRequestID,Level) VALUES (@CurrentRequest,@NextRequest,@Level) END -- Get 1. level of Child Requests related to this request INSERT INTO #Request SELECT DISTINCT RequestID, ParentRequestID, 1 as Level FROM dbo.RequestDataExtracted WHERE ParentRequestID = @RequestID -- Get 2. level of Child Requests related to this request INSERT INTO #Request SELECT DISTINCT RequestID, ParentRequestID, 2 as Level FROM dbo.RequestDataExtracted WHERE ParentRequestID IN (SELECT RequestID FROM #Request WHERE Level = 1) -- Get 3. level of Child Requests related to this request INSERT INTO #Request SELECT DISTINCT RequestID, ParentRequestID, 3 as Level FROM dbo.RequestDataExtracted WHERE ParentRequestID IN (SELECT RequestID FROM #Request WHERE Level = 2) -- Get 4. level of Child Requests related to this request INSERT INTO #Request SELECT DISTINCT RequestID, ParentRequestID, 4 as Level FROM dbo.RequestDataExtracted WHERE ParentRequestID IN (SELECT RequestID FROM #Request WHERE Level = 3) -- Get 5. level of Child Requests related to this request INSERT INTO #Request SELECT DISTINCT RequestID, ParentRequestID, 5 as Level FROM dbo.RequestDataExtracted WHERE ParentRequestID IN (SELECT RequestID FROM #Request WHERE Level = 4) -- Return Result SELECT RequestID, dbo.resolveObject(RequestID) as RequestName, ParentRequestID, Level FROM #Request ORDER BY LEVEL END; --------------------------------------------------- -- Fetch request details from dbo.RequestData: Request Changes --------------------------------------------------- IF (@DataType = 'Changes') BEGIN SELECT dbo.ResolveObject(TargetID) as Target, AttributeName, CASE WHEN AttributeValueType = 'q1:guid' THEN dbo.resolveObject(AttributeValue) ELSE AttributeValue END AS Value, AttributeChangeMode as ChangeType FROM dbo.RequestDataExtracted WHERE RequestID = @RequestId END; END GO
BEGIN; DROP TABLE IF EXISTS teachers; CREATE TABLE teachers ( id bigint auto_increment PRIMARY KEY, name varchar(32) NOT NULL, bio text ); DROP TABLE IF EXISTS classes; CREATE TABLE classes ( id bigint auto_increment PRIMARY KEY, name varchar(32) NOT NULL UNIQUE, department char(64) NOT NULL ); DROP TABLE IF EXISTS courses; CREATE TABLE courses ( id bigint auto_increment PRIMARY KEY, name varchar(32) NOT NULL, period int default 60, description text, level smallint default 0, status varchar(16) default 'AVAILABLE', teacher_id int NOT NULL, CONSTRAINT fk_course_teacher FOREIGN KEY(teacher_id) REFERENCES teachers(id) ); DROP TABLE IF EXISTS students; CREATE TABLE students ( id bigint auto_increment PRIMARY KEY, name varchar(32) NOT NULL, first_name varchar(32), last_name varchar(32), class_id int, bio text NOT NULL, CONSTRAINT fk_student_class FOREIGN KEY(class_id) REFERENCES classes(id) ); DROP TABLE IF EXISTS students_courses; CREATE TABLE students_courses ( student_id int NOT NULL, course_id int NOT NULL, score smallint, choose_time timestamp default now() NOT NULL, CONSTRAINT fk_student FOREIGN KEY(student_id) REFERENCES students(id) ON UPDATE CASCADE ON DELETE RESTRICT, CONSTRAINT fk_course FOREIGN KEY(course_id) REFERENCES courses(id) ON UPDATE CASCADE ON DELETE RESTRICT, CONSTRAINT uk_student_course UNIQUE(student_id, course_id) ); COMMIT;
<gh_stars>0 CREATE TABLE session ( ses_id VARCHAR(255) NOT NULL, ses_data TEXT NOT NULL, ses_updated_on INT(11) NOT NULL, PRIMARY KEY (ses_id) );
<gh_stars>0 -- MySQL dump 10.13 Distrib 8.0.20, for Win64 (x86_64) -- -- Host: localhost Database: djf -- ------------------------------------------------------ -- Server version 5.5.5-10.5.8-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `contacts` -- DROP TABLE IF EXISTS `contacts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contacts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `email` varchar(120) DEFAULT NULL, `phone` varchar(12) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contacts` -- LOCK TABLES `contacts` WRITE; /*!40000 ALTER TABLE `contacts` DISABLE KEYS */; INSERT INTO `contacts` VALUES (1,'Diego','<EMAIL>','11223344'),(2,'Priscilla','<EMAIL>','55667788'),(3,'Antonio','<EMAIL>','99001122'),(4,'Davi','<EMAIL>','33445566'),(5,'Bagrinho','<EMAIL>','77889900'); /*!40000 ALTER TABLE `contacts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `vehicle` -- DROP TABLE IF EXISTS `vehicle`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `vehicle` ( `id` int(11) NOT NULL AUTO_INCREMENT, `marca` varchar(255) DEFAULT NULL, `modelo` varchar(255) DEFAULT NULL, `ano` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `vehicle` -- LOCK TABLES `vehicle` WRITE; /*!40000 ALTER TABLE `vehicle` DISABLE KEYS */; INSERT INTO `vehicle` VALUES (1,'Land Rover','Discovery HSE',2016),(2,'Volkswagen','Tiguan',2011),(3,'Chevorlet','Vectra',2008),(4,'Toyota','Hilux',2020),(5,'Honda','Fit',2010); /*!40000 ALTER TABLE `vehicle` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2021-03-28 11:09:20
<reponame>spirdon/janbot2<filename>res/query/get_user_kudos.sql SELECT server_id, user_id, kudos, DENSE_RANK() OVER(ORDER BY kudos DESC) FROM users WHERE server_id=%s ORDER BY kudos DESC;
<filename>data/seed.sql USE employeeTracker_db; INSERT INTO department (department_name) VALUES('Management'); INSERT INTO department (department_name) VALUES('Sales'); INSERT INTO department (department_name) VALUES('Human Resources'); INSERT INTO department (department_name) VALUES('IT'); INSERT INTO role (title, salary, department_id) VALUES('CEO', 100000.00, 1); INSERT INTO role (title, salary, department_id) VALUES('Sales Represenative', 40000.00, 2); INSERT INTO role (title, salary, department_id) VALUES('Software Developer', 60000.00, 3); INSERT INTO role (title, salary, department_id) VALUES('Payroll Clerk', 25000.00, 4); INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES ('Joe', 'Harris', 4, 3); INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES ('Phil', 'Jurrasic', 2, 3); INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES ('Jane', 'Morgan', 1); INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES ('Glen', 'Alexander', 3, 3);
<filename>Applications/Joomla/Web/administrator/components/com_admin/sql/updates/postgresql/3.7.0-2017-01-08.sql<gh_stars>0 -- Normalize ucm_content_table default values. ALTER TABLE "#__ucm_content" ALTER COLUMN "core_title" SET DEFAULT ''; ALTER TABLE "#__ucm_content" ALTER COLUMN "core_body" SET DEFAULT ''; ALTER TABLE "#__ucm_content" ALTER COLUMN "core_params" SET DEFAULT ''; ALTER TABLE "#__ucm_content" ALTER COLUMN "core_metadata" SET DEFAULT ''; ALTER TABLE "#__ucm_content" ALTER COLUMN "core_images" SET DEFAULT ''; ALTER TABLE "#__ucm_content" ALTER COLUMN "core_urls" SET DEFAULT ''; ALTER TABLE "#__ucm_content" ALTER COLUMN "core_metakey" SET DEFAULT ''; ALTER TABLE "#__ucm_content" ALTER COLUMN "core_metadesc" SET DEFAULT '';
<reponame>leoiii12/neo4j-network-text-analysis CREATE CONSTRAINT ON (s: Sentence) ASSERT s.name IS UNIQUE CREATE CONSTRAINT ON (w: Word) ASSERT w.name IS UNIQUE
TRUNCATE TABLE gl_ccy_rule; COMMIT;
select count(*) from table_name; CREATE TABLE #{table_name} (permalink text PRIMARY KEY) CREATE TABLE #{table.name} (#{columns_cql}, #{keys_cql}) SELECT id FROM posts CREATE TABLE #{table_name} ( blog_subdomain text, permalink ascii, PRIMARY KEY (blog_subdomain, permalink) ) CREATE INDEX posts_author_id_idx ON #{
drop database if exists oficina; create database oficina; use oficina; create table servico( idServico int not null primary key auto_increment, descricao text not null, maoDeObra varchar(150) null, valor decimal null ); create table endereco ( idEndereco int not null primary key auto_increment, logradouro varchar(100) null, numero varchar(10) null, cep varchar(9) not null, bairro varchar(50) null, cidade varchar(50) null, uf varchar(4) not null, complemento varchar(100) ); create table contato( idContato int not null primary key auto_increment, tel varchar(12) null, cel varchar(13) not null, email varchar(100) null ); create table cliente ( idCliente int not null primary key auto_increment, nome varchar(100) not null, cpf varchar(14) not null, rg varchar(12) null, contato_cliente int not null, endereco_cliente int not null, constraint FK_contato_cliente foreign key(contato_cliente) references contato(idContato), constraint FK_endereco_cliente foreign key(endereco_cliente) references endereco(idEndereco) ); create table dadoCarro ( idCarro int not null primary key auto_increment, marca varchar(30) not null, modelo varchar(30) not null, cor varchar(30)not null, placa varchar(10) not null, anoCarro varchar(4) not null, FK_Cliente int not null, foreign key (FK_Cliente) references cliente(idCliente) ); create table funcionario ( idFuncionario int not null primary key auto_increment, nomeFuncionario varchar (100) not null, usuario varchar (50) not null, senha varchar (255) not null ); create table ordemServico ( idordemServico int not null primary key auto_increment, funcionario varchar(100) not null, dataEntrada date not null, dataSaida varchar(10) not null, valorTotal double not null, finalizada tinyint default false, cliente_ordemServ int not null, Fk_Funcionario int not null, constraint FK_cliente_ordemServ foreign key(cliente_ordemServ) references cliente(idCliente), foreign key (Fk_Funcionario) references funcionario(idFuncionario) ); create table servico_has_ordemservico ( Fk_Servico int not null, Fk_OrdemServico int not null, foreign key (Fk_Servico) references servico(idServico), foreign key (Fk_OrdemServico) references ordemServico(idordemServico) ); create table agendamento ( idAgendamento int primary key not null auto_increment, tituloAgendamento varchar (150) not null, data varchar(10) not null, hora varchar(10) null ); create table agendamento_has_cliente ( Fk_Cliente_2 int not null, Fk_Agendamento int not null, foreign key (Fk_Cliente_2) references cliente(idCliente), foreign key (Fk_Agendamento) references agendamento(idAgendamento) ); create table preCadastro ( idPrecadastro int primary key not null, nome varchar(45) null, marca varchar(45) null, modelo varchar(45) null, tel varchar(45) null, Fk_Agendamento_2 int not null, foreign key (Fk_Agendamento_2) references agendamento(idAgendamento) );
<filename>VIEWS/api/role_memberships.sql<gh_stars>1-10 CREATE OR REPLACE VIEW api.role_memberships AS SELECT role_memberships.role_membership_id, role_memberships.user_id, roles.role_name FROM role_memberships JOIN roles ON roles.role_id = role_memberships.role_id;
<filename>airbyte-integrations/bases/base-normalization/integration_tests/normalization_test_output/postgres/test_primary_key_streams/final/airbyte_ctes/test_normalization_namespace/simple_stream_with_n__lting_into_long_names_ab1.sql<gh_stars>1-10 create view "postgres"._airbyte_test_normalization_namespace."simple_stream_with_n__lting_into_long_names_ab1__dbt_tmp" as ( -- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema select jsonb_extract_path_text(_airbyte_data, 'id') as "id", jsonb_extract_path_text(_airbyte_data, 'date') as "date", _airbyte_emitted_at from "postgres".test_normalization_namespace._airbyte_raw_simple_stream_with_namespace_resulting_into_long_names -- simple_stream_with_n__lting_into_long_names );
<reponame>dum999/CocosStudioSamples <UserData> <OpenedDocuments> <FilePathData Path="crossplatform_Scale9_BackgroundImage.csd" /> </OpenedDocuments> <ActiveDocument Path="crossplatform_Scale9_BackgroundImage.csd" /> </UserData>
CREATE OR REPLACE FUNCTION f_args( int, float, text ) RETURNS void AS $code$ BEGIN RAISE INFO '$1 (type %) = %', pg_typeof( $1 ), $1; RAISE INFO '$2 (type %) = %', pg_typeof( $2 ), $2; RAISE INFO '$3 (type %) = %', pg_typeof( $3 ), $3; END $code$ LANGUAGE plpgsql;
<reponame>Shuttl-Tech/antlr_psql -- file:numeric_big.sql ln:325 expect:true INSERT INTO num_exp_sub VALUES (7,2,'994877526002806053819802076903499.04353023451866590387054959174736129501310680280823383331007646306243540953499740615246583399296334239109936336446284803020643582102868247857009494139535009572740621288230740389545481395')
<gh_stars>10-100 -- file:inherit.sql ln:474 expect:true create index matest0i on matest0 ((1-id))
<gh_stars>1-10 CREATE TABLE `estado` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT, `pais_id` BIGINT(20) NOT NULL, `nome` VARCHAR(100) NOT NULL, `uf` VARCHAR(10) NOT NULL, `create_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `changed` TIMESTAMP NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `deleted` TINYINT(4) NOT NULL DEFAULT '0', `delete_date` TIMESTAMP NULL DEFAULT NULL, PRIMARY KEY (`id`), INDEX `FK_estado_pais` (`pais_id`), CONSTRAINT `FK_estado_pais` FOREIGN KEY (`pais_id`) REFERENCES `pais` (`id`) ) COLLATE='latin1_swedish_ci' ENGINE=InnoDB ; INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Acre', 'AC', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Alagoas', 'AL', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Amapá', 'AP', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Amazonas', 'AM', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Bahia', 'BA', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Ceará', 'CE', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Distrito Federal', 'DF', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Espírito Santo', 'ES', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Goiás', 'GO', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Maranhão', 'MA', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Mato Grosso', 'MT', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Mato Grosso do Sul', 'MS', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Minas Gerais', 'MG', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Pará', 'PA', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Paraíba', 'PB', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Paraná', 'PR', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Pernambuco', 'PE', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Piauí', 'PI', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Rio de Janeiro', 'RJ', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Rio Grande do Norte', 'RN', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Rio Grande do Sul', 'RS', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Rondônia', 'RO', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Roraima', 'RR', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Santa Catarina', 'SC', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('São Paulo', 'SP', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Sergipe', 'SE', '1'); INSERT INTO `estado` (`nome`, `uf`, `pais_id`) VALUES ('Tocantins', 'TO', '1'); CREATE ALGORITHM = UNDEFINED SQL SECURITY DEFINER VIEW `estado_view` AS SELECT * FROM estado WHERE deleted = false ;
CREATE SHARDING SCALING scaling_name;
<filename>remote_flow/dbt/models/public/sessions.sql<gh_stars>100-1000 /** Group sessions with a array of objects for events. */ {{ config(materialized='table') }} WITH event_table AS ( SELECT session_id_hash , organization_id , ARRAY_AGG(event) within group (order by server_timestamp asc) AS events FROM ( SELECT OBJECT_CONSTRUCT( 'normalized_action', normalized_action, 'event_type',event_type, 'product_action',product_action, 'product_sku_hash',product_sku_hash, 'hashed_url', hashed_url, 'server_timestamp', server_timestamp ) AS event , server_timestamp , session_id_hash , organization_id FROM {{ ref('distinct_events') }} ) GROUP BY session_id_hash, organization_id ), session_table AS ( SELECT session_id_hash , start_time , add_action_count , session_action_count FROM {{ ref('session_stats') }} ) SELECT * FROM event_table INNER JOIN session_table USING(session_id_hash) ORDER BY start_time ASC
<gh_stars>0 ALTER TABLE chart_ref DROP COLUMN chart_description; ALTER TABLE chart_ref DROP COLUMN user_uploaded;
<reponame>fivetran/sql-parser SELECT stddev_pop(a), b GROUP BY b
<gh_stars>1-10 -- Verify ggircs-portal:tables/reporting_year_001 on pg begin; select exists (select tgname from pg_trigger where not tgisinternal and tgrelid = 'ggircs_portal.reporting_year'::regclass and tgname = '_protect_date_overlap'); rollback;
<gh_stars>10-100 -- -------------------------------------------------------------------------------- -- Routine DDL -- Note: comments before and after the routine body will not be stored by the server -- -------------------------------------------------------------------------------- DELIMITER $$ CREATE DEFINER=`root`@`localhost` PROCEDURE `abaptran_data_param_parsekvu`( IN i_kvu_tcode varchar(20), IN i_kvu_param varchar(254), -- Example: aaa=bbb IN i_kvu_level int ) BEGIN -- Update Key and Value DECLARE v_kvu_pos int; -- Position of sub-string DECLARE v_kvu_key VARCHAR(132); DECLARE v_kvu_value VARCHAR(50); -- call debug_msg(concat('KVU Parameter: i_kvu_tcode = ', i_kvu_tcode)); -- call debug_msg(concat('KVU Parameter: i_kvu_param = ', i_kvu_param)); -- call debug_msg(concat('KVU Parameter: i_kvu_level = ', i_kvu_level)); if length(i_kvu_param) > 0 then set v_kvu_pos = position('=' in i_kvu_param); if v_kvu_pos > 0 then set v_kvu_key = left(substr(i_kvu_param, 1, v_kvu_pos - 1), 132); set v_kvu_value = left(substr(i_kvu_param, v_kvu_pos + 1), 50); -- call debug_msg(concat('KVU Variable: v_kvu_key = ', v_kvu_key)); -- call debug_msg(concat('KVU Variable: v_kvu_value = ', v_kvu_value)); case i_kvu_level when 1 then -- call debug_msg('Update 1'); update abapanalytics.abaptran set key1 = v_kvu_key, value1 = v_kvu_value where tcode = i_kvu_tcode; when 2 then -- call debug_msg('Update 2'); update abapanalytics.abaptran set key2 = v_kvu_key, value2 = v_kvu_value where tcode = i_kvu_tcode; when 3 then -- call debug_msg('Update 3'); update abapanalytics.abaptran set key3 = v_kvu_key, value3 = v_kvu_value where tcode = i_kvu_tcode; when 4 then -- call debug_msg('Update 4'); update abapanalytics.abaptran set key4 = v_kvu_key, value4 = v_kvu_value where tcode = i_kvu_tcode; when 5 then -- call debug_msg('Update 5'); update abapanalytics.abaptran set key5 = v_kvu_key, value5 = v_kvu_value where tcode = i_kvu_tcode; when 6 then -- call debug_msg('Update 6'); update abapanalytics.abaptran set key6 = v_kvu_key, value6 = v_kvu_value where tcode = i_kvu_tcode; when 7 then -- call debug_msg('Update 7'); update abapanalytics.abaptran set key7 = v_kvu_key, value7 = v_kvu_value where tcode = i_kvu_tcode; else call debug_msg(concat('TCode contains more than 7 parameters: ', i_kvu_tcode)); end case; end if; end if; END
CREATE FUNCTION func902() RETURNS integer LANGUAGE plpgsql AS $$ DECLARE val INTEGER; BEGIN val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE14);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE353);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.TABLE385);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.VIEW90);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.VIEW95);val:=(SELECT COUNT(*)INTO MYCOUNT FROM MYLARGESCHEMA.VIEW27);END $$; GO
CREATE TABLE test_trgm2(t text COLLATE "C"); \copy test_trgm2 from 'data/trgm2.data' -- reduce noise set extra_float_digits = 0; select t,word_similarity('Baykal',t) as sml from test_trgm2 where 'Baykal' <% t order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where 'Kabankala' <% t order by sml desc, t; select t,word_similarity('Baykal',t) as sml from test_trgm2 where t %> 'Baykal' order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where t %> 'Kabankala' order by sml desc, t; select t <->> 'Kabankala', t from test_trgm2 order by t <->> 'Kabankala' limit 7; create index trgm_idx2 on test_trgm2 using gist (t gist_trgm_ops); set enable_seqscan=off; select t,word_similarity('Baykal',t) as sml from test_trgm2 where 'Baykal' <% t order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where 'Kabankala' <% t order by sml desc, t; select t,word_similarity('Baykal',t) as sml from test_trgm2 where t %> 'Baykal' order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where t %> 'Kabankala' order by sml desc, t; explain (costs off) select t <->> 'Kabankala', t from test_trgm2 order by t <->> 'Kabankala' limit 7; select t <->> 'Kabankala', t from test_trgm2 order by t <->> 'Kabankala' limit 7; drop index trgm_idx2; create index trgm_idx2 on test_trgm2 using gin (t gin_trgm_ops); set enable_seqscan=off; select t,word_similarity('Baykal',t) as sml from test_trgm2 where 'Baykal' <% t order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where 'Kabankala' <% t order by sml desc, t; select t,word_similarity('Baykal',t) as sml from test_trgm2 where t %> 'Baykal' order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where t %> 'Kabankala' order by sml desc, t; set "pg_trgm.word_similarity_threshold" to 0.5; select t,word_similarity('Baykal',t) as sml from test_trgm2 where 'Baykal' <% t order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where 'Kabankala' <% t order by sml desc, t; select t,word_similarity('Baykal',t) as sml from test_trgm2 where t %> 'Baykal' order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where t %> 'Kabankala' order by sml desc, t; set "pg_trgm.word_similarity_threshold" to 0.3; select t,word_similarity('Baykal',t) as sml from test_trgm2 where 'Baykal' <% t order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where 'Kabankala' <% t order by sml desc, t; select t,word_similarity('Baykal',t) as sml from test_trgm2 where t %> 'Baykal' order by sml desc, t; select t,word_similarity('Kabankala',t) as sml from test_trgm2 where t %> 'Kabankala' order by sml desc, t;
/* remove_0_page_counts_for_audiobooks.sql is a MySQL script intended to add remove "0" page counts for audio books Version: $Revision: 15 $ Date: $Date: 2017-10-31 16:32:38 -0400 (Tue, 31 Oct 2017) $ (C) COPYRIGHT 2018 Ahasuerus ALL RIGHTS RESERVED The copyright notice above does not evidence any actual or intended publication of such source code. */ update pubs set pub_pages = NULL where pub_pages = '0' and pub_ptype like '%audio%';
<gh_stars>10-100 # INCOMPLETE SETS INSERT INTO button (id, name, recipe, btn_special, tourn_legal, set_id) VALUES # 2004 ORIGINS (Flying Buffalo) (679, 'Killer Christmas Tree', '(6) Z(6) (10) Z(12) (X)', 0, 0, (SELECT id FROM buttonset WHERE name="2004 Origins")), # '2005 Rare Promo' (680, 'Magical Witch Critical Miss', '(6) (10) (10) (20) (X)?', 0, 0, (SELECT id FROM buttonset WHERE name="2005 Rare Promo")), # BRIDGE AND TUNNEL (Bridge and Tunnel Software) (681, 'Phantom Zero', 'g(8) s(10) (12) (2/12) (X)', 0, 0, (SELECT id FROM buttonset WHERE name="Bridge and Tunnel")), (682, 'Pinball Wizard', '=(6) =(6) (20) (20)', 0, 0, (SELECT id FROM buttonset WHERE name="Bridge and Tunnel")), (683, 'The Gratch', 'z(4) =(20) (V) (V) (V)', 0, 0, (SELECT id FROM buttonset WHERE name="Bridge and Tunnel")), (684, 'Steve', '=(4) =(4) =(8) =(20) =(X)', 0, 0, (SELECT id FROM buttonset WHERE name="Bridge and Tunnel")), (685, 'The Fog', 's(4) s(4) (30) (30)', 0, 0, (SELECT id FROM buttonset WHERE name="Bridge and Tunnel")), (686, 'G', 'g(6) =(6) z(8) (16) (10/20)', 0, 0, (SELECT id FROM buttonset WHERE name="Bridge and Tunnel")), # LAS VEGAS # Clones of Black Jack, Craps, Shamrock, and Crypto - sans button specials # Black Jack, Shamrock, and Pai Gow have alternate recipes # Black Jack II introduces Triplet Dice # (688, 'Black Jack II', '(1,1) (11) (8,8) (10,10,1) (T)', 1, 0, (SELECT id FROM buttonset WHERE name="Las Vegas")), (689, 'Twenty-One', '(1,1) (11) (8,8) (10,11) (T)', 0, 0, (SELECT id FROM buttonset WHERE name="Las Vegas")), (690, 'Them Bones', '(6,6) (6,6) (6,6) (6,6) (6,6)', 0, 0, (SELECT id FROM buttonset WHERE name="Las Vegas")), (691, 'Shamrock II', '(2) (9) (7/13) (7/13) (7/13)', 1, 0, (SELECT id FROM buttonset WHERE name="Las Vegas")), (692, 'Lady Luck', '(2) (7/13) (7/13) (7/13) (7/13)', 0, 0, (SELECT id FROM buttonset WHERE name="Las Vegas")), (693, 'Pai Gow II', '(4) :(10) :(10) (12) (12)', 0, 0, (SELECT id FROM buttonset WHERE name="Las Vegas")), (694, 'Magician', '(6) (8) (10) (12) (T)', 0, 0, (SELECT id FROM buttonset WHERE name="Las Vegas")); # Pai Gow is two words. Wildcard is one word in this set. # checked against http://web.archive.org/web/20080706172140/http://home.att.net/~kerry_and_ryan/LasVegas.html UPDATE button SET name='<NAME>' WHERE name='PaiGow'; UPDATE button SET name='Wildcard' WHERE name='WildCard'; # ZOECon # Nara's name didn't match the button image. The button image was currect. UPDATE button SET name='Nara' WHERE name='Zara'; # WT??? # Seriously! I have no idea what this recipe is meant to be # (695, 'Bob', '(pX+Y+Z) (t0]) (sA!) (zA!) (cA!) (X+Y+Z)', 1, 0, (SELECT id FROM buttonset WHERE name="Yoyodyne"));
DROP TABLE IF EXISTS `collections_tokens`; CREATE TABLE `collections_tokens` ( `id` integer AUTO_INCREMENT NOT NULL PRIMARY KEY, `created` datetime NOT NULL, `modified` datetime NOT NULL, `collection_id` integer NOT NULL, `token` varchar(255) NOT NULL UNIQUE ) ; ALTER TABLE `collections_tokens` ADD CONSTRAINT `collection_id_refs_id_2d03c093` FOREIGN KEY (`collection_id`) REFERENCES `collections` (`id`);
<gh_stars>1-10 ALTER TABLE addon_purchase ADD COLUMN `receipt` longtext NOT NULL;
-- Setting the mod_main_class for each of these modules makes them callable via -- the different hook methods. UPDATE `modules` SET `mod_main_class` = 'CSystem' WHERE `mod_directory` = 'system'; UPDATE `modules` SET `mod_main_class` = 'CProjectDesignerOptions' WHERE `mod_directory` = 'projectdesigner'; UPDATE `modules` SET `mod_main_class` = 'smartsearch' WHERE `mod_directory` = 'smartsearch'; -- These parameters configure the system to communicate with the core -- web2project data collection system. Some of the details on the -- implementation are here: http://forums.web2project.net/viewtopic.php?t=1960 INSERT INTO `config` (`config_name`, `config_value`, `config_group`, `config_type`) VALUES ('system_update_day', '0', 'admin_system', 'text'); INSERT INTO `config` (`config_name`, `config_value`, `config_group`, `config_type`) VALUES ('system_update_hour', '3', 'admin_system', 'text');
<reponame>RuinExplorer/z_terra_dotta_interface /* Formatted on 6/24/2019 9:51:42 AM (QP5 v5.336) */ CREATE OR REPLACE PACKAGE BODY BANINST1.z_terra_dotta_interface AS /*************************************************************************** REVISIONS: Date Author Description --------- --------------- ------------------------------------ 20160617 <NAME> created this package from z_student_etl 20160620 <NAME> added p_extract_sis_user_info_custom 20160622 <NAME> split out individual address fields 20160623 <NAME> updated file names to match vendor spec 20170103 <NAME> added error handling to track down issues 20170406 <NAME> removed unessesary SQLERRM causing APPMANAGER GRIEF 20170511 <NAME> Option1 field now populated with residency 20170908 <NAME> updated term function calls 20180524 Carl Ellsworth added custom call for majority campus 20180926 Carl Ellsworth updated major2 field with college as requested 20190520 <NAME>sworth added ISS extract functionality 20190521 Carl Ellsworth added some SEVIS specifics to ISSS extract 20190522 Carl Ellsworth added extended academics to ISSS extract 20190523 Carl Ellsworth added Admissions, Advisors, and more data elements 20190524 Carl Ellsworth added sevis translations for degree codes 20190531 <NAME>llsworth added logic for a term code override for calculations 20190604 <NAME> CIP Code formatting updates 20190605 <NAME> Language Test Fields added 20190611 <NAME>sworth campus_employment and Grad Assistant FTE fields added 20190612 Carl Ellsworth added USU specific passphrase check 20190612 Carl Ellsworth Optional Practical Training (OPT) added (grads within 1217 days) 20190624 <NAME>sworth updated ISSS filename ***************************************************************************/ gv_directory_name VARCHAR2 (30) := 'TERRADOTTA'; FUNCTION f_enclose (p_string IN OUT VARCHAR2) RETURN VARCHAR2 IS quot CHAR := CHR (34); --ASCII character double quotes BEGIN IF p_string IS NULL THEN RETURN NULL; ELSE RETURN (quot || p_string || quot); END IF; END; FUNCTION f_parse (p_string VARCHAR2, p_col_num VARCHAR2, p_delim VARCHAR2) RETURN VARCHAR2 /*************************************************************************** This process will receive a column number as an input parameter and return the value in that column. If nothing is found will return null. ***************************************************************************/ IS --v_delim VARCHAR2 (1) := CHR (9); --tab v_parse_first VARCHAR2 (32767); v_parse_last VARCHAR2 (32767); v_parse_quote VARCHAR2 (32767); v_value VARCHAR2 (32767); v_string VARCHAR2 (32767); BEGIN -- Add comma to end of the string to allow function to parse out possible last value v_string := p_string || p_delim; -- get characters up to the desired delim (row) v_parse_first := SUBSTR (v_string, 1, INSTR (v_string, p_delim, 1, p_col_num) - 1); -- reverse search keeping everything from the end of the string until the first comma v_parse_last := SUBSTR (v_parse_first, INSTR (v_parse_first, p_delim, -1, 1) + 1); --trim any quotes from characters v_parse_quote := TRIM ('"' FROM v_parse_last); -- trim any leading or trailing spaces in data. v_value := TRIM (v_parse_quote); RETURN v_value; END; PROCEDURE p_student_address (p_pidm VARCHAR2, p_addr_type VARCHAR2, p_addr_date DATE DEFAULT NULL, out_street_line1 OUT VARCHAR2, out_street_line2 OUT VARCHAR2, out_street_line3 OUT VARCHAR2, out_city OUT VARCHAR2, out_stat_code OUT VARCHAR2, out_zip OUT VARCHAR2, out_natn_code OUT VARCHAR2) AS BEGIN SELECT spraddr_street_line1, spraddr_street_line2, spraddr_street_line3, spraddr_city, spraddr_stat_code, spraddr_zip, spraddr_natn_code INTO out_street_line1, out_street_line2, out_street_line3, out_city, out_stat_code, out_zip, out_natn_code FROM spraddr WHERE spraddr_pidm = p_pidm AND spraddr_atyp_code = p_addr_type AND (spraddr_status_ind IS NULL OR spraddr_status_ind = 'A') AND TRUNC (NVL (p_addr_date, SYSDATE)) BETWEEN TRUNC ( NVL ( spraddr_from_date, NVL ( p_addr_date, SYSDATE))) AND TRUNC ( NVL ( spraddr_to_date, NVL ( p_addr_date, SYSDATE))) ORDER BY spraddr_activity_date DESC FETCH FIRST ROW ONLY; --RETURN v_address; EXCEPTION WHEN NO_DATA_FOUND THEN out_street_line1 := NULL; out_street_line2 := NULL; out_street_line3 := NULL; out_city := NULL; out_stat_code := NULL; out_zip := NULL; out_natn_code := NULL; --return null; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Address: ' || 'PIDM: ' || p_pidm || ' ADDR_TYPE: ' || p_addr_type || ' ADDR_DATE: ' || p_addr_date || SQLERRM); RAISE; END; FUNCTION f_student_level (p_pidm VARCHAR2, p_term VARCHAR2) RETURN VARCHAR2 IS v_level_code VARCHAR2 (8); BEGIN SELECT MAX (sgbstdn_levl_code) INTO v_level_code FROM sgbstdn WHERE sgbstdn_term_code_eff = (SELECT MAX (bravo.sgbstdn_term_code_eff) FROM sgbstdn bravo WHERE bravo.sgbstdn_pidm = sgbstdn.sgbstdn_pidm AND bravo.sgbstdn_term_code_eff <= p_term) AND sgbstdn_pidm = p_pidm; RETURN v_level_code; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Level: ' || SQLERRM); RAISE; END; FUNCTION f_student_visa (p_pidm gorvisa.gorvisa_pidm%TYPE) RETURN VARCHAR2 IS -- rtn_visa VARCHAR2 (16); BEGIN SELECT MAX (gorvisa_vtyp_code) INTO rtn_visa FROM gorvisa WHERE gorvisa_pidm = p_pidm AND gorvisa_seq_no = (SELECT MAX (bravo.gorvisa_seq_no) FROM gorvisa bravo WHERE bravo.gorvisa_pidm = p_pidm); RETURN rtn_visa; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Visa: ' || SQLERRM); RAISE; END f_student_visa; FUNCTION f_student_natn (p_pidm gobintl.gobintl_pidm%TYPE) RETURN VARCHAR2 IS -- rtn_natn VARCHAR2 (16); BEGIN SELECT MAX (gobintl_natn_code_legal) INTO rtn_natn FROM gobintl WHERE gobintl_pidm = p_pidm; RETURN rtn_natn; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Nation: ' || SQLERRM); RAISE; END f_student_natn; FUNCTION f_student_record ( p_pidm sgbstdn.sgbstdn_pidm%TYPE, p_term_code sgbstdn.sgbstdn_term_code_eff%TYPE, out_major_1 OUT VARCHAR2, out_college OUT VARCHAR2) RETURN DATE IS --this procedure served as a shortcut to major_1 and major_2 -- <NAME> requested that major_2 be populated with college instead -- the change was made on 20180926 and is noted here due to the field name rtn_exp_grad_date DATE; BEGIN SELECT sgbstdn_exp_grad_date, alpha.stvmajr_desc, stvcoll_desc --bravo.stvmajr_desc INTO rtn_exp_grad_date, out_major_1, out_college --out_major_2 FROM sgbstdn alpha LEFT JOIN stvmajr alpha ON alpha.stvmajr_code = sgbstdn_majr_code_1 LEFT JOIN stvmajr bravo ON bravo.stvmajr_code = sgbstdn_majr_code_2 LEFT JOIN stvcoll ON stvcoll_code = alpha.sgbstdn_coll_code_1 WHERE sgbstdn_pidm = p_pidm AND sgbstdn_term_code_eff = (SELECT MAX (bravo.sgbstdn_term_code_eff) FROM sgbstdn bravo WHERE bravo.sgbstdn_pidm = alpha.sgbstdn_pidm AND bravo.sgbstdn_term_code_eff <= p_term_code) ORDER BY sgbstdn_activity_date DESC FETCH FIRST ROW ONLY; RETURN rtn_exp_grad_date; EXCEPTION WHEN NO_DATA_FOUND THEN rtn_exp_grad_date := NULL; out_major_1 := NULL; out_college := NULL; --out_major_2 := NULL; RETURN rtn_exp_grad_date; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Record: ' || SQLERRM); RAISE; END f_student_record; FUNCTION f_student_emergency (p_pidm spremrg.spremrg_pidm%TYPE) RETURN VARCHAR2 IS -- rtn_emergency_contact VARCHAR2 (512); BEGIN SELECT TRIM ( 'NAME: ' || spremrg_first_name || ' ' || spremrg_last_name || ' PHONE: ' || spremrg_phone_area || spremrg_phone_number || ' ADDRESS: ' || CASE WHEN spremrg_street_line1 IS NULL THEN '' ELSE spremrg_street_line1 || ', ' END || CASE WHEN spremrg_street_line2 IS NULL THEN '' ELSE spremrg_street_line2 || ', ' END || CASE WHEN spremrg_street_line3 IS NULL THEN '' ELSE spremrg_street_line3 || ', ' END || spremrg_city || ' ' || spremrg_stat_code || ' ' || spremrg_zip || CASE WHEN spremrg_natn_code = 'US' THEN '' WHEN spremrg_natn_code IS NULL THEN '' ELSE ', ' || spremrg_natn_code END) AS CONTACT_STRING INTO rtn_emergency_contact FROM spremrg alpha WHERE spremrg_pidm = p_pidm AND spremrg_priority = (SELECT MIN (bravo.spremrg_priority) FROM spremrg bravo WHERE bravo.spremrg_pidm = alpha.spremrg_pidm) ORDER BY spremrg_activity_date DESC FETCH FIRST ROW ONLY; RETURN rtn_emergency_contact; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Emergency Contact: ' || SQLERRM); RAISE; END f_student_emergency; FUNCTION f_student_phone ( p_pidm IN sprtele.sprtele_pidm%TYPE, p_tele_code IN sprtele.sprtele_tele_code%TYPE, p_country_code OUT sprtele.sprtele_ctry_code_phone%TYPE) RETURN VARCHAR2 AS rtn_phone_number VARCHAR2 (64); BEGIN SELECT phone_number, country_code INTO rtn_phone_number, p_country_code FROM ( SELECT REGEXP_REPLACE ( sprtele_phone_area || sprtele_phone_number || sprtele_phone_ext, '[^0-9]+', '') AS phone_number, REGEXP_REPLACE (sprtele_ctry_code_phone, '[^0-9]+', '') AS country_code FROM sprtele WHERE ( sprtele_atyp_code = NULL OR (sprtele_atyp_code, sprtele_addr_seqno) = (SELECT spraddr_atyp_code, spraddr_seqno FROM spraddr WHERE spraddr.ROWID = baninst1.F_GET_ADDRESS_ROWID ( spraddr_pidm, 'ADMSADDR', 'A', SYSDATE, NULL, 'S', NULL) AND spraddr_pidm = sprtele_pidm)) AND sprtele_tele_code = p_tele_code AND sprtele_pidm = p_pidm AND sprtele_status_ind IS NULL ORDER BY sprtele_seqno DESC) numbers FETCH FIRST ROW ONLY; RETURN rtn_phone_number; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Phone Number: ' || SQLERRM); RAISE; END f_student_phone; FUNCTION f_holds_academic (p_pidm sprhold.sprhold_pidm%TYPE) RETURN VARCHAR2 IS rtn_boolean VARCHAR2 (3) := NULL; BEGIN --academic holds SELECT DISTINCT MAX ('Yes') INTO rtn_boolean FROM sprhold WHERE sprhold_hldd_code IN ('AA', 'AD', 'AT', 'CT', 'CW', 'DH', 'HO', 'IN', 'IS', 'JD', 'J1', 'MS', 'RG', 'SH', 'TR', 'UA', 'VT') AND SYSDATE BETWEEN sprhold_from_date AND NVL (sprhold_to_date, SYSDATE) AND sprhold_pidm = p_pidm; IF rtn_boolean IS NULL THEN rtn_boolean := 'No'; END IF; RETURN rtn_boolean; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Academic Holds: ' || SQLERRM); RAISE; END; FUNCTION f_holds_financial (p_pidm sprhold.sprhold_pidm%TYPE) RETURN VARCHAR2 IS rtn_boolean VARCHAR2 (3) := NULL; BEGIN --financial holds SELECT DISTINCT MAX ('Yes') INTO rtn_boolean FROM sprhold WHERE sprhold_hldd_code IN ('A1', 'AR', 'BI', 'BK', 'CB', 'CP', 'JM', 'LF', 'P1', 'P3', 'PF', 'PR', 'R1', 'RT', 'T1', 'WO') AND SYSDATE BETWEEN sprhold_from_date AND NVL (sprhold_to_date, SYSDATE) AND sprhold_pidm = p_pidm; IF rtn_boolean IS NULL THEN rtn_boolean := 'No'; END IF; RETURN rtn_boolean; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Financial Holds: ' || SQLERRM); RAISE; END; FUNCTION f_holds_conduct (p_pidm sprhold.sprhold_pidm%TYPE) RETURN VARCHAR2 IS rtn_boolean VARCHAR2 (3) := NULL; BEGIN --financial holds SELECT DISTINCT MAX ('Yes') INTO rtn_boolean FROM sprhold WHERE sprhold_hldd_code IN ('J1', 'JD') AND SYSDATE BETWEEN sprhold_from_date AND NVL (sprhold_to_date, SYSDATE) AND sprhold_pidm = p_pidm; IF rtn_boolean IS NULL THEN rtn_boolean := 'No'; END IF; RETURN rtn_boolean; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Conduct Holds: ' || SQLERRM); RAISE; END f_holds_conduct; FUNCTION f_student_resd (p_pidm VARCHAR2, p_term VARCHAR2) RETURN VARCHAR2 IS v_resd_desc VARCHAR2 (30); BEGIN SELECT stvresd_desc INTO v_resd_desc FROM sgbstdn JOIN stvresd ON sgbstdn_resd_code = stvresd_code WHERE sgbstdn_term_code_eff = (SELECT MAX (bravo.sgbstdn_term_code_eff) FROM sgbstdn bravo WHERE bravo.sgbstdn_pidm = sgbstdn.sgbstdn_pidm AND bravo.sgbstdn_term_code_eff <= p_term) AND sgbstdn_pidm = p_pidm; RETURN v_resd_desc; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Student Residency: ' || SQLERRM); RAISE; END; PROCEDURE p_extract_hr_user_info_core IS v_delim VARCHAR2 (1) := CHR (9); --ASCII Character horizonal tab --PROCESSING VARIABLES id UTL_FILE.file_type; filedata VARCHAR2 (20000); CURSOR hr_cur IS (SELECT SUBSTR (spriden_first_name, 1, 50) user_first_name, SUBSTR (spriden_last_name, 1, 50) user_last_name, SUBSTR (spriden_mi, 1, 50) user_middle_name, spriden_id user_name, SUBSTR (goremal_email_address, 1, 250) user_email FROM (SELECT DISTINCT spriden_pidm pidm FROM ts_hr.hrd_emplposnjobs@EDW WHERE nbbposn_posn LIKE '9%' AND nbrjobs_effective_date < SYSDATE AND nbrjobs_nchg_date >= SYSDATE) population JOIN spriden ON spriden_pidm = pidm AND spriden_change_ind IS NULL --LEFT JOIN spbpers ON spbpers_pidm = pidm LEFT OUTER JOIN goremal ON goremal_pidm = pidm AND goremal_status_ind = 'A' AND goremal_preferred_ind = 'Y'); cur INTEGER; ret INTEGER; --FILE PROCESSING VARIABLES v_directory VARCHAR2 (30) := gv_directory_name; v_file_name VARCHAR2 (30) := 'hr_user_info_core.txt'; BEGIN id := UTL_FILE.fopen (v_directory, v_file_name, 'w', 20000); -- HEADER RECORD filedata := 'UUUID' || v_delim || 'First_Name' || v_delim || 'Last_Name' || v_delim || 'Middle_Name' || v_delim || 'Email'; --output header record UTL_FILE.put_line (id, filedata); FOR hr_rec IN hr_cur LOOP BEGIN filedata := hr_rec.user_name || v_delim || hr_rec.user_first_name || v_delim || hr_rec.user_last_name || v_delim || hr_rec.user_middle_name || v_delim || hr_rec.user_email; UTL_FILE.put_line (id, filedata); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.put_line ( 'TDEXPORT - Bad row creation in file: ' || SQLERRM); END; END LOOP; UTL_FILE.fclose (id); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.put_line ('TDEXPORT - UNKNOWN ERROR: ' || SQLERRM); END; PROCEDURE p_extract_sis_user_info_core IS v_delim VARCHAR2 (1) := CHR (9); --ASCII Character horizonal tab --PROCESSING VARIABLES id UTL_FILE.file_type; filedata VARCHAR2 (20000); CURSOR student_cur IS (SELECT SUBSTR (spriden_first_name, 1, 50) user_first_name, SUBSTR (spriden_last_name, 1, 50) user_last_name, SUBSTR (spriden_mi, 1, 50) user_middle_name, spriden_id user_name, SUBSTR (goremal_email_address, 1, 250) user_email, spbpers_birth_date user_dob, spbpers_sex user_sex, COALESCE (spbpers_confid_ind, 'N') user_confidentiality FROM (SELECT DISTINCT saradap_pidm pidm FROM saradap --admissions records WHERE saradap_term_code_entry IN (SELECT term_code FROM TABLE (F_LIST_ACTIVETERMS)) UNION SELECT DISTINCT sfrstcr_pidm pidm FROM sfrstcr --registration records WHERE sfrstcr_term_code IN (SELECT term_code FROM TABLE (F_LIST_ACTIVETERMS))) population JOIN spriden ON spriden_pidm = pidm AND spriden_change_ind IS NULL LEFT JOIN spbpers ON spbpers_pidm = pidm LEFT OUTER JOIN goremal ON goremal_pidm = pidm AND goremal_status_ind = 'A' AND goremal_preferred_ind = 'Y'); cur INTEGER; ret INTEGER; --FILE PROCESSING VARIABLES v_directory VARCHAR2 (30) := gv_directory_name; v_file_name VARCHAR2 (30) := 'sis_user_info_core.txt'; BEGIN id := UTL_FILE.fopen (v_directory, v_file_name, 'w', 20000); -- HEADER RECORD filedata := 'UUUID' || v_delim || 'First_Name' || v_delim || 'Last_Name' || v_delim || 'Middle_Name' || v_delim || 'Email' || v_delim || 'DOB' || v_delim || 'Gender' || v_delim || 'Confidentiality_Indicator'; --output header record UTL_FILE.put_line (id, filedata); FOR student_rec IN student_cur LOOP BEGIN filedata := student_rec.user_name || v_delim || student_rec.user_first_name || v_delim || student_rec.user_last_name || v_delim || student_rec.user_middle_name || v_delim || student_rec.user_email || v_delim || student_rec.user_dob || v_delim || student_rec.user_sex || v_delim || student_rec.user_confidentiality; UTL_FILE.put_line (id, filedata); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.put_line ( 'TDEXPORT - Bad row creation in file: ' || SQLERRM); END; END LOOP; UTL_FILE.fclose (id); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.put_line ('TDEXPORT - UNKNOWN ERROR: ' || SQLERRM); END; PROCEDURE p_extract_sis_user_info_custom IS v_delim VARCHAR2 (1) := CHR (9); --ASCII Character horizonal tab --PROCESSING VARIABLES IN_DATA UTL_FILE.FILE_TYPE; OUT_DATA UTL_FILE.FILE_TYPE; v_header VARCHAR2 (4096) := 'UUUID' || v_delim || 'Class_Level' || v_delim || 'Academic_Level' || v_delim || 'Country_of_Citizenship' || v_delim || 'Visa_Status' || v_delim || 'Cell_Number' || v_delim || 'Cumulative_GPA' || v_delim || 'Financial_Hold' || v_delim || 'Academic_Hold' || v_delim || 'Major_1' || v_delim || 'Major_2' || v_delim || 'Option_1' || v_delim || 'Option_2' || v_delim || 'Expected_Graduation_Date' || v_delim || 'Preferred_Name' || v_delim || 'Emergency_Contact' -- || v_delim -- || 'Campus Address' -- || v_delim -- || 'Permanent Address' || v_delim || 'Campus_Address_Line_1' || v_delim || 'Campus_Address_Line_2' || v_delim || 'Campus_Address_Line_3' || v_delim || 'Campus_City' || v_delim || 'Campus_State' || v_delim || 'Campus_Zip' || v_delim || 'Campus_Country' || v_delim || 'Perm_Address_Line_1' || v_delim || 'Perm_Address_Line_2' || v_delim || 'Perm_Address_Line_3' || v_delim || 'Perm_City' || v_delim || 'Perm_State' || v_delim || 'Perm_Zip' || v_delim || 'Perm_Country'; v_in_file_name VARCHAR2 (30) := 'studyabroad_usu_edu_pool.txt'; --getting specifc filename from chelsey v_out_file_name VARCHAR2 (30) := 'sis_user_info_custom.txt'; v_filedata VARCHAR2 (32767); v_newline VARCHAR2 (256); v_rec_count NUMBER (6) := 0; --v_update_count NUMBER (6) := 0; --EXTRACT VARIABLES v_term_code VARCHAR2 (6) := CASANDRA.F_FETCH_TERM; v_pidm spriden.spriden_pidm%TYPE; v_UUUID spriden.spriden_id%TYPE; v_Class_Level VARCHAR2 (2); v_Academic_Level VARCHAR2 (2); v_Country_of_Citizenship VARCHAR2 (64); v_Visa_Status VARCHAR2 (64); v_Cell_Number VARCHAR2 (64); v_country_code VARCHAR2 (4); v_Cumulative_GPA VARCHAR2 (64); v_Financial_Hold VARCHAR2 (64); v_Academic_Hold VARCHAR2 (64); v_Major_1 VARCHAR2 (64); v_Major_2 VARCHAR2 (64); v_Option_1 VARCHAR2 (64); v_Option_2 VARCHAR2 (64); v_Expected_Graduation_Date DATE; v_Prefered_Name VARCHAR2 (128); v_Emergency_Contact VARCHAR2 (512); --v_Campus_Address VARCHAR2 (512); --v_Permanent_Address VARCHAR2 (512); v_Campus_Address_Line_1 VARCHAR2 (75); v_Campus_Address_Line_2 VARCHAR2 (75); v_Campus_Address_Line_3 VARCHAR2 (75); v_Campus_City VARCHAR2 (50); v_Campus_State VARCHAR2 (3); v_Campus_Zip VARCHAR2 (30); v_Campus_Country VARCHAR2 (50); v_Perm_Address_Line_1 VARCHAR2 (75); v_Perm_Address_Line_2 VARCHAR2 (75); v_Perm_Address_Line_3 VARCHAR2 (75); v_Perm_City VARCHAR2 (50); v_Perm_State VARCHAR2 (3); v_Perm_Zip VARCHAR2 (30); v_Perm_Country VARCHAR2 (50); BEGIN IN_DATA := UTL_FILE.FOPEN (gv_directory_name, v_in_file_name, 'r', 32767); OUT_DATA := UTL_FILE.FOPEN (gv_directory_name, v_out_file_name, 'w', 32767); UTL_FILE.PUT_LINE (OUT_DATA, v_header); IF UTL_FILE.is_open (IN_DATA) THEN LOOP BEGIN --FileReadPhase UTL_FILE.GET_LINE (IN_DATA, v_filedata, 256); EXCEPTION WHEN NO_DATA_FOUND THEN DBMS_OUTPUT.PUT_LINE ( 'STATUS - End of File or No Data Found'); -- || SUBSTR (SQLERRM, 1, 200)); --GOTO finish_process; EXIT; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception in FileReadPhase ' || SUBSTR (SQLERRM, 1, 200)); END; BEGIN v_newline := SUBSTR (v_filedata, 1, 256); IF v_newline IS NULL THEN EXIT; END IF; --remove possible line feed from end of v_newline v_newline := TRIM (CHR (13) FROM v_newline); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception in NewLinePhase ' || SUBSTR (SQLERRM, 1, 200)); END; BEGIN --BannerSearchPhase --get student pidm SELECT spriden_id, spriden_pidm INTO v_UUUID, v_pidm FROM spriden WHERE spriden_change_ind IS NULL AND UPPER (spriden_id) = UPPER (v_newline); EXCEPTION WHEN VALUE_ERROR THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Error in parameters ' || SUBSTR (SQLERRM, 1, 200)); v_pidm := NULL; v_UUUID := NULL; WHEN NO_DATA_FOUND THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - student PIDM not found for ' || UPPER (v_newline)); v_pidm := NULL; v_UUUID := NULL; WHEN TOO_MANY_ROWS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Multiple PIDMs' || SUBSTR (SQLERRM, 1, 200)); v_pidm := NULL; v_UUUID := NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception in BannerSearchPhase' || SUBSTR (SQLERRM, 1, 200)); END; --set variables IF v_pidm IS NOT NULL THEN v_Academic_Level := f_student_level (v_pidm, v_term_code); v_Class_Level := f_class_calc_fnc (v_pidm, v_Academic_Level, CASANDRA.F_FETCH_TERM); v_Country_of_Citizenship := F_GET_DESC ('STVNATN', f_student_natn (v_pidm)); v_Visa_Status := f_student_visa (v_pidm); v_Cell_Number := f_student_phone (p_pidm => v_pidm, p_tele_code => 'MOB', p_country_code => v_country_code); v_Cumulative_GPA := f_parse (f_concat_as_of_cum_gpa (v_pidm, v_term_code, v_Academic_Level, 'O'), 5, '{'); v_Financial_Hold := f_holds_financial (v_pidm); v_Academic_Hold := f_holds_academic (v_pidm); v_Expected_Graduation_Date := f_student_record (v_pidm, v_term_code, v_Major_1, v_Major_2); --v_Major_1 := v_Major_1; --v_Major_2 := v_Major_2; v_Option_1 := f_student_resd (v_pidm, v_term_code); v_Option_2 := f_get_desc_fnc ( 'STVCAMP', z_campus_magic_q.f_calc_majority_campus_code ( v_term_code, v_pidm), 30); v_Prefered_Name := BANINST1.z_f_get_preferred_name (v_pidm, 'FL'); v_Emergency_Contact := f_student_emergency (v_pidm); p_student_address (v_pidm, 'MA', NULL, v_Campus_Address_Line_1, v_Campus_Address_Line_2, v_Campus_Address_Line_3, v_Campus_City, v_Campus_State, v_Campus_Zip, v_Campus_Country); v_Campus_Country := F_GET_DESC ('STVNATN', v_Campus_Country); p_student_address (v_pidm, 'PR', NULL, v_Perm_Address_Line_1, v_Perm_Address_Line_2, v_Perm_Address_Line_3, v_Perm_City, v_Perm_State, v_Perm_Zip, v_Perm_Country); v_Perm_Country := F_GET_DESC ('STVNATN', v_Perm_Country); BEGIN v_filedata := v_UUUID || v_delim || v_Class_Level || v_delim || v_Academic_Level || v_delim || v_Country_of_Citizenship || v_delim || v_Visa_Status || v_delim || v_Cell_Number || v_delim || v_Cumulative_GPA || v_delim || v_Financial_Hold || v_delim || v_Academic_Hold || v_delim || v_Major_1 || v_delim || v_Major_2 || v_delim || v_Option_1 || v_delim || v_Option_2 || v_delim || v_Expected_Graduation_Date || v_delim || v_Prefered_Name || v_delim || v_Emergency_Contact -- || v_delim -- || v_Campus_Address -- || v_delim -- || v_Permanent_Address || v_delim || v_Campus_Address_Line_1 || v_delim || v_Campus_Address_Line_2 || v_delim || v_Campus_Address_Line_3 || v_delim || v_Campus_City || v_delim || v_Campus_State || v_delim || v_Campus_Zip || v_delim || v_Campus_Country || v_delim || v_Perm_Address_Line_1 || v_delim || v_Perm_Address_Line_2 || v_delim || v_Perm_Address_Line_3 || v_delim || v_Perm_City || v_delim || v_Perm_State || v_delim || v_Perm_Zip || v_delim || v_Perm_Country; UTL_FILE.put_line (OUT_DATA, v_filedata); v_rec_count := v_rec_count + 1; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.put_line ( 'TDEXPORT - Bad row creation in file: ' || SQLERRM); END; END IF; END LOOP; <<finish_process>> DBMS_OUTPUT.PUT_LINE ( 'STATUS - Total Records Processed - ' || v_rec_count); UTL_FILE.FCLOSE (IN_DATA); UTL_FILE.FCLOSE (OUT_DATA); END IF; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'TDEXPORT - Unhandeled Exception Out of Phase: ' || SQLERRM); END; PROCEDURE p_applications_manager AS BEGIN p_extract_sis_user_info_core; p_extract_hr_user_info_core; p_extract_sis_user_info_custom; END; /** * Translates the Banner suffix field to a TD accepted value * * Name Suffix * SEVIS-Required Codes Code Description * I First * II Second * III Third * IV Fourth * Jr. Junior * Sr. Senior * * @param p_name_suffix Banner suffix to parse * @return rtn_td_suffix TD acceptable suffix value */ FUNCTION f_isss_translate_suffix ( p_name_suffix spbpers.spbpers_name_suffix%TYPE) RETURN VARCHAR2 AS lv_td_suffix VARCHAR2 (5); BEGIN lv_td_suffix := CASE WHEN p_name_suffix IS NULL THEN NULL WHEN TRIM (UPPER (p_name_suffix)) IN ('I', '1', '1ST') THEN 'I' WHEN TRIM (UPPER (p_name_suffix)) IN ('II', '11', '2', '2ND') THEN 'II' WHEN TRIM (UPPER (p_name_suffix)) IN ('III', '111', '3', '3RD') THEN 'III' WHEN TRIM (UPPER (p_name_suffix)) IN ('IV', '4', '4TH') THEN 'IV' WHEN TRIM (UPPER (p_name_suffix)) IN ('JR', 'J R', 'JR.', 'JUN', 'JUN.', 'JUNIOR') THEN 'Jr.' WHEN TRIM (UPPER (p_name_suffix)) IN ('SR', 'S R', 'SR.', 'SEN', 'SEN.', 'SENIOR') THEN 'Sr.' ELSE NULL END; RETURN lv_td_suffix; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Translating Name Suffix: ' || SQLERRM); RAISE; END f_isss_translate_suffix; /** * Translates the Banner level_code to a TD accepted value * * Undergraduate Level * SEVIS-Required Codes Code Description * 01 Freshman/First Year * 02 Sophomore * 03 Junior * 04 Senior * 05 Undergraduate, Unspecified * 06 Undergraduate Non-Degree Seeking * * @param p_banner_class_code Banner class code to parse * @return rtn_td_ug_level TD acceptable undergraduate level code */ FUNCTION f_isss_translate_ug_level (p_banner_class_code VARCHAR2) RETURN VARCHAR2 AS rtn_td_ug_level VARCHAR2 (5); BEGIN rtn_td_ug_level := CASE WHEN p_banner_class_code IS NULL THEN NULL WHEN p_banner_class_code = 'GR' THEN NULL WHEN p_banner_class_code = 'FR' THEN '01' WHEN p_banner_class_code = 'SO' THEN '02' WHEN p_banner_class_code = 'JR' THEN '03' WHEN p_banner_class_code = 'SR' THEN '04' ELSE '05' END; RETURN rtn_td_ug_level; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Translating Undergraduate Level: ' || SQLERRM); RAISE; END f_isss_translate_ug_level; /** * Translates the Banner degree_code to a TD accepted education level * * Education Level * SEVIS-Required Codes Code Description * 03 Associate's * 04 Bachelor's * 05 Master's * 06 Doctorate * 07 Language training * 08 High school * 09 Flight school * 10 Vocational school * 11 Other * * @param p_banner_degree_code Banner degree code to parse * @return rtn_td_education_level TD acceptable education level code */ FUNCTION f_isss_translate_ed_level (p_banner_degree_code VARCHAR2) RETURN VARCHAR2 AS const_xlbl_code CONSTANT VARCHAR2 (7) := 'TDXDEGC'; rtn_td_ed_level VARCHAR2 (2); BEGIN SELECT sorxref_edi_value sevis_education_level INTO rtn_td_ed_level FROM sorxref WHERE sorxref_xlbl_code = const_xlbl_code AND sorxref_banner_value = p_banner_degree_code; RETURN rtn_td_ed_level; EXCEPTION WHEN NO_DATA_FOUND THEN rtn_td_ed_level := NULL; DBMS_OUTPUT.PUT_LINE ( 'ERROR - No SOAXREF (TDXDEGC) value found for Banner Degree Code ' || p_banner_degree_code); WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Translating Undergraduate Level: ' || SQLERRM); RAISE; END f_isss_translate_ed_level; /** * Translates the Banner six-digit cip code to a TD accepted formatting * * @param p_banner_cip_code Banner Degree CIP Code * @return rtn_isss_cip_code TD formatted cip code */ FUNCTION f_isss_translate_cip (p_banner_cip_code VARCHAR2 DEFAULT NULL) RETURN VARCHAR2 AS rtn_cip VARCHAR2 (10); BEGIN rtn_cip := TO_CHAR (NVL (p_banner_cip_code / 10000, '00.0000'), '00.0000'); RETURN rtn_cip; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Formatting CIP CODE ' || p_banner_cip_code || ':' || SQLERRM); RAISE; END; /** * Retrieves the TD translated SEVIS-Required Code * * Visa Type * SEVIS-Required Codes Code Description * 01 F-1 * 04 F-2 * 03 J-1 * 06 J-2 * 02 M-1 * 05 M-2 * * When the visa type code is any other type, the code is returned untranslated. * * @param p_pidm student pidm for lookup * @return rtn_visa TD acceptable SEVIS visa code */ FUNCTION f_isss_visa (p_pidm gorvisa.gorvisa_pidm%TYPE) RETURN VARCHAR2 IS rtn_visa VARCHAR2 (2); BEGIN SELECT DECODE (gorvisa_vtyp_code, 'F1', '01', 'F2', '04', 'J1', '03', 'J2', '06', gorvisa_vtyp_code) INTO rtn_visa FROM gorvisa WHERE gorvisa_pidm = p_pidm AND gorvisa_seq_no = (SELECT MAX (bravo.gorvisa_seq_no) FROM gorvisa bravo WHERE bravo.gorvisa_pidm = p_pidm); RETURN rtn_visa; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving ISSS Visa: ' || SQLERRM); RAISE; END f_isss_visa; /** * Retrieves banner test scores designated as LANGUAGE_TEST1 * * @param p_pidm student pidm for lookup * @return rtn_tests TD acceptable test info block */ FUNCTION f_isss_language_test1 (p_pidm gorvisa.gorvisa_pidm%TYPE) RETURN VARCHAR2 IS rtn_tests VARCHAR2 (500) := NULL; CURSOR test_cursor IS SELECT stvtesc_desc || ' (' || stvtesc_code || '): ' || sortest_test_score test_score FROM sortest JOIN stvtesc ON sortest_tesc_code = stvtesc_code WHERE sortest_tesc_code IN ('T02', 'T07', 'T11', 'ILTL', 'ILTP', 'ILTR', 'ILTS', 'ILTW') AND sortest_pidm = p_pidm; BEGIN FOR test_iterator IN test_cursor LOOP rtn_tests := rtn_tests || test_iterator.test_score || ';'; END LOOP; RETURN rtn_tests; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving language_test_1: ' || SQLERRM); RAISE; END f_isss_language_test1; /** * Retrieves banner test scores designated as LANGUAGE_TEST2 * * @param p_pidm student pidm for lookup * @return rtn_tests TD acceptable test info block */ FUNCTION f_isss_language_test2 (p_pidm gorvisa.gorvisa_pidm%TYPE) RETURN VARCHAR2 IS rtn_tests VARCHAR2 (500) := NULL; CURSOR test_cursor IS SELECT stvtesc_desc || ' (' || stvtesc_code || '): ' || sortest_test_score test_score FROM sortest JOIN stvtesc ON sortest_tesc_code = stvtesc_code WHERE sortest_tesc_code IN ('IELI', 'A01', 'S01', 'S13') AND sortest_pidm = p_pidm; BEGIN FOR test_iterator IN test_cursor LOOP rtn_tests := rtn_tests || test_iterator.test_score || ';'; END LOOP; RETURN rtn_tests; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving language_test_1: ' || SQLERRM); RAISE; END f_isss_language_test2; /** * Retrieves the time status for a given term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_time_status time status code and description */ FUNCTION f_student_time_status ( p_pidm sfrthst.sfrthst_pidm%TYPE, p_term_code sfrthst.sfrthst_term_code%TYPE) RETURN VARCHAR2 IS rtn_time_status VARCHAR2 (50); BEGIN SELECT sfrthst_tmst_code || ' - ' || stvtmst_desc INTO rtn_time_status FROM sfrthst JOIN stvtmst ON sfrthst_tmst_code = stvtmst_code WHERE sfrthst_pidm = p_pidm AND sfrthst_tmst_date = (SELECT MAX (foxtrot.sfrthst_tmst_date) FROM sfrthst foxtrot WHERE foxtrot.sfrthst_pidm = sfrthst.sfrthst_pidm AND foxtrot.sfrthst_term_code = p_term_code); RETURN rtn_time_status; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Time Status: ' || SQLERRM); RAISE; END f_student_time_status; /** * Retrieves date from graduation application * * @param p_pidm student pidm for lookup * @param p_date date for lookup * @return rtn_exp_grad_date date for graduation */ FUNCTION f_student_grad_date ( p_pidm shrdgmr.shrdgmr_pidm%TYPE, p_date shrdgmr.shrdgmr_grad_date%TYPE DEFAULT SYSDATE) RETURN DATE IS rtn_exp_grad_date DATE; BEGIN SELECT MIN (shrdgmr_grad_date) INTO rtn_exp_grad_date FROM shrdgmr WHERE shrdgmr_pidm = p_pidm AND shrdgmr_grad_date >= SYSDATE; RETURN rtn_exp_grad_date; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Graduation Date: ' || SQLERRM); RAISE; END f_student_grad_date; /** * Retrieves academic standing * * @param p_pidm student pidm for lookup * @param p_term_code term_code for lookup * @return rtn_academic_standing most recent standing since term_code */ FUNCTION f_student_academic_standing ( p_pidm shrttrm.shrttrm_pidm%TYPE, p_term_code shrttrm.shrttrm_term_code%TYPE) RETURN VARCHAR2 IS rtn_academic_standing VARCHAR2 (128); BEGIN SELECT shrttrm_astd_code_end_of_term || ' - ' || stvastd_desc INTO rtn_academic_standing FROM shrttrm LEFT JOIN stvastd ON shrttrm_astd_code_end_of_term = stvastd_code WHERE shrttrm_pidm = p_pidm AND shrttrm_term_code = (SELECT MAX (golf.shrttrm_term_code) FROM shrttrm golf WHERE golf.shrttrm_term_code <= p_term_code AND golf.shrttrm_pidm = shrttrm.shrttrm_pidm); IF (rtn_academic_standing = ' - ') THEN RETURN NULL; END IF; RETURN rtn_academic_standing; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving Academic Standing: ' || SQLERRM); RAISE; END f_student_academic_standing; /** * Retrieves the credit count for all classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_term_total ( p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours_total INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving credit count: ' || SQLERRM); RAISE; END f_credits_term_total; /** * Retrieves the credit count for main campus classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_campus (p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours_online INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND ssbsect_camp_code = 'M' --campus_code for Logan Main Campus AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving credit count: ' || SQLERRM); RAISE; END f_credits_campus; /** * Retrieves the credit count for ieli classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_esl (p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours_ieli INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND ssbsect_subj_code = 'IELI' AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving credit count: ' || SQLERRM); RAISE; END f_credits_esl; /** * Retrieves the credit count for online classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_online (p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours_online INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND ssbsect_insm_code IN ('I', 'WB', 'XO') AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving credit count: ' || SQLERRM); RAISE; END f_credits_online; /** * Retrieves the credit count for broadcast classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_broadcast ( p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours_broadcast INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND ssbsect_insm_code IN ('T', 'XS') AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving broadcast credit count: ' || SQLERRM); RAISE; END f_credits_broadcast; /** * Retrieves the credit count for interactive broadcast classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_interactive ( p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND ssbsect_insm_code = 'R' AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving interactive broadcast credit count: ' || SQLERRM); RAISE; END f_credits_interactive; /** * Retrieves the credit count for blended classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_blended (p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND ssbsect_insm_code IN ('BB', 'BI') AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving blended credit count: ' || SQLERRM); RAISE; END f_credits_blended; /** * Retrieves the credit count for hybrid classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_hybrid (p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND ssbsect_insm_code = 'XH' AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving hybrid credit count: ' || SQLERRM); RAISE; END f_credits_hybrid; /** * Retrieves the credit count for traditional/face-to-face classes in term * * @param p_pidm student pidm for lookup * @param p_term_code term code for lookup * @return rtn_credit_count count of credits */ FUNCTION f_credits_traditional ( p_pidm sfrstcr.sfrstcr_pidm%TYPE, p_term_code sfrstcr.sfrstcr_term_code%TYPE) RETURN NUMBER IS rtn_credit_count NUMBER (7, 3); BEGIN SELECT COALESCE (SUM (sfrstcr_credit_hr), 0) credit_hours INTO rtn_credit_count FROM sfrstcr JOIN ssbsect ON ssbsect_crn = sfrstcr_crn AND ssbsect_term_code = sfrstcr_term_code WHERE sfrstcr_term_code = p_term_code AND sfrstcr_rsts_code IN (SELECT stvrsts_code FROM stvrsts WHERE stvrsts_incl_sect_enrl = 'Y') AND ssbsect_insm_code IN ('P', 'TR') AND sfrstcr_pidm = p_pidm; RETURN rtn_credit_count; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving traditional credit count: ' || SQLERRM); RAISE; END f_credits_traditional; /** * Retrieves banner employment records * * @param p_pidm student pidm for lookup * @return rtn_positions TD acceptable campus_employement info block */ FUNCTION f_isss_campus_employment (p_pidm nbrbjob.nbrbjob_pidm%TYPE) RETURN VARCHAR2 IS rtn_positions VARCHAR2 (500) := NULL; CURSOR position_cursor IS --Returns all jobs for a specific date (sysdate) SELECT nbrjobs_desc || ' for ' || ftvorgn_title || ' ' || TO_CHAR (nbrbjob_begin_date, 'DDMONYYYY') || '-' || NVL (TO_CHAR (nbrbjob_end_date, 'DDMONYYYY'), 'CURRENT') position FROM nbrbjob JOIN nbrjobs ON nbrjobs_pidm = nbrbjob_pidm AND nbrjobs_posn = nbrbjob_posn AND nbrjobs_suff = nbrbjob_suff -- Following subquery returns the only the most recent job detail record AND nbrjobs_effective_date = (SELECT MAX (nbrjobs_effective_date) FROM nbrjobs jr WHERE jr.nbrjobs_pidm = nbrbjob_pidm AND jr.nbrjobs_posn = nbrbjob_posn AND jr.nbrjobs_suff = nbrbjob_suff AND jr.nbrjobs_status = 'A' AND jr.nbrjobs_effective_date <= SYSDATE) -- Join to FTVORGN for department name, if DPCODE is needed, you can remove the join and just use nbrjobs_orgn_code_ts JOIN ftvorgn ON ftvorgn_orgn_code = nbrjobs_orgn_code_ts AND ftvorgn_nchg_date >= SYSDATE AND ftvorgn_eff_date <= SYSDATE WHERE nbrbjob_begin_date <= SYSDATE AND NVL (nbrbjob_end_date, SYSDATE + 365) >= SYSDATE AND nbrbjob_pidm = p_pidm ORDER BY nbrbjob_begin_date DESC; BEGIN FOR position_iterator IN position_cursor LOOP rtn_positions := rtn_positions || position_iterator.position || ';'; END LOOP; RETURN rtn_positions; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving campus_employment: ' || SQLERRM); RAISE; END f_isss_campus_employment; /** * Retrieves banner employment records * * @param p_pidm student pidm for lookup * @return rtn_grad_assist_fte FTE percentage of Graduate Assitantship positions */ FUNCTION f_isss_grad_assist_fte (p_pidm nbrbjob.nbrbjob_pidm%TYPE) RETURN VARCHAR2 IS rtn_grad_assist_fte VARCHAR2 (500) := NULL; BEGIN SELECT SUM (nbrjobs_fte) grad_assist_fte INTO rtn_grad_assist_fte FROM nbrbjob JOIN nbrjobs ON nbrjobs_pidm = nbrbjob_pidm AND nbrjobs_posn = nbrbjob_posn AND nbrjobs_suff = nbrbjob_suff -- Following subquery returns the only the most recent job detail record AND nbrjobs_effective_date = (SELECT MAX (nbrjobs_effective_date) FROM nbrjobs jr WHERE jr.nbrjobs_pidm = nbrbjob_pidm AND jr.nbrjobs_posn = nbrbjob_posn AND jr.nbrjobs_suff = nbrbjob_suff AND jr.nbrjobs_status = 'A' AND jr.nbrjobs_effective_date <= SYSDATE) WHERE nbrbjob_begin_date <= SYSDATE AND NVL (nbrbjob_end_date, SYSDATE + 0) >= SYSDATE --no offset: depending on how you filter the data, you could end up summing up the fte for two GA positions that are back to back (but not necesarrily at the same time). AND SUBSTR (nbrbjob_posn, 1, 3) = 'P03' AND nbrbjob_pidm = p_pidm; RETURN rtn_grad_assist_fte; EXCEPTION WHEN NO_DATA_FOUND THEN RETURN NULL; WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception Retrieving grad_assist_fte: ' || SQLERRM); RAISE; END f_isss_grad_assist_fte; /** * Retrieves USU Specific Passphrase * * @param p_anum student a-number for lookup * @return rtn_pass_phrase_exists Y/N indicator of passphrase existence */ FUNCTION f_usu_passphrase (p_anum spriden.spriden_id%TYPE) RETURN VARCHAR2 IS lv_passphrase VARCHAR2 (1); BEGIN SELECT MAX ('Y') INTO lv_passphrase FROM zubpphrase WHERE zubldap_id = p_anum; lv_passphrase := NVL (lv_passphrase, 'N'); RETURN lv_passphrase; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE ( 'ERROR - Unhandeled Exception checking USU passphrase: ' || SQLERRM); RAISE; END f_usu_passphrase; /** * Extracts International Student data for use by Terra Dotta ISSS */ PROCEDURE p_isss_extract_sis_user_info ( p_override_term VARCHAR2 DEFAULT NULL) IS v_delim CONSTANT VARCHAR2 (1) := CHR (124); --ASCII pipe character lv_opt_duration CONSTANT INTEGER := 1217; --PROCESSING VARIABLES id UTL_FILE.file_type; filedata VARCHAR2 (20000); CURSOR student_cur IS (SELECT spriden_pidm pidm, spriden_id UUUID, SUBSTR (spriden_last_name, 1, 50) LAST_NAME, SUBSTR (spriden_first_name, 1, 50) FIRST_NAME, SUBSTR (spriden_mi, 1, 50) MIDDLE_NAME, SUBSTR (goremal_email_address, 1, 250) EMAIL, TO_CHAR (spbpers_birth_date, 'mm/dd/yyyy') DOB, DECODE (spbpers_sex, 'M', 'M', 'F', 'F', 'O') GENDER, COALESCE (spbpers_confid_ind, 'N') CONFIDENTIALITY_IND, spbpers_name_suffix banner_suffix, (SELECT stvnatn_sevis_equiv FROM stvnatn WHERE stvnatn_code = gobintl_natn_code_birth) BIRTH_COUNTRY, (SELECT stvnatn_sevis_equiv FROM stvnatn WHERE stvnatn_code = gobintl_natn_code_legal) CITIZENSHIP_COUNTRY, (SELECT stvnatn_sevis_equiv FROM stvnatn WHERE stvnatn_code = gobintl_natn_code_legal) PERM_RESIDENT_COUNTRY, spriden_id STUDENT_ID, spbpers_mrtl_code banner_mrtl_code, spbpers_pref_first_name PREFERRED_NAME, spbpers_gndr_code PREFERRED_GENDER, CASE WHEN gobintl_spon_code IS NOT NULL THEN gobintl_spon_code || ' - ' || stvspon_desc ELSE NULL END CUSTOM3, --sponspr gobintl_spouse_ind CUSTOM4, --spouse gobintl_child_number CUSTOM5, --children CASE WHEN spbpers_citz_code IS NOT NULL THEN spbpers_citz_code || ' - ' || stvcitz_desc ELSE NULL END CUSTOM8 --citizenship FROM (SELECT DISTINCT saradap_pidm pidm FROM saradap --admissions records WHERE saradap_term_code_entry IN (SELECT term_code FROM TABLE (F_LIST_ACTIVETERMS)) UNION SELECT DISTINCT sfrstcr_pidm pidm FROM sfrstcr --registration records WHERE sfrstcr_term_code IN (SELECT term_code FROM TABLE (F_LIST_ACTIVETERMS)) UNION (SELECT shrdgmr_pidm FROM shrdgmr WHERE shrdgmr_grad_date >= (SYSDATE - lv_opt_duration))) population JOIN spriden ON spriden_pidm = pidm AND spriden_change_ind IS NULL LEFT JOIN spbpers ON spbpers_pidm = pidm LEFT JOIN goremal ON goremal_pidm = pidm AND goremal_status_ind = 'A' AND goremal_preferred_ind = 'Y' LEFT JOIN gobintl ON gobintl_pidm = pidm LEFT JOIN stvspon ON gobintl_spon_code = stvspon_code LEFT JOIN saradap ON saradap_pidm = pidm AND saradap_appl_date = (SELECT MAX (bravo.saradap_appl_date) FROM saradap bravo WHERE bravo.saradap_pidm = saradap.saradap_pidm) LEFT JOIN stvcitz ON spbpers_citz_code = stvcitz_code WHERE SARADAP_RESD_CODE = 'I' OR GOBINTL_NATN_CODE_LEGAL <> 'US'); cur INTEGER; ret INTEGER; --FILE PROCESSING VARIABLES v_directory VARCHAR2 (30) := gv_directory_name; v_file_name VARCHAR2 (30) := 'sis_user_info_isss.txt'; --EXTRACT VARIABLES --lv_UUUID spriden.spriden_id%TYPE; --lv_LAST_NAME VARCHAR2 (50); --lv_FIRST_NAME VARCHAR2 (50); --lv_MIDDLE_NAME VARCHAR2 (50); --lv_EMAIL VARCHAR2 (250); --lv_DOB DATE; --lv_GENDER VARCHAR2 (1); --lv_CONFIDENTIALITY_IND VARCHAR2 (1); lv_HR_FLAG VARCHAR2 (1) := 'N'; --TODO: work with <NAME> to determine HR flag lv_SUFFIX VARCHAR2 (10); lv_VISA_TYPE VARCHAR2 (2); lv_MAJOR_CIP VARCHAR2 (7); lv_SECOND_MAJOR_CIP VARCHAR2 (7); lv_MINOR_CIP VARCHAR2 (7); lv_EDUCATION_LEVEL VARCHAR2 (2); --lv_BIRTH_COUNTRY VARCHAR2 (2); --lv_CITIZENSHIP_COUNTRY VARCHAR2 (2); lv_FOREIGN_PHONE_COUNTRY_CODE VARCHAR2 (4) := NULL; lv_FOREIGN_PHONE VARCHAR2 (20) := NULL; lv_US_PHONE VARCHAR2 (10); --lv_PERM_RESIDENT_COUNTRY VARCHAR2 (2); lv_US_ADDRESS_LINE1 VARCHAR2 (75); lv_US_ADDRESS_LINE2 VARCHAR2 (75); lv_US_ADDRESS_CITY VARCHAR2 (50); lv_US_ADDRESS_STATE VARCHAR2 (3); lv_US_ADDRESS_ZIP VARCHAR2 (30); lv_FOREIGN_ADDRESS_LINE1 VARCHAR2 (75); lv_FOREIGN_ADDRESS_LINE2 VARCHAR2 (75); lv_FOREIGN_ADDRESS_CITY VARCHAR2 (50); lv_FOREIGN_ADDRESS_PROVINCE VARCHAR2 (3); lv_FOREIGN_ADDRESS_POSTALCODE VARCHAR2 (30); lv_FOREIGN_ADDRESS_COUNTRY VARCHAR2 (5); lv_US_MAILING_ADDRESS_LINE1 VARCHAR2 (75); lv_US_MAILING_ADDRESS_LINE2 VARCHAR2 (75); lv_US_MAILING_ADDRESS_CITY VARCHAR2 (50); lv_US_MAILING_ADDRESS_STATE VARCHAR2 (3); lv_US_MAILING_ADDRESS_ZIP VARCHAR2 (30); lv_MAJOR1_DEPT VARCHAR2 (500); lv_MAJOR2_DEPT VARCHAR2 (500) := NULL; lv_MAJOR1_DESC VARCHAR2 (500); lv_MAJOR2_DESC VARCHAR2 (500); lv_MINOR_DEPT VARCHAR2 (500) := NULL; lv_MINOR_DESC VARCHAR2 (500); lv_ENROLL_COLLEGE VARCHAR2 (500); --lv_STUDENT_ID VARCHAR2 (500); lv_ADVISOR_NAME VARCHAR2 (500); lv_ADVISOR_EMAIL VARCHAR2 (500); lv_LANGUAGE_TEST1 VARCHAR2 (500); lv_LANGUAGE_TEST2 VARCHAR2 (500); lv_CREDITS_TOTAL NUMBER (11, 3); lv_CREDITS_CAMPUS NUMBER (11, 3); lv_CREDITS_ONLINE NUMBER (11, 3); lv_CREDITS_ESL NUMBER (11, 3); lv_FULL_TIME VARCHAR2 (500); lv_CREDITS_TERM VARCHAR2 (6) := CASANDRA.F_FETCH_TERM; lv_CREDITS_EARNED NUMBER (11, 3); lv_UNDERGRAD_LEVEL VARCHAR2 (2); lv_APPLIED_GRADUATION VARCHAR2 (1); lv_GRAD_DATE DATE; lv_ACADEMIC_DEFICIENCY VARCHAR2 (500); lv_FINANCIAL_HOLD VARCHAR2 (64); lv_CONDUCT_HOLD VARCHAR2 (64); lv_CUM_GPA shrlgpa.SHRLGPA_GPA%TYPE; lv_ADMIT_TERM VARCHAR2 (500); lv_MARITAL_STATUS VARCHAR2 (500); --lv_PREFERRED_NAME VARCHAR2 (500); --lv_PREFERRED_GENDER VARCHAR2 (500); lv_CUSTOM1 VARCHAR2 (500); --admit site lv_CUSTOM2 VARCHAR2 (500); --campus employment --lv_CUSTOM3 VARCHAR2 (500); --lv_CUSTOM4 VARCHAR2 (500); --lv_CUSTOM5 VARCHAR2 (500); lv_CUSTOM6 VARCHAR2 (500); --admit type lv_CUSTOM7 VARCHAR2 (500); --admit residence --lv_CUSTOM8 VARCHAR2 (500); lv_CUSTOM9 VARCHAR2 (500); --leave of absense lv_CUSTOM10 VARCHAR2 (1); --pass phrase lv_CUSTOM11 VARCHAR2 (500); --graduate assistant FTE lv_CUSTOM12 VARCHAR2 (500); --credits broadcast lv_CUSTOM13 VARCHAR2 (500); --credits interactive broadcast lv_CUSTOM14 VARCHAR2 (500); --credits blended lv_CUSTOM15 VARCHAR2 (500); --credits hybrid lv_CUSTOM16 VARCHAR2 (500); --credits traditional --lv_CUSTOM17 VARCHAR2 (500); --lv_CUSTOM18 VARCHAR2 (500); --lv_CUSTOM19 VARCHAR2 (500); --lv_CUSTOM20 VARCHAR2 (500); --lv_CUSTOM21 VARCHAR2 (500); --lv_CUSTOM22 VARCHAR2 (500); --lv_CUSTOM23 VARCHAR2 (500); --lv_CUSTOM24 VARCHAR2 (500); --lv_CUSTOM25 VARCHAR2 (500); --processing variables lv_term_code VARCHAR2 (6); --lv_pidm spriden.spriden_pidm%TYPE; lv_country_code VARCHAR2 (4); lv_banner_line3 VARCHAR2 (64); lv_banner_country VARCHAR2 (64); lv_banner_level_code VARCHAR2 (64); lv_banner_class_code VARCHAR2 (64); lv_banner_degree_code VARCHAR2 (64); lv_banner_exp_grad_date DATE; lv_banner_app_grad_date DATE; BEGIN id := UTL_FILE.fopen (v_directory, v_file_name, 'w', 20000); -- HEADER RECORD filedata := 'UUUID' || v_delim || 'LAST_NAME' || v_delim || 'FIRST_NAME' || v_delim || 'MIDDLE_NAME' || v_delim || 'EMAIL' || v_delim || 'DOB' || v_delim || 'GENDER' || v_delim || 'CONFIDENTIALITY_IND' || v_delim || 'HR_FLAG' || v_delim || 'SUFFIX' || v_delim || 'VISA_TYPE' || v_delim || 'MAJOR_CIP' || v_delim || 'SECOND_MAJOR_CIP' || v_delim || 'MINOR_CIP' || v_delim || 'EDUCATION_LEVEL' || v_delim || 'BIRTH_COUNTRY' || v_delim || 'CITIZENSHIP_COUNTRY' || v_delim || 'FOREIGN_PHONE_COUNTRY_CODE' || v_delim || 'FOREIGN_PHONE' || v_delim || 'US_PHONE' || v_delim || 'PERM_RESIDENT_COUNTRY' || v_delim || 'US_ADDRESS_LINE1' || v_delim || 'US_ADDRESS_LINE2' || v_delim || 'US_ADDRESS_CITY' || v_delim || 'US_ADDRESS_STATE' || v_delim || 'US_ADDRESS_ZIP' || v_delim || 'FOREIGN_ADDRESS_LINE1' || v_delim || 'FOREIGN_ADDRESS_LINE2' || v_delim || 'FOREIGN_ADDRESS_CITY' || v_delim || 'FOREIGN_ADDRESS_PROVINCE' || v_delim || 'FOREIGN_ADDRESS_POSTALCODE' || v_delim || 'FOREIGN_ADDRESS_COUNTRY' || v_delim || 'US_MAILING_ADDRESS_LINE1' || v_delim || 'US_MAILING_ADDRESS_LINE2' || v_delim || 'US_MAILING_ADDRESS_CITY' || v_delim || 'US_MAILING_ADDRESS_STATE' || v_delim || 'US_MAILING_ADDRESS_ZIP' || v_delim || 'MAJOR1_DEPT' || v_delim || 'MAJOR2_DEPT' || v_delim || 'MAJOR1_DESC' || v_delim || 'MAJOR2_DESC' || v_delim || 'MINOR_DEPT' || v_delim || 'MINOR_DESC' || v_delim || 'ENROLL_COLLEGE' || v_delim || 'STUDENT_ID' || v_delim || 'ADVISOR_NAME' || v_delim || 'ADVISOR_EMAIL' || v_delim || 'LANGUAGE_TEST1' || v_delim || 'LANGUAGE_TEST2' || v_delim || 'CREDITS_TOTAL' || v_delim || 'CREDITS_CAMPUS' || v_delim || 'CREDITS_ONLINE' || v_delim || 'CREDITS_ESL' || v_delim || 'FULL_TIME' || v_delim || 'CREDITS_TERM' || v_delim || 'CREDITS_EARNED' || v_delim || 'UNDERGRAD_LEVEL' || v_delim || 'APPLIED_GRADUATION' || v_delim || 'GRAD_DATE' || v_delim || 'ACADEMIC_DEFICIENCY' || v_delim || 'FINANCIAL_HOLD' || v_delim || 'CONDUCT_HOLD' || v_delim || 'CUM_GPA' || v_delim || 'ADMIT_TERM' || v_delim || 'MARITAL_STATUS' || v_delim || 'PREFERRED_NAME' || v_delim || 'PREFERRED_GENDER' || v_delim || 'CUSTOM1' || v_delim || 'CUSTOM2' || v_delim || 'CUSTOM3' || v_delim || 'CUSTOM4' || v_delim || 'CUSTOM5' || v_delim || 'CUSTOM6' || v_delim || 'CUSTOM7' || v_delim || 'CUSTOM8' || v_delim || 'CUSTOM9' || v_delim || 'CUSTOM10' || v_delim || 'CUSTOM11' || v_delim || 'CUSTOM12' || v_delim || 'CUSTOM13' || v_delim || 'CUSTOM14' || v_delim || 'CUSTOM15' || v_delim || 'CUSTOM16' || v_delim || 'CUSTOM17' || v_delim || 'CUSTOM18' || v_delim || 'CUSTOM19' || v_delim || 'CUSTOM20' || v_delim || 'CUSTOM21' || v_delim || 'CUSTOM22' || v_delim || 'CUSTOM23' || v_delim || 'CUSTOM24' || v_delim || 'CUSTOM25'; --output header record UTL_FILE.put_line (id, filedata); --TERM CODE LOGIC IF p_override_term IS NULL THEN lv_term_code := CASANDRA.F_FETCH_TERM; ELSE lv_term_code := p_override_term; END IF; FOR student_rec IN student_cur LOOP BEGIN lv_SUFFIX := f_isss_translate_suffix (student_rec.banner_suffix); lv_VISA_TYPE := f_isss_visa (student_rec.pidm); lv_MARITAL_STATUS := F_GET_DESC ('STVMRTL', student_rec.banner_mrtl_code); --SEVIS Local Address p_student_address (student_rec.pidm, 'SL', NULL, lv_US_ADDRESS_LINE1, lv_US_ADDRESS_LINE2, lv_banner_line3, lv_US_ADDRESS_CITY, lv_US_ADDRESS_STATE, lv_US_ADDRESS_ZIP, lv_banner_country); --SEVIS Foreign Address p_student_address (student_rec.pidm, 'SF', NULL, lv_FOREIGN_ADDRESS_LINE1, lv_FOREIGN_ADDRESS_LINE2, lv_banner_line3, lv_FOREIGN_ADDRESS_CITY, lv_FOREIGN_ADDRESS_PROVINCE, lv_FOREIGN_ADDRESS_POSTALCODE, lv_banner_country); BEGIN --foreign address country lookup SELECT stvnatn_sevis_equiv INTO lv_FOREIGN_ADDRESS_COUNTRY FROM stvnatn WHERE stvnatn_code = lv_banner_country; EXCEPTION WHEN NO_DATA_FOUND THEN lv_FOREIGN_ADDRESS_COUNTRY := NULL; END; --Student Mailing Address p_student_address (student_rec.pidm, 'MA', NULL, lv_US_MAILING_ADDRESS_LINE1, lv_US_MAILING_ADDRESS_LINE2, lv_banner_line3, lv_US_MAILING_ADDRESS_CITY, lv_US_MAILING_ADDRESS_STATE, lv_US_MAILING_ADDRESS_ZIP, lv_banner_country); lv_US_PHONE := SUBSTR ( f_student_phone (p_pidm => student_rec.pidm, p_tele_code => 'MA', p_country_code => lv_country_code), 1, 10); lv_FOREIGN_PHONE := SUBSTR ( f_student_phone ( p_pidm => student_rec.pidm, p_tele_code => 'SF', p_country_code => lv_FOREIGN_PHONE_COUNTRY_CODE), 1, 10); --STUDENT CIRRICULUM BLOCK BEGIN SELECT sgbstdn_levl_code banner_level_code, f_class_calc_fnc (PIDM => sgbstdn_pidm, LEVL_CODE => sgbstdn_levl_code, TERM_CODE => lv_term_code) class_code, CASE WHEN sgbstdn_coll_code_1 IS NOT NULL THEN sgbstdn_coll_code_1 || ' - ' || stvcoll_desc ELSE NULL END enroll_college, CASE WHEN sgbstdn_dept_code IS NOT NULL THEN sgbstdn_dept_code || ' - ' || stvdept_desc ELSE NULL END MAJOR1_DEPT, sgbstdn_degc_code_1 degree_code, --stvdegc_desc degree_desc, CASE WHEN sgbstdn_majr_code_1 IS NOT NULL THEN sgbstdn_majr_code_1 || ' - ' || major1.stvmajr_desc ELSE NULL END major1_desc, major1.stvmajr_cipc_code major1_cipc, CASE WHEN sgbstdn_majr_code_2 IS NOT NULL THEN sgbstdn_majr_code_2 || ' - ' || major2.stvmajr_desc ELSE NULL END major2_desc, major2.stvmajr_cipc_code major2_cipc, CASE WHEN sgbstdn_majr_code_minr_1 IS NOT NULL THEN sgbstdn_majr_code_minr_1 || ' - ' || minor.stvmajr_desc ELSE NULL END minor_desc, minor.stvmajr_cipc_code minor_cpic, CASE WHEN sgbstdn_leav_code IS NOT NULL THEN sgbstdn_leav_code || ' - ' || stvleav_desc ELSE NULL END leave_reason, sgbstdn_exp_grad_date INTO lv_banner_level_code, lv_banner_class_code, lv_ENROLL_COLLEGE, lv_MAJOR1_DEPT, lv_banner_degree_code, lv_MAJOR1_DESC, lv_MAJOR_CIP, lv_MAJOR2_DESC, lv_SECOND_MAJOR_CIP, lv_MINOR_DESC, lv_MINOR_CIP, lv_CUSTOM9, --leave_reason lv_banner_exp_grad_date FROM sgbstdn LEFT JOIN stvcoll ON sgbstdn_coll_code_1 = stvcoll_code LEFT JOIN stvdept ON sgbstdn_dept_code = stvdept_code LEFT JOIN stvdegc ON sgbstdn_degc_code_1 = stvdegc_code LEFT JOIN stvmajr major1 ON sgbstdn_majr_code_1 = major1.stvmajr_code LEFT JOIN stvmajr major2 ON sgbstdn_majr_code_2 = major2.stvmajr_code LEFT JOIN stvmajr minor ON sgbstdn_majr_code_minr_1 = minor.stvmajr_code LEFT JOIN stvleav ON sgbstdn_leav_code = stvleav_code WHERE sgbstdn_term_code_eff = (SELECT MAX (delta.sgbstdn_term_code_eff) FROM sgbstdn delta WHERE delta.sgbstdn_pidm = sgbstdn.sgbstdn_pidm AND delta.sgbstdn_term_code_eff <= lv_term_code) AND sgbstdn_pidm = student_rec.pidm; lv_UNDERGRAD_LEVEL := f_isss_translate_ug_level ( p_banner_class_code => lv_banner_class_code); lv_EDUCATION_LEVEL := f_isss_translate_ed_level ( p_banner_degree_code => lv_banner_degree_code); EXCEPTION WHEN NO_DATA_FOUND THEN lv_banner_level_code := NULL; lv_banner_class_code := NULL; lv_ENROLL_COLLEGE := NULL; lv_MAJOR1_DEPT := NULL; lv_banner_degree_code := NULL; lv_MAJOR1_DESC := NULL; lv_MAJOR_CIP := NULL; lv_MAJOR2_DESC := NULL; lv_SECOND_MAJOR_CIP := NULL; lv_MINOR_DESC := NULL; lv_MINOR_CIP := NULL; lv_CUSTOM9 := NULL; lv_UNDERGRAD_LEVEL := NULL; lv_EDUCATION_LEVEL := NULL; lv_banner_exp_grad_date := NULL; DBMS_OUTPUT.put_line ( 'INFO: No student record found for ' || student_rec.UUUID); END; --STUDENT CUMULATIVE GPA BLOCK BEGIN SELECT shrlgpa_hours_earned, shrlgpa_gpa INTO lv_CREDITS_EARNED, lv_CUM_GPA FROM shrlgpa WHERE shrlgpa_gpa_type_ind = 'O' --overall credits AND shrlgpa_levl_code = lv_banner_level_code AND shrlgpa_pidm = student_rec.pidm; EXCEPTION WHEN NO_DATA_FOUND THEN lv_CREDITS_EARNED := NULL; lv_CUM_GPA := NULL; DBMS_OUTPUT.put_line ( 'INFO: No student cumulative gpa found for ' || student_rec.UUUID); END; --STUDENT ACADEMICS BLOCK BEGIN lv_banner_app_grad_date := f_student_grad_date (p_pidm => student_rec.pidm); --GRADUATION CALCULATIONS CASE WHEN lv_banner_app_grad_date IS NOT NULL THEN lv_GRAD_DATE := lv_banner_app_grad_date; lv_APPLIED_GRADUATION := 'Y'; ELSE lv_APPLIED_GRADUATION := 'N'; lv_GRAD_DATE := lv_banner_exp_grad_date; END CASE; lv_LANGUAGE_TEST1 := f_isss_language_test1 (student_rec.pidm); lv_LANGUAGE_TEST2 := f_isss_language_test2 (student_rec.pidm); lv_CREDITS_TOTAL := f_credits_term_total (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_CREDITS_CAMPUS := f_credits_campus (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_CREDITS_ESL := f_credits_esl (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_CREDITS_ONLINE := f_credits_online (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_CUSTOM12 := f_credits_broadcast (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_CUSTOM13 := f_credits_interactive (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_CUSTOM14 := f_credits_blended (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_CUSTOM15 := f_credits_hybrid (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_CUSTOM16 := f_credits_traditional (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_FULL_TIME := f_student_time_status (p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_ACADEMIC_DEFICIENCY := f_student_academic_standing ( p_pidm => student_rec.pidm, p_term_code => lv_term_code); lv_FINANCIAL_HOLD := f_holds_financial (p_pidm => student_rec.pidm); lv_CONDUCT_HOLD := f_holds_conduct (p_pidm => student_rec.pidm); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.put_line ( 'ERROR: Unhandeled Exception in Academics Block for : ' || student_rec.pidm); RAISE; END; --STUDENT ADMISSIONS BLOCK BEGIN SELECT saradap_term_code_entry admit_term, CASE WHEN saradap_site_code IS NOT NULL THEN saradap_site_code || ' - ' || stvsite_desc ELSE NULL END admit_site, CASE WHEN saradap_admt_code IS NOT NULL THEN saradap_admt_code || ' - ' || stvadmt_desc ELSE NULL END admit_type, CASE WHEN saradap_resd_code IS NOT NULL THEN saradap_resd_code || ' - ' || stvresd_desc ELSE NULL END admit_residence INTO lv_ADMIT_TERM, lv_CUSTOM1, lv_CUSTOM6, lv_CUSTOM7 FROM saradap LEFT JOIN stvsite ON saradap_site_code = stvsite_code LEFT JOIN stvadmt ON saradap_admt_code = stvadmt_code LEFT JOIN stvresd ON saradap_resd_code = stvresd_code WHERE saradap_appl_date = (SELECT MAX (india.saradap_appl_date) FROM saradap india WHERE india.saradap_appl_date <= SYSDATE AND india.saradap_pidm = saradap.saradap_pidm) AND saradap_pidm = student_rec.pidm FETCH FIRST ROW ONLY; EXCEPTION WHEN NO_DATA_FOUND THEN lv_ADMIT_TERM := NULL; lv_CUSTOM1 := NULL; lv_CUSTOM6 := NULL; lv_CUSTOM7 := NULL; DBMS_OUTPUT.put_line ( 'INFO: No admissions record found for ' || student_rec.UUUID); END; --STUDENT ADVISOR BLOCK BEGIN SELECT spriden_id || ' - ' || COALESCE (spbpers_pref_first_name, spriden_first_name) || ' ' || spriden_last_name advisor_name, goremal_email_address advisor_email INTO lv_ADVISOR_NAME, lv_ADVISOR_EMAIL FROM sgradvr JOIN spriden ON spriden_pidm = sgradvr_advr_pidm AND spriden_change_ind IS NULL LEFT JOIN goremal ON goremal_pidm = sgradvr_advr_pidm AND goremal_status_ind = 'A' AND goremal_preferred_ind = 'Y' LEFT JOIN spbpers ON spbpers_pidm = sgradvr_advr_pidm WHERE sgradvr_term_code_eff = (SELECT MAX (sgradvr_term_code_eff) FROM sgradvr juliett WHERE juliett.sgradvr_prim_ind = 'Y' AND juliett.sgradvr_pidm = sgradvr.sgradvr_pidm) AND sgradvr_prim_ind = 'Y' AND sgradvr_pidm = student_rec.pidm; EXCEPTION WHEN TOO_MANY_ROWS THEN lv_ADVISOR_NAME := NULL; lv_ADVISOR_EMAIL := NULL; DBMS_OUTPUT.put_line ( 'INFO: Multiple advisors found for ' || student_rec.UUUID); WHEN NO_DATA_FOUND THEN lv_ADVISOR_NAME := NULL; lv_ADVISOR_EMAIL := NULL; DBMS_OUTPUT.put_line ( 'INFO: No advisor record found for ' || student_rec.UUUID); END; --HR BLOCK BEGIN lv_CUSTOM2 := f_isss_campus_employment (student_rec.pidm); lv_CUSTOM11 := f_isss_grad_assist_fte (student_rec.pidm); EXCEPTION WHEN OTHERS THEN lv_CUSTOM2 := NULL; lv_CUSTOM11 := NULL; DBMS_OUTPUT.put_line ( 'ERROR: Unhandeled Exception in HR Block for : ' || student_rec.UUUID); END; lv_CUSTOM10 := f_usu_passphrase (student_rec.UUUID); filedata := student_rec.UUUID || v_delim || student_rec.LAST_NAME || v_delim || student_rec.FIRST_NAME || v_delim || student_rec.MIDDLE_NAME || v_delim || student_rec.EMAIL || v_delim || student_rec.DOB || v_delim || student_rec.GENDER || v_delim || student_rec.CONFIDENTIALITY_IND || v_delim || lv_HR_FLAG || v_delim || lv_SUFFIX || v_delim || lv_VISA_TYPE || v_delim || f_isss_translate_cip (lv_MAJOR_CIP) || v_delim || f_isss_translate_cip (lv_SECOND_MAJOR_CIP) || v_delim || f_isss_translate_cip (lv_MINOR_CIP) || v_delim || lv_EDUCATION_LEVEL || v_delim || student_rec.BIRTH_COUNTRY || v_delim || student_rec.CITIZENSHIP_COUNTRY || v_delim || lv_FOREIGN_PHONE_COUNTRY_CODE || v_delim || lv_FOREIGN_PHONE || v_delim || lv_US_PHONE || v_delim || student_rec.PERM_RESIDENT_COUNTRY || v_delim || lv_US_ADDRESS_LINE1 || v_delim || lv_US_ADDRESS_LINE2 || v_delim || lv_US_ADDRESS_CITY || v_delim || lv_US_ADDRESS_STATE || v_delim || lv_US_ADDRESS_ZIP || v_delim || lv_FOREIGN_ADDRESS_LINE1 || v_delim || lv_FOREIGN_ADDRESS_LINE2 || v_delim || lv_FOREIGN_ADDRESS_CITY || v_delim || lv_FOREIGN_ADDRESS_PROVINCE || v_delim || lv_FOREIGN_ADDRESS_POSTALCODE || v_delim || lv_FOREIGN_ADDRESS_COUNTRY || v_delim || lv_US_MAILING_ADDRESS_LINE1 || v_delim || lv_US_MAILING_ADDRESS_LINE2 || v_delim || lv_US_MAILING_ADDRESS_CITY || v_delim || lv_US_MAILING_ADDRESS_STATE || v_delim || lv_US_MAILING_ADDRESS_ZIP || v_delim || lv_MAJOR1_DEPT || v_delim || lv_MAJOR2_DEPT || v_delim || lv_MAJOR1_DESC || v_delim || lv_MAJOR2_DESC || v_delim || lv_MINOR_DEPT || v_delim || lv_MINOR_DESC || v_delim || lv_ENROLL_COLLEGE || v_delim || student_rec.STUDENT_ID || v_delim || lv_ADVISOR_NAME || v_delim || lv_ADVISOR_EMAIL || v_delim || lv_LANGUAGE_TEST1 || v_delim || lv_LANGUAGE_TEST2 || v_delim || lv_CREDITS_TOTAL || v_delim || lv_CREDITS_CAMPUS || v_delim || lv_CREDITS_ONLINE || v_delim || lv_CREDITS_ESL || v_delim || lv_FULL_TIME || v_delim || lv_CREDITS_TERM || v_delim || lv_CREDITS_EARNED || v_delim || lv_UNDERGRAD_LEVEL || v_delim || lv_APPLIED_GRADUATION || v_delim || lv_GRAD_DATE || v_delim || lv_ACADEMIC_DEFICIENCY || v_delim || lv_FINANCIAL_HOLD || v_delim || lv_CONDUCT_HOLD || v_delim || lv_CUM_GPA || v_delim || lv_ADMIT_TERM || v_delim || lv_MARITAL_STATUS || v_delim || student_rec.PREFERRED_NAME || v_delim || student_rec.PREFERRED_GENDER || v_delim || lv_CUSTOM1 || v_delim || lv_CUSTOM2 || v_delim || student_rec.CUSTOM3 || v_delim || student_rec.CUSTOM4 || v_delim || student_rec.CUSTOM5 || v_delim || lv_CUSTOM6 || v_delim || lv_CUSTOM7 || v_delim || student_rec.CUSTOM8 || v_delim || lv_CUSTOM9 || v_delim || lv_CUSTOM10 || v_delim || lv_CUSTOM11 || v_delim || lv_CUSTOM12 || v_delim || lv_CUSTOM13 || v_delim || lv_CUSTOM14 || v_delim || lv_CUSTOM15 || v_delim || lv_CUSTOM16 || v_delim || NULL || v_delim || NULL || v_delim || NULL || v_delim || NULL || v_delim || NULL || v_delim || NULL || v_delim || NULL || v_delim || NULL || v_delim || NULL; UTL_FILE.put_line (id, filedata); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.put_line ( 'TDEXPORT - Bad row creation in file: ' || SQLERRM); END; END LOOP; UTL_FILE.fclose (id); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.put_line ( 'TDEXPORT - UNKNOWN ISSS ERROR: ' || SQLERRM); END; END z_terra_dotta_interface; /
<filename>Sln.MySQLCRUD/MySQLRepository/MySQLScripts.sql  --SP: CREATE DEFINER=`root`@`localhost` PROCEDURE `SPGetbasicinfo`(IN cid INT) BEGIN SELECT * FROM basicinfo WHERE basicinfoid = cid; END --Call MySQL SP CALL SPGetbasicinfo (3); -- Need to Create SP for CRUD by if numbering -- Table `devtest`.`basicinfo` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `devtest`.`basicinfo` ( `basicinfoid` BIGINT(20) NOT NULL, `firstname` LONGTEXT NULL DEFAULT NULL, `lastname` LONGTEXT NULL DEFAULT NULL, `dateofbirth` DATETIME(6) NOT NULL, `city` LONGTEXT NULL DEFAULT NULL, `country` LONGTEXT NULL DEFAULT NULL, `mobileno` LONGTEXT NULL DEFAULT NULL, `nid` LONGTEXT NULL DEFAULT NULL, `email` LONGTEXT NULL DEFAULT NULL, `status` INT(11) NOT NULL, PRIMARY KEY (`basicinfoid`)) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8;
<gh_stars>0 -- http://www.postgresql.org/ -- This file contains a fully normalized, indexed and functioning backend implementation -- for the izzum statemachine for a postgresql database -- this database can be used with the izzum\statemachine\persistence\PDO adapter with -- a correct dsn to connect to postgres. -- http://php.net/manual/en/ref.pdo-pgsql.php -- each table has extensive comments on what data they contain and what it means -- and also on how to use them from the application code. -- what should you do? -- define the machines in statemachine_machines. -- define the states for the machines in statemachine_states. -- define the transitions between states for the machines in statemachine_transitions -- this will also define the rules and commands for those transitions. -- read the definition for the statemachine via a join on statemachine_transitions and statemachine_states. -- add an entity to the persisten storage in statemachine_entities. -- do this via application logic (see table comments). -- an entity_id is the unique id from your application specific domain model you wish to add stateful behaviour to. -- retrieve the current state for an entity in a machine. -- set the new current state for an entity in a machine. -- write history records for entities and their transitions in a machine in statemachine_history. -- do this via application logic (see table comments, you can use the entities or history table, or both). DROP TABLE IF EXISTS statemachine_history; DROP TABLE IF EXISTS statemachine_entities; DROP TABLE IF EXISTS statemachine_transitions; DROP TABLE IF EXISTS statemachine_states; DROP TABLE IF EXISTS statemachine_machines; DROP SEQUENCE IF EXISTS s_statemachine_history_id; -- machines CREATE TABLE statemachine_machines ( machine varchar NOT NULL, -- the machine name, for your reference and for a reference in the application code. It is a natural key. description text, -- optional: a descriptive text factory text -- optional: the fully qualified name of the factory to be instantiated (if you want to be able to use this dynamically) ); COMMENT ON TABLE statemachine_machines IS ' The different statemachines used are defined here. A human readable description is used for documentation purposes. changes in the name of a machine will be cascaded through the other tables. The factory column contains the fully qualified class path to an instance of the AbstractFactory for creating a statemachine'; CREATE UNIQUE INDEX u_statemachine_machines_machine ON statemachine_machines (machine); ALTER TABLE statemachine_machines ADD PRIMARY KEY (machine); -- states CREATE TABLE statemachine_states ( machine varchar NOT NULL, -- a foreign key to the machine name. state varchar NOT NULL, -- a state for the machine. use lowercase and hyphen seperated. eg: my-state. -- or use a regex specifier: <[not-]regex:/<regular-expresion-here>/> type varchar DEFAULT 'normal'::character varying NOT NULL, -- one of initial, normal, regex or final entry_command varchar NULL, -- the fully qualified name of a Command class to execute as part of entering this state exit_command varchar NULL, -- the fully qualified name of a Command class to instantiate as part of exiting this state description text -- optional: a descriptive text ); COMMENT ON TABLE statemachine_states IS 'Valid states for a specific machine type. Each statemachine MUST have ONE state of type "initial". This is used to create the initial state if an entity is not yet represented in this system. The implicit assumption is that a statemachine always has (and can only have) ONE initial state, which is the entry point. The default name for this state is "new". As part of a transition a state can have an exit action and the new state an entry action. These actions will execute a command. The order is: exit-command, transition-command, entry-command All states must be lowercase and use hyphens instead of spaces eg: my-state unless it is a regex state, then you need to use the regex format of [not-]regex:/<regular-expression-here>/. changes in the name of a state will be cascaded through the other tables'; CREATE UNIQUE INDEX u_statemachine_states_m_s ON statemachine_states (machine, state); ALTER TABLE statemachine_states ADD CHECK ((state)::text = lower((state)::text)); ALTER TABLE statemachine_states ADD CHECK ((type)::text = ANY ((ARRAY['normal'::character varying, 'final'::character varying, 'initial'::character varying, , 'regex'::character varying])::text[])); ALTER TABLE statemachine_states ADD PRIMARY KEY (state, machine); ALTER TABLE statemachine_states ADD FOREIGN KEY (machine) REFERENCES statemachine_machines (machine) ON DELETE NO ACTION ON UPDATE CASCADE; --transitions CREATE TABLE statemachine_transitions ( machine varchar NOT NULL, state_from varchar NOT NULL, -- the state this transition is from state_to varchar NOT NULL, -- the state this transition is to event varchar NULL, --optional: can be used for giving 'event' input to the statemachine. rule varchar DEFAULT '\izzum\rules\True'::character varying NOT NULL, -- the fully qualified name of a Rule class to instantiate command varchar DEFAULT '\izzum\command\Null'::character varying NOT NULL, -- the fully qualified name of a Command class to instantiate priority int4 DEFAULT 1 NOT NULL, -- optional: can be used if you want your rules to be tried in a certain order. make sure to ORDER in your retrieval query. description text -- optional: a descriptive text ); COMMENT ON TABLE statemachine_transitions IS ' Define the transitions to be used per statemachine. A rule is used to check a transition possibility (use a fully qualified classname). The default True rule always allows a transition. A command is used to execute the transition logic (use a fully qualified classname). The default Null command does nothing. Priority is only relevant for the unique combination of {machine, state_from} and has context in the preferred order of checking rules for the transition from a state, since this allows you to check a higher priority rule first, followed by transition with a True rule if the first rule does not apply. Priority can be used to order the transitions for the statemachine. Event can be used to trigger the statemachine with an event name. event names do not have to be unique for transitions in a statemachine (see the difference in mealy vs moore statemachines). All data for a statemachine can be retrieved via a join on this table and the statemachine_state table. This should be done by an implementation of izzum\statemachine\loader\Loader.'; CREATE UNIQUE INDEX u_statemachine_transitions_m_sf_st ON statemachine_transitions (machine, state_from, state_to); ALTER TABLE statemachine_transitions ADD PRIMARY KEY (machine, state_from, state_to); ALTER TABLE statemachine_transitions ADD FOREIGN KEY (machine, state_from) REFERENCES statemachine_states (machine, state) ON DELETE NO ACTION ON UPDATE CASCADE; ALTER TABLE statemachine_transitions ADD FOREIGN KEY (machine, state_to) REFERENCES statemachine_states (machine, state) ON DELETE NO ACTION ON UPDATE CASCADE; -- entities. store current states coupled to an entity_id -- this table actually contains denormalized data in case you also use the -- history table. But it might be worth it in terms of retrieval performance for -- getting the current state. CREATE TABLE statemachine_entities ( machine varchar NOT NULL, entity_id varchar(255) NOT NULL, -- the unique id of your application specific domain model (eg: an Order) state varchar NOT NULL, -- the current state changetime timestamp(6) DEFAULT now() NOT NULL -- when the current state was set ); COMMENT ON TABLE statemachine_entities IS ' This table contains the current states for specific entities in machines. This makes it easy to look up a current state for an entity in a machine. there can be only ONE entry per {entity_id, machine} tuple. The actual state is stored here. Transition information will be stored in the statemachine_history table, where the latest record should equal the actual state. The first entry in this table should default to the only state of the machine with type "initial" (for theoretical purposes) The data that will be written to this table by a subclass of izzum\statemachine\persistence\Adapter specifically written for postgres. Entities should be explicitely added to the statemachine by application logic. This will be done in the method "$context->add($state)" which should write the first entry for this entity: it should be the only 'initial' state, the "new" state. After a transition, the new state will be set in this table and will overwrite the current value. This will be done in the overriden method "processSetState($identifier, $state)". The current state should be read from this table via the overriden method "processGetState($identifier)". All entity_ids for a machine in a specific state should be retrieved from this table via the method "getEntityIds($machine, $state)".'; CREATE INDEX i_statemachine_entities_entity_id ON statemachine_entities (entity_id); ALTER TABLE statemachine_entities ADD PRIMARY KEY (machine, entity_id); -- only add foreign keys if you use the database for both -- 1. the configuration of the statemachine and -- 2. for persistence of state data. -- ALTER TABLE statemachine_entities ADD FOREIGN KEY (machine, state) REFERENCES statemachine_states (machine, state) ON DELETE NO ACTION ON UPDATE CASCADE; -- history. for accounting purposes. optional -- we could only use a history table to store all information about states and -- the current state (making the entities table optional), -- but this would make the retrieval of the current state -- expensive, since it would mean we would have to get all the records for an -- entity and sort them to get the last/current one. -- the performance penalty will be dependent on your backend implementation, -- but just using the history table and not the entities table will make -- application logic of the Adapter subclass easier. CREATE SEQUENCE s_statemachine_history_id; CREATE TABLE statemachine_history ( id int4 DEFAULT nextval('s_statemachine_history_id'::regclass) NOT NULL, -- we use a surrogate key since we have no natural primary key machine varchar NOT NULL, entity_id varchar NOT NULL, state varchar NOT NULL, -- the state to which the transition was (partially in case of error) done changetime timestamp(6) DEFAULT now() NOT NULL, -- when the transition was made message text, -- optional: this should only be set when there is an error thrown from the statemachine. -- the state will then reflect the actual current state for the machine; either -- the from state in case the transition was only partially succesful or -- the to state in case the transition was only partial succesful but -- got so far as to enter the next state. -- This field will be filled, -- preferably with json, to store both exception code and message. -- application code will then be able to display this. -- If/when the state and the previous state are the same AND this field is empty, -- it will mean a succesfull self transition has been made. exception boolean DEFAULT FALSE -- if it is an exceptional transition or not. ); COMMENT ON TABLE statemachine_history IS ' Each transition made by a state machine should write a record in this table and this will provide the full history overview. State contains the state the transition was made to. It should be equal the state of the last added {machine,entity_id} tuple in the statemachine_entities table. Changetime contains the timestamp of the transition. The message column is used to store information about transition failures. A transition failure will occur when there is an exception during the transition phase, possibly thrown or generated from a command. This should result in one or multiple records in this table with the exception field set and a message (the same state will be there multiple times: one for entering the state, one or more for staying in that state because of a failed transitions) This is different from a self transition, since the message field will be filled with exception data and the exception field will be used. The message column could store json so we can use the exception code and message in this field. Entities should be explicitely added to the statemachine by application logic. This will be done in a subclass of izzum\statemachine\persistence\Adapter. The logic will be implemented in the method "$context->add($state)" for the first entry, and in the method "processetState($identifier, $state)" for all subsequent entries.'; CREATE INDEX i_statemachine_history_entity_id ON statemachine_history (entity_id); ALTER TABLE statemachine_history ADD PRIMARY KEY (id); -- only add foreign keys if you use the database for both -- 1. the configuration of the statemachine and -- 2. for persistence of state data. -- ALTER TABLE statemachine_history ADD FOREIGN KEY (machine, state) REFERENCES statemachine_states (machine, state) ON DELETE NO ACTION ON UPDATE CASCADE; --------------------------------------------- --------------------------------------------- ------------- TEST DATA --------------------- --------------------------------------------- --------------------------------------------- -- create an izzum machine INSERT INTO statemachine_machines (machine, factory, description) VALUES ('izzum', '\izzum\statemachine\factory\PostgresExampleFactory', 'this izzum: an example statemachine'); -- insert states into the izzum machine INSERT INTO statemachine_states (machine, state, type, description) VALUES ('izzum', 'new', 'initial', 'the only initial state'), ('izzum', 'done', 'final', 'a final state, on of more final states possible'), ('izzum', 'ok', 'normal', 'ok: a normal state'), ('izzum', 'fine', 'normal', 'fine: a normal state'), ('izzum', 'excellent', 'normal', 'excellent: a normal state'), ('izzum', 'bad', 'normal', 'bad: do not go here, '); -- create the transitions for the izzum machine. -- true/false rules in combination with priorities make it so that only -- a named transition by using StateMachine::apply('new_to_bad') can be made -- to follow the 'bad' path. In all other cases, there is a false rule. -- even though those false rules will be tried when we use StateMachine::run(), -- they will not trigger a transition and run() will then follow the path trough -- the happy transitions with the true rule. -- the bad to done path will throw an exception on the rule INSERT INTO statemachine_transitions (machine, state_from, state_to, rule, command, priority, description) VALUES ('izzum', 'new', 'ok','\izzum\rules\True', 'izzum\command\Null', 1, 'new_to_ok transition'), ('izzum', 'ok', 'fine','\izzum\rules\True', 'izzum\command\Null', 2, 'ok_to_fine transition'), ('izzum', 'fine', 'excellent','\izzum\rules\True', 'izzum\command\Null', 2, 'fine_to_excellent transition'), ('izzum', 'excellent', 'done','\izzum\rules\True', 'izzum\command\Null', 2, 'excellent_to_done transition'), ('izzum', 'new', 'bad','\izzum\rules\True', 'izzum\command\Null', 2, 'new_to_bad transition'), ('izzum', 'ok', 'bad','\izzum\rules\False', 'izzum\command\Null', 1, 'ok_to_bad transition'), ('izzum', 'fine', 'bad','\izzum\rules\False', 'izzum\command\Null', 1, 'fine_to_bad transition'), ('izzum', 'excellent', 'bad','\izzum\rules\False', 'izzum\command\Null', 1, 'excellent_to_bad transition'), ('izzum', 'bad', 'done','\izzum\rules\ExceptionRule', 'izzum\command\Null', 1, 'bad_to_done transition'); INSERT INTO statemachine_entities (machine, entity_id, state) VALUES ('izzum','1', 'new'),('izzum','2', 'done'), ('izzum','3', 'excellent'),('izzum','4', 'new'), ('izzum','5', 'new'),('izzum','6', 'new'), ('izzum','7', 'ok'),('izzum','8', 'new'), ('izzum','9', 'bad'),('izzum','10', 'fine'), ('izzum','11', 'done'),('izzum','12', 'ok'), ('izzum','13', 'bad'),('izzum','14', 'ok');
/*Script to insert status booking*/ INSERT INTO [dbo].[BookingStatus] ([Name] ,[IsActive]) VALUES ('Pendiente', 1), ('Confirmado', 1), ('Cancelado por Restaurante', 1), ('Cancelado por Comensal', 1)
# --- !Ups CREATE TABLE `logs` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `product_type_id` INT UNSIGNED NOT NULL, `category_id` INT UNSIGNED NOT NULL, `pack_id` INT UNSIGNED NOT NULL, `action` ENUM ('add', 'remove') NOT NULL, `time` DATETIME NOT NULL DEFAULT now(), PRIMARY KEY (`id`), INDEX `fk_logs_category_idx` (`category_id` ASC), INDEX `fk_logs_product_type_idx1` (`product_type_id` ASC), INDEX `fk_logs_pack_idx2` (`pack_id` ASC), CONSTRAINT `fk_logs_category` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_logs_product_types` FOREIGN KEY (`product_type_id`) REFERENCES `product_types` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_logs_packs` FOREIGN KEY (`pack_id`) REFERENCES `packs` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ); # --- !Downs DROP TABLE `logs`;
<gh_stars>0 DELETE FROM announcement_tblINSERT INTO announcement_tbl VALUES('1', 'Please Submit your reports', 'The Reports Will Contain the grades and the billing statements of each scholar.<br>', '2012-01-31');INSERT INTO announcement_tbl VALUES('2', 'Please Submit your reports and the grades', 'The grades of the scholars will be submitted<br>', '2012-02-08');INSERT INTO announcement_tbl VALUES('3', 'Please submit Your Reports', 'Submit Reports<br>', '2012-02-08');DELETE FROM app_tblINSERT INTO app_tbl VALUES('1', '1', 'abegail', 'opana', 'quiambao', '1993-02-05', 'naval, biliran', 'Single', 'Female', 'Filipino', 'roman catholic', 'sagkahan, real st., tacloban city', '2', 'naval, biliran', 'naval national high school', 'naval, biliran', 'Public', '4', '2', '99', '90', '2011-04-12', '2011-04-06', 'Living', 'george', 'MENESES', 'quiambao', 'Living', 'helen', 'ABAD', 'opana', 'CALBAYOG, SAMAR', 'GOVERNMENT EMPLOYEE', 'naval, biliran', 'cashier', '2', '1', '', '30000', '09132131231', '<EMAIL>', '1', '60036', '2011-12-08', '1');INSERT INTO app_tbl VALUES('2', '1', 'jennise', 'robredillo', 'pasudag', '1995-12-07', 'guiuan, eastern samar', 'Single', 'Female', 'Filipino', 'roman catholic', 'sagkahan, real st., tacloban city', '4', 'manicani, eastern samar', 'lnhs', 'guiuan, eastern samar', 'Public', '4', '3', '99', '99', '2011-12-17', '2011-12-30', 'Living', 'GABRIEL', 'MENESES', 'pasudag', 'Living', 'KAYE', 'ABAD', 'robredillo', '<NAME>', 'GOVERNMENT EMPLOYEE', 'guiuan, eastern samar', 'RESTAURANT CASHIER', '4', '1', '', '160000', '09132131231', '<EMAIL>', '1', '60039.6', '2011-12-10', '1');INSERT INTO app_tbl VALUES('3', '2', 'john', 'monroe', 'mompil', '1997-12-19', 'guiuan, eastern samar', 'Single', 'Male', 'Filipino', 'roman catholic', 'tacloban, leyte', '5', 'manicani, eastern samar', 'naval national high school', 'naval, biliran', 'Public', '1', '13', '99', '99', '2011-12-27', '2011-12-29', 'Living', 'GABRIEL', 'MENESES', 'MIRANDA', 'Living', 'maria', 'ABAD', 'CONTRERAS', '<NAME>', 'GOVERNMENT EMPLOYEE', 'guiuan, eastern samar', 'RESTAURANT CASHIER', '5', '1', '', '99999', '09132131231', '<EMAIL>', '1', '60039.6', '2011-12-12', '1');INSERT INTO app_tbl VALUES('4', '1', 'aristotle', 'gloc', 'pollisco', '1996-02-09', 'QUEZON CITY', 'Single', 'Male', 'Filipino', 'roman catholic', 'CALBAYOG, WESTERN SAMAR', '1', 'CALBAYOG, WESTERN SAMAR', 'CALBAYOG NATIONAL HIGH SCHOOL', 'CALBAYOG, WESTERN SAMAR', 'Public', '1', '1', '99', '99', '2011-03-10', '2011-03-15', 'Living', 'GABRIEL', 'MENESES', 'pollisco', 'Living', 'KAYE', 'roa', 'gloc', 'CALBAYOG, SAMAR', '', 'guiuan, eastern samar', 'RESTAURANT CASHIER', '6', '1', '', '120000', '09132131231', '<EMAIL>', '1', '60039.6', '2011-12-13', '1');INSERT INTO app_tbl VALUES('5', '1', 'marshall', 'eminem', 'mathers', '1992-10-27', 'dolores, eastern samar', 'Single', 'Male', 'Filipino', 'catholic', 'dolores, eastern samar', '2', 'dolores, eastern samar', 'dnhs', 'dolores, eastern samar', 'Public', '4', '1', '99', '99', '2011-01-05', '2011-04-01', 'Living', 'george', 'stregan', 'mathers', 'Living', 'anastacia', 'ling', 'eminem', 'manila, philippines', 'construction worker', 'dolores, eastern samar', 'teacher', '5', '1', 'very good school', '150000', '09278182812', '<EMAIL>', '1', '60039.6', '2011-12-19', '1');INSERT INTO app_tbl VALUES('6', '1', 'marie', 'forteza', 'estaron', '1996-02-02', 'dolores, eastern samar', 'Single', 'Male', 'Filipino', 'catholic', 'sagkahan, tacloban city', '6', 'dolores, eastern samar', 'dolores,eastern samar', '', 'Public', '4', '1', '99', '99', '2011-02-03', '2011-04-07', 'Living', 'JOSE', 'picardo', 'estaron', 'Living', 'lisa', 'dela cruz', 'forteza', 'dolores, eastern samar', 'construction worker', 'manlurip tacloban city', 'teacher', '5', '1', 'good corse', '123000', '09278182812', '<EMAIL>', '1', '60039.6', '2011-12-29', '1');INSERT INTO app_tbl VALUES('7', '7', 'jon', 'bon', 'jovi', '1998-03-13', 'dolores, eastern samar', 'Single', 'Male', 'Filipino', 'pagan', 'dolores, eastern samar', '5', 'dolores, eastern samar', 'dnhs', 'dolores, eastern samar', 'Public', '4', '1', '99', '99', '2012-03-06', '2012-04-12', 'Living', 'JOSE', 'picardo', 'jovi', 'Living', 'sarah', 'geronimo', 'von', 'dolores, eastern samar', 'singer', 'manlurip tacloban city', 'teacher', '5', '1', '', '150000', '09278182812', '<EMAIL>', '1', '60039.6', '2012-01-04', '0');INSERT INTO app_tbl VALUES('9', '1', 'kurt', 'rizal', 'cobain', '1998-01-10', 'dolores, eastern samar', 'Single', 'Male', 'Filipino', 'pagan', 'sagkahan, tacloban city', '1', 'manlurip, tacloban city', 'stecil', 'tacloban city', 'Public', '4', '1', '99', '99', '2012-03-06', '2012-04-28', 'Living', 'JOSE', 'picardo', 'malkovich', 'Living', 'anastacia', 'geronimo', 'forteza', 'dolores, eastern samar', 'carpenter', 'manlurip tacloban city', 'teacher', '5', '1', 'Good', '123000', '09278182812', '<EMAIL>', '1', '60039.6', '2012-01-04', '1');INSERT INTO app_tbl VALUES('10', '2', 'Freddie', 'montano', 'tirazona', '1992-07-06', 'VnG tacloban,city', 'Single', 'MALE', 'Filipino', 'catholic', 'VnG tacloban,city', '1', 'VnG tacloban,city', 'stecil', 'tacloban city', 'Public', '4', '1', '99', '99', '2012-03-07', '2012-01-19', 'Deceased', 'ferdinand', 'espiritu', 'tirazona', 'Living', 'cynthia', 'opana', 'tirazona', 'VnG tacloban,city', 'seaman', 'VnG tacloban,city', 'government employee', '4', '1', 'I wanna be a computer scientist', '150000', '09278182812', '<EMAIL>', '0', '0', '2012-01-11', '0');INSERT INTO app_tbl VALUES('11', '3', 'Lilibelle', 'sabus', 'aruta', '1992-02-17', 'borongan, eastern samar', 'Single', 'MALE', 'Filipino', '', 'alang alang leyte', '2', 'alang alang leyte', 'alang alang national high school', 'alang alang leyte', 'Public', '4', '', '99', '99', '2012-01-04', '2012-03-14', 'Living', 'john', 'lloyd', 'aruta', 'Living', 'bea', 'alonzo', 'sabus', 'alang alang leyte', 'cook', 'alang alang leyte', 'teacher', '5', '1', '', '150000', '1092000', '<EMAIL>', '0', '0', '2012-01-01', '0');INSERT INTO app_tbl VALUES('12', '1', 'juan', 'dela', 'cruz', '1992-01-11', 'borongan, eastern samar', 'Single', 'MALE', 'Filipino', 'roman catholic', '770 real street, tacloban, leyte', '2', 'dolores, eastern samar', 'dolores national high school', 'alang alang leyte', 'Public', '4', '1', '99', '99', '2012-01-19', '2012-04-24', 'Living', 'JOSE', 'picardo', 'cruz', 'Living', 'cynthia', 'geronimo', 'dela', 'VnG tacloban,city', 'musician', 'alang alang leyte', 'sewer', '2', '1', '', '10000', '09278182812', '<EMAIL>', '1', '60039.6', '2012-01-25', '1');INSERT INTO app_tbl VALUES('13', '1', '<NAME>', 'abuedo', 'bandoy', '1991-12-15', 'guiuan, eastern samar', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'guiuan, eastern samar', '1', 'tacloban city', 'gnhs', 'tacloban city', 'Public', '4', '5', '89', '90', '2008-02-05', '2008-04-02', 'Living', 'francisco', 'salas', 'bandoy', 'Living', 'esther', 'abuedo', 'bandoy', 'guiuan, eastern samar', 'govt employee', 'tacloban city', 'sewer', '4', '1', '', '150000', '09107365795', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('14', '1', 'claudine', 'bandoy', 'espinosa', '1992-10-17', 'tacloban city, leyte', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'sagkahan, tacloban city', '1', 'tacloban city', 'gnhs', '', 'Public', '4', '5', '87', '88', '2009-01-14', '2009-03-26', 'Living', 'reynaldo', 'lopez', 'espinosa', 'Living', 'maritess', 'abuedo', 'bandoy', 'VnG tacloban,city', 'govt employee', 'guiuan', 'businesswoman', '3', '1', '', '20000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('15', '1', 'krista', 'abria', 'aniceto', '1989-12-21', 'VnG tacloban,city', 'Single', 'FEMALE', 'Filipino', 'catholic', 'VnG tacloban,city', '1', 'VnG tacloban,city', 'lnhs', 'tacloban city', 'Public', '4', '7', '87', '88', '2008-03-11', '2008-04-23', 'Living', 'edilberto', 'tan', 'aniceto', 'Living', 'mina', 'abria', 'aniceto', 'VnG tacloban,city', 'seaman', 'VnG tacloban,city', 'teacher', '5', '1', '', '150000', '09278182812', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('16', '1', 'roseann', 'gilhang', 'bajado', '1990-12-01', 'villareal samar', 'Single', 'FEMALE', 'Filipino', 'catholic', 'tacloban city', '1', 'villareal samar', 'sisters of mary', 'cebu city', 'Public', '4', '7', '87', '88', '2008-01-09', '2008-04-03', 'Living', 'rudy', 'picardo', 'bajado', 'Living', 'anastacia', 'gilhang', 'bajado', 'villareal samr', 'seaman', 'villareal samar', 'sewer', '5', '1', '', '18000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('17', '1', '<NAME>', 'jones', 'montano', '1991-01-27', 'tacloban,city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban,city', '1', 'tacloban,city', 'st therese', 'tacloban,city', 'Public', '4', '7', '86', '88', '2008-01-24', '2008-03-26', 'Living', 'mike', 'picardo', 'montano', 'Living', 'sarah', 'forteza', 'montano', 'tacloban,city', 'govt employee', 'tacloban,city', 'ofw', '5', '1', '', '18000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('18', '1', '<NAME>', 'tan', 'serdoncillo', '1990-04-27', 'tacloban,city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'st therese', 'tacloban city', 'Public', '4', '5', '87', '99', '2008-02-06', '2008-03-18', 'Living', 'JOSE', 'salas', 'serdoncillo', 'Living', 'bea', 'tan', 'serdoncillo', 'manlurip tacloban city', 'govt employee', 'manlurip tacloban city', 'businesswoman', '3', '1', '', '150000', '09107365795', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('19', '1', 'brian', 'gonzaga', 'delantar', '1988-01-27', 'tacloban,city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban,city', '1', 'tacloban city', 'sacred heart', 'tacloban city', 'Public', '4', '5', '87', '90', '2006-01-25', '2006-03-22', 'Living', 'rudy', 'picardo', 'delantar', 'Living', 'angela', 'abria', 'delantar', 'tacloban,city', 'judge', 'tacloban,city', 'businesswoman', '3', '1', '', '18000', '09278182812', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('20', '1', 'jane', 'caranyagan', 'malindog', '1993-01-29', 'guiuan, eastern samar', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'guiuan, eastern samar', '1', 'tacloban city', 'smag', 'guiuan', 'Public', '4', '7', '86', '88', '2007-01-17', '2007-03-22', 'Living', 'reynaldo', 'lopez', 'malindog', 'Living', 'cynthia', 'caranyagan', 'malindog', 'guiuan, eastern samar', 'seaman', 'guiuan', '', '3', '1', '', '18000', '09278182812', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('21', '1', 'jim', 'opana', 'garcia', '1991-02-14', 'tacloban,city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'lnhs', 'tacloban city', 'Public', '4', '7', '87', '88', '2008-01-09', '2008-03-19', 'Living', 'reynaldo', 'estaron', 'garcia', 'Living', 'angela', 'opana', 'garcia', 'tacloban,city', 'businessman', 'tacloban city', 'businesswoman', '0', '1', '', '150000', '09278182812', '<EMAIL>', '2', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('22', '1', 'johannes', 'terre', 'gaduena', '1988-01-27', 'tanauan leyte', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tanauan leyte', '1', 'tanauan leyte', 'lnhs', 'tacloban city', 'Public', '4', '5', '86', '99', '2006-01-03', '2006-03-21', 'Living', 'rudy', 'lopez', 'gaduena', 'Living', 'anastacia', 'terre', 'gaduena', 'tanauan leyte', 'govt employee', 'tanauan leyte', 'government employee', '5', '1', '', '20000', '09123456565', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('23', '1', 'zeny', 'TRUMPO', 'GAMATA', '1988-01-27', 'tacloban,city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'tacloban city', 'Public', '4', '7', '86', '88', '2006-01-18', '2006-03-16', 'Living', 'JOSE', 'lopez', 'gamata', 'Living', 'lisa', 'trumpo', 'gamata', 'tacloban,city', 'seaman', 'tacloban city', 'ofw', '5', '1', '', '20000', '09107365795', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('24', '1', 'athena', 'chan', 'remulta', '1991-03-24', 'borongan, eastern samar', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'st therese', 'tacloban city', 'Public', '4', '7', '87', '88', '2005-01-05', '2005-03-23', 'Living', 'mike', 'estaron', 'remulta', 'Living', 'bea', 'chan', 'remulta', 'tacloban,city', 'engineer', 'tacloban city', 'teacher', '5', '1', '', '18000', '09278182812', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('25', '2', 'jimmy', 'lumactod', 'ablay', '1988-06-01', 'guiuan, eastern samar', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '5', '86', '88', '2007-02-14', '2007-03-15', 'Living', 'juanito', 'gagatiga', 'ablay', 'Living', 'gregoria', 'lumactod ', 'ABLAY', 'guiuan, eastern samar', 'sewer', 'guiuan', 'government employee', '5', '1', '', '18000', '09128509827', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('26', '1', 'MYLENE', 'DELANTAR', 'ATREGENIO', '1991-05-24', 'guiuan, eastern samar', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '5', '86', '88', '2007-01-10', '2007-03-28', 'Living', 'rudy', 'lopez', 'atregenio', 'Living', 'lisa', 'delantar', 'atregenio', 'tacloban,city', 'govt employee', 'tacloban city', 'government employee', '0', '1', '', '18000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('27', '1', 'joseph', 'tan', 'biggel', '1991-01-26', 'tacloban,city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'sacred heart', 'tacloban city', 'Public', '4', '7', '86', '89', '2008-01-15', '2008-03-19', 'Living', 'JOSE', 'lopez', 'biggel', 'Living', 'angela', 'lopez', 'biggel', 'tacloban,city', 'seaman', 'tacloban city', 'ofw', '5', '1', '', '20000', '09107365795', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('28', '1', '<NAME>', 'caranyagan', 'destajo', '1991-01-22', 'tacloban,city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'lnhs', 'tacloban city', 'Public', '4', '5', '86', '88', '2007-01-10', '2007-03-30', 'Living', 'edilberto', 'lopez', 'destajo', 'Living', 'angela', 'caranyagan', 'destajo', 'tacloban,city', 'seaman', 'tacloban city', 'businesswoman', '2', '1', '', '20000', '09278182812', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('29', '1', 'juvy', 'naing', 'sabijon', '1992-10-07', 'tacloban,city', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '5', '87', '88', '2009-01-13', '2009-03-12', 'Living', 'juanito', 'lopez', 'sabijon', 'Living', 'maritess', 'naing', 'sabijon', 'tacloban,city', 'businessman', 'tacloban city', 'businesswoman', '5', '1', '', '18000', '09278182812', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('30', '1', 'ARNILA', 'bandoy', 'ancla', '1988-02-23', 'tacloban,city', 'Single', 'MALE', 'Filipino', 'catholic', 'tacloban city', '1', 'tacloban city', 'lnhs', 'tacloban city', 'Public', '4', '5', '89', '90', '2006-01-18', '2006-03-22', 'Living', 'francisco', 'salas', 'ancla', 'Living', 'esther', 'bandoy', 'ancla', 'tacloban,city', 'govt employee', 'tacloban city', 'teacher', '5', '1', '', '20000', '09062093133', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('31', '3', 'agnes', 'pacheco', 'delatonga', '1989-03-14', 'tanauan leyte', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'tanauan leyte', '1', 'tacloban city', 'st therese', 'tacloban city', 'Public', '4', '7', '86', '88', '2005-01-05', '2005-03-22', 'Living', 'george', 'lopez', 'delatonga', 'Living', 'esther', 'pacheco', 'delatonga', 'tanauan leyte', 'engineer', 'tanauan leyte', 'businesswoman', '5', '1', '', '20000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('32', '1', 'enchong', 'tan', 'dee', '1988-11-06', 'manila', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'sacred heart', 'tacloban city', 'Public', '4', '7', '87', '90', '2006-01-18', '2006-04-03', 'Living', 'rudy', 'estaron', 'dee', 'Living', 'cynthia', 'tan', 'dee', 'tacloban,city', 'businessman', 'tacloban city', 'government employee', '3', '1', '', '20000', '09123456565', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('33', '1', 'warley', 'chan', 'gagatiga', '1991-01-26', 'guiuan, eastern samar', 'Single', 'MALE', 'Filipino', 'roman catholic', 'sagkahan, tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '7', '86', '88', '2007-01-16', '2007-03-07', 'Living', 'rudy', 'lopez', 'gagatiga', 'Living', 'rica', 'chan', 'gagtiga', 'tacloban,city', 'govt employee', 'tacloban city', 'teacher', '5', '1', '', '20000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('34', '2', 'lourdes', 'basario', 'cablao', '1991-01-01', 'guiuan, eastern samar', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '1', '87', '90', '2007-01-02', '2008-03-19', 'Living', 'john', 'picardo', 'cablao', 'Living', 'mina', 'basario', 'cablao', 'tacloban,city', 'seaman', 'tacloban city', 'ofw', '5', '1', '', '18000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('35', '1', 'elizabeth', 'cablao', 'danas', '1991-05-27', 'guiuan, eastern samar', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'st therese', 'tacloban city', 'Public', '4', '7', '86', '88', '2007-01-10', '2007-03-21', 'Living', 'JOSE', 'salas', 'danas', 'Living', 'esther', 'cablao', 'danas', 'tacloban,city', 'businessman', 'tacloban city', 'ofw', '3', '1', '', '20000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('36', '2', 'genevive', 'abuyen', 'quiza', '1991-03-20', 'guiuan, eastern samar', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tanauan leyte', 'gnhs', 'guiuan', 'Public', '4', '7', '87', '90', '2007-01-04', '2007-03-20', 'Living', 'reynaldo', 'lopez', 'abuyen', 'Living', 'rica', 'quiza', 'abuyen', 'tacloban,city', 'businessman', 'tacloban city', 'government employee', '5', '1', '', '18000', '09278182812', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('37', '1', 'vic', 'cablao', 'cruz', '1991-11-10', 'guiuan, eastern samar', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '5', '86', '88', '2007-01-09', '2007-03-28', 'Living', 'rudy', 'estaron', 'cablao', 'Living', 'gregoria', 'cruz', 'cablao', 'tacloban,city', 'businessman', 'tacloban city', 'teacher', '5', '1', '', '20000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('38', '3', 'violady', 'cascayan', 'quino', '1991-04-11', 'guiuan, eastern samar', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '1', '88', '90', '2007-02-01', '2007-03-12', 'Living', 'rudy', 'estaron', 'quino', 'Living', 'angela', 'cascayan', 'quino', 'tacloban,city', 'seaman', 'tacloban city', 'government employee', '5', '1', '', '18000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('39', '1', 'loncey', 'marasigan', 'molina', '1991-12-14', 'guiuan, eastern samar', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '7', '87', '90', '2007-02-01', '2007-03-15', 'Living', 'edilberto', 'picardo', 'molina', 'Living', 'gregoria', 'marasigan', 'molina', 'tacloban,city', 'engineer', 'tacloban city', 'teacher', '3', '1', '', '18000', '09123456565', '<EMAIL>', '1', '56462.4', '2012-01-27', '1');INSERT INTO app_tbl VALUES('40', '1', 'marlon', 'naing', 'PADULLON', '1991-01-15', 'guiuan, eastern samar', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tanauan leyte', 'gnhs', 'guiuan', 'Public', '4', '5', '87', '90', '2007-01-09', '2007-03-30', 'Living', 'reynaldo', 'salas', 'PADULLON', 'Living', 'maritess', 'naing', 'PADULLON', 'tacloban,city', 'businessman', 'tacloban city', 'government employee', '3', '1', '', '20000', '09123456565', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('41', '3', '<NAME>', 'LIMBOY', 'CABLAO', '1992-03-25', 'guiuan, eastern samar', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'smag', 'guiuan', 'Public', '4', '5', '87', '90', '2010-01-11', '2010-03-17', 'Living', 'nick', 'estaron', 'cablao', 'Living', 'priscilla', 'limboy', 'cablao', 'tacloban,city', 'musician', 'tacloban city', 'government employee', '2', '1', '', '20000', '09083142803', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('42', '1', 'james', 'garcia', 'macapugas', '1992-02-24', 'borongan, eastern samar', 'Single', 'MALE', 'Filipino', 'catholic', 'tacloban city', '1', 'tacloban city', 'smag', 'guiuan', 'Public', '4', '7', '86', '88', '2010-01-12', '2010-03-16', 'Living', 'rudy', 'lopez', 'macapugas', 'Living', 'rica', 'garcia', 'macapugas', 'tacloban,city', 'businessman', 'tacloban city', 'doctor', '5', '1', '', '20000', '09107365795', '<EMAIL>', '1', '56061.5', '2012-01-27', '0');INSERT INTO app_tbl VALUES('43', '3', 'manilyn', 'palce', 'ty', '1991-04-10', 'guiuan, eastern samar', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'gnhs', 'guiuan', 'Public', '4', '7', '86', '90', '2008-01-08', '2008-03-26', 'Living', 'reynaldo', 'lopez', 'palce', 'Living', 'angela', 'ty', 'palce', 'tacloban,city', 'businessman', 'tacloban city', 'government employee', '3', '1', '', '18000', '09278182812', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('44', '1', '<NAME>', 'bandoy', 'espinosa', '1992-05-02', 'guiuan, eastern samar', 'Single', 'MALE', 'Filipino', 'catholic', 'tacloban city', '1', 'VnG tacloban,city', 'lnhs', 'tacloban city', 'Public', '4', '5', '89', '88', '2009-01-06', '2009-03-18', 'Living', 'rudy', 'estaron', 'espinosa', 'Living', 'maritess', 'abuedo', 'espinosa', 'tacloban,city', 'govt employee', 'tacloban city', 'ofw', '3', '1', '', '18000', '09107365795', '<EMAIL>', '0', '0', '2012-01-27', '0');INSERT INTO app_tbl VALUES('45', '1', 'reymund', 'bacha', 'canlu', '1991-07-20', 'sagkahan tacloban city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'tacloban city', '1', 'tacloban city', 'asian development foundation college', 'sagkahan tacloban city', 'Public', '4', '2', '92', '97', '2007-01-18', '2007-01-18', 'Living', 'galion', 'sabusa', 'canlu', 'Living', 'gina ', 'garuna', 'bacolongan', 'sagkahan tacloban city', 'carpenter', 'sagkahan tacloban city', 'teacher', '2', '1', 'good', '2000', '24345654', '<EMAIL>', '1', '0', '2012-01-28', '0');INSERT INTO app_tbl VALUES('46', '1', 'eugene', 'jiruyo', 'tarumba', '1991-07-29', 'sagkahan tacloban city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'sagkahan, tacloban city', '1', 'sagkahan tacloban city', 'sagkahan national highschool', 'sagkahan tacloban city', 'Public', '4', '2', '98', '98', '2003-01-15', '2012-01-11', 'Living', 'gerone', 'kanabi', 'TARUMBA', 'Living', 'YUNA', 'forteza', 'TENORIO', 'sagkahan tacloban city', 'cook', 'sagkahan tacloban city', 'teacher', '4', '1', 'GOOD', '170000', '3455654325', '<EMAIL>', '0', '0', '2012-01-28', '0');INSERT INTO app_tbl VALUES('47', '1', 'jiona', 'viruna', 'canlas', '1990-06-28', 'sagkahan tacloban city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'sagkahan tacloban city', '1', 'sagkahan tacloban city', 'Leyte national high school', 'benigno aquino st. tacloban city', 'Public', '4', '', '80', '85', '2009-01-08', '2008-01-17', 'Living', 'jerone', 'ryuma', 'canlas', 'Living', 'constancia', 'abuedo', 'perte', 'sagkahan tacloban city', 'bouncer', 'sagkahan tacloban city', 'teacher', '2', '1', 'nice!', '190000', '876544567876543456', '<EMAIL>', '1', '22058.2', '2012-01-28', '1');INSERT INTO app_tbl VALUES('48', '1', 'geomelyn', 'garuna', 'bernal', '1990-01-28', 'san jose tacloban city', 'Single', 'MALE', 'Filipino', 'roman catholic', 'san jose tacloban city', '1', 'san jose tacloban city', 'stecil', 'kasssel tacloban city', 'Private', '4', '', '87', '86', '2006-01-12', '2007-01-11', 'Living', 'david', 'salas', 'bernal', 'Living', 'rose', 'finum', 'fenta', 'san jose tacloban city', 'carpenter', 'san jose tacloban city', 'physical therapist', '2', '1', 'it is very nice!', '190000', '123456756543454', '<EMAIL>', '0', '0', '2012-01-28', '0');INSERT INTO app_tbl VALUES('49', '1', 'karla', 'loste', 'garcia', '1992-12-12', '', 'Single', 'MALE', 'Filipino', '', '', '1', '', '', '', 'Public', '4', '1', '93', '92', '2008-01-08', '2008-03-29', 'Living', 'edilberto', 'topeja', 'garcia', 'Living', 'marie', 'lumbres', 'loste', 'pasay, manila', 'seaman', 'llorente, eastern samar', 'none', '5', '5', '', '190000', '09083142803', '<EMAIL>', '0', '0', '2012-01-29', '0');INSERT INTO app_tbl VALUES('50', '2', 'ronelyn', 'bandoy', 'dagamina', '1990-07-14', 'Guiuan eastern samar', 'Single', 'MALE', 'Filipino', 'Roman catholic', 'vng tacloban city', '1', 'TACLOBAN city', 'CNHS', 'tACLOBAN city', 'Public', '4', '4', '88', '88', '2008-01-31', '2008-03-31', 'Living', 'alfredo', 'ramirez', 'bandoy', 'Living', 'arnila', 'dagamina', 'bandoy', 'tacloban', 'businessman', 'tacloban', 'teacher', '3', '1', '', '200000', '09107887567', '<EMAIL>', '0', '0', '2012-01-31', '0');INSERT INTO app_tbl VALUES('51', '2', 'faith', 'SY', 'Luna', '1991-02-01', 'cagayan valley', 'Single', 'FEMALE', 'Filipino', 'roman catholic', 'vng tacloban city', '1', 'TACLOBAN city', 'SISTERS OF MARY', 'tACLOBAN city', 'Public', '4', '4', '85', '89', '2008-02-01', '2008-03-17', 'Living', 'alfredo', 'daiz', 'luna', 'Living', 'celia', 'sy', 'luna', 'tacloban', 'instructor', 'tacloban', 'botanist', '4', '1', '', '130000', '09187664556', '<EMAIL>', '0', '0', '2012-02-01', '0');DELETE FROM audittrail_tblINSERT INTO audittrail_tbl VALUES('1', 'edusupervisor', 'Confirmed an Application for Ranking', '2012-02-08 22:47:00');INSERT INTO audittrail_tbl VALUES('2', 'edusupervisor', 'Approved an Scholarship', '2012-02-08 22:49:23');INSERT INTO audittrail_tbl VALUES('3', 'edusupervisor', 'Approved an Scholarship', '2012-02-08 22:51:13');INSERT INTO audittrail_tbl VALUES('4', 'edusupervisor', 'Log-In', '2012-02-08 23:05:34');INSERT INTO audittrail_tbl VALUES('5', 'edusupervisor', 'Confirmed an Application for Ranking', '2012-02-08 23:05:58');INSERT INTO audittrail_tbl VALUES('6', 'edusupervisor', 'Log-Out', '2012-02-08 23:06:26');INSERT INTO audittrail_tbl VALUES('7', 'admin', 'Log-In', '2012-02-08 23:06:33');INSERT INTO audittrail_tbl VALUES('8', 'admin', 'Log-Out', '2012-02-09 02:44:42');INSERT INTO audittrail_tbl VALUES('9', 'edusupervisor', 'Log-In', '2012-02-09 02:44:54');INSERT INTO audittrail_tbl VALUES('10', 'edusupervisor', 'Viewed Reports', '2012-02-09 02:46:24');INSERT INTO audittrail_tbl VALUES('11', 'edusupervisor', 'Viewed Reports', '2012-02-09 07:42:02');INSERT INTO audittrail_tbl VALUES('12', 'edusupervisor', 'Log-Out', '2012-02-09 08:46:11');INSERT INTO audittrail_tbl VALUES('13', 'director', 'Log-In', '2012-02-09 08:46:33');INSERT INTO audittrail_tbl VALUES('14', 'director', 'Viewed Expenses', '2012-02-09 08:46:45');INSERT INTO audittrail_tbl VALUES('15', 'director', 'Viewed Expenses', '2012-02-09 08:47:23');INSERT INTO audittrail_tbl VALUES('16', 'director', 'Viewed Grades', '2012-02-09 08:47:28');INSERT INTO audittrail_tbl VALUES('17', 'director', 'Viewed Grades', '2012-02-09 08:49:53');INSERT INTO audittrail_tbl VALUES('18', 'director', 'Viewed Reports', '2012-02-09 08:50:10');INSERT INTO audittrail_tbl VALUES('19', 'director', 'Log-Out', '2012-02-09 08:50:29');INSERT INTO audittrail_tbl VALUES('20', 'sc_sti', 'Log-In', '2012-02-09 08:50:40');INSERT INTO audittrail_tbl VALUES('21', 'SC_STI', 'Log-Out', '2012-02-09 08:58:08');INSERT INTO audittrail_tbl VALUES('22', 'sc_sti', 'Log-In', '2012-02-09 08:58:16');INSERT INTO audittrail_tbl VALUES('23', 'SC_STI', 'Viewed List Of Scholars', '2012-02-09 08:58:36');INSERT INTO audittrail_tbl VALUES('24', 'SC_STI', 'Submitted A Grade of A Scholar', '2012-02-09 09:02:48');INSERT INTO audittrail_tbl VALUES('25', 'SC_STI', 'Viewed List Of Scholars', '2012-02-09 09:02:59');INSERT INTO audittrail_tbl VALUES('26', 'SC_STI', 'Submitted A Bill of A Scholar', '2012-02-09 09:03:15');INSERT INTO audittrail_tbl VALUES('27', 'SC_STI', 'Viewed List Of Scholars', '2012-02-09 09:03:17');INSERT INTO audittrail_tbl VALUES('28', 'SC_STI', 'Log-Out', '2012-02-09 09:03:30');INSERT INTO audittrail_tbl VALUES('29', 'admin', 'Log-In', '2012-02-09 09:03:55');INSERT INTO audittrail_tbl VALUES('30', 'edusupervisor', 'Log-In', '2012-02-09 22:43:46');INSERT INTO audittrail_tbl VALUES('31', 'edusupervisor', 'Log-In', '2012-02-10 13:57:43');INSERT INTO audittrail_tbl VALUES('32', 'edusupervisor', 'Viewed Reports', '2012-02-10 13:57:53');INSERT INTO audittrail_tbl VALUES('33', 'edusupervisor', 'Viewed Reports', '2012-02-10 16:15:06');INSERT INTO audittrail_tbl VALUES('34', 'edusupervisor', 'Viewed Reports', '2012-02-10 16:15:14');INSERT INTO audittrail_tbl VALUES('35', 'edusupervisor', 'Viewed Reports', '2012-02-10 16:15:23');INSERT INTO audittrail_tbl VALUES('36', 'edusupervisor', 'Viewed Reports', '2012-02-10 16:15:27');INSERT INTO audittrail_tbl VALUES('37', 'edusupervisor', 'Viewed Reports', '2012-02-10 16:18:01');INSERT INTO audittrail_tbl VALUES('38', 'edusupervisor', 'Viewed Reports', '2012-02-10 16:24:11');INSERT INTO audittrail_tbl VALUES('39', 'edusupervisor', 'Viewed Reports', '2012-02-10 16:24:14');INSERT INTO audittrail_tbl VALUES('40', 'sc_sti', 'Log-In', '2012-02-10 20:34:02');INSERT INTO audittrail_tbl VALUES('41', 'SC_STI', 'Viewed List Of Scholars', '2012-02-10 20:34:09');INSERT INTO audittrail_tbl VALUES('42', 'SC_STI', 'Viewed List Of Scholars', '2012-02-10 20:34:15');INSERT INTO audittrail_tbl VALUES('43', 'director', 'Log-In', '2012-02-10 20:57:53');INSERT INTO audittrail_tbl VALUES('44', 'director', 'Viewed Reports', '2012-02-10 20:58:01');INSERT INTO audittrail_tbl VALUES('45', 'director', 'Viewed Reports', '2012-02-10 20:58:06');INSERT INTO audittrail_tbl VALUES('46', 'director', 'Viewed Reports', '2012-02-10 20:58:51');INSERT INTO audittrail_tbl VALUES('47', 'director', 'Viewed Reports', '2012-02-10 21:00:43');INSERT INTO audittrail_tbl VALUES('48', 'director', 'Viewed Expenses', '2012-02-10 21:01:01');INSERT INTO audittrail_tbl VALUES('49', 'director', 'Viewed Reports', '2012-02-10 21:01:06');INSERT INTO audittrail_tbl VALUES('50', 'director', 'Viewed Reports', '2012-02-10 21:09:25');INSERT INTO audittrail_tbl VALUES('51', 'director', 'Viewed Reports', '2012-02-10 21:09:35');INSERT INTO audittrail_tbl VALUES('52', 'director', 'Viewed Reports', '2012-02-10 21:09:39');INSERT INTO audittrail_tbl VALUES('53', 'director', 'Viewed Reports', '2012-02-10 21:10:17');INSERT INTO audittrail_tbl VALUES('54', 'director', 'Viewed Reports', '2012-02-10 21:12:21');INSERT INTO audittrail_tbl VALUES('55', 'director', 'Viewed Reports', '2012-02-10 21:16:12');INSERT INTO audittrail_tbl VALUES('56', 'director', 'Viewed Reports', '2012-02-10 21:16:57');INSERT INTO audittrail_tbl VALUES('57', 'director', 'Viewed Reports', '2012-02-10 21:20:57');INSERT INTO audittrail_tbl VALUES('58', 'director', 'Viewed Reports', '2012-02-10 21:21:44');INSERT INTO audittrail_tbl VALUES('59', 'director', 'Viewed Reports', '2012-02-10 21:23:00');INSERT INTO audittrail_tbl VALUES('60', 'director', 'Viewed Reports', '2012-02-10 21:23:05');INSERT INTO audittrail_tbl VALUES('61', 'director', 'Viewed Reports', '2012-02-10 21:23:59');INSERT INTO audittrail_tbl VALUES('62', 'director', 'Viewed Reports', '2012-02-10 21:25:26');INSERT INTO audittrail_tbl VALUES('63', 'director', 'Viewed Reports', '2012-02-10 21:25:38');INSERT INTO audittrail_tbl VALUES('64', 'director', 'Viewed Expenses', '2012-02-10 21:26:15');INSERT INTO audittrail_tbl VALUES('65', 'director', 'Viewed Expenses', '2012-02-10 21:27:46');INSERT INTO audittrail_tbl VALUES('66', 'director', 'Viewed Expenses', '2012-02-10 21:28:03');INSERT INTO audittrail_tbl VALUES('67', 'director', 'Log-Out', '2012-02-10 21:31:40');INSERT INTO audittrail_tbl VALUES('68', 'admin', 'Log-In', '2012-02-10 21:31:47');DELETE FROM awardno_tblINSERT INTO awardno_tbl VALUES('1', 'FM-2011-001', '1', '1');INSERT INTO awardno_tbl VALUES('2', 'FM-2011-002', '1', '1');INSERT INTO awardno_tbl VALUES('3', 'FM-2011-003', '1', '1');INSERT INTO awardno_tbl VALUES('4', 'HM-2011-001', '2', '0');DELETE FROM beneficiary_tblINSERT INTO beneficiary_tbl VALUES('1', 'Roniel', 'Bacolongan', 'Bernas', 'MALE', '1', '1', '4', 'FM-1001', '0000-00-00', '2010-2011', '09157400449', 'Enrolled', '0', '1', 'Dolores, Eastern Samar', '1');INSERT INTO beneficiary_tbl VALUES('2', '<NAME>', 'Crodua', 'Cahanap', 'MALE', '2', '1', '1', 'FM - 1007', '2008-06-03', '2010-2011', '09190291928', 'Enrolled', '3', '1', 'Dolores, Eastern Samar', '2');INSERT INTO beneficiary_tbl VALUES('13', 'abegail', 'opana', 'quiambao', 'FEMALE', '1', '1', '1', 'FM-2210', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '1', 'sagkahan, real st., tacloban ', '3');INSERT INTO beneficiary_tbl VALUES('14', 'jennise', 'robredillo', 'pasudag', 'FEMALE', '1', '1', '1', 'fm-1009a1', '0000-00-00', '2010-2011', '09132131231', 'Recommended for Waive', '0', '1', 'sagkahan, real st., tacloban city', '4');INSERT INTO beneficiary_tbl VALUES('15', 'john', 'monroe', 'mompil', 'MALE', '1', '1', '1', 'HM-10001', '0000-00-00', '2010-2011', '09132131231', 'Waived', '0', '1', 'tacloban, leyte', '5');INSERT INTO beneficiary_tbl VALUES('17', 'marie', 'forteza', 'estaron', 'FEMALE', '1', '1', '1', 'FM-2000', '2011-12-29', '2010-2011', '09278182812', 'ENROLLED', '7', '1', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('18', 'marshall', 'eminem', 'mathers', 'MALE', '1', '0', '0', 'FM-1003', '2012-01-03', '2010-2011', '09278182812', 'NEW', '0', '0', 'dolores, eastern samar', '2');INSERT INTO beneficiary_tbl VALUES('19', 'kurt', 'rizal', 'cobain', 'MALE', '1', '0', '0', 'FM-2011', '2012-01-07', '2011-2012', '09278182812', 'NEW', '0', '0', 'sagkahan, tacloban city', '0');INSERT INTO beneficiary_tbl VALUES('20', 'George', 'Jose', 'Estregan', 'MALE', '1', '1', '1', '', '0000-00-00', '', '09124556777', 'ENROLLED', '0', '1', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('21', 'Trixie', 'Espineda', 'Amable', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09126787887', 'ENROLLED', '0', '1', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('22', 'Steve', 'Bandoy', 'Machica', 'MALE', '3', '3', '3', '', '0000-00-00', '', '09107678909', 'ENROLLED', '0', '1', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('23', 'Gina', 'Alonzo', 'Tan', 'FEMALE', '1', '1', '1', '', '0000-00-00', '', '09123454434', 'ENROLLED', '0', '1', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('24', 'Faye', 'Lee', 'Romero', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09187794554', 'ENROLLED', '0', '1', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('25', 'Terresa', 'Yu', 'Bond', 'Female', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'Enrolled', '0', '1', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('26', 'Garth', 'Abria', 'Acerden', 'MALE', '4', '1', '4', '', '0000-00-00', '', '09186754565', 'ENROLLED', '0', '1', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('27', 'Sophia', 'Famroda', 'Geronimo', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '1', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('28', 'Reymond', 'Rodriguez', 'Israel', 'MALE', '6', '3', '2', '', '0000-00-00', '', '09126679099', 'Enrolled', '0', '1', 'Tacloban City', '6');INSERT INTO beneficiary_tbl VALUES('29', 'Lydia', 'Far', 'East', 'FEMALE', '1', '1', '3', '', '0000-00-00', '', '09177784565', 'Enrolled', '0', '1', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('30', 'Jane', 'Lee', 'Abria', 'Female', '2', '2', '4', '', '0000-00-00', '', '09124432332', 'Enrolled', '0', '1', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('31', 'Rose', 'Santamaria', 'Dee', 'Female', '3', '3', '1', '', '0000-00-00', '', '09187776675', 'Enrolled', '0', '1', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('32', 'Leslie', 'Tan', 'Tamayo', 'Female', '4', '1', '2', '', '0000-00-00', '', '09187789876', 'Enrolled', '0', '1', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('33', 'Angelo', '<NAME>', 'Picasso', 'MALE', '1', '1', '4', 'FM-1001', '0000-00-00', '2010-2011', '09157400449', 'Enrolled', '0', '1', 'Dolores, Eastern Samar', '1');INSERT INTO beneficiary_tbl VALUES('34', 'Jamela', 'Bandoy', 'Ancla', 'FEMALE', '2', '1', '1', 'FM - 1007', '2008-06-03', '2010-2011', '09190291928', 'Enrolled', '3', '1', 'Dolores, Eastern Samar', '2');INSERT INTO beneficiary_tbl VALUES('35', 'Jane', 'Opana', 'Raj', 'FEMALE', '1', '1', '1', 'FM-2210', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '1', 'sagkahan, real st., tacloban ', '3');INSERT INTO beneficiary_tbl VALUES('36', 'Belle', 'Alonzo', 'Curtiz', 'FEMALE', '1', '1', '1', 'fm-1009a1', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '1', 'sagkahan, real st., tacloban city', '4');INSERT INTO beneficiary_tbl VALUES('37', 'Erwin', 'Montano', 'Benites', 'MALE', '1', '1', '1', 'HM-10001', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '1', 'tacloban, leyte', '5');INSERT INTO beneficiary_tbl VALUES('39', 'Marimar', 'Forte', 'Escalon', 'FEMALE', '1', '1', '1', 'FM-2000', '2011-12-29', '2010-2011', '09278182812', 'Enrolled', '7', '1', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('40', 'marifel', 'gayoso', 'duran', 'MALE', '1', '0', '0', 'FM-1003', '2012-01-03', '2010-2011', '09278182812', 'NEW', '0', '0', 'dolores, eastern samar', '2');INSERT INTO beneficiary_tbl VALUES('41', 'mark', 'tan', 'copacobana', 'MALE', '1', '0', '0', 'FM-2011', '2012-01-07', '2011-2012', '09278182812', 'NEW', '0', '0', 'sagkahan, tacloban city', '0');INSERT INTO beneficiary_tbl VALUES('43', 'Barbette', 'Magalona', 'Badocdoc', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09126787887', 'ENROLLED', '0', '1', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('45', 'Gemma', 'Alonzo', 'Balo', 'FEMALE', '1', '1', '1', '', '0000-00-00', '', '09123454434', 'ENROLLED', '0', '1', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('46', 'Mylene', 'Abucejo', 'Lumactod', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09187794554', 'ENROLLED', '0', '1', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('47', 'Tricia', 'Frando', 'lanuevo', 'Female', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'Enrolled', '0', '1', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('48', 'Ryan', 'Ang', 'Duran', 'MALE', '4', '1', '4', '', '0000-00-00', '', '09186754565', 'ENROLLED', '0', '1', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('49', 'Diana', 'Merize', 'Laput', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '1', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('50', 'Tom', 'Colleney', 'Abuda', 'MALE', '6', '3', '2', '', '0000-00-00', '', '09126679099', 'Enrolled', '0', '1', 'Tacloban City', '6');INSERT INTO beneficiary_tbl VALUES('51', 'Lena', 'Dee', 'Ancla', 'FEMALE', '1', '1', '3', '', '0000-00-00', '', '09177784565', 'Enrolled', '0', '1', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('52', 'Mai', 'Trumpo', 'Asunsion', 'Female', '2', '2', '4', '', '0000-00-00', '', '09124432332', 'Enrolled', '0', '1', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('53', 'Rosela', 'Santa', 'Domingo', 'Female', '3', '3', '1', '', '0000-00-00', '', '09187776675', 'Enrolled', '0', '1', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('54', 'Leann', 'Tanego', 'Tresman', 'Female', '4', '1', '2', '', '0000-00-00', '', '09187789876', 'Enrolled', '0', '1', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('65', 'Aiza', 'Lakambini', 'Sacan', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09126787887', 'ENROLLED', '2', '1', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('79', 'Feibei', 'Hensey', 'Pastoril', 'FEMALE', '1', '1', '1', 'FM-2210', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '1', 'sagkahan, real st., tacloban ', '3');INSERT INTO beneficiary_tbl VALUES('91', '<NAME>', 'Guarino', 'Pacheco', 'Female', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'Enrolled', '0', '1', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('99', 'Jose', 'Balicat', 'Cabanatan', 'MALE', '5', '1', '2', '', '0000-00-00', '', '0912727123', 'ENROLLED', '0', '1', 'Manlurip, Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('109', 'Leonard', 'Robin', '<NAME>', 'MALE', '1', '0', '0', 'FM-2011', '2012-01-07', '2011-2012', '09278182812', 'NEW', '0', '0', 'sagkahan, tacloban city', '0');INSERT INTO beneficiary_tbl VALUES('137', '<NAME>', 'Uy', 'Crodua', 'Female', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'Enrolled', '0', '1', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('154', 'Francisco', 'Nuevas', 'Florentino', 'MALE', '1', '1', '1', '', '0000-00-00', '', '09124556777', 'ENROLLED', '0', '1', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('169', 'Katrina', 'Pigol', 'Baldonaza', 'FEMALE', '1', '1', '1', 'FM-2210', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '1', 'sagkahan, real st., tacloban ', '3');INSERT INTO beneficiary_tbl VALUES('175', 'Jeffree', 'Hurado', 'Padula', 'MALE', '1', '0', '0', 'FM-2011', '2012-01-07', '2011-2012', '09278182812', 'NEW', '0', '0', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('176', 'Kingsley', 'Kinto', 'Padilla', 'MALE', '1', '1', '1', '', '0000-00-00', '', '09124556777', 'ENROLLED', '0', '1', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('177', 'Samantha', 'Empanada', 'Dagami', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09126787887', 'ENROLLED', '2', '1', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('181', 'Ciara', 'Alopa', 'Natividad', 'FEMALE', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'Enrolled', '0', '1', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('183', '<NAME>', 'Cannabis', 'Sativa', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '1', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('189', 'Zeny', 'Gamat', 'Arniba', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '1', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('195', 'Albero', 'Santos', 'Del Rio', 'MALE', '1', '1', '4', 'FM-1001', '0000-00-00', '2010-2011', '09157400449', 'Enrolled', '0', '2', 'Dolores, Eastern Samar', '1');INSERT INTO beneficiary_tbl VALUES('196', 'Fatima', 'Go', 'Santos', 'FEMALE', '2', '1', '4', 'FM-1001', '0000-00-00', '2010-2011', '09157400449', 'Enrolled', '0', '2', 'Dolores, Eastern Samar', '1');INSERT INTO beneficiary_tbl VALUES('197', 'Feibei', 'Hensey', 'Pastoril', 'FEMALE', '1', '1', '1', 'FM-2210', '0000-00-00', '2010-2011', '09132131231', 'New', '0', '2', 'sagkahan, real st., tacloban ', '3');INSERT INTO beneficiary_tbl VALUES('198', 'Brianna', 'Abing', 'Delantar', 'FEMALE', '1', '1', '1', 'fm-1009a1', '0000-00-00', '2010-2011', '09132131231', 'Recommended for Waive', '0', '2', 'sagkahan, real st., tacloban city', '4');INSERT INTO beneficiary_tbl VALUES('199', 'Marlon', 'Pollisco', 'Magalona', 'MALE', '1', '1', '1', 'HM-10001', '0000-00-00', '2010-2011', '09132131231', 'Waived', '0', '2', 'tacloban, leyte', '5');INSERT INTO beneficiary_tbl VALUES('200', 'Andrew', 'Bonifacio', 'Espirito', 'MALE', '1', '3', '1', 'FM-2001', '2011-12-13', '2010-2011', '09132131231', 'NEW', '0', '2', 'CALBAYOG, WESTERN SAMAR', '6');INSERT INTO beneficiary_tbl VALUES('201', 'Alessandra', 'Garcia', 'Corrado', 'FEMALE', '1', '1', '1', 'FM-2000', '2011-12-29', '2010-2011', '09278182812', 'Enrolled', '7', '2', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('202', 'Leody', 'Robin', '<NAME>', 'MALE', '1', '3', '0', 'FM-1003', '2012-01-03', '2010-2011', '09278182812', 'ENROLLED', '0', '2', 'dolores, eastern samar', '2');INSERT INTO beneficiary_tbl VALUES('203', 'Leonard', 'Robin', '<NAME>', 'MALE', '1', '2', '0', 'FM-2011', '2012-01-07', '2011-2012', '09278182812', 'ENROLLED', '0', '2', 'sagkahan, tacloban city', '2');INSERT INTO beneficiary_tbl VALUES('204', 'Francisco', 'Nuevas', 'Florentino', 'MALE', '1', '1', '1', '', '0000-00-00', '', '09124556777', 'ENROLLED', '0', '2', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('205', 'Aiza', 'Lakambini', 'Sacan', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09126787887', 'ENROLLED', '2', '2', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('206', 'Sean', 'Ong', 'General', 'MALE', '3', '3', '3', '', '0000-00-00', '', '09107678909', 'ENROLLED', '0', '2', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('207', 'Vina', 'Padul', 'Malindog', 'FEMALE', '1', '1', '1', '', '0000-00-00', '', '09123454434', 'ENROLLED', '0', '2', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('208', 'Yolanda', 'Koi', 'Reyes', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09187794554', 'ENROLLED', '0', '2', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('209', '<NAME>', 'Uy', 'Crodua', 'Female', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'Enrolled', '0', '2', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('210', 'Joey', 'Cahanap', 'Amateo', 'MALE', '4', '1', '4', '', '0000-00-00', '', '09186754565', 'ENROLLED', '0', '2', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('211', '<NAME>', 'Figueroa', 'Gonzales', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '2', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('212', '<NAME>', 'Avanzado', 'Rodriguez', 'MALE', '6', '3', '2', '', '0000-00-00', '', '09126679099', 'Enrolled', '0', '2', 'Tacloban City', '6');INSERT INTO beneficiary_tbl VALUES('213', 'Helen', 'Codiamat', 'Balena', 'FEMALE', '1', '1', '3', '', '0000-00-00', '', '09177784565', 'Enrolled', '0', '2', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('214', 'Grace', 'Tejero', 'Martin', 'Female', '2', '2', '4', '', '0000-00-00', '', '09124432332', 'Enrolled', '0', '2', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('215', 'Rosanna', 'Roces', 'Ong', 'Female', '3', '3', '1', '', '0000-00-00', '', '09187776675', 'Enrolled', '0', '2', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('216', 'Jansen', 'Ang', 'Tangkad', 'Female', '4', '1', '2', '', '0000-00-00', '', '09187789876', 'Enrolled', '0', '2', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('217', '<NAME>', '<NAME>', 'Martin', 'MALE', '1', '1', '4', 'FM-1001', '0000-00-00', '2010-2011', '09157400449', 'Enrolled', '0', '2', 'Dolores, Eastern Samar', '1');INSERT INTO beneficiary_tbl VALUES('218', 'Sheena', 'Halili', 'Gonzales', 'FEMALE', '2', '1', '1', 'FM - 1007', '2008-06-03', '2010-2011', '09190291928', 'Enrolled', '0', '2', 'Dolores, Eastern Samar', '2');INSERT INTO beneficiary_tbl VALUES('219', 'Katrina', 'Pigol', 'Baldonaza', 'FEMALE', '1', '1', '1', 'FM-2210', '0000-00-00', '2010-2011', '09132131231', 'New', '0', '2', 'sagkahan, real st., tacloban ', '3');INSERT INTO beneficiary_tbl VALUES('220', 'Carlene', 'Henley', 'Baducduc', 'FEMALE', '1', '1', '1', 'fm-1009a1', '0000-00-00', '2010-2011', '09132131231', 'Recommended for Waive', '0', '2', 'sagkahan, real st., tacloban city', '4');INSERT INTO beneficiary_tbl VALUES('221', '<NAME>', 'Anosa', 'Aruta', 'MALE', '1', '1', '1', 'HM-10001', '0000-00-00', '2010-2011', '09132131231', 'Waived', '0', '2', 'tacloban, leyte', '5');INSERT INTO beneficiary_tbl VALUES('222', 'Jack', 'Bacho', 'Sabus', 'MALE', '1', '3', '1', 'FM-2001', '2011-12-13', '2010-2011', '09132131231', 'NEW', '0', '2', 'CALBAYOG, WESTERN SAMAR', '6');INSERT INTO beneficiary_tbl VALUES('223', 'Sharleney', 'Estaron', 'Minos', 'FEMALE', '1', '1', '1', 'FM-2000', '2011-12-29', '2010-2011', '09278182812', 'Enrolled', '7', '2', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('224', 'Mikee', 'Pedrosa', 'Arendayen', 'MALE', '1', '2', '0', 'FM-1003', '2012-01-03', '2010-2011', '09278182812', 'NEW', '0', '2', 'dolores, eastern samar', '2');INSERT INTO beneficiary_tbl VALUES('225', 'Jeffree', 'Hurado', 'Padula', 'MALE', '1', '2', '0', 'FM-2011', '2012-01-07', '2011-2012', '09278182812', 'NEW', '0', '2', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('226', 'Kingsley', 'Kinto', 'Padilla', 'MALE', '1', '1', '1', '', '0000-00-00', '', '09124556777', 'ENROLLED', '0', '2', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('227', 'Samantha', 'Empanada', 'Dagami', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09126787887', 'ENROLLED', '2', '1', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('228', 'Howard', 'Alonzo', 'Montano', 'MALE', '3', '3', '3', '', '0000-00-00', '', '09107678909', 'ENROLLED', '0', '2', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('229', 'Zarlene', 'Ramirez', 'Crisando', 'FEMALE', '1', '1', '1', '', '0000-00-00', '', '09123454434', 'ENROLLED', '0', '2', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('230', '<NAME>', 'Capon', 'Calzado', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09187794554', 'ENROLLED', '0', '2', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('231', 'Ciara', 'Alopa', 'Natividad', 'FEMALE', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'Enrolled', '0', '1', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('232', '<NAME>', '<NAME>tos', 'Koronel', 'MALE', '4', '1', '4', '', '0000-00-00', '', '09186754565', 'ENROLLED', '0', '2', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('233', '<NAME>', 'Cannabis', 'Sativa', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '2', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('234', 'Pedro', 'Sendong', 'Real', 'MALE', '6', '3', '2', '', '0000-00-00', '', '09126679099', 'Enrolled', '0', '2', 'Tacloban City', '6');INSERT INTO beneficiary_tbl VALUES('235', 'Marichu', 'Guarino', 'Ty', 'FEMALE', '1', '1', '3', '', '0000-00-00', '', '09177784565', 'Enrolled', '0', '2', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('236', 'Mikaela', 'Cahilo', 'Vizconde', 'Female', '2', '2', '4', '', '0000-00-00', '', '09124432332', 'Enrolled', '0', '2', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('237', 'Janice', 'Rivera', '<NAME>', 'Female', '3', '3', '1', '', '0000-00-00', '', '09187776675', 'Enrolled', '0', '2', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('238', '<NAME>', 'Impechmen', 'Corona', 'Female', '4', '1', '2', '', '0000-00-00', '', '09187789876', 'Enrolled', '0', '2', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('239', 'Zeny', 'Gamat', 'Arniba', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '2', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('240', 'Marinelle', 'Rosas', 'Cubilla', 'MALE', '6', '3', '2', '', '0000-00-00', '', '09126679099', 'Enrolled', '0', '2', 'Tacloban City', '6');INSERT INTO beneficiary_tbl VALUES('241', 'Maelyn', 'Jaca', 'Perol', 'FEMALE', '1', '1', '3', '', '0000-00-00', '', '09177784565', 'Enrolled', '0', '2', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('242', 'Jennifer', 'Gabut', 'Cecista', 'Female', '2', '2', '4', '', '0000-00-00', '', '09124432332', 'Enrolled', '0', '2', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('243', '<NAME>', 'Regolodong', 'Quitorio', 'Female', '3', '3', '1', '', '0000-00-00', '', '09187776675', 'Enrolled', '0', '2', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('244', 'April', 'Arles', 'Garol', 'Female', '4', '1', '2', '', '0000-00-00', '', '09187789876', 'Enrolled', '0', '2', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('245', '<NAME>', 'Garcia', 'Opana', 'MALE', '1', '1', '4', 'FM-1001', '0000-00-00', '2010-2011', '09157400449', 'ENROLLED', '0', '3', 'Dolores, Eastern Samar', '1');INSERT INTO beneficiary_tbl VALUES('246', '<NAME>', 'Destajo', 'Bacud', 'MALE', '2', '1', '1', 'FM - 1007', '2008-06-03', '2010-2011', '09190291928', 'ENROLLED', '3', '3', 'Dolores, Eastern Samar', '2');INSERT INTO beneficiary_tbl VALUES('247', '<NAME>', 'Lelina', 'Mina', 'MALE', '1', '1', '1', 'FM-2210', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '3', 'sagkahan, real st., tacloban ', '3');INSERT INTO beneficiary_tbl VALUES('248', 'Lilibelle', 'Aruta', 'Sabus', 'FEMALE', '1', '1', '1', 'fm-1009a1', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '3', 'sagkahan, real st., tacloban city', '4');INSERT INTO beneficiary_tbl VALUES('249', '<NAME>', 'Bajado', 'Gilhang', 'FEMALE', '1', '1', '1', 'HM-10001', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '3', '3', 'tacloban, leyte', '5');INSERT INTO beneficiary_tbl VALUES('250', 'Alexander', 'Hipe', 'Basul', 'MALE', '1', '3', '1', 'FM-2001', '2011-12-13', '2010-2011', '09132131231', 'ENROLLED', '0', '3', 'CALBAYOG, WESTERN SAMAR', '6');INSERT INTO beneficiary_tbl VALUES('251', 'Jeff', 'Marmita', '<NAME>', 'MALE', '1', '1', '1', 'FM-2000', '2011-12-29', '2010-2011', '09278182812', 'ENROLLED', '7', '3', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('252', 'Janeth', 'Sister', 'Alcaraz', 'FEMALE', '1', '1', '0', 'FM-1003', '2012-01-03', '2010-2011', '09278182812', 'ENROLLED', '0', '3', 'dolores, eastern samar', '2');INSERT INTO beneficiary_tbl VALUES('253', '<NAME>', 'Majamis', 'Capon', 'FEMALE', '1', '1', '0', 'FM-2011', '2012-01-07', '2011-2012', '09278182812', 'ENROLLED', '0', '3', 'sagkahan, tacloban city', '2');INSERT INTO beneficiary_tbl VALUES('254', 'Assunta', 'Bella', 'De Rossie', 'MALE', '1', '1', '1', '', '0000-00-00', '', '09124556777', 'ENROLLED', '0', '3', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('255', 'Zenyda', 'Bertos', '<NAME>', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09126787887', 'ENROLLED', '2', '3', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('256', 'Noli', 'Regolo', 'Cojuangco', 'MALE', '3', '3', '3', '', '0000-00-00', '', '09107678909', 'ENROLLED', '0', '2', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('257', 'Bien', '<NAME>', 'Magtulo', 'FEMALE', '1', '1', '1', '', '0000-00-00', '', '09123454434', 'ENROLLED', '0', '3', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('258', 'Minnie', 'Kerno', 'Dosdos', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09187794554', 'ENROLLED', '0', '3', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('259', 'Janelle', 'Remulta', 'Manahan', 'Female', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'Enrolled', '0', '3', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('260', 'Antonio', 'Bacsal', 'Eclera', 'MALE', '4', '1', '4', '', '0000-00-00', '', '09186754565', 'ENROLLED', '0', '3', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('261', 'Alodia', 'Fini', 'Marteja', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '3', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('262', 'Dindin', 'Dantes', 'Donoz', 'MALE', '6', '3', '2', '', '0000-00-00', '', '09126679099', 'Enrolled', '0', '3', 'Tacloban City', '6');INSERT INTO beneficiary_tbl VALUES('263', '<NAME>', 'Balen', 'Codiamat', 'FEMALE', '1', '1', '3', '', '0000-00-00', '', '09177784565', 'ENROLLED', '0', '3', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('264', '<NAME>', 'Tejero', 'Pelino', 'Female', '2', '2', '4', '', '0000-00-00', '', '09124432332', 'ENROLLED', '0', '3', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('265', 'Maia', 'Ordon', 'Valencia', 'Female', '3', '3', '1', '', '0000-00-00', '', '09187776675', 'ENROLLED', '0', '3', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('266', '<NAME>', 'Taga', 'Pandakan', 'Female', '4', '1', '2', '', '0000-00-00', '', '09187789876', 'ENROLLED', '0', '3', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('267', '<NAME>', 'Morallos', 'Rumeri', 'MALE', '1', '1', '4', 'FM-1001', '0000-00-00', '2010-2011', '09157400449', 'ENROLLED', '0', '3', 'Dolores, Eastern Samar', '1');INSERT INTO beneficiary_tbl VALUES('268', 'Katalina', '<NAME>', 'Acebuche', 'FEMALE', '2', '1', '1', 'FM - 1007', '2008-06-03', '2010-2011', '09190291928', 'ENROLLED', '0', '3', 'Dolores, Eastern Samar', '2');INSERT INTO beneficiary_tbl VALUES('269', 'Marta', 'Guardiado', 'Naonos', 'FEMALE', '1', '1', '1', 'FM-2210', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '3', 'sagkahan, real st., tacloban ', '3');INSERT INTO beneficiary_tbl VALUES('270', 'Stiffany', 'Bakal', 'Madilim', 'FEMALE', '1', '1', '1', 'fm-1009a1', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '3', 'sagkahan, real st., tacloban city', '4');INSERT INTO beneficiary_tbl VALUES('271', 'Markus', 'Delonhe', 'Matador', 'MALE', '1', '1', '1', 'HM-10001', '0000-00-00', '2010-2011', '09132131231', 'ENROLLED', '0', '3', 'tacloban, leyte', '5');INSERT INTO beneficiary_tbl VALUES('272', 'John', 'Jose', 'Matados', 'MALE', '1', '3', '1', 'FM-2001', '2011-12-13', '2010-2011', '09132131231', 'ENROLLED', '0', '3', 'CALBAYOG, WESTERN SAMAR', '6');INSERT INTO beneficiary_tbl VALUES('273', 'Ronald', 'Killua', 'Kurapika', 'FEMALE', '1', '1', '1', 'FM-2000', '2011-12-29', '2010-2011', '09278182812', 'ENROLLED', '7', '3', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('274', '<NAME>', 'Olat', 'Sabusap', 'MALE', '1', '1', '0', 'FM-1003', '2012-01-03', '2010-2011', '09278182812', 'ENROLLED', '0', '3', 'dolores, eastern samar', '2');INSERT INTO beneficiary_tbl VALUES('275', 'Angelo', 'Cainto', 'Dimasalang', 'MALE', '1', '1', '0', 'FM-2011', '2012-01-07', '2011-2012', '09278182812', 'ENROLLED', '0', '3', 'sagkahan, tacloban city', '1');INSERT INTO beneficiary_tbl VALUES('276', 'Tony', 'Quaiambo', 'Pasay', 'MALE', '1', '1', '1', '', '0000-00-00', '', '09124556777', 'ENROLLED', '0', '3', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('277', 'Marco', 'Kial', 'Alkadama', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09126787887', 'ENROLLED', '0', '3', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('278', '<NAME>', 'Potacio', 'Degodor', 'MALE', '3', '3', '3', '', '0000-00-00', '', '09107678909', 'ENROLLED', '0', '0', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('279', 'Yoko', '<NAME>', 'Ono', 'FEMALE', '1', '1', '1', '', '0000-00-00', '', '09123454434', 'ENROLLED', '0', '3', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('280', 'Dolly', 'Arpeta', 'Parton', 'FEMALE', '2', '2', '2', '', '0000-00-00', '', '09187794554', 'ENROLLED', '0', '3', 'V & G Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('281', '<NAME>', 'Hakuna', 'Arpon', 'FEMALE', '3', '3', '3', '', '0000-00-00', '', '09176545676', 'ENROLLED', '0', '3', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('282', '<NAME>', 'Taret', 'Reymundo', 'MALE', '4', '1', '4', '', '0000-00-00', '', '09186754565', 'ENROLLED', '0', '3', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('283', 'Giselle', 'Tayni', 'Zibua', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '3', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('284', 'Alexis', 'Jordias', 'Kornin', 'MALE', '6', '3', '2', '', '0000-00-00', '', '09126679099', 'ENROLLED', '0', '3', 'Tacloban City', '6');INSERT INTO beneficiary_tbl VALUES('285', 'Quinee', 'Destajo', 'Crizano', 'FEMALE', '1', '1', '3', '', '0000-00-00', '', '09177784565', 'ENROLLED', '0', '3', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('286', 'Crizalyn', 'Picardal', 'Rivera', 'Female', '2', '2', '4', '', '0000-00-00', '', '09124432332', 'ENROLLED', '0', '3', 'Tacloban City', '2');INSERT INTO beneficiary_tbl VALUES('287', 'Antonia', 'Cremilin', 'Banelo', 'Female', '3', '3', '1', '', '0000-00-00', '', '09187776675', 'ENROLLED', '0', '3', 'Tacloban City', '3');INSERT INTO beneficiary_tbl VALUES('288', 'Alexia', 'Tresmojeres', 'Decena', 'Female', '4', '1', '2', '', '0000-00-00', '', '09187789876', 'ENROLLED', '0', '3', 'Tacloban City', '4');INSERT INTO beneficiary_tbl VALUES('289', 'Tifanny', 'Mojeres', 'Jacinto', 'FEMALE', '5', '2', '1', '', '0000-00-00', '', '09176780089', 'ENROLLED', '0', '3', 'Tacloban City', '5');INSERT INTO beneficiary_tbl VALUES('290', 'Benidict', 'Lacdao', 'Forteza', 'MALE', '6', '3', '2', '', '0000-00-00', '', '09126679099', 'ENROLLED', '0', '3', 'Tacloban City', '6');INSERT INTO beneficiary_tbl VALUES('291', 'Barbie', 'Quijano', 'Romuar', 'FEMALE', '1', '1', '3', '', '0000-00-00', '', '09177784565', 'ENROLLED', '0', '3', 'Tacloban City', '1');INSERT INTO beneficiary_tbl VALUES('292', 'loncey', 'marasigan', 'molina', 'MALE', '1', '0', '0', '', '2012-02-02', '2005-2006', '09123456565', 'NEW', '0', '0', 'tacloban city', '0');INSERT INTO beneficiary_tbl VALUES('293', 'juan', 'dela', 'cruz', 'MALE', '1', '0', '0', 'FM-2011-001', '2012-02-04', '2011-2012', '09278182812', 'NEW', '0', '0', '770 real street, tacloban, leyte', '0');INSERT INTO beneficiary_tbl VALUES('294', 'juan', 'dela', 'cruz', 'MALE', '1', '0', '0', 'FM-2011-001', '2012-02-04', '2005-2006', '09278182812', 'NEW', '0', '0', '770 real street, tacloban, leyte', '0');INSERT INTO beneficiary_tbl VALUES('295', 'juan', 'dela', 'cruz', 'MALE', '1', '0', '0', 'FM-2011-001', '2012-02-04', '2005-2006', '09278182812', 'NEW', '0', '0', '770 real street, tacloban, leyte', '0');INSERT INTO beneficiary_tbl VALUES('296', 'juan', 'dela', 'cruz', 'MALE', '1', '0', '0', 'FM-2011-001', '2012-02-04', '2005-2006', '09278182812', 'NEW', '0', '0', '770 real street, tacloban, leyte', '0');INSERT INTO beneficiary_tbl VALUES('297', 'jiona', 'viruna', 'canlas', 'MALE', '1', '0', '0', 'FM-2011-002', '2012-02-08', '2011-2012', '876544567876543456', 'NEW', '0', '0', 'sagkahan tacloban city', '0');INSERT INTO beneficiary_tbl VALUES('298', 'jiona', 'viruna', 'canlas', 'MALE', '1', '0', '0', 'FM-2011-003', '2012-02-08', '2011-2012', '876544567876543456', 'NEW', '0', '0', 'sagkahan tacloban city', '0');DELETE FROM contactcontent_tblINSERT INTO contactcontent_tbl VALUES('1', ' <b></b><br><div style=\"text-align: center;\"><font style=\"font-family: courier new;\" size=\"4\"><span style=\"font-weight: bold;\"><NAME></span></font><br><span style=\"font-style: italic; font-family: courier new;\"><EMAIL></span><br></div><div style=\"text-align: center;\">Education Supervisor<br></div><br><div style=\"text-align: center;\"><font style=\"font-family: courier new; font-weight: bold;\" size=\"3\">Dr. <NAME></font><br>Acting Director, Office of the Director IV<br>&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp; <span style=\"font-style: italic;\">cor. Real Street and Calanipawan Road,</span><br style=\"font-style: italic;\"><span style=\"font-style: italic;\">&nbsp;&nbsp;&nbsp; Sagkahan, Tacloban City</span><br style=\"font-style: italic;\"><span style=\"font-style: italic;\">&nbsp;&nbsp;&nbsp; Telefax. # +63 (053) 523-40-34</span><br style=\"font-style: italic;\"><span style=\"font-style: italic;\">&nbsp;&nbsp;&nbsp; Tel. # +63 (053) 523-7437 / 7288 </span><br>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n </div>\r\n \r\n ');DELETE FROM coordinator_tblINSERT INTO coordinator_tbl VALUES('SC_STI', '123456', 'Nevaliza', 'Oscar', 'Tan', '1');INSERT INTO coordinator_tbl VALUES('ACLC_SC', '123456', '<NAME>', 'Hanopol', 'Lourd', '2');INSERT INTO coordinator_tbl VALUES('ESSUMAINSC', '123456', 'Bandoy', 'Christine', 'Mary', '3');INSERT INTO coordinator_tbl VALUES('evsutac_scoor', '123456', 'Clemente', 'W', 'George', '4');INSERT INTO coordinator_tbl VALUES('lnu_sc', '123456', 'Talacay', 'Lozada', 'Noel', '5');DELETE FROM director_tblINSERT INTO director_tbl VALUES('1', 'director', 'password', 'Director <NAME>');DELETE FROM edusupervisorINSERT INTO edusupervisor VALUES('1', 'edusupervisor', '112112', 'Lim', 'M', 'Antonio');DELETE FROM faqcontenttblINSERT INTO faqcontenttbl VALUES('1', '<span style=\"font-weight: bold;\">Frequently Answered Questions</span><br><div style=\"text-align: left;\"><ol><li><span style=\"font-weight: normal;\"><span style=\"font-weight: bold;\">How do I Pre-register? - You can Pre-register at the Front of the system.</span></span></li><li><span style=\"font-weight: normal;\"><span style=\"font-weight: bold;\">When can I receive the e-mail? - after your Pre-registration, the system will decide.<br></span></span></li></ol></div>\r\n\r\n\r\n\r\n\r\n');DELETE FROM frontmaincontent_tblINSERT INTO frontmaincontent_tbl VALUES('1', '<font style=\"font-family: times new roman;\" size=\"2\"><font size=\"4\"><center><b>Commission on Higher Education</b>\r\n<b>(CHED)</b></center></font></font><br style=\"font-family: comic sans ms;\"><font size=\"2\"><span style=\"font-family: georgia;\"><br><span style=\"font-style: italic;\">The</span> </span><font size=\"3\"><b style=\"font-family: georgia;\">Commission on Higher Education</b></font><span style=\"font-family: georgia; font-style: italic;\"><span style=\"font-weight: bold;\"> </span>was created on May 18, 1994&nbsp;through the passage of Republic Act No. \r\n7722, or the Higher Education Act of 1994. CHED, an attached agency to \r\nthe Office of the President for administrative purposes, is headed by \r\na&nbsp;chairman and four commissioners, each having a term of office of four \r\nyears. The&nbsp;Commission </span><b style=\"font-family: georgia; font-style: italic;\">En Banc\r\n</b><span style=\"font-family: georgia; font-style: italic;\">\r\n&nbsp;acts as a collegial body in formulating plans, policies and \r\nstrategies&nbsp;relating to higher education and the operation of CHED. The \r\ncreation of CHED was part of a broad agenda of reforms on the \r\ncountry’s&nbsp;education system outlined by the Congressional Commission on \r\nEducation </span><b style=\"font-family: georgia; font-style: italic;\">(EDCOM)</b><span style=\"font-family: georgia; font-style: italic;\">\r\n&nbsp;in&nbsp;1992. Part of the reforms was the trifocalization of the education \r\nsector into three&nbsp;governing bodies: the CHED for tertiary and&nbsp;graduate \r\neducation, the Department of Education </span><b style=\"font-family: georgia; font-style: italic;\">(DepEd)</b><span style=\"font-family: georgia; font-style: italic;\">\r\n&nbsp;for basic education and the&nbsp;Technical Education and Skills Development Authority </span><b style=\"font-family: georgia; font-style: italic;\">(TESDA)</b><span style=\"font-family: georgia; font-style: italic;\">\r\n&nbsp;for technical-vocational&nbsp;and middle-level education.</span></font><br><font size=\"2\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n </font>\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n ');DELETE FROM grade_tblINSERT INTO grade_tbl VALUES('1', '2011-2012', '1', '1', 'Physics 1', 'Major', '4', '3.5', '17');INSERT INTO grade_tbl VALUES('2', '2011-2012', '1', '1', 'Computer Programming 1', 'Major', '4', '4', '17');INSERT INTO grade_tbl VALUES('3', '2011-2012', '1', '1', 'Physical Education 1', 'Minor', '1', '3', '14');INSERT INTO grade_tbl VALUES('4', '2011-2012', '1', '1', 'Algebra', 'Minor', '2', '3', '14');INSERT INTO grade_tbl VALUES('5', '2011-2012', '1', '1', 'Data Structures', 'Major', '4', '3', '14');INSERT INTO grade_tbl VALUES('6', '2011-2012', '1', '1', 'Math Plus', 'Major', '1', '1', '14');INSERT INTO grade_tbl VALUES('7', '2011-2012', '1', '1', 'Professional Ethics', 'Minor', '1', '3', '14');INSERT INTO grade_tbl VALUES('8', '2011-2012', '1', '1', 'Computer Programming 1', 'Minor', '3', '3', '14');INSERT INTO grade_tbl VALUES('9', '2011-2012', '1', '1', 'BASIC CONCEPTS', 'Major', '4', '4', '2');INSERT INTO grade_tbl VALUES('10', '2005-2006', '1', '1', 'COMPUTER PROGRAMMING 1', 'Major', '4', '4', '2');INSERT INTO grade_tbl VALUES('11', '2011-2012', '1', '1', 'Probability and Statistics', 'Minor', '2', '3', '17');INSERT INTO grade_tbl VALUES('12', '2011-2012', '1', '1', 'Programming 1', 'Major', '4', '2', '17');INSERT INTO grade_tbl VALUES('13', '2011-2012', '1', '1', 'Physical Education 1', 'Minor', '1', '1', '17');INSERT INTO grade_tbl VALUES('14', '2011-2012', '1', '1', 'COMPUTER PROGRAMMING 1', 'Major', '4', '1', '30');DELETE FROM grant_tblINSERT INTO grant_tbl VALUES('1', 'FULL', 'SCHOLARSHIP', 'Full-Merit - 15,000.00/sem', 'This program is for bright Filipinos students who got the highest scores in the NCAE and must belong to the top ten of the gruduating class.', 'Full-Merit', '15000');INSERT INTO grant_tbl VALUES('2', 'HALF', 'SCHOLARSHIP', 'Half-Merit Scholarship', 'This program is for bright Filipinos students who got a percentile NCAE rating score of 85 - 89.', 'Half-Merit', '7500');INSERT INTO grant_tbl VALUES('3', 'SNPLP', 'STUDENT LOAN', 'STUDENT LOAN PROGRAM', 'STUDENT LOAN PROGRAM', 'STUDENT LOAN PROGRAM', '7500');INSERT INTO grant_tbl VALUES('4', 'DND-CHED-PASUC', 'GRANT-IN-AID', 'DND-CHED-PASUC STUDY GRANT PROGRAM', 'This grant program is intended for dependents of killed-in-action(KIA), battle related.', 'DND-CHED-PASUC/2500 per sem', '2500');INSERT INTO grant_tbl VALUES('5', 'OPAPP', 'GRANT-IN-AID', 'OPAPP-CHED STUDY GRANT PROGRAM FOR REBEL RETURNESS', 'This grant-program is intended for former rebels and the legitimized dependents which expands the access to college opportunities', 'OPAPP/5000 per sem', '5000');INSERT INTO grant_tbl VALUES('6', 'CHED- STGPFCD/S', 'GRANT-IN-AID', 'CHED SPECIAL STUDY GRANT PROGRAM FOR CONGRESSIONAL DISTRICT/', 'This grant-program is intended for the contituents for congressmen, party list representatives and senators', 'CHED- STGPFCD/S', '0');INSERT INTO grant_tbl VALUES('7', 'Grant in aid', 'GRANT-IN-AID', 'STUDY GRANT PROGRAM FOR SOLO PARENTS AND THEIR DEPENDENTS', 'This program is intended or all solo parents and their children', 'GRANT IN AID/6000', '6000');DELETE FROM hei_program_tblINSERT INTO hei_program_tbl VALUES('1', '1', '1', '4000', 'Active');DELETE FROM hei_tblINSERT INTO hei_tbl VALUES('1', 'STI - College - Tacloban Branch', '3', 'Tacloban City', 'Leyte', 'STI - Tacloban', '221-5531 (23)');INSERT INTO hei_tbl VALUES('2', 'AMA Computer Learning Center', '3', 'Tacloban City', 'Leyte', 'ACLC', '513-3213');INSERT INTO hei_tbl VALUES('3', 'Eastern Samar State University - Main Campus', '1', 'Borangan', 'Silangang Samar', 'ESSU - Main', '999-1231');INSERT INTO hei_tbl VALUES('4', 'Eastern Visayas State University', '1', 'Tacloban', 'Leyte', 'EVSU-Tacloban', '321 – 3229');INSERT INTO hei_tbl VALUES('5', 'Leyte Normal University', '1', 'Tacloban', 'Leyte', 'LNU', '321 – 3768');DELETE FROM heitype_tblINSERT INTO heitype_tbl VALUES('1', 'Public1', 'Public, funded by the National Government');INSERT INTO heitype_tbl VALUES('2', 'Public2', 'Public, funded by a Local Government');INSERT INTO heitype_tbl VALUES('3', 'Private1', 'Private SECTARIAN.');INSERT INTO heitype_tbl VALUES('4', 'Private2', 'Private Non-Sectarian stock.');INSERT INTO heitype_tbl VALUES('5', 'Private3', 'Private Non-Sectarian non-stock');DELETE FROM hstype_tblINSERT INTO hstype_tbl VALUES('1', 'Public General High School', 'Public General High School');INSERT INTO hstype_tbl VALUES('2', 'Public Vocational/Trade High S', 'Public Vocational/Trade High S');DELETE FROM mate_columnsINSERT INTO mate_columns VALUES('1', '0aa9f4fdc0abac12bc58d92a610fdd9a', 'id-StuFAP', 'email', 'Yes', '0', '2011-04-11 10:36:18');INSERT INTO mate_columns VALUES('2', '0aa9f4fdc0abac12bc58d92a610fdd9a', 'id-StuFAP', 'Example', 'No', '0', '2011-04-11 11:00:26');DELETE FROM missioncontenttblINSERT INTO missioncontenttbl VALUES('1', '<!--[if gte mso 9]><xml>\r\n <w:WordDocument>\r\n <w:View>Normal</w:View>\r\n <w:Zoom>0</w:Zoom>\r\n <w:TrackMoves/>\r\n <w:TrackFormatting/>\r\n <w:PunctuationKerning/>\r\n <w:ValidateAgainstSchemas/>\r\n <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>\r\n <w:IgnoreMixedContent>false</w:IgnoreMixedContent>\r\n <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>\r\n <w:DoNotPromoteQF/>\r\n <w:LidThemeOther>EN-US</w:LidThemeOther>\r\n <w:LidThemeAsian>X-NONE</w:LidThemeAsian>\r\n <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>\r\n <w:Compatibility>\r\n <w:BreakWrappedTables/>\r\n <w:SnapToGridInCell/>\r\n <w:WrapTextWithPunct/>\r\n <w:UseAsianBreakRules/>\r\n <w:DontGrowAutofit/>\r\n <w:SplitPgBreakAndParaMark/>\r\n <w:DontVertAlignCellWithSp/>\r\n <w:DontBreakConstrainedForcedTables/>\r\n <w:DontVertAlignInTxbx/>\r\n <w:Word11KerningPairs/>\r\n <w:CachedColBalance/>\r\n </w:Compatibility>\r\n <m:mathPr>\r\n <m:mathFont m:val=\"Cambria Math\"/>\r\n <m:brkBin m:val=\"before\"/>\r\n <m:brkBinSub m:val=\"&#45;-\"/>\r\n <m:smallFrac m:val=\"off\"/>\r\n <m:dispDef/>\r\n <m:lMargin m:val=\"0\"/>\r\n <m:rMargin m:val=\"0\"/>\r\n <m:defJc m:val=\"centerGroup\"/>\r\n <m:wrapIndent m:val=\"1440\"/>\r\n <m:intLim m:val=\"subSup\"/>\r\n <m:naryLim m:val=\"undOvr\"/>\r\n </m:mathPr></w:WordDocument>\r\n</xml><![endif]--><!--[if gte mso 9]><xml>\r\n <w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n LatentStyleCount=\"267\">\r\n <w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 7\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 8\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" Name=\"toc 9\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Table Grid\"/>\r\n <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Shading\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light List\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Grid\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Dark List\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful List\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"/>\r\n <w:LsdException Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"/>\r\n <w:LsdException Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"/>\r\n </w:LatentStyles>\r\n</xml><![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n {mso-style-name:\"Table Normal\";\r\n mso-tstyle-rowband-size:0;\r\n mso-tstyle-colband-size:0;\r\n mso-style-noshow:yes;\r\n mso-style-priority:99;\r\n mso-style-qformat:yes;\r\n mso-style-parent:\"\";\r\n mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n mso-para-margin-top:0in;\r\n mso-para-margin-right:0in;\r\n mso-para-margin-bottom:10.0pt;\r\n mso-para-margin-left:0in;\r\n line-height:115%;\r\n mso-pagination:widow-orphan;\r\n font-size:11.0pt;\r\n font-family:\"Calibri\",\"sans-serif\";\r\n mso-ascii-font-family:Calibri;\r\n mso-ascii-theme-font:minor-latin;\r\n mso-fareast-font-family:\"Times New Roman\";\r\n mso-fareast-theme-font:minor-fareast;\r\n mso-hansi-font-family:Calibri;\r\n mso-hansi-theme-font:minor-latin;\r\n mso-bidi-font-family:\"Times New Roman\";\r\n mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n<![endif]-->\r\n\r\n<p style=\"font-family: comic sans ms; font-weight: bold;\" class=\"MsoNormal\"><font size=\"4\">Mission</font></p>\r\n\r\n<p style=\"font-style: italic;\" class=\"MsoNormal\">To provide a Dynamic and Facilitative Leadership in the\r\nEducation and Integral Development of Individuals through Relevant. Accessible\r\nand Quality Higher Education Responsive to Socio – Economic Challenges in a\r\nDiverse and Globalized Society.</p>\r\n\r\n<p class=\"MsoNormal\">&nbsp;</p>\r\n\r\n<p style=\"font-family: comic sans ms; font-weight: bold;\" class=\"MsoNormal\"><font size=\"4\">Vision</font></p>\r\n\r\n<p style=\"font-style: italic;\" class=\"MsoNormal\">A humane, Morally<span style=\"mso-spacerun:yes\">&nbsp;\r\n</span>Upright,<span style=\"mso-spacerun:yes\">&nbsp; </span>Professionally\r\nCompetent, Globally Competitive Citizenry who are Prime<span style=\"mso-spacerun:yes\">&nbsp; </span>Movers in the Nation’s Socio – Economic and\r\nSustainable Development.</p>\r\n\r\n');DELETE FROM payment_tblINSERT INTO payment_tbl VALUES('1', '0', '7500', '231', '7500', '2012-02-02', '1', '2006-2007', 'SENT');INSERT INTO payment_tbl VALUES('2', '5200', '2300', '30', '7500', '2012-02-09', '1', '2011-2012', 'UNPAID');DELETE FROM paymentrecords_tblINSERT INTO paymentrecords_tbl VALUES('1', '1', '2012-02-03 09:15:24');DELETE FROM prereg_tblINSERT INTO prereg_tbl VALUES('1', 'abegail', 'opana', 'quiambao', '1993-02-05', '99', '90', '30000', '09132131231', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('2', 'jennise', 'robredillo', 'pasudag', '1995-12-07', '99', '99', '160000', '09132131231', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('3', 'jennise', 'robredillo', 'pasudag', '1995-12-07', '99', '99', '160000', '09132131231', '<EMAIL>', '1', '0');INSERT INTO prereg_tbl VALUES('4', 'john', 'monroe', 'mompil', '1997-12-19', '99', '99', '99999', '09132131231', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('5', 'aristotle', 'gloc', 'pollisco', '1996-02-09', '99', '99', '120000', '09132131231', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('6', 'marshall', 'eminem', 'mathers', '1992-10-27', '99', '99', '150000', '09278182812', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('7', 'marie', 'forteza', 'estaron', '1996-02-02', '99', '99', '123000', '09278182812', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('8', 'jon', 'bon', 'jovi', '1998-03-13', '99', '99', '150000', '09278182812', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('9', 'kurt', 'rizal', 'cobain', '1998-01-10', '99', '99', '123000', '09278182812', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('10', '<NAME>', 'abuedo', 'bandoy', '1996-03-07', '99', '99', '150000', '09278182812', '<EMAIL>', '1', '0');INSERT INTO prereg_tbl VALUES('11', 'Freddie', 'montano', 'tirazona', '1992-07-06', '99', '99', '150000', '09278182812', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('12', '<NAME>', 'abuedo', 'bandoy', '1991-12-15', '89', '90', '150000', '09107365795', '<EMAIL>', '2', '0');INSERT INTO prereg_tbl VALUES('13', 'Lilibelle', 'sabus', 'aruta', '1992-02-17', '99', '99', '150000', '1092000', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('14', 'juan', 'dela', 'cruz', '1992-01-11', '99', '99', '150000', '09278182812', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('15', '<NAME>', 'abuedo', 'bandoy', '1991-12-15', '89', '90', '150000', '09107365795', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('16', 'claudine', 'bandoy', 'espinosa', '1992-10-17', '87', '88', '20000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('17', 'krista', 'abria', 'aniceto', '1989-12-21', '87', '88', '150000', '09278182812', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('18', 'roseann', 'gilhang', 'bajado', '1990-12-01', '87', '88', '18000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('19', '<NAME>', 'jones', 'montano', '1991-01-27', '86', '88', '18000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('20', '<NAME>', 'tan', 'serdoncillo', '1990-04-27', '87', '99', '150000', '09107365795', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('21', 'brian', 'gonzaga', 'delantar', '1988-01-27', '87', '90', '18000', '09278182812', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('22', 'jane', 'caranyagan', 'malindog', '1993-01-29', '86', '88', '18000', '09278182812', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('23', 'jim', 'opana', 'garcia', '1991-02-14', '87', '88', '150000', '09278182812', 'ilo<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('24', 'johannes', 'terre', 'gaduena', '1988-01-27', '86', '99', '20000', '09123456565', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('25', 'zeny', 'TRUMPO', 'GAMATA', '1988-01-27', '86', '88', '20000', '09107365795', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('26', 'athena', 'chan', 'remulta', '1991-03-24', '87', '88', '18000', '09278182812', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('27', 'jimmy', 'lumactod', 'ablay', '1988-06-01', '86', '88', '18000', '09128509827', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('28', 'MYLENE', 'DELANTAR', 'ATREGENIO', '1991-05-24', '86', '88', '18000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('29', 'joseph', 'tan', 'biggel', '1991-01-26', '86', '89', '20000', '09107365795', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('30', '<NAME>', 'caranyagan', 'destajo', '1991-01-22', '86', '88', '20000', '09278182812', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('31', 'juvy', 'naing', 'sabijon', '1992-10-07', '87', '88', '18000', '09278182812', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('32', 'ARNILA', 'bandoy', 'ancla', '1988-02-23', '89', '90', '20000', '09062093133', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('33', 'agnes', 'pacheco', 'delatonga', '1989-03-14', '86', '88', '20000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('34', 'enchong', 'tan', 'dee', '1988-11-06', '87', '90', '20000', '09123456565', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('35', 'warley', 'chan', 'gagatiga', '1991-01-26', '86', '88', '20000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('36', 'lourdes', 'basario', 'cablao', '1991-01-01', '87', '90', '18000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('37', 'elizabeth', 'cablao', 'danas', '1991-05-27', '86', '88', '20000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('38', 'genevive', 'abuyen', 'quiza', '1991-03-20', '87', '90', '18000', '09278182812', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('39', 'vic', 'cablao', 'cruz', '1991-11-10', '86', '88', '20000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('40', 'jinky', 'marasigan', 'verzosa', '1992-07-29', '87', '90', '18000', '09083142803', '<EMAIL>', '2', '0');INSERT INTO prereg_tbl VALUES('41', 'violady', 'cascayan', 'quino', '1991-04-11', '88', '90', '18000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('42', 'loncey', 'marasigan', 'molina', '1991-12-14', '87', '90', '18000', '09123456565', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('43', 'marlon', 'naing', 'PADULLON', '1991-01-15', '87', '90', '20000', '09123456565', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('44', '<NAME>', 'LIMBOY', 'CABLAO', '1992-03-25', '87', '90', '20000', '09083142803', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('45', 'james', 'garcia', 'macapugas', '1992-02-24', '86', '88', '20000', '09107365795', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('46', 'manilyn', 'palce', 'ty', '1991-04-10', '86', '90', '18000', '09278182812', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('47', '<NAME>', 'bandoy', 'espinosa', '1992-05-02', '89', '88', '18000', '09107365795', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('48', 'reymund', 'bacha', 'canlu', '1991-07-20', '98', '97', '160000', '24345654', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('49', 'eugene', 'jiruyo', 'tarumba', '1991-07-29', '98', '98', '170000', '3455654325', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('50', 'jiona', 'viruna', 'canlas', '1990-06-28', '80', '85', '190000', '876544567876543456', '<EMAIL>', '3', '1');INSERT INTO prereg_tbl VALUES('51', 'geomelyn', 'garuna', 'bernal', '1990-01-28', '87', '86', '190000', '123456756543454', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('52', 'karla', 'loste', 'garcia', '1992-12-12', '93', '92', '190000', '09083142803', '<EMAIL>', '1', '1');INSERT INTO prereg_tbl VALUES('53', 'Santino', 'dantes', 'marello', '1995-08-15', '89', '87', '180000', '09278182812', '<EMAIL>', '2', '0');INSERT INTO prereg_tbl VALUES('54', 'Santino', 'dantes', 'marello', '1995-08-15', '89', '87', '180000', '09278182812', '<EMAIL>', '2', '0');INSERT INTO prereg_tbl VALUES('55', 'ronelyn', 'bandoy', 'dagamina', '1990-07-14', '88', '88', '200000', '09107887567', '<EMAIL>', '2', '0');INSERT INTO prereg_tbl VALUES('56', 'ronelyn', 'bandoy', 'dagamina', '1990-07-14', '88', '88', '200000', '09107887567', '<EMAIL>', '2', '1');INSERT INTO prereg_tbl VALUES('57', 'faith', 'SY', 'Luna', '1991-02-01', '85', '89', '130000', '09187664556', '<EMAIL>', '2', '1');DELETE FROM progclass_tblINSERT INTO progclass_tbl VALUES('1', 'Certificate', '');INSERT INTO progclass_tbl VALUES('2', 'Diploma', 'e.g. Diploma in Information Technology');INSERT INTO progclass_tbl VALUES('3', 'Bachelor', 'e.g. Bachelor of Laws');INSERT INTO progclass_tbl VALUES('4', 'Bachelor of Science', 'e.g. BS Computer Science');INSERT INTO progclass_tbl VALUES('5', 'Bachelor of Arts', 'e.g. AB Humanities');INSERT INTO progclass_tbl VALUES('6', 'Master', 'e.g. Master of Business Administration');INSERT INTO progclass_tbl VALUES('7', 'Master of Arts', '');INSERT INTO progclass_tbl VALUES('8', 'Master of Science', '');DELETE FROM program_tblINSERT INTO program_tbl VALUES('1', 'BSCS', 'Bachelor Of Science In Computer Science', '4', '4', 'IT');INSERT INTO program_tbl VALUES('2', 'BSCOE', 'Bachelor Of Science In Computer Engineering', '4', '5', 'IT');INSERT INTO program_tbl VALUES('3', 'BSIT', 'Bachelor Of Science In Information Technology', '4', '4', 'IT');INSERT INTO program_tbl VALUES('4', 'BSMgt', 'Bachelor Of Science In Management', '4', '4', 'BUSINESS');DELETE FROM schoolyr_tblINSERT INTO schoolyr_tbl VALUES('1', '2005-2006');INSERT INTO schoolyr_tbl VALUES('2', '2006-2007');INSERT INTO schoolyr_tbl VALUES('5', '2007-2008');INSERT INTO schoolyr_tbl VALUES('7', '2009-2010');INSERT INTO schoolyr_tbl VALUES('20', '2010-2011');INSERT INTO schoolyr_tbl VALUES('21', '2011-2012');INSERT INTO schoolyr_tbl VALUES('29', '2012-2013');INSERT INTO schoolyr_tbl VALUES('30', '2013-2014');INSERT INTO schoolyr_tbl VALUES('31', '2014-2015');INSERT INTO schoolyr_tbl VALUES('32', '2015-2016');DELETE FROM sponsor_tblINSERT INTO sponsor_tbl VALUES('1', 'Senator', 'Bong', 'Alvarez', 'Revilla', 'Senator Revilla Foundation');INSERT INTO sponsor_tbl VALUES('2', 'Honorable', 'Anne', 'Ty', 'Tang', 'Anti-Tang Party List');INSERT INTO sponsor_tbl VALUES('3', 'Sen.', 'Juan', 'Dela', 'Cruz', 'Juan Dela Cruz Foundation');DELETE FROM stufapINSERT INTO stufap VALUES('1', 'Juan', 'Cruz', 'STI', 'BS Computer Science', '<EMAIL>', '2011-04-29 10:37:51', '');DELETE FROM sysadminINSERT INTO sysadmin VALUES('1', 'admin', '1', 'Roniel');
<filename>data/schema.sql CREATE TABLE tweets ( author TEXT, content TEXT, id INTEGER, pubdate INTEGER );
<reponame>MrFizban/SQLAssignment2 SELECT DISTINCT nt.continent, MAX(st.capacity), ROUND(AVG(st.capacity),2) as "avg" FROM "Nationality" as nt LEFT OUTER JOIN "Stadium" as st ON nt.country = st.country GROUP BY nt.continent ORDER BY nt.continent
REM INSERTING into SYS.AW$ SET DEFINE OFF; Insert into SYS.AW$ (AWNAME,OWNER#,AWSEQ#,VERSION,OIDS,OBJS,DICT,RSYGEN) values ('EXPRESS','0','100','6',null,null,null,null); Insert into SYS.AW$ (AWNAME,OWNER#,AWSEQ#,VERSION,OIDS,OBJS,DICT,RSYGEN) values ('AWMD','0','101','6',null,null,null,null); Insert into SYS.AW$ (AWNAME,OWNER#,AWSEQ#,VERSION,OIDS,OBJS,DICT,RSYGEN) values ('AWCREATE','0','102','6',null,null,null,null); Insert into SYS.AW$ (AWNAME,OWNER#,AWSEQ#,VERSION,OIDS,OBJS,DICT,RSYGEN) values ('AWCREATE10G','0','103','6',null,null,null,null); Insert into SYS.AW$ (AWNAME,OWNER#,AWSEQ#,VERSION,OIDS,OBJS,DICT,RSYGEN) values ('AWXML','0','104','6',null,null,null,null); Insert into SYS.AW$ (AWNAME,OWNER#,AWSEQ#,VERSION,OIDS,OBJS,DICT,RSYGEN) values ('AWREPORT','0','105','6',null,null,null,null);
<reponame>januarfonti/komoditas -- phpMyAdmin SQL Dump -- version 4.4.12 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Sep 30, 2015 at 01:27 PM -- Server version: 5.6.25 -- PHP Version: 5.6.11 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `db_komoditas` -- -- -------------------------------------------------------- -- -- Table structure for table `backend_users` -- CREATE TABLE IF NOT EXISTS `backend_users` ( `id` int(11) unsigned NOT NULL, `role` enum('admin','staff','staff-2','staff-3') NOT NULL DEFAULT 'staff', `username` varchar(100) NOT NULL, `password` varchar(255) NOT NULL, `full_name` varchar(50) DEFAULT NULL, `active` tinyint(1) unsigned DEFAULT '1', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; -- -- Dumping data for table `backend_users` -- INSERT INTO `backend_users` (`id`, `role`, `username`, `password`, `full_name`, `active`, `created_at`) VALUES (1, 'admin', 'admin', <PASSWORD>', 'Administrator', 1, '2014-07-31 04:56:41'), (3, 'admin', 'adminsikompa', '$2y$10$wjaM1i/vVwU.MSsO6NwZi..rpePreoNDeP6xySysquqLu/nDS57jC', 'Admin Sikompa', 1, '2015-09-18 06:38:51'), (4, 'staff-2', 'staff2', '$2y$10$CwpVN4rSvDdiUWvC5J3AYuzlmgsVvovXek47jjqSM2WypNTrP1IFW', 'Staff 2', 1, '2015-09-30 08:42:44'); -- -------------------------------------------------------- -- -- Table structure for table `tb_bahanpokok` -- CREATE TABLE IF NOT EXISTS `tb_bahanpokok` ( `id_bahanpokok` int(11) NOT NULL, `nama_bahan_pokok` varchar(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_bahanpokok` -- INSERT INTO `tb_bahanpokok` (`id_bahanpokok`, `nama_bahan_pokok`) VALUES (1, 'Beras'), (2, 'Daging'), (3, '<NAME>'), (4, 'Cabai'), (5, 'Bawang'), (6, 'Gula'); -- -------------------------------------------------------- -- -- Table structure for table `tb_berita` -- CREATE TABLE IF NOT EXISTS `tb_berita` ( `id_berita` int(11) NOT NULL, `user` varchar(50) NOT NULL, `judul_berita` varchar(100) NOT NULL, `isi_berita` text NOT NULL, `gambar` varchar(100) NOT NULL, `tgl_update` date NOT NULL, `status` tinyint(1) unsigned NOT NULL DEFAULT '1' ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_berita` -- INSERT INTO `tb_berita` (`id_berita`, `user`, `judul_berita`, `isi_berita`, `gambar`, `tgl_update`, `status`) VALUES (3, 'Administrator', 'Lorem Ipsum dolor sit amet', '<div>\r\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus libero libero, imperdiet id aliquet a, condimentum faucibus ante. Suspendisse vestibulum porta lorem, et efficitur mi convallis a. Nunc luctus eros ut purus iaculis, vel tincidunt quam facilisis. Praesent elementum, odio quis aliquet cursus, ipsum ipsum dictum nunc, vitae tincidunt nisi tortor quis mi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum suscipit mollis mauris. Morbi vestibulum vitae elit quis varius. Etiam varius quam a enim semper pretium. Donec condimentum commodo ipsum quis condimentum. Vivamus blandit mattis posuere. Cras hendrerit nibh a consectetur aliquet. Nunc condimentum odio interdum lacus vehicula, sed ullamcorper lacus mollis.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Aenean ornare nisl in luctus semper. Vestibulum congue at ex id iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Ut ullamcorper lacinia neque ut tempus. Nulla facilisi. Quisque id bibendum arcu. Sed a nunc vestibulum, gravida diam at, auctor tellus. Fusce quis quam a mauris porta tincidunt a ut neque. Donec maximus tortor eget ex eleifend, ut laoreet metus vestibulum. In hac habitasse platea dictumst.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Maecenas dapibus commodo magna, ut ultricies nisi tincidunt eget. Praesent vel consectetur ligula. Morbi condimentum massa nec sodales fringilla. Suspendisse nisl leo, tincidunt vel augue auctor, semper auctor metus. Maecenas sit amet ornare nibh. Praesent a malesuada urna. Curabitur cursus nisl ut arcu pulvinar aliquet. Mauris sodales quis lacus eget luctus. Sed luctus euismod gravida. In sed suscipit mauris. Integer feugiat tortor libero, ac facilisis massa pretium sed. Etiam pharetra, dui vel porttitor ullamcorper, dolor nibh commodo mauris, id faucibus tellus leo sit amet urna. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc eleifend lacinia blandit. Vivamus facilisis in lacus tincidunt blandit.</div>\r\n', '8cfb0-filkom.png', '2015-08-20', 1), (4, 'Administrator', 'Berita 2', '<div>\r\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus libero libero, imperdiet id aliquet a, condimentum faucibus ante. Suspendisse vestibulum porta lorem, et efficitur mi convallis a. Nunc luctus eros ut purus iaculis, vel tincidunt quam facilisis. Praesent elementum, odio quis aliquet cursus, ipsum ipsum dictum nunc, vitae tincidunt nisi tortor quis mi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum suscipit mollis mauris. Morbi vestibulum vitae elit quis varius. Etiam varius quam a enim semper pretium. Donec condimentum commodo ipsum quis condimentum. Vivamus blandit mattis posuere. Cras hendrerit nibh a consectetur aliquet. Nunc condimentum odio interdum lacus vehicula, sed ullamcorper lacus mollis.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Aenean ornare nisl in luctus semper. Vestibulum congue at ex id iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Ut ullamcorper lacinia neque ut tempus. Nulla facilisi. Quisque id bibendum arcu. Sed a nunc vestibulum, gravida diam at, auctor tellus. Fusce quis quam a mauris porta tincidunt a ut neque. Donec maximus tortor eget ex eleifend, ut laoreet metus vestibulum. In hac habitasse platea dictumst.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Maecenas dapibus commodo magna, ut ultricies nisi tincidunt eget. Praesent vel consectetur ligula. Morbi condimentum massa nec sodales fringilla. Suspendisse nisl leo, tincidunt vel augue auctor, semper auctor metus. Maecenas sit amet ornare nibh. Praesent a malesuada urna. Curabitur cursus nisl ut arcu pulvinar aliquet. Mauris sodales quis lacus eget luctus. Sed luctus euismod gravida. In sed suscipit mauris. Integer feugiat tortor libero, ac facilisis massa pretium sed. Etiam pharetra, dui vel porttitor ullamcorper, dolor nibh commodo mauris, id faucibus tellus leo sit amet urna. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc eleifend lacinia blandit. Vivamus facilisis in lacus tincidunt blandit.</div>\r\n', '01e3a-flat-design-concept-internet-and-e-learning-icons-vectors590.jpg', '2015-08-20', 1), (5, 'Administrator', 'Berita 3', '<div>\r\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus libero libero, imperdiet id aliquet a, condimentum faucibus ante. Suspendisse vestibulum porta lorem, et efficitur mi convallis a. Nunc luctus eros ut purus iaculis, vel tincidunt quam facilisis. Praesent elementum, odio quis aliquet cursus, ipsum ipsum dictum nunc, vitae tincidunt nisi tortor quis mi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum suscipit mollis mauris. Morbi vestibulum vitae elit quis varius. Etiam varius quam a enim semper pretium. Donec condimentum commodo ipsum quis condimentum. Vivamus blandit mattis posuere. Cras hendrerit nibh a consectetur aliquet. Nunc condimentum odio interdum lacus vehicula, sed ullamcorper lacus mollis.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Aenean ornare nisl in luctus semper. Vestibulum congue at ex id iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Ut ullamcorper lacinia neque ut tempus. Nulla facilisi. Quisque id bibendum arcu. Sed a nunc vestibulum, gravida diam at, auctor tellus. Fusce quis quam a mauris porta tincidunt a ut neque. Donec maximus tortor eget ex eleifend, ut laoreet metus vestibulum. In hac habitasse platea dictumst.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Maecenas dapibus commodo magna, ut ultricies nisi tincidunt eget. Praesent vel consectetur ligula. Morbi condimentum massa nec sodales fringilla. Suspendisse nisl leo, tincidunt vel augue auctor, semper auctor metus. Maecenas sit amet ornare nibh. Praesent a malesuada urna. Curabitur cursus nisl ut arcu pulvinar aliquet. Mauris sodales quis lacus eget luctus. Sed luctus euismod gravida. In sed suscipit mauris. Integer feugiat tortor libero, ac facilisis massa pretium sed. Etiam pharetra, dui vel porttitor ullamcorper, dolor nibh commodo mauris, id faucibus tellus leo sit amet urna. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc eleifend lacinia blandit. Vivamus facilisis in lacus tincidunt blandit.</div>\r\n', '6774a-manfaat-bawang-putih.jpg', '2015-09-16', 1), (6, 'Administrator', '<NAME>', '<div>\r\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus libero libero, imperdiet id aliquet a, condimentum faucibus ante. Suspendisse vestibulum porta lorem, et efficitur mi convallis a. Nunc luctus eros ut purus iaculis, vel tincidunt quam facilisis. Praesent elementum, odio quis aliquet cursus, ipsum ipsum dictum nunc, vitae tincidunt nisi tortor quis mi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum suscipit mollis mauris. Morbi vestibulum vitae elit quis varius. Etiam varius quam a enim semper pretium. Donec condimentum commodo ipsum quis condimentum. Vivamus blandit mattis posuere. Cras hendrerit nibh a consectetur aliquet. Nunc condimentum odio interdum lacus vehicula, sed ullamcorper lacus mollis.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Aenean ornare nisl in luctus semper. Vestibulum congue at ex id iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Ut ullamcorper lacinia neque ut tempus. Nulla facilisi. Quisque id bibendum arcu. Sed a nunc vestibulum, gravida diam at, auctor tellus. Fusce quis quam a mauris porta tincidunt a ut neque. Donec maximus tortor eget ex eleifend, ut laoreet metus vestibulum. In hac habitasse platea dictumst.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Maecenas dapibus commodo magna, ut ultricies nisi tincidunt eget. Praesent vel consectetur ligula. Morbi condimentum massa nec sodales fringilla. Suspendisse nisl leo, tincidunt vel augue auctor, semper auctor metus. Maecenas sit amet ornare nibh. Praesent a malesuada urna. Curabitur cursus nisl ut arcu pulvinar aliquet. Mauris sodales quis lacus eget luctus. Sed luctus euismod gravida. In sed suscipit mauris. Integer feugiat tortor libero, ac facilisis massa pretium sed. Etiam pharetra, dui vel porttitor ullamcorper, dolor nibh commodo mauris, id faucibus tellus leo sit amet urna. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc eleifend lacinia blandit. Vivamus facilisis in lacus tincidunt blandit.</div>\r\n', '79ddf-bawang-merah.jpg', '2015-09-16', 1), (7, 'Administrator', 'Berita 5', '<div>\r\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus libero libero, imperdiet id aliquet a, condimentum faucibus ante. Suspendisse vestibulum porta lorem, et efficitur mi convallis a. Nunc luctus eros ut purus iaculis, vel tincidunt quam facilisis. Praesent elementum, odio quis aliquet cursus, ipsum ipsum dictum nunc, vitae tincidunt nisi tortor quis mi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum suscipit mollis mauris. Morbi vestibulum vitae elit quis varius. Etiam varius quam a enim semper pretium. Donec condimentum commodo ipsum quis condimentum. Vivamus blandit mattis posuere. Cras hendrerit nibh a consectetur aliquet. Nunc condimentum odio interdum lacus vehicula, sed ullamcorper lacus mollis.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Aenean ornare nisl in luctus semper. Vestibulum congue at ex id iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Ut ullamcorper lacinia neque ut tempus. Nulla facilisi. Quisque id bibendum arcu. Sed a nunc vestibulum, gravida diam at, auctor tellus. Fusce quis quam a mauris porta tincidunt a ut neque. Donec maximus tortor eget ex eleifend, ut laoreet metus vestibulum. In hac habitasse platea dictumst.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Maecenas dapibus commodo magna, ut ultricies nisi tincidunt eget. Praesent vel consectetur ligula. Morbi condimentum massa nec sodales fringilla. Suspendisse nisl leo, tincidunt vel augue auctor, semper auctor metus. Maecenas sit amet ornare nibh. Praesent a malesuada urna. Curabitur cursus nisl ut arcu pulvinar aliquet. Mauris sodales quis lacus eget luctus. Sed luctus euismod gravida. In sed suscipit mauris. Integer feugiat tortor libero, ac facilisis massa pretium sed. Etiam pharetra, dui vel porttitor ullamcorper, dolor nibh commodo mauris, id faucibus tellus leo sit amet urna. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc eleifend lacinia blandit. Vivamus facilisis in lacus tincidunt blandit.</div>\r\n', '54ce4-telurayamkampung_cntt.jpg', '2015-09-16', 1), (8, 'Administrator', 'Berita 6', '<div>\r\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus libero libero, imperdiet id aliquet a, condimentum faucibus ante. Suspendisse vestibulum porta lorem, et efficitur mi convallis a. Nunc luctus eros ut purus iaculis, vel tincidunt quam facilisis. Praesent elementum, odio quis aliquet cursus, ipsum ipsum dictum nunc, vitae tincidunt nisi tortor quis mi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vestibulum suscipit mollis mauris. Morbi vestibulum vitae elit quis varius. Etiam varius quam a enim semper pretium. Donec condimentum commodo ipsum quis condimentum. Vivamus blandit mattis posuere. Cras hendrerit nibh a consectetur aliquet. Nunc condimentum odio interdum lacus vehicula, sed ullamcorper lacus mollis.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Aenean ornare nisl in luctus semper. Vestibulum congue at ex id iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Ut ullamcorper lacinia neque ut tempus. Nulla facilisi. Quisque id bibendum arcu. Sed a nunc vestibulum, gravida diam at, auctor tellus. Fusce quis quam a mauris porta tincidunt a ut neque. Donec maximus tortor eget ex eleifend, ut laoreet metus vestibulum. In hac habitasse platea dictumst.</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n Maecenas dapibus commodo magna, ut ultricies nisi tincidunt eget. Praesent vel consectetur ligula. Morbi condimentum massa nec sodales fringilla. Suspendisse nisl leo, tincidunt vel augue auctor, semper auctor metus. Maecenas sit amet ornare nibh. Praesent a malesuada urna. Curabitur cursus nisl ut arcu pulvinar aliquet. Mauris sodales quis lacus eget luctus. Sed luctus euismod gravida. In sed suscipit mauris. Integer feugiat tortor libero, ac facilisis massa pretium sed. Etiam pharetra, dui vel porttitor ullamcorper, dolor nibh commodo mauris, id faucibus tellus leo sit amet urna. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc eleifend lacinia blandit. Vivamus facilisis in lacus tincidunt blandit.</div>\r\n', '3387a-8844_cabe.jpg', '2015-09-16', 1); -- -------------------------------------------------------- -- -- Table structure for table `tb_dataproduksi` -- CREATE TABLE IF NOT EXISTS `tb_dataproduksi` ( `id_dataproduksi` int(11) NOT NULL, `id_kecamatan` int(11) DEFAULT NULL, `bulan` varchar(15) DEFAULT NULL, `tahun` int(11) DEFAULT NULL, `produksi_padi` int(11) DEFAULT NULL, `produksi_bawang_putih` int(11) DEFAULT NULL, `produksi_jagung` int(11) DEFAULT NULL, `produksi_kedelai` int(11) DEFAULT NULL, `produksi_bawang_merah` int(11) DEFAULT NULL ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_dataproduksi` -- INSERT INTO `tb_dataproduksi` (`id_dataproduksi`, `id_kecamatan`, `bulan`, `tahun`, `produksi_padi`, `produksi_bawang_putih`, `produksi_jagung`, `produksi_kedelai`, `produksi_bawang_merah`) VALUES (1, 2, 'Agustus', 2015, 50, 20, 60, 23, 50), (2, 3, 'Agustus', 2015, 32, 35, 87, 12, 54), (3, 1, 'Agustus', 2015, 24, 84, 20, 15, 29), (4, 2, 'September', 2015, 38, 29, 49, 10, 54), (5, 3, 'September', 2015, 23, 53, 23, 59, 19), (6, 1, 'September', 2015, 34, 18, 24, 28, 19); -- -------------------------------------------------------- -- -- Table structure for table `tb_hargakomoditas` -- CREATE TABLE IF NOT EXISTS `tb_hargakomoditas` ( `id_komoditas` int(11) NOT NULL, `id_bahanpokok` int(11) NOT NULL, `id_jenisbahanpokok` int(11) NOT NULL, `id_pasar` int(11) NOT NULL, `satuan` varchar(50) NOT NULL, `tgl_update` date NOT NULL, `harga` int(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_hargakomoditas` -- INSERT INTO `tb_hargakomoditas` (`id_komoditas`, `id_bahanpokok`, `id_jenisbahanpokok`, `id_pasar`, `satuan`, `tgl_update`, `harga`) VALUES (25, 5, 12, 2, 'Kg', '2015-09-08', 23000), (26, 5, 12, 1, 'Kg', '2015-09-08', 40000), (27, 5, 11, 2, 'Kg', '2015-09-08', 54000), (28, 5, 11, 1, 'Kg', '2015-09-08', 56000), (29, 1, 7, 2, 'Kg', '2015-09-08', 23000), (30, 1, 7, 1, 'Kg', '2015-09-08', 34000), (31, 1, 1, 2, 'Kg', '2015-09-08', 52000), (32, 1, 1, 1, 'Kg', '2015-09-08', 23400), (33, 1, 2, 2, 'Kg', '2015-09-08', 15000), (34, 1, 2, 1, 'Kg', '2015-09-08', 23000), (35, 4, 13, 2, 'Kg', '2015-09-08', 16000), (36, 4, 13, 1, 'Kg', '2015-09-08', 14000), (37, 4, 8, 2, 'Kg', '2015-09-08', 23100), (38, 4, 8, 1, 'Kg', '2015-09-08', 22500), (39, 2, 4, 2, 'Kg', '2015-09-08', 75000), (40, 2, 4, 1, 'Kg', '2015-09-08', 54000), (41, 2, 3, 2, 'Kg', '2015-09-08', 72000), (42, 2, 3, 1, 'Kg', '2015-09-08', 82000), (43, 6, 10, 2, 'Kg', '2015-09-08', 20000), (44, 6, 10, 1, 'Kg', '2015-09-08', 23000), (45, 6, 9, 2, 'Kg', '2015-09-08', 32000), (46, 6, 9, 1, 'Kg', '2015-09-08', 54200), (47, 3, 6, 2, 'Kg', '2015-09-08', 31000), (48, 3, 6, 1, 'Kg', '2015-09-08', 32200), (49, 3, 5, 2, 'Kg', '2015-09-08', 24000), (50, 3, 5, 1, 'Kg', '2015-09-08', 32100), (51, 5, 12, 2, 'Kg', '2015-09-10', 23000), (52, 5, 12, 1, 'Kg', '2015-09-10', 40000), (53, 5, 11, 2, 'Kg', '2015-09-10', 10000), (54, 5, 11, 1, 'Kg', '2015-09-10', 3000), (55, 1, 7, 2, 'Kg', '2015-09-10', 120000), (56, 1, 7, 1, 'Kg', '2015-09-10', 220000), (57, 1, 1, 2, 'Kg', '2015-09-10', 210000), (58, 1, 1, 1, 'Kg', '2015-09-10', 32100), (59, 1, 2, 2, 'Kg', '2015-09-10', 250000), (60, 1, 2, 1, 'Kg', '2015-09-10', 150000), (61, 4, 13, 2, 'Kg', '2015-09-10', 11000), (62, 4, 13, 1, 'Kg', '2015-09-10', 12000), (63, 4, 8, 2, 'Kg', '2015-09-10', 15000), (64, 4, 8, 1, 'Kg', '2015-09-10', 5000), (65, 2, 4, 2, 'Kg', '2015-09-10', 154000), (66, 2, 4, 1, 'Kg', '2015-09-10', 130000), (67, 2, 3, 2, 'Kg', '2015-09-10', 125000), (68, 2, 3, 1, 'Kg', '2015-09-10', 142000), (69, 6, 10, 2, 'Kg', '2015-09-10', 25000), (70, 6, 10, 1, 'Kg', '2015-09-10', 5300), (71, 6, 9, 2, 'Kg', '2015-09-10', 5600), (72, 6, 9, 1, 'Kg', '2015-09-10', 6400), (73, 3, 6, 2, 'Kg', '2015-09-10', 20000), (74, 3, 6, 1, 'Kg', '2015-09-10', 19500), (75, 3, 5, 2, 'Kg', '2015-09-10', 17500), (76, 3, 5, 1, 'Kg', '2015-09-10', 20000); -- -------------------------------------------------------- -- -- Table structure for table `tb_jenisbahanpokok` -- CREATE TABLE IF NOT EXISTS `tb_jenisbahanpokok` ( `id_jenisbahanpokok` int(11) NOT NULL, `nama_jenis_bahan_pokok` varchar(100) NOT NULL, `foto_jenis_bahan_pokok` varchar(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_jenisbahanpokok` -- INSERT INTO `tb_jenisbahanpokok` (`id_jenisbahanpokok`, `nama_jenis_bahan_pokok`, `foto_jenis_bahan_pokok`) VALUES (1, '<NAME>', 'ba8dd-beras-merah.jpg'), (2, '<NAME>ih', 'c7cf9-putih-beras_zps2dfdcce7.jpg'), (3, '<NAME>', '12efb-daging.jpg'), (4, '<NAME>', '016bf-7136_daging_ayam.jpg'), (5, '<NAME>', '3da7c-telur.jpg'), (6, '<NAME>', '1e17f-telurayamkampung_cntt.jpg'), (7, '<NAME>', 'd1ad9-09122012005.jpg'), (8, '<NAME>', '0a2ee-8844_cabe.jpg'), (9, '<NAME>', '8791a-ilustrasi-gula-pasir_09082012101104.jpg'), (10, '<NAME>', 'd29c9-7_zpsis5axhmx.jpg'), (11, 'Bawang Putih', '6fe50-manfaat-bawang-putih.jpg'), (12, 'B<NAME>', 'aa95a-bawang-merah.jpg'), (13, '<NAME>', '3c92e-cabe-hijau1.jpg'); -- -------------------------------------------------------- -- -- Table structure for table `tb_kecamatan` -- CREATE TABLE IF NOT EXISTS `tb_kecamatan` ( `id_kecamatan` int(11) NOT NULL, `nama_kecamatan` varchar(50) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_kecamatan` -- INSERT INTO `tb_kecamatan` (`id_kecamatan`, `nama_kecamatan`) VALUES (1, 'Lowokwaru'), (2, 'Blimbing'), (3, 'Klojen'); -- -------------------------------------------------------- -- -- Table structure for table `tb_kontak` -- CREATE TABLE IF NOT EXISTS `tb_kontak` ( `id_kontak` int(11) NOT NULL, `kontak` text NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_kontak` -- INSERT INTO `tb_kontak` (`id_kontak`, `kontak`) VALUES (1, '<p>\r\n Email</p>\r\n<p>\r\n Alamat</p>\r\n<p>\r\n Website</p>\r\n'); -- -------------------------------------------------------- -- -- Table structure for table `tb_luaslahan` -- CREATE TABLE IF NOT EXISTS `tb_luaslahan` ( `id_luaslahan` int(11) NOT NULL, `id_kecamatan` int(11) DEFAULT NULL, `bulan` varchar(15) DEFAULT NULL, `tahun` int(11) DEFAULT NULL, `luas_lahan_padi` int(11) DEFAULT NULL, `luas_lahan_bawang_putih` int(11) DEFAULT NULL, `luas_lahan_jagung` int(11) DEFAULT NULL, `luas_lahan_kedelai` int(11) DEFAULT NULL, `luas_lahan_bawang_merah` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -------------------------------------------------------- -- -- Table structure for table `tb_pasar` -- CREATE TABLE IF NOT EXISTS `tb_pasar` ( `id_pasar` int(11) NOT NULL, `nama_pasar` varchar(100) NOT NULL, `alamat_pasar` varchar(200) NOT NULL, `biografi_pasar` text NOT NULL, `foto_pasar` varchar(100) NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_pasar` -- INSERT INTO `tb_pasar` (`id_pasar`, `nama_pasar`, `alamat_pasar`, `biografi_pasar`, `foto_pasar`) VALUES (1, '<NAME>', 'Jalan MT Haryono', '<div style="text-align: justify;">\r\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum mi nulla, finibus sit amet mi in, venenatis dignissim ligula. Sed at quam eget ex sagittis placerat id id elit. Curabitur sem ipsum, placerat in diam sit amet, finibus ornare lacus. Nullam sodales lorem libero, at sagittis sem iaculis sit amet. Vestibulum maximus viverra nunc et gravida. Nunc mollis ipsum vel turpis consectetur aliquam. Duis euismod, velit nec varius pellentesque, tortor quam consectetur enim, vitae euismod quam elit at metus. Donec a pharetra magna, a tempor ante.</div>\r\n', '2910c-psr_590x300.jpg'), (2, 'Pasar Blimbing', 'Jalan Blimbing', '<p>\r\n Karena banyak pohon blimbingnya</p>\r\n', 'cce8c-1.jpg'); -- -------------------------------------------------------- -- -- Table structure for table `tb_tentang` -- CREATE TABLE IF NOT EXISTS `tb_tentang` ( `id_tentang` int(11) NOT NULL, `tentang` text NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `tb_tentang` -- INSERT INTO `tb_tentang` (`id_tentang`, `tentang`) VALUES (1, '<p>\r\n SIKOMPA adalah .......................</p>\r\n'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) unsigned NOT NULL, `role` enum('member') NOT NULL DEFAULT 'member', `email` varchar(100) NOT NULL, `password` varchar(255) NOT NULL, `first_name` varchar(50) DEFAULT NULL, `last_name` varchar(50) DEFAULT NULL, `activation_code` varchar(32) DEFAULT NULL, `forgot_password_code` varchar(32) DEFAULT NULL, `forgot_password_time` timestamp NULL DEFAULT NULL, `active` tinyint(1) unsigned DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Indexes for dumped tables -- -- -- Indexes for table `backend_users` -- ALTER TABLE `backend_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tb_bahanpokok` -- ALTER TABLE `tb_bahanpokok` ADD PRIMARY KEY (`id_bahanpokok`); -- -- Indexes for table `tb_berita` -- ALTER TABLE `tb_berita` ADD PRIMARY KEY (`id_berita`); -- -- Indexes for table `tb_dataproduksi` -- ALTER TABLE `tb_dataproduksi` ADD PRIMARY KEY (`id_dataproduksi`); -- -- Indexes for table `tb_hargakomoditas` -- ALTER TABLE `tb_hargakomoditas` ADD PRIMARY KEY (`id_komoditas`); -- -- Indexes for table `tb_jenisbahanpokok` -- ALTER TABLE `tb_jenisbahanpokok` ADD PRIMARY KEY (`id_jenisbahanpokok`); -- -- Indexes for table `tb_kecamatan` -- ALTER TABLE `tb_kecamatan` ADD PRIMARY KEY (`id_kecamatan`); -- -- Indexes for table `tb_kontak` -- ALTER TABLE `tb_kontak` ADD PRIMARY KEY (`id_kontak`); -- -- Indexes for table `tb_luaslahan` -- ALTER TABLE `tb_luaslahan` ADD PRIMARY KEY (`id_luaslahan`); -- -- Indexes for table `tb_pasar` -- ALTER TABLE `tb_pasar` ADD PRIMARY KEY (`id_pasar`); -- -- Indexes for table `tb_tentang` -- ALTER TABLE `tb_tentang` ADD PRIMARY KEY (`id_tentang`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `backend_users` -- ALTER TABLE `backend_users` MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `tb_bahanpokok` -- ALTER TABLE `tb_bahanpokok` MODIFY `id_bahanpokok` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tb_berita` -- ALTER TABLE `tb_berita` MODIFY `id_berita` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `tb_dataproduksi` -- ALTER TABLE `tb_dataproduksi` MODIFY `id_dataproduksi` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tb_hargakomoditas` -- ALTER TABLE `tb_hargakomoditas` MODIFY `id_komoditas` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=77; -- -- AUTO_INCREMENT for table `tb_jenisbahanpokok` -- ALTER TABLE `tb_jenisbahanpokok` MODIFY `id_jenisbahanpokok` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `tb_kecamatan` -- ALTER TABLE `tb_kecamatan` MODIFY `id_kecamatan` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `tb_kontak` -- ALTER TABLE `tb_kontak` MODIFY `id_kontak` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `tb_luaslahan` -- ALTER TABLE `tb_luaslahan` MODIFY `id_luaslahan` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tb_pasar` -- ALTER TABLE `tb_pasar` MODIFY `id_pasar` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `tb_tentang` -- ALTER TABLE `tb_tentang` MODIFY `id_tentang` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) unsigned NOT NULL AUTO_INCREMENT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<filename>private/database/tables/data/user_setting_color_palette_color.sql insert into `user_setting_color_palette_color`(`id`,`site_id`,`palette_id`,`color_type_id`,`name`,`color_hex`) values (NULL,1,1,1,'Black','#000000'), (NULL,1,1,2,'Dark grey','#333333'), (NULL,1,1,3,'Grey','#555555'), (NULL,1,1,4,'Light grey','#777777'), (NULL,1,1,5,'Off white','#EEEEEE'), (NULL,1,2,1,'Blue','#337ab7'), (NULL,1,2,2,'Green','#5cb85c'), (NULL,1,2,3,'Light blue','#5bc0de'), (NULL,1,2,4,'Amber','#f0ad4e'), (NULL,1,2,5,'Red','#d9534f'), (NULL,2,3,1,'Black','#000000'), (NULL,2,3,2,'Dark grey','#333333'), (NULL,2,3,3,'Grey','#555555'), (NULL,2,3,4,'Light grey','#777777'), (NULL,2,3,5,'Off white','#EEEEEE'), (NULL,2,4,1,'Blue','#337ab7'), (NULL,2,4,2,'Green','#5cb85c'), (NULL,2,4,3,'Light blue','#5bc0de'), (NULL,2,4,4,'Amber','#f0ad4e'), (NULL,2,4,5,'Red','#d9534f'), (NULL,3,5,1,'Black','#000000'), (NULL,3,5,2,'Dark grey','#333333'), (NULL,3,5,3,'Grey','#555555'), (NULL,3,5,4,'Light grey','#777777'), (NULL,3,5,5,'Off white','#EEEEEE'), (NULL,3,6,1,'Blue','#337ab7'), (NULL,3,6,2,'Green','#5cb85c'), (NULL,3,6,3,'Light blue','#5bc0de'), (NULL,3,6,4,'Amber','#f0ad4e'), (NULL,3,6,5,'Red','#d9534f');
CREATE TABLE authors ( author_id SERIAL PRIMARY KEY, name text NOT NULL DEFAULT '' ); CREATE TYPE book_type AS ENUM ( 'FICTION', 'NONFICTION' ); CREATE TABLE books ( book_id SERIAL PRIMARY KEY, author_id integer NOT NULL REFERENCES authors(author_id), isbn text NOT NULL DEFAULT '' UNIQUE, book_type book_type NOT NULL DEFAULT 'FICTION', title text NOT NULL DEFAULT '', year integer NOT NULL DEFAULT 2000, available timestamp with time zone NOT NULL DEFAULT 'NOW()', tags varchar[] NOT NULL DEFAULT '{}' );
<filename>db/election data/2012_parl_major_wrong_results_districts.sql drop table if exists district_results; drop table if exists max_district_results; create temporary table district_results (district_id int, result int); create temporary table max_district_results (district_id int, result int); insert into district_results (district_id, result) select district_id, `Free Georgia count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `National Democratic Party of Georgia count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `United National Movement count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Movement for Fair Georgia count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Christian-Democratic Movement count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Public Movement count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Freedom Party count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Georgian Group count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `New Rights count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `People's Party count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Merab Kostava Society count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Future Georgia count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Labour Council of Georgia count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Labour count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Sportsman's Union count` from `2012 election parl major - districts` ; insert into district_results (district_id, result) select district_id, `Georgian Dream count` from `2012 election parl major - districts` ; ############## insert into district_results (district_id, result) select district_id, `Free Georgia count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `National Democratic Party of Georgia count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `United National Movement count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Movement for Fair Georgia count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Christian-Democratic Movement count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Public Movement count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Freedom Party count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Georgian Group count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `New Rights count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `People's Party count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Merab Kostava Society count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Future Georgia count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Labour Council of Georgia count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Labour count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Sportsman's Union count` from `2012 election parl major - tbilisi district` ; insert into district_results (district_id, result) select district_id, `Georgian Dream count` from `2012 election parl major - tbilisi district` ; insert into max_district_results (district_id, result) select district_id, max(result) from district_results group by district_id; select p.district_name, p.district_id, p.`total ballots cast`, (p.`total ballots cast` - p.`total valid ballots cast`) as `total invalid ballots cast`, p.`total valid ballots cast`, (`Free Georgia count` + `National Democratic Party of Georgia count` + `United National Movement count` + `Movement for Fair Georgia count` + `Christian-Democratic Movement count` + `Public Movement count` + `Freedom Party count` + `Georgian Group count` + `New Rights count` + `People's Party count` + `Merab Kostava Society count` + `Future Georgia count` + `Labour Council of Georgia count` + `Labour count` + `Sportsman's Union count` + `Georgian Dream count`) as sum_parties, p.`sum logic fail difference`, t.first_result as first_place_result, t.second_result as second_place_result, (t.first_result - t.second_result - p.`sum logic fail difference`) as difference_first_second_logic_check from `2012 election parl major - districts` as p inner join ( select t1.district_id, tmax.result as first_result, max(t1.result) as second_result from district_results as t1 inner join max_district_results as tmax on tmax.district_id = t1.district_id where t1.result < tmax.result group by t1.district_id order by t1.district_id asc ) as t on t.district_id = p.district_id where (t.first_result - t.second_result - p.`sum logic fail difference`) < 0 ; select p.district_name, p.district_id, p.`total ballots cast`, (p.`total ballots cast` - p.`total valid ballots cast`) as `total invalid ballots cast`, p.`total valid ballots cast`, (`Free Georgia count` + `National Democratic Party of Georgia count` + `United National Movement count` + `Movement for Fair Georgia count` + `Christian-Democratic Movement count` + `Public Movement count` + `Freedom Party count` + `Georgian Group count` + `New Rights count` + `People's Party count` + `Merab Kostava Society count` + `Future Georgia count` + `Labour Council of Georgia count` + `Labour count` + `Sportsman's Union count` + `Georgian Dream count`) as sum_parties, p.`sum logic fail difference`, t.first_result as first_place_result, t.second_result as second_place_result, (t.first_result - t.second_result - p.`sum logic fail difference`) as difference_first_second_logic_check from `2012 election parl major - tbilisi district` as p inner join ( select t1.district_id, tmax.result as first_result, max(t1.result) as second_result from district_results as t1 inner join max_district_results as tmax on tmax.district_id = t1.district_id where t1.result < tmax.result group by t1.district_id order by t1.district_id asc ) as t on t.district_id = p.district_id where (t.first_result - t.second_result - p.`sum logic fail difference`) < 0 ; drop table district_results; drop table max_district_results;
<gh_stars>10-100 -- PCT20G. GROUP QUARTERS POPULATION BY GROUP QUARTERS TYPE (TWO OR MORE RACES) -- designed to work with the IRE Census bulk data exports -- see http://census.ire.org/data/bulkdata.html CREATE TABLE ire_pct20g ( geoid VARCHAR(11) NOT NULL, sumlev VARCHAR(3) NOT NULL, state VARCHAR(2) NOT NULL, county VARCHAR(3), cbsa VARCHAR(5), csa VARCHAR(3), necta VARCHAR(5), cnecta VARCHAR(3), name VARCHAR(90) NOT NULL, pop100 INTEGER NOT NULL, hu100 INTEGER NOT NULL, pop100_2000 INTEGER, hu100_2000 INTEGER, pct020g001 INTEGER, pct020g001_2000 INTEGER, pct020g002 INTEGER, pct020g002_2000 INTEGER, pct020g003 INTEGER, pct020g003_2000 INTEGER, pct020g004 INTEGER, pct020g004_2000 INTEGER, pct020g005 INTEGER, pct020g005_2000 INTEGER, pct020g006 INTEGER, pct020g006_2000 INTEGER, pct020g007 INTEGER, pct020g007_2000 INTEGER, pct020g008 INTEGER, pct020g008_2000 INTEGER, pct020g009 INTEGER, pct020g009_2000 INTEGER, pct020g010 INTEGER, pct020g010_2000 INTEGER, pct020g011 INTEGER, pct020g011_2000 INTEGER, pct020g012 INTEGER, pct020g012_2000 INTEGER, pct020g013 INTEGER, pct020g013_2000 INTEGER, pct020g014 INTEGER, pct020g014_2000 INTEGER, pct020g015 INTEGER, pct020g015_2000 INTEGER, pct020g016 INTEGER, pct020g016_2000 INTEGER, pct020g017 INTEGER, pct020g017_2000 INTEGER, pct020g018 INTEGER, pct020g018_2000 INTEGER, pct020g019 INTEGER, pct020g019_2000 INTEGER, pct020g020 INTEGER, pct020g020_2000 INTEGER, pct020g021 INTEGER, pct020g021_2000 INTEGER, pct020g022 INTEGER, pct020g022_2000 INTEGER, pct020g023 INTEGER, pct020g023_2000 INTEGER, pct020g024 INTEGER, pct020g024_2000 INTEGER, pct020g025 INTEGER, pct020g025_2000 INTEGER, pct020g026 INTEGER, pct020g026_2000 INTEGER, pct020g027 INTEGER, pct020g027_2000 INTEGER, pct020g028 INTEGER, pct020g028_2000 INTEGER, pct020g029 INTEGER, pct020g029_2000 INTEGER, pct020g030 INTEGER, pct020g030_2000 INTEGER, pct020g031 INTEGER, pct020g031_2000 INTEGER, pct020g032 INTEGER, pct020g032_2000 INTEGER, PRIMARY KEY (geoid) );
CREATE TABLE IF NOT EXISTS tasks ( task_id INT AUTO_INCREMENT PRIMARY KEY, title VARCHAR(255) NOT NULL, start_date DATE, due_date DATE, status TINYINT NOT NULL, priority TINYINT NOT NULL, description TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ) ENGINE=INNODB;
create database institute; use institute; CREATE TABLE FACULTY( FID INT, FNAME VARCHAR(15), LNAME VARCHAR(15), DOB DATE, DOJ DATE, GENDER CHAR, ADDRESS VARCHAR(40), CITY VARCHAR(15), SALARY INT, DESIGNATION VARCHAR(10), PRIMARY KEY(FID) ); insert into FACULTY values(6969,"Harvey","Specter","2001-06-01","2020-01-01","M","51 Story ScraperBay Adelaide West","Toronto",90000,"HOD"); insert into FACULTY values(1248,"Scotty","Jones","2002-01-29","2020-02-05","F","23 Story ScraperBay Adelaide East","Toronto",60000,"Teacher"); insert into FACULTY values(1000,"Tony","Stark","1995-01-01","2010-01-01","M","100818 Malibu Point ","Toronto",100000,"HOD"); insert into FACULTY values(1100,"Steve","Rogers","1980-01-01","2005-01-01","M","100818 Malibu Point ","Toronto",100000,"Teacher"); insert into FACULTY values(1111,"Thor","Odinson","1975-06-14","1999-04-01","M","Asguard Tower","Toronto",100000,"Teacher"); insert into FACULTY values(1230,"Naruto","Uzumaki","2000-08-12","2020-10-12","M","Eichiraku Ramen Street","Konoha",75000,"Teacher"); insert into FACULTY values(1690,"Kakashi","Hatake","1990-10-06","2000-10-12","M","<NAME>","Konoha",105000,"HOD"); insert into FACULTY values(9999,"Sasuke","Uchiha","2000-02-06","2020-12-12","M","<NAME>","Konoha",74999,"Teacher"); insert into FACULTY values(8888,"Itachi","Uchiha","1994-06-29","2008-10-11","M","<NAME>","Konoha",105100,"HOD"); CREATE TABLE DEPARTMENT( Dno int, Dname varchar(20), Dloc varchar(20), Head_Fid integer, PRIMARY KEY(Dno), FOREIGN KEY(Head_Fid) references FACULTY(Fid) ); insert into department values(1,"Law","<NAME>",6969); insert into department values(2,"Tech","Avengers Tower",1000); insert into department values(3,"Philosophy"," Forest of Death",1690); insert into department values(4,"GenJutsu","Hiddent Mist ",8888); ALTER TABLE FACULTY ADD COLUMN DNO INT; ALTER TABLE FACULTY ADD CONSTRAINT FOREIGN KEY(DNO) REFERENCES DEPARTMENT(Dno); UPDATE FACULTY SET DNO = 1 WHERE FID = 6969; UPDATE FACULTY SET DNO = 1 WHERE FID = 1248; UPDATE FACULTY SET DNO = 2 WHERE FID = 1000; UPDATE FACULTY SET DNO = 3 WHERE FID = 1100; UPDATE FACULTY SET DNO = 3 WHERE FID = 1111; UPDATE FACULTY SET DNO = 1 WHERE FID = 1230; UPDATE FACULTY SET DNO = 3 WHERE FID = 1690; UPDATE FACULTY SET DNO = 4 WHERE FID = 9999; UPDATE FACULTY SET DNO = 4 WHERE FID = 8888; CREATE TABLE STUDENT( USN CHAR(10), Fname varchar(15), Lname varchar(15), Gender char(1), Address varchar(30), City varchar(15), sem int, cell_no char(10), dno int, Primary key(USN), Foreign key(Dno) references DEPARTMENT(Dno) ); insert into student values("2GI19CS175","Venkatesh","Dhongadi","M","Plot 29, Sunflower Apartments","Toronto",3,1208763901,2); insert into student values("2GI19IS175","John","Nixon","M","Street 129, Batman Apartments","Toronto",3,9081763901,1); insert into student values("2GI19CS069","Aryan","Kulkarni","M","Street 169, Reyna Apartments","Toronto",3,9081565401,1); insert into student values("2GI19CS169","Aman","Nadaf","M","C-69069, Sage Apartments","Toronto",3,6969696969,2); insert into student values("2GI19CS269","Konahamaru","Sarutobi","M","Wall Street","Konoha",3,1969096960,3); CREATE TABLE SUBJECTS( SUB_CODE varchar(10), SUB_NAME VARCHAR(15), TYPE CHAR, CREDIT INT, PRIMARY KEY (SUB_CODE) ); insert into subjects values("01","Law",1,5); insert into subjects values("02","Tech",2,5); insert into subjects values("03","Philosophy",3,5); insert into subjects values("04","GenJutsu",4,5); CREATE TABLE ENGAGES( FID INT, SUB_CODE VARCHAR(10), HOURS INT, FOREIGN KEY (SUB_CODE) REFERENCES SUBJECTS(SUB_CODE), FOREIGN KEY(FID) REFERENCES FACULTY(FID) ); insert into engages values(1100,"03",5); insert into engages values(1111,"03",5); insert into engages values(1230,"01",5); insert into engages values(1248,"01",5); insert into engages values(9999,"04",5); CREATE TABLE TEST( TEST_NO INT, DATE DATE, TIME TIME, PRIMARY KEY(TEST_NO) ); insert into test values(1,"2021-06-03","10:30:00"); CREATE TABLE SCORE( USN CHAR(10), SUB_CODE VARCHAR(10), TEST_NO INT, I_A_MARKS INT, FOREIGN KEY(TEST_NO) REFERENCES TEST(TEST_NO) ); insert into score values("2GI19CS069","01",1,100); insert into score values("2GI19CS069","02",1,90); insert into score values("2GI19CS069","03",1,40); insert into score values("2GI19CS069","04",1,39); insert into score values("2GI19CS169","01",1,50); insert into score values("2GI19CS169","02",1,90); insert into score values("2GI19CS169","03",1,80); insert into score values("2GI19CS169","04",1,100); insert into score values("2GI19CS175","01",1,100); insert into score values("2GI19CS175","02",1,100); insert into score values("2GI19CS175","03",1,100); insert into score values("2GI19CS175","04",1,100); CREATE TABLE ATTENDANCE( USN VARCHAR(10), SUB_CODE VARCHAR(10), DATE DATE, TIME TIME, STATUS VARCHAR(5), REASON VARCHAR(20), FOREIGN KEY (USN) REFERENCES STUDENT(USN), FOREIGN KEY (SUB_CODE) REFERENCES SUBJECTS(SUB_CODE) ); insert into attendance values("2GI19CS069","04","2021-06-01","12:00:00","P",""); insert into attendance values("2GI19CS169","04","2021-06-01","12:00:00","A","Sick"); insert into attendance values("2GI19CS175","04","2021-06-01","12:00:00","A","I know Genjutsu"); insert into attendance values("2GI19CS269","04","2021-06-01","12:00:00","P",""); insert into attendance values("2GI19IS175","04","2021-06-01","12:00:00","P",""); CREATE TABLE PARENT( USN VARCHAR(10), PNAME VARCHAR(15), ADDRESS VARCHAR(30), CITY VARCHAR(10), PINCODE INT, CELL_NO INT, FOREIGN KEY(USN) REFERENCES STUDENT(USN) ); insert into parent values("2GI19CS069","<NAME>","Street 169, Reyna Apartments","Toronto",590003,1081565401); insert into parent values("2GI19CS169","<NAME>","C-69069, Sage Apartments","Toronto",590003,1696969696); insert into parent values("2GI19CS175","Minato D","Plot 29, Sunflower Apartments","Toronto",590003,1208763901); insert into parent values("2GI19CS269","Hizuren S","Wall Street","Konoha",590003,1969096960); insert into parent values("2GI19IS175","Breach N","Street 129, Batman Apartments","Toronto",590003,1081763901); SELECT Fname, Lname, Dname from STUDENT S, DEPARTMENT D WHERE S.Dno=D.Dno and Dname='LAW';
-- phpMyAdmin SQL Dump -- version 4.4.12 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Feb 21, 2018 at 04:52 PM -- Server version: 5.5.59-0+deb8u1 -- PHP Version: 5.6.33-0+deb8u1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -- -- Database: `ais` -- CREATE DATABASE IF NOT EXISTS `ais` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci; USE `ais`; -- -------------------------------------------------------- -- -- Table structure for table `aisdata` -- CREATE TABLE IF NOT EXISTS `aisdata` ( `mmsi` char(16) DEFAULT NULL, `time` datetime DEFAULT NULL COMMENT 'GMT', `longitude` float DEFAULT NULL, `latitude` float DEFAULT NULL, `cog` float DEFAULT NULL, `sog` float DEFAULT NULL, `heading` int(11) DEFAULT NULL, `navstat` int(11) DEFAULT NULL, `imo` char(16) DEFAULT NULL, `name` char(32) DEFAULT NULL, `callsign` char(16) DEFAULT NULL, `type` int(11) DEFAULT NULL, `a` int(11) DEFAULT NULL, `b` int(11) DEFAULT NULL, `c` int(11) DEFAULT NULL, `d` int(11) DEFAULT NULL, `draught` float DEFAULT NULL, `dest` char(32) DEFAULT NULL, `eta` char(32) DEFAULT NULL, `_writetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Data written to db' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Table structure for table `temp` -- CREATE TABLE IF NOT EXISTS `temp` ( `mmsi` char(16) DEFAULT NULL, `time` datetime DEFAULT NULL COMMENT 'GMT', `longitude` float DEFAULT NULL, `latitude` float DEFAULT NULL, `cog` float DEFAULT NULL, `sog` float DEFAULT NULL, `heading` int(11) DEFAULT NULL, `navstat` int(11) DEFAULT NULL, `imo` char(16) DEFAULT NULL, `name` char(32) DEFAULT NULL, `callsign` char(16) DEFAULT NULL, `type` int(11) DEFAULT NULL, `a` int(11) DEFAULT NULL, `b` int(11) DEFAULT NULL, `c` int(11) DEFAULT NULL, `d` int(11) DEFAULT NULL, `draught` float DEFAULT NULL, `dest` char(32) DEFAULT NULL, `eta` char(32) DEFAULT NULL, `_writetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Data written to db' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Table structure for table `stations` -- CREATE TABLE IF NOT EXISTS `stations` ( `station_id` int(11), `name` char(64) DEFAULT NULL, `uptime` int(11) DEFAULT NULL, `longitude` float DEFAULT NULL, `latitude` float DEFAULT NULL, `_writetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Data written to db' ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
<filename>Chapter10/ASAWindowedAggregates.sql -- ASA Windowed Aggregates Examples -- You will have to copy these SQL snippets into your ASA Job Query section and run it one by one. -- Tumbling window example in ASA. It calculates the number of trips grouped by Location, in 10-second-wide tumbling windows. SELECT System.Timestamp() AS WindowEnd, tripLocation, COUNT(*) INTO [Output] FROM [Input] TIMESTAMP BY createdAt GROUP BY tripLocation, TumblingWindow(Duration(second, 10), Offset(millisecond, -1)) -- Hopping window example. Every 10 seconds, fetch the trip count per location for the last 20 seconds. -- Here the window size is 20 seconds, and the hop size is 10 seconds. SELECT System.Timestamp() AS WindowEnd, tripLocation, COUNT(*) INTO [Output] FROM [Input] TIMESTAMP BY createdAt GROUP BY tripLocation, HoppingWindow(Duration(second, 20), Hop(second, 10), Offset(millisecond, -1)) -- Sliding window example. For every 10 seconds, alert if a location appears more than 5 times. SELECT System.Timestamp() AS WindowEnd, tripLocation, COUNT(*) INTO [Output] FROM [Input] TIMESTAMP BY createdAt GROUP BY tripLocation, SlidingWindow(second, 10) HAVING COUNT(*) > 5 -- Session window example. Find the number of trips that occur within 5 seconds of each other. SELECT System.Timestamp() AS WindowEnd, tripId, COUNT(*) INTO [Output] FROM [Input] TIMESTAMP BY createdAt GROUP BY tripId, SessionWindow(second, 5, 10) -- Snapshot window example SELECT tripId, COUNT(*) INTO [Output] FROM [Input] TIMESTAMP BY createdAt GROUP BY tripId, System.Timestamp()
<reponame>Shuttl-Tech/antlr_psql -- file:truncate.sql ln:174 expect:true TRUNCATE trunc_trigger_test
<filename>src/hg/lib/ggDbRep.sql # ggDbRep.sql was originally generated by the autoSql program, which also # generated ggDbRep.c and ggDbRep.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #An alternatively spliced gene graph. CREATE TABLE altGraph ( id int unsigned not null, # Unique ID orientation tinyint not null, # +1 or -1 relative to start bac startBac int unsigned not null, # First bac touched by graph startPos int unsigned not null, # Start position in first bac endBac int unsigned not null, # Last bac touched by graph endPos int unsigned not null, # End position in last bac vertexCount int unsigned not null, # Number of vertices in graph vTypes longblob not null, # Type for each vertex vBacs longblob not null, # Bac for each vertex vPositions longblob not null, # Position in bac for each vertex edgeCount int unsigned not null, # Number of edges in graph edgeStarts longblob not null, # Array with start vertex of edges edgeEnds longblob not null, # Array with end vertex of edges mrnaRefCount int not null, # Number of supporting mRNAs mrnaRefs longblob not null, # IDs of all supporting mRNAs #Indices PRIMARY KEY(id) );
CREATE TYPE status AS ENUM ('open', 'closed'); ALTER TYPE status RENAME VALUE 'closed' TO 'shut';
<filename>evo-X-Scriptdev2/sql/Updates/0.0.4/r1476_scriptdev2.sql DELETE FROM script_texts WHERE entry BETWEEN -1189034 AND -1189022; INSERT INTO script_texts (entry,content_default,sound,type,language,emote,comment) VALUES (-1189022,'It is over, your search is done! Let fate choose now, the righteous one.',11961,1,0,0,'horseman SAY_ENTRANCE'), (-1189023,'Here\'s my body, fit and pure! Now, your blackened souls I\'ll cure!',12567,1,0,0,'horseman SAY_REJOINED'), (-1189024,'So eager you are for my blood to spill, yet to vanquish me this my head you must kill!',11969,1,0,0,'horseman SAY_BODY_DEFEAT'), (-1189025,'Over here, you idiot!',12569,1,0,0,'horseman SAY_LOST_HEAD'), (-1189026,'Harken, cur! Tis you I spurn! Now, $N, feel the burn!',12573,1,0,0,'horseman SAY_CONFLAGRATION'), (-1189027,'Soldiers arise, stand and fight! Bring victory at last to this fallen knight!',11963,1,0,0,'horseman SAY_SPROUTING_PUMPKINS'), (-1189028,'Your body lies beaten, battered and broken. Let my curse be your own, fate has spoken.',11962,1,0,0,'horseman SAY_SLAY'), (-1189029,'This end have I reached before. What new adventure lies in store?',11964,1,0,0,'horseman SAY_DEATH'), (-1189030,'%s laughs.',0,2,0,0,'horseman EMOTE_LAUGH'), (-1189031,'Horseman rise...',0,0,0,0,'horseman SAY_PLAYER1'), (-1189032,'Your time is night...',0,0,0,0,'horseman SAY_PLAYER2'), (-1189033,'You felt death once...',0,0,0,0,'horseman SAY_PLAYER3'), (-1189034,'Now, know demise!',0,0,0,0,'horseman SAY_PLAYER4');
DROP TABLE statistical_code_behavior; DROP TABLE contribution_criteria_excluded_location; DROP TABLE contribution_criteria_configuration;
<gh_stars>1-10 CREATE TABLE IF NOT EXISTS `__PREFIX__crontab` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', `type` varchar(10) NOT NULL DEFAULT '' COMMENT '事件类型', `title` varchar(100) NOT NULL DEFAULT '' COMMENT '事件标题', `content` text NOT NULL COMMENT '事件内容', `schedule` varchar(100) NOT NULL DEFAULT '' COMMENT 'Crontab格式', `sleep` tinyint(1) UNSIGNED NOT NULL DEFAULT '0' COMMENT '延迟秒数执行', `maximums` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '最大执行次数 0为不限', `executes` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '已经执行的次数', `createtime` int(10) DEFAULT NULL COMMENT '创建时间', `updatetime` int(10) DEFAULT NULL COMMENT '更新时间', `begintime` int(10) DEFAULT NULL COMMENT '开始时间', `endtime` int(10) DEFAULT NULL COMMENT '结束时间', `executetime` int(10) DEFAULT NULL COMMENT '最后执行时间', `weigh` int(10) NOT NULL DEFAULT '0' COMMENT '权重', `status` enum('completed','expired','hidden','normal') NOT NULL DEFAULT 'normal' COMMENT '状态', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='定时任务表'; BEGIN; INSERT INTO `__PREFIX__crontab` (`id`, `type`, `title`, `content`, `schedule`, `sleep`, `maximums`, `executes`, `createtime`, `updatetime`, `begintime`, `endtime`, `executetime`, `weigh`, `status`) VALUES (1, 'url', '请求百度', 'https://www.baidu.com', '* * * * *', 0, 0, 0, 1497070825, 1501253101, 1483200000, 1830268800, 1501253101, 1, 'normal'), (2, 'sql', '查询一条SQL', 'SELECT 1;', '* * * * *', 0, 0, 0, 1497071095, 1501253101, 1483200000, 1830268800, 1501253101, 2, 'normal'); COMMIT; CREATE TABLE IF NOT EXISTS `__PREFIX__crontab_log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `crontab_id` int(10) DEFAULT NULL COMMENT '任务ID', `executetime` int(10) DEFAULT NULL COMMENT '执行时间', `completetime` int(10) DEFAULT NULL COMMENT '结束时间', `content` text COMMENT '执行结果', `status` enum('success','failure') DEFAULT 'failure' COMMENT '状态', PRIMARY KEY (`id`), KEY `crontab_id` (`crontab_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='定时任务日志表';
<filename>integration/tests/mysql/create-table/expect.sql insert into other (id, something) values (1, 'one') on duplicate key update id=1, something='one'; insert into other (id, something) values (2, 'two') on duplicate key update id=2, something='two'; create table `users` (`id` int (11), `login` varchar (255), `name` varchar (255) not null default 'ethan', `email` varchar (255) not null, primary key (`id`), key idx_users_name (name), unique key idx_users_email (email));
-- +goose Up -- +goose StatementBegin CREATE TABLE `blog_comment` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(16) NOT NULL, `is_author` tinyint(1) NOT NULL DEFAULT '0', `parent_id` int(10) unsigned DEFAULT NULL, `root_id` int(10) unsigned DEFAULT NULL, `article_id` int(10) unsigned NOT NULL, `content` varchar(255) NOT NULL, `created_time` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `article` (`article_id`), KEY `parent` (`parent_id`), KEY `root` (`root_id`), CONSTRAINT `root` FOREIGN KEY (`root_id`) REFERENCES `blog_comment` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `article` FOREIGN KEY (`article_id`) REFERENCES `blog_article` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `parent` FOREIGN KEY (`parent_id`) REFERENCES `blog_comment` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8; -- +goose StatementEnd -- +goose Down -- +goose StatementBegin DROP TABLE IF EXISTS blog_comment; -- +goose StatementEnd
/* Prduct Price History */ create table mtt_md_product_price_history ( change_no integer not null auto_increment, product_no integer not null, account_type smallint not null, updated_at datetime not null, unit_price decimal(12, 2) not null, constraint pk_mtt_md_product_price_history primary key (change_no) );
<gh_stars>0 /* Navicat Premium Data Transfer Source Server : localhost_3306 Source Server Type : MySQL Source Server Version : 100411 Source Host : localhost:3306 Source Schema : experience_commerce Target Server Type : MySQL Target Server Version : 100411 File Encoding : 65001 Date: 07/06/2020 22:57:41 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for employee_timesheet -- ---------------------------- DROP TABLE IF EXISTS `employee_timesheet`; CREATE TABLE `employee_timesheet` ( `id` int(20) NOT NULL AUTO_INCREMENT, `employeeid` int(30) NULL DEFAULT NULL, `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `date` date NULL DEFAULT NULL, `working_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `start` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `end` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `store_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `store_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 149 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of employee_timesheet -- ---------------------------- INSERT INTO `employee_timesheet` VALUES (1, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (2, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (3, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (4, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (5, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (6, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (7, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (8, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (9, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (10, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (11, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (12, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (13, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (14, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (15, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (16, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (17, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (18, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (19, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (20, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (21, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (22, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (23, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (24, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (25, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (26, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (27, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (28, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (29, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (30, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (31, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (32, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (33, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (34, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (35, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (36, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (37, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (38, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (39, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (40, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (41, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (42, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (43, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (44, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (45, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (46, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (47, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (48, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (49, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (50, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (51, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (52, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (53, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (54, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (55, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (56, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (57, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (58, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (59, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (60, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (61, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (62, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (63, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (64, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (65, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (66, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (67, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (68, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (69, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (70, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (71, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (72, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (73, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (74, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (75, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (76, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (77, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (78, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (79, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (80, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (81, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (82, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (83, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (84, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (85, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (86, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (87, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (88, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (89, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (90, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (91, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (92, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (93, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (94, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (95, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (96, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (97, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (98, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (99, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (100, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (101, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (102, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (103, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (104, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (105, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (106, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (107, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (108, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (109, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (110, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (111, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (112, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (113, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (114, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (115, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (116, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (117, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (118, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (119, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (120, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (121, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (122, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (123, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (124, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (125, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (126, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (127, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (128, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (129, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (130, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (131, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (132, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (133, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (134, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (135, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (136, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (137, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (138, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (139, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (140, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (141, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (142, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (143, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (144, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); INSERT INTO `employee_timesheet` VALUES (145, 1237780, 'kimmy ', '2019-10-15', 'working time', '8:00', '19:00', 'RAJD6000883', 'Junbo Store'); INSERT INTO `employee_timesheet` VALUES (146, 1237780, 'kimmy ', '2019-10-15', 'lunch', '12:00', '13:00', 'RAJD6000883', ''); INSERT INTO `employee_timesheet` VALUES (147, 1237780, 'kimmy ', '2019-10-15', 'training', '16:00', '17:00', 'RAJD6000883', 'Multiplex samsung'); INSERT INTO `employee_timesheet` VALUES (148, 1237780, 'kimmy ', '2019-10-15', 'route', '18:00', '19:00', 'RAJD6000883', 'ABC Mart'); -- ---------------------------- -- Table structure for mode -- ---------------------------- DROP TABLE IF EXISTS `mode`; CREATE TABLE `mode` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of mode -- ---------------------------- INSERT INTO `mode` VALUES (1, 'Bike'); INSERT INTO `mode` VALUES (2, 'Bus'); INSERT INTO `mode` VALUES (3, 'Taxi'); INSERT INTO `mode` VALUES (4, 'Train'); INSERT INTO `mode` VALUES (5, 'auto'); INSERT INTO `mode` VALUES (6, 'other'); -- ---------------------------- -- Table structure for purpose -- ---------------------------- DROP TABLE IF EXISTS `purpose`; CREATE TABLE `purpose` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of purpose -- ---------------------------- INSERT INTO `purpose` VALUES (1, 'Market Visit'); INSERT INTO `purpose` VALUES (2, 'Other city travel'); INSERT INTO `purpose` VALUES (3, 'Office visit'); INSERT INTO `purpose` VALUES (4, 'Training'); INSERT INTO `purpose` VALUES (5, 'other'); -- ---------------------------- -- Table structure for reimbursement -- ---------------------------- DROP TABLE IF EXISTS `reimbursement`; CREATE TABLE `reimbursement` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `month` date NULL DEFAULT NULL, `createddate` datetime(0) NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP(0), PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 14 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of reimbursement -- ---------------------------- INSERT INTO `reimbursement` VALUES (3, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (4, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (5, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (6, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (7, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (8, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (9, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (10, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (11, 'conveyance', '2020-05-01', NULL); INSERT INTO `reimbursement` VALUES (12, 'hotel', '2020-05-01', '2020-06-07 22:11:30'); INSERT INTO `reimbursement` VALUES (13, 'hotel', '2020-05-01', '2020-06-07 22:22:18'); -- ---------------------------- -- Table structure for reimbursement_rel -- ---------------------------- DROP TABLE IF EXISTS `reimbursement_rel`; CREATE TABLE `reimbursement_rel` ( `id` int(50) NOT NULL AUTO_INCREMENT, `reimbursement_id` int(50) NULL DEFAULT NULL, `date` date NULL DEFAULT NULL, `from` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `to` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `purpose` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `pur_other_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `mode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `mode_other_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `distance` double(11, 0) NULL DEFAULT NULL, `invoiceno` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `amount` double(14, 0) NULL DEFAULT NULL, `attachment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `from_date` date NULL DEFAULT NULL, `to_date` date NULL DEFAULT NULL, `hotelname` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of reimbursement_rel -- ---------------------------- INSERT INTO `reimbursement_rel` VALUES (1, 10, '2020-05-12', 'abc', 'abc', 'Training', NULL, 'Bike', NULL, 0, '', 2020, 'e63a5cc4833ecd96870efd826904aa49.png', NULL, NULL, NULL); INSERT INTO `reimbursement_rel` VALUES (2, 10, '2020-05-12', 'pqr', 'abc', 'Training', NULL, 'Bike', NULL, 0, '', 32, 'eac45c559f2f6872bd3c9e4df903c093.png', NULL, NULL, NULL); INSERT INTO `reimbursement_rel` VALUES (3, 11, '2020-05-12', 'abc', 'abc', 'Training', NULL, 'Bike', NULL, 0, '', 2020, '7c5cc516c5956b5abef3c31af370eee3.png', NULL, NULL, NULL); INSERT INTO `reimbursement_rel` VALUES (4, 11, '2020-05-12', 'pqr', 'abc', 'Training', NULL, 'Bike', NULL, 0, '', 32, 'f4c74b12a5a3af8fb5ed345521db6ee0.png', NULL, NULL, NULL); INSERT INTO `reimbursement_rel` VALUES (5, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', 32, '0c15090440e104cd5889f4d3247ddb18.png', '2020-05-01', '2020-05-03', 'avs'); INSERT INTO `reimbursement_rel` VALUES (6, 12, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2', 453, 'a7a3b7692807e351630d721e98858053.png', '2020-05-11', '2020-05-13', 'ayer'); INSERT INTO `reimbursement_rel` VALUES (7, 13, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', 32, '173561b42a7ce50dbd335a1a33cad25e.png', '2020-05-01', '2020-05-03', 'avs'); INSERT INTO `reimbursement_rel` VALUES (8, 13, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2', 453, '784dce22c511d106b50a02839d31f07b.png', '2020-05-11', '2020-05-13', 'ayer'); SET FOREIGN_KEY_CHECKS = 1;
SET ANSI_NULLS ON; SET ANSI_PADDING ON; SET ANSI_WARNINGS ON; SET CONCAT_NULL_YIELDS_NULL ON; SET QUOTED_IDENTIFIER ON; SET STATISTICS IO OFF; SET STATISTICS TIME OFF; GO IF OBJECT_ID('dbo.spIndexCoverage') IS NULL EXEC ('CREATE PROCEDURE dbo.spIndexCoverage AS RETURN 0;') GO ALTER PROCEDURE dbo.spIndexCoverage @DatabaseName NVARCHAR(128) = NULL, /* DB Name. If NULL, then defaults to current database. Required parameter. */ @SchemaName NVARCHAR(128) = NULL, /* Schema where the table lives. Required parameter. */ @TableName NVARCHAR(128) = NULL, /* Name of the table whose indexes we want to peek at. Required parameter. */ @Help TINYINT = 0 /* Print help info. Optional parameter. */ AS BEGIN SET NOCOUNT ON; IF @Help = 1 PRINT ' spIndexCoverage written by <NAME> @ http://brandongandy.com This stored procedure is intended to give a graphical representation of index coverage on a given table. Each column output will match a column on the table being examined, plus a ''header'' column that will name an index that lives on the table. A given column will display ''0'' if the column is not covered by the index, ''1'' if the column is a key in the index, and ''2'' if the column is included in the index. MIT License Copyright (c) 2016 <NAME> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.'; DECLARE @SQL NVARCHAR(MAX); DECLARE @ParameterDefinition NVARCHAR(MAX); SET @SQL = N'USE ' + QUOTENAME(@DatabaseName) + N'; SELECT @Result = CAST(object_id AS NVARCHAR(MAX)) FROM sys.objects WHERE name = @TableName AND schema_id = (SELECT schema_id FROM sys.schemas WHERE name = @SchemaName)'; SET @ParameterDefinition = N'@TableName NVARCHAR(128), @SchemaName NVARCHAR(128), @Result NVARCHAR(MAX) OUT'; DECLARE @ObjectID NVARCHAR(MAX) = N''; EXECUTE sp_executesql @SQL, @ParameterDefinition, @TableName, @SchemaName, @ObjectID OUTPUT; SET @SQL = N'USE ' + QUOTENAME(@DatabaseName) + N'; SELECT @Result = STUFF((SELECT DISTINCT '','' + name FROM sys.columns WHERE object_id = @ObjectID FOR XML PATH(''''), TYPE).value(''.'', ''NVARCHAR(MAX)''),1,1,'''');'; SET @ParameterDefinition = N'@ObjectID NVARCHAR(MAX), @Result NVARCHAR(MAX) OUT'; DECLARE @Columns NVARCHAR(MAX) = N''; EXECUTE sp_executesql @SQL, @ParameterDefinition, @ObjectID, @Columns OUTPUT; SET @SQL = N'USE ' + QUOTENAME(@DatabaseName) + N'; SELECT * FROM ( SELECT ind.name AS IndexName, ind.name AS IndexCount, col.name AS ColumnName FROM sys.index_columns AS icol JOIN sys.indexes ind ON ind.object_id = icol.object_id AND ind.index_id = icol.index_id JOIN sys.columns col ON col.object_id = icol.object_id AND col.column_id = icol.column_id WHERE icol.object_id = @ObjectID AND ind.is_hypothetical = 0 UNION ALL SELECT ind.name AS IndexName, ind.name AS IndexCount, col.name AS ColumnName FROM sys.index_columns AS icol JOIN sys.indexes ind ON ind.object_id = icol.object_id AND ind.index_id = icol.index_id JOIN sys.columns col ON col.object_id = icol.object_id AND col.column_id = icol.column_id WHERE icol.object_id = @ObjectID AND icol.is_included_column = 1 AND ind.is_hypothetical = 0 ) AS base PIVOT ( COUNT(IndexCount) FOR ColumnName in (' + @Columns + N') ) AS pvt ORDER BY pvt.IndexName ASC'; SET @ParameterDefinition = N'@ObjectID NVARCHAR(MAX)'; EXECUTE sp_executesql @SQL, @ParameterDefinition, @ObjectID; END GO
<reponame>rochaandre/scripts-oracle-named<gh_stars>0 -- ver consumo mensal (ultimo mes) de cpu dos usuarios auditados: select username, mes_ano, session_cpu / 100 as session_cpu_sec, total from ( select username, to_char(logoff_time,'mm/yyyy') mes_ano, sum(session_cpu) session_cpu, count(1) total from dba_audit_trail where to_char(logoff_time,'mm/yyyy') = to_char(sysdate,'mm/yyyy') group by username, to_char(logoff_time,'mm/yyyy') having sum(session_cpu) is not null ) order by session_cpu_sec desc;
<reponame>iqbalsalman/ProgramKemitraan -- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Feb 22, 2018 at 12:57 PM -- Server version: 10.1.30-MariaDB -- PHP Version: 5.6.33 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `pk` -- -- -------------------------------------------------------- -- -- Table structure for table `penjadwalan` -- CREATE TABLE `penjadwalan` ( `idpenjadwalan` int(30) NOT NULL, `nip` int(30) DEFAULT NULL, `nama_surveyor` varchar(40) DEFAULT NULL, `tgl_tugas1` date DEFAULT NULL, `tgl_tugas2` date DEFAULT NULL, `idpegawai` int(30) DEFAULT NULL, `status_j` varchar(50) DEFAULT NULL, `jmlhari` int(30) DEFAULT NULL, `idakun` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `penjadwalan` -- INSERT INTO `penjadwalan` (`idpenjadwalan`, `nip`, `nama_surveyor`, `tgl_tugas1`, `tgl_tugas2`, `idpegawai`, `status_j`, `jmlhari`, `idakun`) VALUES (1, 67011, 'dinda', '2018-02-21', '2018-02-21', 1, 'Tidak bisa bertugas karena sakit', 0, '1'), (2, 6712, 'alif', '2018-02-19', '2018-02-22', 4, 'sudah menyelesaikan Tugas', 3, '1'); -- -- Indexes for dumped tables -- -- -- Indexes for table `penjadwalan` -- ALTER TABLE `penjadwalan` ADD PRIMARY KEY (`idpenjadwalan`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `penjadwalan` -- ALTER TABLE `penjadwalan` MODIFY `idpenjadwalan` int(30) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>0 /* Aula 5 - Date Manipulation Language (DML) - Linuguagem de Manipulação de Dados Link videoaula → https://youtu.be/eyx3Yk2iEBg */ DROP DATABASE IF EXISTS aula_banco; -- se existir elimine aula_banco CREATE DATABASE aula_banco; -- criar aula_banco USE aula_banco; -- selecionar aula_banco CREATE TABLE estado( -- criando a tabela estado id INT NOT NULL AUTO_INCREMENT ,nome VARCHAR(200) NOT NULL UNIQUE ,sigla CHAR(2) NOT NULL UNIQUE ,ativo ENUM('S','N') NOT NULL DEFAULT 'S' ,data_cadastro DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ,CONSTRAINT pk_estado PRIMARY KEY (id) ); CREATE TABLE cidade ( -- criando a tabela cidade id INT NOT NULL AUTO_INCREMENT ,nome VARCHAR(200) NOT NULL ,ativo ENUM('S','N') NOT NULL DEFAULT 'S' ,data_cadastro DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ,estado_id INT NOT NULL ,CONSTRAINT pk_cidade PRIMARY KEY (id) ,CONSTRAINT fk_cidade_estado FOREIGN KEY (estado_id) REFERENCES estado (id) ,CONSTRAINT cidade_unica UNIQUE(nome, estado_id) ); DROP TABLE cidade; DROP TABLE estado; -- SINTAXE INSERT COMPLETO INSERT INTO estado (id,nome,sigla,ativo,data_cadastro) VALUES (DEFAULT,'PARANA','PR','S','2022-02-26'); -- INSERT COM DEFAULT INSERT INTO estado (id,nome,sigla,ativo,data_cadastro) VALUES (DEFAULT,'SAO PAULO','SP',DEFAULT,DEFAULT); -- INSERT COM COLUNAS ESPECÍFICAS INSERT INTO estado (nome,sigla) VALUES ('MATO GROSSO','MT'); -- INSERT NA CIDADE - COLUNAS COM FK INSERT INTO cidade (nome,estado_id) VALUES ('CURITIBA',1); -- INSERT DE VÁRIOS REGISTROS - SOMENTE MySQL INSERT INTO cidade (nome,estado_id) VALUES ('BAURU',2), ('LONDRINA',1), ('GUARULHOS',2); /* Possíveis erros no INSERT - tire do comentário para testar INSERT INTO estado (nome) VALUES ('CE'); -- gera ERRO pq não informamos o nome, e nome é NOT NULL/obrigatório INSERT INTO estado (nome,sigla) VALUES ('PARANÁ','PR'); -- gera erro pq já existe PARANÁ - nome é UNIQUE INSERT INTO estado (nome,sigla) VALUES ('PARANÁ 2','PR'); -- gera erro pq já existe PR - sigla é UNIQUE INSERT INTO estado (nome,sigla) VALUES ('PARANÁ 2','PR2'); -- gera erro pq PR está definido para 2 caracteres INSERT INTO estado (nome, sigla, ativo) VALUES ('CEARÁ','CE', 88);-- gera erro pq ativo é ENUM que aceita somete S ou N INSERT INTO cidade (nome, estado_id) VALUES ('SALVADOR',15);-- gera erro pq estado_id é uma FK/Chave Estrangeira. Em FK, o SGBD valida, de forma que, impeça o cadastro de um refência de Estado que não existe */ SELECT * FROM estado; SELECT * FROM cidade; /* É muito importante que você defina um BD com restrições de modo que possa manter a integridade dos dados. E por hj é só!!! Até a próxima aula! */
<filename>data.sql<gh_stars>0 CREATE TABLE `tbl_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(120) DEFAULT NULL, `email` varchar(120) DEFAULT NULL, `phone_no` varchar(30) DEFAULT NULL, `password` varchar(120) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
<reponame>CottonEyeJoey/Account_System<gh_stars>0 insert into hr.ACCOUNT_TYPE(ACCOUNT_TYPE_ID,MNEMONIC,ACCOUNT_TYPE_NAME,CREATION_DATE ) values (5001, 'MILES', 'Miles' ,'2020-01-01'); insert into hr.BALANCE(MEMBER_ID,ACCOUNT_TYPE_ID,AMOUNT,MNEMONIC) values (10001, 5001, 5000 ,'MILES');
-- Created by: MPZinke -- on 2020.12.19 -- -- DESCRIPTION: Main DB script for creating Curtain DB. -- BUGS: -- FUTURE: CREATE DATABASE `SmartCurtain` CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;; USE `SmartCurtain`; -- Primary table for curtain listing. -- Details individual curtain setups. DROP TABLE IF EXISTS `Curtains`; CREATE TABLE IF NOT EXISTS `Curtains` ( `id` INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, `buffer_time` SMALLINT UNSIGNED NOT NULL DEFAULT 0, -- Curtain travel deci-seconds (prevent event overlap) `current_position` INT UNSIGNED NOT NULL DEFAULT 0, `direction` BOOLEAN NOT NULL DEFAULT FALSE, `ip_address` VARCHAR(15) NOT NULL, `is_activated` BOOLEAN NOT NULL DEFAULT FALSE, `is_current` BOOLEAN NOT NULL DEFAULT TRUE, -- `is_safe`: prevents actions from going to a position it thinks is harmful (EG opening farther while 'fully open') `is_safe` BOOLEAN NOT NULL DEFAULT TRUE, `is_smart` BOOLEAN NOT NULL DEFAULT TRUE, `port` SMALLINT UNSIGNED NOT NULL DEFAULT 80, `last_connection` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, `length` INT UNSIGNED NOT NULL, `name` VARCHAR(32) NOT NULL UNIQUE ) CHARACTER SET utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS `Options`; CREATE TABLE IF NOT EXISTS `Options` ( `id` INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, `description` VARCHAR(256) NOT NULL DEFAULT '', `is_current` BOOLEAN NOT NULL DEFAULT TRUE, `name` VARCHAR(32) NOT NULL UNIQUE ) CHARACTER SET utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS `CurtainsOptions`; CREATE TABLE IF NOT EXISTS `CurtainsOptions` ( `id` INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, `Curtains.id` INT UNSIGNED NOT NULL, FOREIGN KEY (`Curtains.id`) REFERENCES `Curtains`(`id`), `Options.id` INT UNSIGNED NOT NULL, FOREIGN KEY (`Options.id`) REFERENCES `Options`(`id`), UNIQUE `UNIQUE:CurtainsOptions`(`Curtains.id`, `Options.id`), `is_on` BOOLEAN NOT NULL, `notes` VARCHAR(256) DEFAULT NULL ) CHARACTER SET utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS `CurtainsOptionsKeyValues`; CREATE TABLE IF NOT EXISTS `CurtainsOptionsKeyValues` ( `id` INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, `CurtainsOptions.id` INT UNSIGNED NOT NULL, FOREIGN KEY (`CurtainsOptions.id`) REFERENCES `CurtainsOptions`(`id`), `is_current` BOOLEAN DEFAULT TRUE, `key` VARCHAR(256) DEFAULT NULL, `value` VARCHAR(256) DEFAULT NULL ) CHARACTER SET utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS `CurtainsEvents`; CREATE TABLE IF NOT EXISTS `CurtainsEvents` ( `id` INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, `Curtains.id` INT UNSIGNED NOT NULL, FOREIGN KEY (`Curtains.id`) REFERENCES `Curtains`(`id`), `Options.id` INT UNSIGNED DEFAULT NULL, FOREIGN KEY (`Options.id`) REFERENCES `Options`(`id`), `desired_position` INT UNSIGNED NOT NULL, `is_activated` BOOLEAN NOT NULL DEFAULT FALSE, `is_current` BOOLEAN NOT NULL DEFAULT TRUE, `time` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ) CHARACTER SET utf8mb4 COLLATE=utf8mb4_general_ci; DROP TABLE IF EXISTS `Errors`; CREATE TABLE IF NOT EXISTS `Errors` ( `id` INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, `Curtains.id` INT UNSIGNED NOT NULL, FOREIGN KEY (`Curtains.id`) REFERENCES `Curtains`(`id`), `Curtains.current_position` INT UNSIGNED NOT NULL, `CurtainsEvents.id` INT UNSIGNED NOT NULL, FOREIGN KEY (`CurtainsEvents.id`) REFERENCES `CurtainsEvents`(`id`), `error` TEXT DEFAULT NULL, `path` TEXT DEFAULT NULL, `time` DATETIME DEFAULT CURRENT_TIMESTAMP ) CHARACTER SET utf8mb4 COLLATE=utf8mb4_general_ci;
<gh_stars>0 with yesterday_new_users as ( select geo.country as country, app_info.id, count(distinct user_pseudo_id) yesterday_new_users FROM {{ref('events')}} WHERE event_date = FORMAT_DATE("%Y%m%d", DATE_SUB(CURRENT_DATE(), INTERVAL 1 DAY)) and event_timestamp = user_first_touch_timestamp group by geo.country, app_info.id ), prev_day_new_users as ( select geo.country as country, app_info.id, count(distinct user_pseudo_id) prev_day_new_users FROM {{ref('events')}} WHERE event_date = FORMAT_DATE("%Y%m%d", DATE_SUB(CURRENT_DATE(), INTERVAL 2 DAY)) and event_timestamp = user_first_touch_timestamp group by geo.country, app_info.id ), three_day_ago_new_users as ( select geo.country as country, app_info.id, count(distinct user_pseudo_id) three_day_ago_new_users FROM {{ref('events')}} WHERE event_date = FORMAT_DATE("%Y%m%d", DATE_SUB(CURRENT_DATE(), INTERVAL 3 DAY)) and event_timestamp = user_first_touch_timestamp group by geo.country, app_info.id ), last_week_users as ( select geo.country as country, app_info.id, count(distinct user_pseudo_id) last_week_users FROM {{ref('events')}} WHERE event_date <= FORMAT_DATE("%Y%m%d", DATE_TRUNC(CURRENT_DATE(), WEEK)) AND event_date > FORMAT_DATE("%Y%m%d", DATE_SUB(DATE_TRUNC(CURRENT_DATE(), WEEK), INTERVAL 1 WEEK)) and event_timestamp = user_first_touch_timestamp group by geo.country,app_info.id), previous_week_users as ( select geo.country as country, app_info.id, count(distinct user_pseudo_id) prev_week_users FROM {{ref('events')}} WHERE event_date <= FORMAT_DATE("%Y%m%d", DATE_SUB(DATE_TRUNC(CURRENT_DATE(), WEEK), INTERVAL 1 WEEK)) AND event_date > FORMAT_DATE("%Y%m%d", DATE_SUB(DATE_TRUNC(CURRENT_DATE(), WEEK), INTERVAL 2 WEEK)) and event_timestamp = user_first_touch_timestamp group by geo.country, app_info.id) select lwu.country, struct(lwu.id) as app_info, ynu.yesterday_new_users, pdnu.prev_day_new_users, tdnu.three_day_ago_new_users ,lwu.last_week_users, pwu.prev_week_users from last_week_users lwu left join yesterday_new_users ynu on lwu.country = ynu.country and lwu.id = ynu.id left join prev_day_new_users pdnu on lwu.country = pdnu.country and lwu.id = pdnu.id left join three_day_ago_new_users tdnu on lwu.country = tdnu.country and lwu.id = tdnu.id left join previous_week_users pwu on lwu.country = pwu.country and lwu.id = pwu.id
<reponame>EL-BID/nexso<gh_stars>1-10 CREATE TABLE [dbo].[dnn_EasyDNNNewsVideoGallerySettings] ( [Id] INT IDENTITY (1, 1) NOT NULL, [PortalID] INT NOT NULL, [ModuleID] INT NULL, [ArticleID] INT NULL, [ThumbWidth] INT CONSTRAINT [DF_dnn_EasyDNNNewsVideoGallerySettings_ThumbWidth] DEFAULT ((100)) NOT NULL, [ThumbHeight] INT CONSTRAINT [DF_dnn_EasyDNNNewsVideoGallerySettings_ThumbHeight] DEFAULT ((100)) NOT NULL, [ItemsPerPage] INT CONSTRAINT [DF_dnn_EasyDNNNewsVideoGallerySettings_ItemsPerPage] DEFAULT ((20)) NOT NULL, [NumOfColumns] INT CONSTRAINT [DF_dnn_EasyDNNNewsVideoGallerySettings_NumOfColumns] DEFAULT ((4)) NOT NULL, [PagerType] NVARCHAR (50) CONSTRAINT [DF_dnn_EasyDNNNewsVideoGallerySettings_PagerType] DEFAULT (N'Numeric') NOT NULL, [GalleryTheme] NVARCHAR (50) CONSTRAINT [DF_dnn_EasyDNNNewsVideoGallerySettings_GalleryTheme] DEFAULT (N'EDG_0_Shadow.css') NOT NULL, [ShowTitle] BIT CONSTRAINT [DF_dnn_EasyDNNNewsVideoGallerySettings_ShowTitle] DEFAULT ((0)) NOT NULL, [ShowDescription] BIT CONSTRAINT [DF_dnn_EasyDNNNewsVideoGallerySettings_ShowDescription] DEFAULT ((0)) NOT NULL, CONSTRAINT [PK_dnn_EasyDNNNewsVideoGallerySettings] PRIMARY KEY CLUSTERED ([Id] ASC), CONSTRAINT [FK_dnn_EasyDNNNewsVideoGallerySettings_EasyDNNNews] FOREIGN KEY ([ArticleID]) REFERENCES [dbo].[dnn_EasyDNNNews] ([ArticleID]) ON DELETE CASCADE, CONSTRAINT [FK_dnn_EasyDNNNewsVideoGallerySettings_Modules] FOREIGN KEY ([ModuleID]) REFERENCES [dbo].[dnn_Modules] ([ModuleID]) ON DELETE CASCADE, CONSTRAINT [FK_dnn_EasyDNNNewsVideoGallerySettings_Portals] FOREIGN KEY ([PortalID]) REFERENCES [dbo].[dnn_Portals] ([PortalID]) ON DELETE CASCADE, CONSTRAINT [IX_dnn_EasyDNNNewsVideoGallerySettings] UNIQUE NONCLUSTERED ([PortalID] ASC, [ModuleID] ASC, [ArticleID] ASC) );
<reponame>boxfox619/Vertx-React-Server<gh_stars>1-10 SELECT COUNT(uid) FROM user WHERE email=?
<reponame>Ambal/mangos DELETE FROM `spell_chain` WHERE `spell_id` IN (25477); INSERT INTO `spell_chain` VALUES (25477,19312,18137,7);
CREATE TABLE [dbo].[Property]( [PropertyId] [varchar](255) NOT NULL, [Name] [varchar](255) NOT NULL, CONSTRAINT [PK_AttributeId] PRIMARY KEY CLUSTERED ( [PropertyId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO
DROP FUNCTION k_sp_del_contact (CHAR); DROP FUNCTION k_sp_del_company (CHAR); DROP FUNCTION k_sp_dedup_email_contacts (CHAR);
SELECT * FROM ( SELECT 'http_requests_total' AS name, 'counter' AS type, 'Total number of HTTP requests' AS help, map('method', 'post', 'code', '200') AS labels, 1027 AS value, 1395066363000 :: Float64 AS timestamp UNION ALL SELECT 'http_requests_total' AS name, 'counter' AS type, '' AS help, map('method', 'post', 'code', '400') AS labels, 3 AS value, 1395066363000 :: Float64 AS timestamp UNION ALL SELECT 'msdos_file_access_time_seconds' AS name, '' AS type, '' AS help, map('path', 'C:\\DIR\\FILE.TXT', 'error', 'Cannot find file:\n"FILE.TXT"') AS labels, 1458255915 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'metric_without_timestamp_and_labels' AS name, '' AS type, '' AS help, map() AS labels, 12.47 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'something_weird' AS name, '' AS type, '' AS help, map('problem', 'division by zero') AS labels, inf AS value, -3982045 :: Float64 AS timestamp UNION ALL SELECT 'http_request_duration_seconds' AS name, 'histogram' AS type, 'A histogram of the request duration.' AS help, map('le', '0.05') AS labels, 24054 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'http_request_duration_seconds' AS name, 'histogram' AS type, '' AS help, map('le', '0.1') AS labels, 33444 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'http_request_duration_seconds' AS name, 'histogram' AS type, '' AS help, map('le', '0.2') AS labels, 100392 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'http_request_duration_seconds' AS name, 'histogram' AS type, '' AS help, map('le', '0.5') AS labels, 129389 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'http_request_duration_seconds' AS name, 'histogram' AS type, '' AS help, map('le', '1') AS labels, 133988 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'http_request_duration_seconds' AS name, 'histogram' AS type, '' AS help, map('le', '+Inf') AS labels, 144320 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'http_request_duration_seconds' AS name, 'histogram' AS type, '' AS help, map('sum', '') AS labels, 53423 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'rpc_duration_seconds' AS name, 'summary' AS type, 'A summary of the RPC duration in seconds.' AS help, map('quantile', '0.01') AS labels, 3102 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'rpc_duration_seconds' AS name, 'summary' AS type, '' AS help, map('quantile', '0.05') AS labels, 3272 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'rpc_duration_seconds' AS name, 'summary' AS type, '' AS help, map('quantile', '0.5') AS labels, 4773 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'rpc_duration_seconds' AS name, 'summary' AS type, '' AS help, map('quantile', '0.9') AS labels, 9001 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'rpc_duration_seconds' AS name, 'summary' AS type, '' AS help, map('quantile', '0.99') AS labels, 76656 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'rpc_duration_seconds' AS name, 'summary' AS type, '' AS help, map('count', '') AS labels, 2693 AS value, 0 :: Float64 AS timestamp UNION ALL SELECT 'rpc_duration_seconds' AS name, 'summary' AS type, '' AS help, map('sum', '') AS labels, 1.7560473e+07 AS value, 0 :: Float64 AS timestamp ) ORDER BY name, value FORMAT Prometheus; SELECT 'metric' || toString(number) AS name, number AS value, if(number % 2 == 0, 'info ' || toString(number), NULL) AS help, if(number % 3 == 0, 'counter', NULL) AS type, if(number == 2, 1395066363000, NULL) AS timestamp FROM numbers(5) FORMAT Prometheus;
<reponame>cascade-core/changelog-sql -- Table to log processed parts of this changelog. -- You will like it later. It is not used by application itself. CREATE TABLE IF NOT EXISTS `about_changelog` ( `id` int(11) NOT NULL AUTO_INCREMENT, `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `filename` varchar(64) CHARACTER SET ascii COLLATE ascii_bin NOT NULL, PRIMARY KEY (`id`) ); -- INSERT INTO `about_changelog` SET `filename` = '0000-00-00-about_changelog.sql';
<gh_stars>1-10 -- if you currently have ‘departments_dup’ set up: ALTER TABLE departments_dup DROP COLUMN dept_manager; ALTER TABLE departments_dup CHANGE COLUMN dept_no dept_no CHAR(4) NULL; ALTER TABLE departments_dup CHANGE COLUMN dept_name dept_name VARCHAR(40) NULL; -- if you don’t currently have ‘departments_dup’ set up DROP TABLE IF EXISTS departments_dup; CREATE TABLE departments_dup ( dept_no CHAR(4) NULL, dept_name VARCHAR(40) NULL ); INSERT INTO departments_dup (dept_no, dept_name) SELECT * FROM departments; INSERT INTO departments_dup (dept_name) VALUES ('Public Relations'); DELETE FROM departments_dup WHERE dept_no = 'd002'; INSERT INTO departments_dup(dept_no) VALUES ('d010'), ('d011');
-- 문제11 - EMP테이블에서 사원번호가 홀수인 사원들을 조회 SELECT * FROM EMP WHERE MOD(EMPNO,2)!=0;
/* Navicat MySQL Data Transfer Source Server : localhost Source Server Version : 50726 Source Host : localhost:3306 Source Database : fabulove Target Server Type : MYSQL Target Server Version : 50726 File Encoding : 65001 Date: 2021-03-15 11:51:07 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for app -- ---------------------------- DROP TABLE IF EXISTS `app`; CREATE TABLE `app` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `appId` varchar(32) NOT NULL, `platform` varchar(16) NOT NULL DEFAULT '', `bundleId` varchar(64) NOT NULL DEFAULT '', `bundleName` varchar(32) NOT NULL DEFAULT '', `appName` varchar(32) NOT NULL DEFAULT '', `currentVersion` varchar(32) NOT NULL DEFAULT '', `creatorId` int(11) NOT NULL COMMENT 'user表id,创建者id', `creator` varchar(32) NOT NULL DEFAULT '' COMMENT 'user表username', `icon` varchar(255) NOT NULL DEFAULT '', `describe` varchar(255) NOT NULL DEFAULT '', `shortUrl` varchar(64) NOT NULL DEFAULT '', `autoPublish` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否自动发布,0:不自动发布 1:自动发布', `installWithPwd` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否下载需要密码,0:不需要 1:需要', `installPwd` varchar(16) NOT NULL DEFAULT '', `appLevel` varchar(16) NOT NULL DEFAULT '', `ownerId` int(11) NOT NULL COMMENT 'user表id,拥有者id', `changelog` varchar(255) NOT NULL DEFAULT '', `updateMode` int(11) NOT NULL DEFAULT '1' COMMENT 'update_mode表id', `releaseVersionCode` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'version表versionCode,当前对外发布的code号', `releaseVersionId` varchar(32) NOT NULL DEFAULT '0' COMMENT 'version表id,当前对外发布的最新版本号', `grayReleaseVersionId` varchar(32) NOT NULL DEFAULT '0' COMMENT 'version表id,当前对外发布的最新灰度版本号', `totalDownloadCount` bigint(20) NOT NULL DEFAULT '0' COMMENT '总下载量', `todayDownloadCount` bigint(20) NOT NULL DEFAULT '0' COMMENT '当天下载量', `grayStrategy` int(11) NOT NULL DEFAULT '0' COMMENT 'gray_strategy表id', `createTime` bigint(20) NOT NULL, `updateTime` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of app -- ---------------------------- INSERT INTO `app` VALUES ('1', '39652d61966f4701ba1e0aff8bff1995', 'android', 'com.innogx.launcher', '', '国翔创新教学设备', '4', '2', 'admin', 'upload\\2\\icon\\com.innogx.launcher_1.4_4_a.png', '', 'xstdd6', '0', '0', '', '', '2', '', '1', '0', '0', '0', '3', '3', '0', '1615779312179', '1615779312179'); -- ---------------------------- -- Table structure for app_download -- ---------------------------- DROP TABLE IF EXISTS `app_download`; CREATE TABLE `app_download` ( `appId` varchar(32) NOT NULL, `versionId` varchar(32) NOT NULL, `data` bigint(20) NOT NULL, PRIMARY KEY (`appId`,`versionId`,`data`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of app_download -- ---------------------------- -- ---------------------------- -- Table structure for download_code_image -- ---------------------------- DROP TABLE IF EXISTS `download_code_image`; CREATE TABLE `download_code_image` ( `id` varchar(32) NOT NULL, `appId` varchar(32) NOT NULL, `remark` varchar(64) NOT NULL DEFAULT '', `page` varchar(32) NOT NULL DEFAULT '', `param` varchar(16) NOT NULL DEFAULT '', `image` varchar(64) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of download_code_image -- ---------------------------- -- ---------------------------- -- Table structure for gray_strategy -- ---------------------------- DROP TABLE IF EXISTS `gray_strategy`; CREATE TABLE `gray_strategy` ( `id` varchar(32) NOT NULL COMMENT 'version表id', `ipType` int(11) NOT NULL DEFAULT '1' COMMENT 'ip_type表id', `ipList` varchar(255) NOT NULL DEFAULT '', `downloadCountLimit` int(11) NOT NULL DEFAULT '0', `updateMode` int(11) NOT NULL DEFAULT '1' COMMENT 'update_mode表id', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of gray_strategy -- ---------------------------- -- ---------------------------- -- Table structure for ip_type -- ---------------------------- DROP TABLE IF EXISTS `ip_type`; CREATE TABLE `ip_type` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of ip_type -- ---------------------------- INSERT INTO `ip_type` VALUES ('1', 'black'); INSERT INTO `ip_type` VALUES ('2', 'white'); -- ---------------------------- -- Table structure for message -- ---------------------------- DROP TABLE IF EXISTS `message`; CREATE TABLE `message` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `category` varchar(16) NOT NULL DEFAULT '' COMMENT '消息类型', `content` varchar(255) NOT NULL, `sender` int(11) NOT NULL COMMENT 'user表id,发送者的id', `receiver` int(11) NOT NULL COMMENT 'user表id,接受者的id', `sendTime` bigint(20) NOT NULL, `status` varchar(16) NOT NULL DEFAULT '1' COMMENT 'status表id', `data` varchar(255) NOT NULL DEFAULT '' COMMENT '消息中带有的data字段', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of message -- ---------------------------- INSERT INTO `message` VALUES ('1', 'INVITE', 'admin邀请您加入我的团队团队.', '2', '1', '1615776568743', '1', ''); -- ---------------------------- -- Table structure for miniapp -- ---------------------------- DROP TABLE IF EXISTS `miniapp`; CREATE TABLE `miniapp` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `appId` varchar(64) NOT NULL, `platform` varchar(16) NOT NULL DEFAULT '', `appSecret` varchar(64) NOT NULL DEFAULT '', `appName` varchar(32) NOT NULL DEFAULT '', `currentVersion` varchar(32) NOT NULL DEFAULT '', `creatorId` int(11) NOT NULL COMMENT 'user表id,创建者id', `creator` varchar(32) NOT NULL DEFAULT '' COMMENT 'user表username', `icon` varchar(255) NOT NULL DEFAULT '', `describe` varchar(255) NOT NULL DEFAULT '', `autoPublish` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否自动发布,0:不自动发布 1:自动发布', `installWithPwd` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否下载需要密码,0:不需要 1:需要', `installPwd` varchar(16) NOT NULL DEFAULT '', `appLevel` varchar(16) NOT NULL DEFAULT '', `ownerId` int(11) NOT NULL COMMENT 'user表id,拥有者id', `changelog` varchar(255) NOT NULL DEFAULT '', `updateMode` int(11) NOT NULL DEFAULT '1' COMMENT 'update_mode表id', `releaseVersionCode` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'version表versionCode,当前对外发布的code号', `releaseVersionId` varchar(32) NOT NULL DEFAULT '0' COMMENT 'version表id,当前对外发布的最新版本号', `grayReleaseVersionId` varchar(32) NOT NULL DEFAULT '0' COMMENT 'version表id,当前对外发布的最新灰度版本号', `totalDownloadCount` bigint(20) NOT NULL DEFAULT '0' COMMENT '总下载量', `todayDownloadCount` bigint(20) NOT NULL DEFAULT '0' COMMENT '当天下载量', `grayStrategy` int(11) NOT NULL DEFAULT '0' COMMENT 'gray_strategy表id', `createTime` bigint(20) NOT NULL, `updateTime` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of miniapp -- ---------------------------- -- ---------------------------- -- Table structure for status -- ---------------------------- DROP TABLE IF EXISTS `status`; CREATE TABLE `status` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of status -- ---------------------------- INSERT INTO `status` VALUES ('1', 'unread'); INSERT INTO `status` VALUES ('2', 'hasread'); -- ---------------------------- -- Table structure for team -- ---------------------------- DROP TABLE IF EXISTS `team`; CREATE TABLE `team` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `icon` varchar(255) NOT NULL DEFAULT '', `name` varchar(32) NOT NULL DEFAULT '', `creatorId` int(11) NOT NULL COMMENT 'user表id', `role` int(11) NOT NULL DEFAULT '1' COMMENT 'teams表id', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否是默认创建,不可删除;0:不是默认 1:默认', `createTime` bigint(20) NOT NULL, PRIMARY KEY (`id`,`creatorId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of team -- ---------------------------- -- ---------------------------- -- Table structure for teams -- ---------------------------- DROP TABLE IF EXISTS `teams`; CREATE TABLE `teams` ( `id` int(8) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(16) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of teams -- ---------------------------- INSERT INTO `teams` VALUES ('1', 'owner'); INSERT INTO `teams` VALUES ('2', 'manager'); INSERT INTO `teams` VALUES ('3', 'guest'); -- ---------------------------- -- Table structure for team_members -- ---------------------------- DROP TABLE IF EXISTS `team_members`; CREATE TABLE `team_members` ( `teamId` int(11) NOT NULL, `userId` int(11) NOT NULL, `role` int(11) NOT NULL DEFAULT '1' COMMENT 'teams表id', PRIMARY KEY (`teamId`,`userId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of team_members -- ---------------------------- -- ---------------------------- -- Table structure for update_mode -- ---------------------------- DROP TABLE IF EXISTS `update_mode`; CREATE TABLE `update_mode` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(12) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of update_mode -- ---------------------------- INSERT INTO `update_mode` VALUES ('1', 'silent'); INSERT INTO `update_mode` VALUES ('2', 'normal'); INSERT INTO `update_mode` VALUES ('3', 'force'); -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(32) NOT NULL DEFAULT '' COMMENT '昵称', `password` varchar(64) NOT NULL DEFAULT '' COMMENT '密码', `email` varchar(32) NOT NULL DEFAULT '' COMMENT '邮箱', `mobile` varchar(12) NOT NULL DEFAULT '' COMMENT '手机', `qq` varchar(12) NOT NULL DEFAULT '', `company` varchar(64) NOT NULL DEFAULT '' COMMENT '公司', `career` varchar(32) NOT NULL DEFAULT '' COMMENT '职业', `apiToken` varchar(32) NOT NULL DEFAULT '', `createTime` bigint(20) NOT NULL DEFAULT '0' COMMENT '创建时间', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of user -- ---------------------------- -- ---------------------------- -- Table structure for version -- ---------------------------- DROP TABLE IF EXISTS `version`; CREATE TABLE `version` ( `id` varchar(32) NOT NULL, `appId` varchar(32) NOT NULL COMMENT 'app表appId', `bundleId` varchar(32) NOT NULL, `icon` varchar(255) NOT NULL DEFAULT '', `versionStr` varchar(12) NOT NULL, `versionCode` int(11) NOT NULL, `uploader` varchar(32) NOT NULL, `uploaderId` int(11) NOT NULL COMMENT 'user表id', `size` int(11) NOT NULL DEFAULT '0', `active` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否激活,0:没激活 1:激活', `downloadUrl` varchar(125) NOT NULL DEFAULT '', `downloadCount` int(11) NOT NULL DEFAULT '0', `fileDownloadUrl` varchar(125) NOT NULL DEFAULT '', `installUrl` varchar(125) NOT NULL DEFAULT '', `showOnDownloadPage` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否显示下载页,0:不显示 1:显示', `appLevel` varchar(12) NOT NULL DEFAULT '', `changelog` varchar(255) NOT NULL DEFAULT '', `md5` varchar(32) NOT NULL DEFAULT '', `hidden` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否隐藏,0:不隐藏 1:隐藏', `updateMode` int(11) NOT NULL DEFAULT '2', `uploadTime` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of version -- ----------------------------