This commit is contained in:
jhejda@wmpromus.com 2019-05-23 09:12:07 +02:00
parent 61be8a905f
commit c9ccf1852d
14 changed files with 22087 additions and 0 deletions

View File

@ -0,0 +1,44 @@
class sqlserver_install::centraladministrationdbsetup (
String $sqlserver = "FCL-PUP-V804",
String $sqlserverinstancename = "MSSQLSERVER",
String $sqlserveradminaccount = "sa",
String $sqlserveradminpassword = "Passw0rd1",
String $webappserver = "FCL-PUP-V805",
String $sqlserverdbname = "CentralAdministration",
String $websitename = "CentralAdministration",
String $wallswebsitename = "WALLSstgSit",
String $apiwebsitename = "APIService",
) {
############################################################################
# Creating Walls Database(s) #
############################################################################
sqlserver::database{ $sqlserverdbname:
instance => $sqlserverinstancename,
require => Sqlserver_instance[$sqlserverinstancename],
}
############################################################################
# Populate Walls Database(s) #
############################################################################
-> file { 'C:\tmp\sqlwallsinstall\script_central.sql':
ensure => file,
content => template("${module_name}/script_central.sql.erb"),
require => File['C:\tmp\sqlwallsinstall'],
}
-> exec { 'Deploy Central Admin sql database':
command => "Import-Module SqlPs;Invoke-Sqlcmd -ServerInstance ${sqlserver} -username ${sqlserveradminaccount} -Password ${sqlserveradminpassword} -InputFile \"C:\\tmp\\sqlwallsinstall\\script_central.sql\" | out-File -filepath \"C:\\tmp\\sqlwallsinstall\\script_central_output.txt\"",
provider => 'powershell',
#logoutput => true,
onlyif => 'if ((Test-Path c:\tmp\sqlwallsinstall\script_central_output.txt) -ne \'True\') {exit 0} Else {exit 1}',
}
-> exec { 'sleep before running next script - After Central Administration':
command => 'Start-Sleep -s 30',
provider => 'powershell',
}
}

View File

@ -0,0 +1,39 @@
class sqlserver_install (
#String $sourcelocation = "\\\\10.160.0.44\\Software\\Microsoft\\SQL Server\\SQL Server 2014",
String $sourcelocation = "\\\\freshfields\\dfs\\FCL\\SQLServerSharedRepository\\INSTALLMEDIA\\SQL 2014\\SQL 2014 - Standard",
String $sqlserver = "FCL-SQL-V358",
String $sqlserverinstancename = "MSSQLSERVER",
Array $sqlserversysadminaccounts = ["Administrator"],
String $sqlserveradminaccount = "sa",
String $sqlserveradminpassword = "Passw0rd1",
String $sqlserverdbname = "WALLSstgSit",
String $sqlserverdbnamecentraladmin = "CentralAdministration",
String $webappserver = "FCL-WEB-V358",
String $wbapplicationwebsitename = "walls",
) {
class { 'sqlserver_install::sqlserver':
sourcelocation => $sourcelocation,
sqlserver => $sqlserver,
sqlserverinstancename => $sqlserverinstancename,
sqlserversysadminaccounts => $sqlserversysadminaccounts,
sqlserveradminaccount => $sqlserveradminaccount,
sqlserveradminpassword => $sqlserveradminpassword,
sqlserverdbname => $sqlserverdbname,
}
#-> class { 'sqlserver_install::centraladministrationdbsetup':
# sqlserver => $sqlserver,
# sqlserveradminaccount => $sqlserveradminaccount,
# sqlserveradminpassword => $sqlserveradminpassword,
# sqlserverdbnamecentraladmin => $sqlserverdbnamecentraladmin,
#}
#-> class { 'sqlserver_install::wbapplicationdbsetup':
# sqlserver => $sqlserver,
# sqlserveradminaccount => $sqlserveradminaccount,
# sqlserveradminpassword => $sqlserveradminpassword,
# sqlserverdbname => $sqlserverdbname,
#}
}

View File

@ -0,0 +1,105 @@
class sqlserver_install::sqlserver (
#String $sourcelocation = "\\\\freshfields\\dfs\\FCL\\SQLServerSharedRepository\\INSTALLMEDIA\\SQL 2014\\SQL 2014 - Standard",
#String $sourcelocation = "C:\\SQL 2014 - Standard",
String $sourcelocation = "\\\\10.160.0.44\\Software\\Microsoft\\SQL Server\\SQL Server 2014",
String $sqlserver = "FCL-PUP-V804",
String $sqlserverinstancename = "MSSQLSERVER",
Array $sqlserversysadminaccounts = ["Administrator"],
String $sqlserveradminaccount = "sa",
String $sqlserveradminpassword = "Passw0rd1",
String $sqlserverwallsuser = "sa-app-wb-stgsit",
String $sqlserverwallspassword = "nJTv5GrKkpsWFsUp9v",
) {
############################################################################
# Installing SQL Server pre-requisites #
############################################################################
include chocolatey
reboot { 'reboot_powershell':
when => pending,
timeout => 15,
}
package { 'dotnet4.5':
ensure => latest,
provider => 'chocolatey',
}
package { 'powershell':
ensure => installed,
provider => 'chocolatey',
require => Package['dotnet4.5'],
notify => Reboot['reboot_powershell'],
}
package { 'sql2014-powershell':
ensure => installed,
provider => 'chocolatey',
require => Package['powershell'],
}
dsc_windowsfeature { 'NET Framework 3.5':
dsc_ensure => 'present',
dsc_name => 'NET-Framework-Features',
require => Package['powershell'],
}
############################################################################
# Installing and configuring SQL Server #
############################################################################
file { 'C:\tmp':
ensure => directory,
path => 'C:\tmp'
}
file { 'C:\tmp\sqlwallsinstall':
ensure => directory,
require => File['C:\tmp'],
}
file { 'C:\Program Files\Microsoft SQL Server':
ensure => directory,
}
file { 'C:\Program Files (x86)\Microsoft SQL Server':
ensure => directory,
}
file { 'C:\MSSQLSERVER':
ensure => directory,
}
sqlserver_instance { $sqlserverinstancename:
source => $sourcelocation,
features => ['SQLEngine'],
security_mode => 'SQL',
#sql_sysadmin_accounts => $sqlserversysadminaccounts,
sa_pwd => $sqlserveradminpassword,
sql_sysadmin_accounts => $sqlserversysadminaccounts, #[$facts['id']],
install_switches => {
'TCPENABLED' => 1,
'SQLBACKUPDIR' => 'C:\\MSSQLSERVER\\backupdir',
'SQLTEMPDBDIR' => 'C:\\MSSQLSERVER\\tempdbdir',
'INSTALLSQLDATADIR' => 'C:\\MSSQLSERVER\\datadir',
'INSTANCEDIR' => 'C:\\Program Files\\Microsoft SQL Server',
'INSTALLSHAREDDIR' => 'C:\\Program Files\\Microsoft SQL Server',
'INSTALLSHAREDWOWDIR' => 'C:\\Program Files (x86)\\Microsoft SQL Server'
},
require => [ File['C:\Program Files\Microsoft SQL Server'], File['C:\Program Files (x86)\Microsoft SQL Server'], File['C:\MSSQLSERVER'], Dsc_windowsfeature['NET Framework 3.5'] ],
}
-> sqlserver::config { $sqlserverinstancename:
admin_login_type => 'SQL_LOGIN',
admin_user => $sqlserveradminaccount,
admin_pass => $sqlserveradminpassword,
}
-> sqlserver::login{ $sqlserverwallsuser:
instance => $sqlserverinstancename,
password => $sqlserverwallspassword,
}
}

View File

@ -0,0 +1,60 @@
class sqlserver_install::wbapplicationdbsetup (
String $sqlserver = "FCL-PUP-V804",
String $sqlserverinstancename = "MSSQLSERVER",
String $sqlserveradminaccount = "sa",
String $sqlserveradminpassword = "Passw0rd1",
String $webappserver = "FCL-PUP-V805",
String $sqlserverdbname = "WALLSstgSit",
String $websitename = "WALLSstgSit",
) {
############################################################################
# Creating Walls Database(s) #
############################################################################
sqlserver::database{ $sqlserverdbname:
instance => $sqlserverinstancename,
require => Sqlserver_instance[$sqlserverinstancename],
}
############################################################################
# Populate Walls Database(s) #
############################################################################
-> file { 'C:\tmp\sqlwallsinstall\script_walls_preparation.sql':
ensure => file,
content => template("${module_name}/script_walls_preparation.sql.erb"),
require => File['C:\tmp\sqlwallsinstall'],
}
-> exec { 'Deploy wbapplicationsetup sql database - Preparation':
command => "Import-Module SqlPs;Invoke-Sqlcmd -ServerInstance ${sqlserver} -username ${sqlserveradminaccount} -Password ${sqlserveradminpassword} -InputFile \"C:\\tmp\\sqlwallsinstall\\script_walls_preparation.sql\" | out-File -filepath \"C:\\tmp\\sqlwallsinstall\\script_walls_preparation_output.txt\"",
provider => 'powershell',
#logoutput => 'on_failure',
onlyif => 'if ((Test-Path c:\tmp\sqlwallsinstall\script_walls_preparation_output.txt) -ne \'True\') {exit 0} Else {exit 1}',
}
-> exec { 'sleep before running next script - After Walls Preparation':
command => 'Start-Sleep -s 60',
provider => 'powershell',
}
-> file { 'C:\tmp\sqlwallsinstall\script_walls_data.sql':
ensure => file,
content => template("${module_name}/script_walls_data.sql.erb"),
require => File['C:\tmp\sqlwallsinstall'],
}
-> exec { 'Deploy wbapplicationsetup sql database - Data':
command => "Import-Module SqlPs;Invoke-Sqlcmd -ServerInstance ${sqlserver} -username ${sqlserveradminaccount} -Password ${sqlserveradminpassword} -InputFile \"C:\\tmp\\sqlwallsinstall\\script_walls_data.sql\" | out-File -filepath \"C:\\tmp\\sqlwallsinstall\\script_walls_data_output.txt\"",
provider => 'powershell',
#logoutput => 'on_failure',
onlyif => 'if ((Test-Path c:\tmp\sqlwallsinstall\script_walls_data_output.txt) -ne \'True\') {exit 0} Else {exit 1}',
}
-> exec { 'sleep before running next script - After Walls Data':
command => 'Start-Sleep -s 60',
provider => 'powershell',
}
}

View File

@ -0,0 +1,166 @@
USE [master]
GO
/****** Object: Database [<%=@sqlserverdbnamecentraladmin%>] Script Date: 2/8/2018 10:52:22 AM ******/
--CREATE DATABASE [<%=@sqlserverdbnamecentraladmin%>]
-- CONTAINMENT = NONE
-- ON PRIMARY
--( NAME = N'CentralAdministration', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\CentralAdministration.mdf' , SIZE = 3264KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
-- LOG ON
--( NAME = N'CentralAdministration_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\CentralAdministration_log.ldf' , SIZE = 816KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)
--GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET COMPATIBILITY_LEVEL = 120
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [<%=@sqlserverdbnamecentraladmin%>].[dbo].[sp_fulltext_database] @action = 'enable'
end
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ANSI_NULLS OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ANSI_PADDING OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ARITHABORT OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ENABLE_BROKER
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET HONOR_BROKER_PRIORITY OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET RECOVERY FULL
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET MULTI_USER
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET DB_CHAINING OFF
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF )
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET TARGET_RECOVERY_TIME = 0 SECONDS
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET DELAYED_DURABILITY = DISABLED
GO
EXEC sys.sp_db_vardecimal_storage_format N'<%=@sqlserverdbnamecentraladmin%>', N'ON'
GO
USE [<%=@sqlserverdbnamecentraladmin%>]
GO
/****** Object: Schema [cac] Script Date: 2/8/2018 10:52:23 AM ******/
CREATE SCHEMA [cac]
GO
/****** Object: Table [cac].[Applications] Script Date: 2/8/2018 10:52:23 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [cac].[Applications](
[ApplicationId] [int] IDENTITY(1,1) NOT NULL,
[ApplicationName] [nvarchar](256) NOT NULL,
[ApplicationType] [int] NOT NULL,
[Created] [datetime] NOT NULL,
[Modified] [datetime] NOT NULL,
[DatabaseName] [nvarchar](256) NOT NULL,
[ServerName] [nvarchar](256) NOT NULL,
[UserName] [nvarchar](256) NOT NULL,
[UserPassword] [nvarchar](256) NOT NULL,
[UseWindowsAuthentication] [bit] NOT NULL,
[ApplicationUrl] [nvarchar](1000) NOT NULL,
[ApiServiceUrl] [nvarchar](1000) NULL,
PRIMARY KEY CLUSTERED
(
[ApplicationId] 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
/****** Object: Table [cac].[ApplicationUsers] Script Date: 2/8/2018 10:52:23 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [cac].[ApplicationUsers](
[UserId] [int] IDENTITY(1,1) NOT NULL,
[Login] [nvarchar](50) NOT NULL,
[Password] [nvarchar](50) NOT NULL,
[Email] [nvarchar](100) NULL,
[IsEnabled] [bit] NOT NULL,
[Created] [datetime] NOT NULL,
[Modified] [datetime] NOT NULL,
[LastLogin] [datetime] NULL,
[Name] [nvarchar](100) NULL,
[IsDeleted] [bit] NOT NULL,
PRIMARY KEY CLUSTERED
(
[UserId] 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
/****** Object: Table [cac].[Version] Script Date: 2/8/2018 10:52:23 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [cac].[Version](
[AppVersion] [varchar](50) NULL
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [cac].[ApplicationUsers] ON
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'', 1, CAST(N'2018-02-05T11:46:11.490' AS DateTime), CAST(N'2018-02-05T11:46:11.490' AS DateTime), NULL, N'Administrator', 0)
SET IDENTITY_INSERT [cac].[ApplicationUsers] OFF
INSERT [cac].[Version] ([AppVersion]) VALUES (N'6.2.2002.5')
SET ANSI_PADDING ON
GO
/****** Object: Index [IX_ApplicationNameUnique] Script Date: 2/8/2018 10:52:23 AM ******/
CREATE UNIQUE NONCLUSTERED INDEX [IX_ApplicationNameUnique] ON [cac].[Applications]
(
[ApplicationName] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
ALTER TABLE [cac].[Applications] ADD DEFAULT (getdate()) FOR [Created]
GO
ALTER TABLE [cac].[Applications] ADD DEFAULT (getdate()) FOR [Modified]
GO
ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT ((1)) FOR [IsEnabled]
GO
ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT (getdate()) FOR [Created]
GO
ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT (getdate()) FOR [Modified]
GO
ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT ((0)) FOR [IsDeleted]
GO
USE [master]
GO
ALTER DATABASE [<%=@sqlserverdbnamecentraladmin%>] SET READ_WRITE
GO

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,166 @@
USE [master]
GO
/****** Object: Database [<%=@sqlserverdbname%>] Script Date: 2/8/2018 10:52:22 AM ******/
--CREATE DATABASE [<%=@sqlserverdbname%>]
-- CONTAINMENT = NONE
-- ON PRIMARY
--( NAME = N'CentralAdministration', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\CentralAdministration.mdf' , SIZE = 3264KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
-- LOG ON
--( NAME = N'CentralAdministration_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\DATA\CentralAdministration_log.ldf' , SIZE = 816KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)
--GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET COMPATIBILITY_LEVEL = 120
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [<%=@sqlserverdbname%>].[dbo].[sp_fulltext_database] @action = 'enable'
end
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_NULLS OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_PADDING OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET ARITHABORT OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET ENABLE_BROKER
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET HONOR_BROKER_PRIORITY OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET RECOVERY FULL
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET MULTI_USER
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET DB_CHAINING OFF
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF )
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET TARGET_RECOVERY_TIME = 0 SECONDS
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET DELAYED_DURABILITY = DISABLED
GO
EXEC sys.sp_db_vardecimal_storage_format N'<%=@sqlserverdbnamecentraladmin%>', N'ON'
GO
USE [<%=@sqlserverdbname%>]
GO
/****** Object: Schema [cac] Script Date: 2/8/2018 10:52:23 AM ******/
CREATE SCHEMA [cac]
GO
/****** Object: Table [cac].[Applications] Script Date: 2/8/2018 10:52:23 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [cac].[Applications](
[ApplicationId] [int] IDENTITY(1,1) NOT NULL,
[ApplicationName] [nvarchar](256) NOT NULL,
[ApplicationType] [int] NOT NULL,
[Created] [datetime] NOT NULL,
[Modified] [datetime] NOT NULL,
[DatabaseName] [nvarchar](256) NOT NULL,
[ServerName] [nvarchar](256) NOT NULL,
[UserName] [nvarchar](256) NOT NULL,
[UserPassword] [nvarchar](256) NOT NULL,
[UseWindowsAuthentication] [bit] NOT NULL,
[ApplicationUrl] [nvarchar](1000) NOT NULL,
[ApiServiceUrl] [nvarchar](1000) NULL,
PRIMARY KEY CLUSTERED
(
[ApplicationId] 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
/****** Object: Table [cac].[ApplicationUsers] Script Date: 2/8/2018 10:52:23 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [cac].[ApplicationUsers](
[UserId] [int] IDENTITY(1,1) NOT NULL,
[Login] [nvarchar](50) NOT NULL,
[Password] [nvarchar](50) NOT NULL,
[Email] [nvarchar](100) NULL,
[IsEnabled] [bit] NOT NULL,
[Created] [datetime] NOT NULL,
[Modified] [datetime] NOT NULL,
[LastLogin] [datetime] NULL,
[Name] [nvarchar](100) NULL,
[IsDeleted] [bit] NOT NULL,
PRIMARY KEY CLUSTERED
(
[UserId] 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
/****** Object: Table [cac].[Version] Script Date: 2/8/2018 10:52:23 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [cac].[Version](
[AppVersion] [varchar](50) NULL
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [cac].[ApplicationUsers] ON
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'', 1, CAST(N'2018-02-05T11:46:11.490' AS DateTime), CAST(N'2018-02-05T11:46:11.490' AS DateTime), NULL, N'Administrator', 0)
SET IDENTITY_INSERT [cac].[ApplicationUsers] OFF
INSERT [cac].[Version] ([AppVersion]) VALUES (N'6.2.2002.5')
SET ANSI_PADDING ON
GO
/****** Object: Index [IX_ApplicationNameUnique] Script Date: 2/8/2018 10:52:23 AM ******/
CREATE UNIQUE NONCLUSTERED INDEX [IX_ApplicationNameUnique] ON [cac].[Applications]
(
[ApplicationName] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
ALTER TABLE [cac].[Applications] ADD DEFAULT (getdate()) FOR [Created]
GO
ALTER TABLE [cac].[Applications] ADD DEFAULT (getdate()) FOR [Modified]
GO
ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT ((1)) FOR [IsEnabled]
GO
ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT (getdate()) FOR [Created]
GO
ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT (getdate()) FOR [Modified]
GO
ALTER TABLE [cac].[ApplicationUsers] ADD DEFAULT ((0)) FOR [IsDeleted]
GO
USE [master]
GO
ALTER DATABASE [<%=@sqlserverdbname%>] SET READ_WRITE
GO

View File

@ -0,0 +1,26 @@
USE [<%=@sqlserverdbname%>]
GO
SET IDENTITY_INSERT [cac].[Applications] ON
INSERT [cac].[Applications]
([ApplicationId], [ApplicationName], [ApplicationType], [Created], [Modified], [DatabaseName], [ServerName], [UserName], [UserPassword], [UseWindowsAuthentication], [ApplicationUrl], [ApiServiceUrl]) VALUES (1, N'Walls', 1, CAST(N'2017-05-03 17:24:56.880' AS DateTime), CAST(N'2017-05-03 17:24:56.880' AS DateTime), N'<%=@sqlserverdbname%>', N'<%=@sqlserver%>', N'freshfields\FCL-SA-WEB-V100-W', N'pAqhXKMfPlO0QfqVRsg8urCJqARCZGqF94YQXe97qBY=', 1, N'http://<%=@webappserver%>/<%=@wallswebsitename%>/', N'https://<%=@webappserver%>/<%=@apiwebsitename%>/InternalAPIService.svc')
SET IDENTITY_INSERT [cac].[Applications] OFF
SET IDENTITY_INSERT [cac].[ApplicationUsers] ON
--INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'', 1, CAST(N'2016-03-15 10:33:25.980' AS DateTime), CAST(N'2016-03-15 10:33:25.980' AS DateTime), NULL, N'Administrator', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (2, N'freshfields\a-apanchabakesan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'ashok.panchabakesan@freshfields.com', 1, CAST(N'2016-03-15 10:45:00.097' AS DateTime), CAST(N'2016-03-15 10:45:00.097' AS DateTime), CAST(N'2016-04-26 16:13:39.287' AS DateTime), N'Ashok Panchabakesan', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (3, N'freshfields\apanchabakesan', N'CY9rzUYh03PK3k6DJie09g==', N'ashok.panchabakesan@freshfields.com', 1, CAST(N'2016-03-15 09:48:50.290' AS DateTime), CAST(N'2016-03-15 09:48:50.290' AS DateTime), CAST(N'2016-04-21 16:37:32.173' AS DateTime), N'Ashok Panchabakesan', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (4, N'freshfields\jchastell', N'CY9rzUYh03PK3k6DJie09g==', N'john.chastell@freshfield.com', 1, CAST(N'2016-03-15 09:49:11.743' AS DateTime), CAST(N'2016-03-15 09:49:11.743' AS DateTime), NULL, N'John Chastell', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (5, N'freshfields\rSTOLLENMAIER', N'CY9rzUYh03PK3k6DJie09g==', N'Robert.STOLLENMAIER@freshfields.com', 1, CAST(N'2016-03-17 15:34:06.367' AS DateTime), CAST(N'2016-03-17 15:34:18.193' AS DateTime), CAST(N'2017-06-30 16:03:21.370' AS DateTime), N'Rob STOLLENMAIER', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (6, N'freshfields\jeakin', N'CY9rzUYh03PK3k6DJie09g==', N'john.eakin@freshfieds.com', 1, CAST(N'2016-03-30 10:57:37.130' AS DateTime), CAST(N'2016-04-06 14:01:32.757' AS DateTime), CAST(N'2017-01-13 11:45:37.690' AS DateTime), N'John Eakin', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (7, N'freshfields\FCL-SA-MON-V800-W', N'CY9rzUYh03PK3k6DJie09g==', NULL, 1, CAST(N'2016-05-10 11:03:07.073' AS DateTime), CAST(N'2017-05-03 15:55:14.723' AS DateTime), CAST(N'2017-03-22 16:24:26.783' AS DateTime), N'Service Account', 1)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (8, N'FRESHFIELDS\randerson', N'###', N'reuben.anderson@freshfields.com', 1, CAST(N'2016-05-10 14:25:07.667' AS DateTime), CAST(N'2016-05-10 14:25:07.667' AS DateTime), CAST(N'2016-05-10 14:25:07.667' AS DateTime), N'ANDERSON, Reuben', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (9, N'freshfields\FCL-SA-APP-V810-W', N'CY9rzUYh03PK3k6DJie09g==', NULL, 1, CAST(N'2016-05-10 16:31:55.927' AS DateTime), CAST(N'2017-05-03 15:55:07.647' AS DateTime), CAST(N'2016-09-14 13:41:03.303' AS DateTime), N'Service Account', 1)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (10, N'freshfields\nbegum', N'gdyb21LQTcIANtvYMT7QVQ==', N'nazmin.begum@freshfields.com', 1, CAST(N'2016-08-03 13:37:42.207' AS DateTime), CAST(N'2016-08-03 13:38:40.753' AS DateTime), NULL, N'Nazmin Begum', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (11, N'FRESHFIELDS\FCL-SA-MON-V807-W', N'CY9rzUYh03PK3k6DJie09g==', NULL, 1, CAST(N'2016-12-16 12:01:10.137' AS DateTime), CAST(N'2017-05-03 15:55:21.067' AS DateTime), CAST(N'2017-03-22 16:06:48.590' AS DateTime), N'Service Account', 1)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (12, N'freshfields\trapley', N'gdyb21LQTcIANtvYMT7QVQ==', N'taf.rapley@freshfields.com', 1, CAST(N'2017-01-13 11:46:01.773' AS DateTime), CAST(N'2017-01-13 11:46:01.773' AS DateTime), CAST(N'2017-06-29 16:01:16.340' AS DateTime), N'Taf rapley', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (13, N'FRESHFIELDS\FCL-SA-APP-V150-W', N'93!gPkemitm3XfiV', N'FCL-SA-APP-V150-W@freshfields.com', 1, CAST(N'2017-03-10 17:14:00.290' AS DateTime), CAST(N'2017-05-03 15:54:52.710' AS DateTime), CAST(N'2017-04-12 15:11:23.430' AS DateTime), N'Service Account', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (14, N'freshfields\FCL-SA-WEB-V100-W', N'93!gPkemitm3XfiV', NULL, 1, CAST(N'2017-03-10 17:16:04.357' AS DateTime), CAST(N'2017-03-10 17:16:04.357' AS DateTime), CAST(N'2017-06-07 16:35:18.700' AS DateTime), N'Service Account', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (15, N'freshfields\andavies', N'cZ3x2eI6Q4Uwg6yvwDtwtQ==', N'anthony.davies@freshfields.com', 1, CAST(N'2017-05-03 15:53:34.470' AS DateTime), CAST(N'2017-05-03 15:53:34.470' AS DateTime), CAST(N'2017-05-04 09:35:46.120' AS DateTime), N'Anthony Davies ', 0)
INSERT [cac].[ApplicationUsers] ([UserId], [Login], [Password], [Email], [IsEnabled], [Created], [Modified], [LastLogin], [Name], [IsDeleted]) VALUES (16, N'freshfields\algallagher', N'CY9rzUYh03PK3k6DJie09g==', N'alangallagher@freshfields.com', 1, CAST(N'2017-05-03 15:55:52.047' AS DateTime), CAST(N'2017-05-03 15:55:52.050' AS DateTime), CAST(N'2017-06-29 15:11:49.567' AS DateTime), N'Alan Gallagher', 0)
SET IDENTITY_INSERT [cac].[ApplicationUsers] OFF

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,294 @@
USE [<%=@sqlserverdbname%>]
GO
SET IDENTITY_INSERT [dbo].[EntityTypes] ON
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (1, N'User', N'Users', 1)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (2, N'Group', N'Groups', 1)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (3, N'Client', N'Clients', 0)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (4, N'Matter', N'Matters', 0)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (6, N'Matter Team', N'Matter Teams', 1)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (7, N'Dynamic Client Group', N'Dynamic Client Groups', 0)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (8, N'Dynamic Matter Group', N'Dynamic Matter Groups', 0)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (9, N'Dynamic User Group', N'Dynamic User Groups', 1)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (10, N'All Clients', N'All Clients', 0)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (11, N'All Users', N'All Users', 1)
INSERT [dbo].[EntityTypes] ([EntityTypeId], [EntityType], [EntityTypePl], [IsUserType]) VALUES (12, N'External User', N'External Users', 1)
SET IDENTITY_INSERT [dbo].[EntityTypes] OFF
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField1', 1, N'PersonID', N'String', N'PersonID', 0, 0, 0, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField1', 3, N'AML Status', N'STRING', N'AML Status', 0, 1, 0, 1, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField1', 4, N'AML flag', N'STRING', N'AML flag', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField1', 12, N'PersonID', N'String', N'PersonID', 0, 0, 0, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField10', 1, N'Nationality', N'String', N'Nationality', 0, 0, 0, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField10', 3, N'Partner', N'String', N'Partner', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField10', 12, N'Nationality', N'String', N'Nationality', 0, 0, 0, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField11', 1, N'Jurisdiction of Qualification', N'String', N'Jurisdiction of Qualification', 0, 0, 0, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField11', 12, N'Jurisdiction of Qualification', N'String', N'Jurisdiction of Qualification', 0, 0, 0, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField2', 1, N'Office', N'String', N'Office', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField2', 3, N'Status', N'STRING', N'Status', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField2', 4, N'Status', N'String', N'Status', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField2', 12, N'Office', N'String', N'Office', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField20', 4, N'Matter Partner Code', N'String', N'Matter Partner Code', 0, 0, 0, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField3', 1, N'Extension', N'String', N'Extension', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField3', 3, N'Client Group', N'String', N'Client Group', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField3', 4, N'Office', N'String', N'Office', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField3', 12, N'Extension', N'String', N'Extension', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField4', 1, N'Time Recorder', N'Boolean', N'Time Recorder', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField4', 3, N'Office', N'String', N'Office', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField4', 4, N'Partner', N'String', N'Partner', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField4', 12, N'Time Recorder', N'Boolean', N'Time Recorder', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField5', 1, N'Status', N'STRING', N'Status', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField5', 3, N'Opening Date', N'Date', N'Opening Date', 1, 1, 0, 0, 1, 0, N'UTC:yyyy-MM-dd HH:mm')
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField5', 4, N'Opening Date', N'Date', N'Opening Date', 1, 1, 0, 0, 1, 0, N'UTC:yyyy-MM-dd HH:mm')
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField5', 12, N'Status', N'STRING', N'Status', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField6', 1, N'Role', N'STRING', N'Role', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField6', 3, N'Tier', N'STRING', N'Tier', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField6', 4, N'Countries Included In Mandate', N'String', N'Countries Included In Mandate', 0, 0, 1, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField6', 12, N'Role', N'STRING', N'Role', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField7', 1, N'Job Title', N'STRING', N'Job Title', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField7', 3, N'Sector', N'STRING', N'Sector', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField7', 4, N'Countries Cleared For Mandate', N'String', N'Countries Cleared For Mandate', 0, 0, 1, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField7', 12, N'Job Title', N'STRING', N'Job Title', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField8', 1, N'Practice Group', N'String', N'Practice Group', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField8', 3, N'Number Open Matters', N'String', N'Number Open Matters', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField8', 12, N'Practice Group', N'String', N'Practice Group', 0, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField9', 1, N'Sub Practice Group', N'String', N'Sub Practice Group', 1, 1, 0, 0, 1, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField9', 3, N'Cleared Countries', N'String', N'Cleared Countries', 0, 0, 0, 0, 0, 0, NULL)
INSERT [dbo].[EntityCustomFieldConfig] ([Field], [EntityTypeId], [DisplayName], [Type], [Description], [IsIncludedInNotifications], [IsIncludedInEntityTooltip], [IsMultiValued], [IsIncludedInExtendedValidation], [IsIncludedInGeneralInformation], [IsConfidential], [DateTimeFormat]) VALUES (N'CustomField9', 12, N'Sub Practice Group', N'String', N'Sub Practice Group', 0, 1, 0, 0, 1, 0, NULL)
SET IDENTITY_INSERT [dbo].[ApplicationUsers] ON
--INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (-1, 3, N'IntApp', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'IntApp', N'', 1, 0, CAST(N'2015-08-10 14:09:41.450' AS DateTime), CAST(N'2015-08-10 14:09:41.450' AS DateTime), NULL, 3, 3, 1)
--INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (1, 1, N'admin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Administrator', N'', 1, 0, CAST(N'2015-08-10 14:09:37.510' AS DateTime), CAST(N'2017-06-30 15:25:03.593' AS DateTime), CAST(N'2017-06-30 15:25:03.427' AS DateTime), 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (2, 1, N'freshfields\FCL-SA-WEB-V100-W', N'f3YEIv52ihIhTdm8luARBw==', N'Web DC1', N'FCL-SA-WEB-V100-W@freshfields.com', 1, 0, CAST(N'2015-08-10 14:16:41.637' AS DateTime), CAST(N'2017-05-04 11:39:27.030' AS DateTime), CAST(N'2017-05-04 11:39:26.853' AS DateTime), 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (3, 1, N'FRESHFIELDS\FCL-SA-APP-V150-W', N'N+HLgvi7t8LHGZzhRznIgA==', N'Extension Service ', N'FCL-SA-APP-V150-W@freshfields.com', 1, 0, CAST(N'2015-08-10 18:08:08.290' AS DateTime), CAST(N'2017-05-03 17:47:31.470' AS DateTime), CAST(N'2017-03-07 17:17:12.540' AS DateTime), 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (4, 1, N'freshfields\randerson', N'VjHf6ilMSq1sKv6KCNuSfw==', N'Reuben Anderson', N'reuben.anderson@freshfields.com', 1, 0, CAST(N'2015-09-30 15:17:14.320' AS DateTime), CAST(N'2017-04-04 15:11:05.903' AS DateTime), CAST(N'2017-04-04 15:11:05.953' AS DateTime), NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (5, 3, N'freshfields\apanchabakesan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ashok Panchabakesan', N'ashok.panchabakesan@freshfields.com', 1, 0, CAST(N'2015-11-17 17:59:33.800' AS DateTime), CAST(N'2017-06-28 12:00:16.707' AS DateTime), CAST(N'2016-04-18 16:36:59.980' AS DateTime), NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (6, 1, N'freshfields\rstollenmaier', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Rob Stollenmaier', N'robert.stollenmaier@freshfields.com', 1, 0, CAST(N'2015-11-17 18:00:19.057' AS DateTime), CAST(N'2017-06-30 18:07:27.657' AS DateTime), CAST(N'2017-06-30 18:07:27.397' AS DateTime), 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (7, 1, N'freshfields\jchastell', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'John Chastell', N'john.chastell@freshfields.com', 1, 0, CAST(N'2016-02-11 16:47:59.700' AS DateTime), CAST(N'2016-03-15 10:55:54.757' AS DateTime), CAST(N'2016-02-25 12:36:36.740' AS DateTime), 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (8, 1, N'freshfields\a-apanchabakesan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ashok Admin account', N'ashok.panchabakesan@freshfields.com', 1, 1, CAST(N'2016-02-15 17:17:42.220' AS DateTime), CAST(N'2016-04-26 17:48:26.970' AS DateTime), CAST(N'2016-04-26 17:48:26.950' AS DateTime), 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (9, 2, N'freshfields\dmartins', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Dami Martins', N'dami.martins@freshfields.com', 1, 1, CAST(N'2016-03-09 10:29:04.833' AS DateTime), CAST(N'2017-03-10 11:04:55.460' AS DateTime), CAST(N'2017-03-10 11:04:55.437' AS DateTime), 2, 2, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (10, 1, N'freshfields\kjaupaj', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Klintian Jaupaj', N'klintian.jaupaj@freshfields.com', 1, 0, CAST(N'2016-03-09 10:29:30.267' AS DateTime), CAST(N'2017-03-10 10:19:58.770' AS DateTime), CAST(N'2017-03-10 10:19:58.743' AS DateTime), 2, 2, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (11, 1, N'agallagher', N'VmRwEzUgK6VFCSs1mdI6Ug==', N'Alan Gallagher', N'alan.gallagher@errigalitconsulting.com', 1, 0, CAST(N'2016-03-14 18:17:32.940' AS DateTime), CAST(N'2016-03-15 10:56:09.820' AS DateTime), CAST(N'2016-03-14 18:23:00.947' AS DateTime), 2, 2, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (12, NULL, N'freshfields\lontestlab11', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'lontestlab11', N'lontestlab11@freshfields.com', 1, 0, CAST(N'2016-03-23 12:52:13.653' AS DateTime), CAST(N'2016-11-07 11:07:47.763' AS DateTime), CAST(N'2016-11-07 11:07:47.757' AS DateTime), 3, 3, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (13, 1, N'freshfields\jeakin', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'John Eakin', N'john.eakin@freshfields.com', 1, 1, CAST(N'2016-03-24 12:14:49.717' AS DateTime), CAST(N'2017-01-17 10:41:52.773' AS DateTime), CAST(N'2017-01-17 10:41:52.750' AS DateTime), 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (14, 1, N'freshfields\sogilvie', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Suzie Ogilvie', N'Suzie.Ogilvie@freshfields.com', 1, 0, CAST(N'2016-04-15 15:47:41.507' AS DateTime), CAST(N'2017-06-29 10:16:45.127' AS DateTime), NULL, 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (15, 1, N'freshfields\udowns', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ursula Downs', N'Ursula.Downs@freshfields.com', 1, 0, CAST(N'2016-04-15 15:48:23.260' AS DateTime), CAST(N'2017-06-17 14:29:47.290' AS DateTime), NULL, 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (16, 1, N'freshfields\elau', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Erica Lau', N'Erica.Lau@freshfields.com', 1, 0, CAST(N'2016-04-15 15:49:43.200' AS DateTime), CAST(N'2017-06-29 17:09:12.413' AS DateTime), CAST(N'2017-06-29 17:09:12.347' AS DateTime), 2, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (17, 1, N'freshfields\fqureshi', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Faraz Qureshi', N'Faraz.Qureshi@freshfields.com', 1, 1, CAST(N'2016-04-15 15:50:28.463' AS DateTime), CAST(N'2016-04-15 15:50:28.463' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (18, 1, N'freshfields\asknox', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ashley Knox', N'Ashley.Knox@freshfields.com', 1, 1, CAST(N'2016-04-15 15:51:21.840' AS DateTime), CAST(N'2017-02-23 12:18:10.043' AS DateTime), CAST(N'2017-02-23 12:18:10.023' AS DateTime), NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (19, 1, N'freshfields\stcarson', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Steve Carson', N'Steve.Carson@freshfields.com', 1, 1, CAST(N'2016-04-15 15:51:51.937' AS DateTime), CAST(N'2016-04-15 15:52:00.133' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (20, 1, N'freshfields\aelamraoui', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amal El Amraoui', N'Amal.ElAmraoui@freshfields.com', 1, 0, CAST(N'2016-04-15 15:52:45.040' AS DateTime), CAST(N'2017-02-22 12:14:16.720' AS DateTime), NULL, 2, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (21, 3, N'freshfields\Lontestlab10', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Lontestlab10', N'Lontestlab10@freshfields.com', 1, 0, CAST(N'2016-04-21 16:33:19.303' AS DateTime), CAST(N'2016-12-13 16:40:19.470' AS DateTime), CAST(N'2016-12-13 16:40:19.187' AS DateTime), NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (22, 3, N'freshfields\Lontestlab57', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Lontestlab57', N'Lontestlab57 @freshfields.com', 1, 0, CAST(N'2016-04-21 16:33:35.113' AS DateTime), CAST(N'2016-10-05 17:33:19.360' AS DateTime), CAST(N'2016-10-05 17:33:19.527' AS DateTime), NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (23, NULL, N'freshfields\LONTESTLAB27', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Tetsing Account', N'LONTESTLAB27@email.com', 1, 0, CAST(N'2016-06-07 12:43:25.097' AS DateTime), CAST(N'2016-10-17 10:59:22.173' AS DateTime), CAST(N'2016-10-17 10:59:22.307' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (24, 1, N'freshfields\fcl-sa-int-v805-i', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'IB DC2', N'fcl-sa-int-v805-i@freshfields.com', 1, 1, CAST(N'2016-06-24 15:03:45.687' AS DateTime), CAST(N'2017-04-12 11:04:34.863' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (25, 1, N'freshfields\nbegum', N'gdyb21LQTcIANtvYMT7QVQ==', N'Nazmin Begum', N'nazmin.begum@freshfields.com', 1, 1, CAST(N'2016-08-03 15:39:21.333' AS DateTime), CAST(N'2016-08-04 16:21:27.050' AS DateTime), CAST(N'2016-08-04 16:21:26.980' AS DateTime), NULL, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (26, 1, N'FRESHFIELDS\FCL-SA-APP-V861-W', N'WLXUhFZYGmZjjWXI6jcozQ==', N'Extension Service DC2', N'email@freshfield.com', 1, 1, CAST(N'2016-08-09 10:39:23.627' AS DateTime), CAST(N'2017-04-12 11:10:36.443' AS DateTime), NULL, 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (27, 1, N'freshfields\algallagher', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Alan Gallagher', N'alan.gallagher@freshfields.com', 1, 0, CAST(N'2016-09-08 15:55:28.453' AS DateTime), CAST(N'2017-06-29 16:40:04.023' AS DateTime), CAST(N'2017-06-29 16:40:03.970' AS DateTime), 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (28, 2, N'freshfields\gismain', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Garry Ismain', N'Garry.Ismain@freshfields.com', 1, 1, CAST(N'2016-09-27 17:38:39.760' AS DateTime), CAST(N'2016-09-28 12:35:07.310' AS DateTime), CAST(N'2016-09-28 12:35:07.443' AS DateTime), 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (29, 2, N'freshfields\Lontestlab33', N'CB0eFo27lDCixrwi9nwYUg==', N'Lontestlab33', N'Lontestlab33 @freshfields.com', 1, 0, CAST(N'2016-10-04 10:56:24.090' AS DateTime), CAST(N'2016-10-04 10:56:24.090' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (30, 3, N'freshfields\LontestlabCTX', N'CB0eFo27lDCixrwi9nwYUg==', N'Context Test Account - DELETE ME', N'LontestlabCTX @freshfields.com', 1, 1, CAST(N'2016-10-04 10:58:44.457' AS DateTime), CAST(N'2016-10-04 10:58:44.457' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (31, 3, N'freshfields\LontestlabCTX', N'CB0eFo27lDCixrwi9nwYUg==', N'Context Test User - DELETE ME', N'lontestlabctx @freshfields.com', 1, 1, CAST(N'2016-10-04 12:49:14.653' AS DateTime), CAST(N'2016-10-04 12:59:08.870' AS DateTime), NULL, NULL, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (32, NULL, N'freshfields\dvieira', N'gdyb21LQTcIANtvYMT7QVQ==', N'Domingos', N'Domingos.VIEIRAANDRADE@freshfields.com', 1, 1, CAST(N'2016-10-10 12:22:33.137' AS DateTime), CAST(N'2016-10-10 12:22:33.137' AS DateTime), NULL, NULL, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (33, 1, N'freshfields\jclark', N'gdyb21LQTcIANtvYMT7QVQ==', N'James Clark', N'James.CLARK@freshfields.com', 1, 1, CAST(N'2016-10-13 12:07:40.747' AS DateTime), CAST(N'2016-12-14 17:24:57.117' AS DateTime), CAST(N'2016-12-14 17:24:57.257' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (34, 1, N'freshfields\a-jclark', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'James Clark', N'james.clark@freshfields.com', 1, 1, CAST(N'2016-10-13 16:44:03.910' AS DateTime), CAST(N'2016-10-13 16:58:40.863' AS DateTime), CAST(N'2016-10-13 16:58:40.987' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (35, NULL, N'a-jclark', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'James Clark', N'james.clark@freshfields.com', 1, 1, CAST(N'2016-10-13 16:55:54.547' AS DateTime), CAST(N'2016-10-13 16:55:54.547' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (36, 3, N'freshfields\vkelmendi', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Visar Kelmendi', N'Visar.KELMENDI@freshfields.com', 1, 1, CAST(N'2016-10-19 17:11:17.613' AS DateTime), CAST(N'2017-03-01 11:24:33.280' AS DateTime), NULL, NULL, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (37, 1, N'freshfields\akonstantaras', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Andrew Konstantaras', N'Andrew.KONSTANTARAS@freshfields.com', 1, 1, CAST(N'2016-11-08 12:08:09.200' AS DateTime), CAST(N'2017-02-06 12:15:00.860' AS DateTime), CAST(N'2017-02-06 12:15:00.843' AS DateTime), 2, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (38, 2, N'freshfields\jajude', N'gdyb21LQTcIANtvYMT7QVQ==', N'James Jude', N'james.jude@freshfields.com', 1, 0, CAST(N'2016-11-21 14:53:58.567' AS DateTime), CAST(N'2016-11-21 15:34:51.610' AS DateTime), CAST(N'2016-11-21 15:34:51.790' AS DateTime), NULL, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (39, 1, N'freshfields\wcutler', N'gdyb21LQTcIANtvYMT7QVQ==', N'Wendy Cutler', N'wendy.cutler@freshfields.com', 1, 1, CAST(N'2016-12-14 17:05:50.747' AS DateTime), CAST(N'2017-05-11 18:14:52.763' AS DateTime), CAST(N'2017-05-11 18:14:52.540' AS DateTime), NULL, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (40, 1, N'freshfields\trapley', N'gdyb21LQTcIANtvYMT7QVQ==', N'Taf Rapley', N'taf.rapley@freshfields.com', 1, 0, CAST(N'2016-12-20 16:34:12.463' AS DateTime), CAST(N'2017-06-30 12:11:49.820' AS DateTime), CAST(N'2017-06-30 12:11:49.747' AS DateTime), 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (41, 2, N'freshfields\gponder', N'gdyb21LQTcIANtvYMT7QVQ==', N'Gary Ponder', N'Gary.Ponder@freshfields.com', 1, 0, CAST(N'2017-01-17 10:40:20.083' AS DateTime), CAST(N'2017-01-17 10:40:20.083' AS DateTime), NULL, NULL, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (42, 1, N'freshfields\davmorris', N'X03MO1qnZdYdgyfeuILPmQ==', N'David Morris', N'david.morris@freshfields.com', 1, 1, CAST(N'2017-02-14 12:11:12.177' AS DateTime), CAST(N'2017-05-11 16:20:42.730' AS DateTime), CAST(N'2017-05-11 16:20:42.557' AS DateTime), 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (43, 1, N'Freshfields\adjohn', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Adrian John', N'adrian.john@freshfields.com', 1, 0, CAST(N'2017-02-22 12:10:58.673' AS DateTime), CAST(N'2017-06-30 16:55:25.200' AS DateTime), CAST(N'2017-06-30 16:55:24.997' AS DateTime), 2, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (44, 1, N'freshfields\nwitcomb', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Nicholas Witcomb', N'nicholas.witcomb@freshfields.com', 1, 0, CAST(N'2017-02-22 12:11:49.690' AS DateTime), CAST(N'2017-06-30 17:44:10.863' AS DateTime), CAST(N'2017-06-30 17:44:10.643' AS DateTime), 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (45, 1, N'freshfields\bgreenwald', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Brenna Greenwald', N'Brenna.GREENWALD@freshfields.com', 1, 0, CAST(N'2017-02-22 12:12:09.503' AS DateTime), CAST(N'2017-06-30 16:42:18.510' AS DateTime), CAST(N'2017-06-30 16:42:18.303' AS DateTime), 2, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (46, 1, N'freshfields\aoputa', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Adaora Oputa', N'adaora.oputa@freshfields.com', 1, 0, CAST(N'2017-02-22 12:12:31.487' AS DateTime), CAST(N'2017-06-26 11:24:01.817' AS DateTime), CAST(N'2017-06-26 11:24:01.623' AS DateTime), 2, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (47, NULL, N'monoe', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Moishe Noe', N'Moishe.NOE@freshfields.com', 1, 1, CAST(N'2017-02-22 12:15:12.653' AS DateTime), CAST(N'2017-02-22 12:15:12.653' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (48, NULL, N'freshfields\mknowles', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Knowles', N'Matthew.KNOWLES@freshfields.com', 1, 0, CAST(N'2017-02-22 12:15:36.580' AS DateTime), CAST(N'2017-03-09 12:54:39.530' AS DateTime), CAST(N'2017-03-09 12:54:39.523' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (49, NULL, N'freshfields\rrafikhanova', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Rana Rafikhanova', N'rana.rafikhanova@freshfields.com', 1, 0, CAST(N'2017-02-22 12:18:55.623' AS DateTime), CAST(N'2017-03-09 17:50:56.967' AS DateTime), CAST(N'2017-03-09 17:50:56.943' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (50, NULL, N'freshfields\jschleyeralt', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jorge Antonio Schleyer Alt', N'jorge.schleyer@freshfields.com', 1, 0, CAST(N'2017-02-22 12:19:26.550' AS DateTime), CAST(N'2017-03-01 11:19:24.740' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (51, NULL, N'freshfields\jredkwa', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jarrad Redkwa', N'Jarrad.REDKWA@freshfields.com', 1, 0, CAST(N'2017-02-22 12:20:06.770' AS DateTime), CAST(N'2017-03-01 11:19:06.597' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (52, NULL, N'freshfields\eadepoju', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Esther Adepoju', N'Esther.ADEPOJU@freshfields.com', 1, 0, CAST(N'2017-02-22 12:21:07.520' AS DateTime), CAST(N'2017-03-01 11:20:34.610' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (53, NULL, N'freshfields\AZSMITH', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amanda Smith', N'Amanda.Smith@freshfields.com', 1, 0, CAST(N'2017-02-22 12:21:37.567' AS DateTime), CAST(N'2017-03-01 11:19:39.993' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (54, NULL, N'freshfields\DBENKHEDDA', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Donna Benkhedda', N'donna.benkhedda@freshfields.com', 1, 0, CAST(N'2017-02-22 12:22:33.603' AS DateTime), CAST(N'2017-03-01 11:20:23.153' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (55, NULL, N'spapafio', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sharon Papafio', N'sharon.papafio@freshfields.com', 1, 1, CAST(N'2017-02-22 12:24:16.413' AS DateTime), CAST(N'2017-02-22 12:24:16.413' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (56, NULL, N'freshfields\koldfield', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Kathryn Oldfield', N'kathryn.oldfield@freshfields.com', 1, 0, CAST(N'2017-02-22 12:26:34.133' AS DateTime), CAST(N'2017-03-01 11:21:01.360' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (57, NULL, N'freshfields\aconway', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ashley Conway', N'ashley.conway@freshfields.com', 1, 1, CAST(N'2017-02-22 17:44:37.280' AS DateTime), CAST(N'2017-03-01 11:20:11.207' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (58, 2, N'freshfields\bbommineni', N'X03MO1qnZdYdgyfeuILPmQ==', N'Bapaiah Bommineni', N'Bapaiah.BOMMINENI@freshfields.com', 1, 1, CAST(N'2017-02-23 14:01:04.573' AS DateTime), CAST(N'2017-03-02 18:49:22.307' AS DateTime), CAST(N'2017-03-02 18:49:22.303' AS DateTime), 2, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (59, 1, N'freshfields\ssey', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stephanie Sey', N'stephanie.sey@freshfields.com', 1, 0, CAST(N'2017-03-02 17:06:25.017' AS DateTime), CAST(N'2017-06-30 12:51:28.417' AS DateTime), CAST(N'2017-06-30 12:51:28.303' AS DateTime), 2, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (60, 1, N'freshfields\jglaeser', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Julieth Glaeser', N'julieth.glaeser@freshfields.com', 1, 0, CAST(N'2017-03-07 08:51:45.623' AS DateTime), CAST(N'2017-06-30 12:10:28.643' AS DateTime), CAST(N'2017-06-30 12:10:27.623' AS DateTime), 2, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (61, 1, N'freshfields\FCL-SA-INT-V001-I', N'6QDtUXA3CIS3zrShdsv0sQ==', N'IB DC1', N'FCL-SA-INT-V001-I@freshfields.com', 1, 0, CAST(N'2017-03-14 16:43:51.863' AS DateTime), CAST(N'2017-06-10 20:13:20.933' AS DateTime), NULL, 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (62, 1, N'FRESHFIELDS\FCL-SA-WEB-V100-API', N'X03MO1qnZdYdgyfeuILPmQ==', N'API DC1', N'FCL-SA-WEB-V100-API@freshfields.com', 1, 0, CAST(N'2017-03-16 15:59:46.210' AS DateTime), CAST(N'2017-05-03 17:46:52.050' AS DateTime), NULL, 1, 1, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (63, 1, N'freshfields\FCL-SA-WEB-V590-W', N'6Fvb1A5GzYgL3/D3S74/6g==', N'Web DC2', N'FCL-SA-WEB-V590-W@freshfields.com', 1, 0, CAST(N'2017-04-12 10:57:28.810' AS DateTime), CAST(N'2017-05-03 17:48:40.620' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (64, 1, N'freshfields\FCL-SA-WEB-V590-API', N'6Fvb1A5GzYgL3/D3S74/6g==', N'API DC2', N'FCL-SA-WEB-V590-API@freshfields.com', 1, 0, CAST(N'2017-04-12 11:11:15.560' AS DateTime), CAST(N'2017-05-03 17:49:09.980' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (65, 1, N'freshfields\ACL-SA-APP-V302-W', N'6Fvb1A5GzYgL3/D3S74/6g==', N'Asia Extension Service DC5', N'asia@freshfields.com', 1, 1, CAST(N'2017-04-12 11:12:44.577' AS DateTime), CAST(N'2017-04-12 11:12:44.577' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (66, 1, N'freshfields\ACL-SA-APP-V802-W', N'6Fvb1A5GzYgL3/D3S74/6g==', N'Asia Extension Service DC6', N'Asia@freshfields.com', 1, 1, CAST(N'2017-04-12 11:13:31.060' AS DateTime), CAST(N'2017-04-12 11:13:31.060' AS DateTime), NULL, NULL, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (67, 1, N'freshfields\andavies', N'cZ3x2eI6Q4Uwg6yvwDtwtQ==', N'Anthony Davies ', N'anthony.davies@freshfields.com', 1, 0, CAST(N'2017-05-03 17:51:56.677' AS DateTime), CAST(N'2017-06-29 10:19:03.113' AS DateTime), CAST(N'2017-06-29 10:01:25.317' AS DateTime), 1, NULL, 1)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (68, NULL, N'freshfields\madeosun', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Moyo Adeosun', N'Moyo.ADEOSUN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:19:26.633' AS DateTime), CAST(N'2017-05-20 12:19:26.633' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (69, NULL, N'freshfields\saiahmed', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Saiqa Ahmed', N'Saiqa.AHMED@freshfields.com', 1, 0, CAST(N'2017-05-20 12:21:38.300' AS DateTime), CAST(N'2017-05-20 12:21:38.300' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (70, NULL, N'freshfields\sakram', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Shezad Akram', N'Shehzad.AKRAM@freshfields.com', 1, 0, CAST(N'2017-05-20 12:22:27.743' AS DateTime), CAST(N'2017-05-20 12:22:27.743' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (71, NULL, N'freshfields\obalson', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Olivia Balson', N'olivia.balson@freshfields.com', 1, 0, CAST(N'2017-05-20 12:23:42.177' AS DateTime), CAST(N'2017-05-20 12:23:42.177' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (72, NULL, N'freshfields\abeadling', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Alexandra Beadling', N'Alexandra.BEADLING@freshfields.com', 1, 0, CAST(N'2017-05-20 12:24:22.863' AS DateTime), CAST(N'2017-05-20 12:24:22.863' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (73, NULL, N'freshfields\sbhamjee', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sufyaan Bhamjee', N'Sufyaan.BHAMJEE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:25:02.280' AS DateTime), CAST(N'2017-05-20 12:25:02.280' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (74, NULL, N'freshfields\lbrimelow', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Laura Brimelow', N'Laura.BRIMELOW@freshfields.com', 1, 0, CAST(N'2017-05-20 12:25:34.733' AS DateTime), CAST(N'2017-05-20 12:25:34.733' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (75, NULL, N'freshfields\andchan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Andrew Chan', N'Andrew.CHAN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:26:06.187' AS DateTime), CAST(N'2017-05-20 12:26:06.187' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (76, NULL, N'freshfields\acowan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Alastair Cowan', N'Alastair.COWAN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:26:41.380' AS DateTime), CAST(N'2017-05-20 12:26:41.380' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (77, NULL, N'freshfields\tcraddock', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Toby Craddock', N'Toby.CRADDOCK@freshfields.com', 1, 0, CAST(N'2017-05-20 12:27:13.003' AS DateTime), CAST(N'2017-05-20 12:27:13.003' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (78, NULL, N'freshfields\zdabir', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Zainab Dabir', N'Zainab.DABIR@freshfields.com', 1, 0, CAST(N'2017-05-20 12:29:34.393' AS DateTime), CAST(N'2017-05-20 12:29:34.393' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (79, NULL, N'freshfields\adougan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Alasdair Dougan', N'Alasdair.DOUGAN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:30:08.070' AS DateTime), CAST(N'2017-05-20 12:30:08.070' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (80, NULL, N'freshfields\jdowley', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Joseph Dowley', N'Joseph.DOWLEY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:30:49.467' AS DateTime), CAST(N'2017-05-20 12:30:49.467' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (81, NULL, N'freshfields\bellard', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Beth Ellard', N'Beth.ELLARD@freshfields.com', 1, 0, CAST(N'2017-05-20 12:31:28.463' AS DateTime), CAST(N'2017-05-20 12:31:28.463' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (82, NULL, N'freshfields\eeritobor', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Elizabeth Eritobor', N'Elizabeth.Eritobor@freshfields.com', 1, 0, CAST(N'2017-05-20 12:32:08.827' AS DateTime), CAST(N'2017-05-20 12:32:08.827' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (83, NULL, N'freshfields\emgreen', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Emily Green', N'Emily.GREEN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:32:41.567' AS DateTime), CAST(N'2017-05-20 12:32:41.567' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (84, NULL, N'freshfields\zgundersen', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Zoe Gundersen', N'Zoe.GUNDERSEN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:33:18.737' AS DateTime), CAST(N'2017-05-20 12:33:18.737' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (85, NULL, N'freshfields\allyhague', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ally Hague', N'Ally.HAGUE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:35:08.923' AS DateTime), CAST(N'2017-05-20 12:35:08.923' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (86, NULL, N'freshfields\challrutledge', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Chris Hall-Rutledge', N'Christopher.HALL-RUTLEDGE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:35:48.260' AS DateTime), CAST(N'2017-05-20 12:35:48.260' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (87, NULL, N'freshfields\rhaque', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Rizwana Haque', N'Rizwana.HAQUE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:36:33.757' AS DateTime), CAST(N'2017-05-20 12:36:33.757' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (88, NULL, N'freshfields\josharper', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Joshua Harper', N'Joshua.HARPER@freshfields.com', 1, 0, CAST(N'2017-05-20 12:37:09.070' AS DateTime), CAST(N'2017-06-21 10:12:58.477' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (89, NULL, N'freshfields\ahealey', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Abigail Healy', N'Abigail.HEALEY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:37:49.660' AS DateTime), CAST(N'2017-05-20 12:37:49.660' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (90, NULL, N'freshfields\lhibbert', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Laura Hibbert', N'Laura.HIBBERT@freshfields.com', 1, 0, CAST(N'2017-05-20 12:40:11.590' AS DateTime), CAST(N'2017-05-20 12:40:11.590' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (91, NULL, N'freshfields\shu', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Shu Hu', N'Shu.HU@freshfields.com', 1, 0, CAST(N'2017-05-20 12:40:40.013' AS DateTime), CAST(N'2017-05-20 12:40:40.013' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (92, NULL, N'freshfields\mhughes', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Monica Hughes', N'Monica.HUGHES@freshfields.com', 1, 0, CAST(N'2017-05-20 12:41:09.947' AS DateTime), CAST(N'2017-05-20 12:41:09.947' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (93, NULL, N'freshfields\muiqbal', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Mudassar Iqbal', N'Mudassar.IQBAL@freshfields.com', 1, 0, CAST(N'2017-05-20 12:41:42.363' AS DateTime), CAST(N'2017-05-20 12:41:42.363' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (94, NULL, N'freshfields\ajouini', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amel Jouini', N'Amel.JOUINI@freshfields.com', 1, 0, CAST(N'2017-05-20 12:42:25.823' AS DateTime), CAST(N'2017-05-20 12:42:25.823' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (95, NULL, N'freshfields\nlofthouse', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Niamh Lofthouse', N'Niamh.LOFTHOUSE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:43:03.410' AS DateTime), CAST(N'2017-05-20 12:43:03.410' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (96, NULL, N'freshfields\jmarley', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Josh Marley', N'Josh.MARLEY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:43:38.383' AS DateTime), CAST(N'2017-05-20 12:43:38.383' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (97, NULL, N'freshfields\zmasood', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Zohaib Masood', N'Zohaib.MASOOD@freshfields.com', 1, 0, CAST(N'2017-05-20 12:44:17.020' AS DateTime), CAST(N'2017-05-20 12:44:17.020' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (98, NULL, N'freshfields\tmortimore', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Tom Mortimore', N'Tom.MORTIMORE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:44:47.443' AS DateTime), CAST(N'2017-05-20 12:44:47.443' AS DateTime), NULL, 1, NULL, 0)
GO
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (99, NULL, N'freshfields\smungo', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stephen Mungo', N'Stephen.MUNGO@freshfields.com', 1, 0, CAST(N'2017-05-20 12:45:20.277' AS DateTime), CAST(N'2017-05-20 12:45:20.277' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (100, NULL, N'freshfields\demurphy', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Devina Murphy', N'Devina.MURPHY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:45:54.640' AS DateTime), CAST(N'2017-05-20 12:45:54.640' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (101, NULL, N'freshfields\samurray', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sandra Murray', N'Sandra.MURRAY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:46:44.680' AS DateTime), CAST(N'2017-05-20 12:46:44.680' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (102, NULL, N'freshfields\jnewton', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jon Newton', N'Jon.NEWTON@freshfields.com', 1, 0, CAST(N'2017-05-20 12:47:14.517' AS DateTime), CAST(N'2017-05-20 12:47:14.517' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (103, NULL, N'freshfields\tnistor', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Teodora Nistor', N'Teodora.NISTOR@freshfields.com', 1, 0, CAST(N'2017-05-20 12:47:52.240' AS DateTime), CAST(N'2017-05-20 12:47:52.240' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (104, NULL, N'freshfields\daoneill', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'David O''Neill', N'David.ONEILL@freshfields.com', 1, 0, CAST(N'2017-05-20 12:48:29.500' AS DateTime), CAST(N'2017-05-20 12:48:29.500' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (105, NULL, N'freshfields\safpatel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Safwaan Patel', N'Safwaan.PATEL@freshfields.com', 1, 0, CAST(N'2017-05-20 12:49:07.960' AS DateTime), CAST(N'2017-05-20 12:49:07.960' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (106, NULL, N'freshfields\sanpatel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sana Patel', N'Sana.PATEL@freshfields.com', 1, 0, CAST(N'2017-05-20 12:49:37.747' AS DateTime), CAST(N'2017-05-20 12:49:37.747' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (107, NULL, N'freshfields\lpeers', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Laura Peers', N'Laura.PEERS@freshfields.com', 1, 0, CAST(N'2017-05-20 12:50:08.390' AS DateTime), CAST(N'2017-06-28 10:30:05.523' AS DateTime), CAST(N'2017-06-28 10:30:05.327' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (108, NULL, N'freshfields\epitcher', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Emma Pitcher', N'Emma.PITCHER@freshfields.com', 1, 0, CAST(N'2017-05-20 12:50:40.570' AS DateTime), CAST(N'2017-05-20 12:50:40.570' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (109, NULL, N'freshfields\droubinowitz', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'David Roubinowitz', N'David.ROUBINOWITZ@freshfields.com', 1, 0, CAST(N'2017-05-20 12:51:16.237' AS DateTime), CAST(N'2017-05-20 12:51:16.237' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (110, NULL, N'freshfields\lsage', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Leonie Sage', N'Leonie.SAGE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:51:51.800' AS DateTime), CAST(N'2017-05-20 12:51:51.800' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (111, NULL, N'freshfields\lsanders', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Laura Sanders', N'Laura.SANDERS@freshfields.com', 1, 0, CAST(N'2017-05-20 12:52:23.817' AS DateTime), CAST(N'2017-05-20 12:52:23.817' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (112, NULL, N'freshfields\ssecretary', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Suraiya Secretary', N'Suraiya.SECRETARY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:52:55.433' AS DateTime), CAST(N'2017-05-20 12:52:55.433' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (113, NULL, N'freshfields\losmith', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Louise Smith', N'Louise.SMITH@freshfields.com', 1, 0, CAST(N'2017-05-20 12:53:23.553' AS DateTime), CAST(N'2017-05-20 12:53:23.553' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (114, NULL, N'freshfields\sstudak', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Sue Studak', N'Sue.STUDAK@freshfields.com', 1, 0, CAST(N'2017-05-20 12:53:50.640' AS DateTime), CAST(N'2017-05-20 12:53:50.640' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (115, NULL, N'freshfields\nitan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Nicole Tan', N'Nicole.TAN@freshfields.com', 1, 0, CAST(N'2017-05-20 12:54:18.267' AS DateTime), CAST(N'2017-05-20 12:54:18.267' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (116, NULL, N'freshfields\litang', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Li Tang', N'Li.TANG@freshfields.com', 1, 0, CAST(N'2017-05-20 12:54:45.213' AS DateTime), CAST(N'2017-05-20 12:54:45.213' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (117, NULL, N'freshfields\lthornsby', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Louise Thornsby', N'Louise.THORNSBY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:55:17.563' AS DateTime), CAST(N'2017-05-20 12:55:17.563' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (118, NULL, N'freshfields\datichbi', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Daniel Tichbi', N'Daniel.TICHBI@freshfields.com', 1, 0, CAST(N'2017-05-20 12:55:50.660' AS DateTime), CAST(N'2017-05-20 12:55:50.660' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (119, NULL, N'freshfields\mtilley', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Tilley', N'Matthew.TILLEY@freshfields.com', 1, 0, CAST(N'2017-05-20 12:56:20.007' AS DateTime), CAST(N'2017-05-20 12:56:20.007' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (120, NULL, N'freshfields\kturco', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Karin Turco', N'Karin.TURCO@freshfields.com', 1, 0, CAST(N'2017-05-20 12:56:47.430' AS DateTime), CAST(N'2017-05-20 12:56:47.430' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (121, NULL, N'freshfields\dvincent', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Dan Vincent', N'Dan.VINCENT@freshfields.com', 1, 0, CAST(N'2017-05-20 12:57:15.917' AS DateTime), CAST(N'2017-05-20 12:57:15.917' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (122, NULL, N'freshfields\awalton', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amy Walton', N'Amy.WALTON@freshfields.com', 1, 0, CAST(N'2017-05-20 12:57:43.460' AS DateTime), CAST(N'2017-05-20 12:57:43.460' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (123, NULL, N'freshfields\twang', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Taibo Wang', N'Taibo.WANG@freshfields.com', 1, 0, CAST(N'2017-05-20 12:58:13.630' AS DateTime), CAST(N'2017-05-20 12:58:13.630' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (124, NULL, N'freshfields\jwhalebone', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jamie Whalebone', N'Jamie.WHALEBONE@freshfields.com', 1, 0, CAST(N'2017-05-20 12:58:44.490' AS DateTime), CAST(N'2017-05-20 12:58:44.490' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (125, NULL, N'freshfields\myarwood', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Yarwood', N'Matthew.YARWOOD@freshfields.com', 1, 0, CAST(N'2017-05-20 12:59:17.643' AS DateTime), CAST(N'2017-05-20 12:59:17.643' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (126, NULL, N'freshfields\jayang', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jasmine Yang', N'Jasmine.YANG@freshfields.com', 1, 0, CAST(N'2017-05-20 12:59:57.517' AS DateTime), CAST(N'2017-05-20 12:59:57.517' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (127, NULL, N'freshfields\eyao', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Eva Yao', N'Eva.YAO@freshfields.com', 1, 0, CAST(N'2017-05-20 13:00:26.150' AS DateTime), CAST(N'2017-05-20 13:00:26.150' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (128, NULL, N'freshfields\archou', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ariel Chou', N'Ariel.CHOU@freshfields.com', 1, 0, CAST(N'2017-05-20 13:00:52.127' AS DateTime), CAST(N'2017-05-20 13:00:52.127' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (129, NULL, N'freshfields\iaadams', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ian Adams', N'Ian.ADAMS@freshfields.com', 1, 0, CAST(N'2017-05-20 13:06:07.697' AS DateTime), CAST(N'2017-05-20 13:06:07.697' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (130, NULL, N'freshfields\vibarthel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Vincent Barthel', N'Vincent.BARTHEL@freshfields.com', 1, 1, CAST(N'2017-05-20 13:06:35.473' AS DateTime), CAST(N'2017-05-20 13:06:35.473' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (131, NULL, N'freshfields\lbowes', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Lola Bowes', N'lola.bowes@freshfields.com', 1, 0, CAST(N'2017-05-20 13:07:00.533' AS DateTime), CAST(N'2017-05-20 13:07:00.533' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (132, NULL, N'freshfields\scallaghan', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Steph Callaghan', N'Steph.CALLAGHAN@freshfields.com', 1, 0, CAST(N'2017-05-20 13:07:31.293' AS DateTime), CAST(N'2017-05-20 13:07:31.293' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (133, NULL, N'freshfields\mcaulfield', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Mardi-Louise Caulfield', N'Mardi-Louise.CAULFIELD@freshfields.com', 1, 0, CAST(N'2017-05-20 13:08:14.483' AS DateTime), CAST(N'2017-05-20 13:08:14.483' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (134, NULL, N'freshfields\gcox', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gayle Cox', N'Gayle.COX@freshfields.com', 1, 0, CAST(N'2017-05-20 13:08:41.340' AS DateTime), CAST(N'2017-05-20 13:08:41.340' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (135, NULL, N'freshfields\jellison', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jack Ellison', N'Jack.ELLISON@freshfields.com', 1, 0, CAST(N'2017-05-20 13:09:13.280' AS DateTime), CAST(N'2017-05-20 13:09:13.280' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (136, NULL, N'freshfields\kgleave', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Kerry Gleave', N'Kerry.GLEAVE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:09:42.517' AS DateTime), CAST(N'2017-05-20 13:09:42.517' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (137, NULL, N'freshfields\ngoldenbaum', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Nina Goldenbaum', N'Nina.GOLDENBAUM@freshfields.com', 1, 1, CAST(N'2017-05-20 13:10:17.530' AS DateTime), CAST(N'2017-05-20 13:10:17.530' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (138, NULL, N'freshfields\ugrasselt', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ute Grasselt', N'Ute.GRASSELT@freshfields.com', 1, 1, CAST(N'2017-05-20 13:10:50.693' AS DateTime), CAST(N'2017-05-20 13:10:50.693' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (139, NULL, N'freshfields\cgrunow', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Christian Grunow', N'Christian.GRUNOW@freshfields.com', 1, 1, CAST(N'2017-05-20 13:11:26.880' AS DateTime), CAST(N'2017-05-20 13:11:26.880' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (140, NULL, N'freshfields\ahardman', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Adele Hardman', N'Adele.HARDMAN@freshfields.com', 1, 0, CAST(N'2017-05-20 13:11:54.953' AS DateTime), CAST(N'2017-05-20 13:11:54.953' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (141, NULL, N'Freshfields\gkucia', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Grazynahelena Kucia', N'Grazynahelena.KUCIA@freshfields.com', 1, 1, CAST(N'2017-05-20 13:12:24.623' AS DateTime), CAST(N'2017-05-20 13:12:24.623' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (142, NULL, N'freshfields\katlis', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Katrin Lis', N'Katrin.LIS@freshfields.com', 1, 1, CAST(N'2017-05-20 13:12:59.747' AS DateTime), CAST(N'2017-05-20 13:12:59.747' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (143, NULL, N'freshfields\amaccabe', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Amanda MacCabe', N'Amanda.MACCABE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:13:46.173' AS DateTime), CAST(N'2017-05-20 13:13:46.173' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (144, NULL, N'freshfields\hmawdsley', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Helen Mawdsley', N'Helen.MAWDSLEY@freshfields.com', 1, 0, CAST(N'2017-05-20 13:14:19.200' AS DateTime), CAST(N'2017-05-20 13:14:19.200' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (145, NULL, N'freshfields\jmcadam', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jacqueline McAdam', N'Jacqueline.MCADAM@freshfields.com', 1, 0, CAST(N'2017-05-20 13:14:50.637' AS DateTime), CAST(N'2017-05-20 13:14:50.637' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (146, NULL, N'freshfields\kmonk', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Kerry Monk', N'Kerry.MONK@freshfields.com', 1, 0, CAST(N'2017-05-20 13:15:16.763' AS DateTime), CAST(N'2017-05-20 13:15:16.763' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (147, NULL, N'freshfields\dnorth', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Daniel North', N'Daniel.NORTH@freshfields.com', 1, 0, CAST(N'2017-05-20 13:15:39.030' AS DateTime), CAST(N'2017-05-20 13:15:39.030' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (148, NULL, N'freshfields\goakes', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gill Oakes', N'Gill.OAKES@freshfields.com', 1, 0, CAST(N'2017-05-20 13:16:05.840' AS DateTime), CAST(N'2017-05-20 13:16:05.840' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (149, NULL, N'freshfields\soelckers', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stefan Oelckers', N'Stefan.OELCKERS@freshfields.com', 1, 1, CAST(N'2017-05-20 13:16:36.553' AS DateTime), CAST(N'2017-05-20 13:16:36.553' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (150, NULL, N'freshfields\jorme', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jan Orme', N'Jan.ORME@freshfields.com', 1, 0, CAST(N'2017-05-20 13:17:05.363' AS DateTime), CAST(N'2017-05-20 13:17:05.363' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (151, NULL, N'freshfields\ypercival', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Yvonne Percival', N'Yvonne.PERCIVAL@freshfields.com', 1, 0, CAST(N'2017-05-20 13:17:34.057' AS DateTime), CAST(N'2017-05-20 13:17:34.057' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (152, NULL, N'freshfields\tpettit', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Toni Pettit', N'toni.pettit@freshfields.com', 1, 0, CAST(N'2017-05-20 13:17:58.660' AS DateTime), CAST(N'2017-05-20 13:17:58.660' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (153, NULL, N'freshfields\rorowe', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Robert Rowe', N'Robert.ROWE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:18:27.650' AS DateTime), CAST(N'2017-05-20 13:18:27.650' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (154, NULL, N'freshfields\groyle', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gareth Royle', N'Gareth.ROYLE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:18:56.047' AS DateTime), CAST(N'2017-05-20 13:18:56.047' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (155, NULL, N'freshfields\sroyle', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stuart Royle', N'Stuart.ROYLE@freshfields.com', 1, 0, CAST(N'2017-05-20 13:19:25.360' AS DateTime), CAST(N'2017-05-20 13:19:25.360' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (156, NULL, N'freshfields\jsandilands', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Janet Sandilands', N'Janet.SANDILANDS@freshfields.com', 1, 0, CAST(N'2017-05-20 13:20:00.277' AS DateTime), CAST(N'2017-05-20 13:20:00.277' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (157, NULL, N'freshfields\dschmale', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Diana Schmale', N'Diana.SCHMALE@freshfields.com', 1, 1, CAST(N'2017-05-20 13:20:28.470' AS DateTime), CAST(N'2017-05-20 13:20:28.470' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (158, NULL, N'freshfields\jscholes', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jayne Scholes', N'Jayne.SCHOLES@freshfields.com', 1, 0, CAST(N'2017-05-20 13:20:55.547' AS DateTime), CAST(N'2017-05-20 13:20:55.547' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (159, NULL, N'freshfields\jsteuer', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jacqueline Steuer', N'Jacqueline.STEUER@freshfields.com', 1, 1, CAST(N'2017-05-20 13:21:23.827' AS DateTime), CAST(N'2017-05-20 13:21:23.827' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (160, NULL, N'freshfields\hteixeira', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Helga Teixeira', N'Helga.TEIXEIRA@freshfields.com', 1, 1, CAST(N'2017-05-20 13:22:05.173' AS DateTime), CAST(N'2017-05-20 13:22:05.173' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (161, NULL, N'freshfields\oterhaar', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Oliver ter Haar', N'Oliver.TERHAAR@freshfields.com', 1, 1, CAST(N'2017-05-20 13:22:46.700' AS DateTime), CAST(N'2017-05-20 13:23:30.187' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (162, NULL, N'freshfields\vtetali', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Venu Tetali', N'Venu.TETALI@freshfields.com', 1, 0, CAST(N'2017-05-20 13:24:23.160' AS DateTime), CAST(N'2017-05-20 13:24:23.160' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (163, NULL, N'freshfields\gtheisen', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gabriele Theisen', N'gabriele.theisen@freshfields.com', 1, 1, CAST(N'2017-05-20 13:24:55.857' AS DateTime), CAST(N'2017-05-20 13:24:55.857' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (164, NULL, N'freshfields\pevuorela', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Peter Vuorela', N'Peter.VUORELA@freshfields.com', 1, 0, CAST(N'2017-05-20 13:25:28.933' AS DateTime), CAST(N'2017-05-20 13:25:28.933' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (165, NULL, N'freshfields\mwhittaker', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Michael Whittaker', N'michael.WHITTAKER@freshfields.com', 1, 1, CAST(N'2017-05-20 13:26:01.563' AS DateTime), CAST(N'2017-05-20 13:26:01.563' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (166, NULL, N'freshfields\jzinowko', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Joanna Zinowko', N'Joanna.ZINOWKO@freshfields.com', 1, 0, CAST(N'2017-05-20 13:26:32.537' AS DateTime), CAST(N'2017-05-20 13:26:32.537' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (167, NULL, N'freshfields\pcaruana', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Pia Caruana', N'pia.caruana@freshfields.com', 1, 0, CAST(N'2017-06-09 12:30:37.730' AS DateTime), CAST(N'2017-06-29 14:55:45.007' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (168, 2, N'freshfields\mattaylor', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Taylor', N'Matthew.TAYLOR@freshfields.com', 1, 0, CAST(N'2017-06-15 14:11:56.073' AS DateTime), CAST(N'2017-06-29 10:16:24.427' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (169, 2, N'freshfields\bhxpatel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Bhavin Patel', N'Bhavin.PATEL@freshfields.com', 1, 0, CAST(N'2017-06-15 14:13:00.580' AS DateTime), CAST(N'2017-06-30 18:12:02.867' AS DateTime), CAST(N'2017-06-28 12:38:36.877' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (170, NULL, N'freshfields\vibarthel', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Vincent Barthel', N'Vincent.BARTHEL@freshfields.com', 1, 0, CAST(N'2017-06-17 14:22:44.710' AS DateTime), CAST(N'2017-06-17 14:22:44.710' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (171, NULL, N'freshfields\ngoldenbaum', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Nina Goldenbaum', N'Nina.GOLDENBAUM@freshfields.com', 1, 0, CAST(N'2017-06-17 14:24:33.373' AS DateTime), CAST(N'2017-06-17 14:24:33.373' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (172, NULL, N'freshfields\ugrasselt', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ute Grasselt', N'Ute.GRASSELT@freshfields.com', 1, 0, CAST(N'2017-06-17 14:25:10.963' AS DateTime), CAST(N'2017-06-17 14:25:10.963' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (173, NULL, N'freshfields\cgrunow', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Christian Grunow', N'Christian.GRUNOW@freshfields.com', 1, 0, CAST(N'2017-06-17 14:25:54.803' AS DateTime), CAST(N'2017-06-17 14:26:10.773' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (174, NULL, N'freshfields\gkucia', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Grazyna Helena Kucia', N'Grazynahelena.KUCIA@freshfields.com', 1, 0, CAST(N'2017-06-17 14:26:55.623' AS DateTime), CAST(N'2017-06-17 14:26:55.623' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (175, NULL, N'freshfields\katlis', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Katrin Lis', N'Katrin.LIS@freshfields.com', 1, 0, CAST(N'2017-06-17 14:27:25.140' AS DateTime), CAST(N'2017-06-17 14:27:25.140' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (176, NULL, N'freshfields\soelckers', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Stefan Oelckers', N'Stefan.OELCKERS@freshfields.com', 1, 0, CAST(N'2017-06-17 14:28:07.330' AS DateTime), CAST(N'2017-06-17 14:28:07.330' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (177, NULL, N'freshfields\dschmale', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Diana Schmale', N'Diana.SCHMALE@freshfields.com', 1, 0, CAST(N'2017-06-17 14:28:35.150' AS DateTime), CAST(N'2017-06-17 14:28:35.150' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (178, NULL, N'freshfields\jsteuer', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Jacqueline Steuer', N'Jacqueline.STEUER@freshfields.com', 1, 0, CAST(N'2017-06-17 14:35:13.227' AS DateTime), CAST(N'2017-06-17 14:35:13.227' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (179, NULL, N'freshfields\hteixeira', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Helga Teixeira', N'Helga.TEIXEIRA@freshfields.com', 1, 0, CAST(N'2017-06-17 14:35:55.077' AS DateTime), CAST(N'2017-06-17 14:35:55.077' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (180, NULL, N'freshfields\oterhaar', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Oliver ter Haar', N'Oliver.TERHAAR@freshfields.com', 1, 0, CAST(N'2017-06-17 14:36:38.290' AS DateTime), CAST(N'2017-06-17 14:36:38.290' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (181, NULL, N'freshfields\gtheisen', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gabriele Theisen', N'gabriele.theisen@freshfields.com', 1, 0, CAST(N'2017-06-17 14:37:35.733' AS DateTime), CAST(N'2017-06-17 14:37:35.733' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (182, NULL, N'freshfields\RDEASESMITH', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Ruth Dease-Smith', N'ruth.dease@freshfields.com', 1, 0, CAST(N'2017-06-17 14:39:58.973' AS DateTime), CAST(N'2017-06-17 14:40:56.100' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (183, NULL, N'freshfields\hgeiger', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Heidi Geiger', N'heidi.geiger@freshfields.com', 1, 0, CAST(N'2017-06-17 14:40:39.640' AS DateTime), CAST(N'2017-06-17 14:40:39.640' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (184, NULL, N'freshfields\jlipari', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Josephine Lipari', N'josephine.lipari@freshfields.com', 1, 0, CAST(N'2017-06-17 14:41:32.090' AS DateTime), CAST(N'2017-06-17 14:41:32.090' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (185, NULL, N'freshfields\gvarga', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Gail Varga', N'gail.varga@freshfields.com', 1, 0, CAST(N'2017-06-17 14:42:00.530' AS DateTime), CAST(N'2017-06-17 14:42:00.530' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (186, 3, N'freshfields\mihoward', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Mike Howard', N'Mike.HOWARD@freshfields.com', 1, 0, CAST(N'2017-06-21 09:47:33.963' AS DateTime), CAST(N'2017-06-21 10:40:39.313' AS DateTime), CAST(N'2017-06-21 10:40:39.233' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (187, NULL, N'freshfields\romurray', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Robert Murray', N'Robert.Murray@freshfields.com', 1, 0, CAST(N'2017-06-21 09:55:42.857' AS DateTime), CAST(N'2017-06-21 10:04:00.467' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (188, NULL, N'freshfields\dseshie', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Daniel Seshie-Cottrell', N'Daniel.Seshie-Cottrell@freshfields.com', 1, 0, CAST(N'2017-06-21 10:12:31.217' AS DateTime), CAST(N'2017-06-21 10:12:31.217' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (189, NULL, N'freshfields\ccarruthers', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Chris Carruthers', N'Chris.Carruthers@freshfields.com', 1, 0, CAST(N'2017-06-21 10:18:12.553' AS DateTime), CAST(N'2017-06-21 10:20:13.523' AS DateTime), CAST(N'2017-06-21 10:20:13.467' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (190, NULL, N'freshfields\aldawson', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Alex Dawson', N'Alex.Dawson@freshfields.com', 1, 1, CAST(N'2017-06-21 10:40:00.390' AS DateTime), CAST(N'2017-06-30 10:12:29.293' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (191, NULL, N'freshfields\agarciasuarez', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Ana Suarez', N'Ana.SUAREZ@freshfields.com', 1, 0, CAST(N'2017-06-21 14:56:01.133' AS DateTime), CAST(N'2017-06-21 14:56:01.133' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (192, NULL, N'freshfields\aadma', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Ashwin Adma', N'Ashwin.Adma@freshfields.com', 1, 0, CAST(N'2017-06-21 14:56:59.887' AS DateTime), CAST(N'2017-06-26 17:45:29.160' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (193, NULL, N'freshfields\chmurray', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Chris Murray', N'Chris.Murray@freshfields.com', 1, 0, CAST(N'2017-06-21 15:16:39.967' AS DateTime), CAST(N'2017-06-21 15:16:39.967' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (194, NULL, N'freshfields\ddelaflor', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Daniel de la Flor', N'Daniel.DELAFLOR@freshfields.com', 1, 0, CAST(N'2017-06-21 15:17:49.830' AS DateTime), CAST(N'2017-06-21 15:17:49.830' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (195, NULL, N'freshfields\edarosa', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Eduardo Da Rosa', N'Eduardo.DAROSA@freshfields.com', 1, 0, CAST(N'2017-06-21 15:18:30.420' AS DateTime), CAST(N'2017-06-21 15:18:30.420' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (196, NULL, N'freshfields\gcooke', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Graham Cooke', N'Graham.Cooke@freshfields.com', 1, 0, CAST(N'2017-06-21 15:19:43.020' AS DateTime), CAST(N'2017-06-21 15:19:43.020' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (197, NULL, N'freshfields\ipatrick', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Ian Patrick', N'Ian.Patrick@freshfields.com', 1, 0, CAST(N'2017-06-21 15:23:58.873' AS DateTime), CAST(N'2017-06-21 15:23:58.873' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (198, NULL, N'freshfields\imohammed', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Imran Mohammed', N'Imran.Mohammed@freshfields.com', 1, 0, CAST(N'2017-06-21 15:27:01.893' AS DateTime), CAST(N'2017-06-21 15:27:01.893' AS DateTime), NULL, 1, NULL, 0)
GO
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (199, NULL, N'freshfields\jaellis', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'James Ellis', N'James.Ellis@freshfields.com', 1, 0, CAST(N'2017-06-21 15:27:42.097' AS DateTime), CAST(N'2017-06-30 13:46:12.690' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (200, NULL, N'freshfields\jlandy', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'John Landy', N'John.Landy@freshfields.com', 1, 0, CAST(N'2017-06-21 15:28:33.893' AS DateTime), CAST(N'2017-06-21 15:28:33.893' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (201, NULL, N'freshfields\jjaved', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Junaid Javed', N'Junaid.Javed@freshfields.com', 1, 0, CAST(N'2017-06-21 15:29:34.230' AS DateTime), CAST(N'2017-06-21 15:29:34.230' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (202, NULL, N'freshfields\kang', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Karl Ng', N'Karl.Ng@freshfields.com', 1, 0, CAST(N'2017-06-21 15:37:35.077' AS DateTime), CAST(N'2017-06-21 15:37:35.077' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (203, NULL, N'freshfields\lkodym', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Lukas Kodym', N'Lukas.Kodym@freshfields.com', 1, 0, CAST(N'2017-06-21 15:38:37.043' AS DateTime), CAST(N'2017-06-21 15:38:37.043' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (204, NULL, N'freshfields\marjones', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Marion Jones', N'Marion.Jones@freshfields.com', 1, 0, CAST(N'2017-06-22 09:23:51.353' AS DateTime), CAST(N'2017-06-22 09:23:51.353' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (205, NULL, N'freshfields\morahman', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Mo Rahman', N'Mo.Rahman@freshfields.com', 1, 0, CAST(N'2017-06-22 09:27:37.810' AS DateTime), CAST(N'2017-06-22 09:27:37.810' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (206, NULL, N'freshfields\osliz', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Otto Sliz', N'Otto.Sliz@freshfields.com', 1, 0, CAST(N'2017-06-22 09:28:18.650' AS DateTime), CAST(N'2017-06-22 09:28:18.650' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (207, NULL, N'freshfields\pbretherton', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Patrick Bretherton', N'Patrick.Bretherton@freshfields.com', 1, 0, CAST(N'2017-06-22 09:29:09.740' AS DateTime), CAST(N'2017-06-22 09:29:09.740' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (208, NULL, N'freshfields\rsmithson', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Patrick Bretherton', N'Patrick.Bretherton@freshfields.com', 1, 0, CAST(N'2017-06-22 09:30:35.130' AS DateTime), CAST(N'2017-06-22 09:30:35.130' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (209, NULL, N'freshfields\sahmed', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Saleem Ahmed', N'Saleem.Ahmed@freshfields.com', 1, 0, CAST(N'2017-06-22 09:31:48.110' AS DateTime), CAST(N'2017-06-22 09:31:48.110' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (210, NULL, N'freshfields\swadsworth', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Scott Wadsworth', N'Scott.Wadsworth@freshfields.com', 1, 0, CAST(N'2017-06-22 09:32:39.223' AS DateTime), CAST(N'2017-06-22 09:32:39.223' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (211, NULL, N'freshfields\sarmitt', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Simon Armitt', N'Simon.Armitt@freshfields.com', 1, 0, CAST(N'2017-06-22 09:33:11.490' AS DateTime), CAST(N'2017-06-22 09:33:11.490' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (212, NULL, N'freshfields\stcarter', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Stephen Carter', N'Stephen.Carter@freshfields.com', 1, 0, CAST(N'2017-06-22 09:34:20.300' AS DateTime), CAST(N'2017-06-30 10:12:39.853' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (213, NULL, N'freshfields\tipoon', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Tim Poon', N'Tim.Poon@freshfields.com', 1, 0, CAST(N'2017-06-22 09:34:53.593' AS DateTime), CAST(N'2017-06-22 09:34:53.593' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (214, NULL, N'freshfields\umunshi', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Umair Munshi', N'Umair.Munshi@freshfields.com', 1, 0, CAST(N'2017-06-22 09:35:39.183' AS DateTime), CAST(N'2017-06-22 09:35:39.183' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (215, NULL, N'freshfields\uliaqat', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Usmaan Liaqat', N'Usmaan.Liaqat@freshfields.com', 1, 0, CAST(N'2017-06-22 09:38:34.070' AS DateTime), CAST(N'2017-06-22 09:38:34.070' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (216, NULL, N'freshfields\aahmad', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Asif Ahmad', N'Asif.Ahmad@freshfields.com', 1, 0, CAST(N'2017-06-22 09:39:57.477' AS DateTime), CAST(N'2017-06-22 09:39:57.477' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (217, NULL, N'freshfields\lgreenwood', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Lewis Greenwood', N'Lewis.Greenwood@freshfields.com', 1, 0, CAST(N'2017-06-22 09:40:27.880' AS DateTime), CAST(N'2017-06-22 09:40:27.880' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (218, NULL, N'freshfields\jdaine', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'James Daine', N'James.Daine@freshfields.com', 1, 0, CAST(N'2017-06-22 09:41:08.537' AS DateTime), CAST(N'2017-06-22 09:41:08.537' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (219, NULL, N'freshfields\nanwar', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Naveed Anwar', N'Naveed.Anwar@freshfields.com', 1, 0, CAST(N'2017-06-22 09:41:41.893' AS DateTime), CAST(N'2017-06-22 09:41:41.893' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (220, NULL, N'freshfields\lrhodes', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Liam Rhodes', N'Liam.Rhodes@freshfields.com', 1, 0, CAST(N'2017-06-22 09:42:15.350' AS DateTime), CAST(N'2017-06-22 09:42:15.350' AS DateTime), NULL, 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (221, 1, N'freshfields\matjohnson', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Matthew Johnson', N'Matthew.JOHNSON@freshfields.com', 1, 0, CAST(N'2017-06-29 08:45:41.460' AS DateTime), CAST(N'2017-06-30 17:10:02.693' AS DateTime), CAST(N'2017-06-30 17:10:02.480' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (222, NULL, N'freshfields\zeshah', N'1B2M2Y8AsgTpgAmY7PhCfg==', N'Zeshan Shah', N'Zeshan.SHAH@freshfields.com', 1, 0, CAST(N'2017-06-29 13:38:50.303' AS DateTime), CAST(N'2017-06-29 18:29:58.900' AS DateTime), CAST(N'2017-06-29 18:29:58.817' AS DateTime), 1, NULL, 0)
INSERT [dbo].[ApplicationUsers] ([UserId], [WBRoleId], [UserName], [Password], [Name], [Email], [IsEnabled], [IsDeleted], [Created], [Modified], [LastLogin], [MTMRoleId], [ATRoleId], [InsidersModuleAccess]) VALUES (223, NULL, N'freshfields\aldawson', N'73Sf+aBIutDdgIB/xJ4cDQ==', N'Alex Dawson', N'Alex.Dawson@freshfields.com', 1, 0, CAST(N'2017-06-30 14:06:49.360' AS DateTime), CAST(N'2017-06-30 14:06:49.360' AS DateTime), NULL, 1, NULL, 0)
SET IDENTITY_INSERT [dbo].[ApplicationUsers] OFF
SET IDENTITY_INSERT [dbo].[EntityRelationshipTypes] ON
INSERT [dbo].[EntityRelationshipTypes] ([EntityRelationshipTypeId], [Description], [PrimaryType], [SubordinateType], [IsDirectRelationshipValidated], [IsSharedRelationshipValidated]) VALUES (1, N'Lawyer Secretary Pairing', N'Lawyer', N'Secretary', 1, 1)
SET IDENTITY_INSERT [dbo].[EntityRelationshipTypes] OFF
INSERT [dbo].[WallCustomFieldConfig] ([Field], [DisplayName], [IsRequired], [Type], [Description], [PolicyCategoryGroupId]) VALUES (N'CustomField1', N'Originating Office', 0, N'ENUM', N'Originating Office', 1)
INSERT [dbo].[WallCustomFieldConfig] ([Field], [DisplayName], [IsRequired], [Type], [Description], [PolicyCategoryGroupId]) VALUES (N'CustomField1', N'Originating Office', 0, N'ENUM', N'Originating Office', 3)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff