Saturday, March 24, 2018

Sitecore Powershell:: Dictionary Audit Series -2


Sitecore Dictionary Duplicate Keys

One of the major issue in the Sitecore Dictionary is Duplicate keys. For instance, if we have key called “optional” and we have created many dictionary items for the key “optional”. Even though we create many dictionary items for the same key, when we call Sitecore.Globalization.Translate.Text("optional"), this will return the firstordefault dictionary items in the dictionary tree.

Same key “optional”
  • Dictionary item 1-Translation:  This is optional text1
  • Dictionary item 2-Translation: This is optional text2
  • Dictionary item 3-Translation: This is optional text3

In the above example, every time and in all the place wherever we use “optional” dictionary key, this will show “This is optional text1”. Even though we change the text in Dictionary item 2 and 3, it will not reflect. This issue will become major if we have multilingual project, which means we will change the translation in one item but it will not get reflect in the page due to duplicate keys.

So in order to resolve this issue, I have written the Sitecore Powershell script to identify the duplicate keys.
As it is continuation of My previous blog, I have used the same fields like dictionary keys and the translate against each language in the our website and in addition to that I have added the Dictionary item id.

Script:
$root = Get-Item -Path (@{$true="master:\system\Dictionary\"; $false="master:\system\"}[(Test-Path -Path master:\system\Dictionary)])
$props = @{
        InfoTitle = "Dictionary Items"
        InfoDescription = "Lists of Dictionary Items"
        PageSize = 250
        Title = "Dictionary Items Report"
    }
$result = Read-Variable -Parameters `
    @{Name="root"; title="Items under"; Tooltip="choose the below path for searching dictionary items"} `
    -Description "This dialog shows search path of dictionary items" `
    -Title "Search Dictionary" -Width 500 -Height 300 -ShowHints

if($result -eq "cancel"){
    exit;
}
$items= [Sitecore.Data.Managers.LanguageManager]::GetLanguages([Sitecore.Data.Database]::GetDatabase("web"))

$reportItems = @()
$dictionaryitems = Get-ChildItem  -Path $root.ProviderPath -Recurse | Where-Object { $_.TemplateName -match "Dictionary entry"  }
if($dictionaryitems.Count -eq 0) {
    Show-Alert "There are no dictionaryitems"
} else {
foreach($dictionaryitem in $dictionaryitems){
$h=@{}
$h.add("ID",$dictionaryitem.Id)
$h.add("Key",$dictionaryitem.Fields["Key"])
foreach($item in $items){
if($dictionaryitem.Database.GetItem($dictionaryitem.ID,$item) -ne $Null ){
$h.add($item.Name,$dictionaryitem.Database.GetItem($dictionaryitem.ID,$item).Fields["Phrase"])
}
}
$reportItem = [pscustomobject]$h
$reportItems += $reportItem
}

$properties = $reportItems[0].PSObject.Properties | foreach-object {$_.Name}


$groupresult =$reportItems | Group-Object -Property Key | Where {$_.Count -gt 1}
if($groupresult.Count -gt 0) {
$groupresult.Group | Show-ListView -Property $properties
}
else
{
Show-Alert "There are no Duplicate keys"
}
}
Close-Window

How it works:

 Step 1:


 Step 2:

Step 3:

Step 4:



  
 Download the Sitecore package: Sitecore Dictionary Duplicate Keys

Saturday, March 17, 2018

Sitecore Powershell:: Dictionary Audit Series -1

List of Dictionary Items against each language on the website.

I’ve created this PowerShell script to get the report of the list of dictionary items against each language. It gets the input of the path which we need to get the report.

Fields in the report:
1.       Dictionary key
2.       All the languages in the web database. (My site has only English and Arabic)

Script:
$root = Get-Item -Path (@{$true="master:\system\Dictionary\"; $false="master:\system\"}[(Test-Path -Path master:\system\Dictionary)])
$props = @{
        InfoTitle = "Dictionary Items"
        InfoDescription = "Lists of Dictionary Items"
        PageSize = 250
        Title = "Dictionary Items Report"
    }
$result = Read-Variable -Parameters `
    @{Name="root"; title="Items under"; Tooltip="choose the below path for searching dictionary items"} `
    -Description "This dialog shows search path of dictionary items" `
    -Title "Search Dictionary" -Width 500 -Height 300 -ShowHints

if($result -eq "cancel"){
    exit;
}
$items= [Sitecore.Data.Managers.LanguageManager]::GetLanguages([Sitecore.Data.Database]::GetDatabase("web"))

$reportItems = @()
$dictionaryitems = Get-ChildItem  -Path $root.ProviderPath -Recurse | Where-Object { $_.TemplateName -match "Dictionary entry"  }
if($dictionaryitems.Count -eq 0) {
    Show-Alert "There are no dictionaryitems"
} else {
foreach($dictionaryitem in $dictionaryitems){
$h=@{}
$h.add("Key",$dictionaryitem.Fields["Key"])
foreach($item in $items){
if($dictionaryitem.Database.GetItem($dictionaryitem.ID,$item) -ne $Null ){
$h.add($item.Name,$dictionaryitem.Database.GetItem($dictionaryitem.ID,$item).Fields["Phrase"])
}
}
$reportItem = [pscustomobject]$h
$reportItems += $reportItem
}

$properties = $reportItems[0].PSObject.Properties | foreach-object {$_.Name}

$reportItems | Show-ListView -Property $properties
}
Close-Window

Step1:

Step 2:


 Step 3:

 Step4:


 Download the Sitecore package: List of Dictionary items against each language




Friday, February 23, 2018

SITECORE USER CLONE

Sitecore User Clone is used to create the copy of the user with same roles, name, email, and profile. It will prompt to accept the new username, password and all the editable fields same like Edit user.

Installation

Simply download and install the package for your Sitecore version.


Sitecore Items in the Packages:

·       Created the Clone User Application in Core Database under Security Application. Item Path –“/sitecore/content/Applications/Security/Clone User”.
·       Created a new button called Clone in User Manager ribbon to select the user. Item Path – “/sitecore/content/Applications/Security/User Manager/Ribbon/Home/Users/Clone”
Files in the Package:
·       In the App_Config/Include folder there will appear the SitecoreClone config file which has the command “usermanager:cloneuser”.
·       In the \sitecore\shell\Applications\Security\CloneUser there will be CloneUser XML file.
·       In bin folder has the Sitecore.UserClone.dll

Working:



We need to select the user to Clone the User.
     


Clone user Window:



The user needs to input the Username and Password. Other fields will be same as the selected user. A user can even edit the profile and change the profile. But before changing the profile, User needs to be created. All the current validation against creating user has been taken care of this clone user functionality.
Kindly post your comments and for contact sivakumar@outlook.com.


Saturday, February 10, 2018

Sitecore Powershell::Publish Powershell result Item

Sitecore Powershell:: Publish Powershell result Item

I wrote some the PowerShell scripts as a part of my Sitecore Powershell learning. To publish the result item, each item I need to open the particular item and then need to publish it. So I wrote a simple Publish action script which will intern calls the “item:publish” shell command and do publish.



Created a Publish Item Action script under Internal->List View->Ribbon->Item ->Publish Item.


The Script body contains the below simple code:

foreach($Item in $selectedData)
{
Invoke-ShellCommand -Name "item:publish" -Item $Item

}




Saturday, January 27, 2018

Sitecore 9 Installation Guide

Step by step Sitecore 9 Update 1 Installation guide:

As a part of my Sitecore knowledge Upgradation, I wanted to install Sitecore9 on my local system. Here are the steps that I followed the process.
In order to install the update, you can follow any of the below guides from Sitecore Architects.

Note: I followed the same steps as in the link - http://www.flux-digital.com/blog/install-sitecore-9-update-1-4-simple-steps/ and it works fine.
The below guide covers the complete installation following the same process, some of the issues faced by it and how it can be resolved. In addition, the log file has been attached as well with this guide to give a glimpse of the events and for tracking purpose.
 
PREREQUISITES:
Source: Sitecore 9 Update 1 Installation Guide
IIS Requirement – IIS10.0/IIS8.5
OS Requirement - Windows Server 2016, Windows Server 2012 R2 (64-bit), Windows 10 (32/64-bit), Windows 8.1 (32/64-bit)
.Net Framework Requirement - .NET Framework 4.6.2 or later.
JRE Requirement – Latest version
Visual Studio Requirement - Microsoft Visual Studio 2015 or later.
Database Requirement - Microsoft SQL Server 2016 SP1, Microsoft SQL Server 2014 SP2
Search Indexing Requirement - Solr 6.6.2(for Sitecore 9 update 0 – Solr 6.6.1), Azure Search
Hardware Requirement - 4 core processor, 16GB of RAM
  


Powershell script for installation:
Everyone needs automation in the installation process including me. So, our Sitecore Architects wrote the PowerShell Script to automate the installation process which makes our work easier. (But, if you are a person who feels that a mere installation is not enough and sheer understanding of the whole process is required you can consider reading the below section on the process explanation.)

Assumption: Create a folder “Sitecore9\Resources” under c:\ (where I had all my resource files)
Checklist:
Check 1: When I run the first Powershell Script, I got the below error:
.\Install-Solr.ps1: File C:\Sitecore9\Install-Solr.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see
about_Execution_Policies at http://go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ .\Install-Solr.ps1
+ ~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess

·       In order to resolve this problem, run the below command:
PS C:\Sitecore9> Set-ExecutionPolicy RemoteSigned
·       The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose you to the security risks described in the
about_Execution_Policies help topic at http://go.microsoft.com/fwlink/?LinkID=135170. Do you want to change the execution policy?
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "N"): A
It will ask you for the Execution policy change. Give "A" and proceed.







Check 2: Before running the script check the Admin access
PS C:\Sitecore9>[bool](([System.Security.Principal.WindowsIdentity]::GetCurrent()).groups -match "S-1-5-32-544")
Check 3: SQL Server  sa username and password
Check 4: JRE version 1.8.0_162
Check 5:  Sitecore License file and copy to C:\Sitecore9\Resources.
Resource Files:
Download the below files and place all files under C:\Sitecore9\Resources:
2.       Sitecore 9.0.1 rev. 171219 (WDP XP0 packages).zip (https://dev.sitecore.net/~/media/8551EF0996794A7FA9FF64943B391855.ashx)
3.       After downloading Sitecore 9, unzip it.  Copy “Sitecore 9.0.1 rev. 171219 (OnPrem)_single.scwdp” and “Sitecore 9.0.1 rev. 171219 (OnPrem)_xp0xconnect.scwdp” to C:\Sitecore9\Resources.
4.       Unzip “XP0 Configuration files 9.0.1 rev. 171219.zip” and copy all the files to C:\Sitecore9\Resources.
At last the C:\Sitecore9\Resources path should look like this:



Now we are ready to run the scripts :
Step 1: Solr Installation
Since Solr was made as core requirement in Sitecore 9, we need to install solr in SSL mode(https). We are using Jeremy Davis Powershell script for installing the solr. In this script we need to mention the below:
    $solrVersion = "6.6.2", -- Version of Solr. We use 6.6.2 for Sitecore 9 update1
    $installFolder = "C:\Sitecore9\Solr", -  Here the solr will get installed
    $solrPort = "8983", - Default solr port
    $solrHost = "sc9solr", - Solr host name
    $solrSSL = $true, -- This should be true, we need to run solr in SSL mode(https)
    $nssmVersion = "2.24", -- NSSM version which we used to install solr as a service(don’t change it)
    $JREVersion = "1.8.0_162" --  JRE version in your local system ( run this command in cmd to find the version : java -XshowSettings:properties -version)
  $JREPath = "C:\Program Files (x86)\Java\jre1.8.0_162" (in the above command you can get the JRE path)
$downloadFolder = " C:\Sitecore9\Resources" – (The path where we downloaded and copied solr zip)

·       Copy the below script as “Install-Solr.ps1” in C:\Sitecore9
·       Open Powershell and run the script
PS C:\Windows\system32>cd \
PS C:\>cd Sitecore9
PS C:\Sitecore9> .\Install-Solr.ps1
Param(
$solrVersion = "6.6.2",
$installFolder = "c:\solr",
$solrPort = "8983",
$solrHost = "solr",
$solrSSL = $true,
$nssmVersion = "2.24",
$JREVersion = "1.8.0_151"
)
$JREPath = "C:\Program Files\Java\jre$JREVersion" ## Note that if you're running 32bit java, you will need to change this path
$solrName = "solr-$solrVersion"
$solrRoot = "$installFolder\$solrName"
$nssmRoot = "$installFolder\nssm-$nssmVersion"
$solrPackage = "https://archive.apache.org/dist/lucene/solr/$solrVersion/$solrName.zip"
$nssmPackage = "https://nssm.cc/release/nssm-$nssmVersion.zip"
$downloadFolder = "~\Downloads"
## Verify elevated
## https://superuser.com/questions/749243/detect-if-powershell-is-running-as-administrator
$elevated = [bool](([System.Security.Principal.WindowsIdentity]::GetCurrent()).groups -match "S-1-5-32-544")
if($elevated -eq $false)
{
throw "In order to install services, please run this script elevated."
}
function downloadAndUnzipIfRequired
{
Param(
[string]$toolName,
[string]$toolFolder,
[string]$toolZip,
[string]$toolSourceFile,
[string]$installRoot
)
if(!(Test-Path -Path $toolFolder))
{
if(!(Test-Path -Path $toolZip))
{
Write-Host "Downloading $toolName..."
Start-BitsTransfer -Source $toolSourceFile -Destination $toolZip
}
Write-Host "Extracting $toolName to $toolFolder..."
Expand-Archive $toolZip -DestinationPath $installRoot
}
}
# download & extract the solr archive to the right folder
$solrZip = "$downloadFolder\$solrName.zip"
downloadAndUnzipIfRequired "Solr" $solrRoot $solrZip $solrPackage $installFolder
# download & extract the nssm archive to the right folder
$nssmZip = "$downloadFolder\nssm-$nssmVersion.zip"
downloadAndUnzipIfRequired "NSSM" $nssmRoot $nssmZip $nssmPackage $installFolder
# Ensure Java environment variable
$jreVal = [Environment]::GetEnvironmentVariable("JAVA_HOME", [EnvironmentVariableTarget]::Machine)
if($jreVal -ne $JREPath)
{
Write-Host "Setting JAVA_HOME environment variable"
[Environment]::SetEnvironmentVariable("JAVA_HOME", $JREPath, [EnvironmentVariableTarget]::Machine)
}
# if we're using HTTP
if($solrSSL -eq $false)
{
# Update solr cfg to use right host name
if(!(Test-Path -Path "$solrRoot\bin\solr.in.cmd.old"))
{
Write-Host "Rewriting solr config"
$cfg = Get-Content "$solrRoot\bin\solr.in.cmd"
Rename-Item "$solrRoot\bin\solr.in.cmd" "$solrRoot\bin\solr.in.cmd.old"
$newCfg = $newCfg | % { $_ -replace "REM set SOLR_HOST=192.168.1.1", "set SOLR_HOST=$solrHost" }
$newCfg | Set-Content "$solrRoot\bin\solr.in.cmd"
}
}
# Ensure the solr host name is in your hosts file
if($solrHost -ne "localhost")
{
$hostFileName = "c:\\windows\system32\drivers\etc\hosts"
$hostFile = [System.Io.File]::ReadAllText($hostFileName)
if(!($hostFile -like "*$solrHost*"))
{
Write-Host "Updating host file"
"`r`n127.0.0.1`t$solrHost" | Add-Content $hostFileName
}
}
# if we're using HTTPS
if($solrSSL -eq $true)
{
# Generate SSL cert
$existingCert = Get-ChildItem Cert:\LocalMachine\Root | where FriendlyName -eq "$solrName"
if(!($existingCert))
{
Write-Host "Creating & trusting an new SSL Cert for $solrHost"
# Generate a cert
# https://docs.microsoft.com/en-us/powershell/module/pkiclient/new-selfsignedcertificate?view=win10-ps
$cert = New-SelfSignedCertificate -FriendlyName "$solrName" -DnsName "$solrHost" -CertStoreLocation "cert:\LocalMachine" -NotAfter (Get-Date).AddYears(10)
# Trust the cert
# https://stackoverflow.com/questions/8815145/how-to-trust-a-certificate-in-windows-powershell
$store = New-Object System.Security.Cryptography.X509Certificates.X509Store "Root","LocalMachine"
$store.Open("ReadWrite")
$store.Add($cert)
$store.Close()
# remove the untrusted copy of the cert
$cert | Remove-Item
}
$certStore = "$solrRoot\server\etc\solr-ssl.keystore.pfx"
# export the cert to pfx using solr's default password
if(!(Test-Path -Path "$solrRoot\server\etc\solr-ssl.keystore.pfx"))
{
Write-Host "Exporting cert for Solr to use"
$cert = Get-ChildItem Cert:\LocalMachine\Root | where FriendlyName -eq "$solrName"
$certPwd = ConvertTo-SecureString -String "secret" -Force -AsPlainText
$cert | Export-PfxCertificate -FilePath $certStore -Password $certpwd | Out-Null
}
# Update solr cfg to use keystore & right host name
if(!(Test-Path -Path "$solrRoot\bin\solr.in.cmd.old"))
{
Write-Host "Rewriting solr config"
$cfg = Get-Content "$solrRoot\bin\solr.in.cmd"
Rename-Item "$solrRoot\bin\solr.in.cmd" "$solrRoot\bin\solr.in.cmd.old"
$newCfg = $cfg | % { $_ -replace "REM set SOLR_SSL_KEY_STORE=etc/solr-ssl.keystore\.(p12|jks)", "set SOLR_SSL_KEY_STORE=$certStore" }
$newCfg = $newCfg | % { $_ -replace "REM set SOLR_SSL_KEY_STORE_PASSWORD=secret", "set SOLR_SSL_KEY_STORE_PASSWORD=secret" }
$newCfg = $newCfg | % { $_ -replace "REM set SOLR_SSL_TRUST_STORE=etc/solr-ssl.keystore\.(p12|jks)", "set SOLR_SSL_TRUST_STORE=$certStore" }
$newCfg = $newCfg | % { $_ -replace "REM set SOLR_SSL_TRUST_STORE_PASSWORD=secret", "set SOLR_SSL_TRUST_STORE_PASSWORD=secret" }
$newCfg = $newCfg | % { $_ -replace "REM set SOLR_HOST=192.168.1.1", "set SOLR_HOST=$solrHost" }
$newCfg | Set-Content "$solrRoot\bin\solr.in.cmd"
}
}
# install the service & runs
$svc = Get-Service "$solrName" -ErrorAction SilentlyContinue
if(!($svc))
{
Write-Host "Installing Solr service"
&"$installFolder\nssm-$nssmVersion\win64\nssm.exe" install "$solrName" "$solrRoot\bin\solr.cmd" "-f" "-p $solrPort"
$svc = Get-Service "$solrName" -ErrorAction SilentlyContinue
}
if($svc.Status -ne "Running")
{
Write-Host "Starting Solr service"
Start-Service "$solrName"
}
# finally prove it's all working
$protocol = "http"
if($solrSSL -eq $true)
{
$protocol = "https"
}
Invoke-Expression "start $($protocol)://$($solrHost):$solrPort/solr/#/"

The Solr has been installed successfully and you will see the Solr running in SSL Mode(https).


Step 2:  Install Sitecore Install Framework(SIF)
Here we are gonna use PowerShell script wrote by Flux-digital to install SIF.
·       Copy the below script as “Install-SIF.ps1” in C:\Sitecore9
·       Don’t change anything in this script and run in PowerShell.

# Add the Sitecore MyGet repository to PowerShell
Register-PSRepository -Name SitecoreGallery -SourceLocation https://sitecore.myget.org/F/sc-powershell/api/v2
# Install the Sitecore Install Framwork module
Install-Module SitecoreInstallFramework
# Install the Sitecore Fundamentals module (provides additional functionality for local installations like creating self-signed certificates)
Install-Module SitecoreFundamentals
# Import the modules into your current PowerShell context (if necessary)
Import-Module SitecoreFundamentals
Import-Module SitecoreInstallFramework
view raw Install-SIF hosted with ❤ by GitHub

Step 3:  Install Sitecore 9
·       Copy the below script as “Install-Sitecore9.ps1” in C:\Sitecore9
·       Define the below parameters in the script
$prefix = "sc91" – Instance name prefix
$PSScriptRoot = “C:\Sitecore9\Resources”  -- Path of all resource file
$XConnectCollectionService = "$prefix.xconnect" --  Xconnect name “sc91.xconnect”
$sitecoreSiteName = "$prefix.local" – Instance name “sc91.local”
$SolrUrl = https://sc9solr:8983/solr  -- Solr URL
$SolrRoot = "C:\Sitecore9\solr-6.6.2"  --  Solr Root Path
$SolrService = "solr-6.6.2"  -- Solr Service name
$SqlServer = "\"  -- SQL Server Data source name
$SqlAdminUser = "sa"  - sa username
$SqlAdminPassword = "****"   -- Sa password

·       Run the script and it will take nearly 10mins to execute each step.
·, At last, you can see that the Sitecore instance is up and running.
#define parameters
$prefix = "sc91"
$PSScriptRoot = “C:\Sitecore9-Install\resources”
$XConnectCollectionService = "$prefix.xconnect"
$sitecoreSiteName = "$prefix.local"
$SolrUrl = "https://solr-sc9:8983/solr"
$SolrRoot = "C:\Solr\solr-6.6.2"
$SolrService = "Solr-6.6.2"
$SqlServer = "./"
$SqlAdminUser = "sa"
$SqlAdminPassword = "yourpassword"
#install client certificate for xconnect
$certParams =
@{
Path = "$PSScriptRoot\xconnect-createcert.json"
CertificateName = "$prefix.xconnect_client"
}
Install-SitecoreConfiguration @certParams -Verbose
# install solr cores for xdb
$solrParams =
@{
Path = "$PSScriptRoot\xconnect-solr.json"
SolrUrl = $SolrUrl
SolrRoot = $SolrRoot
SolrService = $SolrService
CorePrefix = $prefix
}
Install-SitecoreConfiguration @solrParams
# deploy xconnect instance
$xconnectParams =
@{
Path = "$PSScriptRoot\xconnect-xp0.json"
Package = "$PSScriptRoot\Sitecore 9.0.1 rev. 171219 (OnPrem)_xp0xconnect.scwdp.zip"
LicenseFile = "$PSScriptRoot\license.xml"
Sitename = $XConnectCollectionService
XConnectCert = $certParams.CertificateName
SqlDbPrefix = $prefix
SqlServer = $SqlServer
SqlAdminUser = $SqlAdminUser
SqlAdminPassword = $SqlAdminPassword
SolrCorePrefix = $prefix
SolrURL = $SolrUrl
}
Install-SitecoreConfiguration @xconnectParams
# install solr cores for sitecore
$solrParams =
@{
Path = "$PSScriptRoot\sitecore-solr.json"
SolrUrl = $SolrUrl
SolrRoot = $SolrRoot
SolrService = $SolrService
CorePrefix = $prefix
}
Install-SitecoreConfiguration @solrParams
# install sitecore instance
$xconnectHostName = "$prefix.xconnect"
$sitecoreParams =
@{
Path = "$PSScriptRoot\sitecore-XP0.json"
Package = "$PSScriptRoot\Sitecore 9.0.1 rev. 171219 (OnPrem)_single.scwdp.zip"
LicenseFile = "$PSScriptRoot\license.xml"
SqlDbPrefix = $prefix
SqlServer = $SqlServer
SqlAdminUser = $SqlAdminUser
SqlAdminPassword = $SqlAdminPassword
SolrCorePrefix = $prefix
SolrUrl = $SolrUrl
XConnectCert = $certParams.CertificateName
Sitename = $sitecoreSiteName
XConnectCollectionService = "https://$XConnectCollectionService"
}
Install-SitecoreConfiguration @sitecoreParams



The below log files of Sitecore 9 Installation:

View raw

(Sorry about that, but we can’t show files that are this big right now.)

This file has been truncated, but you can view the full file.
**********************
Windows PowerShell transcript start
Start time: 20180124205304
Username: Siva
RunAs User: Siva
Machine: ****** (Microsoft Windows NT 10.0.15063.0)
Host Application: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Process ID: 14180
PSVersion: 5.1.15063.608
PSEdition: Desktop
PSCompatibleVersions: 1.0, 2.0, 3.0, 4.0, 5.0, 5.1.15063.608
BuildVersion: 10.0.15063.608
CLRVersion: 4.0.30319.42000
WSManStackVersion: 3.0
PSRemotingProtocolVersion: 2.3
SerializationVersion: 1.1.0.1
**********************
Transcript started, output file is C:\Sitecore9\sitecore-XP0.180124.log
************************************
Sitecore Install Framework
Version - 1.1.0
************************************
WorkingDirectory : C:\Sitecore9
LogPath : C:\Sitecore9\sitecore-XP0.180124.log
WhatIf : False
Verbose : SilentlyContinue
Configuration : C:\Sitecore9\Resources\sitecore-XP0.json
Debug : SilentlyContinue
WarningAction : Continue
ErrorAction : Stop
InformationAction : Continue
[----------------------------------------------------------------------- CreatePaths : EnsurePath ------------------------------------------------------------------------]
[CreatePaths]:[Create] C:\inetpub\wwwroot\sc91.local
[--------------------------------------------------------------------- CreateAppPool : AppPool ---------------------------------------------------------------------------]
[CreateAppPool]:[Create] sc91.local
[CreateAppPool]:[Setting] processModel.identityType => ApplicationPoolIdentity
[--------------------------------------------------------------------- CreateWebsite : Website ---------------------------------------------------------------------------]
[CreateWebsite]:[Create] sc91.local
[CreateWebsite]:[Setting] applicationPool => sc91.local
[CreateWebsite]:[Setting] physicalPath => C:\inetpub\wwwroot\sc91.local
[----------------------------------------------------------------------- StopWebsite : ManageWebsite ---------------------------------------------------------------------]
[StopWebsite]:[Stop] sc91.local
WARNING: Website sc91.local is already Stopped
[----------------------------------------------------------------------- StopAppPool : ManageAppPool ---------------------------------------------------------------------]
[StopAppPool]:[Stop] sc91.local
[-------------------------------------------------------------------- CreateBindings : WebBinding ------------------------------------------------------------------------]
[CreateBindings]:[Remove]
protocol bindingInformation sslFlags
-------- ------------------ --------
http *:80: 0
[CreateBindings]:[Add]
Name Value
---- -----
HostHeader sc91.local
[------------------------------------------------------------------ CreateHostHeader : HostHeader ------------------------------------------------------------------------]
[CreateHostHeader]:[Backup] Created - C:\Windows\system32\drivers\etc\hosts.backup
[CreateHostHeader]:[Added] 127.0.0.1 => sc91.local
[-------------------------------------------------------------------- SetPermissions : FilePermissions -------------------------------------------------------------------]
[SetPermissions]:[Allow] IIS AppPool\sc91.local
[SetPermissions]:[Path] C:\inetpub\wwwroot\sc91.local
[SetPermissions]:[Rights] FullControl
[SetPermissions]:[Inherit] ContainerInherit ObjectInherit
[SetPermissions]:[Propagate] None
[----------------------------------------------------------- SetCertStorePermissions : FilePermissions -------------------------------------------------------------------]
[SetCertStorePermissions]:[Allow] IIS AppPool\sc91.local
[SetCertStorePermissions]:[Path] C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys\5154d8d55be2b366305f1bb5e1ecec5b_2abf0bc6-4b11-43ad-9e25-c43f3823a391
[SetCertStorePermissions]:[Rights] Read
[SetCertStorePermissions]:[Inherit] None
[SetCertStorePermissions]:[Propagate] None
[------------------------------------------------------------------------ InstallWDP : WebDeploy -------------------------------------------------------------------------]
[WebDeploy]:[Path] C:\Program Files\iis\Microsoft Web Deploy V3\msdeploy.exe
Info: Adding sitemanifest (sitemanifest).
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Core;user id=sa)
Info: Initializing deployment: Pending.
Info: Analyzing deployment plan: Pending.
Info: Updating database: Pending.
Info: Creating deployment plan: Pending.
Info: Verifying deployment plan: Pending.
Info: Deploying package to database: Pending.
Info: Creating deployment plan: Running.
Info: Initializing deployment: Running.
Info: Initializing deployment (Start)
Warning: A project which specifies SQL Server 2016 as the target platform may experience compatibility issues with SQL Server 2014.
Info: Initializing deployment: Completed.
Info: Initializing deployment (Complete)
Info: Creating deployment plan: Completed.
Info: Verifying deployment plan: Running.
Info: Analyzing deployment plan: Running.
Info: Analyzing deployment plan (Start)
Info: Analyzing deployment plan: Completed.
Info: Analyzing deployment plan (Complete)
Info: Verifying deployment plan: Completed.
Info: Deploying package to database: Running.
Info: Updating database: Running.
Info: Updating database (Start)
Info: Creating sc91_Core...
Info: Creating [aspnet_Membership_BasicAccess]...
Info: Creating [aspnet_Membership_FullAccess]...
Info: Creating [aspnet_Membership_ReportingAccess]...
Info: Creating [aspnet_Personalization_BasicAccess]...
Info: Creating [aspnet_Personalization_FullAccess]...
Info: Creating [aspnet_Personalization_ReportingAccess]...
Info: Creating [aspnet_Profile_BasicAccess]...
Info: Creating [aspnet_Profile_FullAccess]...
Info: Creating [aspnet_Profile_ReportingAccess]...
Info: Creating [aspnet_Roles_BasicAccess]...
Info: Creating [aspnet_Roles_FullAccess]...
Info: Creating [aspnet_Roles_ReportingAccess]...
Info: Creating [aspnet_WebEvent_FullAccess]...
Info: Creating <unnamed>...
Info: Creating <unnamed>...
Info: Creating <unnamed>...
Info: Creating <unnamed>...
Info: Creating <unnamed>...
Info: Creating <unnamed>...
Info: Creating <unnamed>...
Info: Creating <unnamed>...
Info: Creating [aspnet_Membership_BasicAccess]...
Info: Creating [aspnet_Membership_FullAccess]...
Info: Creating [aspnet_Membership_ReportingAccess]...
Info: Creating [aspnet_Personalization_BasicAccess]...
Info: Creating [aspnet_Personalization_FullAccess]...
Info: Creating [aspnet_Personalization_ReportingAccess]...
Info: Creating [aspnet_Profile_BasicAccess]...
Info: Creating [aspnet_Profile_FullAccess]...
Info: Creating [aspnet_Profile_ReportingAccess]...
Info: Creating [aspnet_Roles_BasicAccess]...
Info: Creating [aspnet_Roles_FullAccess]...
Info: Creating [aspnet_Roles_ReportingAccess]...
Info: Creating [aspnet_WebEvent_FullAccess]...
Info: Creating [dbo].[AccessControl]...
Info: Creating [dbo].[AccessControl].[IX_AccessControl]...
Info: Creating [dbo].[Archive]...
Info: Creating [dbo].[Archive].[ndx_ItemId]...
Info: Creating [dbo].[ArchivedFields]...
Info: Creating [dbo].[ArchivedFields].[ndx_ArchivalId]...
Info: Creating [dbo].[ArchivedFields].[ndx_VersionId]...
Info: Creating [dbo].[ArchivedItems]...
Info: Creating [dbo].[ArchivedItems].[ndx_ArchivalId]...
Info: Creating [dbo].[ArchivedVersions]...
Info: Creating [dbo].[ArchivedVersions].[ndx_ItemId]...
Info: Creating [dbo].[aspnet_Applications]...
Info: Creating [dbo].[aspnet_Applications].[aspnet_Applications_Index]...
Info: Creating [dbo].[aspnet_Membership]...
Info: Creating [dbo].[aspnet_Membership].[aspnet_Membership_index]...
Info: Creating [dbo].[aspnet_Paths]...
Info: Creating [dbo].[aspnet_Paths].[aspnet_Paths_index]...
Info: Creating [dbo].[aspnet_PersonalizationAllUsers]...
Info: Creating [dbo].[aspnet_PersonalizationPerUser]...
Info: Creating [dbo].[aspnet_PersonalizationPerUser].[aspnet_PersonalizationPerUser_index1]...
Info: Creating [dbo].[aspnet_PersonalizationPerUser].[aspnet_PersonalizationPerUser_ncindex2]...
Info: Creating [dbo].[aspnet_Profile]...
Info: Creating [dbo].[aspnet_Roles]...
Info: Creating [dbo].[aspnet_Roles].[aspnet_Roles_index1]...
Info: Creating [dbo].[aspnet_SchemaVersions]...
Info: Creating [dbo].[aspnet_Users]...
Info: Creating [dbo].[aspnet_Users].[aspnet_Users_Index]...
Info: Creating [dbo].[aspnet_Users].[aspnet_Users_Index2]...
Info: Creating [dbo].[aspnet_UsersInRoles]...
Info: Creating [dbo].[aspnet_UsersInRoles].[aspnet_UsersInRoles_index]...
Info: Creating [dbo].[aspnet_WebEvent_Events]...
Info: Creating [dbo].[Blobs]...
Info: Creating [dbo].[Blobs].[ndxBlobId]...
Info: Creating [dbo].[ClientData]...
Info: Creating [dbo].[ClientData].[ndxID]...
Info: Creating [dbo].[ClientData].[ndxKey]...
Info: Creating [dbo].[Descendants]...
Info: Creating [dbo].[Descendants].[Descendant]...
Info: Creating [dbo].[EventQueue]...
Info: Creating [dbo].[EventQueue].[IX_Stamp]...
Info: Creating [dbo].[History]...
Info: Creating [dbo].[History].[ndxCreated]...
Info: Creating [dbo].[IDTable]...
Info: Creating [dbo].[IDTable].[ndxID]...
Info: Creating [dbo].[IDTable].[ndxPrefixKey]...
Info: Creating [dbo].[Items]...
Info: Creating [dbo].[Items].[ndxID]...
Info: Creating [dbo].[Items].[ndxName]...
Info: Creating [dbo].[Items].[ndxParentID]...
Info: Creating [dbo].[Items].[ndxTemplateID]...
Info: Creating [dbo].[Links]...
Info: Creating [dbo].[Links].[ndxID]...
Info: Creating [dbo].[Links].[ndxSourceItemID]...
Info: Creating [dbo].[Links].[ndxTargetItemID]...
Info: Creating [dbo].[Notifications]...
Info: Creating [dbo].[Properties]...
Info: Creating [dbo].[Properties].[ndxID]...
Info: Creating [dbo].[Properties].[ndxKey]...
Info: Creating [dbo].[PublishQueue]...
Info: Creating [dbo].[PublishQueue].[ndxDate]...
Info: Creating [dbo].[PublishQueue].[ndxID]...
Info: Creating [dbo].[RolesInRoles]...
Info: Creating [dbo].[RolesInRoles].[ndxMembers]...
Info: Creating [dbo].[RolesInRoles].[ndxTarget]...
Info: Creating [dbo].[SharedFields]...
Info: Creating [dbo].[SharedFields].[ndxUnique]...
Info: Creating [dbo].[Tasks]...
Info: Creating [dbo].[Tasks].[ndxID]...
Info: Creating [dbo].[UnversionedFields]...
Info: Creating [dbo].[UnversionedFields].[ndxUnique]...
Info: Creating [dbo].[UserLogins]...
Info: Creating [dbo].[UserLogins].[IX_UserId]...
Info: Creating [dbo].[VersionedFields]...
Info: Creating [dbo].[VersionedFields].[ndxUnique]...
Info: Creating [dbo].[WorkflowHistory]...
Info: Creating [dbo].[WorkflowHistory].[ndxID]...
Info: Creating [dbo].[WorkflowHistory].[ndxItemID]...
Info: Creating unnamed constraint on [dbo].[aspnet_Applications]...
Info: Creating unnamed constraint on [dbo].[aspnet_Membership]...
Info: Creating unnamed constraint on [dbo].[aspnet_Paths]...
Info: Creating unnamed constraint on [dbo].[aspnet_PersonalizationPerUser]...
Info: Creating unnamed constraint on [dbo].[aspnet_Roles]...
Info: Creating unnamed constraint on [dbo].[aspnet_Users]...
Info: Creating unnamed constraint on [dbo].[aspnet_Users]...
Info: Creating unnamed constraint on [dbo].[aspnet_Users]...
Info: Creating [dbo].[DF_Blobs_Id]...
Info: Creating [dbo].[DF_ClientData_ID]...
Info: Creating [dbo].[DF_EventQueue_Created]...
Info: Creating [dbo].[DF_History_AdditionalInfo]...
Info: Creating [dbo].[DF_History_Id]...
Info: Creating [dbo].[DF_History_ItemPath]...
Info: Creating [dbo].[DF_History_TaskStack]...
Info: Creating [dbo].[DF_IDTable_ID]...
Info: Creating [dbo].[DF_Links_ID]...
Info: Creating [dbo].[DF_Links_SourceLanguage]...
Info: Creating [dbo].[DF_Links_SourceVersion]...
Info: Creating [dbo].[DF_Links_TargetLanguage]...
Info: Creating [dbo].[DF_Links_TargetVersion]...
Info: Creating [dbo].[DF_Properties_ID]...
Info: Creating [dbo].[DF_PublishQueue_Action]...
Info: Creating [dbo].[DF_PublishQueue_ID]...
Info: Creating [dbo].[DF_PublishQueue_Language]...
Info: Creating [dbo].[DF_PublishQueue_Version]...
Info: Creating [dbo].[DF_RolesInRoles_Id]...
Info: Creating [dbo].[DF_SharedFields_Id]...
Info: Creating [dbo].[DF_UnversionedFields_Id]...
Info: Creating [dbo].[DF_VersionedFields_Id]...
Info: Creating [dbo].[DF_WorkflowHistory_ID]...
Info: Creating [dbo].[FK_dbo.UserLogins_dbo.aspnet_Users_UserId]...
Info: Creating [dbo].[Fields]...
Info: Creating [dbo].[vw_aspnet_Applications]...
Info: Creating [dbo].[vw_aspnet_MembershipUsers]...
Info: Creating [dbo].[vw_aspnet_Profiles]...
Info: Creating [dbo].[vw_aspnet_Roles]...
Info: Creating [dbo].[vw_aspnet_Users]...
Info: Creating [dbo].[vw_aspnet_UsersInRoles]...
Info: Creating [dbo].[vw_aspnet_WebPartState_Paths]...
Info: Creating [dbo].[vw_aspnet_WebPartState_Shared]...
Info: Creating [dbo].[vw_aspnet_WebPartState_User]...
Info: Creating [dbo].[aspnet_AnyDataInTables]...
Info: Creating [dbo].[aspnet_Applications_CreateApplication]...
Info: Creating [dbo].[aspnet_CheckSchemaVersion]...
Info: Creating [dbo].[aspnet_Membership_ChangePasswordQuestionAndAnswer]...
Info: Creating [dbo].[aspnet_Membership_FindUsersByEmail]...
Info: Creating [dbo].[aspnet_Membership_FindUsersByName]...
Info: Creating [dbo].[aspnet_Membership_GetAllUsers]...
Info: Creating [dbo].[aspnet_Membership_GetNumberOfUsersOnline]...
Info: Creating [dbo].[aspnet_Membership_GetPassword]...
Info: Creating [dbo].[aspnet_Membership_GetPasswordWithFormat]...
Info: Creating [dbo].[aspnet_Membership_GetUserByEmail]...
Info: Creating [dbo].[aspnet_Membership_GetUserByName]...
Info: Creating [dbo].[aspnet_Membership_GetUserByUserId]...
Info: Creating [dbo].[aspnet_Membership_ResetPassword]...
Info: Creating [dbo].[aspnet_Membership_SetPassword]...
Info: Creating [dbo].[aspnet_Membership_UnlockUser]...
Info: Creating [dbo].[aspnet_Membership_UpdateUser]...
Info: Creating [dbo].[aspnet_Membership_UpdateUserInfo]...
Info: Creating [dbo].[aspnet_Paths_CreatePath]...
Info: Creating [dbo].[aspnet_Personalization_GetApplicationId]...
Info: Creating [dbo].[aspnet_PersonalizationAdministration_DeleteAllState]...
Info: Creating [dbo].[aspnet_PersonalizationAdministration_FindState]...
Info: Creating [dbo].[aspnet_PersonalizationAdministration_GetCountOfState]...
Info: Creating [dbo].[aspnet_PersonalizationAdministration_ResetSharedState]...
Info: Creating [dbo].[aspnet_PersonalizationAdministration_ResetUserState]...
Info: Creating [dbo].[aspnet_PersonalizationAllUsers_GetPageSettings]...
Info: Creating [dbo].[aspnet_PersonalizationAllUsers_ResetPageSettings]...
Info: Creating [dbo].[aspnet_PersonalizationAllUsers_SetPageSettings]...
Info: Creating [dbo].[aspnet_PersonalizationPerUser_GetPageSettings]...
Info: Creating [dbo].[aspnet_PersonalizationPerUser_ResetPageSettings]...
Info: Creating [dbo].[aspnet_Profile_DeleteInactiveProfiles]...
Info: Creating [dbo].[aspnet_Profile_GetNumberOfInactiveProfiles]...
Info: Creating [dbo].[aspnet_Profile_GetProfiles]...
Info: Creating [dbo].[aspnet_Profile_GetProperties]...
Info: Creating [dbo].[aspnet_RegisterSchemaVersion]...
Info: Creating [dbo].[aspnet_Roles_CreateRole]...
Info: Creating [dbo].[aspnet_Roles_DeleteRole]...
Info: Creating [dbo].[aspnet_Roles_GetAllRoles]...
Info: Creating [dbo].[aspnet_Roles_RoleExists]...
Info: Creating [dbo].[aspnet_Setup_RemoveAllRoleMembers]...
Info: Creating [dbo].[aspnet_Setup_RestorePermissions]...
Info: Creating [dbo].[aspnet_UnRegisterSchemaVersion]...
Info: Creating [dbo].[aspnet_Users_CreateUser]...
Info: Creating [dbo].[aspnet_Users_DeleteUser]...
Info: Creating [dbo].[aspnet_UsersInRoles_AddUsersToRoles]...
Info: Creating [dbo].[aspnet_UsersInRoles_FindUsersInRole]...
Info: Creating [dbo].[aspnet_UsersInRoles_GetRolesForUser]...
Info: Creating [dbo].[aspnet_UsersInRoles_GetUsersInRoles]...
Info: Creating [dbo].[aspnet_UsersInRoles_IsUserInRole]...
Info: Creating [dbo].[aspnet_UsersInRoles_RemoveUsersFromRoles]...
Info: Creating [dbo].[aspnet_WebEvent_LogEvent]...
Info: Creating [dbo].[aspnet_Membership_CreateUser]...
Info: Creating [dbo].[aspnet_PersonalizationPerUser_SetPageSettings]...
Info: Creating [dbo].[aspnet_Profile_DeleteProfiles]...
Info: Creating [dbo].[aspnet_Profile_SetProperties]...
Info: The transacted portion of the database update succeeded.
Info: Update complete.
Info: Importing data: Pending.
Info: Importing data
Info: Importing data: Running.
Info: Processing Table '[dbo].[aspnet_Applications]'.: Pending.
Info: Processing Table '[dbo].[aspnet_Membership]'.: Pending.
Info: Processing Table '[dbo].[aspnet_Roles]'.: Pending.
Info: Processing Table '[dbo].[aspnet_SchemaVersions]'.: Pending.
Info: Processing Table '[dbo].[aspnet_Profile]'.: Pending.
Info: Processing Table '[dbo].[Blobs]'.: Pending.
Info: Processing Table '[dbo].[Descendants]'.: Pending.
Info: Processing Table '[dbo].[aspnet_Users]'.: Pending.
Info: Processing Table '[dbo].[Items]'.: Pending.
Info: Processing Table '[dbo].[Links]'.: Pending.
Info: Processing Table '[dbo].[RolesInRoles]'.: Pending.
Info: Processing Table '[dbo].[SharedFields]'.: Pending.
Info: Processing Table '[dbo].[UnversionedFields]'.: Pending.
Info: Processing Table '[dbo].[VersionedFields]'.: Pending.
Info: Processing Import.: Running.
Info: Disabling indexes.: Pending.
Info: Disabling indexes.: Running.
Info: Disabling indexes. (Start)
Info: Disabling index 'PK__aspnet_A__C93A4C9880B5371C'.: Pending.
Info: Disabling index 'PK__aspnet_A__C93A4C9880B5371C'.: Running.
Info: Disabling index 'PK__aspnet_A__C93A4C9880B5371C'. (Start)
Info: Disabling index 'PK__aspnet_A__C93A4C9880B5371C'.: Completed.
Info: Disabling index 'PK__aspnet_A__C93A4C9880B5371C'. (Complete)
Info: Disabling index 'UQ__aspnet_A__17477DE433E4CFD2'.: Pending.
Info: Disabling index 'UQ__aspnet_A__17477DE433E4CFD2'.: Running.
Info: Disabling index 'UQ__aspnet_A__17477DE433E4CFD2'. (Start)
Info: Disabling index 'UQ__aspnet_A__17477DE433E4CFD2'.: Completed.
Info: Disabling index 'UQ__aspnet_A__17477DE433E4CFD2'. (Complete)
Info: Disabling index 'UQ__aspnet_A__3091033171FE6721'.: Pending.
Info: Disabling index 'UQ__aspnet_A__3091033171FE6721'.: Running.
Info: Disabling index 'UQ__aspnet_A__3091033171FE6721'. (Start)
Info: Disabling index 'UQ__aspnet_A__3091033171FE6721'.: Completed.
Info: Disabling index 'UQ__aspnet_A__3091033171FE6721'. (Complete)
Info: Disabling index 'PK__aspnet_M__1788CC4D653C3B68'.: Pending.
Info: Disabling index 'PK__aspnet_M__1788CC4D653C3B68'.: Running.
Info: Disabling index 'PK__aspnet_M__1788CC4D653C3B68'. (Start)
Info: Disabling index 'PK__aspnet_M__1788CC4D653C3B68'.: Completed.
Info: Disabling index 'PK__aspnet_M__1788CC4D653C3B68'. (Complete)
Info: Disabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'.: Pending.
Info: Disabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'.: Running.
Info: Disabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'. (Start)
Info: Disabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'.: Completed.
Info: Disabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'. (Complete)
Info: Disabling index 'aspnet_Users_Index2'.: Pending.
Info: Disabling index 'aspnet_Users_Index2'.: Running.
Info: Disabling index 'aspnet_Users_Index2'. (Start)
Info: Disabling index 'aspnet_Users_Index2'.: Completed.
Info: Disabling index 'aspnet_Users_Index2'. (Complete)
Info: Disabling index 'ndxBlobId'.: Pending.
Info: Disabling index 'ndxBlobId'.: Running.
Info: Disabling index 'ndxBlobId'. (Start)
Info: Disabling index 'ndxBlobId'.: Completed.
Info: Disabling index 'ndxBlobId'. (Complete)
Info: Disabling index 'Descendant'.: Pending.
Info: Disabling index 'Descendant'.: Running.
Info: Disabling index 'Descendant'. (Start)
Info: Disabling index 'Descendant'.: Completed.
Info: Disabling index 'Descendant'. (Complete)
Info: Disabling index 'Descendants_PK'.: Pending.
Info: Disabling index 'Descendants_PK'.: Running.
Info: Disabling index 'Descendants_PK'. (Start)
Info: Disabling index 'Descendants_PK'.: Completed.
Info: Disabling index 'Descendants_PK'. (Complete)
Info: Disabling index 'ndxID'.: Pending.
Info: Disabling index 'ndxID'.: Running.
Info: Disabling index 'ndxID'. (Start)
Info: Disabling index 'ndxID'.: Completed.
Info: Disabling index 'ndxID'. (Complete)
Info: Disabling index 'ndxName'.: Pending.
Info: Disabling index 'ndxName'.: Running.
Info: Disabling index 'ndxName'. (Start)
Info: Disabling index 'ndxName'.: Completed.
Info: Disabling index 'ndxName'. (Complete)
Info: Disabling index 'ndxParentID'.: Pending.
Info: Disabling index 'ndxParentID'.: Running.
Info: Disabling index 'ndxParentID'. (Start)
Info: Disabling index 'ndxParentID'.: Completed.
Info: Disabling index 'ndxParentID'. (Complete)
Info: Disabling index 'ndxTemplateID'.: Pending.
Info: Disabling index 'ndxTemplateID'.: Running.
Info: Disabling index 'ndxTemplateID'. (Start)
Info: Disabling index 'ndxTemplateID'.: Completed.
Info: Disabling index 'ndxTemplateID'. (Complete)
Info: Disabling index 'ndxID'.: Pending.
Info: Disabling index 'ndxID'.: Running.
Info: Disabling index 'ndxID'. (Start)
Info: Disabling index 'ndxID'.: Completed.
Info: Disabling index 'ndxID'. (Complete)
Info: Disabling index 'ndxSourceItemID'.: Pending.
Info: Disabling index 'ndxSourceItemID'.: Running.
Info: Disabling index 'ndxSourceItemID'. (Start)
Info: Disabling index 'ndxSourceItemID'.: Completed.
Info: Disabling index 'ndxSourceItemID'. (Complete)
Info: Disabling index 'ndxTargetItemID'.: Pending.
Info: Disabling index 'ndxTargetItemID'.: Running.
Info: Disabling index 'ndxTargetItemID'. (Start)
Info: Disabling index 'ndxTargetItemID'.: Completed.
Info: Disabling index 'ndxTargetItemID'. (Complete)
Info: Disabling index 'ndxMembers'.: Pending.
Info: Disabling index 'ndxMembers'.: Running.
Info: Disabling index 'ndxMembers'. (Start)
Info: Disabling index 'ndxMembers'.: Completed.
Info: Disabling index 'ndxMembers'. (Complete)
Info: Disabling index 'ndxTarget'.: Pending.
Info: Disabling index 'ndxTarget'.: Running.
Info: Disabling index 'ndxTarget'. (Start)
Info: Disabling index 'ndxTarget'.: Completed.
Info: Disabling index 'ndxTarget'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling indexes.: Completed.
Info: Disabling indexes. (Complete)
Info: Processing Import. 0.00 % done.
Info: Processing Table '[dbo].[aspnet_Applications]'.: Running.
Info: Processing Import. 0.00 % done.
Info: Processing Table '[dbo].[aspnet_Applications]'. 100.00 % done.
Info: Processing Table '[dbo].[aspnet_Membership]'.: Running.
Info: Processing Table '[dbo].[aspnet_Applications]'.: Completed.
Info: Processing Import. 0.00 % done.
Info: Processing Table '[dbo].[aspnet_Membership]'. 100.00 % done.
Info: Processing Table '[dbo].[aspnet_Membership]'.: Completed.
Info: Processing Table '[dbo].[aspnet_Profile]'.: Running.
Info: Processing Import. 0.00 % done.
Info: Processing Table '[dbo].[aspnet_Profile]'. 15.63 % done.
Info: Processing Table '[dbo].[aspnet_Profile]'. 31.26 % done.
Info: Processing Import. 0.00 % done.
Info: Processing Import. 0.00 % done.
Info: Processing Table '[dbo].[aspnet_Profile]'. 67.07 % done.
Info: Processing Table '[dbo].[aspnet_Profile]'. 100.00 % done.
Info: Processing Import. 0.01 % done.
Info: Processing Table '[dbo].[aspnet_Profile]'.: Completed.
Info: Processing Table '[dbo].[aspnet_Roles]'.: Running.
Info: Processing Table '[dbo].[aspnet_Roles]'. 100.00 % done.
Info: Processing Import. 0.01 % done.
Info: Processing Table '[dbo].[aspnet_Roles]'.: Completed.
Info: Processing Table '[dbo].[aspnet_SchemaVersions]'.: Running.
Info: Processing Import. 0.01 % done.
Info: Processing Table '[dbo].[aspnet_SchemaVersions]'. 34.07 % done.
Info: Processing Table '[dbo].[aspnet_SchemaVersions]'. 49.45 % done.
Info: Processing Import. 0.01 % done.
Info: Processing Table '[dbo].[aspnet_SchemaVersions]'. 70.33 % done.
Info: Processing Import. 0.01 % done.
Info: Processing Table '[dbo].[aspnet_SchemaVersions]'. 82.42 % done.
Info: Processing Import. 0.01 % done.
Info: Processing Table '[dbo].[aspnet_SchemaVersions]'. 100.00 % done.
Info: Processing Import. 0.01 % done.
Info: Processing Table '[dbo].[aspnet_SchemaVersions]'.: Completed.
Info: Processing Table '[dbo].[aspnet_Users]'.: Running.
Info: Processing Table '[dbo].[aspnet_Users]'. 100.00 % done.
Info: Processing Import. 0.01 % done.
Info: Processing Table '[dbo].[aspnet_Users]'.: Completed.
Info: Processing Table '[dbo].[Blobs]'.: Running.
Info: Processing Import. 0.06 % done.
Info: Processing Table '[dbo].[Blobs]'. 100.00 % done.
Info: Processing Table '[dbo].[Blobs]'.: Completed.
Info: Processing Table '[dbo].[Descendants]'.: Running.
Info: Processing Import. 5.41 % done.
Info: Processing Table '[dbo].[Descendants]'. 70.83 % done.
Info: Processing Table '[dbo].[Descendants]'. 100.00 % done.
Info: Processing Import. 7.61 % done.
Info: Processing Table '[dbo].[Descendants]'.: Completed.
Info: Processing Table '[dbo].[Items]'.: Running.
Info: Processing Table '[dbo].[Items]'. 100.00 % done.
Info: Processing Import. 9.98 % done.
Info: Processing Table '[dbo].[Items]'.: Completed.
Info: Processing Table '[dbo].[Links]'.: Running.
Info: Processing Import. 16.70 % done.
Info: Processing Table '[dbo].[Links]'. 52.32 % done.
Info: Processing Table '[dbo].[Links]'. 100.00 % done.
Info: Processing Table '[dbo].[Links]'.: Completed.
Info: Processing Import. 22.82 % done.
Info: Processing Table '[dbo].[RolesInRoles]'.: Running.
Info: Processing Table '[dbo].[RolesInRoles]'. 100.00 % done.
Info: Processing Import. 22.82 % done.
Info: Processing Table '[dbo].[RolesInRoles]'.: Completed.
Info: Processing Table '[dbo].[SharedFields]'.: Running.
Info: Processing Import. 24.44 % done.
Info: Processing Table '[dbo].[SharedFields]'. 19.43 % done.
Info: Processing Import. 31.16 % done.
Info: Processing Table '[dbo].[SharedFields]'. 100.00 % done.
Info: Processing Table '[dbo].[SharedFields]'.: Completed.
Info: Processing Table '[dbo].[UnversionedFields]'.: Running.
Info: Processing Import. 37.87 % done.
Info: Processing Table '[dbo].[UnversionedFields]'. 78.84 % done.
Info: Processing Import. 39.68 % done.
Info: Processing Table '[dbo].[UnversionedFields]'. 100.00 % done.
Info: Processing Table '[dbo].[UnversionedFields]'.: Completed.
Info: Processing Table '[dbo].[VersionedFields]'.: Running.
Info: Processing Table '[dbo].[VersionedFields]'. 11.13 % done.
Info: Processing Import. 46.39 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 22.26 % done.
Info: Processing Import. 53.11 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 33.39 % done.
Info: Processing Import. 59.82 % done.
Info: Processing Import. 66.54 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 44.53 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 55.66 % done.
Info: Processing Import. 73.25 % done.
Info: Processing Import. 79.97 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 66.79 % done.
Info: Processing Import. 86.68 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 77.92 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 89.05 % done.
Info: Processing Import. 93.39 % done.
Info: Processing Import. 100.00 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 100.00 % done.
Info: Processing Table '[dbo].[VersionedFields]'.: Completed.
Info: Enabling indexes.: Pending.
Info: Enabling indexes.: Running.
Info: Enabling indexes. (Start)
Info: Enabling index 'PK__aspnet_A__C93A4C9880B5371C'.: Pending.
Info: Enabling index 'PK__aspnet_A__C93A4C9880B5371C'.: Running.
Info: Enabling index 'PK__aspnet_A__C93A4C9880B5371C'. (Start)
Info: Enabling index 'PK__aspnet_A__C93A4C9880B5371C'.: Completed.
Info: Enabling index 'PK__aspnet_A__C93A4C9880B5371C'. (Complete)
Info: Enabling index 'UQ__aspnet_A__17477DE433E4CFD2'.: Pending.
Info: Enabling index 'UQ__aspnet_A__17477DE433E4CFD2'.: Running.
Info: Enabling index 'UQ__aspnet_A__17477DE433E4CFD2'. (Start)
Info: Enabling index 'UQ__aspnet_A__17477DE433E4CFD2'.: Completed.
Info: Enabling index 'UQ__aspnet_A__17477DE433E4CFD2'. (Complete)
Info: Enabling index 'UQ__aspnet_A__3091033171FE6721'.: Pending.
Info: Enabling index 'UQ__aspnet_A__3091033171FE6721'.: Running.
Info: Enabling index 'UQ__aspnet_A__3091033171FE6721'. (Start)
Info: Enabling index 'UQ__aspnet_A__3091033171FE6721'.: Completed.
Info: Enabling index 'UQ__aspnet_A__3091033171FE6721'. (Complete)
Info: Enabling index 'PK__aspnet_M__1788CC4D653C3B68'.: Pending.
Info: Enabling index 'PK__aspnet_M__1788CC4D653C3B68'.: Running.
Info: Enabling index 'PK__aspnet_M__1788CC4D653C3B68'. (Start)
Info: Enabling index 'PK__aspnet_M__1788CC4D653C3B68'.: Completed.
Info: Enabling index 'PK__aspnet_M__1788CC4D653C3B68'. (Complete)
Info: Enabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'.: Pending.
Info: Enabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'.: Running.
Info: Enabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'. (Start)
Info: Enabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'.: Completed.
Info: Enabling index 'PK__aspnet_R__8AFACE1B2C1A30BE'. (Complete)
Info: Enabling index 'aspnet_Users_Index2'.: Pending.
Info: Enabling index 'aspnet_Users_Index2'.: Running.
Info: Enabling index 'aspnet_Users_Index2'. (Start)
Info: Enabling index 'aspnet_Users_Index2'.: Completed.
Info: Enabling index 'aspnet_Users_Index2'. (Complete)
Info: Enabling index 'ndxBlobId'.: Pending.
Info: Enabling index 'ndxBlobId'.: Running.
Info: Enabling index 'ndxBlobId'. (Start)
Info: Enabling index 'ndxBlobId'.: Completed.
Info: Enabling index 'ndxBlobId'. (Complete)
Info: Enabling index 'Descendant'.: Pending.
Info: Enabling index 'Descendant'.: Running.
Info: Enabling index 'Descendant'. (Start)
Info: Enabling index 'Descendant'.: Completed.
Info: Enabling index 'Descendant'. (Complete)
Info: Enabling index 'Descendants_PK'.: Pending.
Info: Enabling index 'Descendants_PK'.: Running.
Info: Enabling index 'Descendants_PK'. (Start)
Info: Enabling index 'Descendants_PK'.: Completed.
Info: Enabling index 'Descendants_PK'. (Complete)
Info: Enabling index 'ndxID'.: Pending.
Info: Enabling index 'ndxID'.: Running.
Info: Enabling index 'ndxID'. (Start)
Info: Enabling index 'ndxID'.: Completed.
Info: Enabling index 'ndxID'. (Complete)
Info: Enabling index 'ndxName'.: Pending.
Info: Enabling index 'ndxName'.: Running.
Info: Enabling index 'ndxName'. (Start)
Info: Enabling index 'ndxName'.: Completed.
Info: Enabling index 'ndxName'. (Complete)
Info: Enabling index 'ndxParentID'.: Pending.
Info: Enabling index 'ndxParentID'.: Running.
Info: Enabling index 'ndxParentID'. (Start)
Info: Enabling index 'ndxParentID'.: Completed.
Info: Enabling index 'ndxParentID'. (Complete)
Info: Enabling index 'ndxTemplateID'.: Pending.
Info: Enabling index 'ndxTemplateID'.: Running.
Info: Enabling index 'ndxTemplateID'. (Start)
Info: Enabling index 'ndxTemplateID'.: Completed.
Info: Enabling index 'ndxTemplateID'. (Complete)
Info: Enabling index 'ndxID'.: Pending.
Info: Enabling index 'ndxID'.: Running.
Info: Enabling index 'ndxID'. (Start)
Info: Enabling index 'ndxID'.: Completed.
Info: Enabling index 'ndxID'. (Complete)
Info: Enabling index 'ndxSourceItemID'.: Pending.
Info: Enabling index 'ndxSourceItemID'.: Running.
Info: Enabling index 'ndxSourceItemID'. (Start)
Info: Enabling index 'ndxSourceItemID'.: Completed.
Info: Enabling index 'ndxSourceItemID'. (Complete)
Info: Enabling index 'ndxTargetItemID'.: Pending.
Info: Enabling index 'ndxTargetItemID'.: Running.
Info: Enabling index 'ndxTargetItemID'. (Start)
Info: Enabling index 'ndxTargetItemID'.: Completed.
Info: Enabling index 'ndxTargetItemID'. (Complete)
Info: Enabling index 'ndxMembers'.: Pending.
Info: Enabling index 'ndxMembers'.: Running.
Info: Enabling index 'ndxMembers'. (Start)
Info: Enabling index 'ndxMembers'.: Completed.
Info: Enabling index 'ndxMembers'. (Complete)
Info: Enabling index 'ndxTarget'.: Pending.
Info: Enabling index 'ndxTarget'.: Running.
Info: Enabling index 'ndxTarget'. (Start)
Info: Enabling index 'ndxTarget'.: Completed.
Info: Enabling index 'ndxTarget'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling indexes.: Completed.
Info: Enabling indexes. (Complete)
Info: Processing Import.: Completed.
Info: Importing data: Completed.
Info: Importing data
Info: Updating database: Completed.
Info: Updating database (Complete)
Info: Deploying package to database: Completed.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Core;user id=sa)
Info: Adding database (sitemanifest/dbFullSql[@path='data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Core;user id=sa']/sqlScript)
Info: Opening SQL Connection with connection string 'data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Core;user id=sa;pooling=False'. The 'transacted' setting for this connection is 'False'.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Core;user id=sa)
Info: Adding database (sitemanifest/dbFullSql[@path='data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Core;user id=sa']/sqlScript)
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Master;user id=sa)
Info: Initializing deployment: Pending.
Info: Analyzing deployment plan: Pending.
Info: Updating database: Pending.
Info: Creating deployment plan: Pending.
Info: Verifying deployment plan: Pending.
Info: Deploying package to database: Pending.
Info: Creating deployment plan: Running.
Info: Initializing deployment: Running.
Info: Initializing deployment (Start)
Warning: A project which specifies SQL Server 2016 as the target platform may experience compatibility issues with SQL Server 2014.
Info: Initializing deployment: Completed.
Info: Initializing deployment (Complete)
Info: Creating deployment plan: Completed.
Info: Verifying deployment plan: Running.
Info: Analyzing deployment plan: Running.
Info: Analyzing deployment plan (Start)
Info: Analyzing deployment plan: Completed.
Info: Analyzing deployment plan (Complete)
Info: Verifying deployment plan: Completed.
Info: Deploying package to database: Running.
Info: Updating database: Running.
Info: Updating database (Start)
Info: Creating sc91_Master...
Info: Creating [dbo].[AccessControl]...
Info: Creating [dbo].[AccessControl].[IX_AccessControl]...
Info: Creating [dbo].[Archive]...
Info: Creating [dbo].[Archive].[ndx_ItemId]...
Info: Creating [dbo].[ArchivedFields]...
Info: Creating [dbo].[ArchivedFields].[ndx_ArchivalId]...
Info: Creating [dbo].[ArchivedFields].[ndx_VersionId]...
Info: Creating [dbo].[ArchivedItems]...
Info: Creating [dbo].[ArchivedItems].[ndx_ArchivalId]...
Info: Creating [dbo].[ArchivedVersions]...
Info: Creating [dbo].[ArchivedVersions].[ndx_ItemId]...
Info: Creating [dbo].[Blobs]...
Info: Creating [dbo].[Blobs].[ndxBlobId]...
Info: Creating [dbo].[ClientData]...
Info: Creating [dbo].[ClientData].[ndxID]...
Info: Creating [dbo].[ClientData].[ndxKey]...
Info: Creating [dbo].[Descendants]...
Info: Creating [dbo].[Descendants].[Descendant]...
Info: Creating [dbo].[EventQueue]...
Info: Creating [dbo].[EventQueue].[IX_Stamp]...
Info: Creating [dbo].[History]...
Info: Creating [dbo].[History].[ndxCreated]...
Info: Creating [dbo].[IDTable]...
Info: Creating [dbo].[IDTable].[ndxID]...
Info: Creating [dbo].[IDTable].[ndxPrefixKey]...
Info: Creating [dbo].[Items]...
Info: Creating [dbo].[Items].[ndxID]...
Info: Creating [dbo].[Items].[ndxName]...
Info: Creating [dbo].[Items].[ndxParentID]...
Info: Creating [dbo].[Items].[ndxTemplateID]...
Info: Creating [dbo].[Links]...
Info: Creating [dbo].[Links].[ndxID]...
Info: Creating [dbo].[Links].[ndxSourceItemID]...
Info: Creating [dbo].[Links].[ndxTargetItemID]...
Info: Creating [dbo].[Notifications]...
Info: Creating [dbo].[Properties]...
Info: Creating [dbo].[Properties].[ndxID]...
Info: Creating [dbo].[Properties].[ndxKey]...
Info: Creating [dbo].[PublishQueue]...
Info: Creating [dbo].[PublishQueue].[ndxDate]...
Info: Creating [dbo].[PublishQueue].[ndxID]...
Info: Creating [dbo].[SharedFields]...
Info: Creating [dbo].[SharedFields].[ndxUnique]...
Info: Creating [dbo].[Tasks]...
Info: Creating [dbo].[Tasks].[ndxID]...
Info: Creating [dbo].[UnversionedFields]...
Info: Creating [dbo].[UnversionedFields].[ndxUnique]...
Info: Creating [dbo].[VersionedFields]...
Info: Creating [dbo].[VersionedFields].[ndxUnique]...
Info: Creating [dbo].[WorkflowHistory]...
Info: Creating [dbo].[WorkflowHistory].[ndxID]...
Info: Creating [dbo].[WorkflowHistory].[ndxItemID]...
Info: Creating [dbo].[DF_Blobs_Id]...
Info: Creating [dbo].[DF_ClientData_ID]...
Info: Creating [dbo].[DF_EventQueue_Created]...
Info: Creating [dbo].[DF_History_AdditionalInfo]...
Info: Creating [dbo].[DF_History_Id]...
Info: Creating [dbo].[DF_History_ItemPath]...
Info: Creating [dbo].[DF_History_TaskStack]...
Info: Creating [dbo].[DF_IDTable_ID]...
Info: Creating [dbo].[DF_Links_ID]...
Info: Creating [dbo].[DF_Links_SourceLanguage]...
Info: Creating [dbo].[DF_Links_SourceVersion]...
Info: Creating [dbo].[DF_Links_TargetLanguage]...
Info: Creating [dbo].[DF_Links_TargetVersion]...
Info: Creating [dbo].[DF_Properties_ID]...
Info: Creating [dbo].[DF_PublishQueue_Action]...
Info: Creating [dbo].[DF_PublishQueue_ID]...
Info: Creating [dbo].[DF_PublishQueue_Language]...
Info: Creating [dbo].[DF_PublishQueue_Version]...
Info: Creating [dbo].[DF_SharedFields_Id]...
Info: Creating [dbo].[DF_UnversionedFields_Id]...
Info: Creating [dbo].[DF_VersionedFields_Id]...
Info: Creating [dbo].[DF_WorkflowHistory_ID]...
Info: Creating [dbo].[Fields]...
Info: The transacted portion of the database update succeeded.
Info: Update complete.
Info: Importing data: Pending.
Info: Importing data
Info: Importing data: Running.
Info: Processing Table '[dbo].[Blobs]'.: Pending.
Info: Processing Table '[dbo].[Descendants]'.: Pending.
Info: Processing Table '[dbo].[Items]'.: Pending.
Info: Processing Table '[dbo].[UnversionedFields]'.: Pending.
Info: Processing Table '[dbo].[VersionedFields]'.: Pending.
Info: Processing Table '[dbo].[SharedFields]'.: Pending.
Info: Processing Import.: Running.
Info: Disabling indexes.: Pending.
Info: Disabling indexes.: Running.
Info: Disabling indexes. (Start)
Info: Disabling index 'ndxBlobId'.: Pending.
Info: Disabling index 'ndxBlobId'.: Running.
Info: Disabling index 'ndxBlobId'. (Start)
Info: Disabling index 'ndxBlobId'.: Completed.
Info: Disabling index 'ndxBlobId'. (Complete)
Info: Disabling index 'Descendant'.: Pending.
Info: Disabling index 'Descendant'.: Running.
Info: Disabling index 'Descendant'. (Start)
Info: Disabling index 'Descendant'.: Completed.
Info: Disabling index 'Descendant'. (Complete)
Info: Disabling index 'Descendants_PK'.: Pending.
Info: Disabling index 'Descendants_PK'.: Running.
Info: Disabling index 'Descendants_PK'. (Start)
Info: Disabling index 'Descendants_PK'.: Completed.
Info: Disabling index 'Descendants_PK'. (Complete)
Info: Disabling index 'ndxID'.: Pending.
Info: Disabling index 'ndxID'.: Running.
Info: Disabling index 'ndxID'. (Start)
Info: Disabling index 'ndxID'.: Completed.
Info: Disabling index 'ndxID'. (Complete)
Info: Disabling index 'ndxName'.: Pending.
Info: Disabling index 'ndxName'.: Running.
Info: Disabling index 'ndxName'. (Start)
Info: Disabling index 'ndxName'.: Completed.
Info: Disabling index 'ndxName'. (Complete)
Info: Disabling index 'ndxParentID'.: Pending.
Info: Disabling index 'ndxParentID'.: Running.
Info: Disabling index 'ndxParentID'. (Start)
Info: Disabling index 'ndxParentID'.: Completed.
Info: Disabling index 'ndxParentID'. (Complete)
Info: Disabling index 'ndxTemplateID'.: Pending.
Info: Disabling index 'ndxTemplateID'.: Running.
Info: Disabling index 'ndxTemplateID'. (Start)
Info: Disabling index 'ndxTemplateID'.: Completed.
Info: Disabling index 'ndxTemplateID'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling indexes.: Completed.
Info: Disabling indexes. (Complete)
Info: Processing Import. 0.00 % done.
Info: Processing Table '[dbo].[Blobs]'.: Running.
Info: Processing Import. 12.70 % done.
Info: Processing Table '[dbo].[Blobs]'. 100.00 % done.
Info: Processing Table '[dbo].[Blobs]'.: Completed.
Info: Processing Table '[dbo].[Descendants]'.: Running.
Info: Processing Table '[dbo].[Descendants]'. 100.00 % done.
Info: Processing Import. 19.93 % done.
Info: Processing Table '[dbo].[Descendants]'.: Completed.
Info: Processing Table '[dbo].[Items]'.: Running.
Info: Processing Table '[dbo].[Items]'. 100.00 % done.
Info: Processing Import. 22.22 % done.
Info: Processing Table '[dbo].[Items]'.: Completed.
Info: Processing Table '[dbo].[SharedFields]'.: Running.
Info: Processing Import. 28.67 % done.
Info: Processing Table '[dbo].[SharedFields]'. 100.00 % done.
Info: Processing Table '[dbo].[SharedFields]'.: Completed.
Info: Processing Table '[dbo].[UnversionedFields]'.: Running.
Info: Processing Table '[dbo].[UnversionedFields]'. 100.00 % done.
Info: Processing Import. 37.65 % done.
Info: Processing Table '[dbo].[UnversionedFields]'.: Completed.
Info: Processing Table '[dbo].[VersionedFields]'.: Running.
Info: Processing Import. 70.76 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 53.10 % done.
Info: Processing Table '[dbo].[VersionedFields]'. 100.00 % done.
Info: Processing Import. 100.00 % done.
Info: Processing Table '[dbo].[VersionedFields]'.: Completed.
Info: Enabling indexes.: Pending.
Info: Enabling indexes.: Running.
Info: Enabling indexes. (Start)
Info: Enabling index 'ndxBlobId'.: Pending.
Info: Enabling index 'ndxBlobId'.: Running.
Info: Enabling index 'ndxBlobId'. (Start)
Info: Enabling index 'ndxBlobId'.: Completed.
Info: Enabling index 'ndxBlobId'. (Complete)
Info: Enabling index 'Descendant'.: Pending.
Info: Enabling index 'Descendant'.: Running.
Info: Enabling index 'Descendant'. (Start)
Info: Enabling index 'Descendant'.: Completed.
Info: Enabling index 'Descendant'. (Complete)
Info: Enabling index 'Descendants_PK'.: Pending.
Info: Enabling index 'Descendants_PK'.: Running.
Info: Enabling index 'Descendants_PK'. (Start)
Info: Enabling index 'Descendants_PK'.: Completed.
Info: Enabling index 'Descendants_PK'. (Complete)
Info: Enabling index 'ndxID'.: Pending.
Info: Enabling index 'ndxID'.: Running.
Info: Enabling index 'ndxID'. (Start)
Info: Enabling index 'ndxID'.: Completed.
Info: Enabling index 'ndxID'. (Complete)
Info: Enabling index 'ndxName'.: Pending.
Info: Enabling index 'ndxName'.: Running.
Info: Enabling index 'ndxName'. (Start)
Info: Enabling index 'ndxName'.: Completed.
Info: Enabling index 'ndxName'. (Complete)
Info: Enabling index 'ndxParentID'.: Pending.
Info: Enabling index 'ndxParentID'.: Running.
Info: Enabling index 'ndxParentID'. (Start)
Info: Enabling index 'ndxParentID'.: Completed.
Info: Enabling index 'ndxParentID'. (Complete)
Info: Enabling index 'ndxTemplateID'.: Pending.
Info: Enabling index 'ndxTemplateID'.: Running.
Info: Enabling index 'ndxTemplateID'. (Start)
Info: Enabling index 'ndxTemplateID'.: Completed.
Info: Enabling index 'ndxTemplateID'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling indexes.: Completed.
Info: Enabling indexes. (Complete)
Info: Processing Import.: Completed.
Info: Importing data: Completed.
Info: Importing data
Info: Updating database: Completed.
Info: Updating database (Complete)
Info: Deploying package to database: Completed.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Master;user id=sa)
Info: Adding database (sitemanifest/dbFullSql[@path='data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Master;user id=sa']/sqlScript)
Info: Opening SQL Connection with connection string 'data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Master;user id=sa;pooling=False'. The 'transacted' setting for this connection is 'False'.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Web;user id=sa)
Info: Initializing deployment: Pending.
Info: Analyzing deployment plan: Pending.
Info: Updating database: Pending.
Info: Creating deployment plan: Pending.
Info: Verifying deployment plan: Pending.
Info: Deploying package to database: Pending.
Info: Creating deployment plan: Running.
Info: Initializing deployment: Running.
Info: Initializing deployment (Start)
Warning: A project which specifies SQL Server 2016 as the target platform may experience compatibility issues with SQL Server 2014.
Info: Initializing deployment: Completed.
Info: Initializing deployment (Complete)
Info: Creating deployment plan: Completed.
Info: Verifying deployment plan: Running.
Info: Analyzing deployment plan: Running.
Info: Analyzing deployment plan (Start)
Info: Analyzing deployment plan: Completed.
Info: Analyzing deployment plan (Complete)
Info: Verifying deployment plan: Completed.
Info: Deploying package to database: Running.
Info: Updating database: Running.
Info: Updating database (Start)
Info: Creating sc91_Web...
Info: Creating [dbo].[AccessControl]...
Info: Creating [dbo].[AccessControl].[IX_AccessControl]...
Info: Creating [dbo].[Archive]...
Info: Creating [dbo].[Archive].[ndx_ItemId]...
Info: Creating [dbo].[ArchivedFields]...
Info: Creating [dbo].[ArchivedFields].[ndx_ArchivalId]...
Info: Creating [dbo].[ArchivedFields].[ndx_VersionId]...
Info: Creating [dbo].[ArchivedItems]...
Info: Creating [dbo].[ArchivedItems].[ndx_ArchivalId]...
Info: Creating [dbo].[ArchivedVersions]...
Info: Creating [dbo].[ArchivedVersions].[ndx_ItemId]...
Info: Creating [dbo].[Blobs]...
Info: Creating [dbo].[Blobs].[ndxBlobId]...
Info: Creating [dbo].[ClientData]...
Info: Creating [dbo].[ClientData].[ndxID]...
Info: Creating [dbo].[ClientData].[ndxKey]...
Info: Creating [dbo].[Descendants]...
Info: Creating [dbo].[Descendants].[Descendant]...
Info: Creating [dbo].[EventQueue]...
Info: Creating [dbo].[EventQueue].[IX_Stamp]...
Info: Creating [dbo].[History]...
Info: Creating [dbo].[History].[ndxCreated]...
Info: Creating [dbo].[IDTable]...
Info: Creating [dbo].[IDTable].[ndxID]...
Info: Creating [dbo].[IDTable].[ndxPrefixKey]...
Info: Creating [dbo].[Items]...
Info: Creating [dbo].[Items].[ndxID]...
Info: Creating [dbo].[Items].[ndxName]...
Info: Creating [dbo].[Items].[ndxParentID]...
Info: Creating [dbo].[Items].[ndxTemplateID]...
Info: Creating [dbo].[Links]...
Info: Creating [dbo].[Links].[ndxID]...
Info: Creating [dbo].[Links].[ndxSourceItemID]...
Info: Creating [dbo].[Links].[ndxTargetItemID]...
Info: Creating [dbo].[Notifications]...
Info: Creating [dbo].[Properties]...
Info: Creating [dbo].[Properties].[ndxID]...
Info: Creating [dbo].[Properties].[ndxKey]...
Info: Creating [dbo].[PublishQueue]...
Info: Creating [dbo].[PublishQueue].[ndxDate]...
Info: Creating [dbo].[PublishQueue].[ndxID]...
Info: Creating [dbo].[SharedFields]...
Info: Creating [dbo].[SharedFields].[ndxUnique]...
Info: Creating [dbo].[Tasks]...
Info: Creating [dbo].[Tasks].[ndxID]...
Info: Creating [dbo].[UnversionedFields]...
Info: Creating [dbo].[UnversionedFields].[ndxUnique]...
Info: Creating [dbo].[VersionedFields]...
Info: Creating [dbo].[VersionedFields].[ndxUnique]...
Info: Creating [dbo].[WorkflowHistory]...
Info: Creating [dbo].[WorkflowHistory].[ndxID]...
Info: Creating [dbo].[WorkflowHistory].[ndxItemID]...
Info: Creating [dbo].[DF_Blobs_Id]...
Info: Creating [dbo].[DF_ClientData_ID]...
Info: Creating [dbo].[DF_EventQueue_Created]...
Info: Creating [dbo].[DF_History_AdditionalInfo]...
Info: Creating [dbo].[DF_History_Id]...
Info: Creating [dbo].[DF_History_ItemPath]...
Info: Creating [dbo].[DF_History_TaskStack]...
Info: Creating [dbo].[DF_IDTable_ID]...
Info: Creating [dbo].[DF_Links_ID]...
Info: Creating [dbo].[DF_Links_SourceLanguage]...
Info: Creating [dbo].[DF_Links_SourceVersion]...
Info: Creating [dbo].[DF_Links_TargetLanguage]...
Info: Creating [dbo].[DF_Links_TargetVersion]...
Info: Creating [dbo].[DF_Properties_ID]...
Info: Creating [dbo].[DF_PublishQueue_Action]...
Info: Creating [dbo].[DF_PublishQueue_ID]...
Info: Creating [dbo].[DF_PublishQueue_Language]...
Info: Creating [dbo].[DF_PublishQueue_Version]...
Info: Creating [dbo].[DF_SharedFields_Id]...
Info: Creating [dbo].[DF_UnversionedFields_Id]...
Info: Creating [dbo].[DF_VersionedFields_Id]...
Info: Creating [dbo].[DF_WorkflowHistory_ID]...
Info: Creating [dbo].[Fields]...
Info: The transacted portion of the database update succeeded.
Info: Update complete.
Info: Importing data: Pending.
Info: Importing data
Info: Importing data: Running.
Info: Processing Table '[dbo].[Blobs]'.: Pending.
Info: Processing Table '[dbo].[Descendants]'.: Pending.
Info: Processing Table '[dbo].[Items]'.: Pending.
Info: Processing Table '[dbo].[SharedFields]'.: Pending.
Info: Processing Table '[dbo].[UnversionedFields]'.: Pending.
Info: Processing Table '[dbo].[VersionedFields]'.: Pending.
Info: Processing Import.: Running.
Info: Disabling indexes.: Pending.
Info: Disabling indexes.: Running.
Info: Disabling indexes. (Start)
Info: Disabling index 'ndxBlobId'.: Pending.
Info: Disabling index 'ndxBlobId'.: Running.
Info: Disabling index 'ndxBlobId'. (Start)
Info: Disabling index 'ndxBlobId'.: Completed.
Info: Disabling index 'ndxBlobId'. (Complete)
Info: Disabling index 'Descendant'.: Pending.
Info: Disabling index 'Descendant'.: Running.
Info: Disabling index 'Descendant'. (Start)
Info: Disabling index 'Descendant'.: Completed.
Info: Disabling index 'Descendant'. (Complete)
Info: Disabling index 'Descendants_PK'.: Pending.
Info: Disabling index 'Descendants_PK'.: Running.
Info: Disabling index 'Descendants_PK'. (Start)
Info: Disabling index 'Descendants_PK'.: Completed.
Info: Disabling index 'Descendants_PK'. (Complete)
Info: Disabling index 'ndxID'.: Pending.
Info: Disabling index 'ndxID'.: Running.
Info: Disabling index 'ndxID'. (Start)
Info: Disabling index 'ndxID'.: Completed.
Info: Disabling index 'ndxID'. (Complete)
Info: Disabling index 'ndxName'.: Pending.
Info: Disabling index 'ndxName'.: Running.
Info: Disabling index 'ndxName'. (Start)
Info: Disabling index 'ndxName'.: Completed.
Info: Disabling index 'ndxName'. (Complete)
Info: Disabling index 'ndxParentID'.: Pending.
Info: Disabling index 'ndxParentID'.: Running.
Info: Disabling index 'ndxParentID'. (Start)
Info: Disabling index 'ndxParentID'.: Completed.
Info: Disabling index 'ndxParentID'. (Complete)
Info: Disabling index 'ndxTemplateID'.: Pending.
Info: Disabling index 'ndxTemplateID'.: Running.
Info: Disabling index 'ndxTemplateID'. (Start)
Info: Disabling index 'ndxTemplateID'.: Completed.
Info: Disabling index 'ndxTemplateID'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling index 'ndxUnique'.: Pending.
Info: Disabling index 'ndxUnique'.: Running.
Info: Disabling index 'ndxUnique'. (Start)
Info: Disabling index 'ndxUnique'.: Completed.
Info: Disabling index 'ndxUnique'. (Complete)
Info: Disabling indexes.: Completed.
Info: Disabling indexes. (Complete)
Info: Processing Import. 0.00 % done.
Info: Processing Table '[dbo].[Blobs]'.: Running.
Info: Processing Table '[dbo].[Blobs]'. 100.00 % done.
Info: Processing Table '[dbo].[Blobs]'.: Completed.
Info: Processing Import. 27.55 % done.
Info: Processing Table '[dbo].[Descendants]'.: Running.
Info: Processing Table '[dbo].[Descendants]'. 100.00 % done.
Info: Processing Import. 43.23 % done.
Info: Processing Table '[dbo].[Descendants]'.: Completed.
Info: Processing Table '[dbo].[Items]'.: Running.
Info: Processing Import. 48.19 % done.
Info: Processing Table '[dbo].[Items]'. 100.00 % done.
Info: Processing Table '[dbo].[Items]'.: Completed.
Info: Processing Table '[dbo].[SharedFields]'.: Running.
Info: Processing Import. 62.14 % done.
Info: Processing Table '[dbo].[SharedFields]'. 100.00 % done.
Info: Processing Table '[dbo].[SharedFields]'.: Completed.
Info: Processing Table '[dbo].[UnversionedFields]'.: Running.
Info: Processing Table '[dbo].[UnversionedFields]'. 100.00 % done.
Info: Processing Import. 63.77 % done.
Info: Processing Table '[dbo].[UnversionedFields]'.: Completed.
Info: Processing Table '[dbo].[VersionedFields]'.: Running.
Info: Processing Table '[dbo].[VersionedFields]'. 100.00 % done.
Info: Processing Import. 100.00 % done.
Info: Processing Table '[dbo].[VersionedFields]'.: Completed.
Info: Enabling indexes.: Pending.
Info: Enabling indexes.: Running.
Info: Enabling indexes. (Start)
Info: Enabling index 'ndxBlobId'.: Pending.
Info: Enabling index 'ndxBlobId'.: Running.
Info: Enabling index 'ndxBlobId'. (Start)
Info: Enabling index 'ndxBlobId'.: Completed.
Info: Enabling index 'ndxBlobId'. (Complete)
Info: Enabling index 'Descendant'.: Pending.
Info: Enabling index 'Descendant'.: Running.
Info: Enabling index 'Descendant'. (Start)
Info: Enabling index 'Descendant'.: Completed.
Info: Enabling index 'Descendant'. (Complete)
Info: Enabling index 'Descendants_PK'.: Pending.
Info: Enabling index 'Descendants_PK'.: Running.
Info: Enabling index 'Descendants_PK'. (Start)
Info: Enabling index 'Descendants_PK'.: Completed.
Info: Enabling index 'Descendants_PK'. (Complete)
Info: Enabling index 'ndxID'.: Pending.
Info: Enabling index 'ndxID'.: Running.
Info: Enabling index 'ndxID'. (Start)
Info: Enabling index 'ndxID'.: Completed.
Info: Enabling index 'ndxID'. (Complete)
Info: Enabling index 'ndxName'.: Pending.
Info: Enabling index 'ndxName'.: Running.
Info: Enabling index 'ndxName'. (Start)
Info: Enabling index 'ndxName'.: Completed.
Info: Enabling index 'ndxName'. (Complete)
Info: Enabling index 'ndxParentID'.: Pending.
Info: Enabling index 'ndxParentID'.: Running.
Info: Enabling index 'ndxParentID'. (Start)
Info: Enabling index 'ndxParentID'.: Completed.
Info: Enabling index 'ndxParentID'. (Complete)
Info: Enabling index 'ndxTemplateID'.: Pending.
Info: Enabling index 'ndxTemplateID'.: Running.
Info: Enabling index 'ndxTemplateID'. (Start)
Info: Enabling index 'ndxTemplateID'.: Completed.
Info: Enabling index 'ndxTemplateID'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling index 'ndxUnique'.: Pending.
Info: Enabling index 'ndxUnique'.: Running.
Info: Enabling index 'ndxUnique'. (Start)
Info: Enabling index 'ndxUnique'.: Completed.
Info: Enabling index 'ndxUnique'. (Complete)
Info: Enabling indexes.: Completed.
Info: Enabling indexes. (Complete)
Info: Processing Import.: Completed.
Info: Importing data: Completed.
Info: Importing data
Info: Updating database: Completed.
Info: Updating database (Complete)
Info: Deploying package to database: Completed.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Web;user id=sa)
Info: Adding database (sitemanifest/dbFullSql[@path='data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Web;user id=sa']/sqlScript)
Info: Opening SQL Connection with connection string 'data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Web;user id=sa;pooling=False'. The 'transacted' setting for this connection is 'False'.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_ExperienceForms;user id=sa)
Info: Initializing deployment: Pending.
Info: Analyzing deployment plan: Pending.
Info: Updating database: Pending.
Info: Creating deployment plan: Pending.
Info: Verifying deployment plan: Pending.
Info: Deploying package to database: Pending.
Info: Creating deployment plan: Running.
Info: Initializing deployment: Running.
Info: Initializing deployment (Start)
Warning: A project which specifies SQL Server 2016 as the target platform may experience compatibility issues with SQL Server 2014.
Info: Initializing deployment: Completed.
Info: Initializing deployment (Complete)
Info: Creating deployment plan: Completed.
Info: Verifying deployment plan: Running.
Info: Analyzing deployment plan: Running.
Info: Analyzing deployment plan (Start)
Info: Analyzing deployment plan: Completed.
Info: Analyzing deployment plan (Complete)
Info: Verifying deployment plan: Completed.
Info: Deploying package to database: Running.
Info: Updating database: Running.
Info: Updating database (Start)
Info: Creating sc91_ExperienceForms...
Info: Creating [dbo].[FieldData]...
Info: Creating [dbo].[FormEntry]...
Info: Creating [dbo].[FK_FieldData_FormEntry]...
Info: The transacted portion of the database update succeeded.
Info: Update complete.
Info: Updating database: Completed.
Info: Updating database (Complete)
Info: Deploying package to database: Completed.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_ExperienceForms;user id=sa)
Info: Adding database (sitemanifest/dbFullSql[@path='data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_ExperienceForms;user id=sa']/sqlScript)
Info: Opening SQL Connection with connection string 'data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_ExperienceForms;user id=sa;pooling=False'. The 'transacted' setting for this connection is 'False'.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_EXM.Master;user id=sa)
Info: Initializing deployment: Pending.
Info: Analyzing deployment plan: Pending.
Info: Updating database: Pending.
Info: Creating deployment plan: Pending.
Info: Verifying deployment plan: Pending.
Info: Deploying package to database: Pending.
Info: Creating deployment plan: Running.
Info: Initializing deployment: Running.
Info: Initializing deployment (Start)
Warning: A project which specifies SQL Server 2016 as the target platform may experience compatibility issues with SQL Server 2014.
Info: Initializing deployment: Completed.
Info: Initializing deployment (Complete)
Info: Creating deployment plan: Completed.
Info: Verifying deployment plan: Running.
Info: Analyzing deployment plan: Running.
Info: Analyzing deployment plan (Start)
Info: Analyzing deployment plan: Completed.
Info: Analyzing deployment plan (Complete)
Info: Verifying deployment plan: Completed.
Info: Deploying package to database: Running.
Info: Updating database: Running.
Info: Updating database (Start)
Info: Creating sc91_EXM.Master...
Info: Creating [dbo].[SessionIDs]...
Info: Creating [dbo].[TasksDto]...
Info: Creating [dbo].[TasksIDs]...
Info: Creating [dbo].[Campaigns]...
Info: Creating [dbo].[Campaigns].[IX_Campaigns_CampaignID]...
Info: Creating [dbo].[Campaigns].[IX_Campaigns_MessageType]...
Info: Creating [dbo].[Campaigns].[IX_Campaigns_ScheduledDate]...
Info: Creating [dbo].[Campaigns].[IX_Campaigns_StatusDate]...
Info: Creating [dbo].[Campaigns].[IX_Campaigns_Value]...
Info: Creating [dbo].[Campaigns].[IX_Campaigns_ValuePerEmail]...
Info: Creating [dbo].[Campaigns].[IX_Campaigns_ValuePerVisit]...
Info: Creating [dbo].[DispatchQueue]...
Info: Creating [dbo].[DispatchQueue].[ix_messagequeue_updates_by_message_id]...
Info: Creating [dbo].[Sessions]...
Info: Creating [dbo].[Sessions].[IX_Sessions_IsActive_ExpirationTime]...
Info: Creating [dbo].[Suppressions]...
Info: Creating [dbo].[Suppressions].[IX_Suppressions]...
Info: Creating [dbo].[SyncLog]...
Info: Creating [dbo].[Tasks]...
Info: Creating [dbo].[Tasks].[IX_Tasks_TaskPoolID_StateID_Timestamp]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating unnamed constraint on [dbo].[Campaigns]...
Info: Creating [dbo].[DF_Suppressions_ModifiedTime]...
Info: The transacted portion of the database update succeeded.
Info: Update complete.
Info: Importing data: Pending.
Info: Importing data
Info: Importing data: Running.
Info: Processing Table '[dbo].[Sessions]'.: Pending.
Info: Processing Import.: Running.
Info: Disabling indexes.: Pending.
Info: Disabling indexes.: Running.
Info: Disabling indexes. (Start)
Info: Disabling index 'IX_Sessions_IsActive_ExpirationTime'.: Pending.
Info: Disabling index 'IX_Sessions_IsActive_ExpirationTime'.: Running.
Info: Disabling index 'IX_Sessions_IsActive_ExpirationTime'. (Start)
Info: Disabling index 'IX_Sessions_IsActive_ExpirationTime'.: Completed.
Info: Disabling index 'IX_Sessions_IsActive_ExpirationTime'. (Complete)
Info: Disabling indexes.: Completed.
Info: Disabling indexes. (Complete)
Info: Processing Import. 0.00 % done.
Info: Processing Table '[dbo].[Sessions]'.: Running.
Info: Processing Table '[dbo].[Sessions]'. 51.81 % done.
Info: Processing Import. 51.81 % done.
Info: Processing Table '[dbo].[Sessions]'. 100.00 % done.
Info: Processing Import. 100.00 % done.
Info: Processing Table '[dbo].[Sessions]'.: Completed.
Info: Enabling indexes.: Pending.
Info: Enabling indexes.: Running.
Info: Enabling indexes. (Start)
Info: Enabling index 'IX_Sessions_IsActive_ExpirationTime'.: Pending.
Info: Enabling index 'IX_Sessions_IsActive_ExpirationTime'.: Running.
Info: Enabling index 'IX_Sessions_IsActive_ExpirationTime'. (Start)
Info: Enabling index 'IX_Sessions_IsActive_ExpirationTime'.: Completed.
Info: Enabling index 'IX_Sessions_IsActive_ExpirationTime'. (Complete)
Info: Enabling indexes.: Completed.
Info: Enabling indexes. (Complete)
Info: Processing Import.: Completed.
Info: Importing data: Completed.
Info: Importing data
Info: Updating database: Completed.
Info: Updating database (Complete)
Info: Deploying package to database: Completed.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_EXM.Master;user id=sa)
Info: Adding database (sitemanifest/dbFullSql[@path='data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_EXM.Master;user id=sa']/sqlScript)
Info: Opening SQL Connection with connection string 'data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_EXM.Master;user id=sa;pooling=False'. The 'transacted' setting for this connection is 'False'.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Reporting;user id=sa)
Info: Initializing deployment: Pending.
Info: Analyzing deployment plan: Pending.
Info: Updating database: Pending.
Info: Creating deployment plan: Pending.
Info: Verifying deployment plan: Pending.
Info: Deploying package to database: Pending.
Info: Creating deployment plan: Running.
Info: Initializing deployment: Running.
Info: Initializing deployment (Start)
Warning: A project which specifies SQL Server 2016 as the target platform may experience compatibility issues with SQL Server 2014.
Info: Initializing deployment: Completed.
Info: Initializing deployment (Complete)
Info: Creating deployment plan: Completed.
Info: Verifying deployment plan: Running.
Info: Analyzing deployment plan: Running.
Info: Analyzing deployment plan (Start)
Info: Analyzing deployment plan: Completed.
Info: Analyzing deployment plan (Complete)
Info: Verifying deployment plan: Completed.
Info: Deploying package to database: Running.
Info: Updating database: Running.
Info: Updating database (Start)
Info: Creating sc91_Reporting...
Info: Creating [dbo].[Accounts_Type]...
Info: Creating [dbo].[ArrayOfGuids]...
Info: Creating [dbo].[ArrayOfRanges]...
Info: Creating [dbo].[Assets_Type]...
Info: Creating [dbo].[BusinessUnits_Type]...
Info: Creating [dbo].[CampaignMetrics_Type]...
Info: Creating [dbo].[ChannelMetrics_Type]...
Info: Creating [dbo].[Contacts_Type]...
Info: Creating [dbo].[Conversions_Type]...
Info: Creating [dbo].[ConversionsMetrics_Type]...
Info: Creating [dbo].[DeviceMetrics_Type]...
Info: Creating [dbo].[DeviceNames_Type]...
Info: Creating [dbo].[DimensionKeys_Type]...
Info: Creating [dbo].[DownloadEventMetrics_Type]...
Info: Creating [dbo].[Downloads_Type]...
Info: Creating [dbo].[FailureDetails_Type]...
Info: Creating [dbo].[Failures_Type]...
Info: Creating [dbo].[FollowHits_Type]...
Info: Creating [dbo].[GeoMetrics_Type]...
Info: Creating [dbo].[GoalMetrics_Type]...
Info: Creating [dbo].[InteractionTrailEntry]...
Info: Creating [dbo].[Items_Type]...
Info: Creating [dbo].[Keywords_Type]...
Info: Creating [dbo].[LanguageMetrics_Type]...
Info: Creating [dbo].[Languages_Type]...
Info: Creating [dbo].[OutcomeMetrics_Type]...
Info: Creating [dbo].[PageMetrics_Type]...
Info: Creating [dbo].[PageViews_Type]...
Info: Creating [dbo].[PageViewsMetrics_Type]...
Info: Creating [dbo].[PatternMetrics_Type]...
Info: Creating [dbo].[ReferringSiteMetrics_Type]...
Info: Creating [dbo].[ReferringSites_Type]...
Info: Creating [dbo].[SearchMetrics_Type]...
Info: Creating [dbo].[SegmentMetrics_Type]...
Info: Creating [dbo].[SegmentRecords_Type]...
Info: Creating [dbo].[SiteNames_Type]...
Info: Creating [dbo].[SiteSearches_Type]...
Info: Creating [dbo].[SlowPages_Type]...
Info: Creating [dbo].[Traffic_Type]...
Info: Creating [dbo].[TreeData]...
Info: Creating [dbo].[TreeKeys]...
Info: Creating [dbo].[ValueBySource_Type]...
Info: Creating [dbo].[Visits_Type]...
Info: Creating [dbo].[VisitsByBusinessContactLocation_Type]...
Info: Creating [dbo].[Accounts]...
Info: Creating [dbo].[Assets]...
Info: Creating [dbo].[Assets].[IX_Assets_Url]...
Info: Creating [dbo].[BusinessUnits]...
Info: Creating [dbo].[Contacts]...
Info: Creating [dbo].[DeviceNames]...
Info: Creating [dbo].[DimensionKeys]...
Info: Creating [dbo].[Fact_AutomationStates]...
Info: Creating [dbo].[Fact_CampaignMetrics]...
Info: Creating [dbo].[Fact_ChannelMetrics]...
Info: Creating [dbo].[Fact_Conversions]...
Info: Creating [dbo].[Fact_Conversions].[IX_Fact_Conversion_Campaign]...
Info: Creating [dbo].[Fact_Conversions].[IX_Fact_Conversion_DeviceName]...
Info: Creating [dbo].[Fact_Conversions].[IX_Fact_Conversion_Goal]...
Info: Creating [dbo].[Fact_Conversions].[IX_Fact_Conversion_Language]...
Info: Creating [dbo].[Fact_Conversions].[IX_Fact_Conversion_SiteName]...
Info: Creating [dbo].[Fact_Conversions].[IX_Fact_Conversion_TrafficType]...
Info: Creating [dbo].[Fact_ConversionsMetrics]...
Info: Creating [dbo].[Fact_DeviceMetrics]...
Info: Creating [dbo].[Fact_DownloadEventMetrics]...
Info: Creating [dbo].[Fact_Downloads]...
Info: Creating [dbo].[Fact_Downloads].[IX_Fact_Downloads_Campaign]...
Info: Creating [dbo].[Fact_Downloads].[IX_Fact_Downloads_DeviceName]...
Info: Creating [dbo].[Fact_Downloads].[IX_Fact_Downloads_Language]...
Info: Creating [dbo].[Fact_Downloads].[IX_Fact_Downloads_SiteName]...
Info: Creating [dbo].[Fact_Downloads].[IX_Fact_Downloads_TrafficType]...
Info: Creating [dbo].[Fact_Failures]...
Info: Creating [dbo].[Fact_Failures].[IX_Fact_Failures_FailureDetails]...
Info: Creating [dbo].[Fact_Failures].[IX_Fact_Failures_Keywords]...
Info: Creating [dbo].[Fact_Failures].[IX_Fact_Failures_PageEventDefinition]...
Info: Creating [dbo].[Fact_Failures].[IX_Fact_Failures_ReferringSite]...
Info: Creating [dbo].[Fact_FollowHits]...
Info: Creating [dbo].[Fact_FollowHits].[IX_Fact_FollowHits_Item]...
Info: Creating [dbo].[Fact_FollowHits].[IX_Fact_FollowHits_Keywords]...
Info: Creating [dbo].[Fact_FormFieldMetrics]...
Info: Creating [dbo].[Fact_FormMetrics]...
Info: Creating [dbo].[Fact_GeoMetrics]...
Info: Creating [dbo].[Fact_GoalMetrics]...
Info: Creating [dbo].[Fact_LanguageMetrics]...
Info: Creating [dbo].[Fact_MvTesting]...
Info: Creating [dbo].[Fact_MvTesting].[IX_Fact_MvTesting_TestSetId]...
Info: Creating [dbo].[Fact_MvTestingDetails]...
Info: Creating [dbo].[Fact_MvTestingDetails].[IX_Fact_MvTestingDetails_TestSetId]...
Info: Creating [dbo].[Fact_OutcomeMetrics]...
Info: Creating [dbo].[Fact_PageMetrics]...
Info: Creating [dbo].[Fact_PageViews]...
Info: Creating [dbo].[Fact_PageViews].[IX_Fact_PageViews_Contact]...
Info: Creating [dbo].[Fact_PageViews].[IX_Fact_PageViews_Item]...
Info: Creating [dbo].[Fact_PageViewsByLanguage]...
Info: Creating [dbo].[Fact_PageViewsMetrics]...
Info: Creating [dbo].[Fact_PatternMetrics]...
Info: Creating [dbo].[Fact_Personalization]...
Info: Creating [dbo].[Fact_Personalization].[IX_Fact_Personalization_TestSetId]...
Info: Creating [dbo].[Fact_ReferringSiteMetrics]...
Info: Creating [dbo].[Fact_RulesExposure]...
Info: Creating [dbo].[Fact_Searches]...
Info: Creating [dbo].[Fact_SearchMetrics]...
Info: Creating [dbo].[Fact_SegmentMetrics]...
Info: Creating [dbo].[Fact_SegmentMetrics].[IX_Fact_SegmentMetrics_All_Columns]...
Info: Creating [dbo].[Fact_SegmentMetricsReduced]...
Info: Creating [dbo].[Fact_SegmentMetricsReduced].[IX_Fact_SegmentMetricsReduced_All_Columns]...
Info: Creating [dbo].[Fact_SiteSearches]...
Info: Creating [dbo].[Fact_SiteSearches].[IX_Fact_SiteSearches_AccountId]...
Info: Creating [dbo].[Fact_SiteSearches].[IX_Fact_SiteSearches_Campaign]...
Info: Creating [dbo].[Fact_SiteSearches].[IX_Fact_SiteSearches_DeviceName]...
Info: Creating [dbo].[Fact_SiteSearches].[IX_Fact_SiteSearches_Item]...
Info: Creating [dbo].[Fact_SiteSearches].[IX_Fact_SiteSearches_Keywords]...
Info: Creating [dbo].[Fact_SiteSearches].[IX_Fact_SiteSearches_Language]...
Info: Creating [dbo].[Fact_SiteSearches].[IX_Fact_SiteSearches_SiteName]...
Info: Creating [dbo].[Fact_SiteSearches].[IX_Fact_SiteSearches_TrafficType]...
Info: Creating [dbo].[Fact_SlowPages]...
Info: Creating [dbo].[Fact_SlowPages].[IX_Fact_SlowPages_Account]...
Info: Creating [dbo].[Fact_SlowPages].[IX_Fact_SlowPages_Contact]...
Info: Creating [dbo].[Fact_SlowPages].[IX_Fact_SlowPages_Duration]...
Info: Creating [dbo].[Fact_SlowPages].[IX_Fact_SlowPages_Item]...
Info: Creating [dbo].[Fact_SlowPages].[IX_Fact_SlowPages_Visit]...
Info: Creating [dbo].[Fact_TestConversions]...
Info: Creating [dbo].[Fact_TestConversions].[IX_Fact_TestConversions_GoalId]...
Info: Creating [dbo].[Fact_TestOutcomes]...
Info: Creating [dbo].[Fact_TestOutcomes].[IX_Fact_TestOutcomes_TestSetId]...
Info: Creating [dbo].[Fact_TestPageClicks]...
Info: Creating [dbo].[Fact_TestStatistics]...
Info: Creating [dbo].[Fact_Traffic]...
Info: Creating [dbo].[Fact_Traffic].[IX_ByDate]...
Info: Creating [dbo].[Fact_Traffic].[IX_ByDateAndTrafficType]...
Info: Creating [dbo].[Fact_Traffic].[IX_Fact_Traffic_Campaign]...
Info: Creating [dbo].[Fact_Traffic].[IX_Fact_Traffic_DeviceName]...
Info: Creating [dbo].[Fact_Traffic].[IX_Fact_Traffic_Item]...
Info: Creating [dbo].[Fact_Traffic].[IX_Fact_Traffic_Keywords]...
Info: Creating [dbo].[Fact_Traffic].[IX_Fact_Traffic_Language]...
Info: Creating [dbo].[Fact_Traffic].[IX_Fact_Traffic_ReferringSite]...
Info: Creating [dbo].[Fact_Traffic].[IX_Fact_Traffic_SiteName]...
Info: Creating [dbo].[Fact_Traffic].[IX_Fact_Traffic_TrafficType]...
Info: Creating [dbo].[Fact_ValueBySource]...
Info: Creating [dbo].[Fact_ValueBySource].[IX_Fact_ValueBySource_DeviceName]...
Info: Creating [dbo].[Fact_ValueBySource].[IX_Fact_ValueBySource_Language]...
Info: Creating [dbo].[Fact_ValueBySource].[IX_Fact_ValueBySource_SiteName]...
Info: Creating [dbo].[Fact_ValueBySource].[IX_Fact_ValueBySource_TrafficType]...
Info: Creating [dbo].[Fact_Visits]...
Info: Creating [dbo].[Fact_Visits].[IX_Fact_Visits_Contact]...
Info: Creating [dbo].[Fact_Visits].[IX_Fact_Visits_FirstVisit]...
Info: Creating [dbo].[Fact_Visits].[IX_Fact_Visits_Item]...
Info: Creating [dbo].[Fact_Visits].[IX_Fact_Visits_Language]...
Info: Creating [dbo].[Fact_VisitsByBusinessContactLocation]...
Info: Creating [dbo].[Fact_VisitsByBusinessContactLocation].[IX_Fact_VisitsByBusinessContactLocation_Account]...
Info: Creating [dbo].[Fact_VisitsByBusinessContactLocation].[IX_Fact_VisitsByBusinessContactLocation_Contact]...
Info: Creating [dbo].[Fact_VisitsByBusinessContactLocation].[IX_Fact_VisitsByBusinessContactLocation_DeviceName]...
Info: Creating [dbo].[Fact_VisitsByBusinessContactLocation].[IX_Fact_VisitsByBusinessContactLocation_Language]...
Info: Creating [dbo].[Fact_VisitsByBusinessContactLocation].[IX_Fact_VisitsByBusinessContactLocation_SiteName]...
Info: Creating [dbo].[Fact_VisitsByBusinessContactLocation].[IX_Fact_VisitsByBusinessContactLocation_TrafficType]...
Info: Creating [dbo].[FailureDetails]...
Info: Creating [dbo].[FormFieldNames]...
Info: Creating [dbo].[Items]...
Info: Creating [dbo].[Keywords]...
Info: Creating [dbo].[Languages]...
Info: Creating [dbo].[Properties]...
Info: Creating [dbo].[Properties].[IX_Properties_Column]...
Info: Creating [dbo].[ReferringSites]...
Info: Creating [dbo].[SegmentRecords]...
Info: Creating [dbo].[SegmentRecords].[IX_SegmentRecords_All_Columns]...
Info: Creating [dbo].[SegmentRecords].[IX_SegmentRecords_All_Columns2]...
Info: Creating [dbo].[SegmentRecordsReduced]...
Info: Creating [dbo].[SegmentRecordsReduced].[IX_SegmentRecordsReduced_All_Columns]...
Info: Creating [dbo].[SegmentRecordsReduced].[IX_SegmentRecordsReduced_All_Columns2]...
Info: Creating [dbo].[Segments]...
Info: Creating [dbo].[SiteNames]...
Info: Creating [dbo].[Taxonomy_TaxonEntity]...
Info: Creating [dbo].[Taxonomy_TaxonEntityFieldDefinition]...
Info: Creating [dbo].[Taxonomy_TaxonEntityFieldValue]...
Info: Creating [dbo].[Testing_ClusterMembers]...
Info: Creating [dbo].[Testing_Clusters]...
Info: Creating [dbo].[Trail_AutomationStates]...
Info: Creating [dbo].[Trail_AutomationStates].[IX_Trail_AutomationStates_Processed]...
Info: Creating [dbo].[Trail_Interactions]...
Info: Creating [dbo].[Trail_Interactions].[IX_Trail_Interactions_Processed]...
Info: Creating [dbo].[Trail_PathAnalyzer]...
Info: Creating [dbo].[Trail_PathAnalyzer].[IX_Trail_PathAnalyzer_Processed]...
Info: Creating [dbo].[TreeDefinitions]...
Info: Creating [dbo].[Trees]...
Info: Creating [dbo].[Trees].[IX_Trees]...
Info: Creating [dbo].[Trees].[IX_Trees_Visits]...
Info: Creating [dbo].[DF_Fact_MvTesting_Bounces]...
Info: Creating [dbo].[DF_Fact_MvTesting_PageCount]...
Info: Creating [dbo].[DF_Fact_MvTesting_TotalPageDuration]...
Info: Creating [dbo].[DF_Fact_MvTesting_TotalWebsiteDuration]...
Info: Creating [dbo].[DF_Fact_MvTesting_Visitors]...
Info: Creating unnamed constraint on [dbo].[Fact_MvTestingDetails]...
Info: Creating unnamed constraint on [dbo].[Taxonomy_TaxonEntity]...
Info: Creating unnamed constraint on [dbo].[Trail_PathAnalyzer]...
Info: Creating [dbo].[FK_Fact_Conversions_Accounts]...
Info: Creating [dbo].[FK_Fact_Conversions_DeviceNames]...
Info: Creating [dbo].[FK_Fact_Conversions_Languages]...
Info: Creating [dbo].[FK_Fact_Conversions_SiteNames]...
Info: Creating [dbo].[FK_Fact_Downloads_Accounts]...
Info: Creating [dbo].[FK_Fact_Downloads_Assets]...
Info: Creating [dbo].[FK_Fact_Downloads_DeviceNames]...
Info: Creating [dbo].[FK_Fact_Downloads_Languages]...
Info: Creating [dbo].[FK_Fact_Downloads_SiteNames]...
Info: Creating [dbo].[FK_Fact_Failures_Accounts]...
Info: Creating [dbo].[FK_Fact_Failures_FailureDetails]...
Info: Creating [dbo].[FK_Fact_Failures_Keywords]...
Info: Creating [dbo].[FK_Fact_Failures_ReferringSites]...
Info: Creating [dbo].[FK_Fact_FollowHits_Items]...
Info: Creating [dbo].[FK_Fact_FollowHits_Keywords]...
Info: Creating [dbo].[FK_Fact_PageViews_Items]...
Info: Creating [dbo].[FK_Fact_PageViewsByLanguage_DeviceNames]...
Info: Creating [dbo].[FK_Fact_PageViewsByLanguage_Items]...
Info: Creating [dbo].[FK_Fact_PageViewsByLanguage_Languages]...
Info: Creating [dbo].[FK_Fact_PageViewsByLanguage_SiteNames]...
Info: Creating [dbo].[FK_Fact_Searches_Accounts]...
Info: Creating [dbo].[FK_Fact_Searches_DeviceNames]...
Info: Creating [dbo].[FK_Fact_Searches_Items]...
Info: Creating [dbo].[FK_Fact_Searches_Keywords]...
Info: Creating [dbo].[FK_Fact_Searches_Languages]...
Info: Creating [dbo].[FK_Fact_Searches_PageEventItems]...
Info: Creating [dbo].[FK_Fact_Searches_SiteNames]...
Info: Creating [dbo].[FK_Fact_SiteSearches_Accounts]...
Info: Creating [dbo].[FK_Fact_SiteSearches_DeviceNames]...
Info: Creating [dbo].[FK_Fact_SiteSearches_Items]...
Info: Creating [dbo].[FK_Fact_SiteSearches_Keywords]...
Info: Creating [dbo].[FK_Fact_SiteSearches_Languages]...
Info: Creating [dbo].[FK_Fact_SiteSearches_SiteNames]...
Info: Creating [dbo].[FK_Fact_SlowPages_Accounts]...
Info: Creating [dbo].[FK_Fact_SlowPages_ContactId]...
Info: Creating [dbo].[FK_Fact_SlowPages_Items]...
Info: Creating [dbo].[FK_Fact_Traffic_DeviceNames]...
Info: Creating [dbo].[FK_Fact_Traffic_Items]...
Info: Creating [dbo].[FK_Fact_Traffic_Keywords]...
Info: Creating [dbo].[FK_Fact_Traffic_Languages]...
Info: Creating [dbo].[FK_Fact_Traffic_ReferringSites]...
Info: Creating [dbo].[FK_Fact_Traffic_SiteNames]...
Info: Creating [dbo].[FK_Fact_ValueBySource_DeviceNames]...
Info: Creating [dbo].[FK_Fact_ValueBySource_Languages]...
Info: Creating [dbo].[FK_Fact_ValueBySource_SiteNames]...
Info: Creating [dbo].[FK_Fact_Visits_Contacts]...
Info: Creating [dbo].[FK_Fact_Visits_Items]...
Info: Creating [dbo].[FK_Fact_Visits_Languages]...
Info: Creating [dbo].[FK_Fact_VisitsByBusinessContactLocation_DeviceNames]...
Info: Creating [dbo].[FK_Fact_VisitsByBusinessContactLocation_Locations]...
Info: Creating [dbo].[FK_Fact_VisitsByBusinessContactLocation_SiteNames]...
Info: Creating [dbo].[FK_Taxonomy_TaxonEntityFieldValue_Taxonomy_TaxonEntity]...
Info: Creating [dbo].[FK_Taxonomy_TaxonEntityFieldValue_Taxonomy_TaxonEntityFieldDefinition]...
Info: Creating [dbo].[Dates]...
Info: Creating [dbo].[GetTagValue]...
Info: Creating [dbo].[GetTaxonEntityChildIds]...
Info: Creating [dbo].[Conversions]...
Info: Creating [dbo].[Downloads]...
Info: Creating [dbo].[FollowHits]...
Info: Creating [dbo].[NotFoundUrls]...
Info: Creating [dbo].[ReportDataView]...
Info: Creating [dbo].[SiteSearches]...
Info: Creating [dbo].[SlowPages]...
Info: Creating [dbo].[TopLeads]...
Info: Creating [dbo].[Traffic]...
Info: Creating [dbo].[TrafficOverview]...
Info: Creating [dbo].[ValueBySource]...
Info: Creating [dbo].[CampaignsOverview]...
Info: Creating [dbo].[__DeleteAllReportingData]...
Info: Creating [dbo].[Add_AutomationStates]...
Info: Creating [dbo].[Add_CampaignMetrics_Tvp]...
Info: Creating [dbo].[Add_ChannelMetrics_Tvp]...
Info: Creating [dbo].[Add_Conversions]...
Info: Creating [dbo].[Add_Conversions_Tvp]...
Info: Creating [dbo].[Add_ConversionsMetrics_Tvp]...
Info: Creating [dbo].[Add_DeviceMetrics_Tvp]...
Info: Creating [dbo].[Add_DownloadEventMetrics_Tvp]...
Info: Creating [dbo].[Add_Downloads]...
Info: Creating [dbo].[Add_Downloads_Tvp]...
Info: Creating [dbo].[Add_Failures]...
Info: Creating [dbo].[Add_Failures_Tvp]...
Info: Creating [dbo].[Add_FollowHits]...
Info: Creating [dbo].[Add_FollowHits_Tvp]...
Info: Creating [dbo].[Add_GeoMetrics_Tvp]...
Info: Creating [dbo].[Add_GoalMetrics_Tvp]...
Info: Creating [dbo].[Add_LanguageMetrics_Tvp]...
Info: Creating [dbo].[Add_MvTesting]...
Info: Creating [dbo].[Add_MvTestingDetails]...
Info: Creating [dbo].[Add_OutcomeMetrics_Tvp]...
Info: Creating [dbo].[Add_PageMetrics_Tvp]...
Info: Creating [dbo].[Add_PageViews]...
Info: Creating [dbo].[Add_PageViews_Tvp]...
Info: Creating [dbo].[Add_PageViewsByLanguage]...
Info: Creating [dbo].[Add_PageViewsMetrics_Tvp]...
Info: Creating [dbo].[Add_PatternMetrics_Tvp]...
Info: Creating [dbo].[Add_Personalization]...
Info: Creating [dbo].[Add_ReferringSiteMetrics_Tvp]...
Info: Creating [dbo].[Add_RulesExposure]...
Info: Creating [dbo].[Add_SearchMetrics_Tvp]...
Info: Creating [dbo].[Add_SegmentMetrics]...
Info: Creating [dbo].[Add_SegmentMetrics_Tvp]...
Info: Creating [dbo].[Add_SiteSearches]...
Info: Creating [dbo].[Add_SiteSearches_Tvp]...
Info: Creating [dbo].[Add_SlowPages]...
Info: Creating [dbo].[Add_SlowPages_Tvp]...
Info: Creating [dbo].[Add_TestConversions]...
Info: Creating [dbo].[Add_TestingCluster]...
Info: Creating [dbo].[Add_TestingClusterMembers]...
Info: Creating [dbo].[Add_TestOutcomes]...
Info: Creating [dbo].[Add_TestPageClicks]...
Info: Creating [dbo].[Add_TestStatistics]...
Info: Creating [dbo].[Add_Traffic]...
Info: Creating [dbo].[Add_Traffic_Tvp]...
Info: Creating [dbo].[Add_ValueBySource]...
Info: Creating [dbo].[Add_ValueBySource_Tvp]...
Info: Creating [dbo].[Add_Visits]...
Info: Creating [dbo].[Add_Visits_Tvp]...
Info: Creating [dbo].[Add_VisitsByBusinessContactLocation]...
Info: Creating [dbo].[Add_VisitsByBusinessContactLocation_Tvp]...
Info: Creating [dbo].[Ensure_Accounts_Tvp]...
Info: Creating [dbo].[Ensure_Asset]...
Info: Creating [dbo].[Ensure_Assets_Tvp]...
Info: Creating [dbo].[Ensure_BusinessUnit]...
Info: Creating [dbo].[Ensure_BusinessUnits_Tvp]...
Info: Creating [dbo].[Ensure_Contacts_Tvp]...
Info: Creating [dbo].[Ensure_DeviceName]...
Info: Creating [dbo].[Ensure_DeviceNames_Tvp]...
Info: Creating [dbo].[Ensure_DimensionKeys]...
Info: Creating [dbo].[Ensure_DimensionKeys_Tvp]...
Info: Creating [dbo].[Ensure_FailureDetails]...
Info: Creating [dbo].[Ensure_FailureDetails_Tvp]...
Info: Creating [dbo].[Ensure_Item]...
Info: Creating [dbo].[Ensure_Items_Tvp]...
Info: Creating [dbo].[Ensure_Keywords]...
Info: Creating [dbo].[Ensure_Keywords_Tvp]...
Info: Creating [dbo].[Ensure_Language]...
Info: Creating [dbo].[Ensure_Languages_Tvp]...
Info: Creating [dbo].[Ensure_ReferringSite]...
Info: Creating [dbo].[Ensure_ReferringSites_Tvp]...
Info: Creating [dbo].[Ensure_SegmentRecords]...
Info: Creating [dbo].[Ensure_SegmentRecords_Tvp]...
Info: Creating [dbo].[Ensure_SiteName]...
Info: Creating [dbo].[Ensure_SiteNames_Tvp]...
Info: Creating [dbo].[Get_AllTaxonEntities]...
Info: Creating [dbo].[Get_MissingDailyTrees]...
Info: Creating [dbo].[Get_TaxonEntity]...
Info: Creating [dbo].[Get_TaxonEntityChildren]...
Info: Creating [dbo].[Get_TaxonEntityList]...
Info: Creating [dbo].[ReduceMetricsTable]...
Info: Creating [dbo].[ReduceSegmentMetrics]...
Info: Creating [dbo].[Register_AutomationStates]...
Info: Creating [dbo].[Register_Interaction]...
Info: Creating [dbo].[Upsert_Account]...
Info: Creating [dbo].[Upsert_Contact]...
Info: Creating [dbo].[Upsert_TaxonEntities]...
Info: Creating [dbo].[Upsert_TaxonEntity]...
Info: Creating [dbo].[Upsert_TaxonEntityField]...
Info: Creating [dbo].[Upsert_TaxonEntityFields]...
Info: The transacted portion of the database update succeeded.
Info: Update complete.
Info: Updating database: Completed.
Info: Updating database (Complete)
Info: Deploying package to database: Completed.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Reporting;user id=sa)
Info: Adding database (sitemanifest/dbFullSql[@path='data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Reporting;user id=sa']/sqlScript)
Info: Opening SQL Connection with connection string 'data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Reporting;user id=sa;pooling=False'. The 'transacted' setting for this connection is 'False'.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Processing.Tasks;user id=sa)
Info: Initializing deployment: Pending.
Info: Analyzing deployment plan: Pending.
Info: Updating database: Pending.
Info: Creating deployment plan: Pending.
Info: Verifying deployment plan: Pending.
Info: Deploying package to database: Pending.
Info: Creating deployment plan: Running.
Info: Initializing deployment: Running.
Info: Initializing deployment (Start)
Warning: A project which specifies SQL Server 2016 as the target platform may experience compatibility issues with SQL Server 2014.
Info: Initializing deployment: Completed.
Info: Initializing deployment (Complete)
Info: Creating deployment plan: Completed.
Info: Verifying deployment plan: Running.
Info: Analyzing deployment plan: Running.
Info: Analyzing deployment plan (Start)
Info: Analyzing deployment plan: Completed.
Info: Analyzing deployment plan (Complete)
Info: Verifying deployment plan: Completed.
Info: Deploying package to database: Running.
Info: Updating database: Running.
Info: Updating database (Start)
Info: Creating sc91_Processing.Tasks...
Info: Nonqualified transactions are being rolled back. Estimated rollback completion: 0%.
Info: Nonqualified transactions are being rolled back. Estimated rollback completion: 100%.
Info: Creating [xdb_processing_tasks]...
Info: Creating [xdb_processing_tasks].[HistoryCursors]...
Info: Creating [xdb_processing_tasks].[HistoryCursors].[IX_HistoryCursors_Completed]...
Info: Creating [xdb_processing_tasks].[HistoryTasks]...
Info: Creating [xdb_processing_tasks].[HistoryTaskStates]...
Info: Creating [xdb_processing_tasks].[ProcessingCursors]...
Info: Creating [xdb_processing_tasks].[ProcessingCursors].[IX_ProcessingCursors_Task]...
Info: Creating [xdb_processing_tasks].[ProcessingCursors].[IX_ProcessingCursors_Completed]...
Info: Creating [xdb_processing_tasks].[ProcessingTasks]...
Info: Creating [xdb_processing_tasks].[ProcessingTasks].[IX_ProcessingTasks_StatusAndType]...
Info: Creating [xdb_processing_tasks].[RebuildTargetStates]...
Info: Creating [xdb_processing_tasks].[FK_HistoryCursors_Task_HistoryTasks_Id]...
Info: Creating [xdb_processing_tasks].[FK_ProcessingCursors_Task_ProcessingTasks_Id]...
Info: Creating [xdb_processing_tasks].[FK_RebuildTargetStates_To_HistoryTaskStates_Id]...
Info: Creating [xdb_processing_tasks].[GrantLeastPrivilege]...
Info: Creating [xdb_processing_tasks].[History_AddCursor]...
Info: Creating [xdb_processing_tasks].[History_AddTargetState]...
Info: Creating [xdb_processing_tasks].[History_AddTask]...
Info: Creating [xdb_processing_tasks].[History_AddTaskState]...
Info: Creating [xdb_processing_tasks].[History_AreAllCursorsCompleted]...
Info: Creating [xdb_processing_tasks].[History_DeleteCursorsByTaskId]...
Info: Creating [xdb_processing_tasks].[History_DeleteTargetStatesByTaskStateId]...
Info: Creating [xdb_processing_tasks].[History_DeleteTaskStateById]...
Info: Creating [xdb_processing_tasks].[History_GetCursorsCountByTaskId]...
Info: Creating [xdb_processing_tasks].[History_GetTaskById]...
Info: Creating [xdb_processing_tasks].[History_GetTaskStateById]...
Info: Creating [xdb_processing_tasks].[History_GetTotalNumberOfConsumedItemsByTaskId]...
Info: Creating [xdb_processing_tasks].[History_MarkCursorCompleted]...
Info: Creating [xdb_processing_tasks].[History_TryAcquireCursor]...
Info: Creating [xdb_processing_tasks].[History_TryDeleteTaskById]...
Info: Creating [xdb_processing_tasks].[History_TryRegisterCursorSplitRequest]...
Info: Creating [xdb_processing_tasks].[History_TryUpdateTaskById]...
Info: Creating [xdb_processing_tasks].[History_UpdateCursor]...
Info: Creating [xdb_processing_tasks].[History_UpdateCursorProgress]...
Info: Creating [xdb_processing_tasks].[History_UpdateTaskState]...
Info: Creating [xdb_processing_tasks].[Processing_AddCursor]...
Info: Creating [xdb_processing_tasks].[Processing_AddTask]...
Info: Creating [xdb_processing_tasks].[Processing_AreAllCursorsCompleted]...
Info: Creating [xdb_processing_tasks].[Processing_DeleteCursorsByTaskId]...
Info: Creating [xdb_processing_tasks].[Processing_GetCursorsCountByTaskId]...
Info: Creating [xdb_processing_tasks].[Processing_GetTaskById]...
Info: Creating [xdb_processing_tasks].[Processing_GetTotalNumberOfConsumedItemsByTaskId]...
Info: Creating [xdb_processing_tasks].[Processing_IncrementTaskProgressById]...
Info: Creating [xdb_processing_tasks].[Processing_MarkCursorCompleted]...
Info: Creating [xdb_processing_tasks].[Processing_PickDeferredTask]...
Info: Creating [xdb_processing_tasks].[Processing_PickDistributedTaskInProgress]...
Info: Creating [xdb_processing_tasks].[Processing_PickDistributedTaskPending]...
Info: Creating [xdb_processing_tasks].[Processing_RemoveExpiredTasks]...
Info: Creating [xdb_processing_tasks].[Processing_RemoveTaskById]...
Info: Creating [xdb_processing_tasks].[Processing_TryAcquireCursor]...
Info: Creating [xdb_processing_tasks].[Processing_TryRegisterCursorSplitRequest]...
Info: Creating [xdb_processing_tasks].[Processing_UpdateCursor]...
Info: Creating [xdb_processing_tasks].[Processing_UpdateCursorProgress]...
Info: Creating [xdb_processing_tasks].[Processing_UpdateTaskStatusById]...
Info: The transacted portion of the database update succeeded.
Info: Update complete.
Info: Updating database: Completed.
Info: Updating database (Complete)
Info: Deploying package to database: Completed.
Info: Adding database (data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Processing.Tasks;user id=sa)
Info: Adding database (sitemanifest/dbFullSql[@path='data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Processing.Tasks;user id=sa']/sqlScript)
Info: Opening SQL Connection with connection string 'data source=LT143000026304\SQLEXPRESS;initial catalog=sc91_Processing.Tasks;user id=sa;pooling=False'. The 'transacted' setting for this connection is 'False'.
Info: Adding directory (sc91.local\App_Browsers).
Info: Adding file (sc91.local\App_Browsers\Form.browser).
Info: Adding file (sc91.local\App_Browsers\XamlPage.browser).
Info: Adding directory (sc91.local\App_Config).
Info: Adding file (sc91.local\App_Config\ConnectionStrings.config).
Info: Adding file (sc91.local\App_Config\ConnectionStringsOracle.config).
Info: Adding directory (sc91.local\App_Config\Environment).
Info: Adding file (sc91.local\App_Config\Environment\Sitecore.PipelineProfiling.config).
Info: Adding file (sc91.local\App_Config\FieldTypes.config).
Info: Adding file (sc91.local\App_Config\Icons.config).
Info: Adding directory (sc91.local\App_Config\Include).
Info: Adding directory (sc91.local\App_Config\Include\Examples).
Info: Adding file (sc91.local\App_Config\Include\Examples\CacheContainers.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\DataFolder.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\EventHandler.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\ForwardingSecurityEvents.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\ja-JP.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\LiveMode.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\ScalabilitySettings.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\serializationevents.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.Buckets.WarmupQueries.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.BulkDataProvider.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.ContentSearch.Lucene.Indexes.Sharded.Core.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.ContentSearch.Lucene.Indexes.Sharded.Master.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.ContentSearch.Lucene.Indexes.Sharded.Web.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.ContentSearch.SolrCloud.SwitchOnRebuild.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.ContentSearch.VerboseLogging.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.ExperienceAnalytics.ReAggregation.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.ExperienceAnalytics.ReAggregation.Scheduling.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.HistoryEngine.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.Owin.Authentication.Enabler.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.Publishing.DedicatedInstance.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.Publishing.EventQueueProvider.Async.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.Publishing.Optimizations.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.Publishing.Parallel.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.Publishing.Recovery.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\Sitecore.Xdb.ReferenceData.ClientCache.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\SitecoreSettings.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\SiteDefinition.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\SwitchingManagers.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\WebDeploy.config.example).
Info: Adding file (sc91.local\App_Config\Include\Examples\XslExtension.config.example).
Info: Adding file (sc91.local\App_Config\LanguageDefinitions.config).
Info: Adding file (sc91.local\App_Config\Layers.config).
Info: Adding file (sc91.local\App_Config\MimeTypes.config).
Info: Adding file (sc91.local\App_Config\Portraits.config).
Info: Adding directory (sc91.local\App_Config\Prefetch).
Info: Adding file (sc91.local\App_Config\Prefetch\Common.config).
Info: Adding file (sc91.local\App_Config\Prefetch\Core.config).
Info: Adding file (sc91.local\App_Config\Prefetch\Master.config).
Info: Adding file (sc91.local\App_Config\Prefetch\Webdb.config).
Info: Adding file (sc91.local\App_Config\Prototypes.config).
Info: Adding directory (sc91.local\App_Config\Security).
Info: Adding file (sc91.local\App_Config\Security\Domains.config).
Info: Adding file (sc91.local\App_Config\Security\GlobalRoles.config).
Info: Adding directory (sc91.local\App_Config\Sitecore).
Info: Adding directory (sc91.local\App_Config\Sitecore\AntiCSRFModule).
Info: Adding file (sc91.local\App_Config\Sitecore\AntiCSRFModule\Sitecore.AntiCsrf.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Buckets).
Info: Adding file (sc91.local\App_Config\Sitecore\Buckets\Sitecore.Buckets.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\CampaignCreator).
Info: Adding file (sc91.local\App_Config\Sitecore\CampaignCreator\Sitecore.Marketing.Campaigns.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CampaignCreator\Sitecore.Marketing.Campaigns.Services.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\CMS.Core).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.Commands.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.Diagnostics.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.Interning.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.JSNLog.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.LanguageFallback.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.Media.RequestProtection.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.PipelineBased.ItemProvider.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.Processing.config).
Info: Adding file (sc91.local\App_Config\Sitecore\CMS.Core\Sitecore.WebDAV.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Contact.Enrichment.Services.Client).
Info: Adding file (sc91.local\App_Config\Sitecore\Contact.Enrichment.Services.Client\Sitecore.Contact.Enrichment.Services.Client.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ContentSearch).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.DefaultConfigurations.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.Lucene.DefaultIndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.Lucene.Index.Core.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.Lucene.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.Lucene.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.Solr.DefaultIndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.Solr.Index.Core.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.Solr.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch\Sitecore.ContentSearch.Solr.Index.Web.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ContentSearch.Azure).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch.Azure\Sitecore.ContentSearch.Azure.DefaultIndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch.Azure\Sitecore.ContentSearch.Azure.Index.Core.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch.Azure\Sitecore.ContentSearch.Azure.Index.Core.ExcludeFields.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch.Azure\Sitecore.ContentSearch.Azure.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch.Azure\Sitecore.ContentSearch.Azure.Index.Master.ExcludeFields.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch.Azure\Sitecore.ContentSearch.Azure.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentSearch.Azure\Sitecore.ContentSearch.Azure.Index.Web.ExcludeFields.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ContentTesting).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.ApplicationDependencies.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.Azure.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.Client.RulePerformance.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.ExperienceEditor.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.Intelligence.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.Lucene.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.Mvc.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.PreemptiveScreenshot.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.Processing.Aggregation.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.Solr.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.Speak.Requests.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ContentTesting\Sitecore.ContentTesting.XConnect.Client.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\DetectionServices.Location).
Info: Adding file (sc91.local\App_Config\Sitecore\DetectionServices.Location\Sitecore.CES.GeoIp.config).
Info: Adding file (sc91.local\App_Config\Sitecore\DetectionServices.Location\Sitecore.CES.GeoIp.LegacyLocation.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\DeviceDetection.Client).
Info: Adding file (sc91.local\App_Config\Sitecore\DeviceDetection.Client\Sitecore.CES.DeviceDetection.CheckInitialization.config).
Info: Adding file (sc91.local\App_Config\Sitecore\DeviceDetection.Client\Sitecore.CES.DeviceDetection.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\EmailExperience).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EDS.Core.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EDS.Providers.CustomSMTP.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EDS.Providers.CustomSMTP.Sync.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EDS.Providers.SparkPost.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EDS.Providers.SparkPost.Sync.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EDS.SparkPost.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ContentDelivery.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ContentManagement.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ContentManagementPrimary.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ContentSearch.Azure.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ContentSearch.Lucene.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ContentSearch.Solr.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.Core.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.DependencyEvaluator.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.EmailProcessing.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ExperienceAnalytics.Aggregation.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ExperienceAnalytics.Api.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ExperienceAnalytics.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ExperienceAnalytics.Reduce.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.ExperienceProfile.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.MessageHandling.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.Messaging.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.Reporting.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.UI.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.EmailExperience.XConnect.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.ExM.Framework.config).
Info: Adding file (sc91.local\App_Config\Sitecore\EmailExperience\Sitecore.ExM.Framework.ContentManagement.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Experience Editor).
Info: Adding file (sc91.local\App_Config\Sitecore\Experience Editor\Sitecore.ExperienceEditor.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Experience Editor\Sitecore.ExperienceEditor.Speak.Requests.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ExperienceAnalytics).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceAnalytics\Sitecore.ExperienceAnalytics.Aggregation.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceAnalytics\Sitecore.ExperienceAnalytics.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceAnalytics\Sitecore.ExperienceAnalytics.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceAnalytics\Sitecore.ExperienceAnalytics.Reduce.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceAnalytics\Sitecore.ExperienceAnalytics.StorageProviders.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceAnalytics\Sitecore.ExperienceAnalytics.WebAPI.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ExperienceContentManagement.Administration).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceContentManagement.Administration\Sitecore.ExperienceContentManagement.Administration.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ExperienceExplorer).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceExplorer\Sitecore.ExperienceExplorer.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceExplorer\Sitecore.ExperienceExplorer.Services.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceExplorer\Sitecore.ExperienceExplorer.Speak.Requests.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ExperienceForms).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceForms\Sitecore.ExperienceForms.Analytics.Aggregation.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceForms\Sitecore.ExperienceForms.Analytics.Tracking.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceForms\Sitecore.ExperienceForms.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceForms\Sitecore.ExperienceForms.Mvc.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceForms\Sitecore.ExperienceForms.Pipelines.Client.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ExperienceProfile).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceProfile\Sitecore.ExperienceProfile.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceProfile\Sitecore.ExperienceProfile.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ExperienceProfile\Sitecore.ExperienceProfile.Reporting.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\FederatedExperienceManager).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Azure.DomainsSearch.DefaultIndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Azure.DomainsSearch.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Azure.DomainsSearch.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Bundle.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Lucene.DomainsSearch.DefaultIndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Lucene.DomainsSearch.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Lucene.DomainsSearch.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Solr.DomainsSearch.DefaultIndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Solr.DomainsSearch.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Solr.DomainsSearch.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\FederatedExperienceManager\Sitecore.FXM.Speak.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ItemWebApi).
Info: Adding file (sc91.local\App_Config\Sitecore\ItemWebApi\Sitecore.ItemWebApi.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\LaunchPad).
Info: Adding file (sc91.local\App_Config\Sitecore\LaunchPad\Sitecore.Speak.LaunchPad.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\ListManagement).
Info: Adding file (sc91.local\App_Config\Sitecore\ListManagement\Sitecore.ListManagement.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ListManagement\Sitecore.ListManagement.config).
Info: Adding file (sc91.local\App_Config\Sitecore\ListManagement\Sitecore.ListManagement.Services.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Assets).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Azure.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Azure.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Azure.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Lucene.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Lucene.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Lucene.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Solr.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Solr.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.Solr.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Assets\Sitecore.Marketing.Definitions.MarketingAssets.RepositoriesCD.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Automation.ActivityDescriptors.Client).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Automation.ActivityDescriptors.Client\Sitecore.Marketing.Automation.ActivityDescriptors.Client.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Automation.Client).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Automation.Client\Sitecore.Marketing.Automation.Client.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Client).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Client\Sitecore.Marketing.Client.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Operations.Xdb.ReferenceData).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.Xdb.ReferenceData\Sitecore.Marketing.Operations.Xdb.ReferenceData.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.Xdb.ReferenceData\Sitecore.Marketing.Taxonomy.Xdb.ReferenceData.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Azure.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Azure.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Azure.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Lucene.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Lucene.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Lucene.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.ReferenceData.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Search.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Solr.Index.Master.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Solr.Index.Web.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Solr.IndexConfiguration.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.Taxonomy.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.Marketing.TaxonomyCD.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Operations.xMgmt\Sitecore.MarketingCD.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Segmentation.xMgmt).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Segmentation.xMgmt\Sitecore.Marketing.Segmentation.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Tracking).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Tracking\Channel).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Tracking\Channel\Sitecore.Analytics.Channel.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Tracking\Sitecore.Analytics.Compatibility.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Tracking\Sitecore.Analytics.ExcludeRobots.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Tracking\Sitecore.Analytics.FieldTypes.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Tracking\Sitecore.Analytics.Tracking.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Tracking\Sitecore.Analytics.Tracking.Database.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Tracking\Sitecore.Analytics.Tracking.Model.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.xDB).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Analytics.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Analytics.Model.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Analytics.Processing.Aggregation.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Analytics.Processing.Aggregation.ProcessingPools.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Analytics.Processing.Aggregation.Services.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Analytics.Processing.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Analytics.Processing.Services.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Analytics.Reporting.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Xdb.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Xdb.Remote.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.xDB\Sitecore.Xdb.Remote.Server.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.MarketingAutomation.Locators).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.MarketingAutomation.Locators\Sitecore.Xdb.MarketingAutomation.Locators.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.MarketingAutomation.Operations).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.MarketingAutomation.Operations\Sitecore.Xdb.MarketingAutomation.OperationsClient.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.MarketingAutomation.Reporting).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.MarketingAutomation.Reporting\Sitecore.Xdb.MarketingAutomation.ReportingClient.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.MarketingAutomation.Tracking).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.MarketingAutomation.Tracking\Sitecore.Xdb.MarketingAutomation.Tracking.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.ReferenceData.Client).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.ReferenceData.Client\Sitecore.Xdb.ReferenceData.Client.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.ReferenceData.Core).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.ReferenceData.Core\Sitecore.Xdb.ReferenceData.Core.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.ReferenceData.Service).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.ReferenceData.Service\Sitecore.Xdb.ReferenceData.Service.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.ReferenceData.SqlServer).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.ReferenceData.SqlServer\Sitecore.Xdb.ReferenceData.SqlServer.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Marketing.Xdb.Sql.Common).
Info: Adding file (sc91.local\App_Config\Sitecore\Marketing.Xdb.Sql.Common\Sitecore.Xdb.Sql.Common.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Messaging).
Info: Adding file (sc91.local\App_Config\Sitecore\Messaging\Sitecore.Messaging.Azure.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Messaging\Sitecore.Messaging.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Messaging\Sitecore.Messaging.SqlServer.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Mvc).
Info: Adding file (sc91.local\App_Config\Sitecore\Mvc\Sitecore.Mvc.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\MVC.DeviceSimulator).
Info: Adding file (sc91.local\App_Config\Sitecore\MVC.DeviceSimulator\Sitecore.MVC.DeviceSimulator.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\MVC.ExperienceEditor).
Info: Adding file (sc91.local\App_Config\Sitecore\MVC.ExperienceEditor\Sitecore.MVC.ExperienceEditor.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Owin).
Info: Adding file (sc91.local\App_Config\Sitecore\Owin\Sitecore.Owin.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Owin.Authentication).
Info: Adding file (sc91.local\App_Config\Sitecore\Owin.Authentication\Sitecore.Owin.Authentication.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\PathAnalyzer).
Info: Adding file (sc91.local\App_Config\Sitecore\PathAnalyzer\Sitecore.PathAnalyzer.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore\PathAnalyzer\Sitecore.PathAnalyzer.config).
Info: Adding file (sc91.local\App_Config\Sitecore\PathAnalyzer\Sitecore.PathAnalyzer.Processing.config).
Info: Adding file (sc91.local\App_Config\Sitecore\PathAnalyzer\Sitecore.PathAnalyzer.RemoteClient.config).
Info: Adding file (sc91.local\App_Config\Sitecore\PathAnalyzer\Sitecore.PathAnalyzer.Services.config).
Info: Adding file (sc91.local\App_Config\Sitecore\PathAnalyzer\Sitecore.PathAnalyzer.Services.RemoteServer.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Services.Client).
Info: Adding file (sc91.local\App_Config\Sitecore\Services.Client\Sitecore.Content.Services.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Services.Client\Sitecore.Services.Client.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\SPEAK).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK\Sitecore.Speak.AntiCsrf.SheerUI.config).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK\Sitecore.Speak.config).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK\Sitecore.Speak.ContentSearch.Lucene.config).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK\Sitecore.Speak.ContentSearch.Solr.config).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK\Sitecore.Speak.ItemWebApi.config).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK\Sitecore.Speak.Mvc.config).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK\Sitecore.Speak.Pipelines.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Speak.Applications).
Info: Adding file (sc91.local\App_Config\Sitecore\Speak.Applications\Sitecore.Speak.Applications.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\SPEAK.Components).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK.Components\Sitecore.Speak.Components.AntiCsrf.config).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK.Components\Sitecore.Speak.Components.config).
Info: Adding file (sc91.local\App_Config\Sitecore\SPEAK.Components\Sitecore.Speak.Components.Mvc.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Speak.Integration).
Info: Adding file (sc91.local\App_Config\Sitecore\Speak.Integration\Sitecore.Speak.Integration.Services.config).
Info: Adding file (sc91.local\App_Config\Sitecore\Speak.Integration\Sitecore.Speak.Integration.Spa.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Tracking.Web.MVC).
Info: Adding file (sc91.local\App_Config\Sitecore\Tracking.Web.MVC\Sitecore.MvcAnalytics.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Tracking.Web.RobotDetection).
Info: Adding file (sc91.local\App_Config\Sitecore\Tracking.Web.RobotDetection\Sitecore.Analytics.Tracking.RobotDetection.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\Update).
Info: Adding file (sc91.local\App_Config\Sitecore\Update\Sitecore.Update.config).
Info: Adding directory (sc91.local\App_Config\Sitecore\XConnect.Client.Configuration).
Info: Adding file (sc91.local\App_Config\Sitecore\XConnect.Client.Configuration\Sitecore.XConnect.Client.config).
Info: Adding file (sc91.local\App_Config\Sitecore.config).
Info: Adding file (sc91.local\App_Config\Sitecore.config.Oracle).
Info: Adding file (sc91.local\App_Config\XamlSharp.config).
Info: Adding directory (sc91.local\App_Data).
Info: Adding directory (sc91.local\App_Data\debug).
Info: Adding file (sc91.local\App_Data\debug\readme.txt).
Info: Adding directory (sc91.local\App_Data\indexes).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_core_index).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\segments_9).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\_5.cfx).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\_f.fnm).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\_f.frq).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\_f.nrm).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\_f.prx).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\_f.tii).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_core_index\_f.tis).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_fxm_master_index).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_fxm_master_index\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_fxm_master_index\segments_5).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_fxm_web_index).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_fxm_web_index\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_fxm_web_index\segments_5).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_master).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_master\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_master\segments_7).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_master\_1.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_master\_1.cfx).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web\segments_a).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web\_1.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web\_1.cfx).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web\_1_3.del).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web\_2.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web\_3.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketingdefinitions_web\_4.cfs).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_marketing_asset_index_master).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketing_asset_index_master\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketing_asset_index_master\segments_5).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_marketing_asset_index_web).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketing_asset_index_web\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_marketing_asset_index_web\segments_5).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_master_index).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\segments_nb).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_mz.cfx).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n1.fnm).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n1.frq).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n1.nrm).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n1.prx).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n1.tii).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n1.tis).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n1_1.del).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n2.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n2_1.del).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n3.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n3_1.del).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n4.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n4_1.del).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n5.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n5_1.del).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n6.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n6_1.del).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_master_index\_n7.cfs).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_suggested_test_index).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_suggested_test_index\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_suggested_test_index\segments_b).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_suggested_test_index\_4.cfs).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_suggested_test_index\_4.cfx).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_testing_index).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_testing_index\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_testing_index\segments_5).
Info: Adding directory (sc91.local\App_Data\indexes\sitecore_web_index).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\segments.gen).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\segments_1p).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.fdt).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.fdx).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.fnm).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.frq).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.nrm).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.prx).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.tii).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.tis).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.tvd).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.tvf).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n.tvx).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1n_1.del).
Info: Adding file (sc91.local\App_Data\indexes\sitecore_web_index\_1o.cfs).
Info: Adding directory (sc91.local\App_Data\logs).
Info: Adding file (sc91.local\App_Data\logs\readme.txt).
Info: Adding directory (sc91.local\App_Data\packages).
Info: Adding file (sc91.local\App_Data\packages\readme.txt).
Info: Adding directory (sc91.local\App_Data\Submit Queue).
Info: Adding file (sc91.local\App_Data\Submit Queue\0000000001).
Info: Adding directory (sc91.local\App_Data\tools).
Info: Adding directory (sc91.local\App_Data\tools\phantomjs).
Info: Adding file (sc91.local\App_Data\tools\phantomjs\phantomjs.exe).
Info: Adding file (sc91.local\App_Data\tools\phantomjs\render.js).
Info: Adding file (sc91.local\App_Data\tools\phantomjs\sc-ee.js).
Info: Adding directory (sc91.local\App_Data\viewstate).
Info: Adding file (sc91.local\App_Data\viewstate\readme.txt).
Info: Adding directory (sc91.local\bin).
Info: Adding file (sc91.local\bin\Antlr3.Runtime.dll).
Info: Adding file (sc91.local\bin\ChilkatDotNet46.dll).
Info: Adding file (sc91.local\bin\ComponentArt.UIFramework.lic).
Info: Adding file (sc91.local\bin\ComponentArt.Web.UI.dll).
Info: Adding file (sc91.local\bin\EcmaScript.NET.dll).
Info: Adding file (sc91.local\bin\FiftyOne.Foundation.dll).
Info: Adding file (sc91.local\bin\HtmlAgilityPack.dll).
Info: Adding file (sc91.local\bin\HtmlAgilityPack.XML).
Info: Adding file (sc91.local\bin\ICSharpCode.SharpZipLib.dll).
Info: Adding file (sc91.local\bin\Iesi.Collections.dll).
Info: Adding file (sc91.local\bin\ITHit.WebDAV.Server.dll).
Info: Adding file (sc91.local\bin\ITHit.WebDAV.Server.lic).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Analyzers.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Analyzers.XML).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Core.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Core.XML).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.FastVectorHighlighter.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.FastVectorHighlighter.xml).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Highlighter.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Highlighter.XML).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Memory.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Memory.XML).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Queries.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Queries.XML).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Regex.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Regex.xml).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.SimpleFacetedSearch.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.SimpleFacetedSearch.xml).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Snowball.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.Snowball.XML).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.SpellChecker.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.Contrib.SpellChecker.XML).
Info: Adding file (sc91.local\bin\Lucene.Net.dll).
Info: Adding file (sc91.local\bin\Lucene.Net.XML).
Info: Adding file (sc91.local\bin\MarkdownSharp.dll).
Info: Adding file (sc91.local\bin\Microsoft.AspNet.Identity.Core.dll).
Info: Adding file (sc91.local\bin\Microsoft.AspNet.Identity.Core.xml).
Info: Adding file (sc91.local\bin\Microsoft.AspNet.Identity.Owin.dll).
Info: Adding file (sc91.local\bin\Microsoft.AspNet.Identity.Owin.xml).
Info: Adding file (sc91.local\bin\Microsoft.AspNet.WebApi.Extensions.Compression.Server.dll).
Info: Adding file (sc91.local\bin\Microsoft.AspNetCore.Hosting.Abstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.AspNetCore.Hosting.Abstractions.xml).
Info: Adding file (sc91.local\bin\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.AspNetCore.Hosting.Server.Abstractions.xml).
Info: Adding file (sc91.local\bin\Microsoft.AspNetCore.Http.Abstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.AspNetCore.Http.Abstractions.xml).
Info: Adding file (sc91.local\bin\Microsoft.AspNetCore.Http.Features.dll).
Info: Adding file (sc91.local\bin\Microsoft.AspNetCore.Http.Features.xml).
Info: Adding file (sc91.local\bin\Microsoft.DotNet.InternalAbstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.CommandLineUtils.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.CommandLineUtils.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Abstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Abstractions.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Binder.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Binder.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.CommandLine.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.CommandLine.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.EnvironmentVariables.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.EnvironmentVariables.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.FileExtensions.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.FileExtensions.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Ini.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Ini.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Json.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Json.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Xml.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Configuration.Xml.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.DependencyInjection.Abstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.DependencyInjection.Abstractions.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.DependencyInjection.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.DependencyInjection.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.DependencyModel.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.FileProviders.Abstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.FileProviders.Abstractions.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.FileProviders.Physical.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.FileProviders.Physical.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.FileSystemGlobbing.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.FileSystemGlobbing.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Logging.Abstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Logging.Abstractions.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Logging.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Logging.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Options.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Options.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.PlatformAbstractions.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.PlatformAbstractions.xml).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Primitives.dll).
Info: Adding file (sc91.local\bin\Microsoft.Extensions.Primitives.xml).
Info: Adding file (sc91.local\bin\Microsoft.IdentityModel.Protocol.Extensions.dll).
Info: Adding file (sc91.local\bin\Microsoft.IdentityModel.Protocol.Extensions.XML).
Info: Adding file (sc91.local\bin\Microsoft.OData.Core.dll).
Info: Adding file (sc91.local\bin\Microsoft.OData.Core.xml).
Info: Adding file (sc91.local\bin\Microsoft.OData.Edm.dll).
Info: Adding file (sc91.local\bin\Microsoft.OData.Edm.xml).
Info: Adding file (sc91.local\bin\Microsoft.Owin.dll).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Host.SystemWeb.dll).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Host.SystemWeb.xml).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.ActiveDirectory.dll).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.ActiveDirectory.xml).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.Cookies.dll).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.Cookies.xml).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.dll).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.Jwt.dll).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.Jwt.xml).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.OAuth.dll).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.OAuth.XML).
Info: Adding file (sc91.local\bin\Microsoft.Owin.Security.XML).
Info: Adding file (sc91.local\bin\Microsoft.Owin.XML).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.Common.dll).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.Common.xml).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Caching.dll).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Caching.xml).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Configuration.dll).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Configuration.xml).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Data.dll).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Data.xml).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.dll).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ServiceBus.dll).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ServiceBus.xml).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.WindowsAzure.Storage.dll).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.WindowsAzure.Storage.xml).
Info: Adding file (sc91.local\bin\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.xml).
Info: Adding file (sc91.local\bin\Microsoft.Practices.ServiceLocation.dll).
Info: Adding file (sc91.local\bin\Microsoft.Practices.ServiceLocation.XML).
Info: Adding file (sc91.local\bin\Microsoft.ServiceBus.dll).
Info: Adding file (sc91.local\bin\Microsoft.ServiceBus.xml).
Info: Adding file (sc91.local\bin\Microsoft.Spatial.dll).
Info: Adding file (sc91.local\bin\Microsoft.Spatial.xml).
Info: Adding file (sc91.local\bin\Microsoft.Web.Infrastructure.dll).
Info: Adding file (sc91.local\bin\Microsoft.WindowsAzure.Configuration.dll).
Info: Adding file (sc91.local\bin\Microsoft.WindowsAzure.Configuration.xml).
Info: Adding file (sc91.local\bin\MongoDB.Bson.dll).
Info: Adding file (sc91.local\bin\MongoDB.Bson.xml).
Info: Adding file (sc91.local\bin\MongoDB.Driver.Core.dll).
Info: Adding file (sc91.local\bin\MongoDB.Driver.Core.xml).
Info: Adding file (sc91.local\bin\MongoDB.Driver.dll).
Info: Adding file (sc91.local\bin\MongoDB.Driver.Legacy.dll).
Info: Adding file (sc91.local\bin\MongoDB.Driver.Legacy.xml).
Info: Adding file (sc91.local\bin\MongoDB.Driver.xml).
Info: Adding file (sc91.local\bin\Mvp.Xml.dll).
Info: Adding file (sc91.local\bin\Mvp.Xml.xml).
Info: Adding file (sc91.local\bin\Newtonsoft.Json.dll).
Info: Adding file (sc91.local\bin\Newtonsoft.Json.xml).
Info: Adding file (sc91.local\bin\Owin.dll).
Info: Adding file (sc91.local\bin\protobuf-net.dll).
Info: Adding file (sc91.local\bin\RazorGenerator.Mvc.dll).
Info: Adding file (sc91.local\bin\Rebus.AzureServiceBus.dll).
Info: Adding file (sc91.local\bin\Rebus.AzureServiceBus.XML).
Info: Adding file (sc91.local\bin\Rebus.dll).
Info: Adding file (sc91.local\bin\Rebus.SqlServer.dll).
Info: Adding file (sc91.local\bin\Rebus.SqlServer.XML).
Info: Adding file (sc91.local\bin\Rebus.XML).
Info: Adding file (sc91.local\bin\Remotion.Linq.dll).
Info: Adding file (sc91.local\bin\Remotion.Linq.XML).
Info: Adding file (sc91.local\bin\Sitecore.Abstractions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Abstractions.xml).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Aggregation.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Aggregation.xml).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Core.xml).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.DataAccess.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Model.xml).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.OmniChannel.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Processing.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Processing.xml).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.RobotDetection.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Sql.dll).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.Sql.xml).
Info: Adding file (sc91.local\bin\Sitecore.Analytics.XConnect.dll).
Info: Adding file (sc91.local\bin\Sitecore.Apps.Loader.dll).
Info: Adding file (sc91.local\bin\Sitecore.Buckets.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Buckets.dll).
Info: Adding file (sc91.local\bin\Sitecore.CES.DeviceDetection.dll).
Info: Adding file (sc91.local\bin\Sitecore.CES.DeviceDetection.Rules.dll).
Info: Adding file (sc91.local\bin\Sitecore.CES.dll).
Info: Adding file (sc91.local\bin\Sitecore.CES.GeoIp.dll).
Info: Adding file (sc91.local\bin\Sitecore.CES.GeoIp.IpFiltering.dll).
Info: Adding file (sc91.local\bin\Sitecore.CES.GeoIp.LegacyLocation.dll).
Info: Adding file (sc91.local\bin\Sitecore.Cintel.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Cintel.dll).
Info: Adding file (sc91.local\bin\Sitecore.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Client.LicenseOptions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Client.XML).
Info: Adding file (sc91.local\bin\Sitecore.Cloud.Nexus.dll).
Info: Adding file (sc91.local\bin\Sitecore.Content.Services.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.Azure.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.Data.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.Linq.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.Linq.Lucene.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.Linq.Solr.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.LuceneProvider.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.LuceneProvider.dll.config).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.SolrNetExtension.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.SolrProvider.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentSearch.SolrProvider.dll.config).
Info: Adding file (sc91.local\bin\Sitecore.ContentTesting.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentTesting.Intelligence.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentTesting.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentTesting.Model.xConnect.dll).
Info: Adding file (sc91.local\bin\Sitecore.ContentTesting.Mvc.dll).
Info: Adding file (sc91.local\bin\Sitecore.ControlPanel.dll).
Info: Adding file (sc91.local\bin\Sitecore.EDS.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.EDS.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.EDS.Providers.CustomSmtp.dll).
Info: Adding file (sc91.local\bin\Sitecore.EDS.Providers.SparkPost.dll).
Info: Adding file (sc91.local\bin\Sitecore.EDS.SparkPost.ClientServices.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.Activities.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.Application.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.Cd.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.Cm.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.Cm.UI.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.ExperienceAnalytics.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.Model.Web.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.SampleNewsletter.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.Server.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.XConnect.dll).
Info: Adding file (sc91.local\bin\Sitecore.EmailCampaign.XConnect.Web.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExM.Framework.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExM.Framework.Web.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceAnalytics.Aggregation.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceAnalytics.Api.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceAnalytics.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceAnalytics.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceAnalytics.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceAnalytics.ReAggregation.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceAnalytics.Reduce.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceContentManagement.Administration.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceEditor.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceEditor.Speak.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceEditor.Speak.Ribbon.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceExplorer.Analytics.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceExplorer.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceExplorer.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceExplorer.Web.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceForms.Analytics.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceForms.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceForms.Data.SqlServer.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceForms.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceForms.Mvc.dll).
Info: Adding file (sc91.local\bin\Sitecore.ExperienceForms.SubmitActions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Common.Abstractions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Common.Abstractions.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Common.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Common.Extensions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Common.Extensions.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Common.WildcardMatch.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Common.WildcardMatch.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Common.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Conditions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Conditions.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.Abstractions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.Abstractions.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.Common.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.Common.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.Extensions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.Extensions.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.Xml.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Configuration.Xml.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Abstractions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Abstractions.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Common.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Common.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Configuration.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Configuration.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Rebus.Azure.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Rebus.Azure.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Rebus.Configuration.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Rebus.Configuration.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Rebus.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Rebus.SqlServer.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Rebus.SqlServer.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Messaging.Rebus.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Abstractions.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Abstractions.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Api.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Api.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Core.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Model.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Registry.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Registry.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Serialization.dll).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.Serialization.xml).
Info: Adding file (sc91.local\bin\Sitecore.Framework.Rules.xml).
Info: Adding file (sc91.local\bin\Sitecore.FXM.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.FXM.Client.xml).
Info: Adding file (sc91.local\bin\Sitecore.FXM.dll).
Info: Adding file (sc91.local\bin\Sitecore.FXM.Service.dll).
Info: Adding file (sc91.local\bin\Sitecore.FXM.Service.xml).
Info: Adding file (sc91.local\bin\Sitecore.FXM.Speak.dll).
Info: Adding file (sc91.local\bin\Sitecore.FXM.Speak.xml).
Info: Adding file (sc91.local\bin\Sitecore.FXM.xml).
Info: Adding file (sc91.local\bin\Sitecore.ItemWebApi.dll).
Info: Adding file (sc91.local\bin\Sitecore.Kernel.dll).
Info: Adding file (sc91.local\bin\Sitecore.Kernel.xml).
Info: Adding file (sc91.local\bin\Sitecore.LaunchPad.dll).
Info: Adding file (sc91.local\bin\Sitecore.LaunchPad.dll.config).
Info: Adding file (sc91.local\bin\Sitecore.ListManagement.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.ListManagement.dll).
Info: Adding file (sc91.local\bin\Sitecore.ListManagement.Services.dll).
Info: Adding file (sc91.local\bin\Sitecore.ListManagement.Services.xml).
Info: Adding file (sc91.local\bin\Sitecore.ListManagement.XConnect.dll).
Info: Adding file (sc91.local\bin\Sitecore.ListManagement.XConnect.xml).
Info: Adding file (sc91.local\bin\Sitecore.ListManagement.xml).
Info: Adding file (sc91.local\bin\Sitecore.Logging.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Logging.dll).
Info: Adding file (sc91.local\bin\Sitecore.Logging.xml).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.ActivityDescriptors.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.ActivityDescriptors.Client.XML).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.ActivityDescriptors.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.ActivityDescriptors.XML).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.Client.XML).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.Models.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Automation.XML).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Campaigns.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Campaigns.Services.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Definitions.MarketingAssets.Repositories.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Operations.Xdb.ReferenceData.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Operations.Xdb.ReferenceData.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Operations.Xdb.ReferenceData.Service.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Search.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Segmentation.xMgmt.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Taxonomy.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.Taxonomy.xMgmt.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.xMgmt.dll).
Info: Adding file (sc91.local\bin\Sitecore.Marketing.xMgmt.ReferenceData.dll).
Info: Adding file (sc91.local\bin\Sitecore.Messaging.Azure.dll).
Info: Adding file (sc91.local\bin\Sitecore.Messaging.dll).
Info: Adding file (sc91.local\bin\Sitecore.Messaging.SqlServer.dll).
Info: Adding file (sc91.local\bin\Sitecore.Mvc.Analytics.dll).
Info: Adding file (sc91.local\bin\Sitecore.Mvc.DeviceSimulator.dll).
Info: Adding file (sc91.local\bin\Sitecore.Mvc.DeviceSimulator.dll.config).
Info: Adding file (sc91.local\bin\Sitecore.Mvc.dll).
Info: Adding file (sc91.local\bin\Sitecore.Mvc.ExperienceEditor.dll).
Info: Adding file (sc91.local\bin\Sitecore.Nexus.dll).
Info: Adding file (sc91.local\bin\Sitecore.NVelocity.dll).
Info: Adding file (sc91.local\bin\Sitecore.NVelocity.XML).
Info: Adding file (sc91.local\bin\Sitecore.Oracle.dll).
Info: Adding file (sc91.local\bin\Sitecore.Owin.Authentication.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Owin.Authentication.dll).
Info: Adding file (sc91.local\bin\Sitecore.Owin.dll).
Info: Adding file (sc91.local\bin\Sitecore.PathAnalyzer.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.PathAnalyzer.dll).
Info: Adding file (sc91.local\bin\Sitecore.PathAnalyzer.Services.dll).
Info: Adding file (sc91.local\bin\Sitecore.Publishing.WebDeploy.dll).
Info: Adding file (sc91.local\bin\Sitecore.Security.AntiCsrf.dll).
Info: Adding file (sc91.local\bin\Sitecore.SequenceAnalyzer.dll).
Info: Adding file (sc91.local\bin\Sitecore.Services.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Services.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.Services.Infrastructure.dll).
Info: Adding file (sc91.local\bin\Sitecore.Services.Infrastructure.Sitecore.dll).
Info: Adding file (sc91.local\bin\Sitecore.SessionProvider.dll).
Info: Adding file (sc91.local\bin\Sitecore.SessionProvider.Memory.dll).
Info: Adding file (sc91.local\bin\Sitecore.SessionProvider.MongoDB.dll).
Info: Adding file (sc91.local\bin\Sitecore.SessionProvider.Redis.dll).
Info: Adding file (sc91.local\bin\Sitecore.SessionProvider.Sql.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.Applications.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.Components.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.Components.Guidance.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.Components.Web.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.Integration.Services.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.Integration.Spa.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.ItemWebApi.dll).
Info: Adding file (sc91.local\bin\Sitecore.Speak.Web.dll).
Info: Adding file (sc91.local\bin\Sitecore.Update.dll).
Info: Adding file (sc91.local\bin\Sitecore.Web.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Client.Configuration.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Client.Configuration.dll.config).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Client.dll.config).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Collection.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Collection.Model.XML).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Diagnostics.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Search.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Segmentation.Conditions.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Segmentation.Engine.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Segmentation.ExpressionBuilder.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Segmentation.Predicates.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.Segmentation.Predicates.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.XConnect.XML).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Client.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Common.Web.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Common.Web.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Configuration.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Configuration.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.Core.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.Locators.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.Locators.Xmgmt.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.Locators.Xmgmt.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.Locators.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.OperationsClient.Configuration.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.OperationsClient.Configuration.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.OperationsClient.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.OperationsClient.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.ReportingClient.Configuration.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.ReportingClient.Configuration.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.ReportingClient.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.ReportingClient.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.SqlServer.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.SqlServer.XML).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.Tracking.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.MarketingAutomation.Tracking.XML).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Processing.Queue.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Processing.Queue.SqlServer.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Processing.Queue.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Client.Xmgmt.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Client.Xmgmt.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Client.XML).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Core.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Core.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Model.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Model.XML).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Service.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Service.Xmgmt.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Service.Xmgmt.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.Service.XML).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.SqlServer.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.SqlServer.Xmgmt.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.SqlServer.Xmgmt.XML).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.ReferenceData.SqlServer.XML).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Reporting.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Reporting.xml).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Sql.Common.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Sql.Common.Xmgmt.dll).
Info: Adding file (sc91.local\bin\Sitecore.Xdb.Tracking.Client.dll).
Info: Adding file (sc91.local\bin\Sitecore.Zip.dll).
Info: Adding file (sc91.local\bin\Sitecore.Zip.XML).
Info: Adding file (sc91.local\bin\SolrNet.dll).
Info: Adding file (sc91.local\bin\SolrNet.xml).
Info: Adding file (sc91.local\bin\StackExchange.Redis.StrongName.dll).
Info: Adding file (sc91.local\bin\StackExchange.Redis.StrongName.xml).
Info: Adding file (sc91.local\bin\System.Collections.NonGeneric.dll).
Info: Adding file (sc91.local\bin\System.ComponentModel.Primitives.dll).
Info: Adding file (sc91.local\bin\System.ComponentModel.TypeConverter.dll).
Info: Adding file (sc91.local\bin\System.IdentityModel.Tokens.Jwt.dll).
Info: Adding file (sc91.local\bin\System.IdentityModel.Tokens.Jwt.Xml).
Info: Adding file (sc91.local\bin\System.Interactive.Async.dll).
Info: Adding file (sc91.local\bin\System.Interactive.Async.Providers.dll).
Info: Adding file (sc91.local\bin\System.Interactive.Async.Providers.xml).
Info: Adding file (sc91.local\bin\System.Interactive.Async.xml).
Info: Adding file (sc91.local\bin\System.IO.dll).
Info: Adding file (sc91.local\bin\System.Net.Http.Extensions.Compression.Core.dll).
Info: Adding file (sc91.local\bin\System.Net.Http.Formatting.dll).
Info: Adding file (sc91.local\bin\System.Net.Http.Formatting.xml).
Info: Adding file (sc91.local\bin\System.Reflection.dll).
Info: Adding file (sc91.local\bin\System.Runtime.dll).
Info: Adding file (sc91.local\bin\System.Runtime.Extensions.dll).
Info: Adding file (sc91.local\bin\System.Runtime.InteropServices.dll).
Info: Adding file (sc91.local\bin\System.Runtime.InteropServices.RuntimeInformation.dll).
Info: Adding file (sc91.local\bin\System.Text.Encodings.Web.dll).
Info: Adding file (sc91.local\bin\System.Text.Encodings.Web.xml).
Info: Adding file (sc91.local\bin\System.Web.Cors.dll).
Info: Adding file (sc91.local\bin\System.Web.Helpers.dll).
Info: Adding file (sc91.local\bin\System.Web.Helpers.xml).
Info: Adding file (sc91.local\bin\System.Web.Http.Cors.dll).
Info: Adding file (sc91.local\bin\System.Web.Http.Cors.xml).
Info: Adding file (sc91.local\bin\System.Web.Http.dll).
Info: Adding file (sc91.local\bin\System.Web.Http.WebHost.dll).
Info: Adding file (sc91.local\bin\System.Web.Http.WebHost.xml).
Info: Adding file (sc91.local\bin\System.Web.Http.xml).
Info: Adding file (sc91.local\bin\System.Web.Mvc.dll).
Info: Adding file (sc91.local\bin\System.Web.Mvc.xml).
Info: Adding file (sc91.local\bin\System.Web.OData.dll).
Info: Adding file (sc91.local\bin\System.Web.OData.xml).
Info: Adding file (sc91.local\bin\System.Web.Optimization.dll).
Info: Adding file (sc91.local\bin\system.web.optimization.xml).
Info: Adding file (sc91.local\bin\System.Web.Razor.dll).
Info: Adding file (sc91.local\bin\System.Web.Razor.xml).
Info: Adding file (sc91.local\bin\System.Web.WebPages.Deployment.dll).
Info: Adding file (sc91.local\bin\System.Web.WebPages.Deployment.xml).
Info: Adding file (sc91.local\bin\System.Web.WebPages.dll).
Info: Adding file (sc91.local\bin\System.Web.WebPages.Razor.dll).
Info: Adding file (sc91.local\bin\System.Web.WebPages.Razor.xml).
Info: Adding file (sc91.local\bin\System.Web.WebPages.xml).
Info: Adding file (sc91.local\bin\Telerik.Web.Design.dll).
Info: Adding file (sc91.local\bin\Telerik.Web.Device.Detection.dll).
Info: Adding file (sc91.local\bin\Telerik.Web.Device.Detection.xml).
Info: Adding file (sc91.local\bin\Telerik.Web.UI.dll).
Info: Adding file (sc91.local\bin\Telerik.Web.UI.Skins.dll).
Info: Adding file (sc91.local\bin\Telerik.Web.UI.XML).
Info: Adding file (sc91.local\bin\WebActivatorEx.dll).
Info: Adding file (sc91.local\bin\WebGrease.dll).
Info: Adding file (sc91.local\bin\Yahoo.Yui.Compressor.dll).
Info: Adding file (sc91.local\Default.aspx).
Info: Adding file (sc91.local\default.css).
Info: Adding file (sc91.local\default.htm.sitedown).
Info: Adding file (sc91.local\default.js).
Info: Adding file (sc91.local\Global.asax).
Info: Adding directory (sc91.local\layouts).
Info: Adding file (sc91.local\layouts\offline_fonts.css).
Info: Adding file (sc91.local\layouts\Sample Datasource Sublayout.ascx).
Info: Adding file (sc91.local\layouts\Sample Inner Sublayout.ascx).
Info: Adding file (sc91.local\layouts\Sample layout.aspx).
Info: Adding file (sc91.local\layouts\Sample Sublayout.ascx).
Info: Adding directory (sc91.local\layouts\SimulatedDevicePreview).
Info: Adding file (sc91.local\layouts\SimulatedDevicePreview\default.aspx).
Info: Adding directory (sc91.local\layouts\System).
Info: Adding file (sc91.local\layouts\System\VIChecker.aspx).
Info: Adding file (sc91.local\layouts\System\VisitorIdentification.ascx).
Info: Adding file (sc91.local\layouts\System\VisitorIdentification.aspx).
Info: Adding file (sc91.local\layouts\System\VisitorIdentification.js).
Info: Adding file (sc91.local\layouts\System\VisitorIdentificationCss.aspx).
Info: Adding file (sc91.local\layouts\xmlcontrol.aspx).
Info: Adding directory (sc91.local\sitecore).
Info: Adding directory (sc91.local\sitecore\admin).
Info: Adding file (sc91.local\sitecore\admin\cache.aspx).
Info: Adding file (sc91.local\sitecore\admin\dbbrowser.aspx).
Info: Adding file (sc91.local\sitecore\admin\dbbrowser.css).
Info: Adding file (sc91.local\sitecore\admin\DBCleanup.aspx).
Info: Adding file (sc91.local\sitecore\admin\default.aspx).
Info: Adding file (sc91.local\sitecore\admin\default.css).
Info: Adding file (sc91.local\sitecore\admin\dispatchsummary.aspx).
Info: Adding file (sc91.local\sitecore\admin\EventQueueStats.aspx).
Info: Adding file (sc91.local\sitecore\admin\InstallLanguage.aspx).
Info: Adding file (sc91.local\sitecore\admin\Jobs.aspx).
Info: Adding file (sc91.local\sitecore\admin\Login.aspx).
Info: Adding file (sc91.local\sitecore\admin\Logs.aspx).
Info: Adding file (sc91.local\sitecore\admin\MediaHash.aspx).
Info: Adding file (sc91.local\sitecore\admin\MessageStatistics.aspx).
Info: Adding file (sc91.local\sitecore\admin\NonSecurePageDisabled.aspx).
Info: Adding file (sc91.local\sitecore\admin\PackageItem.aspx).
Info: Adding directory (sc91.local\sitecore\admin\Packages).
Info: Adding file (sc91.local\sitecore\admin\Packages\readme.txt).
Info: Adding file (sc91.local\sitecore\admin\PathAnalyzer.aspx).
Info: Adding file (sc91.local\sitecore\admin\pipelines.aspx).
Info: Adding file (sc91.local\sitecore\admin\PopulateManagedSchema.aspx).
Info: Adding file (sc91.local\sitecore\admin\PublishQueueStats.aspx).
Info: Adding file (sc91.local\sitecore\admin\RawSearch.aspx).
Info: Adding file (sc91.local\sitecore\admin\RebuildReportingDB.aspx).
Info: Adding file (sc91.local\sitecore\admin\RemoveBrokenLinks.aspx).
Info: Adding file (sc91.local\sitecore\admin\restore.aspx).
Info: Adding file (sc91.local\sitecore\admin\SecurityTools.aspx).
Info: Adding file (sc91.local\sitecore\admin\serialization.aspx).
Info: Adding file (sc91.local\sitecore\admin\sessionsummary.aspx).
Info: Adding file (sc91.local\sitecore\admin\SetSACEndpoint.aspx).
Info: Adding file (sc91.local\sitecore\admin\ShowConfig.aspx).
Info: Adding file (sc91.local\sitecore\admin\ShowConfigLayers.aspx).
Info: Adding file (sc91.local\sitecore\admin\ShowServicesConfig.aspx).
Info: Adding file (sc91.local\sitecore\admin\SqlShell.aspx).
Info: Adding file (sc91.local\sitecore\admin\stats.aspx).
Info: Adding file (sc91.local\sitecore\admin\SupportPackage.aspx).
Info: Adding file (sc91.local\sitecore\admin\unlock_admin.aspx).
Info: Adding file (sc91.local\sitecore\admin\UpdateInstallationWizard.aspx).
Info: Adding file (sc91.local\sitecore\admin\UserInfo.aspx).
Info: Adding file (sc91.local\sitecore\admin\Web.config).
Info: Adding directory (sc91.local\sitecore\admin\Wizard).
Info: Adding file (sc91.local\sitecore\admin\Wizard\ChooseAppropriateUpdatePackage.ascx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\ConfigurationDiffSideBySide.aspx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\FixInstallationErrorsPage.ascx).
Info: Adding directory (sc91.local\sitecore\admin\Wizard\Images).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Images\ajax-loader.gif).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Images\bullet_square_blue.png).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Images\bullet_square_grey.png).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Images\bullet_square_red.png).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Images\bullet_square_yellow.png).
Info: Adding file (sc91.local\sitecore\admin\Wizard\InstallationLog.ascx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\InstallationResult.ascx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\InstallPackage.aspx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\InstallUpdatePackage.aspx).
Info: Adding directory (sc91.local\sitecore\admin\Wizard\Lib).
Info: Adding directory (sc91.local\sitecore\admin\Wizard\Lib\jquery.ui.1.7.3).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Lib\jquery.ui.1.7.3\jquery-ui.css).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Lib\jquery.ui.1.7.3\jquery-ui.min.js).
Info: Adding directory (sc91.local\sitecore\admin\Wizard\Lib\jsdifflib).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Lib\jsdifflib\difflib.js).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Lib\jsdifflib\diffview.css).
Info: Adding file (sc91.local\sitecore\admin\Wizard\Lib\jsdifflib\diffview.js).
Info: Adding file (sc91.local\sitecore\admin\Wizard\PickTaskWizardPage.ascx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\PreviewMetadataWizardPage.ascx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\ProcessUpdatePackage.ascx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\ResolveConfigFileConflicts.ascx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\ResolveConfigFileConflicts.css).
Info: Adding file (sc91.local\sitecore\admin\Wizard\ResolveConfigFileConflicts.js).
Info: Adding file (sc91.local\sitecore\admin\Wizard\SelectPackageWizardPage.ascx).
Info: Adding file (sc91.local\sitecore\admin\Wizard\UpdateInstallationWizard.css).
Info: Adding file (sc91.local\sitecore\admin\Wizard\WelcomeWizardPage.ascx).
Info: Adding file (sc91.local\sitecore\blocked.aspx).
Info: Adding directory (sc91.local\sitecore\Copyrights).
Info: Adding file (sc91.local\sitecore\Copyrights\almond_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\amdefine_8.2 BSD and MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\AntiCSRF_MSPL.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Antlr3_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Apache.NOTICE.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\array-find_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\asap_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\aspnet-redis-providers_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\babel-polyfill_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\babel-runtime_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\backbone.layoutmanager_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Backbone_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\balanced-match_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Base_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\basketjs_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\blanketjs_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Bootstrap-modal_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\bootstrap-slider.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Bootstrap_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\bowser_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\brace-expansion_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Canvas2Image_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\classlist-polyfill_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\classnames_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\clone_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Code Project - .NET Useful Functional Class Library_CPOL.html).
Info: Adding file (sc91.local\sitecore\Copyrights\Code Project - .NET's ThreadPool Class_CPOL.html).
Info: Adding file (sc91.local\sitecore\Copyrights\CommonServiceLocator_MSPL.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\concat-map_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Cookies_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\core-js_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\CsQuery_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\D3.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\d3_BSD.TXT).
Info: Adding file (sc91.local\sitecore\Copyrights\Date_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\deep-equal_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\deep-extend_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\DotNetOpenAuth_MSPL.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\EcmaScript.NET.modified_MPL.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\encoding_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\envify_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\es5-shim_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\esprima-fb_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\except_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\exenv_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\ExplorerCanvas_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Facebook SDK for .NET_MSPL.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Facebook-dotnet-solution_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Facebook-dotnet-solution_Apache_Notice.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\fbjs_BSD-3-Clause.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\flexie_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Flotr_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\globalize.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\glob_ISC.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Google OAuth2 API_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Google OAuth2 API_Apache_Notice.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Google-apis_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Google-apis_Apache_Notice.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Googleplus API_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Googleplus API_Apache_Notice.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\hammerjs_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Hammock_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\handlebar.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\hoist-non-react-statics_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\HtmlAgilityPack_MPL.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\iconv-lite_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\identitymodel-extensions_apache2.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\indexof_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\inflight_ISC.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\inherits_ISC.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\inline-style-prefix-all_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\inline-style-prefixer_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\invariant_BSD-3-Clause.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\isomorphic-fetch_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Jasmine_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery-ajax-unobtrusive_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery-validation-unobtrusive_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery-validation_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.battatech.excelexport.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jquery.battatech.excelexport_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.dialogextend_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.dynatree_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.Easing_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.filedrop_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.fileupload_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.iframe-transport_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.jCarousel_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.linedtextarea_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jquery.mCustomScrollbar_CCA30.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.migrate_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.mousewheel_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.oktips_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.qtip_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jquery.simulate_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.splitter_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.timepicker_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.tmpl_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.ui_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.watermark_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery.xml2json_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQueryypp.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery_elastislide_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery_extensions_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery_hammer_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jQuery_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\js-tokens_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\JsonNET_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jstorage_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\jstransform_BSD-3-Clause.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Knockout-jQueryUI_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\KnockoutJS_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Knockout_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\LinkedIn_notice.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash-es_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.debounce_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.findlastindex_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.findlast_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.find_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.isarguments_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.isarray_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.keys_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.throttle_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash.uniq_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._baseeachright_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._baseeach_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._basefindindex_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._basefind_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._baseiteratee_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._baseuniq_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._createset_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._getnative_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._setcache_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash._stringtopath_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\lodash_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Log4Net_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\loose-envify_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Lucene.Net.Contrib.Snowball_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Lucene.Net_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\markdown_License.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\merge_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.AspNet.Identity.Owin_MIT-.NET-Library.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.AspNet.OData_mit.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.Aspnet.Web.Optimization_rtw_enu.htm).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.AspNet.WebApi.Client_ms-pl.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.AspNet.WebApi.Core_ms-pl.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.AspNet.WebApi.Extensions.Compression.Server_Apache License Version 2.0.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.OData.Core_mit.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.OData.Edm_mit.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.Owin.Host.SystemWeb_MIT-.NET-Library.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Microsoft.Spatial_mit.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\minimatch_ISC.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Modernizr_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\moment-timezone_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\momentjs.with.localeMIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\momentjs_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\moment_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\MongoDBCSharpDriver_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\msn_webgrease_eula.htm).
Info: Adding file (sc91.local\sitecore\Copyrights\Mvp.Xml_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\NodaTime_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\node-fetch_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\nvd3_APACHE.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\NVelocity_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\object-assign_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\once_ISC.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\path-is-absolute_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\PhantomJS_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\promise_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\protobuf-net_Apache_License.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Prototype_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\q.js_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\query-string_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Qunit_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\radium_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\razor-generator_apache2.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-addons-transition-group_BSD-3-Clause.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-dom_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-input-autosize_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-onclickoutside_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-passthrough_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-redux_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-select_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-tooltip_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-treebeard_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react-utils_ISC.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\react_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Rebus.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\redux-logger_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\redux-thunk_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\redux_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\regenerator-runtime_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\require.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\RequireJS_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\rimraf_ISC.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\scriptaculous_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Select2_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\shallowequal_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\sizzle_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\SolrNet_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\source-map_BSD-3-Clause.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\strict-uri-encode_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\superagent-legacyIESupport_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\superagent_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\through_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\timelinejs_Apache.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\TweetSharp_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\ua-parser-js_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Underscore_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\velocity-animate_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\velocity-react_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\whatwg-fetch_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\wrappy_MIT.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Yahoo UI Library_BSD.txt).
Info: Adding file (sc91.local\sitecore\Copyrights\Yahoo.Yui.Compressor_BSD.txt).
Info: Adding directory (sc91.local\sitecore\debug).
Info: Adding file (sc91.local\sitecore\debug\default.aspx).
Info: Adding file (sc91.local\sitecore\debug\Profile.xslt).
Info: Adding file (sc91.local\sitecore\debug\Trace.xslt).
Info: Adding file (sc91.local\sitecore\default.aspx).
Info: Adding directory (sc91.local\sitecore\images).
Info: Adding file (sc91.local\sitecore\images\blank.gif).
Info: Adding file (sc91.local\sitecore\images\favicon.ico).
Info: Adding file (sc91.local\sitecore\images\Install1.png).
Info: Adding file (sc91.local\sitecore\images\Install2.png).
Info: Adding directory (sc91.local\sitecore\login).
Info: Adding file (sc91.local\sitecore\login\default.aspx).
Info: Adding file (sc91.local\sitecore\login\Drop_Wallpaper.jpg).
Info: Adding file (sc91.local\sitecore\login\Login.css).
Info: Adding file (sc91.local\sitecore\login\login.js).
Info: Adding file (sc91.local\sitecore\login\logo_new.png).
Info: Adding file (sc91.local\sitecore\login\scxLogo.gif).
Info: Adding directory (sc91.local\sitecore\MarketingAutomation).
Info: Adding file (sc91.local\sitecore\MarketingAutomation\RuleEditorOptions.ashx).
Info: Adding file (sc91.local\sitecore\no.css).
Info: Adding directory (sc91.local\sitecore\portal).
Info: Adding directory (sc91.local\sitecore\portal\IDE).
Info: Adding file (sc91.local\sitecore\portal\IDE\BodyTop.gif).
Info: Adding file (sc91.local\sitecore\portal\IDE\IDE.css).
Info: Adding directory (sc91.local\sitecore\portal\Tech).
Info: Adding file (sc91.local\sitecore\portal\Tech\cap_l.gif).
Info: Adding file (sc91.local\sitecore\portal\Tech\cap_m.gif).
Info: Adding file (sc91.local\sitecore\portal\Tech\cap_r.gif).
Info: Adding file (sc91.local\sitecore\portal\Tech\go_s.gif).
Info: Adding file (sc91.local\sitecore\portal\Tech\head.gif).
Info: Adding file (sc91.local\sitecore\portal\Tech\menu.gif).
Info: Adding file (sc91.local\sitecore\portal\Tech\menu_h.gif).
Info: Adding file (sc91.local\sitecore\portal\Tech\Tech.css).
Info: Adding file (sc91.local\sitecore\SelectedDatabase.ashx).
Info: Adding directory (sc91.local\sitecore\service).
Info: Adding directory (sc91.local\sitecore\service\Analytics).
Info: Adding directory (sc91.local\sitecore\service\Analytics\Session).
Info: Adding file (sc91.local\sitecore\service\Analytics\Session\AcceptSession.ashx).
Info: Adding file (sc91.local\sitecore\service\Analytics\Session\RedirectSession.ashx).
Info: Adding file (sc91.local\sitecore\service\error.aspx).
Info: Adding file (sc91.local\sitecore\service\Heartbeat.aspx).
Info: Adding file (sc91.local\sitecore\service\keepalive.aspx).
Info: Adding file (sc91.local\sitecore\service\noaccess.aspx).
Info: Adding file (sc91.local\sitecore\service\nolayout.aspx).
Info: Adding file (sc91.local\sitecore\service\nolicense.aspx).
Info: Adding file (sc91.local\sitecore\service\notfound.aspx).
Info: Adding directory (sc91.local\sitecore\service\xdb).
Info: Adding file (sc91.local\sitecore\service\xdb\disabled.aspx).
Info: Adding directory (sc91.local\sitecore\shell).
Info: Adding directory (sc91.local\sitecore\shell\Applications).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\CampaignField).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\CampaignField\CampaignField.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\default.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Filters).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Filters\FilterDetails).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Filters\FilterDetails\FilterDetails.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Filters\FilterDetails\FilterDetails.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Filters\FilterEditor.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Filters\SelectDatabaseRow.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\GoogleMap).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\GoogleMap\GoogleMap.html).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\MarketingCenter).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\MarketingCenter\default.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Personalization).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Carousel).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Carousel\jquery.jcarousel.min.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Carousel\skin.css).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Chart).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Chart\base64.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Chart\canvas2image.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Chart\canvastext.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Chart\excanvas.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Chart\flotr.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Chart\RadarChart.html).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Chart\RadarChart.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Personalization\FieldTypes).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\FieldTypes\ProfileCardForm.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\PresetList.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\PresetList.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\ProfileCardsForm.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Recalculate.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\SelectMultiplePresets.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\SelectSinglePreset.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Personalization\TextBoxSlider).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\TextBoxSlider\TextBoxSlider.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Personalization\ToolTip).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\ToolTip\PresetDetailsTooltip.ascx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\ToolTip\RenderToolTipService.asmx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Personalization\Tooltip.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\SegmentBuilder).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\SegmentBuilder\SegmentBuilder.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\SegmentBuilder\SegmentBuilder.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\Subscription).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\Subscription\Subscription.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\SynchronizeDatabase).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\SynchronizeDatabase\SynchronizeDatabase.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\TrackingField).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\TrackingField\Goals.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\TrackingField\TrackingField.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\TrackingField\TrackingField.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\TrackingField\TrackingFieldDetails.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Analytics\VisitorIdentifications).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\VisitorIdentifications\VisitorIdentification.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Analytics\VisitorIdentifications\VisitorIdentification.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Archives).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Archives\RecycleBin).
Info: Adding file (sc91.local\sitecore\shell\Applications\Archives\RecycleBin\RecycleBin.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Archives\RecycleBin\RecycleBin.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Archives\RecycleBin\RecycleBin.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\blank.html).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\AddTab.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\BucketDatasourceLink.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\BucketInternalLink.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\BucketLink.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\BucketSearchUI.ascx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\DataSourceResult.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\FieldResults.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\images).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\alert.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\analytics.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\analytics_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\arrows.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\arrow_left.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\arrow_left_h.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\arrow_right.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\arrow_right_h.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\author.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\author.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\authormust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\authornot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\authorshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\blank.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\cancel.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\chevron-medium-fat-1-01.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\chevron-medium-fat-2-01.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\chevron-medium-fat-3-01.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\chevron-medium-fat-4-01.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\chevron-small-1-01.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\chevron-small-2-01.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\chevron-small-3-01.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\chevron-small-4-01.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\clear.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\custom.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\custom.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\custommust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\customnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\customshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\datas-funnel.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\date.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\date.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\datemust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\datenot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\dateshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\debug.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\debug.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\debugmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\debugnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\debugshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\default.jpg).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\defaultblur.jpg).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\down.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\edition-magnifier.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\end.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\end.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\endmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\endnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\endshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\extension.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\extensionmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\extensionnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\extensionshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\field.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\field.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\fieldmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\fieldnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\fieldshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\file.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\file.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\filemust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\filenot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\fileshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\filetype.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\filetypemust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\filetypenot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\filetypeshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\gallery.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\gray_gradient.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\grid.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\gridhover.png).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\images\icons).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\icons\down.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\icons\up.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\id.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\id.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\idmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\idnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\idshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\image.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\imagesearch.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\image_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\infinitescroll.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\infinitescroll_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\language.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\language.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\languagemust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\languagenot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\languageshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\left.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\Left.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\list.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\listhover.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\load.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\loading.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\location.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\location.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\locationmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\locationnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\locationshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\lock.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\lockNew.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\lockNew_open.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\lock_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\map.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\map_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\must.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\nav.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\next.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\not.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\notauthor.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\notauthor.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\notmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\notsite.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\notsite.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\nottag.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\nottag.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\nottemplate.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\nottemplate.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\nottext.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\pagination_next.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\pagination_previous.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\persona.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\persona_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\pin-on.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\pin.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\pin.jpg).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\pin.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\pindown.jpg).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\prev.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\preview.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\preview_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\profile.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\profile_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\recent.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\recentmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\recentnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\recentshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\ref.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\ref.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\refmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\refnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\refresh.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\refshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\right.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\right.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\Right2.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\right_4.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sc-spinner16.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sc-spinner32.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\search.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\search_home.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\settings-hammer.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\site.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\site.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sitemust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sitenot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\siteshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sort.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sort.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortasc.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortdesc.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortdesc.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortdescmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortdescnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortdescshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sortshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\sound.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\soundmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\soundnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\soundshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\star.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\start.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\start.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\startdate.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\startdatemust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\startdatenot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\startdateshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\startmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\startnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\startshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\switch.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\table.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\table_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\tag.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\tag.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\tagmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\tagnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\tagshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\tagview.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\tagview_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\template.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\template.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\templatemust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\templatenot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\templateshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\text.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\text.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\textmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\textnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\textshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\thin-arrow-left.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\thin-arrow-right.png).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\images\Thumbnails).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\Thumbnails\audio.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\Thumbnails\document.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\Thumbnails\file.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\Thumbnails\video.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\up.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\updatedby.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\updatedbymust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\updatedbynot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\updatedbyshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\version.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\version.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\versionmust.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\versionnot.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\versionshould.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\video.jpg).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\video.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\video_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\view_grid.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\view_grid_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\view_list.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\images\view_list_selected.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\InsertLink.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\ItemBucket.asmx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\ItemBucketsSearchResult.Master).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\almond).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\almond\almond.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\es5-shim).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\es5-shim\es5-shim.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery\jquery-1.10.2-vsdoc.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery\jquery-1.10.2.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery\jquery-1.10.2.min.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery\jquery-migrate-1.2.1.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-linedtextarea).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-linedtextarea\jquery-linedtextarea.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-linedtextarea\jquery-linedtextarea.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\animated-overlay.gif).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-bg_flat_0_aaaaaa_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-bg_flat_55_fbf9ee_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-bg_flat_65_ffffff_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-bg_flat_75_cccccc_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-bg_flat_75_dadada_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-bg_flat_75_e6e6e6_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-bg_flat_75_ffffff_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-bg_flat_95_fef1ec_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-icons_222222_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-icons_2e83ff_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-icons_454545_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-icons_888888_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\images\ui-icons_cd0a0a_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\jquery-ui-1.10.3.custom.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\css\smoothness\jquery-ui-1.10.3.custom.min.css).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\js\jquery-ui-1.10.3.custom.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\js\jquery-ui-1.10.3.custom.min.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\jquery-ui\js\jquery-ui-culture.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\knockout).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\knockout\knockout-3.0.0.debug.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\knockout\knockout-3.0.0.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\knockout-jqueryui).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\knockout-jqueryui\knockout-jqueryui.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\knockout-jqueryui\knockout-jqueryui.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\libs\requirejs).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\requirejs\require-2.1.9.debug.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\libs\requirejs\require-2.1.9.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\MediaBrowser.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\MiniResults.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Rebuild.asmx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\Scripts).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\BucketLink.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\build.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\customBindings.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\InsertLinkOverride.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\ItemBucket.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\ItemBucket.utils.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\jquery.noconflict.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\main.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\main.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\Scripts\searchBox).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\searchBox\clientSideHooks.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\searchBox\controlTypes.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\searchBox\filterViewModel.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\searchBox\getSearchFilters.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\searchBox\operationUtils.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Scripts\searchBox\searchBoxViewModel.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\SearchBox.ascx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\Services).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Services\Search.ashx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\ShowResult.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Buckets\Styles).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Styles\core.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Styles\IB_vd.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Styles\ItemBucket.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Styles\jquery-ui.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Styles\ListNew.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Styles\reset.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Styles\searchBox.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\Styles\SiteNew.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Buckets\WebEditSearch.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Carousel).
Info: Adding file (sc91.local\sitecore\shell\Applications\Carousel\Carousel.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\ClientUsesOSWindows.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Content Editor.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Content Editor.Search.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Default.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Aliases).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Aliases\Aliases.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\EditHtml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\EditHtml\EditHtml.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\EditHtml\ValidateXHtml.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\FixHtml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\FixHtml\FixHtml.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\LayoutDetails).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\LayoutDetails\LayoutDetails.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\OneColumnPreview).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\OneColumnPreview\OneColumnPreview.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Properties).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Properties\Properties.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Properties\Properties.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Properties\SystemMenu Archive.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Properties\SystemMenu Information.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Properties\SystemMenu Reminder.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Properties\SystemMenu Statistics.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Properties\SystemMenu Workflow.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\ResetFields).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\ResetFields\ResetFields.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Help).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Help\Set Help.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Icon).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Icon\Set Icon.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Icon\SetIcon.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Publishing).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Publishing\Set Publishing.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Subitems Sorting).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Subitems Sorting\Set Subitems Sorting.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Tree Node Style).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\Set Tree Node Style\Set Tree Node Style.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\SetMasters).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\SetMasters\SetMasters.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\SetMasters\SetMasters.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\SetThumbnail).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\SetThumbnail\SetThumbnail.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\SetThumbnail\SetThumbnail.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\TreeListExEditor).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\TreeListExEditor\TreeListExEditor.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\TreeListExEditor\TreeListExEditor.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\ValidationResult).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Dialogs\ValidationResult\ValidationResult.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Editors).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Editors\Folder).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Editors\Folder\Folder.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Editors\Preview).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Editors\Preview\Preview.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Editors\Preview\Preview.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Editors\Preview\Preview.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Execute.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\FieldEditor.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Access Viewer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Access Viewer\Gallery Access Viewer.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Archives).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Archives\Gallery Archive.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Domains).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Domains\GalleryDomains.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Favorites).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Favorites\Gallery Favorites.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Gallery Grip.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Gallery Option.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Gallery.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Gallery.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Gallery.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Icons).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Icons\Gallery Icons.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Icons\Gallery Icons.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Indexes).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Indexes\Gallery.Indexes.Option.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Indexes\Gallery.Indexes.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Languages).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Languages\Gallery Languages.Option.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Languages\Gallery Languages.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Layout).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Layout\Gallery Layout.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\LayoutPresets).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\LayoutPresets\GalleryLayoutPresets.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Links).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Links\Gallery Links.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Links\Gallery Links.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Links\Gallery Usage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Menus).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Menus\Gallery Menu.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\New).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\New\Gallery New.Option.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\New\Gallery New.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Open).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Open\Gallery Open.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Reminders).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Reminders\Gallery Reminder.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Security).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Security\Gallery Security.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Security Presets).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Security Presets\Gallery Security Presets.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Subitems).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Subitems\Gallery Subitems.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Users).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Users\GalleryUsers.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Versions).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Versions\Gallery Versions.Option.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\Versions\Gallery Versions.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\WorkflowEdit).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Galleries\WorkflowEdit\GalleryWorkflowEdit.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Localization).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Localization\RadSpell.Dialog.de-DE.resx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Localization\RadSpell.Dialog.fr-FR.resx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Localization\RadSpell.Dialog.resx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\Skins).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Skins\Default.skin.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Skins\Tabular.skin.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\Validator.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\EditField.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\InsertImage.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\InsertImage.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\InsertLink.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\InstallActiveX.htm).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\Load.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\officeviewer.cab).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\Preview.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\WebEdit.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Content Manager\WordOCX\WordOCX.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ContentSearch).
Info: Adding file (sc91.local\sitecore\shell\Applications\ContentSearch\IndexingManager.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\ContentSearch\SolrSchemaBuilder.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\ContentSearch\SolrSchemaPopulate.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ControlPanel).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ControlPanel\ControlPanel).
Info: Adding file (sc91.local\sitecore\shell\Applications\ControlPanel\ControlPanel\ControlPanel.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\ColorPicker).
Info: Adding file (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\ColorPicker\ColorPicker.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\RegionalSettings).
Info: Adding file (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\RegionalSettings\RegionalSettings.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\UserInformation).
Info: Adding file (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\UserInformation\UserInformation.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\UserOptions).
Info: Adding file (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\UserOptions\UserOptions.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\Wallpaper).
Info: Adding file (sc91.local\sitecore\shell\Applications\ControlPanel\Preferences\Wallpaper\Wallpaper.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Databases).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Databases\CleanUp).
Info: Adding file (sc91.local\sitecore\shell\Applications\Databases\CleanUp\CleanUp.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Databases\DatabaseUsage).
Info: Adding file (sc91.local\sitecore\shell\Applications\Databases\DatabaseUsage\DatabaseUsage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Debugger).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\counter.xslt).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\Debug.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\Debugger page.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\Debugger viewer.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\Debugger.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Debugger\Portlets).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Debugger\Portlets\Debugger Debugging).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\Portlets\Debugger Debugging\Debugger Debugging Portlet.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Debugger\Portlets\Debugger Profiling).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\Portlets\Debugger Profiling\Debugger Profiling Portlet.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Debugger\Portlets\Debugger Tracing).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\Portlets\Debugger Tracing\Debugger Tracing Portlet.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Debugger\RenderingInfo).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\RenderingInfo\Rendering Info Not Found.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Debugger\RenderingInfo\Rendering Info.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\About).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\About\About.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Alert).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Alert\Alert.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\AnchorLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\AnchorLink\AnchorLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Archive item).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Archive item\Archive date.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Attach).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Attach\Attach.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Attach\Attach.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Attach\Attach2.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Clone).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Clone\CloneItem.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Confirm).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Confirm\Confirm.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\ContinueAlwaysAbort).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\ContinueAlwaysAbort\ContinueAlwaysAbort.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\CopyTo).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\CopyTo\CopyTo.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\CustomizeRibbon).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\CustomizeRibbon\CustomizeRibbon.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\DateTimeSelectors).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\DateTimeSelectors\DateTimeSelector.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\DesktopLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\DesktopLink\DesktopLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Diff).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Diff\Diff.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Diff\Diff.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\ExternalLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\ExternalLink\ExternalLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\GeneralLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\GeneralLink\GeneralLink.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\GeneralLink\GeneralLink.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\GeneralLink\GeneralLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\InsertLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\InsertLink\InsertLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\InternalLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\InternalLink\InternalLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\ItemLister).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\ItemLister\ItemLister.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\JavascriptLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\JavascriptLink\JavascriptLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\MailLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\MailLink\MailLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\MediaLink).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\MediaLink\MediaLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\MoveTo).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\MoveTo\MoveTo.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\OrganizeFavorites).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\OrganizeFavorites\OrganizeFavorites.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Progress).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Progress\ProgressDialog.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Progress\ProgressDialog.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Progress\ProgressDialog.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Prompt).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Prompt\prompt.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Prompt\Prompt.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Publish).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Publish\Publish.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Publish\Publish.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\PublishingViewer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\PublishingViewer\PublishingViewer.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\RebuildLinkDatabase).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\RebuildLinkDatabase\RebuildLinkDatabase.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Reminder).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Reminder\Reminder.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\ResetLayout).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\ResetLayout\ResetLayout.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\SelectItem).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\SelectItem\SelectItem.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\SelectItems).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\SelectItems\SelectItems.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\SelectLayoutPreset).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\SelectLayoutPreset\SelectLayoutPreset.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\SelectRendering).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\SelectRendering\SelectRendering.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\SelectRenderingDatasource).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\SelectRenderingDatasource\SelectRenderingDatasource.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\SelectRenderingDatasource\SelectRenderingDatasource.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\SilverlightNotification).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\SilverlightNotification\silverlightNotification.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\SilverlightNotification\silverlightNotification.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Sort).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Sort\Sort.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Sort\Sort.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Sort\Sort.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Testing).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Testing\SetTestDetails.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Testing\SetTestDetails.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Testing\SetTestDetails.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\TransferToDatabase).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\TransferToDatabase\TransferToDatabase.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\Upload).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Upload\Upload.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Upload\Upload.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\Upload\Upload2.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Dialogs\YesNoCancel).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\YesNoCancel\YesNoCancel.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Dialogs\YesNoCancel\YesNoCancelAll.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\DucatShell.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\ExternalApplication.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Feeds).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Feeds\Layouts).
Info: Adding file (sc91.local\sitecore\shell\Applications\Feeds\Layouts\FeedDeliveryLayout.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Feeds\SetFeedPresentation).
Info: Adding file (sc91.local\sitecore\shell\Applications\Feeds\SetFeedPresentation\SetFeedPresentation.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Files).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Files\FileBrowser).
Info: Adding file (sc91.local\sitecore\shell\Applications\Files\FileBrowser\FileBrowser.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Files\FileExplorer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Files\FileExplorer\FileExplorer.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Files\FileLister).
Info: Adding file (sc91.local\sitecore\shell\Applications\Files\FileLister\FileLister.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Files\FileSaver).
Info: Adding file (sc91.local\sitecore\shell\Applications\Files\FileSaver\FileSaver.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\FlashUpload).
Info: Adding directory (sc91.local\sitecore\shell\Applications\FlashUpload\Advanced).
Info: Adding file (sc91.local\sitecore\shell\Applications\FlashUpload\Advanced\UploadTarget.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\FlashUpload\Attach).
Info: Adding file (sc91.local\sitecore\shell\Applications\FlashUpload\Attach\Attach.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\FlashUpload\Attach\AttachTarget.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\FlashUpload\Simple).
Info: Adding file (sc91.local\sitecore\shell\Applications\FlashUpload\Simple\SimpleUpload.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\FlashUpload\Upload.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Floatie).
Info: Adding file (sc91.local\sitecore\shell\Applications\Floatie\default.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Floatie\Floatie.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\FXM).
Info: Adding file (sc91.local\sitecore\shell\Applications\FXM\EmptyLayout.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\FXM\ExperienceEditor.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\GlobalHeader.ascx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Globalization).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Globalization\AddLanguage).
Info: Adding file (sc91.local\sitecore\shell\Applications\Globalization\AddLanguage\AddLanguage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Globalization\DeleteLanguage).
Info: Adding file (sc91.local\sitecore\shell\Applications\Globalization\DeleteLanguage\DeleteLanguage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Globalization\ExportLanguage).
Info: Adding file (sc91.local\sitecore\shell\Applications\Globalization\ExportLanguage\ExportLanguage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Globalization\ImportLanguage).
Info: Adding file (sc91.local\sitecore\shell\Applications\Globalization\ImportLanguage\ImportLanguage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Globalization\SelectLanguage).
Info: Adding file (sc91.local\sitecore\shell\Applications\Globalization\SelectLanguage\SelectLanguage.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Globalization\UntranslatedFields).
Info: Adding file (sc91.local\sitecore\shell\Applications\Globalization\UntranslatedFields\UntranslatedFields.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Globalization\UntranslatedFields\UntranslatedFieldsViewer.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Globalization\WorldLingo).
Info: Adding file (sc91.local\sitecore\shell\Applications\Globalization\WorldLingo\WorldLingo.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Controls).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\BehaviourOptionEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\EditorHost.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Controls\Filters).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\FileDateFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\FileNameFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\FilesFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\ItemDateFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\ItemLanguageFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\ItemNameFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\ItemPublishFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\ItemsFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\ItemTemplateFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Filters\ItemUserFilterEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\ListEditor.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Controls\Metadata).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Metadata\customattributeseditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Metadata\MetadataEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\PackageViewer.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\ProjectView.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\SelectAccount.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\ExplicitFileSourceEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\ExplicitItemSourceEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\filesourceeditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\filesourcerooteditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\itemsourceeditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\itemsourcerooteditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\ListSourceEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\NameEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\SecuritySourceEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\sourceoutputeditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Source Editors\sourceviewer.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Controls\Widgets).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Widgets\fieldset.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Widgets\flatbutton.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Widgets\sectionframe.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Widgets\statusbar.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Widgets\statusbarsection.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Controls\Widgets\treeview.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Designer.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Designer.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\BrowseDialog.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\Build package).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Build package\BuildPackage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\File Browser).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\File Browser\File browser.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\Install package).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Install package\GetPasteMode.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Install package\Install Package.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\Project).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Project\OpenProject.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\Search).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Search\AddFileSource.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Search\AddItemSource.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\Security).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Security\AddSecuritySourceDialog.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\Static).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Static\AddFilesDialog.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Static\AddItemsDialog.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Static\AddStaticFileSourceDialog.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Static\AddStaticItemSourceDialog.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\Text Editor).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Text Editor\TextEditor.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Dialogs\Upload package).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Upload package\UploadPackage.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Upload package\UploadPackage.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Dialogs\Upload package\UploadPackage2.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Install\Galleries).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Galleries\NewProject.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\installer.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\installer.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Install\Preview.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ItemBrowser).
Info: Adding file (sc91.local\sitecore\shell\Applications\ItemBrowser\ItemBrowser.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor\CopyDeviceTo.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor\DeviceEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor\DeviceRendering.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor\LayoutFieldDevice.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor\LayoutFieldDeviceReadOnly.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor\LayoutFieldToolbutton.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor\PlaceholderEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\DeviceEditor\RenderingEditor.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Dialogs\SelectControl).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Dialogs\SelectControl\SelectControl.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\Dialogs\GridProperties).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\Dialogs\GridProperties\GridProperties.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\Galleries).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\Galleries\Predefined).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\Galleries\Predefined\Predefined.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\Galleries\Predefined\PredefinedOption.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\GridDesigner.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\GridDesigner.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\GridDesigner.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\GridDesigner\GridDesignerControl.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\HtmlViewer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\HtmlViewer\HtmlViewer.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\HtmlViewer\HtmlViewer.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\HtmlViewer\HtmlViewer.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Dialogs\New File).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Dialogs\New File\IDE New File.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Dialogs\Rendering Properties).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Dialogs\Rendering Properties\IDE Rendering properties.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Content Editor).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Content Editor\IDE Content Editor.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\HTML).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\HTML\IDE Html Editor Control.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\HTML\IDE Html Editor Control.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\HTML\IDE Html Editor Controls Control.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\HTML\IDE Html Editor Controls Placeholder.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\HTML\IDE Html Editor Controls Rendering.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\HTML\IDE Html Editor.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Profiler).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Profiler\Counters.xslt).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Profiler\IDE Profiler.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Startpage).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Startpage\IDE Startpage.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Startpage\IDE.TaskOption.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Text).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Text\IDE Text.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Xslt).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Xslt\IDE Xslt Preview.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Editors\Xslt\IDE Xslt.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\IDE.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\IDE.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\IDE.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\IDE.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\IDEFullscreen.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Windows).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Windows\Templates).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Windows\Templates\IDE Templates.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Windows\Toolbox).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Windows\Toolbox\IDE Toolbox Pane.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Windows\Toolbox\IDE Toolbox.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Windows\Toolbox\IDE Toolbox.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Wizards).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\IDE\Wizards\New File Wizard).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\IDE\Wizards\New File Wizard\IDE New File Wizard.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layout lister).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layout lister\Layout lister.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Dialogs\Rendering properties.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Layouter control.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Layouter.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\LayouterControl.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\ASPX).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\ASPX\Layouter ASPX.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\Image).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\Image\Layouter image.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\Layout manager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\Layout manager\Layouter manager.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\Rendering manager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\Rendering manager\Rendering manager.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\Text).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Viewers\Text\Layouter Text.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards\New layout).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards\New layout\New layout.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards\New sublayout).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards\New sublayout\New sublayout.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards\New XML layout).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards\New XML layout\New XML layout.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards\New XSL).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\Layouter\Wizards\New XSL\New xsl.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesigner.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesigner.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesigner.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesignerAdd.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesignerAdd.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesignerNew.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesignerNew.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesignerNew.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\PageDesigner\PageDesignerNoLayout.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Layouts\RenderingLister).
Info: Adding file (sc91.local\sitecore\shell\Applications\Layouts\RenderingLister\RenderingLister.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Licenses).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Licenses\LicenseDetails).
Info: Adding file (sc91.local\sitecore\shell\Applications\Licenses\LicenseDetails\LicenseDetails.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Licenses\LicenseOverview).
Info: Adding file (sc91.local\sitecore\shell\Applications\Licenses\LicenseOverview\LicenseOverview.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Links).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Links\BreakingLinks).
Info: Adding file (sc91.local\sitecore\shell\Applications\Links\BreakingLinks\BreakingLinks.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Links\BreakingLinks\BreakingLinks.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Links\EditLinks).
Info: Adding file (sc91.local\sitecore\shell\Applications\Links\EditLinks\EditLinks.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Links\EditLinks\EditLinks.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Links\Fix links).
Info: Adding file (sc91.local\sitecore\shell\Applications\Links\Fix links\Fix links.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Links\Update links).
Info: Adding file (sc91.local\sitecore\shell\Applications\Links\Update links\Update links.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Login).
Info: Adding file (sc91.local\sitecore\shell\Applications\Login\System page.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Login\System page.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Masters).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Masters\AddFromMaster).
Info: Adding file (sc91.local\sitecore\shell\Applications\Masters\AddFromMaster\AddFromMaster.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Masters\MasterLister).
Info: Adding file (sc91.local\sitecore\shell\Applications\Masters\MasterLister\MasterLister.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\File item viewer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\File item viewer\File item viewer open.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\File item viewer\File item viewer.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\Image item viewer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\Image item viewer\Image item viewer.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\ImageProperties).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\ImageProperties\ImageProperties.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\Imager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\Imager\Image resize.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\Imager\Imager.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\Imager\Imager.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\MediaBrowser).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\MediaBrowser\MediaBrowser.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\MediaFolder).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\MediaFolder\MediaFolder.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\MediaFolder\MediaFolder.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\MediaPlayer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\MediaPlayer\MediaPlayer.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\MediaShop).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\MediaShop\default.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\MediaShop\MediaListviewItem.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\MediaShop\MediaShop Preview Portlet.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\MediaShop\MediaShop.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\Upload Media).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\Upload Media\UploadMedia.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\Upload Media\UploadMedia.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\Upload Media\UploadMedia2.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Media\UploadManager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\UploadManager\Result.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\UploadManager\Result.aspx.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\UploadManager\Upload.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\UploadManager\Upload.aspx.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\UploadManager\Uploading.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Media\UploadManager\UploadManager.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Notification).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\images).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\images\indicator-med-down.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\images\indicator-med-equal.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\images\indicator-med-up.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\images\indicator-small-down.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\images\indicator-small-equal.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\images\indicator-small-up.png).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\NoWinner.html).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\RollbackPrevious.html).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\Simple).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\Simple\NoWinner.txt).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\Simple\RollbackPrevious.txt).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\Simple\WinnerFound.txt).
Info: Adding file (sc91.local\sitecore\shell\Applications\Notification\EmailTemplates\WinnerFound.html).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Page Modes).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Cache.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Chrome.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeControls.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeFrame.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeHighlightManager.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeManager.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeOverlay.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Page Modes\ChromeTypes).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeTypes\ChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeTypes\EditFrameChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeTypes\FieldChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeTypes\PlaceholderChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeTypes\RenderingChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeTypes\WordFieldChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\ChromeTypes\WrapperlessFieldChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\DesignManager.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Event.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\HighlightFrame.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\HoverFrame.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\InlineEditingUtil.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\LayoutDefinition.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\MoveControlFrame.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\NotificationBar.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\PageEditor.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\PageEditorProxy.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Page Modes\Personalization).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Personalization\Condition.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Personalization\ConditionStateStorage.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Personalization\ControlsContext.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Personalization\DropDown.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Personalization\GetConditionDescription.ashx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Personalization\Panel.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Personalization\RenderingCache.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\PlaceholderInsertion.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\PlaceholderSorting.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Position.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\PositioningManager.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Page Modes\RichControls).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Page Modes\RichControls\Bar).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\RichControls\Bar\Bar.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\RichControls\Bar\Panel.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\RichControls\Context.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\SelectionFrame.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Page Modes\Testing).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Testing\ControlsContext.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Testing\DropDown.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Testing\Panel.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Testing\RenderingCache.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Page Modes\Utility.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\PageScreenshots).
Info: Adding file (sc91.local\sitecore\shell\Applications\PageScreenshots\default.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\PageScreenshots\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\Applications\PageScreenshots\Dialogs\ServiceNotPurchased.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\PageScreenshots\screenshots.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\PageScreenshots\screenshots.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\PageScreenshots\ScreenshotsHandler.ashx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Portlets).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Portlets\Portal configurator).
Info: Adding file (sc91.local\sitecore\shell\Applications\Portlets\Portal configurator\Portal configurator.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Preview).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Preview\SimulatedDevicePreview).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Preview\SimulatedDevicePreview\Layouts).
Info: Adding file (sc91.local\sitecore\shell\Applications\Preview\SimulatedDevicePreview\Layouts\default.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Preview\SimulatedDevicePreview\Layouts\DeviceRotation.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Preview\SimulatedDevicePreview\Scripts).
Info: Adding file (sc91.local\sitecore\shell\Applications\Preview\SimulatedDevicePreview\Scripts\RegisterCss.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Preview\SimulatedDevicePreview\Scripts\ReplaceFlash.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Preview\SimulatedDevicePreview\Scripts\ReplaceSilverlight.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Preview.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\ReferringSiteClassification).
Info: Adding file (sc91.local\sitecore\shell\Applications\ReferringSiteClassification\ReferringSiteClassification.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Reports).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Reports\LogViewer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Reports\LogViewer\LogViewer.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Reports\LogViewer\LogViewer.xsl).
Info: Adding file (sc91.local\sitecore\shell\Applications\Reports\LogViewer\LogViewerDetails.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Rules).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Rules\MarketingAutomation).
Info: Adding file (sc91.local\sitecore\shell\Applications\Rules\MarketingAutomation\SelectPlanActivity.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Rules\RulesDetails).
Info: Adding file (sc91.local\sitecore\shell\Applications\Rules\RulesDetails\RulesDetails.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Rules\RulesDetails\RulesDetails.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Rules\RulesEditor).
Info: Adding file (sc91.local\sitecore\shell\Applications\Rules\RulesEditor\RulesEditor.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Rules\RulesEditor\RulesEditor.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Rules\RulesEditor\RulesEditor.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Search).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Search\Instant).
Info: Adding file (sc91.local\sitecore\shell\Applications\Search\Instant\InstantSearch.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Search\Instant\InstantSearch.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Search\Instant\InstantSearch.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Search\Search).
Info: Adding file (sc91.local\sitecore\shell\Applications\Search\Search\Search advanced.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Search\Search\Search.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Search\Search\Search.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\AccessViewer).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\AccessViewer\AccessViewer.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\AccessViewer\AccessViewerLegend.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\AccessViewer\SelectColumns.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\ChangePassword).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\ChangePassword\changepassword.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\CreateNewUser).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\CreateNewUser\CreateNewUser.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\DomainManager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\DomainManager\DomainManager.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\DomainManager\EditDomain.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\DomainManager\NewDomain.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\EditManagedDomains).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\EditManagedDomains\EditManagedDomains.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\EditUser).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\EditUser\EditUser.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\FlexiGrid.css).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\ItemSecurityEditor).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\ItemSecurityEditor\ItemSecurityEditor.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\ItemSecurityEditor\ItemSecurityEditor.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\ItemSecurityEditor\ItemSecurityEditor.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\RoleManager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\RoleManager\NewRole.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\RoleManager\RoleManager.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\RoleManager\ViewMembers.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\RoleManager\ViewParentRoles.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\SecurityDetails).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SecurityDetails\SecurityDetails.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SecurityDetails\SecurityDetails.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\SecurityEditor).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SecurityEditor\SecurityEditor.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SecurityEditor\SecurityEditor.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SecurityEditor\SecurityEditor.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SecurityEditor\SecurityEditorLegend.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SecurityEditor\SelectColumns.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\SelectAccount).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SelectAccount\SelectAccount.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\SelectRoles).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SelectRoles\SelectRoles.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\SetOwner).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SetOwner\SetOwner.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\SetPassword).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\SetPassword\SetPassword.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\UserManager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\UserManager\UserManager.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\UserRoleList).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\UserRoleList\UserRoleList.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\UserRoleList\UserRoleList.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Security\UserRoleSelector).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\UserRoleSelector\UserRoleSelector.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\UserRoleSelector\UserRoleSelector.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Security\UserRoleSelector\UserRoleSelector.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Shell.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\SitecoreApps).
Info: Adding file (sc91.local\sitecore\shell\Applications\SitecoreApps\Loader.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Startbar).
Info: Adding file (sc91.local\sitecore\shell\Applications\Startbar\Startbar.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates\AddFromTemplate).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\AddFromTemplate\AddFromTemplate.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\AddFromTemplate\AddFromTemplate.xml.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates\ChangeTemplate).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\ChangeTemplate\ChangeTemplate.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates\CreateTemplate).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\CreateTemplate\CreateTemplate.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates\SetBaseTemplates).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\SetBaseTemplates\SetBaseTemplates.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates\TemplateBuilder).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\TemplateBuilder\TemplateBuilder.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\TemplateBuilder\TemplateBuilder.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\TemplateBuilder\TemplateBuilder.xml.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates\TemplateInheritance).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\TemplateInheritance\TemplateInheritance.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates\TemplateLister).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\TemplateLister\Template lister.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Templates\TemplateManager).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\TemplateManager\default.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Templates\TemplateManager\TemplateManager.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Tools).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Tools\Broken links).
Info: Adding file (sc91.local\sitecore\shell\Applications\Tools\Broken links\Broken link details.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Tools\Broken links\Broken links.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Tools\Keyboard map).
Info: Adding file (sc91.local\sitecore\shell\Applications\Tools\Keyboard map\Keyboard map.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Tools\Run).
Info: Adding file (sc91.local\sitecore\shell\Applications\Tools\Run\Run.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebDAV).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebDAV\Default.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebDAV\Frame.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebDAV\WebDAVBrowser.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\LockedItems).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\LockedItems\LockedItems.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\Personalization).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\Personalization\Effect.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\Personalization\kpi.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\Personalization\Personalization.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\Personalization\Personalization.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\Personalization\Personalization.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\Personalization\Reach.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\PlaceholderSettings).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Dialogs\PlaceholderSettings\PlaceholderSettings.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit\Galleries).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit\Galleries\Device Simulators).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Galleries\Device Simulators\Device Simulators.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Galleries\Device Simulators\DeviceSimulators.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Galleries\Gallery.js).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit\Galleries\Personalization).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Galleries\Personalization\Profile Cards.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\WebEdit\Galleries\Testing).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Galleries\Testing\Gallery Page Variations.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\PageDesignerError.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\Palette.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\prototypeWebEdit.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\TestCombinations.ashx).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\WebEdit.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\WebEditRibbon.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit\WebEditRibbon.js).
Info: Adding file (sc91.local\sitecore\shell\Applications\WebEdit.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Workbox).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\CommentEditor.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\Default.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\Workbox.aspx).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\Workbox.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\WorkboxCommand.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\WorkboxHistory.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\WorkboxHistoryEntry.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\WorkboxItem.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Workbox\WorkboxToolbar.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Xaml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Button.xaml.xml).
Info: Adding directory (sc91.local\sitecore\shell\Applications\Xaml\Controls).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Controls\BaseDialogPage.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Controls\DialogPage.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Controls\HtmlBody.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Controls\HtmlPage.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Controls\ModalDialogPage.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Controls\Wizard.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Controls\XhtmlPage.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Hello.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Styles.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Tutorials.Ajax.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Tutorials.Basic.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Tutorials.Common.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Tutorials.Index.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Tutorials.Language.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Tutorials.Server.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Tutorials.Styles.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\Tutorials.xaml.css).
Info: Adding file (sc91.local\sitecore\shell\Applications\Xaml\WebControl.xaml.xml).
Info: Adding file (sc91.local\sitecore\shell\blank.html).
Info: Adding directory (sc91.local\sitecore\shell\client).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Chunks).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Chunks\campaignExecution.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Chunks\campaignInfo.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\AnalyticsChecker).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\AnalyticsChecker\AnalyticsChecker.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\AnalyticsChecker\analyticsChecker.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\CampaignClassifications).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\CampaignClassifications\CampaignClassifications.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\CampaignClassifications\campaignClassifications.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\CampaignDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\CampaignDataSource\CampaignDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\CampaignDataSource\CampaignDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\TreeListExEditor).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\TreeListExEditor\TreeListExEditor.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Controls\TreeListExEditor\TreeListExEditor.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Pages).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Pages\Dashboard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Pages\Dashboard\Dashboard.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Pages\Tasks).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Pages\Tasks\Campaign.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Resources).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Resources\constants.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Resources\dictionary.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\CampaignManager\Utils).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Utils\antiForgeryUtils.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Utils\campaignActionsManager.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Utils\fileDownloader.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Utils\langResolver.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Utils\messages.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\CampaignManager\Utils\urlParser.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\3rdpartylicenses.txt).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\assets).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\assets\preview-image.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\assets\trophy.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\favicon.ico).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\index.aspx).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\inline.19fe4765dc2bb7f4dbc0.bundle.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\main.11b5063a8007e30961b1.bundle.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\polyfills.550f19d7d5888922986b.bundle.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\styles.f3bda468719082b4f07e.bundle.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Angular\dist\vendor.d94a85314153004a6143.bundle.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\16x16).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\16x16\workflow_test.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\24x24).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\24x24\search.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\32x32).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\32x32\decrease.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\32x32\increase.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\32x32\nochange.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\48x48).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\48x48\optimization.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\48x48\workflow_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\crossClose.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\decrease-large.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\decrease-small.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\disabled.ico).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\enabled-grey.ico).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\enabled.ico).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\ExpectedChanges).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\ExpectedChanges\negative.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\ExpectedChanges\no_changes.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\ExpectedChanges\positive_dynamic.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\goblet-silver.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\height25).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\height25\decrease25.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\height25\increase25.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\height25\nochange25.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\icon-add.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\icon-existing-page.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\icon-page-version.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\increase-large.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\increase-small.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\info.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\like-img.jpg).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\like-img.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\medal-bronze.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\medal-gold.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\medal-silver.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\nochange-small.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\nochange.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\personalization.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\question.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\star.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\16x16).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\16x16\active_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\16x16\historical_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\16x16\optimization_view.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\16x16\page_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\16x16\personalization.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\16x16\suggested_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\16x16\test_result.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\24x24).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\24x24\active_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\24x24\historical_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\24x24\optimization_view.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\24x24\page_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\24x24\personalization.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\24x24\suggested_test.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\tests\24x24\test_result.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Assets\triangle.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\Gallery.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\Leaderboard.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\OverridingSPEAKstyles.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\Palette.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\PrevNextButtons.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\ReviewTest.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\Search.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\SelectPagesToTest.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\Settings.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\spot-palette.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\css\TestList.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\BindingConverters.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\BindingUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\ConfidenceLevelCtrl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\CreateTestActions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\DataRepeaterBinding.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\DataUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\EditUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\ExecutedTestsList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\ExpectedChangeCtrl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\ExperienceInfo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\IDUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\ImageThumbs.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\Messages.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\ModeFix.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\PageTest).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\PageTest\PageTestActions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\PageTest\PageTestUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\RequestUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\ReviewTest.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\SelectItemDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\SelectPagesToTest.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\SuggestedTestsList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\TestItemListEntry.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\TestResultsActions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\TestTypes.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\URLs.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Common\lib\VersionInfo.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\Behaviours).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\Behaviours\AccordionRemoveCollapse.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\Behaviours\MultiSelectListExtended.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\Behaviours\MultiSelectListExtended.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\Behaviours\StateChangeList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\Behaviours\StateChangeListBehavior.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ButtonGroup).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ButtonGroup\ButtonGroup.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\CarouselImage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\CarouselImage\CarouselImage.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\CarouselImage\CarouselImage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\CarouselImage\CarouselImage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\CompareImage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\CompareImage\CompareImage.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\CompareImage\CompareImage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\CompareImage\CompareImage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataRepeater).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataRepeater\ContentTestingDataRepeater.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataRepeater\ContentTestingDataRepeater.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ActivityDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ActivityDataSource\ActivityDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ActivityDataSource\ActivityDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\BaseDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\BaseDataSource\OptimizationBaseDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\BaseDataSource\OptimizationBaseDataSource.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\BaseDataSource\OptimizationEntriesBaseDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\BaseDataSource\OptimizationEntriesBaseDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\BestGuessDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\BestGuessDataSource\BestGuessingDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\BestGuessDataSource\BestGuessingDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ConversionRateDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ConversionRateDataSource\ConversionRateDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ConversionRateDataSource\ConversionRateDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ExperienceEngagementDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ExperienceEngagementDataSource\ExperienceEngagementDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ExperienceEngagementDataSource\ExperienceEngagementDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ExperienceKPIDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ExperienceKPIDataSource\ExperienceKPIDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ExperienceKPIDataSource\ExperienceKPIDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\FilteringDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\FilteringDataSource\FilteringDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\FilteringDataSource\FilteringDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\HighestEffectDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\HighestEffectDataSource\HighestEffectDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\HighestEffectDataSource\HighestEffectDataSource.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ItemCallMetricBaseDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ItemFromQueryString).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ItemFromQueryString\ItemFromQueryString.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ItemFromQueryString\ItemFromQueryString.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ItemInfoDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ItemInfoDataSource\ItemInfoDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ItemInfoDataSource\ItemInfoDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\KPIDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\KPIDataSource\KPIDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\KPIDataSource\KPIDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\MostActiveUserDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\MostActiveUserDataSource\MostActiveUserDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\MostActiveUserDataSource\MostActiveUserDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\OverallPerformanceDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\OverallPerformanceDataSource\OverallPerformanceDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\OverallPerformanceDataSource\OverallPerformanceDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\PersonalizationRuleDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\PersonalizationRuleDataSource\PersonalizationRuleDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\PersonalizationRuleDataSource\PersonalizationRuleDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ReachDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ReachDataSource\ReachDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ReachDataSource\ReachDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ReportingDatesDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ReportingDatesDataSource\ReportingDatesDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ReportingDatesDataSource\ReportingDatesDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RulePerformanceDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RulePerformanceDataSource\RulePerformanceDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RulePerformanceDataSource\RulePerformanceDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RulesDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RulesDataSource\RulesDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RulesDataSource\RulesDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RuleSetPerformanceDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RuleSetPerformanceDataSource\RuleSetPerformanceDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\RuleSetPerformanceDataSource\RuleSetPerformanceDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\SitecoreQueryDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\SitecoreQueryDataSource\SitecoreQueryDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\SitecoreQueryDataSource\SitecoreQueryDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\SiteUsageDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\SiteUsageDataSource\SiteUsageDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\SiteUsageDataSource\SiteUsageDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestCandidatesDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestCandidatesDataSource\TestCandidatesDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestCandidatesDataSource\TestCandidatesDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestDefinitionDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestDefinitionDataSource\TestDefinitionDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestDefinitionDataSource\TestDefinitionDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestDurationDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestDurationDataSource\TestDurationDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestDurationDataSource\TestDurationDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestExpectationsDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestExpectationsDataSource\TestExpectationsDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestExpectationsDataSource\TestExpectationsDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestObjectivesDataSource).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestObjectivesDataSource\test).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestObjectivesDataSource\test\TestObjectivesDataSource.test.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestObjectivesDataSource\TestObjectivesDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestObjectivesDataSource\TestObjectivesDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestOutcomesDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestOutcomesDataSource\TestOutcomesDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestOutcomesDataSource\TestOutcomesDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestsDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestsDataSource\TestsDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestsDataSource\TestsDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestSummary).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestSummary\TestSummary.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestSummary\TestSummary.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestVariablesDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestVariablesDataSource\TestVariablesDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestVariablesDataSource\TestVariablesDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestVariationsDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestVariationsDataSource\TestVariationsDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TestVariationsDataSource\TestVariationsDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ThumbnailImageDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ThumbnailImageDataSource\ThumbnailImageDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\ThumbnailImageDataSource\ThumbnailImageDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TopClicksToPagesDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TopClicksToPagesDataSource\TopClicksToPagesDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TopClicksToPagesDataSource\TopClicksToPagesDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TopGoalsDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TopGoalsDataSource\TopGoalsDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TopGoalsDataSource\TopGoalsDataSource.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\TopMetricsBaseDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\VariablesDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\VariablesDataSource\VariablesDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\DataSource\VariablesDataSource\VariablesDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ExperienceIndicator).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ExperienceIndicator\ExperienceIndicator.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ExperienceIndicator\ExperienceIndicator.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ExperienceIndicator\ExperienceIndicator.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\FilteredComboBox).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\FilteredComboBox\FilteredComboBox.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\FilteredComboBox\FilteredComboBox.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\FilteredComboBox\FilteredComboBox.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\GroupedCheckboxList).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\GroupedCheckboxList\GroupedCheckboxList.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\GroupedCheckboxList\GroupedCheckboxList.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\GroupedCheckboxList\GroupedCheckboxList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ImageSrc).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ImageSrc\ImageSrc.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\OptionsMapper).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\OptionsMapper\OptionsMapper.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\OptionsMapper\OptionsMapper.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\PageThumbnail).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\PageThumbnail\PageThumbnail.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\PageThumbnail\PageThumbnail.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\PageThumbnail\PageThumbnail.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ProgressBarCustom).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ProgressBarCustom\ProgressBarCustom.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ProgressBarCustom\ProgressBarCustom.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ProgressBarCustom\ProgressBarCustom.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\QueryStringParameterResolver).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\QueryStringParameterResolver\QueryStringParameterResolver.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\QueryStringParameterResolver\QueryStringParameterResolver.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ResizableFrameGrip).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ResizableFrameGrip\ResizableFrameGrip.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ResizableFrameGrip\ResizableFrameGrip.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ResizableFrameGrip\ResizableFrameGrip.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ScoreGainedSpot).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ScoreGainedSpot\ScoreGainedSpot.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ScoreGainedSpot\ScoreGainedSpot.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ScoreGainedSpot\ScoreGainedSpot.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\SliderAdvanced).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\SliderAdvanced\SliderAdvanced.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\SliderAdvanced\SliderAdvanced.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\SliderAdvanced\SliderAdvanced.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\StateListControl).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\StateListControl\StateListControl.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\StateListControl\StateListControl.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\StateListControl\StateListControl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TestOptions).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TestOptions\json2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TestOptions\TestOptions.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TestOptions\TestOptions.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TextTemplate).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TextTemplate\TextTemplate.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TextTemplate\TextTemplate.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TooltipCustom).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\TooltipCustom\TooltipCustom.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\UnorderedList).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\UnorderedList\UnorderedList.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\UnorderedList\UnorderedList.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\UnorderedList\UnorderedList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ValueBar).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ValueBar\ValueBar.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ValueBar\ValueBar.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ValueBar\ValueBar.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\WrappingLink).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\WrappingLink\WrappingLink.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\WrappingLink\WrappingLink.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ZoomFrame).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ZoomFrame\ZoomFrame.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ZoomFrame\ZoomFrame.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\ZoomFrame\ZoomFrame.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD\KPISpot).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD\KPISpot\KPISpot.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD\KPISpot\KPISpot.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD\KPISpot\KPISpot.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD\KPISpot\spot-palette.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD\KPISpot\spots.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD\KPISpot\test).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Components\__OLD\KPISpot\test\KPISpot.test.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Dialogs\CreateTest).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Dialogs\CreateTest\CreateTestDialog.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Dialogs\CreateTest\CreateTestDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Dialogs\TestSummary).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Dialogs\TestSummary\TestSummaryDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Dialogs\TestSummary\TestSummaryStyle.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\ActiveTests).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\ActiveTests\ActiveTestsPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\ActiveTests\ActiveTestsPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\Dashboard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\Dashboard\DashboardPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\Dashboard\DashboardPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\DraftTests).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\DraftTests\DraftTestsPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\DraftTests\DraftTestsPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\HistoricalTests).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\HistoricalTests\HistoricalTestsPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\HistoricalTests\HistoricalTestsPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\Leaderboard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\Leaderboard\LeaderboardPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\Leaderboard\LeaderboardPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\PageTest).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\PageTest\PageTestPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\PageTest\PageTestPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\PerformanceReport).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\PerformanceReport\PerformanceReportPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\PerformanceReport\PerformanceReportPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\SuggestedTests).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\SuggestedTests\SuggestedTestsPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\ExperienceOptimization\Pages\SuggestedTests\SuggestedTestsPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\ActiveTests).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\ActiveTests\ActiveTests.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\ActiveTests\ActiveTests.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\ComponentPerformance).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\ComponentPerformance\ComponentPerformance.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\HistoricalTests).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\HistoricalTests\HistoricalTests.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\HistoricalTests\HistoricalTests.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\PageTest).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\PageTest\PageTest.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\PageTest\PageTest.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\Rules).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\Rules\Rules.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\Rules\Rules.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\SuggestedTests).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\SuggestedTests\SuggestedTests.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\SuggestedTests\SuggestedTests.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\TestResults).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\TestResults\palette.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\TestResults\TestResults.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ContentTesting\Pages\TestResults\TestResults.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ControlPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ControlPanel\ControlPanel.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ControlPanel\ControlPanel.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ControlPanel\ControlPanel.less).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ControlPanel\ControlPanel.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Dialogs\CustomDialog.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Dialogs\InsertAnchorDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Dialogs\InsertEmailDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Dialogs\InsertLinkViaTreeDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Dialogs\SelectMediaDialog.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Dialogs\SelectMediaDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Dialogs\UploadMediaDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Behaviours).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Behaviours\Focusable.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Behaviours\Focusable.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\CampaignPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\CampaignPage.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\CampaignReportPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\CampaignReportPage.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Common.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Common.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\CreationDialog.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\CreationDialog.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\DateRangeFilter.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\DateRangeFilter.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Delivery.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Delivery.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\OverviewPanel.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\OverviewPanel.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Recipients.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Recipients.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Review.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Review.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Validation.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Components\Validation.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Dashboard.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Dashboard.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\ListPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\ListPage.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Utils).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Utils\Mixins.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\CSS\Utils\Mixins.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\android.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\apple.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\confirmation.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\ecm16x16.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\funnelGradient.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\rate-icons.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\sc-spinner16.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\score-action-icon.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\sort-arrow.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\star.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Images\windows.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Lib).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Assets\Lib\crossfilter.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\ComboBoxDataSource.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Cookies.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\EditMessageBodyRibbonPageCode.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Language.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Notifications.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\NumericInputValidation.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Panels).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Panels\DailyPanel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Panels\MonthlyPanel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Panels\TimePanel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Panels\WeeklyPanel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Panels\YearlyPanel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\PrimaryNavigation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\ReportVariant.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\ServerRequest.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Tab).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Tab\GeneralTab.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Tab\ReviewTab.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Validation).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Validation\Validation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Validation\ValidationModel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Component\Validation\ValidationView.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\constants.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\ActivateConfirmationDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\AddAttachmentDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\AddEmptyRecipientListRendering.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\AddFromExistingRecipientListRendering.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\AlertDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\AttachmentsDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\ConfirmDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\DefaultSettingsDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\DialogBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\DispatchConfirmationDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\EmailPreviewDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\guidGenerator.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\ManualWinnerConfirmationDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\MessageCreationDialogBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\MessageVariantContentEditorDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\PersonalizationTokensDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\PromptDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Dialog\RecipientsPreviewDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\FormatterConfigExtension.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Helpers).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Helpers\ChartHelper.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Helpers\DateHelper.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Helpers\DateTimeFormatter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Helpers\FilterHelper.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Helpers\MathHelper.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Helpers\MessageTabsHelper.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Helpers\StringHelper.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Models).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Models\DimensionModel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Models\ListDataModelBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Models\RecipientListModel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Models\ReportDataModel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Models\ReportingListDataModel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Models\TimeOfDayListModel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\AppBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\CampaignReport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Dashboard.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\EmailChannelPerformance.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\ListPageBase.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Messages).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Messages\Automated.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Messages\MessageBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Messages\MessageCreation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Messages\MessagePerformance.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Messages\MessageReport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Messages\Regular.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Messages.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\PageBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\StartPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Tabs).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Tabs\10-General.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Tabs\20-Recipient.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Tabs\30-Message.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Tabs\40-Review.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pages\Tabs\50-Delivery.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddAttachment).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddAttachment\AddAttachment.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddLanguage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddLanguage\AddLanguage.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddLanguage\AddLanguage.OnlySwitch.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddPreExistingPage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddPreExistingPage\AddPreExistingPage.Add.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddPreExistingPage\AddPreExistingPage.CanAdd.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddPreExistingPage\AddPreExistingPage.CreateNewMessage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddPreExistingPage\AddPreExistingPage.OpenNewMessage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddPreExistingPage\AddPreExistingPage.ValidatePagePath.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddVariant).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\AddVariant\AddVariant.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyAttachmentFromLanguage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyAttachmentFromLanguage\CopyAttachmentFromLanguage.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyAttachmentToAllLanguages).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyAttachmentToAllLanguages\CopyAttachmentToAllLanguages.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyToDraft).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyToDraft\CopyToDraft.CheckPermissions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyToDraft\CopyToDraft.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyToDraft\CopyToDraft.GetNewMessageName.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CopyToDraft\CopyToDraft.OpenNewMessage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CreateNewMessage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CreateNewMessage\CreateNewMessage.CanCreate.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CreateNewMessage\CreateNewMessage.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\CreateNewMessage\CreateNewMessage.OpenNewMessage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DeleteFolder).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DeleteFolder\DeleteFolder.CanDelete.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DeleteFolder\DeleteFolder.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DeleteFolder\DeleteFolder.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DeleteMessage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DeleteMessage\DeleteMessage.CanDelete.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DeleteMessage\DeleteMessage.Confirm.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DeleteMessage\DeleteMessage.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DispatchMessage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DispatchMessage\DispatchMessage.Dispatch.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DuplicateVariant).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\DuplicateVariant\DuplicateVariant.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\ExportToCSV).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\ExportToCSV\ExportToCSV.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\ImportNewHtmlLayout).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\ImportNewHtmlLayout\ImportNewHtmlLayout.CanImport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\ImportNewHtmlLayout\ImportNewHtmlLayout.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveAttachment).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveAttachment\RemoveAttachment.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveAttachment\RemoveAttachment.Notification.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveBouncedRecipients).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveBouncedRecipients\RemoveBouncedRecipients.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveBouncedRecipients\RemoveBouncedRecipients.ShowConfirmation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveBouncedRecipients\RemoveBouncedRecipients.ShowNotification.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveComplainedRecipients).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveComplainedRecipients\RemoveComplainedRecipients.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveComplainedRecipients\RemoveComplainedRecipients.ShowConfirmation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveComplainedRecipients\RemoveComplainedRecipients.ShowNotification.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveUnsubscribedRecipients).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveUnsubscribedRecipients\RemoveUnsubscribedRecipients.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveUnsubscribedRecipients\RemoveUnsubscribedRecipients.ShowConfirmation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveUnsubscribedRecipients\RemoveUnsubscribedRecipients.ShowNotification.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveVariant).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\RemoveVariant\RemoveVariant.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\SaveAsSubscriptionTemplate).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\SaveAsSubscriptionTemplate\SaveAsSubscriptionTemplate.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\SaveAsSubscriptionTemplate\SaveAsSubscriptionTemplate.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\SaveMessage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\SaveMessage\SaveMessage.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\SendQuickTest).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\SendQuickTest\SendQuickTest.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\Validate).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\Validate\Validate.CampaignCategory.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Pipelines\Validate\Validate.RecipientList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\ChartDataConversionService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\DataBaseService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\DialogService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\ExperienceAnaliticsKeysService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\GlobalValidationService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\ManagerRootService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\MessageCreationService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\MessageService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\MessageTokenService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\MessageValidationService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\RecipientsService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\ReportDataGenerationService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\ReportDataService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Services\ValidatorsService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\settings.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Client\Web.config).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\AccountInformationExt).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\AccountInformationExt\AccountInformationExt.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\AccountInformationExt\AccountInformationExt.test.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Behaviors).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Behaviors\Focusable.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Behaviors\InsertMessageToken.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Behaviors\ScrollToMessage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Card).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Card\Card.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Card\Card.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Card\Card.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CheckboxRepeater).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CheckboxRepeater\CheckboxRepeater.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CheckboxRepeater\CheckboxRepeater.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CheckboxRepeater\CheckboxRepeater.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ComboBoxListDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ComboBoxListDataSource\ComboBoxListDataSource.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CompositeComponentBase.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CreateMessage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CreateMessage\CreateMessage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CreateMessage\CreateMessage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CreateMessage\CreateMessage.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CreateMessageOptionDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\CreateMessageOptionDataSource\CreateMessageOptionDataSource.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\DataSourceBase.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\DispatchContext).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\DispatchContext\DispatchContext.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\EcmBreadCrumb).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\EcmBreadCrumb\EcmBreadCrumb.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Expander).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Expander\Expander.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Expander\Expander.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\LandingInfo).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\LandingInfo\LandingInfo.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\LandingInfo\LandingInfo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\LandingInfo\LandingInfo.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\LanguageSwitcher).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\LanguageSwitcher\LanguageSwitcher.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\LanguageSwitcher\LanguageSwitcher.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\LanguageSwitcher\LanguageSwitcher.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ManagerRootSwitcher).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ManagerRootSwitcher\ManagerRootSwitcher.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ManagerRootSwitcher\ManagerRootSwitcher.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ManagerRootSwitcher\ManagerRootSwitcher.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageContext).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageContext\MessageContext.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageDataSource\MessageDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageInfo).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageInfo\MessageInfo.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageInfo\MessageInfo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageInfo\MessageInfo.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessagePreview).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessagePreview\MessagePreview.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessagePreview\MessagePreview.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageVariant).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageVariant\MessageVariant.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageVariant\MessageVariant.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageVariant\MessageVariantComponent.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageVariants).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageVariants\MessageVariants.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageVariants\MessageVariants.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\MessageVariants\MessageVariants.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\RecipientDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\RecipientDataSource\RecipientDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\RecipientListSelector).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\RecipientListSelector\RecipientListSelector.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\RecipientListSelector\RecipientListSelector.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\RecipientListSelector\RecipientListSelector.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Charts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Charts\Engagement).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Charts\Engagement\EngagementChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Charts\TimeOfDay).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Charts\TimeOfDay\TimeOfDay.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Charts\TimeOfDay\TimeOfDay.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Charts\TimeOfDay\TimeOfDay.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ClickToOpensChart).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ClickToOpensChart\ClickToOpensChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\LandingPagesReport).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\LandingPagesReport\LandingPagesReport.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\LandingPagesReport\LandingPagesReport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\LandingPagesReport\LandingPagesReport.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\LocationReport).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\LocationReport\LocationReport.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\LocationReport\LocationReport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\LocationReport\LocationReport.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Rates).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Rates\RecipientActivityRate).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Rates\RecipientActivityRate\RecipientActivityRate.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Rates\ReportingRate).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\Rates\ReportingRate\ReportingRate.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\RecipientActivityReport).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\RecipientActivityReport\RecipientActivityReport.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\RecipientActivityReport\RecipientActivityReport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\RecipientActivityReport\RecipientActivityReport.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\RecipientActivityReportExtended).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\RecipientActivityReportExtended\RecipientActivityReportExtended.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\RecipientActivityReportExtended\RecipientActivityReportExtended.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\RecipientActivityReportExtended\RecipientActivityReportExtended.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ReportingBlockBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ReportingBlockBaseTabs.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ReportingList).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ReportingList\ReportingList.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ReportingList\ReportingList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ReportingList\ReportingList.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TechnologyReport).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TechnologyReport\TechnologyReport.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TechnologyReport\TechnologyReport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TechnologyReport\TechnologyReport.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TechnologyReportExtended).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TechnologyReportExtended\TechnologyReportExtended.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TechnologyReportExtended\TechnologyReportExtended.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TechnologyReportExtended\TechnologyReportExtended.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TimeOfDayRate).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TimeOfDayRate\TimeOfDayRate.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TimeOfDayReportBase.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TopCampaignsReport).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TopCampaignsReport\TopCampaignsReport.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TopCampaignsReport\TopCampaignsReport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TopCampaignsReport\TopCampaignsReport.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TopLinksClickedChart).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TopLinksClickedChart\TopLinksClickedChart.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TopLinksClickedChart\TopLinksClickedChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\TopLinksClickedChart\TopLinksClickedChart.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsChart).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsChart\ValueAndVisitsChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsReport).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsReport\ValueAndVisitsReport.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsReport\ValueAndVisitsReport.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsReport\ValueAndVisitsReport.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsReportExtended).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsReportExtended\ValueAndVisitsReportExtended.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsReportExtended\ValueAndVisitsReportExtended.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Reporting\ValueAndVisitsReportExtended\ValueAndVisitsReportExtended.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ScoreCard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ScoreCard\ScoreCard.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ScoreCard\ScoreCard.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\ScoreCard\ScoreCard.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\TokensDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\TokensDataSource\TokensDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\VariantsPresenter).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\VariantsPresenter\VariantsPresenter.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\VariantsSelector).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\VariantsSelector\VariantsSelector.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\VariantsSelector\VariantsSelector.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ECM\EmailCampaign.Controls\Web.config).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Assets\css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Assets\css\style.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Assets\css\style.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Assets\js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Assets\js\edsUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Assets\js\fileDownloader.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Common\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Common\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Common\Layouts\Renderings\Data).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Common\Layouts\Renderings\Data\CustomSearchDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Common\Layouts\Renderings\Data\CustomSearchDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Dialogs\AddEditSenderDomainDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Dialogs\AddSuppressionDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Dialogs\ConfirmationDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Dialogs\ExportSuppressionDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\EDS\Pages).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Pages\CommonListPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Pages\Domains.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Pages\Subscription.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\EDS\Pages\SuppressionList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\ExperienceAnalytics.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\DateRangeFilter.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\DateRangeFilter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsAreaChart.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsAreaChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsBarChart.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsBarChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsDataTable.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsDataTable.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsDialogWindow.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsFilters.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsFilters.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsKpiChart.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsKpiChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsLineChart.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsLineChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsListControl.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsListControl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsPieChart.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\ExperienceAnalyticsPieChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\MetricsDropDown.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\MetricsDropDown.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared\ChartDataConversionService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared\ExperienceAnalytics.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared\ExperienceAnalyticsBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared\ExperienceAnalyticsChartBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared\ExperienceAnalyticsD3ChartBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared\ExperienceAnalyticsDvcBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared\ExperienceAnalyticsMetricsFormatter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\Shared\_DvcWrapper.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\SubsiteFilter.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Layouts\Renderings\SubsiteFilter.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Shared).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceAnalytics\Common\Shared\ChartPageCode.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\CintelUtl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\DataProviderHelper.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\calendar-32x32.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\chevron-big-1-01.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\chevron-big-2-01.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\commerce-gift.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\contacts-user-business.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\contacts-user-small.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\contacts-user-woman.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\discussions-speaker-2.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\edition-field-focus.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\edition-magnifier.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\error_red.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\female.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\file-view-2.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\file-view-32x32.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\general-event.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\generic-user-image-170x170.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\generic-user-image-72x72.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\i-mark.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\infos-question-circle-2.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\infos-question-circle-3.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\infos-question-circle-4.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\infos-question-circle.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\male.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\pattern128x128.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\pattern32x32.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\places-map-pin.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\places-traffic-signs.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\share-sharing.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\time-calendar-1.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\time-clock.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\transfer-download-3.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\images\unknown-gender.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts\Renderings\DataRepeater).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts\Renderings\DataRepeater\DataRepeater.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts\Renderings\DataRepeater\DataRepeater.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts\Renderings\Structures).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts\Renderings\Structures\Page Structures).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts\Renderings\Structures\Page Structures\Application).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Common\Layouts\Renderings\Structures\Page Structures\Application\Task.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Activity).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Activity\Activity.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Automations).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Automations\Automations.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Automations\AutomationsTab.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Campaigns).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Campaigns\Campaigns.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Campaigns\CampaignsTab.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Channels).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Channels\Channels.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Channels\ChannelsTab.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Contact.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Contact.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Details).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Details\DetailsTab.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Details\DetailsTab.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Goals).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Goals\Goals.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Goals\GoalsTab.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\JourneyPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\JourneyPanel\JourneyPanel.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\JourneyPanel\JourneyPanel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\JourneyPanel\OfflineInteraction.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\JourneyPanel\OnlineInteraction.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\JourneyPanel\Outcome.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Keywords).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Keywords\Keywords.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Keywords\KeywordsTab.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Outcomes).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Outcomes\Outcomes.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Outcomes\Outcomes.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Overview).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Overview\OverviewTab.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Overview\OverviewTab.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\OverviewPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\OverviewPanel\OverviewPanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Profiling).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Profiling\BarView.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Profiling\ProfilePatternMatches.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Profiling\Profiling.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Profiling\ProfilingTab.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Profiling\RenderLegendView.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Visits).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Visits\Visits.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Contact\Visits\VisitsTab.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\ContactNotFound).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\ContactNotFound\ContactNotFound.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\ContactNotFound\ContactNotFound.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Dashboard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Dashboard\Dashboard.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Dashboard\Dashboard.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Layouts\Renderings\Structures).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Layouts\Renderings\Structures\Page Structures).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Layouts\Renderings\Structures\Page Structures\Application).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Layouts\Renderings\Structures\Page Structures\Application\ContactDashboard.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Search).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Search\ContactTemplate.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Search\Search.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\Search\Search.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\VisitDetail).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\VisitDetail\VisitDetail.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExperienceProfile\VisitDetail\VisitDetail.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExternalApplication).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExternalApplication\ExternalApplication.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExternalApplication\ExternalApplication.less).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExternalApplication\ExternalApplication.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExternalApplication\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ExternalApplication\Layouts\Renderings).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ExternalApplication\Layouts\Renderings\ExternalFrame.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\FileDownloader.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\FormEditorUtils.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\FormServices.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\images).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\images\icon_abandonments.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\images\icon_abandonment_rate.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\images\icon_average_time.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\images\icon_error_rate.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\images\icon_form_blank.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\images\icon_unique_views.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\assets\images\stackedForms.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\CreateGoalDialogWindow).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\CreateGoalDialogWindow\CreateGoal.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\DeleteFormsDialogWindow).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\DeleteFormsDialogWindow\DeleteForms.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\EditActionDialogWindow).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\EditActionDialogWindow\EditAction.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\ExportDataDialogWindow).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\ExportDataDialogWindow\ExportData.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\SaveFormDialogWindow).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\SaveFormDialogWindow\SaveForm.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\SelectDatasourceDialogWindow).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Dialogs\SelectDatasourceDialogWindow\SelectDatasource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Actions).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Actions\Actions.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Actions\RedirectToPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Actions\SendEmailCampaignMessage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Actions\SendEmailCampaignMessage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Actions\TriggerCampaignActivity.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Actions\TriggerGoal.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Actions\TriggerOutcome.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\FormSettingsPropertyGrid).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\FormSettingsPropertyGrid\FormSettingsPropertyGrid.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Overview).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Overview\CheckedTiles).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Overview\CheckedTiles\CheckedTile.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Overview\CheckedTiles\CheckedTile.html).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Overview\LinkTiles).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Overview\LinkTiles\LinkTile.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Overview\LinkTiles\LinkTile.html).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Performance).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Performance\FieldPerformance.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Performance\FormPerformance.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Performance\MetricsTiles).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Performance\MetricsTiles\MetricsTile.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Performance\MetricsTiles\MetricsTile.html).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Performance\Performance.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\PropertyGrid).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\PropertyGrid\PropertyGrid.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\PropertyGridForm).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\PropertyGridForm\PropertyGridForm.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\PropertyGridForm\PropertyGridForm.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\DatasourceManager).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\DatasourceManager\DatasourceManager.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\DatasourceManager\DatasourceManager.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\DatesManager).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\DatesManager\DatesManager.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\DatesManager\DatesManager.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\OptionsTiles).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\OptionsTiles\OptionsTile.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\OptionsTiles\OptionsTile.html).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\SubmitActionsManager.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\SubmitActionsManager.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\SubmitActionsManager.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\SubmitActionsTiles).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\SubmitActionsTiles\SubmitActionsTile.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\Composites\SubmitActionsManager\SubmitActionsTiles\SubmitActionsTile.html).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\DynamicDatasource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\DynamicDatasource\DynamicDatasource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\DynamicDatasource\DynamicDatasource.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\DynamicDatasource\DynamicDatasource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\FormDesignBoard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\FormDesignBoard\FormDesignBoard.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\FormDesignBoard\FormDesignBoard.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\FormDesignBoard\FormDesignBoard.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\FormDesignBoard\FormDesignBoard.test.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\ImageSelector).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\ImageSelector\ImageSelector.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\ImageSelector\ImageSelector.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\ImageSelector\ImageSelector.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\KeyValuePairEditor).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\KeyValuePairEditor\KeyValuePairEditor.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\KeyValuePairEditor\KeyValuePairEditor.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\KeyValuePairEditor\KeyValuePairEditor.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\LanguageListControl).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\LanguageListControl\LanguageListControl.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Layouts\Renderings\LanguageListControl\LanguageListControl.html).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Navigation).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Navigation\Create.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Navigation\Create.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Pages).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Pages\FormDesigner).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Pages\FormDesigner\FormDesigner.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Pages\FormDesigner\FormDesigner.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Pages\Forms).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Pages\Forms\Forms.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FormsBuilder\Pages\Forms\Forms.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Commands).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Commands\Commands.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Commands\ConfirmDeletion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Commands\NavigateBackwards.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Commands\OpenDomainDashboard.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Commands\OpenDomainMatcher.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Commands\OpenInExperienceEditor.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Commands\OpenPageFilter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Commands\ToggleEditMode.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Common\images).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Common\images\edition-magnifier.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Common\styles).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Common\styles\Common.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Dialogs\DeleteConfirmation).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Dialogs\DeleteConfirmation\DeleteConfirmation.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands\CreateClientAction.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands\CreatePageMatcher.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands\CreateReplacer.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands\EnableControlHighlighting.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands\EnableFxmClientActions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands\EnableFxmPlaceholders.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands\ManageFunctions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Commands\PageEditorCapabilityToggler.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Controls).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Controls\Ribbon).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Controls\Ribbon\FXMRibbonPageCode.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\CaptureClientAction).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\CaptureClientAction\CaptureClientAction.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\CreateElementReplacer).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\CreateElementReplacer\CreateElementReplacer.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\CreatePageMatcher).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\CreatePageMatcher\CreatePageMatcher.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\CreatePageMatcher\PageMatcher.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\ManageFunctions).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Dialogs\ManageFunctions\ManageFunctions.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\Chrome.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\ChromeControls.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\ChromeManager.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\ClientActionChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\ClientActionInserter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\Fxm.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\LegacyjQuery.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\LegacySitecore.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\PlaceholderChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\RenderingChromeType.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\ReplacerInserter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\scSitecore.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Legacy\SelectorChromeType.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Utils).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Utils\ClientBeacon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Utils\ControlDisabler.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\ExperienceEditorExtension\Utils\FxmChromeUtil.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\AnalyticsItemPicker.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\AnalyticsItemPicker.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\DashboardMenu.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\EditClientActionControl.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\EditClientActionControl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\EditElementReplacerControl.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\EditElementReplacerControl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\EditPageMatcherControl.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\EditPageMatcherControl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\FilteredTreeview.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Components\FilteredTreeview.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Data).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Data\CustomSearchDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Data\CustomSearchDataSource.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Data\FxmDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Layouts\Renderings\Data\FxmDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pages).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pages\DomainDashboard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pages\DomainDashboard\DomainDashboard.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pages\DomainMatcher).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pages\DomainMatcher\DomainMatcher.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pages\DomainMatcher\DomainMatcher.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\InitializeFxm).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\InitializeFxm\GetClientActions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\InitializeFxm\GetPlaceholderContent.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\InitializeFxm\InitializeModalDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\InitializeFxm\SetButtonStates.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\NavigateBackwards).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\NavigateBackwards\ExecuteNavigator.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\NavigateBackwards\QsNavigator.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\NavigateBackwards\WindowHistoryNavigator.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\OpenPublishWizard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\OpenPublishWizard\GetPublishWizardUrl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\OpenPublishWizard\LaunchDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\OpenRulesEditor).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\OpenRulesEditor\GetRulesEditorUrl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\OpenRulesEditor\LaunchDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\Utils).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Pipelines\Utils\PipelineUtils.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Utils).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\ClassicDialogUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\ComponentSettings.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\ManageFunctionsUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\ParamUtils.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\purl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Services).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Services\BaseEntityService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Services\BeaconService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Services\DomainMatcherService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Services\ElementMatcherService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Services\ElementPlaceholderService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Services\ItemActionService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Services\PageMatcherService.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Switcher.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\Validation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\FXM\Utils\WebUtil.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LaunchPad).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LaunchPad\Assets).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\Assets\Campaign-Conversions.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\Assets\Value-and-visits.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\chart1.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\chart2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\LaunchPad.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\LaunchPad.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\LaunchPad.less).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\LaunchPad.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LaunchPad\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LaunchPad\Layouts\Renderings).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\Layouts\Renderings\LaunchBar.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\Layouts\Renderings\LaunchTile.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LaunchPad\Layouts\Renderings\LaunchTiles.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LicenseOptions).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Assets\img).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Assets\img\door_exit.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Assets\img\user.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Assets\img\users2.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\ActiveUsersDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\ActiveUsersDataSource\ActiveUsersDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\ActiveUsersDataSource\ActiveUsersDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOption).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOption\LicenseOption.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOption\LicenseOption.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOption\LicenseOption.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOption\LicenseOption.less).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOption\LicenseOption.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOptionsPane).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOptionsPane\LicenseOptionsPane.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Components\LicenseOptionsPane\LicenseOptionsPane.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Pages).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Pages\KickUser.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Pages\KickUser.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Pages\StartPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\LicenseOptions\Pages\StartPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Assets\Images).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Assets\Images\icons.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\commonListPagesDefinition.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\commonPagesDefinition.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\ContactList).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\ContactList\ContactList.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\ContactList\ContactList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\ContactList\ContactListDefinition.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ContactFields).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ContactFields\ContactFields.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ContactMap).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ContactMap\ContactMap.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ContactMap\ContactMap.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ContactsDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ContactsDataSource\ContactsDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ContactsDataSource\ContactsDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ImportMapTo).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ImportMapTo\ImportMapTo.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ImportMapTo\ImportMapTo.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ImportMapTo\ImportMapTo.css.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ImportMapTo\ImportMapTo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ImportMapTo\ImportMapTo.less).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ImportMapTo\ImportMapTo.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ListManagementBreadCrumb).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ListManagementBreadCrumb\ListManagementBreadCrumb.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ListManagementBreadCrumb\ListManagementBreadCrumb.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ListsDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ListsDataSource\ListsDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\ListsDataSource\ListsDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentBuilder).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentBuilder\SegmentBuilder.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentBuilder\SegmentBuilder.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentBuilder\SegmentBuilder.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentBuilder\SegmentBuilder.less).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentBuilder\SegmentBuilder.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentsDataSource).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentsDataSource\SegmentsDataSource.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentsDataSource\SegmentsDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentsView).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentsView\SegmentsView.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentsView\SegmentsView.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\SegmentsView\segmentsView.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\Uploader).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\Uploader\ListManagementUploader.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Controls\Uploader\ListManagementUploader.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\cookieParser.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\csvValidator.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Dashboard).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dashboard\Dashboard.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dashboard\DashboardDefinition.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\CreateAndAddNewContactDialog).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\CreateAndAddNewContactDialog\CreateAndAddNewContactDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\ImportWizardDialog).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\ImportWizardDialog\ImportWizardDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\ImportWizardDialog\ImportWizardDialogDefinition.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\OkCancelDialog).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\OkCancelDialog\okCancelDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\SegmentDialog).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\SegmentDialog\segmentDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\SelectContactListDialog).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\SelectContactListDialog\SelectContactListDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\SelectContactListDialog\SelectContactListDialogDefinition.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\SelectSegmentDialog).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs\SelectSegmentDialog\selectSegmentDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Dialogs.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\dialogs.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\ImportWizard.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\listsActoinsManager.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\ListsPage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\ListsPage\listsPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Navigation).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Navigation\NavigationMenu.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Navigation\NavigationMenu.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\RecentlyCreatedLists).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\RecentlyCreatedLists\recentlyCreatedLists.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\RenderRules.ashx).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\Segment).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Segment\Segment.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\Segment\SegmentDefinition.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\SegmentedList).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\SegmentedList\SegmentedList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\SegmentedList\SegmentedListDefinition.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\ListManager\SegmentPage).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\SegmentPage\segmentsActionsManager.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\SegmentPage\segmentsPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\SegmentPage\segmentsPagesDefinition.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\SelectLists.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\storageMediator.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\ListManager\urlParser.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\Marketing).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\Marketing\Utilities).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\Marketing\Utilities\DeployMarketingDefinition).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Marketing\Utilities\DeployMarketingDefinition\DeployMarketingDefinition.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Marketing\Utilities\DeployMarketingDefinition\DeployMarketingDefinitionComponent.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\Marketing\Utilities\DeployMarketingDefinitions).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Marketing\Utilities\DeployMarketingDefinitions\DeployMarketingDefinitions.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\Marketing\Utilities\DeployMarketingDefinitions\DeployMarketingDefinitionsComponent.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\3rdpartylicenses.txt).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\assets\icons).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\assets\icons\calendar-icon.svg).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\assets\icons\email-ico.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\assets\icons\icon_delete_item.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\assets\icons\pointer-ico.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\assets\icons\sc-message-bar-icons.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\css\ListPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\css\ListPage.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites\AutomationCampaignList.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites\AutomationCampaignList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites\CreatePopover.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites\CreatePopover.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites\CreatePopover.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites\CreatePopover.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites\CreatePopoverData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\Common\Layouts\Renderings\Composites\CreatePopoverListItemRenderer.html).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\favicon.ico).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\index.aspx).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\inline.8bde36ac137efb8cf092.bundle.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\main.1895e91bba561046e282.bundle.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\Connector.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\Connector.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\Connector.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\constants.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\constants.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\constants.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\constants.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\InsertionPoint.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\InsertionPoint.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\InsertionPoint.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\InsertionPoint.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\IPlan.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\IPlan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\IPlan.js.map).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\ConditionItem.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\ConditionItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\ConditionItem.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\ConditionItem.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\DecisionPointItem.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\DecisionPointItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\DecisionPointItem.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\DecisionPointItem.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\FinalItem.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\FinalItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\FinalItem.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\FinalItem.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\ItemBase.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\ItemBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\ItemBase.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\ItemBase.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\NotFound.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\NotFound.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\NotFound.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\NotFound.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\PlanItem.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\PlanItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\PlanItem.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\PlanItem.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\Position.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\Position.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\Position.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\Position.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\SequenceItem.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\SequenceItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\SequenceItem.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\SequenceItem.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\SingleItem.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\SingleItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\SingleItem.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\SingleItem.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\Visual.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\Visual.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\Visual.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\items\Visual.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\PlanHelpers.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\PlanHelpers.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\PlanHelpers.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\PlanHelpers.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\public-api.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\public-api.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\public-api.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\activities\public-api.metadata.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors\editor-base.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors\editor-base.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors\editor-base.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors\editor-base.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors\public-api.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors\public-api.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors\public-api.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\editors\public-api.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\index.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\index.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\index.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\index.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\package.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\plugin-config.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\plugin-config.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\plugin-config.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\plugin-config.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\plugin-decorator.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\plugin-decorator.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\plugin-decorator.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\plugin-decorator.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\public-api.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\public-api.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\public-api.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\plugins\public-api.metadata.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\activity-data.service.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\activity-data.service.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\activity-data.service.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\activity-data.service.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\alert.model.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\alert.model.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\alert.model.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\alert.model.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\alert.service.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\alert.service.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\alert.service.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\alert.service.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\public-api.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\public-api.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\public-api.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\public-api.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\server-connection.service.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\server-connection.service.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\server-connection.service.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\server-connection.service.metadata.json).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\translate.service.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\translate.service.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\translate.service.js.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\packages\ma-core\services\translate.service.metadata.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\codegen).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\codegen\activities).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\codegen\activities\send-email).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\codegen\activities\send-email\editor).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\codegen\activities\send-email\editor\send-email-editor.component.css.shim.ngstyle.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\codegen\activities\send-email\editor\send-email-editor.component.ngfactory.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\codegen\activities\send-email\send-email.module.ngfactory.d.ts).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src\activities).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src\activities\send-email).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src\activities\send-email\editor).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src\activities\send-email\editor\send-email-editor.component.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src\activities\send-email\email-campaigns.service.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src\activities\send-email\send-email-activity.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src\activities\send-email\send-email.module.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\codegen\src\email-activities.plugin.d.ts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\EXM\plugin.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\plugins\README.md).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\polyfills.791979f12ec63e88e380.bundle.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\scripts.1af16bd067a81c9584b7.bundle.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\SitecoreIcons.a619b52754c8d32e178f.woff).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\SitecoreIcons.ca75f5503a980d055af6.ttf).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\SitecoreIcons.de5e488974a6e6bff774.svg).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\SitecoreIconsColored.3ec34b6a5baaac859a4d.svg).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\SitecoreIconsColored.4d7e47a958b5aa59a12e.woff).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\SitecoreIconsColored.8b57a8bc133b9b135058.ttf).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\styles.b512469caab4a1959349.bundle.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\MarketingAutomation\vendor.6be6958dbf1b66c98060.bundle.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\Common).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\Common\App.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\Common\PageCode.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\Common\StringDictionaryDomain.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\dist).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\dist\pageanalyzer.bundle.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\dist\pageanalyzer.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\dist\pathexplorer.bundle.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\dist\pathexplorer.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\dist\vendor.bundle.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\css\bootstrap.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\css\bootstrap.css.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\css\bootstrap.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\css\bootstrap.min.css.map).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\css\help.css).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\default.aspx).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\fonts).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\fonts\glyphicons-halflings-regular.eot).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\fonts\glyphicons-halflings-regular.svg).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\fonts\glyphicons-halflings-regular.ttf).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\fonts\glyphicons-halflings-regular.woff).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\fonts\glyphicons-halflings-regular.woff2).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\img).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\img\glyphicons-halflings-white.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\img\glyphicons-halflings.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\js\bootstrap.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\js\help.js).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\help\js\jquery.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\PageAnalyzer).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\PageAnalyzer\BodyScripts.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\PageAnalyzer\img).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\PageAnalyzer\img\back_button.png).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\PageAnalyzer\img\back_hover.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\PathExplorer).
Info: Adding file (sc91.local\sitecore\shell\client\Applications\PathAnalyzer\PathExplorer\BodyScripts.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Authentications).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Authentications\AccountInformation).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Authentications\AccountInformation\AccountInformation.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\AreaChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\AreaChart\AreaChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\BarChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\BarChart\BarChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\ColumnChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\ColumnChart\ColumnChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\CombinationChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\CombinationChart\CombinationChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Components).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Components\Area.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Components\Bar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Components\Column.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Components\Combination.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Components\Doughnut.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Components\Line.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Components\Pie.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Models).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Models\FormatterConfig.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Models\MetricsFormatter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Models\NVD3Models.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\D3\Models\NVD3Models.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\DoughnutChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\DoughnutChart\DoughnutChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsAreaChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsBarChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsColumnChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsDoughnutChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsJourneyChart.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsJourneyChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsLineChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsPieChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\FusionChartsRadarChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\LineChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\LineChart\LineChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\PieChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\PieChart\PieChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\Shared).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\Shared\ChartAttributes.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\Shared\ChartPalette.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\Shared\Charts.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\Shared\ChartTemplateProperties.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\Shared\FusionChartsAdapter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Charts\Shared\FusionChartsBaseComponent.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ActionControl).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ActionControl\ActionControl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Buttons).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Buttons\BackButton.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Buttons\Button.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Buttons\DropDownButton.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Buttons\ToggleButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\CheckBoxes).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\CheckBoxes\CheckBox.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ComboBoxes).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ComboBoxes\AdvancedComboBox.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ComboBoxes\ComboBox.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ComboBoxes\MultiSelectControlBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ComboBoxes\SelectControlBase.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ContextSwitcher).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ContextSwitcher\ContextSwitcher.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\DatePickers).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\DatePickers\DatePicker.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\HyperlinkButtons).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\HyperlinkButtons\HyperlinkButton.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\HyperlinkButtons\HyperlinkButtonBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\HyperlinkButtons\IconHyperlinkButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\IconButtons).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\IconButtons\IconButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Images).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Images\Image.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Labels).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Labels\Label.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ListBoxes).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ListBoxes\ListBox.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\MessageBars).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\MessageBars\MessageBar.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ProgressBars).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ProgressBars\ProgressBar.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ProgressIndicators).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\ProgressIndicators\ProgressIndicator.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\RadioButtons).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\RadioButtons\RadioButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Separators).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Separators\Separator.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\SheerUI).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\SheerUI\SheerUI.aspx).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\SheerUI\SheerUI.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Slider).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Slider\slider.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Slider\Slider.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Slider\slider.less).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\TextAreas).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\TextAreas\TextArea.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\TextBoxes).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\TextBoxes\ButtonTextBox.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\TextBoxes\TextBox.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Texts).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Texts\Text.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Timelines).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Timelines\Timeline.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\TimePickers).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\TimePickers\TimePicker.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Tooltips).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Common\Tooltips\Tooltip.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\AdvancedExpanders).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\AdvancedExpanders\AdvancedExpander.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Borders).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Borders\Border.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Expanders).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Expanders\Expander.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Frames).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Frames\Frame.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\LoadOnDemandPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\LoadOnDemandPanel\LoadOnDemandPanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Panels).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Panels\Panel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Popovers).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Popovers\Popover.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Repeaters).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Repeaters\Repeater.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Sections).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\Sections\Section.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\SmartPanels).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\SmartPanels\SmartPanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\TabControls).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Containers\TabControls\TabControl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Dialogs\DialogWindow.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Forms).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Forms\Uploader).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Forms\Uploader\Uploader.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Forms\UploaderInfo).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Forms\UploaderInfo\UploaderInfo.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Indicators).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Indicators\ArrowIndicator.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Indicators\ArrowIndicator.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Indicators\ArrowIndicator.less).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Indicators\ValueLabel.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Indicators\ValueLabel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Indicators\ValueLabel.less).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\ListsAndGrids).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\ListsAndGrids\Carousels).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\ListsAndGrids\Carousels\Carousel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\ListsAndGrids\ListControls).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\ListsAndGrids\ListControls\ListControl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\ListsAndGrids\ListControls\ResizableColumns.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\ListsAndGrids\TreeViews).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\ListsAndGrids\TreeViews\ItemTreeView.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation\Breadcrumbs).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation\Breadcrumbs\Breadcrumb.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation\HyperlinkButtonsGroups).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation\HyperlinkButtonsGroups\HyperlinkButtonsGroup.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation\Menus).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation\Menus\Menu.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation\NavigationPanelToggleButtons).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Navigation\NavigationPanelToggleButtons\NavigationPanelToggleButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\SearchingAndFiltering).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\SearchingAndFiltering\FilterControls).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\SearchingAndFiltering\FilterControls\FilterControl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\SearchingAndFiltering\Searches).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\SearchingAndFiltering\Searches\SearchPanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Silverlight).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Silverlight\SilverlightFrame).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Layouts\Renderings\Silverlight\SilverlightFrame\SilverlightFrame.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Templates).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Templates\Applications).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Templates\Applications\DashboardPage).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Templates\Applications\DashboardPage\DashboardPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Templates\Applications\ListPage).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Templates\Applications\ListPage\ListPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Templates\Applications\TaskPage).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Templates\Applications\TaskPage\TaskPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Templates\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\Templates\Dialogs\ListPage).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\Templates\Dialogs\ListPage\ListPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\AccountInformation).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\AccountInformation\default_user_image.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Common\16x16).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Common\16x16\light_gray).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Common\16x16\light_gray\navigate_down.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ConfirmationDialog).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ConfirmationDialog\Confirmation.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ConfirmationDialog\Error.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ConfirmationDialog\Warning.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ContextToggle).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ContextToggle\side_panel_icon.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\DialogWindow).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\DialogWindow\dialog_maximize.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\DialogWindow\dialog_maximize_h.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\DialogWindow\dialog_restore.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\DialogWindow\dialog_restore_h.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Image).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Image\noImageFound.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ListControl).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ListControl\sort_ascending.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ListControl\sort_descending.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\ListControl\sort_neutral.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Menu).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Menu\arr1.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Menu\menu_highlighted.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Menu\menu_toplevel.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\Menu\navigate_down.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\MessageBar).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\MessageBar\sc-message-bar-icons.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\OverlayPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\OverlayPanel\close_button_sprite.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\SearchableDropList).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\SearchableDropList\magnifying_glass.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\TabControl).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\img\TabControl\tabControlArrows.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\BaseComponents).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\BaseComponents\SelectComponentBase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\bcl-deps-config.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\BootstrapSlider).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\BootstrapSlider\bootstrap-slider.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\D3).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\D3\d3.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\D3\d3.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\D3\LICENSE.txt).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\dom-autoscroller).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\dom-autoscroller\dom-autoscroller.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\dragula).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\dragula\dragula.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\dragula\dragula.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\dragula\dragula.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\dragula\dragula.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\ExcelExport).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\ExcelExport\jquery.battatech.excelexport.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\Data.xml).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\firebug-lite.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.afghanistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.africa.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.alabama.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.alaska.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.albania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.alberta.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.algeria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.andorra.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.angola.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.antigua.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.argentina.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.arizona.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.arkansas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.armenia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.asia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.asia3.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.asiageorgia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.australia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.australia2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.austria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.azerbaijan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.bahamas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.bahrain.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.bangladesh.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.barbados.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.belarus.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.belgium.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.belize.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.benin.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.bhutan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.bolivia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.bosniaherzegovina.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.botswana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.brazil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.brazilregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.britishcolumbia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.brunei.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.bulgaria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.burkinafaso.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.burma.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.burundi.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.california.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.cambodia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.cameroon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.canada.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.capeverde.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.caymanislands.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.centralafricanrepublic.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.centralamerica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.centralamerica2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.centralamericawithcaribbean.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.centraleuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.chad.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.Charts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.chile.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.china.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.china2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.colombia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.colorado.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.comoros.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.congo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.connecticut.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.costarica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.cotedivoire.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.croatia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.cuba.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.cyprus.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.cyprus2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.czechrepublic.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.delaware.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.democraticrepublicofcongo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.denmark.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.denmarkregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.districtofcolumbia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.djibouti.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.dominica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.dominicanrepublic.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.easteuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.easttimor.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.ecuador.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.egypt.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.elsalvador.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.england.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.englandregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.equatorialguinea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.eritrea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.estonia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.ethiopia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.europe.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.europe2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.europeregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.europewithcountries.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.falklandisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.fiji.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.finland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.florida.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.france.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.francedepartment.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.frenchguiana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.gabon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.gambia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.georgia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.germany.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.ghana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.greece.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.greenland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.grenada.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.guatemala.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.guinea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.guineabissau.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.guyana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.haiti.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.hawaii.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.honduras.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.hongkong.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.hungary.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.hungaryregions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.iceland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.idaho.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.illinois.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.india.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.indiana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.indonesia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.iowa.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.iran.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.iraq.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.ireland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.israel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.italy.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.jamaica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.japan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.jordan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.kansas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.kazakhstan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.kentucky.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.kenya.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.kiribati.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.kosovodistricts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.kuwait.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.kyrgyzstan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.laos.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.latvia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.lebanon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.lesotho.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.liberia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.libya.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.liechtenstein.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.lithuania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.louisiana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.luxembourg.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.macau.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.macedonia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.madagascar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.madagascarregions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.maine.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.malawi.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.malaysia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.mali.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.malta.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.manitoba.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.Maps.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.marshallisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.maryland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.massachusetts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.mauritania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.mauritius.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.mexico.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.michigan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.micronesia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.middleeast.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.minnesota.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.mississippi.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.missouri.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.moldova.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.monaco.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.mongolia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.montana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.montenegro.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.morocco.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.mozambique.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.namibia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.nauru.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.nebraska.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.nepal.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.netherlands.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.nevada.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.newbrunswick.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.newcaledonia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.newfoundlandandlabrador.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.newhampshire.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.newjersey.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.newmexico.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.newyork.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.newzealand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.nicaragua.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.niger.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.nigeria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.northamerica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.northamericawocentral.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.northcarolina.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.northdakota.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.northernireland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.northeuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.northkorea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.northwestterritories.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.norway.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.norwayregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.novascotia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.nunavut.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.oceania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.ohio.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.oklahoma.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.oman.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.ontario.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.oregon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.pakistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.palau.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.panama.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.papuanewguinea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.paraguay.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.pennsylvania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.peru.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.philippines.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.poland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.polandcounties.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.portugal.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.PowerCharts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.princeedwardisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.puertorico.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.qatar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.quebec.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.rhodeisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.romania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.russia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.rwanda.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.saintkittsandnevis.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.saintlucia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.saintvincentandthegrenadines.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.samoa.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.sanmarino.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.saotomeandprincipe.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.saskatchewan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.saudiarabia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.scotland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.scotlandregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.senegal.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.serbia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.serbiawokosovo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.seychelles.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.sierraleone.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.singapore.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.slovakia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.slovenia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.solomonisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.somalia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.southafrica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.southamerica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.southcarolina.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.southdakota.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.southeuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.southkorea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.southsudan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.spain.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.spainprovinces.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.srilanka.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.sudan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.sudanwosouthsudan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.suriname.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.swaziland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.sweden.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.switzerland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.syria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.taiwan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.tajikistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.tanzania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.tennessee.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.texas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.thailand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.tibet.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.togo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.tonga.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.trinidadandtobago.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.tunisia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.turkey.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.turkmenistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.tuvalu.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.uae.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.uganda.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.uk.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.uk7.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.ukraine.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.uruguay.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.usa.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.usacentralregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.usanortheastregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.usanorthwestregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.usaregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.usasoutheastregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.usasouthwestregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.utah.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.uzbekistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.vanuatu.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.vaticancity.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.venezuela.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.vermont.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.vietnam.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.virginia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.wales.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.washington.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.westernsahara.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.westeuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.westvirginia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.wisconsin.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.world.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.world8.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.world8withantarctica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.worldwithantarctica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.worldwithcountries.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.wyoming.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.yemen.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.yukonterritory.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.zambia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.HC.zimbabwe.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.jqueryplugin.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionCharts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionChartsExportComponent.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionMaps.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\FusionCharts\FusionMapsExportComponent.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\hammer).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\hammer\hammer.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\hammer\jquery.hammer.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\jquery-File-Upload).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\jquery-File-Upload\jquery.fileupload.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\jquery-File-Upload\jquery.iframe-transport.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\jqueryExtensions).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\jqueryExtensions\jquery.extensions.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\momentjs).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\momentjs\moment-2.10.3-with-locales.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\NVD3).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\NVD3\nv.d3.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\NVD3\nv.d3.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\NVD3\nv.d3.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\NVD3\nvd3Speak.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\NVD3\nvd3Speak.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\select2).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\select2\select2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\select2\select2.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\timeline).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\deps\timeline\timeline.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\jQueryPresenter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\scSession.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\scUserProfile.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\scUserProfile.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\speakExt.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\speakItem).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\speakItem\speakItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\speakItem\speakItem.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\Utils).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\Utils\DragAndDrop.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\lib\Utils\Placement.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Components).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Components\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Components\Renderings\Charts).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Components\Renderings\Charts\D3).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Components\Renderings\Charts\D3\Combination.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Components\Renderings\Charts\D3\Combination.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Speak Components - DefaultTheme).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Speak Components - DefaultTheme\speak-components.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Assets\stylesheets\Speak Components - DefaultTheme\speak-components.min.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\img).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\img\facebook.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\img\pinint.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\img\rss.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\img\sitecore.jpg).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\img\sitecore2.png).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\img\twitter.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\stylesheets).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Assets\stylesheets\guidance.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\2_day.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\2_month.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\2_quarter.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\2_week.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\2_year.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\4_day.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\4_month.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\4_quarter.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\4_week.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\4_year.json).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\ChartData\Traffic\5_year.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings\AllComponentProperties).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings\AllComponentProperties\AllComponentProperties.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings\AllComponentsList).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings\AllComponentsList\AllComponentsList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings\ComponentReferences).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings\ComponentReferences\ComponentReference.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings\ComponentReferences\ComponentReference.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Common\Layouts\Renderings\ComponentReferences\ComponentReference.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Dashboard.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\AreaChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\BarChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\ColumnChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\CombinationChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\DoughnutChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\DoughnutChartPage.zip).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\Legacy).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\Legacy\AreaChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\Legacy\BarChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\Legacy\ColumnChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\Legacy\DoughnutChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\Legacy\LineChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\Legacy\PieChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\Legacy\RadarChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\LineChartPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Charts\PieChartPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Common\ComboBoxes).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Common\ComboBoxes\DropList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Common\SheerUI).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Common\SheerUI\SheerUISubPageCode.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Common\Timelines).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Common\Timelines\Timeline.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Containers).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Containers\SubAppRenderer).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Containers\SubAppRenderer\SubAppRenderer.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Containers\SubAppRenderer\SubAppRendererContainerPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Containers\TabControl).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Containers\TabControl\CommunicationSubPageCode.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Containers\TabControl\DynamicSubPageCode.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Data).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Data\ChartDataSourcePage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Data\EntityDataSourcePage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Data\GenericDataSourcePage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Dialogs\ConfirmationDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Forms).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Forms\FormPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Indicators).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Indicators\ValueLabelPage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\DraggableElementLists).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\DraggableElementLists\DragAndDrop.md).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\DraggableElementLists\DragAndDrop_how-to.md).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\DraggableElementLists\DroppableCanvas.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\DraggableElementLists\DroppableCanvas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\DraggableElementLists\DroppableCanvas.min.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\DraggableElementLists\DroppablePageCodeTemplate.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\DraggableElementLists\DroppableSimple.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\ListControlGuidance.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\ListControlGuidanceTileList.css).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\ListControlGuidanceTileList.html).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\ListsAndGrids\ListControlSelection.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor11.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor12.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor13.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor21.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor22.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor23.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor31.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor32.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Content\Guidance\Renderings\Resources\Pipeline\Processor33.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Authentications).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Authentications\AccountInformations).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Authentications\AccountInformations\AccountInformation.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\AreaChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\AreaChart\AreaChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\BarChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\BarChart\BarChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\ColumnChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\ColumnChart\ColumnChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\CombinationChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\CombinationChart\CombinationChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Components).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Components\Area.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Components\Bar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Components\Column.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Components\Combination.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Components\Doughnut.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Components\Line.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Components\Pie.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\NVD3Models.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\NVD3Models.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\BaseNVD3Objects.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\Canvas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\ChartProperties.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\Colors.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\Constants.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\Data.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\Dispatcher.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\Formatter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\FormatterConfig.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\FunctionLines.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\NVD3Axis.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\NVD3Legend.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\NVD3Tooltip.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\NVD3VisualizationManager.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\Tooltip.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\Utils.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\D3\Models\src\UtilsConfig.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\DoughnutChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\DoughnutChart\DoughnutChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\FusionChartsAreaChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\FusionChartsBarChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\FusionChartsColumnChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\FusionChartsDoughnutChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\FusionChartsLineChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\FusionChartsPieChart.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\FusionChartsRadarChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\Shared).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\Shared\ChartAttributes.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\Shared\ChartPalette.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\Shared\ChartTemplateProperties.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\Shared\FusionChartsAdapter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\Legacy\Shared\FusionChartsBaseComponent.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\LineChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\LineChart\LineChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\PieChart).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Charts\PieChart\PieChart.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ActionControls).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ActionControls\ActionControl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Buttons).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Buttons\BackButton.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Buttons\Button.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Buttons\DropDownButton.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Buttons\IconButton.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Buttons\ToggleButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\CheckBoxLists).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\CheckBoxLists\CheckBoxList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ComboBoxes).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ComboBoxes\DropList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ComboBoxes\SearchableDropList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ContextSwitchers).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ContextSwitchers\ContextSwitcher.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ContextToggles).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ContextToggles\ContextToggle.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\DatePickers).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\DatePickers\DatePicker.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\HyperlinkButtons).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\HyperlinkButtons\HyperlinkButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ListBoxes).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ListBoxes\ListBox.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\MessageBars).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\MessageBars\MessageBar.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ProgressBars).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\ProgressBars\ProgressBar.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\RadioButtonList).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\RadioButtonList\RadioButtonList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\RadioButtons).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\RadioButtons\RadioButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\SheerUI).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\SheerUI\SheerUI.aspx).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\SheerUI\SheerUI.aspx.cs).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\SheerUI\SheerUI.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Sliders).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Sliders\Slider.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\TextAreas).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\TextAreas\TextArea.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\TextBoxes).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\TextBoxes\ButtonTextBox.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\TextBoxes\TextBox.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Timelines).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\Timelines\Timeline.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\TimePickers).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Common\TimePickers\TimePicker.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Borders).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Borders\ProgressIndicatorPanel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Borders\ScrollablePanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Expanders).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Expanders\Expander.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Frames).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Frames\Frame.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\LoadOnDemandPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\LoadOnDemandPanel\LoadOnDemandPanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Panels).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Panels\OverlayPanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Popovers).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\Popovers\Popover.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\TabControl).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Containers\TabControl\TabControl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\BaseDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\BaseDataSources\BaseDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\ChartDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\ChartDataSources\ChartDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\EntityDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\EntityDataSources\EntityDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\GenericDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\GenericDataSources\GenericDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\QueryDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\QueryDataSources\QueryDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\SearchDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Data\SearchDataSources\SearchDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Dialogs\DialogWindows).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Dialogs\DialogWindows\ConfirmationDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Dialogs\DialogWindows\DialogWindow.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Forms).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Forms\FormPanels).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Forms\FormPanels\Form.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Forms\Uploader).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Forms\Uploader\Uploader.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Forms\UploaderInfo).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Forms\UploaderInfo\UploaderInfo.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Indicators).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Indicators\ArrowIndicators).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Indicators\ArrowIndicators\ArrowIndicator.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Indicators\ValueLabels).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Indicators\ValueLabels\ValueLabel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ClientSideDataRepeaters).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ClientSideDataRepeaters\ClientSideDataRepeater.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\DraggableElementLists).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\DraggableElementLists\DraggableElementList.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ItemTreeViews).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ItemTreeViews\ItemTreeView.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\ListControl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-DetailList-Height-Default.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-DetailList-Height-Inherited.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-DetailList-Height-Row.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-DetailList-HeightFactory.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-IconList-Height-Default.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-IconList-Height-Inherited.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-IconList-Height-Row.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-IconList-HeightFactory.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-TileList-Height-Default.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-TileList-Height-Inherited.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-TileList-Height-Row.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\Height\ListControl-TileList-HeightFactory.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-DetailList-Header.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-DetailList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-IconList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-Main.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-ResizableColumns.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-ResponsiveColumns.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-TemplateHelper.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-TileList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-UserProfile.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\ListsAndGrids\ListControls\src\ListControl-ViewModel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\Checking.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\Collection.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\DataClickability.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\ImageHelper.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\MultiSelection.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\RangeSelection.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\Scrollable.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\Selection.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src\Collection-Data.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src\Collection-DefaultDataParser.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src\Collection-Factory.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src\Collection-FieldNameDisplay.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src\Collection-FieldNameValue.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src\Collection-Main.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src\Utils-DOM.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\src\Utils-Main.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Mixins\Utils.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Navigation).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Navigation\Menus).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Navigation\Menus\Menu.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Navigation\NavigationToggles).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Navigation\NavigationToggles\NavigationToggle.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Pipelines).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Pipelines\Pipeline.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Rules).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Rules\ConditionsAndActions).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\SetComponentPropertyToValue.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\ComponentHasPropertyValue.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\True.js).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\Resources\Rules\Rule.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\SearchingandFiltering).
Info: Adding directory (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\SearchingandFiltering\FilterControls).
Info: Adding file (sc91.local\sitecore\shell\client\Business Component Library\version 2\Layouts\Renderings\SearchingandFiltering\FilterControls\ItemFilterControl.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Services).
Info: Adding directory (sc91.local\sitecore\shell\client\Services\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Services\Assets\lib).
Info: Adding file (sc91.local\sitecore\shell\client\Services\Assets\lib\beaconApi.js).
Info: Adding file (sc91.local\sitecore\shell\client\Services\Assets\lib\beaconApi.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Services\Assets\lib\entityservice.js).
Info: Adding file (sc91.local\sitecore\shell\client\Services\Assets\lib\entityservice.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Services\Assets\lib\itemservice.js).
Info: Adding file (sc91.local\sitecore\shell\client\Services\Assets\lib\itemservice.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Services\Assets\lib\requireJsTurnOff.js).
Info: Adding file (sc91.local\sitecore\shell\client\Services\Assets\lib\requireJsTurnOn.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ContentTesting).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\ActiveTestState.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\Confirmation.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\CreatePageTestCommand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\Error.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\LoadingImage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\ShowActiveTestsCommand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\ShowHistoricalTestsCommand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\ShowPersonalizationCommand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\ShowSuggestedTestsCommand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\ShowTestResultsCommand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\ToggleOptimizationViewCommand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ContentTesting\UtilLayout.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\AddComponent.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\AddItemVersion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\AspNetTrace.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\AssociatedContent.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ChangeLanguage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\Close.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\Delete.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\DisplayName.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\DownloadProfile.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\DownloadTrace.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\EnableDesigning.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\EnableEditing.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\EnableFieldsValidation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\InsertPage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\LayoutDetails.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\Lock.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\MoreLanguages.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\MovePage.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\MyItems.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenAttributes.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenCompareVersions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenGoals.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenMarkupValidator.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenPresets.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenResetFields.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenSelectLanguageGallery.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenSelectVersionGallery.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\OpenValidationResults.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ProfileCards.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\Publish.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\PublishRestrictions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\RemoveVersions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\Rename.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ResetLayout.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\Save.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SaveProfile.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SaveTrace.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\Screenshots.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\Search.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SelectDevice.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SelectLayout.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SelectMode.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SelectProfileCard.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SelectVersion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SetAliases.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SetDeviceSimulator.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\SetEditMode.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ShowControlBar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ShowControls.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ShowDataSources.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ShowDeviceSimulators.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ShowNavigationBar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ToggleBorders.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ToggleInformation.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ToggleProfile.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\ToggleTrace.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Commands\WorkBox.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Alert).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Alert\Alert.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Alert\Alert.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\BaseDialogMockup).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\BaseDialogMockup\BaseDialogMockup.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\BaseDialogMockup\BaseDialogMockup.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\BaseDialogMockup\BaseDialogMockup.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Components).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Components\ContentSeparator.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Components\ContentSeparator.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Components\Images).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Components\Images\separator.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Confirm).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Confirm\confirm.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Confirm\Confirm.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\ContentUsage).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\ContentUsage\ContentUsage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\ContentUsage\ContentUsageCode.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\InsertPage).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\InsertPage\InsertPage.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\InsertPage\InsertPagePageCode.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Prompt).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\Prompt\Prompt.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\SelectDateTime.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Dialogs\SelectDateTime.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\DOMHelper.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\ExperienceEditor.Context.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\ExperienceEditor.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\PageEditbar).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\PageEditbar\LoadingIndicator.ascx).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\PageEditbar\PageEditBar.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\PageEditbar\PageEditBar.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\PageEditbar\PageEditBar.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\PageEditorProxy).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\PageEditorProxy\ExperienceEditorProxy.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\DeviceSimulators).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\DeviceSimulators\DeviceSimulatorsPageCode.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\DeviceSimulators\DeviceSimulatorsStyle.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\LeftOverflowPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\LeftOverflowPanel\LeftOverflowPanel.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\LeftOverflowPanel\LeftOverflowPanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\NavigationTreeView).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\NavigationTreeView\NavigationTreeView.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\NavigationTreeView\NavigationTreeView.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\ProfileCardsList).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pages\ProfileCardsList\ProfileCardsList.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\ChangeDisplayName).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\ChangeDisplayName\ChangeDisplayName.GetCurrent.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\ChangeDisplayName\ChangeDisplayName.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.BrokenLinksDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.CheckActiveTests.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.CheckCloneLinks.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.CheckLinks.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.CheckPermissions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.Confirm.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.DeleteActiveTests.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.ExecuteRequest.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\DeleteItem\DeleteItem.UncloneItems.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\CheckboxesCommandHandlers.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\CheckCommandCanExecute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\CheckItemRequireLock.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\ControlBarCheckboxCommandHandler.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\GetCommands.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\InitializeNotifications.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\InjectOptimizationViewMode.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\OptimizationViewMode.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\SetCheckboxFromRegistry.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InitializePageEdit\SetDropDownIconAndLabel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InsertItem).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InsertItem\InsertItem.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\InsertItem\InsertItem.GetName.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LayoutPresets).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LayoutPresets\LayoutPresets.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LayoutPresets\LayoutPresets.GetDialogUrl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LayoutPresets\LayoutPresets.OpenPresetsDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LockItem).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LockItem\LockItem.IsLockedByAnother.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LockItem\LockItem.IsReadOnly.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LockItem\LockItem.Lock.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\LockItem\LockItem.ProcessRequireLock.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\MoveItem).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\MoveItem\MoveItem.CheckIsSameDatabase.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\MoveItem\MoveItem.CheckLinks.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\MoveItem\MoveItem.CheckPermissions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\MoveItem\MoveItem.Move.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\MoveItem\MoveItem.OpenMoveDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\MoveItem\MoveItem.RepairLinks.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\OpenTrackingField).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\OpenTrackingField\OpenTrackingField.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\OpenTrackingField\OpenTrackingField.GetDialogUrl.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\OpenTrackingField\OpenTrackingField.OpenDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\ProcessItemRequireLock).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\ProcessItemRequireLock\AddNotification.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\ProcessItemRequireLock\CheckPreconditions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\ProcessItemRequireLock\DeactivateEditingFrames.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Publish).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Publish\Publish.CheckWorkflow.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Publish\Publish.OpenPublishDialog.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RemoveItemVersions).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RemoveItemVersions\RemoveVersions.CheckReferrers.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RemoveItemVersions\RemoveVersions.Confirm.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RemoveItemVersions\RemoveVersions.Execute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RemoveItemVersions\RemoveVersions.UncloneItems.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RemoveLanguage).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RemoveLanguage\RemoveLanguage.Confirm.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RemoveLanguage\RemoveLanguage.Execute.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RenameItem).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RenameItem\RenameItem.CheckLinks.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RenameItem\RenameItem.CheckPermissions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RenameItem\RenameItem.GetCurrentName.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RenameItem\RenameItem.GetNewName.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RenameItem\RenameItem.Rename.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\RenameItem\RenameItem.RepairLinks.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save\SaveItem.CallServerSavePipeline.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save\SaveItem.CheckBaseTemplateFieldChange.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save\SaveItem.CheckItemLock.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save\SaveItem.CheckLinks.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save\SaveItem.CheckRevision.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save\SaveItem.CheckTemplateFieldChange.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save\SaveItem.ValidateFields.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Save\SaveItem.Validators.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugProfile).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugProfile\SaveDebugProfile.CheckFileExists.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugProfile\SaveDebugProfile.GetCurrentName.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugProfile\SaveDebugProfile.GetNewName.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugProfile\SaveDebugProfile.SaveProfile.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugTrace).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugTrace\SaveDebugTrace.CheckFileExists.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugTrace\SaveDebugTrace.GetCurrentName.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugTrace\SaveDebugTrace.GetNewName.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\SaveDebugTrace\SaveDebugTrace.SaveTrace.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Search).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Search\SearchForItem.GetItemUrlRequest.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Pipelines\Search\SearchForItem.OpenDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\Ribbon.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\RibbonPageCode.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\TranslationUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\ValidateFieldsUtil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\web.config).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\web.Debug.config).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\ExperienceEditor\web.Release.config).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\16x16).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\16x16\component_blue.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\16x16\data_check.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\16x16\data_plus.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\16x16\floppy_disk.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\16x16\more_collapsed.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\16x16\more_expanded.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\16x16\ribboncrumb16x16.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\24x24).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\24x24\component_blue.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\24x24\document_edit.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\24x24\document_view.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\24x24\window_ok.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\24x24\window_view.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\32x32).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\32x32\document_new.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\48x48).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\48x48\document_notebook.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\48x48\folder_document.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\48x48\index.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\48x48\newspaper.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\48x48\phone_redirect.png).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Images\SitecoreIcons\48x48\rss.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Sprites).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Sprites\Ribbon).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Sprites\Ribbon\sprite-speak-ribbon-base-ee.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Styles).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Styles\Generated).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Styles\Generated\Dialog.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Assets\Styles\Generated\Gallery.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\BreadCrumb).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\BreadCrumb\Breadcrumb.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\BreadCrumb\Breadcrumb.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\BreadCrumb\Breadcrumb.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Chunk).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Chunk\Chunk.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Chunk\Chunk.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Command).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Command\Command.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Command\Command.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\CommandDependency).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\CommandDependency\CommandDependency.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\CommandDependency\CommandDependency.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\ContentTesting).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\ContentTesting\PersonalizationButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\ContentTesting\PersonalizationButton\PersonalizationButton.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\ContentTesting\ResultsButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\ContentTesting\ResultsButton\ResultsButton.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\DeviceSimulators).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\DeviceSimulators\DeviceSimulators.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\DeviceSimulators\DeviceSimulators.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\DeviceSimulators\DeviceSimulators.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\DeviceSimulators\DeviceSimulatorsButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\DeviceSimulators\DeviceSimulatorsButton\DeviceSimulatorsButton.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\InsertOptions).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\InsertOptions\InsertOptions.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\InsertOptions\InsertOptions.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\InsertOptions\InsertOptions.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeButton\LargeButton.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeButton\LargeButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeDropDownButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeDropDownButton\LargeDropDownButton.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeDropDownButton\LargeDropDownButton.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeDropDownButton\LargeDropDownButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeGalleryButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeGalleryButton\LargeGalleryButton.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\LargeGalleryButton\LargeGalleryButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Panel).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Panel\Panel.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Panel\Panel.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Panel\Panel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\QuickBar).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\QuickBar\QuickBar.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\QuickBar\QuickBar.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\QuickBar\QuickBar.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\QuickbarButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\QuickbarButton\QuickbarButton.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\QuickbarButton\QuickbarButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Ribbon).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Ribbon\Ribbon.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Ribbon\Ribbon.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SelectLanguageButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SelectLanguageButton\SelectLanguageButton.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SelectOptionItem).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SelectOptionItem\SelectOptionsItem.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SelectOptionItem\SelectOptionsItem.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SelectVersionButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SelectVersionButton\SelectVersionButton.cshtml).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SmallButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SmallButton\SmallButton.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SmallButton\SmallButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SmallCheckButton).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SmallCheckButton\SmallCheckButton.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SmallCheckButton\SmallCheckButton.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\SmallCheckButton\SmallCheckButton.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Strip).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Strip\Strip.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Strip\Strip.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Controls\Strip\Strip.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Components).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Components\AdditionalOptions).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Components\AdditionalOptions\GalleryAdditionalOption.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Components\AdditionalOptions\GalleryAdditionalOption.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Components\AdditionalOptions\GalleryAdditionalOption.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Components\GalleryOption.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Components\GalleryOption.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\GalleryStyle.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\GalleryUtil.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Languages).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Languages\SelectLanguageGallery.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Languages\SelectLanguageGallery.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\SetGalleryHeight.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Versions).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Versions\Options).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Versions\Options\SelectVersionOption.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Versions\Options\SelectVersionOption.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Versions\SelectVersionGallery.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Versions\SelectVersionGallery.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Galleries\Versions\SelectVersionGallery.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\Optimization).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\Optimization\ConfigureOptimizationStrip.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\PreviewDatePanel).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\PreviewDatePanel\ChangeDayLink.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\PreviewDatePanel\Commands).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\PreviewDatePanel\Commands\ChangeDay.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\PreviewDatePanel\Commands\SetDateAndTime.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\PreviewDatePanel\DateAndTime.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\PreviewDatePanel\PreviewDatePanel.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\PreviewDatePanel\PreviewDatePanel.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\ProfileCardPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\ProfileCardPanel\ProfileCardsPanel.cshtml).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\ProfileCardPanel\ProfileCardsPanel.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\ProfileCardPanel\ProfileCardsPanel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\Panels\TestStatusPanel.css).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\web.config).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\web.Debug.config).
Info: Adding file (sc91.local\sitecore\shell\client\Sitecore\Speak\Ribbon\web.Release.config).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\css).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\css\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\css\Dialogs\dialogs.css).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\css\speak-default-theme.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\css\Templates).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\css\Templates\Applications).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\css\Templates\Applications\dashboard.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\css\Templates\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\css\Templates\Dialogs\listpage.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Bootstrap).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Bootstrap\fonts).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Bootstrap\fonts\glyphicons-halflings-regular.eot).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Bootstrap\fonts\glyphicons-halflings-regular.svg).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Bootstrap\fonts\glyphicons-halflings-regular.ttf).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Bootstrap\fonts\glyphicons-halflings-regular.woff).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Charting).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Charting\arrow-left.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Charting\arrow-right.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Charting\double-arrow-left.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Charting\double-arrow-right.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\glyphicons-halflings-white.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\glyphicons-halflings.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\loading.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\logo.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\nav.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-dyna-tree.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-speak-logo.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-spinner16.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-sprite-arrows-white.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-sprite-arrows.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-sprite-structure.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-sprite-white.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-sprite.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\sc-sprite.txt).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\AccountInformation).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\AccountInformation\default_user_image.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\BackButton).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\BackButton\back_button.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\close.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\navigate_close.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\navigate_down.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\navigate_left.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\navigate_open.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\navigate_right.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\navigate_up.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\search.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\separator.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\star.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\dark_gray\star2.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\light_gray).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\light_gray\navigate_down.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white\close.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white\navigate_close.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white\navigate_down.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white\navigate_left.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white\navigate_open.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white\navigate_right.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white\navigate_up.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\16x16\white\separator.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\dark_gray).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\dark_gray\navigate_close.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\dark_gray\navigate_down.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\dark_gray\navigate_left.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\dark_gray\navigate_open.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\dark_gray\navigate_right.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\dark_gray\navigate_up.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\white).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\white\navigate_close.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\white\navigate_down.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\white\navigate_left.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\white\navigate_open.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\white\navigate_right.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\24x24\white\navigate_up.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\dark_gray).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\dark_gray\document_empty.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\dark_gray\navigate_close.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\dark_gray\navigate_down.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\dark_gray\navigate_left.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\dark_gray\navigate_open.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\dark_gray\navigate_right.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\dark_gray\navigate_up.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\white).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\white\navigate_close.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\white\navigate_down.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\white\navigate_left.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\white\navigate_open.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\white\navigate_right.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\32x32\white\navigate_up.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\loading.gif).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\mCustomScrollBar).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Common\mCustomScrollBar\mCSB_buttons.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\DatePicker).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\DatePicker\date_picker_arrows.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\DatePicker\date_picker_bg.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\DialogWindow).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\DialogWindow\close_button_sprite.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\GlobalLogo).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\GlobalLogo\global_logo.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Layouts).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Layouts\breadcrumb_red_bg.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Layouts\logo_spiral.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Layouts\menu-bg.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Menu).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Menu\arr1.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Menu\menu_highlighted.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Menu\menu_selectedarrow.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Menu\menu_toplevel.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\MessageBar).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\MessageBar\sc-message-bar-icons.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\NavigationPanelToggleButton).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\NavigationPanelToggleButton\navigationPanelToggleIcon.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\ProgressIndicator).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\ProgressIndicator\ajax-loader.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\ProgressIndicator\bg_overlay.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\ProgressIndicator\sc-spinner16.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\ProgressIndicator\sc-spinner32.gif).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\SmartPanel).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\SmartPanel\close_button_sprite.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_black_blacktoblack.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_black_blacktowhite.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_black_whitetoblack.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_black_whitetowhite.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_hover_blacktogrey.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_hover_greytoblack.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_hover_greytowhite.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_hover_whitetogrey.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_white_blacktowhite.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\arrow_white_whitetoblack.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\TabArrow.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\TabArrowSelected.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TabControl\TabArrowSelectedNext.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\campaign.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\channel.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\computer.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\contact.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\goal.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\like.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\location.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\multi-device.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\newsletter.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\phone.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\tablet.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Timeline\time.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TimePicker).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TimePicker\date_picker_bg.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TimePicker\time_picker_bg.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TreeView).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\TreeView\sc-dyna-tree.gif).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Uploader).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\Speak\Uploader\upload_file_icon.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\speak-logo.png).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\table-sep.gif).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\img\unknown_icon_32.png).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\backbone).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\backbone\backbone.1.0.0.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\backbone\backbone.1.0.0.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\css.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\jQuery).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\jQuery\jquery-2.1.1.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\jQuery\jquery-2.1.1.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\jstorage.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\ko).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\ko\knockout-2.2.1.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\ko\knockout-2.2.1.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\require.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\underscore).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\underscore\underscore.1.4.4.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\deps\underscore\underscore.1.4.4.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\main.bundled.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\main.cdn.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\main.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\main.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\sitecore-1.0.2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\sitecore-1.0.2.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\sitecore-1.0.2.packed.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\1.1\sitecore-1.0.2.packed.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\css.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\handlebars.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\handlebars.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\performance.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\require.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\require.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\scBindingPlugin.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\scBindingPlugin.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\scSpeakPresenter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\deps\scSpeakPresenter.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\globalize.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\main-2.0.bundled.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\main-2.0.cdn.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\main-2.0.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\main-2.0.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\mock.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\sitecore.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\sitecore.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\sitecore.packed.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\sitecore.packed.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\SitecoreSpeak.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\2.0\speak-require-config-2.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\vendor).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\core\vendor\q.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\extensions).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\extensions\validators).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\extensions\validators\readme.txt).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\contextTransforms.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\cs\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\contextTransforms.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\da\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\de\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\contextTransforms.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\en\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\contextTransforms.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\fr\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\hu\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ja\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\contextTransforms.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nb\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\contextTransforms.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\nl\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\contextTransforms.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\ru\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\contextTransforms.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\sv\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-buddhist.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-chinese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-coptic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-dangi.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-ethiopic-amete-alem.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-ethiopic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-generic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-gregorian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-hebrew.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-indian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-islamic-civil.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-islamic-rgsa.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-islamic-tbla.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-islamic-umalqura.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-islamic.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-japanese.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-persian.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\ca-roc.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\characters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\currencies.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\dateFields.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\delimiters.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\languages.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\layout.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\listPatterns.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\localeDisplayNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\measurementSystemNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\numbers.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\posix.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\scripts.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\territories.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\timeZoneNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\transformNames.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\units.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\main\zh\variants.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\de).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\de\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\el).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\el\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\en).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\en\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\en-US-POSIX).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\en-US-POSIX\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\es).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\es\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\fi).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\fi\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\fr).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\fr\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\it).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\it\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\ja).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\ja\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\pt).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\pt\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\root).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\root\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\ru).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\ru\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\zh).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\zh\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\zh-Hant).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\segments\zh-Hant\suppressions.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\aliases.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\calendarData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\calendarPreferenceData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\characterFallbacks.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\codeMappings.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\currencyData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\gender.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\languageData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\languageMatching.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\likelySubtags.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\measurementData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\metaZones.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\numberingSystems.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\ordinals.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\parentLocales.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\plurals.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\primaryZones.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\references.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\telephoneCodeData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\territoryContainment.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\territoryInfo.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\timeData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\weekData.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\globalize\supplemental\windowsZones.json).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\gulpfile.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\package.json).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\CheboxColumn.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\EndlessPageScroll.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\FixedFloatingContainer.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\FixedTable.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\MultiSelectList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\Resizable.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\Scroll.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\ScrollBar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\SortingRows.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\behaviors\Tooltip.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\bootstrap.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\bootstrap).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\bootstrap\js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\bootstrap\js\bootstrap.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\bootstrap\js\bootstrap.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\bootstrapModal).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\bootstrapModal\bootstrap-modal.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\bootstrapModal\bootstrap-modalmanager.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\BootstrapSlider).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\BootstrapSlider\bootstrap-slider.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\CustomScrollbar).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\CustomScrollbar\jquery.mCustomScrollbar.css).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\CustomScrollbar\jquery.mCustomScrollbar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\CustomScrollbar\jquery.mCustomScrollbar.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\CustomScrollbar\jquery.mousewheel.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\D3).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\D3\d3.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\DynaTree).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\DynaTree\jquery.dynatree-1.2.4.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\DynaTree\jquery.dynatree.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\DynaTree\skin-vista).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\DynaTree\skin-vista\ui.dynatree.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\elastislide).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\elastislide\jquery.elastislide.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\Data.xml).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\firebug-lite.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.afghanistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.africa.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.alabama.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.alaska.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.albania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.alberta.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.algeria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.andorra.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.angola.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.antigua.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.argentina.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.arizona.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.arkansas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.armenia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.asia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.asia3.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.asiageorgia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.australia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.australia2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.austria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.azerbaijan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.bahamas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.bahrain.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.bangladesh.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.barbados.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.belarus.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.belgium.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.belize.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.benin.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.bhutan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.bolivia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.bosniaherzegovina.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.botswana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.brazil.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.brazilregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.britishcolumbia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.brunei.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.bulgaria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.burkinafaso.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.burma.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.burundi.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.california.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.cambodia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.cameroon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.canada.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.capeverde.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.caymanislands.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.centralafricanrepublic.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.centralamerica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.centralamerica2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.centralamericawithcaribbean.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.centraleuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.chad.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.Charts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.chile.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.china.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.china2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.colombia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.colorado.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.comoros.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.congo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.connecticut.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.costarica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.cotedivoire.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.croatia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.cuba.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.cyprus.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.cyprus2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.czechrepublic.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.delaware.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.democraticrepublicofcongo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.denmark.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.denmarkregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.districtofcolumbia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.djibouti.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.dominica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.dominicanrepublic.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.easteuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.easttimor.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.ecuador.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.egypt.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.elsalvador.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.england.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.englandregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.equatorialguinea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.eritrea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.estonia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.ethiopia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.europe.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.europe2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.europeregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.europewithcountries.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.falklandisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.fiji.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.finland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.florida.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.france.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.francedepartment.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.frenchguiana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.gabon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.gambia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.georgia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.germany.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.ghana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.greece.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.greenland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.grenada.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.guatemala.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.guinea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.guineabissau.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.guyana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.haiti.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.hawaii.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.honduras.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.hongkong.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.hungary.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.hungaryregions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.iceland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.idaho.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.illinois.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.india.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.indiana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.indonesia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.iowa.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.iran.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.iraq.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.ireland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.israel.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.italy.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.jamaica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.japan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.jordan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.kansas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.kazakhstan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.kentucky.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.kenya.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.kiribati.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.kosovodistricts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.kuwait.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.kyrgyzstan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.laos.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.latvia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.lebanon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.lesotho.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.liberia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.libya.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.liechtenstein.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.lithuania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.louisiana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.luxembourg.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.macau.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.macedonia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.madagascar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.madagascarregions.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.maine.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.malawi.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.malaysia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.mali.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.malta.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.manitoba.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.Maps.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.marshallisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.maryland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.massachusetts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.mauritania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.mauritius.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.mexico.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.michigan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.micronesia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.middleeast.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.minnesota.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.mississippi.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.missouri.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.moldova.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.monaco.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.mongolia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.montana.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.montenegro.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.morocco.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.mozambique.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.namibia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.nauru.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.nebraska.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.nepal.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.netherlands.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.nevada.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.newbrunswick.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.newcaledonia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.newfoundlandandlabrador.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.newhampshire.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.newjersey.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.newmexico.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.newyork.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.newzealand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.nicaragua.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.niger.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.nigeria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.northamerica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.northamericawocentral.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.northcarolina.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.northdakota.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.northernireland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.northeuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.northkorea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.northwestterritories.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.norway.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.norwayregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.novascotia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.nunavut.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.oceania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.ohio.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.oklahoma.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.oman.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.ontario.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.oregon.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.pakistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.palau.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.panama.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.papuanewguinea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.paraguay.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.pennsylvania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.peru.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.philippines.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.poland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.polandcounties.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.portugal.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.PowerCharts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.princeedwardisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.puertorico.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.qatar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.quebec.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.rhodeisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.romania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.russia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.rwanda.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.saintkittsandnevis.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.saintlucia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.saintvincentandthegrenadines.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.samoa.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.sanmarino.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.saotomeandprincipe.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.saskatchewan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.saudiarabia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.scotland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.scotlandregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.senegal.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.serbia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.serbiawokosovo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.seychelles.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.sierraleone.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.singapore.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.slovakia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.slovenia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.solomonisland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.somalia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.southafrica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.southamerica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.southcarolina.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.southdakota.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.southeuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.southkorea.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.southsudan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.spain.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.spainprovinces.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.srilanka.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.sudan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.sudanwosouthsudan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.suriname.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.swaziland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.sweden.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.switzerland.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.syria.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.taiwan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.tajikistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.tanzania.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.tennessee.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.texas.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.thailand.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.tibet.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.togo.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.tonga.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.trinidadandtobago.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.tunisia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.turkey.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.turkmenistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.tuvalu.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.uae.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.uganda.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.uk.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.uk7.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.ukraine.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.uruguay.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.usa.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.usacentralregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.usanortheastregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.usanorthwestregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.usaregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.usasoutheastregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.usasouthwestregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.utah.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.uzbekistan.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.vanuatu.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.vaticancity.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.venezuela.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.vermont.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.vietnam.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.virginia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.wales.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.washington.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.westernsahara.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.westeuropeanregion.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.westvirginia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.wisconsin.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.world.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.world8.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.world8withantarctica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.worldwithantarctica.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.worldwithcountries.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.wyoming.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.yemen.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.yukonterritory.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.zambia.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.HC.zimbabwe.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.jqueryplugin.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionCharts.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionChartsExportComponent.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionMaps.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\FusionCharts\FusionMapsExportComponent.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\hammer).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\hammer\hammer.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\hammer\jquery.hammer.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jquery-File-Upload).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jquery-File-Upload\jquery.fileupload.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jquery-File-Upload\jquery.iframe-transport.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\JQuery.FileDrop).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\JQuery.FileDrop\jquery.filedrop.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jquery.timepicker).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jquery.timepicker\jquery.timepicker.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jqueryExtensions).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jqueryExtensions\jquery.extensions.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jquerypp).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jquerypp\jquerypp.custom.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jQueryUI).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jQueryUI\jquery-ui-1.10.1.custom.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jQueryUI\jquery-ui-1.10.1.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jQueryUI\jquery-ui-1.11.4.custom.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jQueryUI\jquery-ui-1.11.4.custom.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jQueryUI\jquery-ui-1.8.23.custom.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jQueryUIPosition).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\jQueryUIPosition\jquery-ui-1.10.3.position.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\modernizr).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\modernizr\modernizr.custom.17475.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\moment).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\moment\moment.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\NVD3).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\NVD3\nv.d3.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\NVD3\nvd3Speak.css).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\select2).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\select2\select2.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\select2\select2.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\timeline).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\deps\timeline\timeline.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\dialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\1.1\userProfile.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\backbone.1.1.1.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\backbone.1.1.1.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\bootstrap.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\bootstrap.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\jquery-2.1.1.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\jquery-2.1.1.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\knockout-3.0.0.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\knockout-3.0.0.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\underscore.1.6.0.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\deps\underscore.1.6.0.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\scKoPresenter.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\scKoPresenter.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\scPipeline.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\scPipeline.min.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\scSpeakObservableArray.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\2.0\scSpeakObservableArray.min.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\CheboxColumn.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\FixedFloatingContainer.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\FixedTable.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\MultiSelectList.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\Resizable.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\Scroll.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\ScrollBar.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\SortingRows.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Assets\lib\ui\behaviors\Tooltip.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\DataProviders).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\DataProviders\BaseDataProvider.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\DataProviders\ChartDataProvider.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\DataProviders\GenericDataProvider.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\QueryDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\QueryDataSources\QueryDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\SearchDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\SearchDataSources\SearchDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\WebServiceDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\WebServiceDataSources\jquery.webservice.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\WebServiceDataSources\jquery.xml2json.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\WebServiceDataSources\TestWebService.asmx).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Data\WebServiceDataSources\WebServiceDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Pipelines).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Pipelines\Pipeline.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\Alert.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\CloseDialogWithoutReturnValue.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\ComposeEmailWithoutSubject.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\ComposeEmailWithSubject.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\CopyComponentProperty.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\CopyNestedPropertiesFromTreeSelectedItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\CopyNestedPropertyFromSelectedItem.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\MakeHyperLink.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\MakeInternalLink.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\MakeInternalLinkFromTreeView.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\RemoveError.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\SetApplicationAttribute.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\SetComponentEnabled.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\SetComponentPropertyToValue.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\SetComponentVisibility.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\SetDialogReturnValue.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\SetDialogReturnValueAndCloseDialog.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\SetElementVisibility.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\ShowError.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\TriggerComponentEvent.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Actions\TriggerComponentJQueryEvent.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\ComponentHasPropertyValue.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\DataSourceHasFacets.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\DataSourceHasItems.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\ListControlHasSelectedItemId.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\PropertyValue.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\TextBoxHasText.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\True.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\WindowHeight.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\ConditionsAndActions\Conditions\WindowWidth.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\Rule.js).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\Rules\Rule.test.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\SettingsDictionaries).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\SettingsDictionaries\SettingsDictionary.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\StringDictionaries).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Resources\StringDictionaries\StringDictionary.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Services).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Services\EntityDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Services\EntityDataSources\EntityDataSource.js).
Info: Adding directory (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Services\QueryDataSources).
Info: Adding file (sc91.local\sitecore\shell\client\Speak\Layouts\Renderings\Services\QueryDataSources\StoredQueryDataSource.js).
Info: Adding file (sc91.local\sitecore\shell\client\web.config).
Info: Adding directory (sc91.local\sitecore\shell\Configuration).
Info: Adding file (sc91.local\sitecore\shell\Configuration\directive.properties).
Info: Adding file (sc91.local\sitecore\shell\Configuration\nvelocity.properties).
Info: Adding directory (sc91.local\sitecore\shell\Controls).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Applications).
Info: Adding file (sc91.local\sitecore\shell\Controls\Applications\Application.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Applications\Global Keys.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Browser.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\BucketList).
Info: Adding file (sc91.local\sitecore\shell\Controls\BucketList\BucketList.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\BucketList\BucketList.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Carousel).
Info: Adding file (sc91.local\sitecore\shell\Controls\Carousel\Carousel.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\CollapsiblePanel).
Info: Adding file (sc91.local\sitecore\shell\Controls\CollapsiblePanel\CollapsiblePanel.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\CollapsiblePanel\CollapsiblePanel.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Commandbars).
Info: Adding file (sc91.local\sitecore\shell\Controls\Commandbars\Command drop down.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Commandbars\Command.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Commandbars\Commandbar.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\CommandPortal).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Command portal.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Command portlet command disabled.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Command portlet command drop down.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Command portlet command.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Command portlet window.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets).
Info: Adding directory (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Commands).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Commands\Commands portlet.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Commands help).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Commands help\Commands help.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Commands info).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Commands info\Commands info.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Commands simple info).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Commands simple info\Commands simple info.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Static commands).
Info: Adding file (sc91.local\sitecore\shell\Controls\CommandPortal\Portlets\Static commands\Static commands portlet.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\ComponentArtGrid.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Data).
Info: Adding file (sc91.local\sitecore\shell\Controls\Data\TemplateDataContext.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\DatasourceExamples).
Info: Adding file (sc91.local\sitecore\shell\Controls\DatasourceExamples\DatasourceExamples.css).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Dialogs).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\ButtonCancel.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\ButtonOK.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\Dialog.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\FormDialog.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\OKCancelButtons.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\WebPanel.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\WizardForm.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\WizardFormFirstPage.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\WizardFormIndent.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\WizardFormLastPage.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\WizardFormPadding.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\WizardFormPage.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Dialogs\WizardFormProgressPage.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Error.htm).
Info: Adding directory (sc91.local\sitecore\shell\Controls\GlobalHeader).
Info: Adding file (sc91.local\sitecore\shell\Controls\GlobalHeader\GlobalHeader.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\InformationBar).
Info: Adding file (sc91.local\sitecore\shell\Controls\InformationBar\InformationBar.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\JqueryModalDialogs.html).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\Base).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Base\Base.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\Chosen).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Chosen\chosen-sprite.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Chosen\chosen.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Chosen\chosen.jquery.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Chosen\chosen.jquery.min.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Chosen\chosen.proto.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Chosen\chosen.proto.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\Console).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Console\ConsoleStub.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\Flexie).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Flexie\flex.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Flexie\flexie.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\iso8601).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\iso8601\iso8601.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\iso8601\iso8601.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery-1.10.0.min.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery-1.10.2.min.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery-1.6.4.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery-splitter).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery-splitter\jquery-splitter.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery-ui.min.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.dialogextended-2.0.3.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.mousewheel.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.noconflict.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.noconflict.strict.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.scextensions.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.tablesorter.extras-0.1.22.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.tmpl.min.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.watermark.custom.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jquery.watermark.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\jquery-ui-1.10.3.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\animated-overlay.gif).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-bg_flat_0_aaaaaa_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-bg_flat_75_ffffff_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-bg_glass_55_fbf9ee_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-bg_glass_65_ffffff_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-bg_glass_75_dadada_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-bg_glass_75_e6e6e6_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-bg_glass_95_fef1ec_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-bg_highlight-soft_75_cccccc_1x100.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-icons_222222_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-icons_2e83ff_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-icons_454545_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-icons_888888_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\images\ui-icons_cd0a0a_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.10.3\smoothness\jquery-ui-1.10.3.min.css).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\jquery-ui.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-bg_flat_0_aaaaaa_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-bg_flat_75_ffffff_40x100.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-bg_glass_55_fbf9ee_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-bg_glass_65_ffffff_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-bg_glass_75_dadada_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-bg_glass_75_e6e6e6_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-bg_glass_95_fef1ec_1x400.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-bg_highlight-soft_75_cccccc_1x100.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-icons_222222_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-icons_2e83ff_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-icons_454545_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-icons_888888_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\images\ui-icons_cd0a0a_256x240.png).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\jquery-ui.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jQueryUI\1.9.2\smoothness\jquery.ui.theme.css).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\jScrollPane).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jScrollPane\jquery.jscrollpane.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\jScrollPane\jquery.jscrollpane.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jQuery\PipelinesProfiling).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\PipelinesProfiling\jquery.qtip.custom.pipelines.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\tablesorter.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jQuery\tablesorter.scrollable.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\jsnlog).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jsnlog\jsnlog.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jsnlog\jsnlog.min.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\jsnlog\jsnlog.min.js.map).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\JSON).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\JSON\JSON2.min.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\Modernizr).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Modernizr\Modernizr.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\Prototype).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Prototype\prototype.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\QUnit).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\QUnit\qunit.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\QUnit\qunit.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous\builder.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous\controls.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous\dragdrop.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous\effects.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous\scriptaculous.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous\slider.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous\sound.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\Scriptaculous\unittest.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\YUIupload).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\YUIupload\uploader).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Lib\YUIupload\uploader\assets).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\YUIupload\uploader\assets\uploader.swf).
Info: Adding file (sc91.local\sitecore\shell\Controls\Lib\YUIupload\uploader\yui-uploader-min.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Listviews).
Info: Adding file (sc91.local\sitecore\shell\Controls\Listviews\ListviewViewsMenuItem.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Listviews\ListviewViewsMenuItems.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\MDI).
Info: Adding file (sc91.local\sitecore\shell\Controls\MDI\MDI tab.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\MDI\MDI.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Misc).
Info: Adding file (sc91.local\sitecore\shell\Controls\Misc\If.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Misc\SpotBox.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\MultiRootTreeview).
Info: Adding file (sc91.local\sitecore\shell\Controls\MultiRootTreeview\MultiRootTreeview.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Panes).
Info: Adding file (sc91.local\sitecore\shell\Controls\Panes\HiddenPane.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Panes\Pane.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Portal).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Default portlet window.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Portal configurator detail.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Portal configurator.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Portal sidebar.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Portal toolbutton.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Portlet item link.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Portlet selector.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Portlet window.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Portal\Sidebar portlet window.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Reload.htm).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Rich Text Editor).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Default.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Rich Text Editor\Dictionaries).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Dictionaries\de-DE.tdf).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Dictionaries\en-US.tdf).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Dictionaries\fr-FR.tdf).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Editor.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\EditorContentArea_RTL.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\EditorPage.aspx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\EditorPage.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\EditorWindow.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Rich Text Editor\InsertImage).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\InsertImage\InsertImage.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\InsertImage\InsertImage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Rich Text Editor\InsertLink).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\InsertLink\InsertLink.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\InsertLink\InsertLink.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Dialogs.da.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Dialogs.de.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Dialogs.ja-JP.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Dialogs.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Main.da.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Main.de.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Main.ja-JP.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Main.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Modules.da.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Modules.de.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Modules.ja-JP.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Modules.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Tools.da.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Tools.de.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Tools.ja-JP.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Localization\RadEditor.Tools.resx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\Preview.aspx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\RichText Commands.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\RichText.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\RTEfixes.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Rich Text Editor\ToolsFile.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Sidebar).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar content editor sections.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar content editor viewers.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar divider.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar pane.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar portal.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar tile button.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar tile header.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar tile option.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar tile selected task.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar tile static header.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar tile task.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar tile.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sidebar\Sidebar.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sitecore.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Sitecore.Runtime.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreHSplitter.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreHtmlEditor.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreKeyboard.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreLightbox.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreModalWindow.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreObjects.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreOutOfFrameGallery.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreSidebar.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreTreeview.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreVSplitter.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreWindow.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreWindowManager.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\SitecoreWizard.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Splitters).
Info: Adding file (sc91.local\sitecore\shell\Controls\Splitters\HSplitter.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Splitters\VSplitter.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Standard).
Info: Adding file (sc91.local\sitecore\shell\Controls\Standard\Form page.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Standard\WebPage.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Tasks).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\DisabledTaskOption.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskBackground.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskDivider.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskHeadline.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskLink.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskLinks.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskManager.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskOption.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskOption2.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskOptions.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskPage.aspx).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskPage.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskPageLink.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskText.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskTitle.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Tasks\TaskWhatDoYoWantToDo.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Testing).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Testing\CombinationsGrid).
Info: Adding file (sc91.local\sitecore\shell\Controls\Testing\CombinationsGrid\CombinationsGrid.css).
Info: Adding file (sc91.local\sitecore\shell\Controls\Testing\CombinationsGrid\CombinationsGrid.js).
Info: Adding file (sc91.local\sitecore\shell\Controls\Text.htm).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Toolbars).
Info: Adding file (sc91.local\sitecore\shell\Controls\Toolbars\AutoToolbar.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Toolbars\ToolOption.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Toolbars\ToolOptions.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Toolbars\ToolTask.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Toolbars\ToolTasks.xml).
Info: Adding directory (sc91.local\sitecore\shell\Controls\TreeviewEx).
Info: Adding file (sc91.local\sitecore\shell\Controls\TreeviewEx\TreeviewEx.aspx).
Info: Adding file (sc91.local\sitecore\shell\Controls\TreeviewEx\TreeviewEx.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\WebFramework).
Info: Adding file (sc91.local\sitecore\shell\Controls\WebFramework\webframework.js).
Info: Adding directory (sc91.local\sitecore\shell\Controls\Windows).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\BorderWindowChrome.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\ContentEditorChrome.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\DockWindowChrome.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\HeaderlessWindowCaption.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\PopupChrome.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\StandardWindowButtons.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\StandardWindowCaption.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\ToolWindowChrome.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\WindowButton.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\WindowChrome.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\WindowFrame.xml).
Info: Adding file (sc91.local\sitecore\shell\Controls\Windows\WindowHeaderlessChrome.xml).
Info: Adding file (sc91.local\sitecore\shell\default.aspx).
Info: Adding file (sc91.local\sitecore\shell\DialogHeader.ascx).
Info: Adding file (sc91.local\sitecore\shell\DialogPage.Master).
Info: Adding file (sc91.local\sitecore\shell\download.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Feeds).
Info: Adding file (sc91.local\sitecore\shell\Feeds\Action.aspx).
Info: Adding file (sc91.local\sitecore\shell\Feeds\Action.css).
Info: Adding file (sc91.local\sitecore\shell\Feeds\Action.js).
Info: Adding file (sc91.local\sitecore\shell\Feeds\feedpage.css).
Info: Adding directory (sc91.local\sitecore\shell\Feeds\Views).
Info: Adding file (sc91.local\sitecore\shell\Feeds\Views\WorkflowComment.ascx).
Info: Adding file (sc91.local\sitecore\shell\Feeds\workflow.js).
Info: Adding file (sc91.local\sitecore\shell\Invoke.aspx).
Info: Adding directory (sc91.local\sitecore\shell\Schemas).
Info: Adding file (sc91.local\sitecore\shell\Schemas\math.xsd).
Info: Adding file (sc91.local\sitecore\shell\Schemas\Sitecore xhtml.xsd).
Info: Adding file (sc91.local\sitecore\shell\Schemas\Sitecore xhtml5.xsd).
Info: Adding file (sc91.local\sitecore\shell\Schemas\sitecore.xsd).
Info: Adding file (sc91.local\sitecore\shell\Schemas\svg.xsd).
Info: Adding file (sc91.local\sitecore\shell\Schemas\xhtml.xsd).
Info: Adding file (sc91.local\sitecore\shell\Schemas\xhtml1-strict.xsd).
Info: Adding file (sc91.local\sitecore\shell\Schemas\xml.xsd).
Info: Adding file (sc91.local\sitecore\shell\sitecore.version.xml).
Info: Adding directory (sc91.local\sitecore\shell\Templates).
Info: Adding file (sc91.local\sitecore\shell\Templates\CSharp.cs).
Info: Adding file (sc91.local\sitecore\shell\Templates\HTMLPage.html).
Info: Adding file (sc91.local\sitecore\shell\Templates\JavaScript.js).
Info: Adding file (sc91.local\sitecore\shell\Templates\layout.aspx).
Info: Adding file (sc91.local\sitecore\shell\Templates\layout.aspx.cs).
Info: Adding file (sc91.local\sitecore\shell\Templates\layout.cshtmltemplate).
Info: Adding file (sc91.local\sitecore\shell\Templates\layout.xml).
Info: Adding file (sc91.local\sitecore\shell\Templates\StyleSheet.css).
Info: Adding file (sc91.local\sitecore\shell\Templates\sublayout.ascx).
Info: Adding file (sc91.local\sitecore\shell\Templates\sublayout.ascx.cs).
Info: Adding file (sc91.local\sitecore\shell\Templates\TextFile.txt).
Info: Adding file (sc91.local\sitecore\shell\Templates\XHTMLPage.html).
Info: Adding file (sc91.local\sitecore\shell\Templates\XHTMLPage.html.cs).
Info: Adding file (sc91.local\sitecore\shell\Templates\xmlcontrol.xml).
Info: Adding file (sc91.local\sitecore\shell\Templates\xmldialog.xml).
Info: Adding file (sc91.local\sitecore\shell\Templates\XMLFile.xml).
Info: Adding file (sc91.local\sitecore\shell\Templates\xmlform.xml).
Info: Adding file (sc91.local\sitecore\shell\Templates\xsl.xslt).
Info: Adding directory (sc91.local\sitecore\shell\Themes).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Backgrounds).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Blue.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Building.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Business.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Chameleon Cape.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\ColourfulLines.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\ColourfulSky.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Field.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Keyboard.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Light.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Lighthouse.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Lighthouse2.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Pine Neddles.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Red.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Shapes.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Snow.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Sparkle.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Stairs.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Sudak Still Rocky Shore.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Working.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Backgrounds\Yosemite.jpg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Navigator.css).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Speak).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Speak\fonts).
Info: Adding file (sc91.local\sitecore\shell\Themes\Speak\fonts\SitecoreIcons.svg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Speak\fonts\SitecoreIcons.ttf).
Info: Adding file (sc91.local\sitecore\shell\Themes\Speak\fonts\SitecoreIcons.woff).
Info: Adding file (sc91.local\sitecore\shell\Themes\Speak\fonts\SitecoreIcons.woff2).
Info: Adding file (sc91.local\sitecore\shell\Themes\Speak\fonts\SitecoreIconsColored.svg).
Info: Adding file (sc91.local\sitecore\shell\Themes\Speak\fonts\SitecoreIconsColored.ttf).
Info: Adding file (sc91.local\sitecore\shell\Themes\Speak\fonts\SitecoreIconsColored.woff).
Info: Adding file (sc91.local\sitecore\shell\Themes\Speak\sitecore-icons.css).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Applications.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ApplicationsV2.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Apps.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Business.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\BusinessV2.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Carousel.css).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\ComponentArt).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_nextMonth.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_nextMonthDown.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_nextMonthHover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_nextYear.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_nextYearDown.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_nextYearHover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_prevMonth.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_prevMonthDown.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_prevMonthHover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_prevYear.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_prevYearDown.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\btn_prevYearHover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\dayheader_bg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\month_selector.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\next.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\prev.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\spacer.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\top_headerBg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\top_HeaderDayBg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\top_HeaderMonthBg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Calendar\top_HeaderYearBg.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\asc.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\attachment.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\desc.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\flag_blue.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\flag_green.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\flag_none.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\flag_red.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\grid_headerBg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\group_asc.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\group_desc.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\header1stCell_bg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\header_bg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\header_rowBg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\icon_attachment.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\icon_flag.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\icon_icon.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\icon_priority.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\dash.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\dashminus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\dashplus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\i.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\l.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\lminus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\lplus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\minus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\noexpand.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\plus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\r.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\rminus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\rplus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\t.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\tminus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\lines\tplus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\msg_forwarded.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\msg_read.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\msg_replied.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\msg_unread.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\first.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\first_active.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\first_hover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\last.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\last_active.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\last_hover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\next.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\next_active.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\next_hover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\prev.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\prev_active.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\prev_hover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\slider_bg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\slider_grip.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\slider_grip_active.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\pager\slider_grip_hover.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\priority_high.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\priority_low.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\reorder.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\spacer.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\topItem_col.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Grid\topItem_exp.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\hover_tab_bg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\hover_tab_bg_jp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\hover_tab_left_icon.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\hover_tab_left_icon_jp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\hover_tab_right_icon.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\hover_tab_right_icon_jp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\selected_tab_bg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\selected_tab_bg_jp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\selected_tab_left_icon.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\selected_tab_left_icon_jp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\selected_tab_right_icon.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\selected_tab_right_icon_jp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\tab_bg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\tab_bg_jp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\tab_left_icon.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\tab_left_icon_jp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\tab_right_icon.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Tabstrip\tab_right_icon_jp.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\admin_tools.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\bg.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\cd.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\col.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\control_panel.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\desktop.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\dvd.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\entire_network.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\exp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\floppy.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder_docs.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder_fonts.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder_music.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder_open.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder_pictures.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder_shared.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder_tasks.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\folder_web.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\hard_drive.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\dash.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\dashminus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\dashplus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\i.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\l.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\lminus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\lplus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\minus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\noexpand.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\plus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\r.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\rminus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\rplus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\t.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\tminus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\lines\tplus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\mycomp.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\mynet.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\network_folder.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\network_node.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\net_connections.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\printers.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\recycle.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\scanners.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\scheduled_tasks.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\spacer.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\ComponentArt\Treeview\workgroup.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Control.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Core.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Core2.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Core3.zip).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Custom).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Custom\128x128).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\128x128\appcenter.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\appcenter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\edit_placeholder_pageeditor.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\edit_selected_item_pageeditor.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\error.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\fxm.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\fxm_add_page_filter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\fxm_assign_marketing_attribute.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\fxm_capture_click_action.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\fxm_insert_placeholder.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\fxm_manage_functions.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\info.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\move_pageeditor.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\pattern.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\photo_landscape2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\photo_landscape2_delete.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\photo_landscape2_edit.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\profile.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\profilecard_thumbnail.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\profile_customized.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\profile_personas.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\profile_thumbnail.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\Publish.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\PublishNow.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\PublishV2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\rss.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\16x16\warning.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\appcenter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\fxm.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\fxm_add_page_filter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\fxm_assign_marketing_attribute.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\fxm_capture_click_action.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\fxm_insert_placeholder.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\fxm_manage_functions.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\globaldevices.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\pattern.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\profile.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\profilecard_thumbnail.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\profile_customized.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\profile_personas.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\profile_thumbnail.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\Publish.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\PublishNow.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\PublishV2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\rss.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\24x24\rss_ok.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\appcenter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\fxm.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\fxm_add_page_filter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\fxm_assign_marketing_attribute.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\fxm_capture_click_action.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\fxm_insert_placeholder.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\fxm_manage_functions.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\pattern.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\profile.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\profilecard_thumbnail.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\profile_customized.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\profile_personas.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\profile_thumbnail.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\Publish.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\PublishNow.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\PublishV2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\32x32\rss.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\appcenter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\fxm.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\fxm_add_page_filter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\fxm_assign_marketing_attribute.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\fxm_capture_click_action.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\fxm_insert_placeholder.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\fxm_manage_functions.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\pattern.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\profile.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\profilecard_thumbnail.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\profile_customized.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\Profile_default.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\profile_personas.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\profile_thumbnail.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\Publish.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\PublishNow.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\rss.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Custom\48x48\rss_ok.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Database.zip).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Default).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\AccessViewer.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Calendar.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Common.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Content Manager.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Controls.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Default.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\DialogModeSwitcher.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Dialogs.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\EditableCombobox.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Floatie.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Folder.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Gallery Find.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Gallery.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\GlobalHeader.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Grid.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\IDE.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\ItemLister.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Listview.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Media Folder Viewer.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\MediaBrowser.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Ribbon.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\SelectItemWithThumbnails.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Shell.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Startbar.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\TemplateBuilder.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\TemplatesFolder.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\TemplateWorkspaceBaseTemplates.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Tiles.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Treeview.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\WebFramework.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Windows.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default\Workbox.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Default.css).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Firefox).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Firefox\Calendar.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Firefox\Common.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Firefox\Controls.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Firefox\Floatie.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Firefox\Gallery Find.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Firefox\IDE.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Firefox\ItemLister.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Firefox\Listview.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Flags.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\FlagsV2.zip).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Floatiebar.css).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Gradients).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\black_v.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\blue1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\blue2.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\documentblue1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\gray1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\gray2.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\gray3.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\gray_v.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\green1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\green2.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\lightblue1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\menu.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\orange1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\orange2.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\purple1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Gradients\red1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\IDE.css).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\16x16).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\16x16\msazure.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\24x24).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\24x24\msazure.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\32x32).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\32x32\msazure.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\48x48).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\48x48\msazure.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\accept16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\accept20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Accordion_down.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Accordion_down_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Accordion_up.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Accordion_up_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\administration16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\administration20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\administration32x32.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\administration48x48.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\anchor20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\approvals16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\approvals20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\approvals32x32.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\approvals48x48.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\approve32x32.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\back.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\back16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\back20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\back_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bginstall150x150.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bg_overlay.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\blank.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bold16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bold20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\borders16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\borders20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bubble0.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bubble1.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bubble2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bubble3.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bubble4.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bubble5.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bullet5x5.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bullet_square_green.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bullet_square_grey.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bullet_square_red.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\bullet_square_yellow.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\carousel_background.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\carousel_dot.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\carousel_plus.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\check.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\checkoff16x16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\checkoff20x20.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\checkoff20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\checkon16x16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\checkon16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\checkon20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\chevrondown16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\chevrondown16x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\chevronup16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\chevronup16x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\close.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\closewindow16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\closewindow16x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\close_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\close_red.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\close_red_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\collapse15x15.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\collapse9x9.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\collapse9x9.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\combobox.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\combobox_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\combobutton9x8.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor\GutterFlyout.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor\HeaderBackground.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor\Pager.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor\SearchBackground.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor\SectionBackground.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor\Splitter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor\TreeViewGutter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\content editor bottom bar.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor Section Background.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Content Editor Section Warning Background.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ContentEditorRibbonToolbar.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ContentEditorRibbonToolbarChunk.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentheaderbottomleft3x3.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentheaderbottomright3x3.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentheaderinfo.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentheaderinfo.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentheadertopleft3x3.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentheadertopright3x3.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsection16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsection16x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionbutton1.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionbutton1_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionbutton2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionbutton2_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionbutton3.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionbutton3_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionbutton4.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionbutton5.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectioncorner1.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectioncorner1.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectioncorner2.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectioncorner2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectioncorner3.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectioncorner3.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectioncorner4.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectioncorner4.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionleft4x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionleft4x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionright4x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentsectionright4x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\contentstatusbar.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\controlpanel.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_button16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_checkbox16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_date16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_datetime16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_dropdown16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_edit16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_hidden16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_html16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_iframe16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_image16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_link16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_listbox16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_multilist16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_number16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_password16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_radio16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_rights16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_submit16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_textarea16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\control_textfile16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\da16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\da20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\danish.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\danish20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\database_core.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\database_master.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\database_web.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\deletecell20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\deletecolumn20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\deleterow20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\dot.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\dot9x9.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\down.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\down_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\draghandle3x15.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\draghandle9x15.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\dropdown5x5.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\dropdown7x7.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Editor).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Editor\ImageManager.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Editor\LinkManager.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Editor\WebResource.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Editor\WebResource.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Editor\WebResource2.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Editor\WebResource2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\error.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\error.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\error_red.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\expand15x15.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\expand9x9.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\expand9x9.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\favorites.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\favorites_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\field16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\field7x9.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\firstnode16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Flash.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\forward.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\forward_h.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Galleries).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Galleries\Grip.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Galleries\GripBackground.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Galleries\SystemMenuBottom.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Galleries\SystemMenuToolbuttonBackground.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\GalleryDocumentBottom.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\global_logo.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\go16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\go24x24.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\gradient2800x1.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\gradient2800x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\gradient3800x1.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\gradient800x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\graygradient1x55.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\grip.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\hamburgermenu_default.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\hamburgermenu_hover_active.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\homebutton.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\homebutton2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\homebutton2_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\homebutton_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\image16x16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\imageleft16x16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\imagenone16x16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ImageNotFound.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\imageright16x16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\information.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\information_blue.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Inherited9x9.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertcell20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertcellleft20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertcellright20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertcolumn20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertcolumnleft20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertcolumnright20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertrow20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertrowabove20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insertrowbelow20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insert_graphic.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insert_hyperlink.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\insert_hyperlink.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\install64x64.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\ja).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ja\RibbonToolbarChunk.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ja\RibbonToolbarChunkHover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ja\RibbonToolbarContextualChunk.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\JCarousel).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\JCarousel\carouselbg.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\JCarousel\next-horizontal-disabled.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\JCarousel\next-horizontal-hover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\JCarousel\next-horizontal.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\JCarousel\prev-horizontal-disabled.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\JCarousel\prev-horizontal-hover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\JCarousel\prev-horizontal.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\left16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\left16x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\listviewheader16x17.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\listviewheaderhover16x17.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\loading15x15.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Login).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Login\sc-message-bar-icons.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\logo32x32.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\maximizewindow16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\maximizewindow16x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\menudropdown9x8.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\menudropdown_black9x8.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\minimizewindow16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\minimizewindow16x16_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\navigate_down.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\navigate_up.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\new_symbol.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\No9x9.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\noexpand15x15.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\noexpand9x9.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\noexpand9x9.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\add_to_here_left.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\add_to_here_left_hover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bar-chart.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_hidden_rendering.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_hover_frame_corner_bl.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_hover_frame_corner_br.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_hover_frame_corner_tl.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_hover_frame_corner_tr.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_hover_frame_horizontal.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_hover_frame_vertical.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_move_control_bottom.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_move_control_left.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_move_control_right.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_move_control_top.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\bg_transparent.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\corner.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\EmptyPlaceholderBg.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\loading-indicator.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\move_to_here_center.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\move_to_here_center_hover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\move_to_here_left.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\move_to_here_left_hover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\move_to_here_right.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\move_to_here_right_hover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\next.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\prev.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PageEditor\toolbar_progress.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Personalization).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Personalization\PresetRowSelected.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Personalization\ProfileCardSelected.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\PipelineProfiling).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PipelineProfiling\font_char49_red_16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PipelineProfiling\font_char50_orange_16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\PipelineProfiling\font_char51_yellow_16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\previewmenu.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\previewmenu_h.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Progress).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\background.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\background_center.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\background_left.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\background_media.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\background_right.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\filler.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\filler_error.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\filler_media.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\globalsearch_close.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\globalsearch_close_H.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\globalsearch_close_H_blue.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\globalsearch_progress.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\more_collapsed.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Progress\more_expanded.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\progress.gif).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\ProgressIndicator).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ProgressIndicator\ajax-loader.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ProgressIndicator\sc-spinner16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ProgressIndicator\sc-spinner32.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\question9x9.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\radiooff16x16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\radiooff16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\radiooff20x20.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\radioon16x16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\radioon16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\radioon20x20.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\ContextualTabBackground.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\Infobar.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\LargeButtonActive.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\PanelDown.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\PanelDown_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\PanelOpen.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\PanelOpen_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\PanelUp.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\PanelUp_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\ribbon_panel_down.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\ribbon_panel_down_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\ribbon_panel_open.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\ribbon_panel_open_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\ribbon_panel_up.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\ribbon_panel_up_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\SmallButtonActive.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab0.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab0_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab1.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab1_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab2_h1.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab2_h2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab3.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab3_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab4.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab5.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab6.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\tab7.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2\ribbon_area.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2\ribbon_area_jp.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2\ribbon_groupsplitter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2\sitecore_ribbon_watermarkbackground.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2\splitter.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2\tab_all_withshadow_left.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2\tab_shadow_left.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Ribbon\V2\treecrumb_area2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ribbon.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonButtonHover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonButtonSelected.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonChunkGlyph.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonChunkGlyph_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonContextualTabSelected.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ribboncrumb16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ribbondropdown.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ribbondropdown_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonLargeButtonDown.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonLargeButtonHover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonNavigatorButtonActive.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonNavigatorContextualButtonActive.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonQuickAccess.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonScrollPanelDropDown.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonScrollPanelDropDown_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonSmallButtonDown.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonSmallButtonHover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonTabSelected.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonToolbarChunk.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonToolbarChunkHover.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonToolbarContextualChunk.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonToolbarContextualStrip.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonToolbarStrip.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RibbonToolButton.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ribbon_collapser.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\ribbon_expander.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\right16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\right16x16_d.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\right16x16_h.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\RSS).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RSS\feed-icon-10x10.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RSS\feed-icon-12x12.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RSS\feed-icon-14x14.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RSS\feed-icon-16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RSS\feed-icon-24x24.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\RSS\feed-icon-32x32.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sc-spinner15.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sc-spinner16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sc-spinner32.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\scrollerleft.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\scrollerleft_h.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\scrollerright.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\scrollerright_h.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Security).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_allow_disabled.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_allow_disabled_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_allow_enabled.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_allow_enabled_d.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_allow_enabled_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_deny_disabled.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_deny_disabled_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_deny_enabled.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_deny_enabled_d.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\large_deny_enabled_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\NA.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_allow_disabled.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_allow_disabled_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_allow_enabled.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_allow_enabled_d.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_allow_enabled_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_deny_disabled.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_deny_disabled_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_deny_enabled.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_deny_enabled_d.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Security\small_deny_enabled_h.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\seperator.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\shelldetails.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\shelldetails2.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sitecore-loader16.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sitecore-loader24.gif).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sitecorebutton76x24.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\SitecoreImage.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\SitecoreLogo.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\SitecoreOwnTheExperience.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\SitecoreTriangle.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\skin.css).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\smallgrip.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sortdown9x5.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sortup9x5.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\sparkle.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Speak).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Speak\16x16).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Speak\16x16\Startpage.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Speak\24x24).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Speak\24x24\Startpage.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Speak\32x32).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Speak\32x32\Startpage.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Speak\48x48).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Speak\48x48\Startpage.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\spin16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\spindown16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\spinup16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\start16x16.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\start32x32.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\start48x48.png).
Info: Adding directory (sc91.local\sitecore\shell\Themes\Standard\Images\Startbar).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Startbar\ApplicationBackground.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Startbar\ApplicationBackgroundDown.png).
Info: Adding file (sc91.local\sitecore\shell\Themes\Standard\Images\Startbar\ApplicationLeft.png).
Info: Adding file (sc91.local\sitecore\shell\Theme
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Saturday, January 20, 2018

Sitecore Powershell :: Reporting 'used image items with empty Alt field' using Alt tag Action

My client came up with a requirement to get the list of Media items with empty Alt field. In our existing Powershell package, we already have such reports.

But, when the requirement got refined to get the list of Used Media items with empty Alt Field (Because we have junk of media items which were unused) there were no options.
As a result,  I created the below scripts to get Used media items with Empty Alt field.
Create a Script under the path (/sitecore/system/Modules/PowerShell/Script Library/Content Reports/Reports/Media Audit/Used Image items with empty Alt field)




function HasReference {
    param(
        $Item
    )
    
    $linkDb = [Sitecore.Globals]::LinkDatabase
    $linkDb.GetReferrerCount($Item) -gt 0
}

function Get-MediaItemWithNoReference {
    $items = Get-ChildItem -Path "master:\sitecore\media library" -Recurse
 | Where-Object { $_.TemplateID -ne [Sitecore.TemplateIDs]::MediaFolder }
    
    foreach($item in $items) {
        if((HasReference($item))) {
   if($item."Alt" -eq '') {
            $item
        }
      }
    }
}

$items = Get-MediaItemWithNoReference

if($items.Count -eq 0) {
    Show-Alert "There are no used media items."
} else {
    $props = @{
        InfoTitle = $PSScript.Name
        InfoDescription = "Lists used media items that are not linked from other items."
        PageSize = 25
        Title = $PSScript.Name
    }
    
    $items |
        Show-ListView @props -Property @{Label="Name"; Expression={$_.DisplayName} },
            @{Label="Updated"; Expression={$_.__Updated} },
            @{Label="Updated by"; Expression={$_."__Updated by"} },
            @{Label="Created"; Expression={$_.__Created} },
            @{Label="Created by"; Expression={$_."__Created by"} },
            @{Label="Path"; Expression={$_.ItemPath} }
}
Close-Window


After running the script, I extracted the report with empty Alt tags.
But then I thought how they will be able input those bulk data from the report.
So, instead of opening each item, I came up with an idea to give them the Alt field against each media item. Hence, I created the Alt Tag Action under Item Ribbon.
(/sitecore/system/Modules/PowerShell/Script Library/Platform/Internal/List View/Ribbon/Item/Alt Tag)



foreach($Item in $selectedData)
{
    
$mediaItem = [Sitecore.Data.Items.MediaItem]$item;
$alt = $mediaItem.Alt;
$result = Read-Variable -Parameters `
   @{ Name = "alt"; Title = "Alt Tag";  Columns = 6 }   `
   -Description "Edit alt tag of '$($Item.DisplayName)'" `
   -Title "$($Item.DisplayName)" -Icon "Applications/16x16/photo_scenery.png"
                -Width 400 -Height 470 -OkButtonName "Change"
                -CancelButtonName "Cancel" -ShowHints;
  if ($result -eq "ok") {
  $Item.Editing.BeginEdit()
    $Item.Fields["Alt"].Value = $alt
    $Item.Editing.EndEdit()

 }
}


But this action was applicable for all the items, now what to do ??
Simple, restrict the rules only for Media items as below and it’s done ️.




Run the script now.







Select the media Item and Click Alt Tag Action.




Click change and open the Media item for the verifying the Input.



Download the Sitecore Package: Alt Tag Powershell Package

Thursday, January 11, 2018

Sitecore Powershell :: Redirect URL List


I wanted to make my hand dirty by exploring more on Sitecore Powershell, So I installed “Sitecore PowerShell Extensions-4.7 for Sitecore 8” Package and started looking into the ISE and console with existing Scripts. Suddenly something came to my mind. And, its the idea to list the Redirect URL in our site (Which may be huge in other sites).

Perquisites:   Redirect Module should have been used on your site.
Process:
Firstly, I created a new Redirect Powershell Script Module under Script Library.
And then, I created a Toolbox Script Library and then Redirect URL List Script.


In Scripting field, I wrote the below scripts:
# Get all the items recursively where the TemplateName equals "Redirect Url".
Get-ChildItem -Path master:\sitecore\system\Modules -Recurse | 
Where-Object { $_.TemplateName -match "Redirect Url"  } |
    Show-ListView -Property @{Label="Name"; Expression={ $_.DisplayName } },
  @{Label="Requested Url"; Expression={ $_.Fields["Requested Url"]} },
  @{Label="Response Status Code"; 
Expression={ $_.Database.GetItem($_.Fields["Response Status Code"]).Name} },
  @{Label="Redirect To Item"; 
Expression={ [Sitecore.Links.LinkManager]::GetItemUrl($_.Database.GetItem($_.Fields["Redirect To Item"]))} },
  @{Label="Redirect To Url"; Expression={ $_.Fields["Redirect To Url"]} }  `
        -Title "Redirect URL List"
        
Close-Window


After the completion of the Creation process, It should be listed in Powershell Toolbox as below.


Below is the result obtained on the click of Script created,:


Explanation:
This will extract all the items with the template name “Redirect URL”. In the List view property, the fields have been bound. To get the Redirect Item, I used Linkmanager that gives the Item URL.

Download the Sitecore Package: Redirect URL list Package