OSDN Git Service

Modified: Upload, Command execution
author平田健悟 <hiratakengo@hiratakengo-no-MacBook-Pro.local>
Mon, 20 Feb 2017 08:33:32 +0000 (17:33 +0900)
committer平田健悟 <hiratakengo@hiratakengo-no-MacBook-Pro.local>
Mon, 20 Feb 2017 08:33:32 +0000 (17:33 +0900)
・ファイルのアップロードをワークスペースから行えるようにした。
・Eosコマンドを正常に実行できるようにした。
・アップロードは設計どおりには実装できておらず、fileUpload.htmlからPOSTすることで対応した。
・コマンドの実行もfileidではなく、filenameをキーにしてコマンドを実行させることで対応した。
・コマンド実行後に出力ファイルをDBに登録する際、既存のファイルも登録しているため、二重に登録されている。
・existFileIdメソッドで新しいファイルのみを判定させるが未完成。

96 files changed:
.gitignore [new file with mode: 0755]
bin/zephyr [new symlink]
cli/lib/create-json-file.rb [new file with mode: 0755]
cli/lib/option.rb [new file with mode: 0755]
cli/zephyr [new file with mode: 0755]
cli/zephyr-debug [new file with mode: 0755]
cli/zephyr-parse [new file with mode: 0755]
cli/zephyr-serve [new file with mode: 0755]
docker/Dockerfile [new file with mode: 0755]
docker/Vagrantfile [new file with mode: 0755]
front-end/app/index.html [new file with mode: 0755]
front-end/app/scripts/App.ts [new file with mode: 0755]
front-end/app/scripts/controllers/Execution.ts [new file with mode: 0755]
front-end/app/scripts/controllers/History.ts [new file with mode: 0755]
front-end/app/scripts/controllers/Preview.ts [new file with mode: 0755]
front-end/app/scripts/controllers/SelectCommand.ts [new file with mode: 0755]
front-end/app/scripts/controllers/Upload.ts [new file with mode: 0644]
front-end/app/scripts/controllers/Workspace.ts [new file with mode: 0755]
front-end/app/scripts/declares.ts [new file with mode: 0755]
front-end/app/scripts/directives/Command.ts [new file with mode: 0755]
front-end/app/scripts/directives/Directory.ts [new file with mode: 0755]
front-end/app/scripts/directives/HeaderMenu.ts [new file with mode: 0755]
front-end/app/scripts/directives/Option.ts [new file with mode: 0755]
front-end/app/scripts/directives/Upload.ts [new file with mode: 0644]
front-end/app/scripts/entry.ts [new file with mode: 0755]
front-end/app/scripts/filters/Tag.ts [new file with mode: 0755]
front-end/app/scripts/reference.ts [new file with mode: 0755]
front-end/app/scripts/services/APIEndPoint.ts [new file with mode: 0755]
front-end/app/scripts/services/Console.ts [new file with mode: 0755]
front-end/app/scripts/services/MyModal.ts [new file with mode: 0755]
front-end/app/scripts/services/WebSocket.ts [new file with mode: 0755]
front-end/app/style.scss [new file with mode: 0755]
front-end/app/templates/command.html [new file with mode: 0755]
front-end/app/templates/directory.html [new file with mode: 0755]
front-end/app/templates/execution.html [new file with mode: 0755]
front-end/app/templates/header-menu.html [new file with mode: 0755]
front-end/app/templates/history.html [new file with mode: 0755]
front-end/app/templates/option.html [new file with mode: 0755]
front-end/app/templates/preview.html [new file with mode: 0755]
front-end/app/templates/select-command.html [new file with mode: 0755]
front-end/app/templates/upload.html [new file with mode: 0644]
front-end/app/templates/workspace.html [new file with mode: 0755]
front-end/dist/bundle.js [new file with mode: 0755]
front-end/dist/css/style.css [new file with mode: 0755]
front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.eot [new file with mode: 0755]
front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.svg [new file with mode: 0755]
front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.ttf [new file with mode: 0755]
front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.woff [new file with mode: 0755]
front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.woff2 [new file with mode: 0755]
front-end/dist/index.html [new file with mode: 0755]
front-end/dist/templates/command.html [new file with mode: 0755]
front-end/dist/templates/directory.html [new file with mode: 0755]
front-end/dist/templates/execution.html [new file with mode: 0755]
front-end/dist/templates/header-menu.html [new file with mode: 0755]
front-end/dist/templates/history.html [new file with mode: 0755]
front-end/dist/templates/option.html [new file with mode: 0755]
front-end/dist/templates/preview.html [new file with mode: 0755]
front-end/dist/templates/select-command.html [new file with mode: 0755]
front-end/dist/templates/upload.html [new file with mode: 0644]
front-end/dist/templates/workspace.html [new file with mode: 0755]
front-end/gulpfile.js [new file with mode: 0755]
front-end/tsconfig.json [new file with mode: 0755]
front-end/tsd.json [new file with mode: 0755]
front-end/webpack.config.js [new file with mode: 0755]
package.json [new file with mode: 0755]
server/api/commandExecution/index.js [new file with mode: 0755]
server/api/commandList/index.js [new file with mode: 0755]
server/api/dirCreation/index.js [new file with mode: 0755]
server/api/dirInfo/index.js [new file with mode: 0755]
server/api/fileCreation/index.js [new file with mode: 0755]
server/api/noteCreation/index.js [new file with mode: 0755]
server/api/noteInfo/index.js [new file with mode: 0755]
server/api/optionControlFile/index.js [new file with mode: 0755]
server/api/tagList/index.js [new file with mode: 0755]
server/api/v1/all/workspace/directory/index.js [new file with mode: 0755]
server/api/v1/commandList/index.js [new file with mode: 0755]
server/api/v1/debug/index.js [new file with mode: 0755]
server/api/v1/execution/index.js [new file with mode: 0644]
server/api/v1/fileUpload/index.js [new file with mode: 0755]
server/api/v1/help/index.js [new file with mode: 0755]
server/api/v1/optionControlFile/index.js [new file with mode: 0755]
server/api/v1/tagList/index.js [new file with mode: 0755]
server/api/v1/workspace/index.js [new file with mode: 0755]
server/app.js [new file with mode: 0755]
server/class/DB.js [new file with mode: 0755]
server/class/Eos.js [new file with mode: 0755]
server/class/WebSocket.js [new file with mode: 0755]
server/class/hoge.js [new file with mode: 0755]
server/config.js [new file with mode: 0755]
server/express.js [new file with mode: 0755]
server/routes.js [new file with mode: 0755]
test/mocha/DB.test.js [new file with mode: 0755]
test/mocha/Eos.test.js [new file with mode: 0755]
test/mocha/testCommand.json [new file with mode: 0755]
test/rest/execution.test.js [new file with mode: 0755]
user-specific-files/description.txt [new file with mode: 0755]

diff --git a/.gitignore b/.gitignore
new file mode 100755 (executable)
index 0000000..9458554
--- /dev/null
@@ -0,0 +1,18 @@
+.EosLog
+
+npm-debug.log
+
+.DS_Store
+
+node_modules/
+
+front-end/typings/
+
+cli/npm-debug.log*
+
+user-specific-files/OptionControlFile/
+user-specific-files/meta/
+user-specific-files/workspace/
+user-specific-files/workspace.debug
+user-specific-files/db/
+user-specific-files/tmp/
diff --git a/bin/zephyr b/bin/zephyr
new file mode 120000 (symlink)
index 0000000..0eddd94
--- /dev/null
@@ -0,0 +1 @@
+../cli/zephyr
\ No newline at end of file
diff --git a/cli/lib/create-json-file.rb b/cli/lib/create-json-file.rb
new file mode 100755 (executable)
index 0000000..f3b76ab
--- /dev/null
@@ -0,0 +1,109 @@
+EosHome           = ENV["EOS_HOME"]
+EosSrc            = EosHome + "/src/Tools/"
+JSONDirPath       = ENV["ZEPHYR_HOME"] + "/user-specific-files/OptionControlFile/"
+CommandOptionPath = JSONDirPath + "commands/"
+CommandListPath   = JSONDirPath + "command_list.json"
+TagListPath       = JSONDirPath + "tag_list.json"
+ErrorLogPath      = JSONDirPath + "error_log.json"
+
+require ENV["ZEPHYR_HOME"] + "/cli/lib/option"
+require "json"
+
+error_logs    = Hash.new
+command_lists = Array.new
+class_names   = Dir.glob("#{EosSrc}*").sort
+tag_list      = Array.new
+tag_list.push("all")
+
+if !(Dir.exist?(JSONDirPath))
+  Dir.mkdir(JSONDirPath, 0755)
+end
+
+if !(Dir.exist?(JSONDirPath + 'commands/'))
+  Dir.mkdir(JSONDirPath + 'commands/', 0755)
+end
+
+#For Debug
+#count = 0
+
+class_names.each do |class_path|
+  class_name = File.basename(class_path)
+
+  if (class_name == "Makefie" ||
+      class_name == "Makefile.orig" ||
+      class_name == "Config") then
+    next
+  end
+
+  command_names = Dir.glob("#{class_path}/*").sort
+
+  command_names.each do |command_path|
+    command_name = File.basename(command_path)
+    if (command_name=="Makefile"||
+        command_name=="Makefile.orig"||
+        command_name=="Config"
+      command_name == "Makefile.org"  ||
+        command_name == "q") then
+      next
+    end
+
+    #success Hash  {option->option ,tag->tag}
+    #error   Array [option_path,ex.class]
+    #タグがとれるようになったら、
+    #create_json_file.rbとoption.rbを書き換える
+    result = Option.csv2hash(command_path)
+    #tag    = result[:tag]
+
+    if result.class.to_s == "Hash"
+      # print "OK\n"
+      option = result[:option]
+      json_name = CommandOptionPath + "#{command_name}.json"
+      json = JSON.pretty_generate(option)
+
+      #write to ~/json/option/
+      open(json_name,"w") do |fh|
+        fh.write(json)
+      end
+
+      #prepare for ~/json/command_list.json
+      tmp = Hash.new
+      tmp[:name] = command_name
+      tmp[:tags]  = Array.new 
+      tmp[:tags].push("all")
+      tmp[:tags].push(class_name)
+      command_lists.push(tmp)
+
+      if !tag_list.include?(class_name)
+        tag_list.push(class_name)
+      end
+
+    elsif result.class.to_s == "Array"
+      error = Hash.new
+      error["path"]    = result[0]
+      error["error"]   = result[1]
+      error_logs[command_name] = error
+    else 
+      print "Unexpected Error Occured!\n"
+    end
+  end 
+  #break
+end
+
+  #Write to ~/json/command_list.json
+json = JSON.pretty_generate(command_lists)
+open(CommandListPath,"w") do |fh|
+  fh.write(json)
+end
+
+#Write to ~/json/error_log.json
+json = JSON.pretty_generate(error_logs)
+open(ErrorLogPath,"w") do |fh|
+  fh.write(json)
+end
+
+##write to ~/json/tag_list.json
+json = JSON.pretty_generate(tag_list)
+open(TagListPath,"w") do |fh|
+  fh.write(json)
+end
+
diff --git a/cli/lib/option.rb b/cli/lib/option.rb
new file mode 100755 (executable)
index 0000000..cfc7c1a
--- /dev/null
@@ -0,0 +1,71 @@
+require 'csv'
+require 'json'
+
+module Option
+    def csv2hash(command_path)
+        #command_name = File.basename(command_path)
+        option_path = "#{command_path}/Config/OptionControlFile"
+
+        # option[0] = about -i, 
+        # option[1] = about -o, 
+        # option[3] = about -m, .... etc 
+        option = Array.new
+        index  = 0
+        begin
+            CSV.foreach(option_path) do |ref| 
+                if ref[0] =~ /^#/ 
+                    next
+                end
+
+                # [{argIndex: ,argName: ,argType: ,initialValue: },{.,.}.,.{.,.}]
+                optionNumber = ref[4].to_s.to_i
+
+                if optionNumber != 0
+                    option[index]                     = Hash.new{|i|{}}
+                    option[index]["option"]           = ref[0].to_s
+                    option[index]["fullOption"]       = ref[1]
+                    option[index]["optionName"]       = ref[2]
+                    option[index]["optionProperties"] = ref[3].to_s == "Essential"
+                    option[index]["optionNumber"]     = ref[4].to_s.to_i
+
+
+                    option[index]["arg"]              = Array.new(option[index]["optionNumber"]){|i|{}} 
+
+                    option[index]["arg"].each_with_index do |arg,i|
+                        arg["argIndex"]      = ref[4*(i+1)+1].to_s
+                        arg["argName"]       = ref[4*(i+1)+2].to_s
+                        argType              = ref[4*(i+1)+3].to_s.split('::')  #argType{ inFile::mrcImage::ASCII } and so on
+                        arg["argType"]       = argType.shift                    #arg["argType"]   = inFile | outFile | appendFile ...
+                        arg["attribute"] = argType.empty? ? nil : argType       #arg["attribute"] = [ mrcImage,ASCII,... ]
+                        arg["initialValue"] = ref[4*(i+1)+4].to_s
+
+                        case arg["argType"]
+                        when "inFile","inFileList","inFileListNoOpen" then
+                            arg["formType"] = "select"
+                        when "outFile","outFileList","appendFile","appendFileList","Character","String","StringAll" then
+                            arg["formType"] = "text"
+                        when "Integer","Real" then
+                            arg["formType"] = "number"
+                        else 
+                            arg["formType"] = nil
+                        end
+
+                        if (arg["initialValue"] == "NULL"||
+                            arg["initialValue"] == "stdout") then
+                            arg["initialValue"] = ""
+                        end
+                    end
+                    index += 1
+                end
+            end
+            #tag = nil
+            success = Hash.new
+            success[:option] = option
+            #success["tag"] = tag
+            return success
+        rescue => ex
+            return option_path,ex.class
+        end
+    end
+    module_function :csv2hash
+end
diff --git a/cli/zephyr b/cli/zephyr
new file mode 100755 (executable)
index 0000000..0cf8df6
--- /dev/null
@@ -0,0 +1,22 @@
+#!/usr/bin/env node
+
+const zephyr = require('commander');
+const chalk = require('chalk');
+
+zephyr
+.command('serve', 'start web server')
+.command('debug', 'serve with debug mode')
+.command('parse', 'create json file of OptionControlFile from Eos directory')
+.on('--help', function() {
+    console.log('   Environment variables:');
+    console.log('');
+    console.log('       ZEPHYR_HOME: The Path of zephyr directory');
+    console.log('');
+    console.log('');
+    console.log(('  Documentation can be found at ' + chalk.blue('http://www.yasunaga-lab.bio.kyutech.ac.jp/EosJ/index.php/zephyr')));
+    console.log('');
+})
+
+zephyr
+.parse(process.argv);
+
diff --git a/cli/zephyr-debug b/cli/zephyr-debug
new file mode 100755 (executable)
index 0000000..5d49508
--- /dev/null
@@ -0,0 +1,27 @@
+#!/usr/bin/env node
+
+const zephyr = require('commander');
+const chalk = require('chalk');
+const cp = require('child_process').spawn;
+const fs = require('fs');
+
+zephyr
+.usage('[action]')
+
+process.env.NODE_ENV = 'debug';
+const npm = cp('node', ['--harmony', process.env.ZEPHYR_HOME + '/server/app/']);
+
+npm.stdout.on('data', function (data) {
+    console.log(data.toString().trim());
+});
+
+npm.stderr.on('data', function (data) {
+    console.log(data.toString().trim());
+});
+
+zephyr.on('--help', function() {
+    console.log(('  Documentation can be found at ' + chalk.blue('http://www.yasunaga-lab.bio.kyutech.ac.jp/EosJ/index.php/zephyr')));
+    console.log('');
+});
+
+zephyr.parse(process.argv);
diff --git a/cli/zephyr-parse b/cli/zephyr-parse
new file mode 100755 (executable)
index 0000000..aed37fb
--- /dev/null
@@ -0,0 +1,25 @@
+#!/usr/bin/env node
+
+const zephyr = require('commander');
+const chalk = require('chalk');
+const cp = require('child_process').spawn;
+
+zephyr
+.usage('[action]')
+
+const parser = cp('ruby', [__dirname + '/lib/create-json-file.rb']);
+
+parser.stdout.on('data', function (data) {
+    console.log(data.toString().trim());
+});
+
+parser.stderr.on('data', function (data) {
+    console.log(data.toString().trim());
+});
+
+zephyr.on('--help', function() {
+    console.log(('  Documentation can be found at ' + chalk.blue('http://www.yasunaga-lab.bio.kyutech.ac.jp/EosJ/index.php/zephyr')));
+    console.log('');
+});
+
+zephyr.parse(process.argv);
diff --git a/cli/zephyr-serve b/cli/zephyr-serve
new file mode 100755 (executable)
index 0000000..526c3e3
--- /dev/null
@@ -0,0 +1,26 @@
+#!/usr/bin/env node
+
+const zephyr = require('commander');
+const chalk = require('chalk');
+const cp = require('child_process').spawn;
+
+zephyr
+.usage('[action]')
+
+process.env.NODE_ENV = 'production';
+const npm = cp('node', ['--harmony', process.env.ZEPHYR_HOME + '/server/app/']);
+
+npm.stdout.on('data', function (data) {
+    console.log(data.toString().trim());
+});
+
+npm.stderr.on('data', function (data) {
+    console.log(data.toString().trim());
+});
+
+zephyr.on('--help', function() {
+    console.log(('  Documentation can be found at ' + chalk.blue('http://www.yasunaga-lab.bio.kyutech.ac.jp/EosJ/index.php/zephyr')));
+    console.log('');
+});
+
+zephyr.parse(process.argv);
diff --git a/docker/Dockerfile b/docker/Dockerfile
new file mode 100755 (executable)
index 0000000..6d9b3fd
--- /dev/null
@@ -0,0 +1,40 @@
+FROM centos
+
+RUN yum install git -y
+
+# Required by CUDA
+# libvdpau and dkms
+
+# Install libvdpau
+RUN echo "[linuxtech]\n
+            name=LinuxTECH\n
+            baseurl=http://pkgrepo.linuxtech.net/el6/release/\n
+            enabled=1\n
+            gpgcheck=1\n
+            gpgkey=http://pkgrepo.linuxtech.net/el6/release/RPM-GPG-KEY-LinuxTECH.NET\n" \
+            > /etc/yum.repos.d/linuxtech.repo
+RUN yum install libvdpau -y
+
+# Install dkms
+RUN rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
+RUN yum install dkms -y
+
+# Install CUDA
+RUN cd /tmp
+RUN wget http://developer.download.nvidia.com/compute/cuda/repos/rhel6/x86_64/cuda-repo-rhel6-6.5-14.x86_64.rpm
+RUN yum install http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
+RUN yum install cuda-6.5 -y
+RUN rm /tmp/cuda-repo-rhel6-6.5-14.x86_64.rpm
+
+# Add user for execution Eos
+RUN useradd EosUser
+RUN su EosUser
+
+# Download and Install Eos
+RUN cd
+RUN curl -L https://sourceforge.jp/projects/eos/scm/git/base/blobs/master/env/Eos_env?export=raw > ${HOME}/.Eos_env
+RUN source .Eos_env
+RUN git clone --depth 1 https://scm.sourceforge.jp/gitroot/eos/base.git ${HOME}/Eos
+RUN mkdir ${EOS_HOME}/hostdepend
+RUN git clone --depth 1 http://scm.sourceforge.jp/gitroot/eos/hostdepend${EOS_HOSTDIR}.git ${EOS_HOME}/hostdepend/${EOS_HOSTDIR}
+
diff --git a/docker/Vagrantfile b/docker/Vagrantfile
new file mode 100755 (executable)
index 0000000..fd3683e
--- /dev/null
@@ -0,0 +1,57 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+ROOT = File.dirname(File.absolute_path(__FILE__))
+
+# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
+VAGRANTFILE_API_VERSION = '2'
+
+# Default env properties which can be overridden
+# Example overrides:
+#   echo "ENV['PASSENGER_DOCKER_PATH'] ||= '../../phusion/passenger-docker'   " >> ~/.vagrant.d/Vagrantfile
+#   echo "ENV['BASE_BOX_URL']          ||= 'd\:/dev/vm/vagrant/boxes/phusion/'" >> ~/.vagrant.d/Vagrantfile
+BASE_BOX_URL          = ENV['BASE_BOX_URL']    || 'https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/'
+VAGRANT_BOX_URL       = ENV['VAGRANT_BOX_URL'] || BASE_BOX_URL + 'ubuntu-14.04-amd64-vbox.box'
+VMWARE_BOX_URL        = ENV['VMWARE_BOX_URL']  || BASE_BOX_URL + 'ubuntu-14.04-amd64-vmwarefusion.box'
+BASEIMAGE_PATH        = ENV['BASEIMAGE_PATH' ] || '.'
+PASSENGER_DOCKER_PATH = ENV['PASSENGER_PATH' ] || '../passenger-docker'
+DOCKERIZER_PATH       = ENV['DOCKERIZER_PATH'] || '../dockerizer'
+
+$script = <<SCRIPT
+wget -q -O - https://get.docker.io/gpg | apt-key add -
+echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list
+apt-get update -qq
+apt-get install -q -y --force-yes lxc-docker
+usermod -a -G docker vagrant
+docker version
+su - vagrant -c 'echo alias d=docker >> ~/.bash_aliases'
+SCRIPT
+
+Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
+  config.vm.box = 'phusion-open-ubuntu-14.04-amd64'
+  config.vm.box_url = VAGRANT_BOX_URL
+  config.ssh.forward_agent = true
+  passenger_docker_path = File.absolute_path(PASSENGER_DOCKER_PATH, ROOT)
+  if File.directory?(passenger_docker_path)
+    config.vm.synced_folder passenger_docker_path, '/vagrant/passenger-docker'
+  end
+  baseimage_path = File.absolute_path(BASEIMAGE_PATH, ROOT)
+  if File.directory?(baseimage_path)
+    config.vm.synced_folder baseimage_path, "/vagrant/baseimage-docker"
+  end
+  dockerizer_path = File.absolute_path(DOCKERIZER_PATH, ROOT)
+  if File.directory?(dockerizer_path)
+    config.vm.synced_folder dockerizer_path, '/vagrant/dockerizer'
+  end
+
+  config.vm.provider :vmware_fusion do |f, override|
+    override.vm.box_url = VMWARE_BOX_URL
+    f.vmx['displayName'] = 'baseimage-docker'
+  end
+
+  if Dir.glob("#{File.dirname(__FILE__)}/.vagrant/machines/default/*/id").empty?
+    config.vm.provision :shell, :inline => $script
+  end
+  
+  config.vm.network :private_network, ip: "192.168.33.10" 
+  config.vm.network :forwarded_port, host: 80, guest: 8888
+end
diff --git a/front-end/app/index.html b/front-end/app/index.html
new file mode 100755 (executable)
index 0000000..83490fb
--- /dev/null
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+  <head lang="en">
+    <meta charset="UTF-8">
+    <title>Zephyr</title>
+    <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
+    <link rel="stylesheet" href="./css/style.css">
+  </head>
+  <body ng-app="zephyr">
+      <ui-view></ui-view>
+    <script src="/socket.io/socket.io.js"></script>
+    <script src="./bundle.js"></script>
+  </body>
+</html>
diff --git a/front-end/app/scripts/App.ts b/front-end/app/scripts/App.ts
new file mode 100755 (executable)
index 0000000..1e841a4
--- /dev/null
@@ -0,0 +1,72 @@
+namespace app {
+    'use strict';
+
+    var appName = 'zephyr';
+    export var zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+
+    zephyr.config(($stateProvider, $urlRouterProvider, $locationProvider) => {
+
+        $urlRouterProvider.otherwise('/execution');
+
+        $locationProvider.html5Mode({
+            enabled: true,
+            requireBase: false
+        });
+
+        $stateProvider
+            .state('execution', {
+                url: '/execution',
+                templateUrl: 'templates/execution.html',
+                controller: 'executionController',
+                controllerAs: 'c'
+            })
+        .state('workspace', {
+            url: '/workspace',
+            templateUrl: 'templates/workspace.html',
+            controller: 'workspaceController',
+            controllerAs: 'c'
+        })
+        .state('history', {
+            url: '/history',
+            templateUrl: 'templates/history.html',
+            controller: 'historyController',
+            controllerAs: 'c'
+        })
+    });
+
+// services
+    zephyr.service('APIEndPoint', services.APIEndPoint);
+    zephyr.service('MyModal', services.MyModal);
+    zephyr.service('WebSocket', services.WebSocket);
+    zephyr.service('Console', services.Console);
+
+// filters
+    zephyr.filter('Tag', filters.Tag);
+
+// controllers
+/// SelectCommand
+    zephyr.controller('selectCommandController', controllers.SelectCommand);
+
+/// Preview
+    zephyr.controller('previewController', controllers.Preview);
+
+/// Upload
+    zephyr.controller('uploadController', controllers.Upload);
+
+
+    zephyr.controller('executionController', controllers.Execution);
+    zephyr.controller('workspaceController', controllers.Workspace);
+    zephyr.controller('historyController', controllers.History);
+
+    zephyr.controller('commandController', directives.CommandController);
+    zephyr.controller('optionController', directives.OptionController);
+    zephyr.controller('directoryController', directives.DirectoryController);
+    zephyr.controller('HeaderMenuController', directives.HeaderMenuController);
+    zephyr.controller('uploadController', directives.UploadController);
+
+    zephyr.directive('headerMenu', directives.HeaderMenu.Factory());
+    zephyr.directive('command', directives.Command.Factory());
+    zephyr.directive('option', directives.Option.Factory());
+    zephyr.directive('directory', directives.Directory.Factory());
+
+}
diff --git a/front-end/app/scripts/controllers/Execution.ts b/front-end/app/scripts/controllers/Execution.ts
new file mode 100755 (executable)
index 0000000..b56e4ce
--- /dev/null
@@ -0,0 +1,50 @@
+namespace app.controllers {
+    export class Execution {
+
+        public static $inject = ['MyModal', '$scope'];
+
+        public commandInfoList: declares.CommandInfo[];
+
+        public page: string;
+
+        constructor(private MyModal: services.MyModal, private $scope: ng.IScope) {
+            this.commandInfoList = [];
+        };
+
+        public add() {
+            // close all <uib-accordion> tag
+            this.$scope.$broadcast('close');
+            var commandInfoList = this.commandInfoList;
+            
+            // add <command> directive
+            var commandInstance = this.MyModal.selectCommand();
+            commandInstance
+                .result
+                .then(function(command) {
+                    commandInfoList.push(new declares.CommandInfo(command));
+                });
+        }
+
+        public open() {
+            var result = this.MyModal.open('SelectCommand');
+            console.log(result);
+        }
+
+        public remove(index: number, list: declares.CommandInfo[]) {
+            list.splice(index, 1);
+
+            /**
+             * Commandディレクティブから実行する際にはExecution.commandInfoListの参照を取得できない。
+             * ディレクティブ経由でExecution.commandInfoListの参照を取得。
+             * this.commandInfoList.splice(index, 1);
+             * 上記のコードは実行できない。
+             * thisがremoveの呼び出し元となるため。
+             */
+        }
+
+        public close() {
+            console.log("close");
+        }
+
+    }
+}
diff --git a/front-end/app/scripts/controllers/History.ts b/front-end/app/scripts/controllers/History.ts
new file mode 100755 (executable)
index 0000000..a3c5074
--- /dev/null
@@ -0,0 +1,12 @@
+namespace app.controllers {
+    export class History { 
+
+        public page = "History";
+
+        public static $inject = ['$scope'];
+
+        constructor($scope) {
+
+        } 
+    }
+}
diff --git a/front-end/app/scripts/controllers/Preview.ts b/front-end/app/scripts/controllers/Preview.ts
new file mode 100755 (executable)
index 0000000..e5aff4d
--- /dev/null
@@ -0,0 +1,25 @@
+namespace app.controllers {
+    export class Preview { 
+
+        public static $inject = ['$scope', 'APIEndPoint','$uibModalInstance'];
+        private tags: string[];
+        private commands: string[];
+        private searchText: string;
+        private currentTag: string;
+
+        constructor($scope: ng.IScope, private APIEndPoint: services.APIEndPoint, private $modalInstance: ng.ui.bootstrap.IModalServiceInstance) {
+            var controller = this;
+            console.log('preview');
+            /*
+            this.APIEndPoint
+                .getCommands()
+                .$promise.then((result) => {
+                   controller.commands = result.info;
+                });
+            this.currentTag = 'all';
+            */
+
+        }
+
+    }
+}
diff --git a/front-end/app/scripts/controllers/SelectCommand.ts b/front-end/app/scripts/controllers/SelectCommand.ts
new file mode 100755 (executable)
index 0000000..e6971c7
--- /dev/null
@@ -0,0 +1,36 @@
+namespace app.controllers {
+    export class SelectCommand{ 
+
+        public static $inject = ['$scope', 'APIEndPoint','$uibModalInstance'];
+        private tags: string[];
+        private commands: string[];
+        private searchText: string;
+        private currentTag: string;
+
+        constructor($scope: ng.IScope, private APIEndPoint: services.APIEndPoint, private $modalInstance: ng.ui.bootstrap.IModalServiceInstance) {
+            var controller = this;
+            this.APIEndPoint
+                .getTags()
+                .$promise.then((result) => {
+                   controller.tags = result.info; 
+                });
+
+            this.APIEndPoint
+                .getCommands()
+                .$promise.then((result) => {
+                   controller.commands = result.info; 
+                });
+            this.currentTag = 'all';
+
+        } 
+
+        private changeTag(tag: string) {
+            this.currentTag = tag;
+        }
+
+        private selectCommand(command:string) {
+            this.$modalInstance.close(command);
+        }
+
+    }
+}
diff --git a/front-end/app/scripts/controllers/Upload.ts b/front-end/app/scripts/controllers/Upload.ts
new file mode 100644 (file)
index 0000000..5dfe360
--- /dev/null
@@ -0,0 +1,25 @@
+namespace app.controllers {
+    export class Upload{
+
+        public static $inject = ['$scope', 'APIEndPoint','$uibModalInstance'];
+        private tags: string[];
+        private commands: string[];
+        private searchText: string;
+        private currentTag: string;
+
+        constructor($scope: ng.IScope, private APIEndPoint: services.APIEndPoint, private $modalInstance: ng.ui.bootstrap.IModalServiceInstance) {
+            var controller = this;
+            console.log('controller.upload-controllers');
+            /*
+            this.APIEndPoint
+                .getCommands()
+                .$promise.then((result) => {
+                   controller.commands = result.info;
+                });
+            this.currentTag = 'all';
+            */
+
+        }
+
+    }
+}
diff --git a/front-end/app/scripts/controllers/Workspace.ts b/front-end/app/scripts/controllers/Workspace.ts
new file mode 100755 (executable)
index 0000000..acdff7b
--- /dev/null
@@ -0,0 +1,43 @@
+namespace app.controllers {
+    export class Workspace {
+
+        public page: string;
+        public directoryList: declares.IDirectoryInfo[];
+
+        public static $inject = ['$scope', 'APIEndPoint', 'MyModal'];
+
+        constructor(private $scope: ng.IScope, private APIEndPoint: services.APIEndPoint, private MyModal: services.MyModal) {
+            this.directoryList = [];
+
+            var controller = this;
+            var directoryList = this.directoryList;
+
+            var o = {
+                fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                name: '',
+                parentId: '',
+                fileType: '',
+                createdAt: '',
+                updatedAt:'',
+                path: '/'
+            };
+            directoryList.push(o);
+
+        }
+
+        public addDirectory(info: declares.IDirectoryInfo, directoryList: declares.IDirectoryInfo[]) {
+            directoryList.push(info);
+        }
+
+        public upload(){
+            //this.MyModal.preview();
+            this.MyModal.upload();
+        }
+
+        private debug() {
+            this.MyModal.preview();
+        }
+
+
+    }
+}
diff --git a/front-end/app/scripts/declares.ts b/front-end/app/scripts/declares.ts
new file mode 100755 (executable)
index 0000000..b928b38
--- /dev/null
@@ -0,0 +1,80 @@
+namespace app.declares {
+
+    export class CommandInfo{
+        name: string;
+
+        constructor(name: string) {
+            this.name = name;
+        }
+    }
+
+    interface IArg {
+        argIndex: number;
+        argName: string;
+        argType: string;
+        attribute: string;
+        formType: string;
+        initialValue;
+        input;
+    }        
+
+    export interface IOption {
+        option: string;
+        fullOption: string;
+        optionName: string;
+        optionProperties: boolean;
+        optionNumber: number;
+        arg: IArg[];
+    }
+
+    export interface IFileInfo {
+        fileId: string,
+        name: string,
+        parentId: string,
+        fileType: string,
+        createdAt: string,
+        updatedAt: string
+    }
+
+    export interface IDirectoryInfo extends IFileInfo {
+        fileId: string,
+        name: string,
+        parentId: string,
+        fileType: string,
+        createdAt: string,
+        updatedAt: string,
+        path: string
+    }
+
+    export interface IResponse extends ng.resource.IResource<IResponse> {
+        status: string,
+        message: string,
+        info: any
+    }
+
+    export interface IResponseOption extends IResponse {
+        status: string,
+        message: string,
+        info: IOption[]
+    }
+
+    export interface IResponseFileInfo extends IResponse {
+        status: string,
+        message: string,
+        info: IFileInfo[]
+    }
+
+    export interface IResponseResource extends ng.resource.IResourceClass<IResponse> {
+        //customAction(): any
+        execute(): any
+    }
+
+}
+declare var io : {
+    connect(): Socket;
+}
+interface Socket {
+    on(event: string, callback: (data: any) => void );
+    emit(event: string, data: any);
+}
+
diff --git a/front-end/app/scripts/directives/Command.ts b/front-end/app/scripts/directives/Command.ts
new file mode 100755 (executable)
index 0000000..edfca2b
--- /dev/null
@@ -0,0 +1,219 @@
+namespace app.directives {
+    export class Command implements ng.IDirective {
+
+        public restrict: string;
+        public replace: boolean;
+        public templateUrl: string;
+        public scope: boolean;
+        public controller: string;
+        public controllerAs: string;
+        public bindToController: Object;
+
+        /** 
+         * constructor
+         *
+         * @param
+         */
+        constructor() {
+            this.restrict = 'E';
+            this.replace = true; 
+            this.scope = true;
+            this.controller = 'commandController';
+            this.controllerAs = 'ctrl';
+            this.bindToController = {
+                index: '=',
+                name: '=',
+                remove: '&',
+                list: '='
+            };
+            this.templateUrl = 'templates/command.html';
+        }
+
+        /**
+         * instance生成
+         * @returns {function(): HeaderMenu}
+         * @constructor
+         */
+        public static Factory(): ng.IDirectiveFactory {
+            var directive = () => {
+                return new Command();
+            };
+            directive.$inject = [];
+            return directive;
+        }
+    }
+
+    export class CommandController {
+
+        public static $inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+
+        // From parent directive bindToController property
+        private index: string;
+        private name: string;
+        private remove: Function;
+        private list: declares.CommandInfo[];
+        private workspace: declares.IFileInfo;
+
+        // property of ui.bootstrap uib-accordion directive
+        private isOpen: boolean;
+        private heading: string;
+
+        // property about Option directive
+        private files: any;
+        private options: declares.IOption[];
+        private dirs: any;
+        private messages: any;
+
+        private uuid: string; // uuid of Instance of Command directive
+
+        constructor(private APIEndPoint: services.APIEndPoint, 
+                    private $scope: ng.IScope, 
+                    private MyModal: services.MyModal, 
+                    private WebSocket: services.WebSocket,
+                    private $window: ng.IWindowService,
+                    private $rootScope: ng.IRootScopeService,
+                    private Console: services.Console
+                   ) {
+                       var controller = this;
+
+                       // Get OptionControlFile and bind it to $scope.options
+                       this.APIEndPoint
+                       //.getOptionControlFile('mrcImageNoiseAdd')
+                       .getOptionControlFile(this.name)
+                       .$promise
+                       .then(function(result) {
+                           controller.options = result.info;
+                       });
+
+                       this.APIEndPoint
+                       .getDirectories()
+                       .$promise
+                       .then(function(result) {
+                           controller.dirs = result.info;
+                       });
+
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+
+                       // When call add button at executeController, all accordion close.
+                       this.$scope.$on('close', () => {
+                           controller.isOpen = false;
+                       });
+
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                               .toString(16)
+                               .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+
+                       this.uuid = guid();
+
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                       /*
+                       this.$rootScope.on(uuid, function(msg) {
+                           console.log(msg);
+                       });
+                       */
+                   }
+
+                   public submit() {
+                       var opt = [];
+                       angular.forEach(this.options, (option) => {
+
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+
+                           angular.forEach(option.arg, (arg) => {
+                               if(arg.input) {
+                                   if(typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   } else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+
+                           if(obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+
+                       //console.log(JSON.stringify(execObj,null,'\t'));
+                       this.APIEndPoint
+                       .execute(JSON.stringify(execObj))
+                       .then((result) => {
+                           console.log(result);
+                       })
+                   }
+
+                   public removeMySelf(index:number) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index,this.list);
+                       this.Console.showIDs();
+                   }
+
+                   private reloadFiles() {
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                       .getFiles(fileId)
+                       .$promise
+                       .then((result) => { 
+                           var status = result.status;
+                           if(status === 'success') {
+                               this.files = result.info;
+                           } else {
+                               console.log(result.message);
+                           }
+                       });
+                   }
+
+                   public debug() {
+                       /*   Create console area
+                        * 
+                        */
+
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div,function(v) {
+                           if(v.className === "panel-body console") {
+                               consoleTag = v;
+                           } else if(v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+
+                       // Adjust console area from CSS styling positoning information
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px','')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px','')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                       /*   Create console area
+                        * 
+                        */
+                   }
+
+                   public help() {
+                       this.APIEndPoint
+                       .help(this.name)
+                       .then((result) => {
+                           console.log(result);
+                       });
+                   }
+
+    } 
+}
diff --git a/front-end/app/scripts/directives/Directory.ts b/front-end/app/scripts/directives/Directory.ts
new file mode 100755 (executable)
index 0000000..e39bfae
--- /dev/null
@@ -0,0 +1,80 @@
+namespace app.directives {
+
+    export class Directory implements ng.IDirective {
+
+        public restrict: string;
+        public replace: boolean;
+        public templateUrl: string;
+        private fileInfo: declares.IFileInfo;
+        public controller: string;
+        public controllerAs: string;
+        public bindToController: Object;
+
+        /**
+         * constructor
+         *
+         * @param 
+         */
+        constructor() {
+            this.restrict = 'E';
+            this.replace = true;
+            this.controller = 'directoryController';
+            this.controllerAs = 'ctrl';
+            this.bindToController = {
+                info: '=',
+                add: '&',
+                list: '=',
+                files: '='
+            };
+            this.templateUrl = 'templates/directory.html';
+        }
+
+        /**
+         * instance生成
+         * @returns {function(): HeaderMenu}
+         * @constructor
+         */
+        public static Factory(): ng.IDirectiveFactory {
+            var directive = () => {
+            return new Directory();
+            };
+            return directive;
+        }
+    }
+
+    export class DirectoryController {
+
+        public static $inject = ['APIEndPoint', '$scope'];
+
+        // From parent directive bindToController property
+        public info: declares.IDirectoryInfo;
+        public files:declares.IFileInfo[];
+        public add: Function;
+        public list: declares.IDirectoryInfo[];
+
+        constructor(private APIEndPoint: services.APIEndPoint, private $scope: ng.IScope) {
+            var controller = this;
+
+            this.APIEndPoint
+                .getFiles(this.info.fileId)
+                .$promise
+                .then((result) => {
+                    if(result.status === 'success') {
+                        controller.files = result.info;
+                        angular.forEach(result.info, (file) => {
+                            if(file.fileType === '0') {
+                                var o = file;
+                                if(controller.info.path === '/') {
+                                    o.path = '/' + file.name;
+                                } else {
+                                    o.path = controller.info.path + '/' + file.name;
+                                }
+
+                                controller.add()(o, controller.list);
+                            }
+                        });
+                    };
+                });
+        }
+    }
+}
diff --git a/front-end/app/scripts/directives/HeaderMenu.ts b/front-end/app/scripts/directives/HeaderMenu.ts
new file mode 100755 (executable)
index 0000000..f01abb2
--- /dev/null
@@ -0,0 +1,57 @@
+namespace app.directives {
+
+    export class HeaderMenu implements ng.IDirective {
+
+        public restrict: string;
+        public replace: boolean;
+        public templateUrl: string;
+        public controller: string;
+        public controllerAs: string;
+        public scope: boolean;
+
+        /**
+         * constructor
+         *
+         * @param 
+         */
+        constructor() {
+            this.restrict = 'E';
+            this.replace = true;
+            this.templateUrl = 'templates/header-menu.html';
+            this.controller = 'HeaderMenuController';
+            this.controllerAs = 'hmc';
+            this.scope = true;
+        }
+
+        /**
+         * instance生成
+         * @returns {function(): HeaderMenu}
+         * @constructor
+         */
+        public static Factory(): ng.IDirectiveFactory {
+            var directive = () => {
+                return new HeaderMenu();
+            };
+            return directive;
+        }
+    }
+
+    export class HeaderMenuController {
+
+        public static $inject = ['$state'];
+
+        private isExecution: boolean;
+        private isWorkspace: boolean;
+        private isHistory: boolean;
+
+        constructor(private $state: ng.ui.IStateService) {
+            this.isExecution = this.$state.current.name === 'execution';
+            this.isWorkspace = this.$state.current.name === 'workspace';
+            this.isHistory = this.$state.current.name === 'history';
+        }
+
+        private transit(state:string) {
+            this.$state.go(state);
+        }
+    }
+}
diff --git a/front-end/app/scripts/directives/Option.ts b/front-end/app/scripts/directives/Option.ts
new file mode 100755 (executable)
index 0000000..61d7722
--- /dev/null
@@ -0,0 +1,66 @@
+namespace app.directives {
+  export class Option implements ng.IDirective {
+
+    public restrict: string;
+    public replace: boolean;
+    public templateUrl: string;
+    public bindToController: Object;
+    public controller: string;
+    public controllerAs: string;
+    public scope: boolean;
+
+    /**
+    * constructor
+    *
+    * @param
+    */
+    constructor() {
+      this.restrict = 'E';
+      this.replace = true;
+      this.controller = 'optionController';
+      this.bindToController = {
+        info: '=',
+        files: '='
+      };
+      this.scope = true;
+      this.templateUrl = 'templates/option.html';
+      this.controllerAs = 'ctrl';
+    }
+
+    /**
+    * instance生成
+    * @returns {function(): HeaderMenu}
+    * @constructor
+    */
+    public static Factory(): ng.IDirectiveFactory {
+      var directive = () => {
+        return new Option();
+      };
+      directive.$inject = [];
+      return directive;
+    }
+  }
+
+  export class OptionController {
+
+    public static $inject = [];
+
+    private info: declares.IOption;
+
+    constructor() {
+      var controller = this;
+
+      // データバインディングしているarg.inputに
+      // OptionControlFileに記された初期値(arg.initialValue)を代入
+      angular.forEach(controller.info.arg, (arg) => {
+        if(arg.initialValue) {
+          if(arg.formType === 'number') {
+            arg.input = parseInt(arg.initialValue);
+          } else {
+            arg.input = arg.initialValue;
+          }
+        }
+      });
+    }
+  }
+}
diff --git a/front-end/app/scripts/directives/Upload.ts b/front-end/app/scripts/directives/Upload.ts
new file mode 100644 (file)
index 0000000..7720ac5
--- /dev/null
@@ -0,0 +1,90 @@
+namespace app.directives {
+    export class Upload implements ng.IDirective {
+
+      public restrict: string;
+      public replace: boolean;
+      public templateUrl: string;
+      public scope: boolean;
+      public controller: string;
+      public controllerAs: string;
+      public bindToController: Object;
+
+        /**
+         * constructor
+         * @param
+         */
+      constructor() {
+        this.restrict = 'E';
+        this.replace = true;
+        this.scope = true;
+        this.controller = 'UploadController';
+        this.controllerAs = 'ctrl';
+        this.bindToController = {
+                index: '=',
+                name: '=',
+                remove: '&',
+                list: '='
+        };
+        this.templateUrl = 'templates/upload.html';
+        console.log("templates/upload.html-constructor");
+    }
+
+    /**
+         * instance生成
+         * @returns {function(): HeaderMenu}
+         * @constructor
+    */
+    public static Factory(): ng.IDirectiveFactory {
+        var directive = () => {
+          return new Upload();
+        };
+        directive.$inject = [];
+          return directive;
+    }
+}
+
+export class UploadController {
+    public static $inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+
+    // From parent directive bindToController property
+    private index: string;
+    private name: string;
+    private remove: Function;
+    private workspace: declares.IFileInfo;
+
+        // property of ui.bootstrap uib-accordion directive
+    private isOpen: boolean;
+    private heading: string;
+
+        // property about Option directive
+    private files: any;
+    private options: declares.IOption[];
+    private dirs: any;
+    private messages: any;
+
+    private uuid: string; // uuid of Instance of Command directive
+
+    constructor(private APIEndPoint: services.APIEndPoint,
+        private $scope: ng.IScope,
+        private MyModal: services.MyModal,
+        private WebSocket: services.WebSocket,
+        private $window: ng.IWindowService,
+        private $rootScope: ng.IRootScopeService,
+        private Console: services.Console
+        ) {
+            var controller = this;
+            console.log("directive.upload-constructor");
+
+            //this.APIEndPoint
+            //this.APIEndPoint
+            //.upload()
+            //.then((result) => {
+            //    console.log(result);
+            //})
+    }
+
+    public submit() {
+        console.log("submit: function not supported¥n")
+    }
+  }
+}
diff --git a/front-end/app/scripts/entry.ts b/front-end/app/scripts/entry.ts
new file mode 100755 (executable)
index 0000000..4bf0707
--- /dev/null
@@ -0,0 +1,32 @@
+///<reference path="./reference.ts" />
+import 'angular';
+import 'angular-ui-router';
+import 'angular-resource';
+import 'angular-ui-bootstrap';
+
+// declares
+import './declares.ts';
+
+// services
+import './services/APIEndPoint.ts';
+import './services/MyModal.ts';
+import './services/WebSocket.ts';
+import './services/Console.ts';
+
+// directives
+import './directives/Option.ts';
+import './directives/Command.ts';
+import './directives/HeaderMenu.ts';
+import './directives/Directory.ts';
+import './directives/Upload.ts';
+
+
+// controllers
+import './controllers/Execution.ts';
+import './controllers/Workspace.ts';
+import './controllers/History.ts';
+import './controllers/SelectCommand.ts';
+import './controllers/Preview.ts';
+import './controllers/Upload.ts';
+
+import './App.ts';
diff --git a/front-end/app/scripts/filters/Tag.ts b/front-end/app/scripts/filters/Tag.ts
new file mode 100755 (executable)
index 0000000..4a8bc14
--- /dev/null
@@ -0,0 +1,16 @@
+namespace filters {
+    export function Tag() {
+        return function(commands, tag) {
+            var result = []
+            angular.forEach(commands, function(command) {
+                var flag = false
+                angular.forEach(command.tags, function(value) {
+                    if (tag === value) flag = true
+                })
+                if(flag) result.push(command)
+            })
+            return result
+        }
+    }
+}
+
diff --git a/front-end/app/scripts/reference.ts b/front-end/app/scripts/reference.ts
new file mode 100755 (executable)
index 0000000..05b00f9
--- /dev/null
@@ -0,0 +1,24 @@
+/// <reference path="../../typings/tsd.d.ts" />
+
+/// <reference path="./declares.ts" />
+
+
+/// <reference path="./services/APIEndPoint.ts" />
+/// <reference path="./services/MyModal.ts" />
+/// <reference path="./services/WebSocket.ts" />
+/// <reference path="./services/Console.ts" />
+
+/// <reference path="./directives/Command.ts" />
+/// <reference path="./directives/HeaderMenu.ts" />
+/// <reference path="./directives/Option.ts" />
+/// <reference path="./directives/Directory.ts" />
+/// <reference path="./directives/Upload.ts" />
+
+/// <reference path="./controllers/Execution.ts" />
+/// <reference path="./controllers/Workspace.ts" />
+/// <reference path="./controllers/History.ts" />
+/// <reference path="./controllers/SelectCommand.ts" />
+/// <reference path="./controllers/Upload.ts" />
+/// <reference path="./controllers/Preview.ts" />
+
+/// <reference path="./filters/Tag.ts" />
diff --git a/front-end/app/scripts/services/APIEndPoint.ts b/front-end/app/scripts/services/APIEndPoint.ts
new file mode 100755 (executable)
index 0000000..b0116e5
--- /dev/null
@@ -0,0 +1,88 @@
+namespace app.services {
+    export class APIEndPoint {
+
+        private $resource: ng.resource.IResourceService;
+        private $http: ng.IHttpService;
+
+        constructor($resource: ng.resource.IResourceService, $http: ng.IHttpService) {
+            this.$resource = $resource;
+            this.$http = $http;
+        }
+
+        private resource(endPoint: string, data: any) {
+            /**
+             * setting custom action
+             */
+            var customAction: ng.resource.IActionDescriptor = {
+                method: 'GET',
+                isArray: false
+            };
+
+            var execute: ng.resource.IActionDescriptor = {
+                method: 'POST',
+                //transformRequest: data,
+                headers: {'Content-Type':undefined, enctype:'multipart/form-data'}
+            };
+
+            return <declares.IResponseResource> this.$resource(endPoint, {}, { execute: execute});
+        }
+
+        public getOptionControlFile(command: string): ng.resource.IResource<declares.IResponse> {
+            var endPoint = '/api/v1/optionControlFile/' + command;
+            return <declares.IResponseOption>this.resource(endPoint, {}).get();
+        }
+
+        public getFiles(fileId: string): ng.resource.IResource<declares.IResponse> {
+            var endPoint = '/api/v1/workspace';
+
+            if(fileId) {
+                endPoint += '/' + fileId;
+            }
+            return <declares.IResponseFileInfo>this.resource(endPoint,{}).get();
+        }
+
+        public getDirectories(): ng.resource.IResource<declares.IResponse> {
+            var endPoint = '/api/v1/all/workspace/directory';
+
+            return this.resource(endPoint,{}).get();
+        }
+
+        public getTags(): ng.resource.IResource<declares.IResponse> {
+            var endPoint = '/api/v1/tagList';
+            return this.resource(endPoint, {}).get();
+        }
+
+        public getCommands(): ng.resource.IResource<declares.IResponse> {
+            var endPoint = '/api/v1/commandList';
+            return this.resource(endPoint, {}).get();
+        }
+
+        public execute(data: any): ng.IHttpPromise<{}> {
+            var endPoint = '/api/v1/execution';
+            var fd = new FormData()
+            fd.append('data', data);
+            return this.$http.post(endPoint,
+            fd,
+            {
+                headers: {'Content-Type': undefined },
+                transformRequest: angular.identity
+            });
+        }
+
+        public debug(): ng.IHttpPromise<string> {
+            var endPoint = '/api/v1/debug';
+            return this.$http.get(endPoint);
+        }
+
+        public upload(): ng.IHttpPromise<string> {
+          var endPoint = '/api/v1/upload';
+          return this.$http.get(endPoint);
+        }
+        
+        public help(command:string): ng.IHttpPromise<string> {
+            var endPoint = '/api/v1/help/' + command;
+            return this.$http.get(endPoint);
+        }
+
+    }
+}
diff --git a/front-end/app/scripts/services/Console.ts b/front-end/app/scripts/services/Console.ts
new file mode 100755 (executable)
index 0000000..384a490
--- /dev/null
@@ -0,0 +1,42 @@
+namespace app.services{
+    export class Console {
+        private directiveIDs: string[];
+
+        constructor(private WebSocket: services.WebSocket,
+                    private $rootScope: ng.IRootScopeService
+                   ) {
+            this.WebSocket = WebSocket;
+            this.$rootScope = $rootScope;
+            this.directiveIDs = [];
+
+            const directiveIDs = this.directiveIDs;
+
+            this.WebSocket.on('console', (d) => {
+                const id = d.id;
+                const message = d.message;
+                
+
+                if(directiveIDs.indexOf(id) > -1) {
+                    $rootScope.$emit(id, message);
+                }
+            });
+        }
+
+        public addDirective(id: string) {
+            if(!(this.directiveIDs.indexOf(id) > -1)) {
+                this.directiveIDs.push(id); 
+            }
+        }
+
+        public removeDirective(id: string) {
+            const i = this.directiveIDs.indexOf(id);
+            if(i > -1) {
+                this.directiveIDs.splice(i,1);
+            }
+        }
+
+        public showIDs() {
+            console.log(this.directiveIDs);
+        }
+    }
+}
diff --git a/front-end/app/scripts/services/MyModal.ts b/front-end/app/scripts/services/MyModal.ts
new file mode 100755 (executable)
index 0000000..f88f92f
--- /dev/null
@@ -0,0 +1,55 @@
+namespace app.services {
+    export class MyModal {
+
+        private $uibModal: ng.ui.bootstrap.IModalService;
+        private modalOption: ng.ui.bootstrap.IModalSettings;
+        public static $inject = ['$uibModal'];
+
+        constructor($uibModal: ng.ui.bootstrap.IModalService) {
+            this.$uibModal = $uibModal;
+            this.modalOption = {
+                backdrop: true,
+                controller: null,
+                templateUrl: null,
+                size: null
+            }
+        }
+
+        public open(modalName: string): ng.ui.bootstrap.IModalServiceInstance {
+        //public open(modalName: string): string {
+            if(modalName === 'SelectCommand') {
+               //this.modalOption.controller = 'SelectCommandController';
+               this.modalOption.templateUrl = 'templates/select-command.html';
+               this.modalOption.size = 'lg';
+           }
+           return this.$uibModal.open(this.modalOption);
+
+           //return modalName;
+        }
+
+        public selectCommand(): ng.ui.bootstrap.IModalServiceInstance {
+            this.modalOption.templateUrl = 'templates/select-command.html';
+            this.modalOption.controller = 'selectCommandController';
+            this.modalOption.controllerAs = 'c';
+            this.modalOption.size = 'lg';
+            return this.$uibModal.open(this.modalOption);
+        }
+
+        public preview(): ng.ui.bootstrap.IModalServiceInstance {
+            this.modalOption.templateUrl = 'templates/preview.html';
+            this.modalOption.controller = 'previewController';
+            this.modalOption.controllerAs = 'c';
+            this.modalOption.size = 'lg';
+            return this.$uibModal.open(this.modalOption);
+        }
+
+        public upload(): ng.ui.bootstrap.IModalServiceInstance {
+          this.modalOption.templateUrl = 'templates/upload.html';
+          this.modalOption.controller = 'uploadController';
+          this.modalOption.controllerAs ='c';
+          this.modalOption.size = 'lg';
+          return this.$uibModal.open(this.modalOption);
+        }
+
+    }
+}
diff --git a/front-end/app/scripts/services/WebSocket.ts b/front-end/app/scripts/services/WebSocket.ts
new file mode 100755 (executable)
index 0000000..c90b149
--- /dev/null
@@ -0,0 +1,34 @@
+namespace app.services{
+    export class WebSocket {
+        private socket: any;
+
+        constructor(private $rootScope: ng.IRootScopeService) {
+            this.socket = io.connect();
+        }
+
+        public on(eventName, callback) {
+            var socket = this.socket;
+            var rootScope = this.$rootScope;
+
+            socket.on(eventName, function() {
+                var args = arguments
+                rootScope.$apply(function() {
+                    callback.apply(socket, args)
+                });
+            });
+        }
+
+        public emit(eventName, data, callback) {
+            var socket = this.socket;
+            var rootScope = this.$rootScope;
+
+            this.socket.emit(eventName, data, function() {
+                var args = arguments
+                rootScope.$apply(function() {
+                    if(callback) 
+                        callback.apply(socket, args)
+                });
+            });
+        }
+    }
+}
diff --git a/front-end/app/style.scss b/front-end/app/style.scss
new file mode 100755 (executable)
index 0000000..b10f8cd
--- /dev/null
@@ -0,0 +1,51 @@
+$panel-bg: #eee;
+
+.accordion-toggle {
+    cursor: pointer;
+}
+
+.option-box {
+    width: 20%
+}
+
+.console-head {
+    background-color: white;
+}
+
+.console {
+    background-color: white; 
+    padding: 20px;
+    height: 100%;
+}
+
+.console p {
+    font-family: 'Open Sans';
+}
+
+.command {
+    padding:5px;
+}
+
+.panel-title {
+    font-family: 'Open Sans';
+}
+
+.open-sans {
+    font-family: 'Open Sans';
+}
+
+.btn {
+    font-family: 'Open Sans';
+}
+
+label {
+    font-family: 'Open Sans';
+}
+
+.page-header {
+    color: black;
+}
+// Import libs
+// --------------------
+@import "../node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
+
diff --git a/front-end/app/templates/command.html b/front-end/app/templates/command.html
new file mode 100755 (executable)
index 0000000..c25eb83
--- /dev/null
@@ -0,0 +1,72 @@
+<div class="command">
+<uib-accordion-group heading="{{ctrl.heading}}" is-open="ctrl.isOpen" panel-class="panel-success">
+<uib-accordion-heading>
+<h1 class="panel-title">
+    [{{ctrl.index}}]: {{ctrl.name}}
+    <button class="pull-right"
+            ng-click="ctrl.removeMySelf(ctrl.index)">
+        <span class="glyphicon glyphicon-remove"></span>
+    </button>
+    </h4>
+    </uib-accordion-heading>
+    <form class="form-horizontal" ng-submit="ctrl.submit()">
+        <div class="container">
+            <div class="row">
+                <h4 class='open-sans'>
+                    Action
+                </h4>
+                <button type="submit" class="btn btn-default">
+                    Execute
+                </button>
+                <button type="button" class="btn btn-default">
+                    Stop
+                </button>
+                <button type="button" class="btn btn-default"
+                                      ng-click="ctrl.help()">
+                    Help
+                </button>
+                <button type="button" class="btn btn-default" ng-click="ctrl.debug()">
+                    debug
+                </button>
+                <hr align="left" style="width: 90%; height: 1px; background-color:#5cb85c;" />
+            </div>
+            <div class="row parameters-console">
+                <div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
+                    <h4 class="open-sans">
+                        Parameters
+                    </h4>
+                    <code>
+                        <ul class="list-inline">
+                            <li>
+                                <label>
+                                    workspace
+                                </label>
+                                <select class="form-control"
+                                        ng-options="dir.name for dir in ctrl.dirs"
+                                        ng-model="ctrl.workspace"
+                                        ng-change="ctrl.reloadFiles()"
+                                        required>
+                                </select>
+                            </li>
+                        </ul>
+
+                        <option info="o" files="ctrl.files"  ng-repeat="o in ctrl.options"></option>
+                    </code>
+                </div>
+                <div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
+                    <h4 class="open-sans">Message from console</h4>
+                    <div class="panel pull-left">
+                        <div class="panel-body console">
+                            <p ng-repeat="msg in ctrl.messages track by $index">{{msg}}</p>
+                        </div>
+                    </div>
+                </div>
+                <hr align="left" style="width: 90%; height: 1px; background-color:#5cb85c;" />
+                <button type="submit" class="btn btn-default">
+                    Execute
+                </button>
+            </div>
+        </div>
+    </form>
+    </uib-accordion-group>
+</div>
diff --git a/front-end/app/templates/directory.html b/front-end/app/templates/directory.html
new file mode 100755 (executable)
index 0000000..150e1fd
--- /dev/null
@@ -0,0 +1,23 @@
+<div>
+    <h3 class="page-header">{{ctrl.info.path}}</h3>
+    <table class="table table-striped table-responsive">
+        <tr>
+            <th></th>
+            <th>name</th>
+            <th>fileId</th>
+            <th>parentId</th>
+            <th>fileType</th>
+            <th>createdAt</th>
+            <th>updatedAt</th>
+        </tr>
+        <tr ng-repeat="l in ctrl.files">
+            <td><span class="glyphicon glyphicon-folder-open" ng-show="l.fileType==='0'" aria-hidden="true"></span></td>
+            <td>{{l.name}}</td>
+            <td>{{l.fileId}}</td>
+            <td>{{l.parentId}}</td>
+            <td>{{l.fileType}}</td>
+            <td>{{l.createdAt}}</td>
+            <td>{{l.updatedAt}}</td>
+        </tr>
+    </table>
+</div>
diff --git a/front-end/app/templates/execution.html b/front-end/app/templates/execution.html
new file mode 100755 (executable)
index 0000000..18c20db
--- /dev/null
@@ -0,0 +1,10 @@
+<header-menu></header-menu>
+<div class="container">
+    <div class="row">
+        <uib-accordion>
+            <command index="i" name="command.name" remove="c.remove" list="c.commandInfoList" ng-repeat="(i, command) in c.commandInfoList"></command>
+        </uib-accordion>
+        <button class="btn" ng-click="c.add()">Add</button>
+        <button class="btn btn-default" ng-click="c.open()">open</button>
+    </div>
+</div>
diff --git a/front-end/app/templates/header-menu.html b/front-end/app/templates/header-menu.html
new file mode 100755 (executable)
index 0000000..9887b2a
--- /dev/null
@@ -0,0 +1,28 @@
+<nav class="nav navbar navbar-default navbar-static-top">
+    <div class="navbar-header">
+        <a class="navbar-brand" href="">Zephyr</a>
+    </div>
+    <div class="navbar-collapse collapse navbar-responsive-collapse">
+        <ul class="nav navbar-nav">
+            <li ng-class="{active: hmc.isExecution}"><a ng-click="hmc.transit('execution')" href="/execution">Execution</a></li>
+            <li ng-class="{active: hmc.isWorkspace}"><a ng-click="hmc.transit('workspace')" href="/workspace">Workspace</a></li>
+            <li ng-class="{active: hmc.isHistory}"><a ng-click="hmc.transit('history')" href="/history">History</a></li>
+        </ul>
+
+        <!--
+        <ul class="nav navbar-nav navbar-right">
+            <li dropdown>
+                <a href="#" class="btn-group" dropdown-toggle>
+                    {{currentRole}}<span class="caret"></span>
+                </a>
+                <ul class="dropdown-menu" role="menu" aria-labelledby="simple-btn-keyboard-nav">
+                    <li role="menuitem" ng-repeat="role in roles">
+                        <a href="#" ng-click="selectRole(role)">{{role}}</a>
+                    </li>
+                </ul>
+            </li>
+            <li><a href="#">{{email}}</a></li>
+        </ul>
+        -->
+    </div>
+</nav>
diff --git a/front-end/app/templates/history.html b/front-end/app/templates/history.html
new file mode 100755 (executable)
index 0000000..256ae4b
--- /dev/null
@@ -0,0 +1,3 @@
+<header-menu></header-menu>
+<div class="container">
+</div>
diff --git a/front-end/app/templates/option.html b/front-end/app/templates/option.html
new file mode 100755 (executable)
index 0000000..ecaf92c
--- /dev/null
@@ -0,0 +1,36 @@
+<ul class="list-inline">
+    <li class="option-box" ng-repeat="arg in ctrl.info.arg">
+        <span ng-switch="arg.formType">
+            <span ng-switch-when="number">
+                <label class="control-label">
+                    {{arg.argName}}
+                </label>
+                <input type="number"
+                       class="form-control"
+                       ng-model="arg.input"
+                       ng-required="ctrl.info.optionProperties">
+
+            </span>
+            <span ng-switch-when="select">
+                <label class="control-label">
+                    {{arg.argName}}
+                </label>
+                <select class="form-control"
+                        ng-options="file.name for file in ctrl.files"
+                        ng-model="arg.input"
+                        ng-required="ctrl.info.optionProperties">
+                </select>
+            </span>
+
+            <span ng-switch-when="text">
+                <label class="control-label">
+                    {{arg.argName}}
+                </label>
+                <input type="text"
+                       class="form-control"
+                       ng-model="arg.input"
+                       ng-required="ctrl.info.optionProperties">
+            </span>
+        </span>
+    </li>
+</ul>
diff --git a/front-end/app/templates/preview.html b/front-end/app/templates/preview.html
new file mode 100755 (executable)
index 0000000..bde9de3
--- /dev/null
@@ -0,0 +1,3 @@
+<div class="modal-header">
+    <h3>Preview</h3>
+</div>
diff --git a/front-end/app/templates/select-command.html b/front-end/app/templates/select-command.html
new file mode 100755 (executable)
index 0000000..0d32b7a
--- /dev/null
@@ -0,0 +1,39 @@
+<div class="modal-header">
+    <h3>Select Command</h3>
+</div>
+
+<div class="modal-body">
+    <div class="row">
+        <div class="col-md-8">
+            <div class="btn-group"ng-repeat="tag in c.tags">
+                <button type="button" class="btn btn-default btn-xs" ng-click="c.changeTag(tag)"><span class="glyphicon glyphicon-tag"></span>{{tag}}</button>
+            </div>
+        </div>
+        <div class="col-md-4">
+            <div class="input-group custom-search-form">
+                <input type="text" class="form-control" placeholder="Search..." ng-model="c.searchText">
+                <span class="input-group-btn">
+                    <button class="btn btn-default" type="button">
+                        <span class="glyphicon glyphicon-search"></span>
+                    </button>
+                </span>
+            </div>
+        </div>
+    </div>
+</div>
+
+<div class="modal-footer">
+    <div class="row">
+        <!--
+        <div ng-repeat="command in commands | filter:searchText | tagFilter:tag">
+            -->
+        <div ng-repeat="command in c.commands | filter:c.searchText | Tag:c.currentTag">
+            <div class="col-md-6">
+                <a class="pull-left" ng-click="c.selectCommand(command.name)" ng-if="$even">{{command.name}}</a>
+            </div>
+            <div class="col-md-6">
+                <a class="pull-left" ng-click="c.selectCommand(command.name)" ng-if="$odd">{{command.name}}</a>
+            </div>
+        </div>
+    </div>
+</div>
diff --git a/front-end/app/templates/upload.html b/front-end/app/templates/upload.html
new file mode 100644 (file)
index 0000000..5c1869a
--- /dev/null
@@ -0,0 +1,24 @@
+<div class="modal-header">
+    <h3>Upload file</h3>
+</div>
+
+<!--
+<div class="modal-body">
+<form class="form-horizontal" ng-submit="submit()">
+<p><input type="text" name="name" /> </p>
+<p><input type="file" name="file" /> </p>
+<button type="submit" class="btn btn-default"> Upload</button>
+
+</form>
+
+</div>
+-->
+<!--textbook-->
+<div class="modal-body">
+<form method="post" action="/api/v1/fileUpload" enctype="multipart/form-data">
+<p><input type="text" name="parentDirectory" /> </p>
+<p><input type="file" name="file" /> </p>
+<p><input type="submit" value="Upload" /></p>
+</form>
+
+</div>
diff --git a/front-end/app/templates/workspace.html b/front-end/app/templates/workspace.html
new file mode 100755 (executable)
index 0000000..dda1588
--- /dev/null
@@ -0,0 +1,9 @@
+<header-menu></header-menu>
+<div class="container">
+    <div class="row">
+        <button type="button" class="btn btn-info" ng-click="c.debug()">Debug</button>
+        <button type="button" class="btn btn-info" ng-click="c.upload()">Upload</button>
+        <directory index="i" info="info" list="c.directoryList" add="c.addDirectory" ng-repeat="(i, info) in c.directoryList"></directory>
+    </div>
+    <!-- <button type="button" class="btn btn-default" ng-click="c.test()">WORKSPACE</button> -->
+</div>
diff --git a/front-end/dist/bundle.js b/front-end/dist/bundle.js
new file mode 100755 (executable)
index 0000000..8960b26
--- /dev/null
@@ -0,0 +1,55232 @@
+/******/ (function(modules) { // webpackBootstrap
+/******/       // The module cache
+/******/       var installedModules = {};
+
+/******/       // The require function
+/******/       function __webpack_require__(moduleId) {
+
+/******/               // Check if module is in cache
+/******/               if(installedModules[moduleId])
+/******/                       return installedModules[moduleId].exports;
+
+/******/               // Create a new module (and put it into the cache)
+/******/               var module = installedModules[moduleId] = {
+/******/                       exports: {},
+/******/                       id: moduleId,
+/******/                       loaded: false
+/******/               };
+
+/******/               // Execute the module function
+/******/               modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
+
+/******/               // Flag the module as loaded
+/******/               module.loaded = true;
+
+/******/               // Return the exports of the module
+/******/               return module.exports;
+/******/       }
+
+
+/******/       // expose the modules object (__webpack_modules__)
+/******/       __webpack_require__.m = modules;
+
+/******/       // expose the module cache
+/******/       __webpack_require__.c = installedModules;
+
+/******/       // __webpack_public_path__
+/******/       __webpack_require__.p = "";
+
+/******/       // Load entry module and return exports
+/******/       return __webpack_require__(0);
+/******/ })
+/************************************************************************/
+/******/ ([
+/* 0 */
+/***/ function(module, exports, __webpack_require__) {
+
+       __webpack_require__(1);
+       __webpack_require__(3);
+       __webpack_require__(4);
+       __webpack_require__(6);
+       __webpack_require__(8);
+       __webpack_require__(9);
+       __webpack_require__(10);
+       __webpack_require__(11);
+       __webpack_require__(12);
+       __webpack_require__(13);
+       __webpack_require__(14);
+       __webpack_require__(15);
+       __webpack_require__(16);
+       __webpack_require__(17);
+       __webpack_require__(18);
+       __webpack_require__(19);
+       __webpack_require__(20);
+       __webpack_require__(21);
+       __webpack_require__(22);
+       __webpack_require__(23);
+       __webpack_require__(24);
+
+
+/***/ },
+/* 1 */
+/***/ function(module, exports, __webpack_require__) {
+
+       __webpack_require__(2);
+       module.exports = angular;
+
+
+/***/ },
+/* 2 */
+/***/ function(module, exports) {
+
+       /**
+        * @license AngularJS v1.4.8
+        * (c) 2010-2015 Google, Inc. http://angularjs.org
+        * License: MIT
+        */
+       (function(window, document, undefined) {'use strict';
+
+       /**
+        * @description
+        *
+        * This object provides a utility for producing rich Error messages within
+        * Angular. It can be called as follows:
+        *
+        * var exampleMinErr = minErr('example');
+        * throw exampleMinErr('one', 'This {0} is {1}', foo, bar);
+        *
+        * The above creates an instance of minErr in the example namespace. The
+        * resulting error will have a namespaced error code of example.one.  The
+        * resulting error will replace {0} with the value of foo, and {1} with the
+        * value of bar. The object is not restricted in the number of arguments it can
+        * take.
+        *
+        * If fewer arguments are specified than necessary for interpolation, the extra
+        * interpolation markers will be preserved in the final string.
+        *
+        * Since data will be parsed statically during a build step, some restrictions
+        * are applied with respect to how minErr instances are created and called.
+        * Instances should have names of the form namespaceMinErr for a minErr created
+        * using minErr('namespace') . Error codes, namespaces and template strings
+        * should all be static strings, not variables or general expressions.
+        *
+        * @param {string} module The namespace to use for the new minErr instance.
+        * @param {function} ErrorConstructor Custom error constructor to be instantiated when returning
+        *   error from returned function, for cases when a particular type of error is useful.
+        * @returns {function(code:string, template:string, ...templateArgs): Error} minErr instance
+        */
+
+       function minErr(module, ErrorConstructor) {
+         ErrorConstructor = ErrorConstructor || Error;
+         return function() {
+           var SKIP_INDEXES = 2;
+
+           var templateArgs = arguments,
+             code = templateArgs[0],
+             message = '[' + (module ? module + ':' : '') + code + '] ',
+             template = templateArgs[1],
+             paramPrefix, i;
+
+           message += template.replace(/\{\d+\}/g, function(match) {
+             var index = +match.slice(1, -1),
+               shiftedIndex = index + SKIP_INDEXES;
+
+             if (shiftedIndex < templateArgs.length) {
+               return toDebugString(templateArgs[shiftedIndex]);
+             }
+
+             return match;
+           });
+
+           message += '\nhttp://errors.angularjs.org/1.4.8/' +
+             (module ? module + '/' : '') + code;
+
+           for (i = SKIP_INDEXES, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') {
+             message += paramPrefix + 'p' + (i - SKIP_INDEXES) + '=' +
+               encodeURIComponent(toDebugString(templateArgs[i]));
+           }
+
+           return new ErrorConstructor(message);
+         };
+       }
+
+       /* We need to tell jshint what variables are being exported */
+       /* global angular: true,
+         msie: true,
+         jqLite: true,
+         jQuery: true,
+         slice: true,
+         splice: true,
+         push: true,
+         toString: true,
+         ngMinErr: true,
+         angularModule: true,
+         uid: true,
+         REGEX_STRING_REGEXP: true,
+         VALIDITY_STATE_PROPERTY: true,
+
+         lowercase: true,
+         uppercase: true,
+         manualLowercase: true,
+         manualUppercase: true,
+         nodeName_: true,
+         isArrayLike: true,
+         forEach: true,
+         forEachSorted: true,
+         reverseParams: true,
+         nextUid: true,
+         setHashKey: true,
+         extend: true,
+         toInt: true,
+         inherit: true,
+         merge: true,
+         noop: true,
+         identity: true,
+         valueFn: true,
+         isUndefined: true,
+         isDefined: true,
+         isObject: true,
+         isBlankObject: true,
+         isString: true,
+         isNumber: true,
+         isDate: true,
+         isArray: true,
+         isFunction: true,
+         isRegExp: true,
+         isWindow: true,
+         isScope: true,
+         isFile: true,
+         isFormData: true,
+         isBlob: true,
+         isBoolean: true,
+         isPromiseLike: true,
+         trim: true,
+         escapeForRegexp: true,
+         isElement: true,
+         makeMap: true,
+         includes: true,
+         arrayRemove: true,
+         copy: true,
+         shallowCopy: true,
+         equals: true,
+         csp: true,
+         jq: true,
+         concat: true,
+         sliceArgs: true,
+         bind: true,
+         toJsonReplacer: true,
+         toJson: true,
+         fromJson: true,
+         convertTimezoneToLocal: true,
+         timezoneToOffset: true,
+         startingTag: true,
+         tryDecodeURIComponent: true,
+         parseKeyValue: true,
+         toKeyValue: true,
+         encodeUriSegment: true,
+         encodeUriQuery: true,
+         angularInit: true,
+         bootstrap: true,
+         getTestability: true,
+         snake_case: true,
+         bindJQuery: true,
+         assertArg: true,
+         assertArgFn: true,
+         assertNotHasOwnProperty: true,
+         getter: true,
+         getBlockNodes: true,
+         hasOwnProperty: true,
+         createMap: true,
+
+         NODE_TYPE_ELEMENT: true,
+         NODE_TYPE_ATTRIBUTE: true,
+         NODE_TYPE_TEXT: true,
+         NODE_TYPE_COMMENT: true,
+         NODE_TYPE_DOCUMENT: true,
+         NODE_TYPE_DOCUMENT_FRAGMENT: true,
+       */
+
+       ////////////////////////////////////
+
+       /**
+        * @ngdoc module
+        * @name ng
+        * @module ng
+        * @description
+        *
+        * # ng (core module)
+        * The ng module is loaded by default when an AngularJS application is started. The module itself
+        * contains the essential components for an AngularJS application to function. The table below
+        * lists a high level breakdown of each of the services/factories, filters, directives and testing
+        * components available within this core module.
+        *
+        * <div doc-module-components="ng"></div>
+        */
+
+       var REGEX_STRING_REGEXP = /^\/(.+)\/([a-z]*)$/;
+
+       // The name of a form control's ValidityState property.
+       // This is used so that it's possible for internal tests to create mock ValidityStates.
+       var VALIDITY_STATE_PROPERTY = 'validity';
+
+       /**
+        * @ngdoc function
+        * @name angular.lowercase
+        * @module ng
+        * @kind function
+        *
+        * @description Converts the specified string to lowercase.
+        * @param {string} string String to be converted to lowercase.
+        * @returns {string} Lowercased string.
+        */
+       var lowercase = function(string) {return isString(string) ? string.toLowerCase() : string;};
+       var hasOwnProperty = Object.prototype.hasOwnProperty;
+
+       /**
+        * @ngdoc function
+        * @name angular.uppercase
+        * @module ng
+        * @kind function
+        *
+        * @description Converts the specified string to uppercase.
+        * @param {string} string String to be converted to uppercase.
+        * @returns {string} Uppercased string.
+        */
+       var uppercase = function(string) {return isString(string) ? string.toUpperCase() : string;};
+
+
+       var manualLowercase = function(s) {
+         /* jshint bitwise: false */
+         return isString(s)
+             ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);})
+             : s;
+       };
+       var manualUppercase = function(s) {
+         /* jshint bitwise: false */
+         return isString(s)
+             ? s.replace(/[a-z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) & ~32);})
+             : s;
+       };
+
+
+       // String#toLowerCase and String#toUpperCase don't produce correct results in browsers with Turkish
+       // locale, for this reason we need to detect this case and redefine lowercase/uppercase methods
+       // with correct but slower alternatives.
+       if ('i' !== 'I'.toLowerCase()) {
+         lowercase = manualLowercase;
+         uppercase = manualUppercase;
+       }
+
+
+       var
+           msie,             // holds major version number for IE, or NaN if UA is not IE.
+           jqLite,           // delay binding since jQuery could be loaded after us.
+           jQuery,           // delay binding
+           slice             = [].slice,
+           splice            = [].splice,
+           push              = [].push,
+           toString          = Object.prototype.toString,
+           getPrototypeOf    = Object.getPrototypeOf,
+           ngMinErr          = minErr('ng'),
+
+           /** @name angular */
+           angular           = window.angular || (window.angular = {}),
+           angularModule,
+           uid               = 0;
+
+       /**
+        * documentMode is an IE-only property
+        * http://msdn.microsoft.com/en-us/library/ie/cc196988(v=vs.85).aspx
+        */
+       msie = document.documentMode;
+
+
+       /**
+        * @private
+        * @param {*} obj
+        * @return {boolean} Returns true if `obj` is an array or array-like object (NodeList, Arguments,
+        *                   String ...)
+        */
+       function isArrayLike(obj) {
+
+         // `null`, `undefined` and `window` are not array-like
+         if (obj == null || isWindow(obj)) return false;
+
+         // arrays, strings and jQuery/jqLite objects are array like
+         // * jqLite is either the jQuery or jqLite constructor function
+         // * we have to check the existance of jqLite first as this method is called
+         //   via the forEach method when constructing the jqLite object in the first place
+         if (isArray(obj) || isString(obj) || (jqLite && obj instanceof jqLite)) return true;
+
+         // Support: iOS 8.2 (not reproducible in simulator)
+         // "length" in obj used to prevent JIT error (gh-11508)
+         var length = "length" in Object(obj) && obj.length;
+
+         // NodeList objects (with `item` method) and
+         // other objects with suitable length characteristics are array-like
+         return isNumber(length) &&
+           (length >= 0 && (length - 1) in obj || typeof obj.item == 'function');
+       }
+
+       /**
+        * @ngdoc function
+        * @name angular.forEach
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Invokes the `iterator` function once for each item in `obj` collection, which can be either an
+        * object or an array. The `iterator` function is invoked with `iterator(value, key, obj)`, where `value`
+        * is the value of an object property or an array element, `key` is the object property key or
+        * array element index and obj is the `obj` itself. Specifying a `context` for the function is optional.
+        *
+        * It is worth noting that `.forEach` does not iterate over inherited properties because it filters
+        * using the `hasOwnProperty` method.
+        *
+        * Unlike ES262's
+        * [Array.prototype.forEach](http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.18),
+        * Providing 'undefined' or 'null' values for `obj` will not throw a TypeError, but rather just
+        * return the value provided.
+        *
+          ```js
+            var values = {name: 'misko', gender: 'male'};
+            var log = [];
+            angular.forEach(values, function(value, key) {
+              this.push(key + ': ' + value);
+            }, log);
+            expect(log).toEqual(['name: misko', 'gender: male']);
+          ```
+        *
+        * @param {Object|Array} obj Object to iterate over.
+        * @param {Function} iterator Iterator function.
+        * @param {Object=} context Object to become context (`this`) for the iterator function.
+        * @returns {Object|Array} Reference to `obj`.
+        */
+
+       function forEach(obj, iterator, context) {
+         var key, length;
+         if (obj) {
+           if (isFunction(obj)) {
+             for (key in obj) {
+               // Need to check if hasOwnProperty exists,
+               // as on IE8 the result of querySelectorAll is an object without a hasOwnProperty function
+               if (key != 'prototype' && key != 'length' && key != 'name' && (!obj.hasOwnProperty || obj.hasOwnProperty(key))) {
+                 iterator.call(context, obj[key], key, obj);
+               }
+             }
+           } else if (isArray(obj) || isArrayLike(obj)) {
+             var isPrimitive = typeof obj !== 'object';
+             for (key = 0, length = obj.length; key < length; key++) {
+               if (isPrimitive || key in obj) {
+                 iterator.call(context, obj[key], key, obj);
+               }
+             }
+           } else if (obj.forEach && obj.forEach !== forEach) {
+               obj.forEach(iterator, context, obj);
+           } else if (isBlankObject(obj)) {
+             // createMap() fast path --- Safe to avoid hasOwnProperty check because prototype chain is empty
+             for (key in obj) {
+               iterator.call(context, obj[key], key, obj);
+             }
+           } else if (typeof obj.hasOwnProperty === 'function') {
+             // Slow path for objects inheriting Object.prototype, hasOwnProperty check needed
+             for (key in obj) {
+               if (obj.hasOwnProperty(key)) {
+                 iterator.call(context, obj[key], key, obj);
+               }
+             }
+           } else {
+             // Slow path for objects which do not have a method `hasOwnProperty`
+             for (key in obj) {
+               if (hasOwnProperty.call(obj, key)) {
+                 iterator.call(context, obj[key], key, obj);
+               }
+             }
+           }
+         }
+         return obj;
+       }
+
+       function forEachSorted(obj, iterator, context) {
+         var keys = Object.keys(obj).sort();
+         for (var i = 0; i < keys.length; i++) {
+           iterator.call(context, obj[keys[i]], keys[i]);
+         }
+         return keys;
+       }
+
+
+       /**
+        * when using forEach the params are value, key, but it is often useful to have key, value.
+        * @param {function(string, *)} iteratorFn
+        * @returns {function(*, string)}
+        */
+       function reverseParams(iteratorFn) {
+         return function(value, key) { iteratorFn(key, value); };
+       }
+
+       /**
+        * A consistent way of creating unique IDs in angular.
+        *
+        * Using simple numbers allows us to generate 28.6 million unique ids per second for 10 years before
+        * we hit number precision issues in JavaScript.
+        *
+        * Math.pow(2,53) / 60 / 60 / 24 / 365 / 10 = 28.6M
+        *
+        * @returns {number} an unique alpha-numeric string
+        */
+       function nextUid() {
+         return ++uid;
+       }
+
+
+       /**
+        * Set or clear the hashkey for an object.
+        * @param obj object
+        * @param h the hashkey (!truthy to delete the hashkey)
+        */
+       function setHashKey(obj, h) {
+         if (h) {
+           obj.$$hashKey = h;
+         } else {
+           delete obj.$$hashKey;
+         }
+       }
+
+
+       function baseExtend(dst, objs, deep) {
+         var h = dst.$$hashKey;
+
+         for (var i = 0, ii = objs.length; i < ii; ++i) {
+           var obj = objs[i];
+           if (!isObject(obj) && !isFunction(obj)) continue;
+           var keys = Object.keys(obj);
+           for (var j = 0, jj = keys.length; j < jj; j++) {
+             var key = keys[j];
+             var src = obj[key];
+
+             if (deep && isObject(src)) {
+               if (isDate(src)) {
+                 dst[key] = new Date(src.valueOf());
+               } else if (isRegExp(src)) {
+                 dst[key] = new RegExp(src);
+               } else if (src.nodeName) {
+                 dst[key] = src.cloneNode(true);
+               } else if (isElement(src)) {
+                 dst[key] = src.clone();
+               } else {
+                 if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {};
+                 baseExtend(dst[key], [src], true);
+               }
+             } else {
+               dst[key] = src;
+             }
+           }
+         }
+
+         setHashKey(dst, h);
+         return dst;
+       }
+
+       /**
+        * @ngdoc function
+        * @name angular.extend
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Extends the destination object `dst` by copying own enumerable properties from the `src` object(s)
+        * to `dst`. You can specify multiple `src` objects. If you want to preserve original objects, you can do so
+        * by passing an empty object as the target: `var object = angular.extend({}, object1, object2)`.
+        *
+        * **Note:** Keep in mind that `angular.extend` does not support recursive merge (deep copy). Use
+        * {@link angular.merge} for this.
+        *
+        * @param {Object} dst Destination object.
+        * @param {...Object} src Source object(s).
+        * @returns {Object} Reference to `dst`.
+        */
+       function extend(dst) {
+         return baseExtend(dst, slice.call(arguments, 1), false);
+       }
+
+
+       /**
+       * @ngdoc function
+       * @name angular.merge
+       * @module ng
+       * @kind function
+       *
+       * @description
+       * Deeply extends the destination object `dst` by copying own enumerable properties from the `src` object(s)
+       * to `dst`. You can specify multiple `src` objects. If you want to preserve original objects, you can do so
+       * by passing an empty object as the target: `var object = angular.merge({}, object1, object2)`.
+       *
+       * Unlike {@link angular.extend extend()}, `merge()` recursively descends into object properties of source
+       * objects, performing a deep copy.
+       *
+       * @param {Object} dst Destination object.
+       * @param {...Object} src Source object(s).
+       * @returns {Object} Reference to `dst`.
+       */
+       function merge(dst) {
+         return baseExtend(dst, slice.call(arguments, 1), true);
+       }
+
+
+
+       function toInt(str) {
+         return parseInt(str, 10);
+       }
+
+
+       function inherit(parent, extra) {
+         return extend(Object.create(parent), extra);
+       }
+
+       /**
+        * @ngdoc function
+        * @name angular.noop
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * A function that performs no operations. This function can be useful when writing code in the
+        * functional style.
+          ```js
+            function foo(callback) {
+              var result = calculateResult();
+              (callback || angular.noop)(result);
+            }
+          ```
+        */
+       function noop() {}
+       noop.$inject = [];
+
+
+       /**
+        * @ngdoc function
+        * @name angular.identity
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * A function that returns its first argument. This function is useful when writing code in the
+        * functional style.
+        *
+          ```js
+            function transformer(transformationFn, value) {
+              return (transformationFn || angular.identity)(value);
+            };
+          ```
+         * @param {*} value to be returned.
+         * @returns {*} the value passed in.
+        */
+       function identity($) {return $;}
+       identity.$inject = [];
+
+
+       function valueFn(value) {return function() {return value;};}
+
+       function hasCustomToString(obj) {
+         return isFunction(obj.toString) && obj.toString !== toString;
+       }
+
+
+       /**
+        * @ngdoc function
+        * @name angular.isUndefined
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a reference is undefined.
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is undefined.
+        */
+       function isUndefined(value) {return typeof value === 'undefined';}
+
+
+       /**
+        * @ngdoc function
+        * @name angular.isDefined
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a reference is defined.
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is defined.
+        */
+       function isDefined(value) {return typeof value !== 'undefined';}
+
+
+       /**
+        * @ngdoc function
+        * @name angular.isObject
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not
+        * considered to be objects. Note that JavaScript arrays are objects.
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is an `Object` but not `null`.
+        */
+       function isObject(value) {
+         // http://jsperf.com/isobject4
+         return value !== null && typeof value === 'object';
+       }
+
+
+       /**
+        * Determine if a value is an object with a null prototype
+        *
+        * @returns {boolean} True if `value` is an `Object` with a null prototype
+        */
+       function isBlankObject(value) {
+         return value !== null && typeof value === 'object' && !getPrototypeOf(value);
+       }
+
+
+       /**
+        * @ngdoc function
+        * @name angular.isString
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a reference is a `String`.
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is a `String`.
+        */
+       function isString(value) {return typeof value === 'string';}
+
+
+       /**
+        * @ngdoc function
+        * @name angular.isNumber
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a reference is a `Number`.
+        *
+        * This includes the "special" numbers `NaN`, `+Infinity` and `-Infinity`.
+        *
+        * If you wish to exclude these then you can use the native
+        * [`isFinite'](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isFinite)
+        * method.
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is a `Number`.
+        */
+       function isNumber(value) {return typeof value === 'number';}
+
+
+       /**
+        * @ngdoc function
+        * @name angular.isDate
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a value is a date.
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is a `Date`.
+        */
+       function isDate(value) {
+         return toString.call(value) === '[object Date]';
+       }
+
+
+       /**
+        * @ngdoc function
+        * @name angular.isArray
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a reference is an `Array`.
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is an `Array`.
+        */
+       var isArray = Array.isArray;
+
+       /**
+        * @ngdoc function
+        * @name angular.isFunction
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a reference is a `Function`.
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is a `Function`.
+        */
+       function isFunction(value) {return typeof value === 'function';}
+
+
+       /**
+        * Determines if a value is a regular expression object.
+        *
+        * @private
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is a `RegExp`.
+        */
+       function isRegExp(value) {
+         return toString.call(value) === '[object RegExp]';
+       }
+
+
+       /**
+        * Checks if `obj` is a window object.
+        *
+        * @private
+        * @param {*} obj Object to check
+        * @returns {boolean} True if `obj` is a window obj.
+        */
+       function isWindow(obj) {
+         return obj && obj.window === obj;
+       }
+
+
+       function isScope(obj) {
+         return obj && obj.$evalAsync && obj.$watch;
+       }
+
+
+       function isFile(obj) {
+         return toString.call(obj) === '[object File]';
+       }
+
+
+       function isFormData(obj) {
+         return toString.call(obj) === '[object FormData]';
+       }
+
+
+       function isBlob(obj) {
+         return toString.call(obj) === '[object Blob]';
+       }
+
+
+       function isBoolean(value) {
+         return typeof value === 'boolean';
+       }
+
+
+       function isPromiseLike(obj) {
+         return obj && isFunction(obj.then);
+       }
+
+
+       var TYPED_ARRAY_REGEXP = /^\[object (?:Uint8|Uint8Clamped|Uint16|Uint32|Int8|Int16|Int32|Float32|Float64)Array\]$/;
+       function isTypedArray(value) {
+         return value && isNumber(value.length) && TYPED_ARRAY_REGEXP.test(toString.call(value));
+       }
+
+
+       var trim = function(value) {
+         return isString(value) ? value.trim() : value;
+       };
+
+       // Copied from:
+       // http://docs.closure-library.googlecode.com/git/local_closure_goog_string_string.js.source.html#line1021
+       // Prereq: s is a string.
+       var escapeForRegexp = function(s) {
+         return s.replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g, '\\$1').
+                  replace(/\x08/g, '\\x08');
+       };
+
+
+       /**
+        * @ngdoc function
+        * @name angular.isElement
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if a reference is a DOM element (or wrapped jQuery element).
+        *
+        * @param {*} value Reference to check.
+        * @returns {boolean} True if `value` is a DOM element (or wrapped jQuery element).
+        */
+       function isElement(node) {
+         return !!(node &&
+           (node.nodeName  // we are a direct element
+           || (node.prop && node.attr && node.find)));  // we have an on and find method part of jQuery API
+       }
+
+       /**
+        * @param str 'key1,key2,...'
+        * @returns {object} in the form of {key1:true, key2:true, ...}
+        */
+       function makeMap(str) {
+         var obj = {}, items = str.split(","), i;
+         for (i = 0; i < items.length; i++) {
+           obj[items[i]] = true;
+         }
+         return obj;
+       }
+
+
+       function nodeName_(element) {
+         return lowercase(element.nodeName || (element[0] && element[0].nodeName));
+       }
+
+       function includes(array, obj) {
+         return Array.prototype.indexOf.call(array, obj) != -1;
+       }
+
+       function arrayRemove(array, value) {
+         var index = array.indexOf(value);
+         if (index >= 0) {
+           array.splice(index, 1);
+         }
+         return index;
+       }
+
+       /**
+        * @ngdoc function
+        * @name angular.copy
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Creates a deep copy of `source`, which should be an object or an array.
+        *
+        * * If no destination is supplied, a copy of the object or array is created.
+        * * If a destination is provided, all of its elements (for arrays) or properties (for objects)
+        *   are deleted and then all elements/properties from the source are copied to it.
+        * * If `source` is not an object or array (inc. `null` and `undefined`), `source` is returned.
+        * * If `source` is identical to 'destination' an exception will be thrown.
+        *
+        * @param {*} source The source that will be used to make a copy.
+        *                   Can be any type, including primitives, `null`, and `undefined`.
+        * @param {(Object|Array)=} destination Destination into which the source is copied. If
+        *     provided, must be of the same type as `source`.
+        * @returns {*} The copy or updated `destination`, if `destination` was specified.
+        *
+        * @example
+        <example module="copyExample">
+        <file name="index.html">
+        <div ng-controller="ExampleController">
+        <form novalidate class="simple-form">
+        Name: <input type="text" ng-model="user.name" /><br />
+        E-mail: <input type="email" ng-model="user.email" /><br />
+        Gender: <input type="radio" ng-model="user.gender" value="male" />male
+        <input type="radio" ng-model="user.gender" value="female" />female<br />
+        <button ng-click="reset()">RESET</button>
+        <button ng-click="update(user)">SAVE</button>
+        </form>
+        <pre>form = {{user | json}}</pre>
+        <pre>master = {{master | json}}</pre>
+        </div>
+
+        <script>
+         angular.module('copyExample', [])
+           .controller('ExampleController', ['$scope', function($scope) {
+             $scope.master= {};
+
+             $scope.update = function(user) {
+               // Example with 1 argument
+               $scope.master= angular.copy(user);
+             };
+
+             $scope.reset = function() {
+               // Example with 2 arguments
+               angular.copy($scope.master, $scope.user);
+             };
+
+             $scope.reset();
+           }]);
+        </script>
+        </file>
+        </example>
+        */
+       function copy(source, destination) {
+         var stackSource = [];
+         var stackDest = [];
+
+         if (destination) {
+           if (isTypedArray(destination)) {
+             throw ngMinErr('cpta', "Can't copy! TypedArray destination cannot be mutated.");
+           }
+           if (source === destination) {
+             throw ngMinErr('cpi', "Can't copy! Source and destination are identical.");
+           }
+
+           // Empty the destination object
+           if (isArray(destination)) {
+             destination.length = 0;
+           } else {
+             forEach(destination, function(value, key) {
+               if (key !== '$$hashKey') {
+                 delete destination[key];
+               }
+             });
+           }
+
+           stackSource.push(source);
+           stackDest.push(destination);
+           return copyRecurse(source, destination);
+         }
+
+         return copyElement(source);
+
+         function copyRecurse(source, destination) {
+           var h = destination.$$hashKey;
+           var result, key;
+           if (isArray(source)) {
+             for (var i = 0, ii = source.length; i < ii; i++) {
+               destination.push(copyElement(source[i]));
+             }
+           } else if (isBlankObject(source)) {
+             // createMap() fast path --- Safe to avoid hasOwnProperty check because prototype chain is empty
+             for (key in source) {
+               destination[key] = copyElement(source[key]);
+             }
+           } else if (source && typeof source.hasOwnProperty === 'function') {
+             // Slow path, which must rely on hasOwnProperty
+             for (key in source) {
+               if (source.hasOwnProperty(key)) {
+                 destination[key] = copyElement(source[key]);
+               }
+             }
+           } else {
+             // Slowest path --- hasOwnProperty can't be called as a method
+             for (key in source) {
+               if (hasOwnProperty.call(source, key)) {
+                 destination[key] = copyElement(source[key]);
+               }
+             }
+           }
+           setHashKey(destination, h);
+           return destination;
+         }
+
+         function copyElement(source) {
+           // Simple values
+           if (!isObject(source)) {
+             return source;
+           }
+
+           // Already copied values
+           var index = stackSource.indexOf(source);
+           if (index !== -1) {
+             return stackDest[index];
+           }
+
+           if (isWindow(source) || isScope(source)) {
+             throw ngMinErr('cpws',
+               "Can't copy! Making copies of Window or Scope instances is not supported.");
+           }
+
+           var needsRecurse = false;
+           var destination;
+
+           if (isArray(source)) {
+             destination = [];
+             needsRecurse = true;
+           } else if (isTypedArray(source)) {
+             destination = new source.constructor(source);
+           } else if (isDate(source)) {
+             destination = new Date(source.getTime());
+           } else if (isRegExp(source)) {
+             destination = new RegExp(source.source, source.toString().match(/[^\/]*$/)[0]);
+             destination.lastIndex = source.lastIndex;
+           } else if (isFunction(source.cloneNode)) {
+               destination = source.cloneNode(true);
+           } else {
+             destination = Object.create(getPrototypeOf(source));
+             needsRecurse = true;
+           }
+
+           stackSource.push(source);
+           stackDest.push(destination);
+
+           return needsRecurse
+             ? copyRecurse(source, destination)
+             : destination;
+         }
+       }
+
+       /**
+        * Creates a shallow copy of an object, an array or a primitive.
+        *
+        * Assumes that there are no proto properties for objects.
+        */
+       function shallowCopy(src, dst) {
+         if (isArray(src)) {
+           dst = dst || [];
+
+           for (var i = 0, ii = src.length; i < ii; i++) {
+             dst[i] = src[i];
+           }
+         } else if (isObject(src)) {
+           dst = dst || {};
+
+           for (var key in src) {
+             if (!(key.charAt(0) === '$' && key.charAt(1) === '$')) {
+               dst[key] = src[key];
+             }
+           }
+         }
+
+         return dst || src;
+       }
+
+
+       /**
+        * @ngdoc function
+        * @name angular.equals
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Determines if two objects or two values are equivalent. Supports value types, regular
+        * expressions, arrays and objects.
+        *
+        * Two objects or values are considered equivalent if at least one of the following is true:
+        *
+        * * Both objects or values pass `===` comparison.
+        * * Both objects or values are of the same type and all of their properties are equal by
+        *   comparing them with `angular.equals`.
+        * * Both values are NaN. (In JavaScript, NaN == NaN => false. But we consider two NaN as equal)
+        * * Both values represent the same regular expression (In JavaScript,
+        *   /abc/ == /abc/ => false. But we consider two regular expressions as equal when their textual
+        *   representation matches).
+        *
+        * During a property comparison, properties of `function` type and properties with names
+        * that begin with `$` are ignored.
+        *
+        * Scope and DOMWindow objects are being compared only by identify (`===`).
+        *
+        * @param {*} o1 Object or value to compare.
+        * @param {*} o2 Object or value to compare.
+        * @returns {boolean} True if arguments are equal.
+        */
+       function equals(o1, o2) {
+         if (o1 === o2) return true;
+         if (o1 === null || o2 === null) return false;
+         if (o1 !== o1 && o2 !== o2) return true; // NaN === NaN
+         var t1 = typeof o1, t2 = typeof o2, length, key, keySet;
+         if (t1 == t2) {
+           if (t1 == 'object') {
+             if (isArray(o1)) {
+               if (!isArray(o2)) return false;
+               if ((length = o1.length) == o2.length) {
+                 for (key = 0; key < length; key++) {
+                   if (!equals(o1[key], o2[key])) return false;
+                 }
+                 return true;
+               }
+             } else if (isDate(o1)) {
+               if (!isDate(o2)) return false;
+               return equals(o1.getTime(), o2.getTime());
+             } else if (isRegExp(o1)) {
+               return isRegExp(o2) ? o1.toString() == o2.toString() : false;
+             } else {
+               if (isScope(o1) || isScope(o2) || isWindow(o1) || isWindow(o2) ||
+                 isArray(o2) || isDate(o2) || isRegExp(o2)) return false;
+               keySet = createMap();
+               for (key in o1) {
+                 if (key.charAt(0) === '$' || isFunction(o1[key])) continue;
+                 if (!equals(o1[key], o2[key])) return false;
+                 keySet[key] = true;
+               }
+               for (key in o2) {
+                 if (!(key in keySet) &&
+                     key.charAt(0) !== '$' &&
+                     isDefined(o2[key]) &&
+                     !isFunction(o2[key])) return false;
+               }
+               return true;
+             }
+           }
+         }
+         return false;
+       }
+
+       var csp = function() {
+         if (!isDefined(csp.rules)) {
+
+
+           var ngCspElement = (document.querySelector('[ng-csp]') ||
+                           document.querySelector('[data-ng-csp]'));
+
+           if (ngCspElement) {
+             var ngCspAttribute = ngCspElement.getAttribute('ng-csp') ||
+                           ngCspElement.getAttribute('data-ng-csp');
+             csp.rules = {
+               noUnsafeEval: !ngCspAttribute || (ngCspAttribute.indexOf('no-unsafe-eval') !== -1),
+               noInlineStyle: !ngCspAttribute || (ngCspAttribute.indexOf('no-inline-style') !== -1)
+             };
+           } else {
+             csp.rules = {
+               noUnsafeEval: noUnsafeEval(),
+               noInlineStyle: false
+             };
+           }
+         }
+
+         return csp.rules;
+
+         function noUnsafeEval() {
+           try {
+             /* jshint -W031, -W054 */
+             new Function('');
+             /* jshint +W031, +W054 */
+             return false;
+           } catch (e) {
+             return true;
+           }
+         }
+       };
+
+       /**
+        * @ngdoc directive
+        * @module ng
+        * @name ngJq
+        *
+        * @element ANY
+        * @param {string=} ngJq the name of the library available under `window`
+        * to be used for angular.element
+        * @description
+        * Use this directive to force the angular.element library.  This should be
+        * used to force either jqLite by leaving ng-jq blank or setting the name of
+        * the jquery variable under window (eg. jQuery).
+        *
+        * Since angular looks for this directive when it is loaded (doesn't wait for the
+        * DOMContentLoaded event), it must be placed on an element that comes before the script
+        * which loads angular. Also, only the first instance of `ng-jq` will be used and all
+        * others ignored.
+        *
+        * @example
+        * This example shows how to force jqLite using the `ngJq` directive to the `html` tag.
+        ```html
+        <!doctype html>
+        <html ng-app ng-jq>
+        ...
+        ...
+        </html>
+        ```
+        * @example
+        * This example shows how to use a jQuery based library of a different name.
+        * The library name must be available at the top most 'window'.
+        ```html
+        <!doctype html>
+        <html ng-app ng-jq="jQueryLib">
+        ...
+        ...
+        </html>
+        ```
+        */
+       var jq = function() {
+         if (isDefined(jq.name_)) return jq.name_;
+         var el;
+         var i, ii = ngAttrPrefixes.length, prefix, name;
+         for (i = 0; i < ii; ++i) {
+           prefix = ngAttrPrefixes[i];
+           if (el = document.querySelector('[' + prefix.replace(':', '\\:') + 'jq]')) {
+             name = el.getAttribute(prefix + 'jq');
+             break;
+           }
+         }
+
+         return (jq.name_ = name);
+       };
+
+       function concat(array1, array2, index) {
+         return array1.concat(slice.call(array2, index));
+       }
+
+       function sliceArgs(args, startIndex) {
+         return slice.call(args, startIndex || 0);
+       }
+
+
+       /* jshint -W101 */
+       /**
+        * @ngdoc function
+        * @name angular.bind
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Returns a function which calls function `fn` bound to `self` (`self` becomes the `this` for
+        * `fn`). You can supply optional `args` that are prebound to the function. This feature is also
+        * known as [partial application](http://en.wikipedia.org/wiki/Partial_application), as
+        * distinguished from [function currying](http://en.wikipedia.org/wiki/Currying#Contrast_with_partial_function_application).
+        *
+        * @param {Object} self Context which `fn` should be evaluated in.
+        * @param {function()} fn Function to be bound.
+        * @param {...*} args Optional arguments to be prebound to the `fn` function call.
+        * @returns {function()} Function that wraps the `fn` with all the specified bindings.
+        */
+       /* jshint +W101 */
+       function bind(self, fn) {
+         var curryArgs = arguments.length > 2 ? sliceArgs(arguments, 2) : [];
+         if (isFunction(fn) && !(fn instanceof RegExp)) {
+           return curryArgs.length
+             ? function() {
+                 return arguments.length
+                   ? fn.apply(self, concat(curryArgs, arguments, 0))
+                   : fn.apply(self, curryArgs);
+               }
+             : function() {
+                 return arguments.length
+                   ? fn.apply(self, arguments)
+                   : fn.call(self);
+               };
+         } else {
+           // in IE, native methods are not functions so they cannot be bound (note: they don't need to be)
+           return fn;
+         }
+       }
+
+
+       function toJsonReplacer(key, value) {
+         var val = value;
+
+         if (typeof key === 'string' && key.charAt(0) === '$' && key.charAt(1) === '$') {
+           val = undefined;
+         } else if (isWindow(value)) {
+           val = '$WINDOW';
+         } else if (value &&  document === value) {
+           val = '$DOCUMENT';
+         } else if (isScope(value)) {
+           val = '$SCOPE';
+         }
+
+         return val;
+       }
+
+
+       /**
+        * @ngdoc function
+        * @name angular.toJson
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Serializes input into a JSON-formatted string. Properties with leading $$ characters will be
+        * stripped since angular uses this notation internally.
+        *
+        * @param {Object|Array|Date|string|number} obj Input to be serialized into JSON.
+        * @param {boolean|number} [pretty=2] If set to true, the JSON output will contain newlines and whitespace.
+        *    If set to an integer, the JSON output will contain that many spaces per indentation.
+        * @returns {string|undefined} JSON-ified string representing `obj`.
+        */
+       function toJson(obj, pretty) {
+         if (typeof obj === 'undefined') return undefined;
+         if (!isNumber(pretty)) {
+           pretty = pretty ? 2 : null;
+         }
+         return JSON.stringify(obj, toJsonReplacer, pretty);
+       }
+
+
+       /**
+        * @ngdoc function
+        * @name angular.fromJson
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Deserializes a JSON string.
+        *
+        * @param {string} json JSON string to deserialize.
+        * @returns {Object|Array|string|number} Deserialized JSON string.
+        */
+       function fromJson(json) {
+         return isString(json)
+             ? JSON.parse(json)
+             : json;
+       }
+
+
+       function timezoneToOffset(timezone, fallback) {
+         var requestedTimezoneOffset = Date.parse('Jan 01, 1970 00:00:00 ' + timezone) / 60000;
+         return isNaN(requestedTimezoneOffset) ? fallback : requestedTimezoneOffset;
+       }
+
+
+       function addDateMinutes(date, minutes) {
+         date = new Date(date.getTime());
+         date.setMinutes(date.getMinutes() + minutes);
+         return date;
+       }
+
+
+       function convertTimezoneToLocal(date, timezone, reverse) {
+         reverse = reverse ? -1 : 1;
+         var timezoneOffset = timezoneToOffset(timezone, date.getTimezoneOffset());
+         return addDateMinutes(date, reverse * (timezoneOffset - date.getTimezoneOffset()));
+       }
+
+
+       /**
+        * @returns {string} Returns the string representation of the element.
+        */
+       function startingTag(element) {
+         element = jqLite(element).clone();
+         try {
+           // turns out IE does not let you set .html() on elements which
+           // are not allowed to have children. So we just ignore it.
+           element.empty();
+         } catch (e) {}
+         var elemHtml = jqLite('<div>').append(element).html();
+         try {
+           return element[0].nodeType === NODE_TYPE_TEXT ? lowercase(elemHtml) :
+               elemHtml.
+                 match(/^(<[^>]+>)/)[1].
+                 replace(/^<([\w\-]+)/, function(match, nodeName) { return '<' + lowercase(nodeName); });
+         } catch (e) {
+           return lowercase(elemHtml);
+         }
+
+       }
+
+
+       /////////////////////////////////////////////////
+
+       /**
+        * Tries to decode the URI component without throwing an exception.
+        *
+        * @private
+        * @param str value potential URI component to check.
+        * @returns {boolean} True if `value` can be decoded
+        * with the decodeURIComponent function.
+        */
+       function tryDecodeURIComponent(value) {
+         try {
+           return decodeURIComponent(value);
+         } catch (e) {
+           // Ignore any invalid uri component
+         }
+       }
+
+
+       /**
+        * Parses an escaped url query string into key-value pairs.
+        * @returns {Object.<string,boolean|Array>}
+        */
+       function parseKeyValue(/**string*/keyValue) {
+         var obj = {};
+         forEach((keyValue || "").split('&'), function(keyValue) {
+           var splitPoint, key, val;
+           if (keyValue) {
+             key = keyValue = keyValue.replace(/\+/g,'%20');
+             splitPoint = keyValue.indexOf('=');
+             if (splitPoint !== -1) {
+               key = keyValue.substring(0, splitPoint);
+               val = keyValue.substring(splitPoint + 1);
+             }
+             key = tryDecodeURIComponent(key);
+             if (isDefined(key)) {
+               val = isDefined(val) ? tryDecodeURIComponent(val) : true;
+               if (!hasOwnProperty.call(obj, key)) {
+                 obj[key] = val;
+               } else if (isArray(obj[key])) {
+                 obj[key].push(val);
+               } else {
+                 obj[key] = [obj[key],val];
+               }
+             }
+           }
+         });
+         return obj;
+       }
+
+       function toKeyValue(obj) {
+         var parts = [];
+         forEach(obj, function(value, key) {
+           if (isArray(value)) {
+             forEach(value, function(arrayValue) {
+               parts.push(encodeUriQuery(key, true) +
+                          (arrayValue === true ? '' : '=' + encodeUriQuery(arrayValue, true)));
+             });
+           } else {
+           parts.push(encodeUriQuery(key, true) +
+                      (value === true ? '' : '=' + encodeUriQuery(value, true)));
+           }
+         });
+         return parts.length ? parts.join('&') : '';
+       }
+
+
+       /**
+        * We need our custom method because encodeURIComponent is too aggressive and doesn't follow
+        * http://www.ietf.org/rfc/rfc3986.txt with regards to the character set (pchar) allowed in path
+        * segments:
+        *    segment       = *pchar
+        *    pchar         = unreserved / pct-encoded / sub-delims / ":" / "@"
+        *    pct-encoded   = "%" HEXDIG HEXDIG
+        *    unreserved    = ALPHA / DIGIT / "-" / "." / "_" / "~"
+        *    sub-delims    = "!" / "$" / "&" / "'" / "(" / ")"
+        *                     / "*" / "+" / "," / ";" / "="
+        */
+       function encodeUriSegment(val) {
+         return encodeUriQuery(val, true).
+                    replace(/%26/gi, '&').
+                    replace(/%3D/gi, '=').
+                    replace(/%2B/gi, '+');
+       }
+
+
+       /**
+        * This method is intended for encoding *key* or *value* parts of query component. We need a custom
+        * method because encodeURIComponent is too aggressive and encodes stuff that doesn't have to be
+        * encoded per http://tools.ietf.org/html/rfc3986:
+        *    query       = *( pchar / "/" / "?" )
+        *    pchar         = unreserved / pct-encoded / sub-delims / ":" / "@"
+        *    unreserved    = ALPHA / DIGIT / "-" / "." / "_" / "~"
+        *    pct-encoded   = "%" HEXDIG HEXDIG
+        *    sub-delims    = "!" / "$" / "&" / "'" / "(" / ")"
+        *                     / "*" / "+" / "," / ";" / "="
+        */
+       function encodeUriQuery(val, pctEncodeSpaces) {
+         return encodeURIComponent(val).
+                    replace(/%40/gi, '@').
+                    replace(/%3A/gi, ':').
+                    replace(/%24/g, '$').
+                    replace(/%2C/gi, ',').
+                    replace(/%3B/gi, ';').
+                    replace(/%20/g, (pctEncodeSpaces ? '%20' : '+'));
+       }
+
+       var ngAttrPrefixes = ['ng-', 'data-ng-', 'ng:', 'x-ng-'];
+
+       function getNgAttribute(element, ngAttr) {
+         var attr, i, ii = ngAttrPrefixes.length;
+         for (i = 0; i < ii; ++i) {
+           attr = ngAttrPrefixes[i] + ngAttr;
+           if (isString(attr = element.getAttribute(attr))) {
+             return attr;
+           }
+         }
+         return null;
+       }
+
+       /**
+        * @ngdoc directive
+        * @name ngApp
+        * @module ng
+        *
+        * @element ANY
+        * @param {angular.Module} ngApp an optional application
+        *   {@link angular.module module} name to load.
+        * @param {boolean=} ngStrictDi if this attribute is present on the app element, the injector will be
+        *   created in "strict-di" mode. This means that the application will fail to invoke functions which
+        *   do not use explicit function annotation (and are thus unsuitable for minification), as described
+        *   in {@link guide/di the Dependency Injection guide}, and useful debugging info will assist in
+        *   tracking down the root of these bugs.
+        *
+        * @description
+        *
+        * Use this directive to **auto-bootstrap** an AngularJS application. The `ngApp` directive
+        * designates the **root element** of the application and is typically placed near the root element
+        * of the page - e.g. on the `<body>` or `<html>` tags.
+        *
+        * Only one AngularJS application can be auto-bootstrapped per HTML document. The first `ngApp`
+        * found in the document will be used to define the root element to auto-bootstrap as an
+        * application. To run multiple applications in an HTML document you must manually bootstrap them using
+        * {@link angular.bootstrap} instead. AngularJS applications cannot be nested within each other.
+        *
+        * You can specify an **AngularJS module** to be used as the root module for the application.  This
+        * module will be loaded into the {@link auto.$injector} when the application is bootstrapped. It
+        * should contain the application code needed or have dependencies on other modules that will
+        * contain the code. See {@link angular.module} for more information.
+        *
+        * In the example below if the `ngApp` directive were not placed on the `html` element then the
+        * document would not be compiled, the `AppController` would not be instantiated and the `{{ a+b }}`
+        * would not be resolved to `3`.
+        *
+        * `ngApp` is the easiest, and most common way to bootstrap an application.
+        *
+        <example module="ngAppDemo">
+          <file name="index.html">
+          <div ng-controller="ngAppDemoController">
+            I can add: {{a}} + {{b}} =  {{ a+b }}
+          </div>
+          </file>
+          <file name="script.js">
+          angular.module('ngAppDemo', []).controller('ngAppDemoController', function($scope) {
+            $scope.a = 1;
+            $scope.b = 2;
+          });
+          </file>
+        </example>
+        *
+        * Using `ngStrictDi`, you would see something like this:
+        *
+        <example ng-app-included="true">
+          <file name="index.html">
+          <div ng-app="ngAppStrictDemo" ng-strict-di>
+              <div ng-controller="GoodController1">
+                  I can add: {{a}} + {{b}} =  {{ a+b }}
+
+                  <p>This renders because the controller does not fail to
+                     instantiate, by using explicit annotation style (see
+                     script.js for details)
+                  </p>
+              </div>
+
+              <div ng-controller="GoodController2">
+                  Name: <input ng-model="name"><br />
+                  Hello, {{name}}!
+
+                  <p>This renders because the controller does not fail to
+                     instantiate, by using explicit annotation style
+                     (see script.js for details)
+                  </p>
+              </div>
+
+              <div ng-controller="BadController">
+                  I can add: {{a}} + {{b}} =  {{ a+b }}
+
+                  <p>The controller could not be instantiated, due to relying
+                     on automatic function annotations (which are disabled in
+                     strict mode). As such, the content of this section is not
+                     interpolated, and there should be an error in your web console.
+                  </p>
+              </div>
+          </div>
+          </file>
+          <file name="script.js">
+          angular.module('ngAppStrictDemo', [])
+            // BadController will fail to instantiate, due to relying on automatic function annotation,
+            // rather than an explicit annotation
+            .controller('BadController', function($scope) {
+              $scope.a = 1;
+              $scope.b = 2;
+            })
+            // Unlike BadController, GoodController1 and GoodController2 will not fail to be instantiated,
+            // due to using explicit annotations using the array style and $inject property, respectively.
+            .controller('GoodController1', ['$scope', function($scope) {
+              $scope.a = 1;
+              $scope.b = 2;
+            }])
+            .controller('GoodController2', GoodController2);
+            function GoodController2($scope) {
+              $scope.name = "World";
+            }
+            GoodController2.$inject = ['$scope'];
+          </file>
+          <file name="style.css">
+          div[ng-controller] {
+              margin-bottom: 1em;
+              -webkit-border-radius: 4px;
+              border-radius: 4px;
+              border: 1px solid;
+              padding: .5em;
+          }
+          div[ng-controller^=Good] {
+              border-color: #d6e9c6;
+              background-color: #dff0d8;
+              color: #3c763d;
+          }
+          div[ng-controller^=Bad] {
+              border-color: #ebccd1;
+              background-color: #f2dede;
+              color: #a94442;
+              margin-bottom: 0;
+          }
+          </file>
+        </example>
+        */
+       function angularInit(element, bootstrap) {
+         var appElement,
+             module,
+             config = {};
+
+         // The element `element` has priority over any other element
+         forEach(ngAttrPrefixes, function(prefix) {
+           var name = prefix + 'app';
+
+           if (!appElement && element.hasAttribute && element.hasAttribute(name)) {
+             appElement = element;
+             module = element.getAttribute(name);
+           }
+         });
+         forEach(ngAttrPrefixes, function(prefix) {
+           var name = prefix + 'app';
+           var candidate;
+
+           if (!appElement && (candidate = element.querySelector('[' + name.replace(':', '\\:') + ']'))) {
+             appElement = candidate;
+             module = candidate.getAttribute(name);
+           }
+         });
+         if (appElement) {
+           config.strictDi = getNgAttribute(appElement, "strict-di") !== null;
+           bootstrap(appElement, module ? [module] : [], config);
+         }
+       }
+
+       /**
+        * @ngdoc function
+        * @name angular.bootstrap
+        * @module ng
+        * @description
+        * Use this function to manually start up angular application.
+        *
+        * See: {@link guide/bootstrap Bootstrap}
+        *
+        * Note that Protractor based end-to-end tests cannot use this function to bootstrap manually.
+        * They must use {@link ng.directive:ngApp ngApp}.
+        *
+        * Angular will detect if it has been loaded into the browser more than once and only allow the
+        * first loaded script to be bootstrapped and will report a warning to the browser console for
+        * each of the subsequent scripts. This prevents strange results in applications, where otherwise
+        * multiple instances of Angular try to work on the DOM.
+        *
+        * ```html
+        * <!doctype html>
+        * <html>
+        * <body>
+        * <div ng-controller="WelcomeController">
+        *   {{greeting}}
+        * </div>
+        *
+        * <script src="angular.js"></script>
+        * <script>
+        *   var app = angular.module('demo', [])
+        *   .controller('WelcomeController', function($scope) {
+        *       $scope.greeting = 'Welcome!';
+        *   });
+        *   angular.bootstrap(document, ['demo']);
+        * </script>
+        * </body>
+        * </html>
+        * ```
+        *
+        * @param {DOMElement} element DOM element which is the root of angular application.
+        * @param {Array<String|Function|Array>=} modules an array of modules to load into the application.
+        *     Each item in the array should be the name of a predefined module or a (DI annotated)
+        *     function that will be invoked by the injector as a `config` block.
+        *     See: {@link angular.module modules}
+        * @param {Object=} config an object for defining configuration options for the application. The
+        *     following keys are supported:
+        *
+        * * `strictDi` - disable automatic function annotation for the application. This is meant to
+        *   assist in finding bugs which break minified code. Defaults to `false`.
+        *
+        * @returns {auto.$injector} Returns the newly created injector for this app.
+        */
+       function bootstrap(element, modules, config) {
+         if (!isObject(config)) config = {};
+         var defaultConfig = {
+           strictDi: false
+         };
+         config = extend(defaultConfig, config);
+         var doBootstrap = function() {
+           element = jqLite(element);
+
+           if (element.injector()) {
+             var tag = (element[0] === document) ? 'document' : startingTag(element);
+             //Encode angle brackets to prevent input from being sanitized to empty string #8683
+             throw ngMinErr(
+                 'btstrpd',
+                 "App Already Bootstrapped with this Element '{0}'",
+                 tag.replace(/</,'&lt;').replace(/>/,'&gt;'));
+           }
+
+           modules = modules || [];
+           modules.unshift(['$provide', function($provide) {
+             $provide.value('$rootElement', element);
+           }]);
+
+           if (config.debugInfoEnabled) {
+             // Pushing so that this overrides `debugInfoEnabled` setting defined in user's `modules`.
+             modules.push(['$compileProvider', function($compileProvider) {
+               $compileProvider.debugInfoEnabled(true);
+             }]);
+           }
+
+           modules.unshift('ng');
+           var injector = createInjector(modules, config.strictDi);
+           injector.invoke(['$rootScope', '$rootElement', '$compile', '$injector',
+              function bootstrapApply(scope, element, compile, injector) {
+               scope.$apply(function() {
+                 element.data('$injector', injector);
+                 compile(element)(scope);
+               });
+             }]
+           );
+           return injector;
+         };
+
+         var NG_ENABLE_DEBUG_INFO = /^NG_ENABLE_DEBUG_INFO!/;
+         var NG_DEFER_BOOTSTRAP = /^NG_DEFER_BOOTSTRAP!/;
+
+         if (window && NG_ENABLE_DEBUG_INFO.test(window.name)) {
+           config.debugInfoEnabled = true;
+           window.name = window.name.replace(NG_ENABLE_DEBUG_INFO, '');
+         }
+
+         if (window && !NG_DEFER_BOOTSTRAP.test(window.name)) {
+           return doBootstrap();
+         }
+
+         window.name = window.name.replace(NG_DEFER_BOOTSTRAP, '');
+         angular.resumeBootstrap = function(extraModules) {
+           forEach(extraModules, function(module) {
+             modules.push(module);
+           });
+           return doBootstrap();
+         };
+
+         if (isFunction(angular.resumeDeferredBootstrap)) {
+           angular.resumeDeferredBootstrap();
+         }
+       }
+
+       /**
+        * @ngdoc function
+        * @name angular.reloadWithDebugInfo
+        * @module ng
+        * @description
+        * Use this function to reload the current application with debug information turned on.
+        * This takes precedence over a call to `$compileProvider.debugInfoEnabled(false)`.
+        *
+        * See {@link ng.$compileProvider#debugInfoEnabled} for more.
+        */
+       function reloadWithDebugInfo() {
+         window.name = 'NG_ENABLE_DEBUG_INFO!' + window.name;
+         window.location.reload();
+       }
+
+       /**
+        * @name angular.getTestability
+        * @module ng
+        * @description
+        * Get the testability service for the instance of Angular on the given
+        * element.
+        * @param {DOMElement} element DOM element which is the root of angular application.
+        */
+       function getTestability(rootElement) {
+         var injector = angular.element(rootElement).injector();
+         if (!injector) {
+           throw ngMinErr('test',
+             'no injector found for element argument to getTestability');
+         }
+         return injector.get('$$testability');
+       }
+
+       var SNAKE_CASE_REGEXP = /[A-Z]/g;
+       function snake_case(name, separator) {
+         separator = separator || '_';
+         return name.replace(SNAKE_CASE_REGEXP, function(letter, pos) {
+           return (pos ? separator : '') + letter.toLowerCase();
+         });
+       }
+
+       var bindJQueryFired = false;
+       var skipDestroyOnNextJQueryCleanData;
+       function bindJQuery() {
+         var originalCleanData;
+
+         if (bindJQueryFired) {
+           return;
+         }
+
+         // bind to jQuery if present;
+         var jqName = jq();
+         jQuery = isUndefined(jqName) ? window.jQuery :   // use jQuery (if present)
+                  !jqName             ? undefined     :   // use jqLite
+                                        window[jqName];   // use jQuery specified by `ngJq`
+
+         // Use jQuery if it exists with proper functionality, otherwise default to us.
+         // Angular 1.2+ requires jQuery 1.7+ for on()/off() support.
+         // Angular 1.3+ technically requires at least jQuery 2.1+ but it may work with older
+         // versions. It will not work for sure with jQuery <1.7, though.
+         if (jQuery && jQuery.fn.on) {
+           jqLite = jQuery;
+           extend(jQuery.fn, {
+             scope: JQLitePrototype.scope,
+             isolateScope: JQLitePrototype.isolateScope,
+             controller: JQLitePrototype.controller,
+             injector: JQLitePrototype.injector,
+             inheritedData: JQLitePrototype.inheritedData
+           });
+
+           // All nodes removed from the DOM via various jQuery APIs like .remove()
+           // are passed through jQuery.cleanData. Monkey-patch this method to fire
+           // the $destroy event on all removed nodes.
+           originalCleanData = jQuery.cleanData;
+           jQuery.cleanData = function(elems) {
+             var events;
+             if (!skipDestroyOnNextJQueryCleanData) {
+               for (var i = 0, elem; (elem = elems[i]) != null; i++) {
+                 events = jQuery._data(elem, "events");
+                 if (events && events.$destroy) {
+                   jQuery(elem).triggerHandler('$destroy');
+                 }
+               }
+             } else {
+               skipDestroyOnNextJQueryCleanData = false;
+             }
+             originalCleanData(elems);
+           };
+         } else {
+           jqLite = JQLite;
+         }
+
+         angular.element = jqLite;
+
+         // Prevent double-proxying.
+         bindJQueryFired = true;
+       }
+
+       /**
+        * throw error if the argument is falsy.
+        */
+       function assertArg(arg, name, reason) {
+         if (!arg) {
+           throw ngMinErr('areq', "Argument '{0}' is {1}", (name || '?'), (reason || "required"));
+         }
+         return arg;
+       }
+
+       function assertArgFn(arg, name, acceptArrayAnnotation) {
+         if (acceptArrayAnnotation && isArray(arg)) {
+             arg = arg[arg.length - 1];
+         }
+
+         assertArg(isFunction(arg), name, 'not a function, got ' +
+             (arg && typeof arg === 'object' ? arg.constructor.name || 'Object' : typeof arg));
+         return arg;
+       }
+
+       /**
+        * throw error if the name given is hasOwnProperty
+        * @param  {String} name    the name to test
+        * @param  {String} context the context in which the name is used, such as module or directive
+        */
+       function assertNotHasOwnProperty(name, context) {
+         if (name === 'hasOwnProperty') {
+           throw ngMinErr('badname', "hasOwnProperty is not a valid {0} name", context);
+         }
+       }
+
+       /**
+        * Return the value accessible from the object by path. Any undefined traversals are ignored
+        * @param {Object} obj starting object
+        * @param {String} path path to traverse
+        * @param {boolean} [bindFnToScope=true]
+        * @returns {Object} value as accessible by path
+        */
+       //TODO(misko): this function needs to be removed
+       function getter(obj, path, bindFnToScope) {
+         if (!path) return obj;
+         var keys = path.split('.');
+         var key;
+         var lastInstance = obj;
+         var len = keys.length;
+
+         for (var i = 0; i < len; i++) {
+           key = keys[i];
+           if (obj) {
+             obj = (lastInstance = obj)[key];
+           }
+         }
+         if (!bindFnToScope && isFunction(obj)) {
+           return bind(lastInstance, obj);
+         }
+         return obj;
+       }
+
+       /**
+        * Return the DOM siblings between the first and last node in the given array.
+        * @param {Array} array like object
+        * @returns {Array} the inputted object or a jqLite collection containing the nodes
+        */
+       function getBlockNodes(nodes) {
+         // TODO(perf): update `nodes` instead of creating a new object?
+         var node = nodes[0];
+         var endNode = nodes[nodes.length - 1];
+         var blockNodes;
+
+         for (var i = 1; node !== endNode && (node = node.nextSibling); i++) {
+           if (blockNodes || nodes[i] !== node) {
+             if (!blockNodes) {
+               blockNodes = jqLite(slice.call(nodes, 0, i));
+             }
+             blockNodes.push(node);
+           }
+         }
+
+         return blockNodes || nodes;
+       }
+
+
+       /**
+        * Creates a new object without a prototype. This object is useful for lookup without having to
+        * guard against prototypically inherited properties via hasOwnProperty.
+        *
+        * Related micro-benchmarks:
+        * - http://jsperf.com/object-create2
+        * - http://jsperf.com/proto-map-lookup/2
+        * - http://jsperf.com/for-in-vs-object-keys2
+        *
+        * @returns {Object}
+        */
+       function createMap() {
+         return Object.create(null);
+       }
+
+       var NODE_TYPE_ELEMENT = 1;
+       var NODE_TYPE_ATTRIBUTE = 2;
+       var NODE_TYPE_TEXT = 3;
+       var NODE_TYPE_COMMENT = 8;
+       var NODE_TYPE_DOCUMENT = 9;
+       var NODE_TYPE_DOCUMENT_FRAGMENT = 11;
+
+       /**
+        * @ngdoc type
+        * @name angular.Module
+        * @module ng
+        * @description
+        *
+        * Interface for configuring angular {@link angular.module modules}.
+        */
+
+       function setupModuleLoader(window) {
+
+         var $injectorMinErr = minErr('$injector');
+         var ngMinErr = minErr('ng');
+
+         function ensure(obj, name, factory) {
+           return obj[name] || (obj[name] = factory());
+         }
+
+         var angular = ensure(window, 'angular', Object);
+
+         // We need to expose `angular.$$minErr` to modules such as `ngResource` that reference it during bootstrap
+         angular.$$minErr = angular.$$minErr || minErr;
+
+         return ensure(angular, 'module', function() {
+           /** @type {Object.<string, angular.Module>} */
+           var modules = {};
+
+           /**
+            * @ngdoc function
+            * @name angular.module
+            * @module ng
+            * @description
+            *
+            * The `angular.module` is a global place for creating, registering and retrieving Angular
+            * modules.
+            * All modules (angular core or 3rd party) that should be available to an application must be
+            * registered using this mechanism.
+            *
+            * Passing one argument retrieves an existing {@link angular.Module},
+            * whereas passing more than one argument creates a new {@link angular.Module}
+            *
+            *
+            * # Module
+            *
+            * A module is a collection of services, directives, controllers, filters, and configuration information.
+            * `angular.module` is used to configure the {@link auto.$injector $injector}.
+            *
+            * ```js
+            * // Create a new module
+            * var myModule = angular.module('myModule', []);
+            *
+            * // register a new service
+            * myModule.value('appName', 'MyCoolApp');
+            *
+            * // configure existing services inside initialization blocks.
+            * myModule.config(['$locationProvider', function($locationProvider) {
+            *   // Configure existing providers
+            *   $locationProvider.hashPrefix('!');
+            * }]);
+            * ```
+            *
+            * Then you can create an injector and load your modules like this:
+            *
+            * ```js
+            * var injector = angular.injector(['ng', 'myModule'])
+            * ```
+            *
+            * However it's more likely that you'll just use
+            * {@link ng.directive:ngApp ngApp} or
+            * {@link angular.bootstrap} to simplify this process for you.
+            *
+            * @param {!string} name The name of the module to create or retrieve.
+            * @param {!Array.<string>=} requires If specified then new module is being created. If
+            *        unspecified then the module is being retrieved for further configuration.
+            * @param {Function=} configFn Optional configuration function for the module. Same as
+            *        {@link angular.Module#config Module#config()}.
+            * @returns {module} new module with the {@link angular.Module} api.
+            */
+           return function module(name, requires, configFn) {
+             var assertNotHasOwnProperty = function(name, context) {
+               if (name === 'hasOwnProperty') {
+                 throw ngMinErr('badname', 'hasOwnProperty is not a valid {0} name', context);
+               }
+             };
+
+             assertNotHasOwnProperty(name, 'module');
+             if (requires && modules.hasOwnProperty(name)) {
+               modules[name] = null;
+             }
+             return ensure(modules, name, function() {
+               if (!requires) {
+                 throw $injectorMinErr('nomod', "Module '{0}' is not available! You either misspelled " +
+                    "the module name or forgot to load it. If registering a module ensure that you " +
+                    "specify the dependencies as the second argument.", name);
+               }
+
+               /** @type {!Array.<Array.<*>>} */
+               var invokeQueue = [];
+
+               /** @type {!Array.<Function>} */
+               var configBlocks = [];
+
+               /** @type {!Array.<Function>} */
+               var runBlocks = [];
+
+               var config = invokeLater('$injector', 'invoke', 'push', configBlocks);
+
+               /** @type {angular.Module} */
+               var moduleInstance = {
+                 // Private state
+                 _invokeQueue: invokeQueue,
+                 _configBlocks: configBlocks,
+                 _runBlocks: runBlocks,
+
+                 /**
+                  * @ngdoc property
+                  * @name angular.Module#requires
+                  * @module ng
+                  *
+                  * @description
+                  * Holds the list of modules which the injector will load before the current module is
+                  * loaded.
+                  */
+                 requires: requires,
+
+                 /**
+                  * @ngdoc property
+                  * @name angular.Module#name
+                  * @module ng
+                  *
+                  * @description
+                  * Name of the module.
+                  */
+                 name: name,
+
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#provider
+                  * @module ng
+                  * @param {string} name service name
+                  * @param {Function} providerType Construction function for creating new instance of the
+                  *                                service.
+                  * @description
+                  * See {@link auto.$provide#provider $provide.provider()}.
+                  */
+                 provider: invokeLaterAndSetModuleName('$provide', 'provider'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#factory
+                  * @module ng
+                  * @param {string} name service name
+                  * @param {Function} providerFunction Function for creating new instance of the service.
+                  * @description
+                  * See {@link auto.$provide#factory $provide.factory()}.
+                  */
+                 factory: invokeLaterAndSetModuleName('$provide', 'factory'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#service
+                  * @module ng
+                  * @param {string} name service name
+                  * @param {Function} constructor A constructor function that will be instantiated.
+                  * @description
+                  * See {@link auto.$provide#service $provide.service()}.
+                  */
+                 service: invokeLaterAndSetModuleName('$provide', 'service'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#value
+                  * @module ng
+                  * @param {string} name service name
+                  * @param {*} object Service instance object.
+                  * @description
+                  * See {@link auto.$provide#value $provide.value()}.
+                  */
+                 value: invokeLater('$provide', 'value'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#constant
+                  * @module ng
+                  * @param {string} name constant name
+                  * @param {*} object Constant value.
+                  * @description
+                  * Because the constants are fixed, they get applied before other provide methods.
+                  * See {@link auto.$provide#constant $provide.constant()}.
+                  */
+                 constant: invokeLater('$provide', 'constant', 'unshift'),
+
+                  /**
+                  * @ngdoc method
+                  * @name angular.Module#decorator
+                  * @module ng
+                  * @param {string} The name of the service to decorate.
+                  * @param {Function} This function will be invoked when the service needs to be
+                  *                                    instantiated and should return the decorated service instance.
+                  * @description
+                  * See {@link auto.$provide#decorator $provide.decorator()}.
+                  */
+                 decorator: invokeLaterAndSetModuleName('$provide', 'decorator'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#animation
+                  * @module ng
+                  * @param {string} name animation name
+                  * @param {Function} animationFactory Factory function for creating new instance of an
+                  *                                    animation.
+                  * @description
+                  *
+                  * **NOTE**: animations take effect only if the **ngAnimate** module is loaded.
+                  *
+                  *
+                  * Defines an animation hook that can be later used with
+                  * {@link $animate $animate} service and directives that use this service.
+                  *
+                  * ```js
+                  * module.animation('.animation-name', function($inject1, $inject2) {
+                  *   return {
+                  *     eventName : function(element, done) {
+                  *       //code to run the animation
+                  *       //once complete, then run done()
+                  *       return function cancellationFunction(element) {
+                  *         //code to cancel the animation
+                  *       }
+                  *     }
+                  *   }
+                  * })
+                  * ```
+                  *
+                  * See {@link ng.$animateProvider#register $animateProvider.register()} and
+                  * {@link ngAnimate ngAnimate module} for more information.
+                  */
+                 animation: invokeLaterAndSetModuleName('$animateProvider', 'register'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#filter
+                  * @module ng
+                  * @param {string} name Filter name - this must be a valid angular expression identifier
+                  * @param {Function} filterFactory Factory function for creating new instance of filter.
+                  * @description
+                  * See {@link ng.$filterProvider#register $filterProvider.register()}.
+                  *
+                  * <div class="alert alert-warning">
+                  * **Note:** Filter names must be valid angular {@link expression} identifiers, such as `uppercase` or `orderBy`.
+                  * Names with special characters, such as hyphens and dots, are not allowed. If you wish to namespace
+                  * your filters, then you can use capitalization (`myappSubsectionFilterx`) or underscores
+                  * (`myapp_subsection_filterx`).
+                  * </div>
+                  */
+                 filter: invokeLaterAndSetModuleName('$filterProvider', 'register'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#controller
+                  * @module ng
+                  * @param {string|Object} name Controller name, or an object map of controllers where the
+                  *    keys are the names and the values are the constructors.
+                  * @param {Function} constructor Controller constructor function.
+                  * @description
+                  * See {@link ng.$controllerProvider#register $controllerProvider.register()}.
+                  */
+                 controller: invokeLaterAndSetModuleName('$controllerProvider', 'register'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#directive
+                  * @module ng
+                  * @param {string|Object} name Directive name, or an object map of directives where the
+                  *    keys are the names and the values are the factories.
+                  * @param {Function} directiveFactory Factory function for creating new instance of
+                  * directives.
+                  * @description
+                  * See {@link ng.$compileProvider#directive $compileProvider.directive()}.
+                  */
+                 directive: invokeLaterAndSetModuleName('$compileProvider', 'directive'),
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#config
+                  * @module ng
+                  * @param {Function} configFn Execute this function on module load. Useful for service
+                  *    configuration.
+                  * @description
+                  * Use this method to register work which needs to be performed on module loading.
+                  * For more about how to configure services, see
+                  * {@link providers#provider-recipe Provider Recipe}.
+                  */
+                 config: config,
+
+                 /**
+                  * @ngdoc method
+                  * @name angular.Module#run
+                  * @module ng
+                  * @param {Function} initializationFn Execute this function after injector creation.
+                  *    Useful for application initialization.
+                  * @description
+                  * Use this method to register work which should be performed when the injector is done
+                  * loading all modules.
+                  */
+                 run: function(block) {
+                   runBlocks.push(block);
+                   return this;
+                 }
+               };
+
+               if (configFn) {
+                 config(configFn);
+               }
+
+               return moduleInstance;
+
+               /**
+                * @param {string} provider
+                * @param {string} method
+                * @param {String=} insertMethod
+                * @returns {angular.Module}
+                */
+               function invokeLater(provider, method, insertMethod, queue) {
+                 if (!queue) queue = invokeQueue;
+                 return function() {
+                   queue[insertMethod || 'push']([provider, method, arguments]);
+                   return moduleInstance;
+                 };
+               }
+
+               /**
+                * @param {string} provider
+                * @param {string} method
+                * @returns {angular.Module}
+                */
+               function invokeLaterAndSetModuleName(provider, method) {
+                 return function(recipeName, factoryFunction) {
+                   if (factoryFunction && isFunction(factoryFunction)) factoryFunction.$$moduleName = name;
+                   invokeQueue.push([provider, method, arguments]);
+                   return moduleInstance;
+                 };
+               }
+             });
+           };
+         });
+
+       }
+
+       /* global: toDebugString: true */
+
+       function serializeObject(obj) {
+         var seen = [];
+
+         return JSON.stringify(obj, function(key, val) {
+           val = toJsonReplacer(key, val);
+           if (isObject(val)) {
+
+             if (seen.indexOf(val) >= 0) return '...';
+
+             seen.push(val);
+           }
+           return val;
+         });
+       }
+
+       function toDebugString(obj) {
+         if (typeof obj === 'function') {
+           return obj.toString().replace(/ \{[\s\S]*$/, '');
+         } else if (isUndefined(obj)) {
+           return 'undefined';
+         } else if (typeof obj !== 'string') {
+           return serializeObject(obj);
+         }
+         return obj;
+       }
+
+       /* global angularModule: true,
+         version: true,
+
+         $CompileProvider,
+
+         htmlAnchorDirective,
+         inputDirective,
+         inputDirective,
+         formDirective,
+         scriptDirective,
+         selectDirective,
+         styleDirective,
+         optionDirective,
+         ngBindDirective,
+         ngBindHtmlDirective,
+         ngBindTemplateDirective,
+         ngClassDirective,
+         ngClassEvenDirective,
+         ngClassOddDirective,
+         ngCloakDirective,
+         ngControllerDirective,
+         ngFormDirective,
+         ngHideDirective,
+         ngIfDirective,
+         ngIncludeDirective,
+         ngIncludeFillContentDirective,
+         ngInitDirective,
+         ngNonBindableDirective,
+         ngPluralizeDirective,
+         ngRepeatDirective,
+         ngShowDirective,
+         ngStyleDirective,
+         ngSwitchDirective,
+         ngSwitchWhenDirective,
+         ngSwitchDefaultDirective,
+         ngOptionsDirective,
+         ngTranscludeDirective,
+         ngModelDirective,
+         ngListDirective,
+         ngChangeDirective,
+         patternDirective,
+         patternDirective,
+         requiredDirective,
+         requiredDirective,
+         minlengthDirective,
+         minlengthDirective,
+         maxlengthDirective,
+         maxlengthDirective,
+         ngValueDirective,
+         ngModelOptionsDirective,
+         ngAttributeAliasDirectives,
+         ngEventDirectives,
+
+         $AnchorScrollProvider,
+         $AnimateProvider,
+         $CoreAnimateCssProvider,
+         $$CoreAnimateQueueProvider,
+         $$CoreAnimateRunnerProvider,
+         $BrowserProvider,
+         $CacheFactoryProvider,
+         $ControllerProvider,
+         $DocumentProvider,
+         $ExceptionHandlerProvider,
+         $FilterProvider,
+         $$ForceReflowProvider,
+         $InterpolateProvider,
+         $IntervalProvider,
+         $$HashMapProvider,
+         $HttpProvider,
+         $HttpParamSerializerProvider,
+         $HttpParamSerializerJQLikeProvider,
+         $HttpBackendProvider,
+         $xhrFactoryProvider,
+         $LocationProvider,
+         $LogProvider,
+         $ParseProvider,
+         $RootScopeProvider,
+         $QProvider,
+         $$QProvider,
+         $$SanitizeUriProvider,
+         $SceProvider,
+         $SceDelegateProvider,
+         $SnifferProvider,
+         $TemplateCacheProvider,
+         $TemplateRequestProvider,
+         $$TestabilityProvider,
+         $TimeoutProvider,
+         $$RAFProvider,
+         $WindowProvider,
+         $$jqLiteProvider,
+         $$CookieReaderProvider
+       */
+
+
+       /**
+        * @ngdoc object
+        * @name angular.version
+        * @module ng
+        * @description
+        * An object that contains information about the current AngularJS version.
+        *
+        * This object has the following properties:
+        *
+        * - `full` – `{string}` – Full version string, such as "0.9.18".
+        * - `major` – `{number}` – Major version number, such as "0".
+        * - `minor` – `{number}` – Minor version number, such as "9".
+        * - `dot` – `{number}` – Dot version number, such as "18".
+        * - `codeName` – `{string}` – Code name of the release, such as "jiggling-armfat".
+        */
+       var version = {
+         full: '1.4.8',    // all of these placeholder strings will be replaced by grunt's
+         major: 1,    // package task
+         minor: 4,
+         dot: 8,
+         codeName: 'ice-manipulation'
+       };
+
+
+       function publishExternalAPI(angular) {
+         extend(angular, {
+           'bootstrap': bootstrap,
+           'copy': copy,
+           'extend': extend,
+           'merge': merge,
+           'equals': equals,
+           'element': jqLite,
+           'forEach': forEach,
+           'injector': createInjector,
+           'noop': noop,
+           'bind': bind,
+           'toJson': toJson,
+           'fromJson': fromJson,
+           'identity': identity,
+           'isUndefined': isUndefined,
+           'isDefined': isDefined,
+           'isString': isString,
+           'isFunction': isFunction,
+           'isObject': isObject,
+           'isNumber': isNumber,
+           'isElement': isElement,
+           'isArray': isArray,
+           'version': version,
+           'isDate': isDate,
+           'lowercase': lowercase,
+           'uppercase': uppercase,
+           'callbacks': {counter: 0},
+           'getTestability': getTestability,
+           '$$minErr': minErr,
+           '$$csp': csp,
+           'reloadWithDebugInfo': reloadWithDebugInfo
+         });
+
+         angularModule = setupModuleLoader(window);
+
+         angularModule('ng', ['ngLocale'], ['$provide',
+           function ngModule($provide) {
+             // $$sanitizeUriProvider needs to be before $compileProvider as it is used by it.
+             $provide.provider({
+               $$sanitizeUri: $$SanitizeUriProvider
+             });
+             $provide.provider('$compile', $CompileProvider).
+               directive({
+                   a: htmlAnchorDirective,
+                   input: inputDirective,
+                   textarea: inputDirective,
+                   form: formDirective,
+                   script: scriptDirective,
+                   select: selectDirective,
+                   style: styleDirective,
+                   option: optionDirective,
+                   ngBind: ngBindDirective,
+                   ngBindHtml: ngBindHtmlDirective,
+                   ngBindTemplate: ngBindTemplateDirective,
+                   ngClass: ngClassDirective,
+                   ngClassEven: ngClassEvenDirective,
+                   ngClassOdd: ngClassOddDirective,
+                   ngCloak: ngCloakDirective,
+                   ngController: ngControllerDirective,
+                   ngForm: ngFormDirective,
+                   ngHide: ngHideDirective,
+                   ngIf: ngIfDirective,
+                   ngInclude: ngIncludeDirective,
+                   ngInit: ngInitDirective,
+                   ngNonBindable: ngNonBindableDirective,
+                   ngPluralize: ngPluralizeDirective,
+                   ngRepeat: ngRepeatDirective,
+                   ngShow: ngShowDirective,
+                   ngStyle: ngStyleDirective,
+                   ngSwitch: ngSwitchDirective,
+                   ngSwitchWhen: ngSwitchWhenDirective,
+                   ngSwitchDefault: ngSwitchDefaultDirective,
+                   ngOptions: ngOptionsDirective,
+                   ngTransclude: ngTranscludeDirective,
+                   ngModel: ngModelDirective,
+                   ngList: ngListDirective,
+                   ngChange: ngChangeDirective,
+                   pattern: patternDirective,
+                   ngPattern: patternDirective,
+                   required: requiredDirective,
+                   ngRequired: requiredDirective,
+                   minlength: minlengthDirective,
+                   ngMinlength: minlengthDirective,
+                   maxlength: maxlengthDirective,
+                   ngMaxlength: maxlengthDirective,
+                   ngValue: ngValueDirective,
+                   ngModelOptions: ngModelOptionsDirective
+               }).
+               directive({
+                 ngInclude: ngIncludeFillContentDirective
+               }).
+               directive(ngAttributeAliasDirectives).
+               directive(ngEventDirectives);
+             $provide.provider({
+               $anchorScroll: $AnchorScrollProvider,
+               $animate: $AnimateProvider,
+               $animateCss: $CoreAnimateCssProvider,
+               $$animateQueue: $$CoreAnimateQueueProvider,
+               $$AnimateRunner: $$CoreAnimateRunnerProvider,
+               $browser: $BrowserProvider,
+               $cacheFactory: $CacheFactoryProvider,
+               $controller: $ControllerProvider,
+               $document: $DocumentProvider,
+               $exceptionHandler: $ExceptionHandlerProvider,
+               $filter: $FilterProvider,
+               $$forceReflow: $$ForceReflowProvider,
+               $interpolate: $InterpolateProvider,
+               $interval: $IntervalProvider,
+               $http: $HttpProvider,
+               $httpParamSerializer: $HttpParamSerializerProvider,
+               $httpParamSerializerJQLike: $HttpParamSerializerJQLikeProvider,
+               $httpBackend: $HttpBackendProvider,
+               $xhrFactory: $xhrFactoryProvider,
+               $location: $LocationProvider,
+               $log: $LogProvider,
+               $parse: $ParseProvider,
+               $rootScope: $RootScopeProvider,
+               $q: $QProvider,
+               $$q: $$QProvider,
+               $sce: $SceProvider,
+               $sceDelegate: $SceDelegateProvider,
+               $sniffer: $SnifferProvider,
+               $templateCache: $TemplateCacheProvider,
+               $templateRequest: $TemplateRequestProvider,
+               $$testability: $$TestabilityProvider,
+               $timeout: $TimeoutProvider,
+               $window: $WindowProvider,
+               $$rAF: $$RAFProvider,
+               $$jqLite: $$jqLiteProvider,
+               $$HashMap: $$HashMapProvider,
+               $$cookieReader: $$CookieReaderProvider
+             });
+           }
+         ]);
+       }
+
+       /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+        *     Any commits to this file should be reviewed with security in mind.  *
+        *   Changes to this file can potentially create security vulnerabilities. *
+        *          An approval from 2 Core members with history of modifying      *
+        *                         this file is required.                          *
+        *                                                                         *
+        *  Does the change somehow allow for arbitrary javascript to be executed? *
+        *    Or allows for someone to change the prototype of built-in objects?   *
+        *     Or gives undesired access to variables likes document or window?    *
+        * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+       /* global JQLitePrototype: true,
+         addEventListenerFn: true,
+         removeEventListenerFn: true,
+         BOOLEAN_ATTR: true,
+         ALIASED_ATTR: true,
+       */
+
+       //////////////////////////////////
+       //JQLite
+       //////////////////////////////////
+
+       /**
+        * @ngdoc function
+        * @name angular.element
+        * @module ng
+        * @kind function
+        *
+        * @description
+        * Wraps a raw DOM element or HTML string as a [jQuery](http://jquery.com) element.
+        *
+        * If jQuery is available, `angular.element` is an alias for the
+        * [jQuery](http://api.jquery.com/jQuery/) function. If jQuery is not available, `angular.element`
+        * delegates to Angular's built-in subset of jQuery, called "jQuery lite" or "jqLite."
+        *
+        * <div class="alert alert-success">jqLite is a tiny, API-compatible subset of jQuery that allows
+        * Angular to manipulate the DOM in a cross-browser compatible way. **jqLite** implements only the most
+        * commonly needed functionality with the goal of having a very small footprint.</div>
+        *
+        * To use `jQuery`, simply ensure it is loaded before the `angular.js` file.
+        *
+        * <div class="alert">**Note:** all element references in Angular are always wrapped with jQuery or
+        * jqLite; they are never raw DOM references.</div>
+        *
+        * ## Angular's jqLite
+        * jqLite provides only the following jQuery methods:
+        *
+        * - [`addClass()`](http://api.jquery.com/addClass/)
+        * - [`after()`](http://api.jquery.com/after/)
+        * - [`append()`](http://api.jquery.com/append/)
+        * - [`attr()`](http://api.jquery.com/attr/) - Does not support functions as parameters
+        * - [`bind()`](http://api.jquery.com/bind/) - Does not support namespaces, selectors or eventData
+        * - [`children()`](http://api.jquery.com/children/) - Does not support selectors
+        * - [`clone()`](http://api.jquery.com/clone/)
+        * - [`contents()`](http://api.jquery.com/contents/)
+        * - [`css()`](http://api.jquery.com/css/) - Only retrieves inline-styles, does not call `getComputedStyle()`. As a setter, does not convert numbers to strings or append 'px'.
+        * - [`data()`](http://api.jquery.com/data/)
+        * - [`detach()`](http://api.jquery.com/detach/)
+        * - [`empty()`](http://api.jquery.com/empty/)
+        * - [`eq()`](http://api.jquery.com/eq/)
+        * - [`find()`](http://api.jquery.com/find/) - Limited to lookups by tag name
+        * - [`hasClass()`](http://api.jquery.com/hasClass/)
+        * - [`html()`](http://api.jquery.com/html/)
+        * - [`next()`](http://api.jquery.com/next/) - Does not support selectors
+        * - [`on()`](http://api.jquery.com/on/) - Does not support namespaces, selectors or eventData
+        * - [`off()`](http://api.jquery.com/off/) - Does not support namespaces, selectors or event object as parameter
+        * - [`one()`](http://api.jquery.com/one/) - Does not support namespaces or selectors
+        * - [`parent()`](http://api.jquery.com/parent/) - Does not support selectors
+        * - [`prepend()`](http://api.jquery.com/prepend/)
+        * - [`prop()`](http://api.jquery.com/prop/)
+        * - [`ready()`](http://api.jquery.com/ready/)
+        * - [`remove()`](http://api.jquery.com/remove/)
+        * - [`removeAttr()`](http://api.jquery.com/removeAttr/)
+        * - [`removeClass()`](http://api.jquery.com/removeClass/)
+        * - [`removeData()`](http://api.jquery.com/removeData/)
+        * - [`replaceWith()`](http://api.jquery.com/replaceWith/)
+        * - [`text()`](http://api.jquery.com/text/)
+        * - [`toggleClass()`](http://api.jquery.com/toggleClass/)
+        * - [`triggerHandler()`](http://api.jquery.com/triggerHandler/) - Passes a dummy event object to handlers.
+        * - [`unbind()`](http://api.jquery.com/unbind/) - Does not support namespaces or event object as parameter
+        * - [`val()`](http://api.jquery.com/val/)
+        * - [`wrap()`](http://api.jquery.com/wrap/)
+        *
+        * ## jQuery/jqLite Extras
+        * Angular also provides the following additional methods and events to both jQuery and jqLite:
+        *
+        * ### Events
+        * - `$destroy` - AngularJS intercepts all jqLite/jQuery's DOM destruction apis and fires this event
+        *    on all DOM nodes being removed.  This can be used to clean up any 3rd party bindings to the DOM
+        *    element before it is removed.
+        *
+        * ### Methods
+        * - `controller(name)` - retrieves the controller of the current element or its parent. By default
+        *   retrieves controller associated with the `ngController` directive. If `name` is provided as
+        *   camelCase directive name, then the controller for this directive will be retrieved (e.g.
+        *   `'ngModel'`).
+        * - `injector()` - retrieves the injector of the current element or its parent.
+        * - `scope()` - retrieves the {@link ng.$rootScope.Scope scope} of the current
+        *   element or its parent. Requires {@link guide/production#disabling-debug-data Debug Data} to
+        *   be enabled.
+        * - `isolateScope()` - retrieves an isolate {@link ng.$rootScope.Scope scope} if one is attached directly to the
+        *   current element. This getter should be used only on elements that contain a directive which starts a new isolate
+        *   scope. Calling `scope()` on this element always returns the original non-isolate scope.
+        *   Requires {@link guide/production#disabling-debug-data Debug Data} to be enabled.
+        * - `inheritedData()` - same as `data()`, but walks up the DOM until a value is found or the top
+        *   parent element is reached.
+        *
+        * @param {string|DOMElement} element HTML string or DOMElement to be wrapped into jQuery.
+        * @returns {Object} jQuery object.
+        */
+
+       JQLite.expando = 'ng339';
+
+       var jqCache = JQLite.cache = {},
+           jqId = 1,
+           addEventListenerFn = function(element, type, fn) {
+             element.addEventListener(type, fn, false);
+           },
+           removeEventListenerFn = function(element, type, fn) {
+             element.removeEventListener(type, fn, false);
+           };
+
+       /*
+        * !!! This is an undocumented "private" function !!!
+        */
+       JQLite._data = function(node) {
+         //jQuery always returns an object on cache miss
+         return this.cache[node[this.expando]] || {};
+       };
+
+       function jqNextId() { return ++jqId; }
+
+
+       var SPECIAL_CHARS_REGEXP = /([\:\-\_]+(.))/g;
+       var MOZ_HACK_REGEXP = /^moz([A-Z])/;
+       var MOUSE_EVENT_MAP= { mouseleave: "mouseout", mouseenter: "mouseover"};
+       var jqLiteMinErr = minErr('jqLite');
+
+       /**
+        * Converts snake_case to camelCase.
+        * Also there is special case for Moz prefix starting with upper case letter.
+        * @param name Name to normalize
+        */
+       function camelCase(name) {
+         return name.
+           replace(SPECIAL_CHARS_REGEXP, function(_, separator, letter, offset) {
+             return offset ? letter.toUpperCase() : letter;
+           }).
+           replace(MOZ_HACK_REGEXP, 'Moz$1');
+       }
+
+       var SINGLE_TAG_REGEXP = /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/;
+       var HTML_REGEXP = /<|&#?\w+;/;
+       var TAG_NAME_REGEXP = /<([\w:-]+)/;
+       var XHTML_TAG_REGEXP = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi;
+
+       var wrapMap = {
+         'option': [1, '<select multiple="multiple">', '</select>'],
+
+         'thead': [1, '<table>', '</table>'],
+         'col': [2, '<table><colgroup>', '</colgroup></table>'],
+         'tr': [2, '<table><tbody>', '</tbody></table>'],
+         'td': [3, '<table><tbody><tr>', '</tr></tbody></table>'],
+         '_default': [0, "", ""]
+       };
+
+       wrapMap.optgroup = wrapMap.option;
+       wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
+       wrapMap.th = wrapMap.td;
+
+
+       function jqLiteIsTextNode(html) {
+         return !HTML_REGEXP.test(html);
+       }
+
+       function jqLiteAcceptsData(node) {
+         // The window object can accept data but has no nodeType
+         // Otherwise we are only interested in elements (1) and documents (9)
+         var nodeType = node.nodeType;
+         return nodeType === NODE_TYPE_ELEMENT || !nodeType || nodeType === NODE_TYPE_DOCUMENT;
+       }
+
+       function jqLiteHasData(node) {
+         for (var key in jqCache[node.ng339]) {
+           return true;
+         }
+         return false;
+       }
+
+       function jqLiteBuildFragment(html, context) {
+         var tmp, tag, wrap,
+             fragment = context.createDocumentFragment(),
+             nodes = [], i;
+
+         if (jqLiteIsTextNode(html)) {
+           // Convert non-html into a text node
+           nodes.push(context.createTextNode(html));
+         } else {
+           // Convert html into DOM nodes
+           tmp = tmp || fragment.appendChild(context.createElement("div"));
+           tag = (TAG_NAME_REGEXP.exec(html) || ["", ""])[1].toLowerCase();
+           wrap = wrapMap[tag] || wrapMap._default;
+           tmp.innerHTML = wrap[1] + html.replace(XHTML_TAG_REGEXP, "<$1></$2>") + wrap[2];
+
+           // Descend through wrappers to the right content
+           i = wrap[0];
+           while (i--) {
+             tmp = tmp.lastChild;
+           }
+
+           nodes = concat(nodes, tmp.childNodes);
+
+           tmp = fragment.firstChild;
+           tmp.textContent = "";
+         }
+
+         // Remove wrapper from fragment
+         fragment.textContent = "";
+         fragment.innerHTML = ""; // Clear inner HTML
+         forEach(nodes, function(node) {
+           fragment.appendChild(node);
+         });
+
+         return fragment;
+       }
+
+       function jqLiteParseHTML(html, context) {
+         context = context || document;
+         var parsed;
+
+         if ((parsed = SINGLE_TAG_REGEXP.exec(html))) {
+           return [context.createElement(parsed[1])];
+         }
+
+         if ((parsed = jqLiteBuildFragment(html, context))) {
+           return parsed.childNodes;
+         }
+
+         return [];
+       }
+
+
+       // IE9-11 has no method "contains" in SVG element and in Node.prototype. Bug #10259.
+       var jqLiteContains = Node.prototype.contains || function(arg) {
+         // jshint bitwise: false
+         return !!(this.compareDocumentPosition(arg) & 16);
+         // jshint bitwise: true
+       };
+
+       /////////////////////////////////////////////
+       function JQLite(element) {
+         if (element instanceof JQLite) {
+           return element;
+         }
+
+         var argIsString;
+
+         if (isString(element)) {
+           element = trim(element);
+           argIsString = true;
+         }
+         if (!(this instanceof JQLite)) {
+           if (argIsString && element.charAt(0) != '<') {
+             throw jqLiteMinErr('nosel', 'Looking up elements via selectors is not supported by jqLite! See: http://docs.angularjs.org/api/angular.element');
+           }
+           return new JQLite(element);
+         }
+
+         if (argIsString) {
+           jqLiteAddNodes(this, jqLiteParseHTML(element));
+         } else {
+           jqLiteAddNodes(this, element);
+         }
+       }
+
+       function jqLiteClone(element) {
+         return element.cloneNode(true);
+       }
+
+       function jqLiteDealoc(element, onlyDescendants) {
+         if (!onlyDescendants) jqLiteRemoveData(element);
+
+         if (element.querySelectorAll) {
+           var descendants = element.querySelectorAll('*');
+           for (var i = 0, l = descendants.length; i < l; i++) {
+             jqLiteRemoveData(descendants[i]);
+           }
+         }
+       }
+
+       function jqLiteOff(element, type, fn, unsupported) {
+         if (isDefined(unsupported)) throw jqLiteMinErr('offargs', 'jqLite#off() does not support the `selector` argument');
+
+         var expandoStore = jqLiteExpandoStore(element);
+         var events = expandoStore && expandoStore.events;
+         var handle = expandoStore && expandoStore.handle;
+
+         if (!handle) return; //no listeners registered
+
+         if (!type) {
+           for (type in events) {
+             if (type !== '$destroy') {
+               removeEventListenerFn(element, type, handle);
+             }
+             delete events[type];
+           }
+         } else {
+
+           var removeHandler = function(type) {
+             var listenerFns = events[type];
+             if (isDefined(fn)) {
+               arrayRemove(listenerFns || [], fn);
+             }
+             if (!(isDefined(fn) && listenerFns && listenerFns.length > 0)) {
+               removeEventListenerFn(element, type, handle);
+               delete events[type];
+             }
+           };
+
+           forEach(type.split(' '), function(type) {
+             removeHandler(type);
+             if (MOUSE_EVENT_MAP[type]) {
+               removeHandler(MOUSE_EVENT_MAP[type]);
+             }
+           });
+         }
+       }
+
+       function jqLiteRemoveData(element, name) {
+         var expandoId = element.ng339;
+         var expandoStore = expandoId && jqCache[expandoId];
+
+         if (expandoStore) {
+           if (name) {
+             delete expandoStore.data[name];
+             return;
+           }
+
+           if (expandoStore.handle) {
+             if (expandoStore.events.$destroy) {
+               expandoStore.handle({}, '$destroy');
+             }
+             jqLiteOff(element);
+           }
+           delete jqCache[expandoId];
+           element.ng339 = undefined; // don't delete DOM expandos. IE and Chrome don't like it
+         }
+       }
+
+
+       function jqLiteExpandoStore(element, createIfNecessary) {
+         var expandoId = element.ng339,
+             expandoStore = expandoId && jqCache[expandoId];
+
+         if (createIfNecessary && !expandoStore) {
+           element.ng339 = expandoId = jqNextId();
+           expandoStore = jqCache[expandoId] = {events: {}, data: {}, handle: undefined};
+         }
+
+         return expandoStore;
+       }
+
+
+       function jqLiteData(element, key, value) {
+         if (jqLiteAcceptsData(element)) {
+
+           var isSimpleSetter = isDefined(value);
+           var isSimpleGetter = !isSimpleSetter && key && !isObject(key);
+           var massGetter = !key;
+           var expandoStore = jqLiteExpandoStore(element, !isSimpleGetter);
+           var data = expandoStore && expandoStore.data;
+
+           if (isSimpleSetter) { // data('key', value)
+             data[key] = value;
+           } else {
+             if (massGetter) {  // data()
+               return data;
+             } else {
+               if (isSimpleGetter) { // data('key')
+                 // don't force creation of expandoStore if it doesn't exist yet
+                 return data && data[key];
+               } else { // mass-setter: data({key1: val1, key2: val2})
+                 extend(data, key);
+               }
+             }
+           }
+         }
+       }
+
+       function jqLiteHasClass(element, selector) {
+         if (!element.getAttribute) return false;
+         return ((" " + (element.getAttribute('class') || '') + " ").replace(/[\n\t]/g, " ").
+             indexOf(" " + selector + " ") > -1);
+       }
+
+       function jqLiteRemoveClass(element, cssClasses) {
+         if (cssClasses && element.setAttribute) {
+           forEach(cssClasses.split(' '), function(cssClass) {
+             element.setAttribute('class', trim(
+                 (" " + (element.getAttribute('class') || '') + " ")
+                 .replace(/[\n\t]/g, " ")
+                 .replace(" " + trim(cssClass) + " ", " "))
+             );
+           });
+         }
+       }
+
+       function jqLiteAddClass(element, cssClasses) {
+         if (cssClasses && element.setAttribute) {
+           var existingClasses = (' ' + (element.getAttribute('class') || '') + ' ')
+                                   .replace(/[\n\t]/g, " ");
+
+           forEach(cssClasses.split(' '), function(cssClass) {
+             cssClass = trim(cssClass);
+             if (existingClasses.indexOf(' ' + cssClass + ' ') === -1) {
+               existingClasses += cssClass + ' ';
+             }
+           });
+
+           element.setAttribute('class', trim(existingClasses));
+         }
+       }
+
+
+       function jqLiteAddNodes(root, elements) {
+         // THIS CODE IS VERY HOT. Don't make changes without benchmarking.
+
+         if (elements) {
+
+           // if a Node (the most common case)
+           if (elements.nodeType) {
+             root[root.length++] = elements;
+           } else {
+             var length = elements.length;
+
+             // if an Array or NodeList and not a Window
+             if (typeof length === 'number' && elements.window !== elements) {
+               if (length) {
+                 for (var i = 0; i < length; i++) {
+                   root[root.length++] = elements[i];
+                 }
+               }
+             } else {
+               root[root.length++] = elements;
+             }
+           }
+         }
+       }
+
+
+       function jqLiteController(element, name) {
+         return jqLiteInheritedData(element, '$' + (name || 'ngController') + 'Controller');
+       }
+
+       function jqLiteInheritedData(element, name, value) {
+         // if element is the document object work with the html element instead
+         // this makes $(document).scope() possible
+         if (element.nodeType == NODE_TYPE_DOCUMENT) {
+           element = element.documentElement;
+         }
+         var names = isArray(name) ? name : [name];
+
+         while (element) {
+           for (var i = 0, ii = names.length; i < ii; i++) {
+             if (isDefined(value = jqLite.data(element, names[i]))) return value;
+           }
+
+           // If dealing with a document fragment node with a host element, and no parent, use the host
+           // element as the parent. This enables directives within a Shadow DOM or polyfilled Shadow DOM
+           // to lookup parent controllers.
+           element = element.parentNode || (element.nodeType === NODE_TYPE_DOCUMENT_FRAGMENT && element.host);
+         }
+       }
+
+       function jqLiteEmpty(element) {
+         jqLiteDealoc(element, true);
+         while (element.firstChild) {
+           element.removeChild(element.firstChild);
+         }
+       }
+
+       function jqLiteRemove(element, keepData) {
+         if (!keepData) jqLiteDealoc(element);
+         var parent = element.parentNode;
+         if (parent) parent.removeChild(element);
+       }
+
+
+       function jqLiteDocumentLoaded(action, win) {
+         win = win || window;
+         if (win.document.readyState === 'complete') {
+           // Force the action to be run async for consistent behaviour
+           // from the action's point of view
+           // i.e. it will definitely not be in a $apply
+           win.setTimeout(action);
+         } else {
+           // No need to unbind this handler as load is only ever called once
+           jqLite(win).on('load', action);
+         }
+       }
+
+       //////////////////////////////////////////
+       // Functions which are declared directly.
+       //////////////////////////////////////////
+       var JQLitePrototype = JQLite.prototype = {
+         ready: function(fn) {
+           var fired = false;
+
+           function trigger() {
+             if (fired) return;
+             fired = true;
+             fn();
+           }
+
+           // check if document is already loaded
+           if (document.readyState === 'complete') {
+             setTimeout(trigger);
+           } else {
+             this.on('DOMContentLoaded', trigger); // works for modern browsers and IE9
+             // we can not use jqLite since we are not done loading and jQuery could be loaded later.
+             // jshint -W064
+             JQLite(window).on('load', trigger); // fallback to window.onload for others
+             // jshint +W064
+           }
+         },
+         toString: function() {
+           var value = [];
+           forEach(this, function(e) { value.push('' + e);});
+           return '[' + value.join(', ') + ']';
+         },
+
+         eq: function(index) {
+             return (index >= 0) ? jqLite(this[index]) : jqLite(this[this.length + index]);
+         },
+
+         length: 0,
+         push: push,
+         sort: [].sort,
+         splice: [].splice
+       };
+
+       //////////////////////////////////////////
+       // Functions iterating getter/setters.
+       // these functions return self on setter and
+       // value on get.
+       //////////////////////////////////////////
+       var BOOLEAN_ATTR = {};
+       forEach('multiple,selected,checked,disabled,readOnly,required,open'.split(','), function(value) {
+         BOOLEAN_ATTR[lowercase(value)] = value;
+       });
+       var BOOLEAN_ELEMENTS = {};
+       forEach('input,select,option,textarea,button,form,details'.split(','), function(value) {
+         BOOLEAN_ELEMENTS[value] = true;
+       });
+       var ALIASED_ATTR = {
+         'ngMinlength': 'minlength',
+         'ngMaxlength': 'maxlength',
+         'ngMin': 'min',
+         'ngMax': 'max',
+         'ngPattern': 'pattern'
+       };
+
+       function getBooleanAttrName(element, name) {
+         // check dom last since we will most likely fail on name
+         var booleanAttr = BOOLEAN_ATTR[name.toLowerCase()];
+
+         // booleanAttr is here twice to minimize DOM access
+         return booleanAttr && BOOLEAN_ELEMENTS[nodeName_(element)] && booleanAttr;
+       }
+
+       function getAliasedAttrName(name) {
+         return ALIASED_ATTR[name];
+       }
+
+       forEach({
+         data: jqLiteData,
+         removeData: jqLiteRemoveData,
+         hasData: jqLiteHasData
+       }, function(fn, name) {
+         JQLite[name] = fn;
+       });
+
+       forEach({
+         data: jqLiteData,
+         inheritedData: jqLiteInheritedData,
+
+         scope: function(element) {
+           // Can't use jqLiteData here directly so we stay compatible with jQuery!
+           return jqLite.data(element, '$scope') || jqLiteInheritedData(element.parentNode || element, ['$isolateScope', '$scope']);
+         },
+
+         isolateScope: function(element) {
+           // Can't use jqLiteData here directly so we stay compatible with jQuery!
+           return jqLite.data(element, '$isolateScope') || jqLite.data(element, '$isolateScopeNoTemplate');
+         },
+
+         controller: jqLiteController,
+
+         injector: function(element) {
+           return jqLiteInheritedData(element, '$injector');
+         },
+
+         removeAttr: function(element, name) {
+           element.removeAttribute(name);
+         },
+
+         hasClass: jqLiteHasClass,
+
+         css: function(element, name, value) {
+           name = camelCase(name);
+
+           if (isDefined(value)) {
+             element.style[name] = value;
+           } else {
+             return element.style[name];
+           }
+         },
+
+         attr: function(element, name, value) {
+           var nodeType = element.nodeType;
+           if (nodeType === NODE_TYPE_TEXT || nodeType === NODE_TYPE_ATTRIBUTE || nodeType === NODE_TYPE_COMMENT) {
+             return;
+           }
+           var lowercasedName = lowercase(name);
+           if (BOOLEAN_ATTR[lowercasedName]) {
+             if (isDefined(value)) {
+               if (!!value) {
+                 element[name] = true;
+                 element.setAttribute(name, lowercasedName);
+               } else {
+                 element[name] = false;
+                 element.removeAttribute(lowercasedName);
+               }
+             } else {
+               return (element[name] ||
+                        (element.attributes.getNamedItem(name) || noop).specified)
+                      ? lowercasedName
+                      : undefined;
+             }
+           } else if (isDefined(value)) {
+             element.setAttribute(name, value);
+           } else if (element.getAttribute) {
+             // the extra argument "2" is to get the right thing for a.href in IE, see jQuery code
+             // some elements (e.g. Document) don't have get attribute, so return undefined
+             var ret = element.getAttribute(name, 2);
+             // normalize non-existing attributes to undefined (as jQuery)
+             return ret === null ? undefined : ret;
+           }
+         },
+
+         prop: function(element, name, value) {
+           if (isDefined(value)) {
+             element[name] = value;
+           } else {
+             return element[name];
+           }
+         },
+
+         text: (function() {
+           getText.$dv = '';
+           return getText;
+
+           function getText(element, value) {
+             if (isUndefined(value)) {
+               var nodeType = element.nodeType;
+               return (nodeType === NODE_TYPE_ELEMENT || nodeType === NODE_TYPE_TEXT) ? element.textContent : '';
+             }
+             element.textContent = value;
+           }
+         })(),
+
+         val: function(element, value) {
+           if (isUndefined(value)) {
+             if (element.multiple && nodeName_(element) === 'select') {
+               var result = [];
+               forEach(element.options, function(option) {
+                 if (option.selected) {
+                   result.push(option.value || option.text);
+                 }
+               });
+               return result.length === 0 ? null : result;
+             }
+             return element.value;
+           }
+           element.value = value;
+         },
+
+         html: function(element, value) {
+           if (isUndefined(value)) {
+             return element.innerHTML;
+           }
+           jqLiteDealoc(element, true);
+           element.innerHTML = value;
+         },
+
+         empty: jqLiteEmpty
+       }, function(fn, name) {
+         /**
+          * Properties: writes return selection, reads return first value
+          */
+         JQLite.prototype[name] = function(arg1, arg2) {
+           var i, key;
+           var nodeCount = this.length;
+
+           // jqLiteHasClass has only two arguments, but is a getter-only fn, so we need to special-case it
+           // in a way that survives minification.
+           // jqLiteEmpty takes no arguments but is a setter.
+           if (fn !== jqLiteEmpty &&
+               (isUndefined((fn.length == 2 && (fn !== jqLiteHasClass && fn !== jqLiteController)) ? arg1 : arg2))) {
+             if (isObject(arg1)) {
+
+               // we are a write, but the object properties are the key/values
+               for (i = 0; i < nodeCount; i++) {
+                 if (fn === jqLiteData) {
+                   // data() takes the whole object in jQuery
+                   fn(this[i], arg1);
+                 } else {
+                   for (key in arg1) {
+                     fn(this[i], key, arg1[key]);
+                   }
+                 }
+               }
+               // return self for chaining
+               return this;
+             } else {
+               // we are a read, so read the first child.
+               // TODO: do we still need this?
+               var value = fn.$dv;
+               // Only if we have $dv do we iterate over all, otherwise it is just the first element.
+               var jj = (isUndefined(value)) ? Math.min(nodeCount, 1) : nodeCount;
+               for (var j = 0; j < jj; j++) {
+                 var nodeValue = fn(this[j], arg1, arg2);
+                 value = value ? value + nodeValue : nodeValue;
+               }
+               return value;
+             }
+           } else {
+             // we are a write, so apply to all children
+             for (i = 0; i < nodeCount; i++) {
+               fn(this[i], arg1, arg2);
+             }
+             // return self for chaining
+             return this;
+           }
+         };
+       });
+
+       function createEventHandler(element, events) {
+         var eventHandler = function(event, type) {
+           // jQuery specific api
+           event.isDefaultPrevented = function() {
+             return event.defaultPrevented;
+           };
+
+           var eventFns = events[type || event.type];
+           var eventFnsLength = eventFns ? eventFns.length : 0;
+
+           if (!eventFnsLength) return;
+
+           if (isUndefined(event.immediatePropagationStopped)) {
+             var originalStopImmediatePropagation = event.stopImmediatePropagation;
+             event.stopImmediatePropagation = function() {
+               event.immediatePropagationStopped = true;
+
+               if (event.stopPropagation) {
+                 event.stopPropagation();
+               }
+
+               if (originalStopImmediatePropagation) {
+                 originalStopImmediatePropagation.call(event);
+               }
+             };
+           }
+
+           event.isImmediatePropagationStopped = function() {
+             return event.immediatePropagationStopped === true;
+           };
+
+           // Some events have special handlers that wrap the real handler
+           var handlerWrapper = eventFns.specialHandlerWrapper || defaultHandlerWrapper;
+
+           // Copy event handlers in case event handlers array is modified during execution.
+           if ((eventFnsLength > 1)) {
+             eventFns = shallowCopy(eventFns);
+           }
+
+           for (var i = 0; i < eventFnsLength; i++) {
+             if (!event.isImmediatePropagationStopped()) {
+               handlerWrapper(element, event, eventFns[i]);
+             }
+           }
+         };
+
+         // TODO: this is a hack for angularMocks/clearDataCache that makes it possible to deregister all
+         //       events on `element`
+         eventHandler.elem = element;
+         return eventHandler;
+       }
+
+       function defaultHandlerWrapper(element, event, handler) {
+         handler.call(element, event);
+       }
+
+       function specialMouseHandlerWrapper(target, event, handler) {
+         // Refer to jQuery's implementation of mouseenter & mouseleave
+         // Read about mouseenter and mouseleave:
+         // http://www.quirksmode.org/js/events_mouse.html#link8
+         var related = event.relatedTarget;
+         // For mousenter/leave call the handler if related is outside the target.
+         // NB: No relatedTarget if the mouse left/entered the browser window
+         if (!related || (related !== target && !jqLiteContains.call(target, related))) {
+           handler.call(target, event);
+         }
+       }
+
+       //////////////////////////////////////////
+       // Functions iterating traversal.
+       // These functions chain results into a single
+       // selector.
+       //////////////////////////////////////////
+       forEach({
+         removeData: jqLiteRemoveData,
+
+         on: function jqLiteOn(element, type, fn, unsupported) {
+           if (isDefined(unsupported)) throw jqLiteMinErr('onargs', 'jqLite#on() does not support the `selector` or `eventData` parameters');
+
+           // Do not add event handlers to non-elements because they will not be cleaned up.
+           if (!jqLiteAcceptsData(element)) {
+             return;
+           }
+
+           var expandoStore = jqLiteExpandoStore(element, true);
+           var events = expandoStore.events;
+           var handle = expandoStore.handle;
+
+           if (!handle) {
+             handle = expandoStore.handle = createEventHandler(element, events);
+           }
+
+           // http://jsperf.com/string-indexof-vs-split
+           var types = type.indexOf(' ') >= 0 ? type.split(' ') : [type];
+           var i = types.length;
+
+           var addHandler = function(type, specialHandlerWrapper, noEventListener) {
+             var eventFns = events[type];
+
+             if (!eventFns) {
+               eventFns = events[type] = [];
+               eventFns.specialHandlerWrapper = specialHandlerWrapper;
+               if (type !== '$destroy' && !noEventListener) {
+                 addEventListenerFn(element, type, handle);
+               }
+             }
+
+             eventFns.push(fn);
+           };
+
+           while (i--) {
+             type = types[i];
+             if (MOUSE_EVENT_MAP[type]) {
+               addHandler(MOUSE_EVENT_MAP[type], specialMouseHandlerWrapper);
+               addHandler(type, undefined, true);
+             } else {
+               addHandler(type);
+             }
+           }
+         },
+
+         off: jqLiteOff,
+
+         one: function(element, type, fn) {
+           element = jqLite(element);
+
+           //add the listener twice so that when it is called
+           //you can remove the original function and still be
+           //able to call element.off(ev, fn) normally
+           element.on(type, function onFn() {
+             element.off(type, fn);
+             element.off(type, onFn);
+           });
+           element.on(type, fn);
+         },
+
+         replaceWith: function(element, replaceNode) {
+           var index, parent = element.parentNode;
+           jqLiteDealoc(element);
+           forEach(new JQLite(replaceNode), function(node) {
+             if (index) {
+               parent.insertBefore(node, index.nextSibling);
+             } else {
+               parent.replaceChild(node, element);
+             }
+             index = node;
+           });
+         },
+
+         children: function(element) {
+           var children = [];
+           forEach(element.childNodes, function(element) {
+             if (element.nodeType === NODE_TYPE_ELEMENT) {
+               children.push(element);
+             }
+           });
+           return children;
+         },
+
+         contents: function(element) {
+           return element.contentDocument || element.childNodes || [];
+         },
+
+         append: function(element, node) {
+           var nodeType = element.nodeType;
+           if (nodeType !== NODE_TYPE_ELEMENT && nodeType !== NODE_TYPE_DOCUMENT_FRAGMENT) return;
+
+           node = new JQLite(node);
+
+           for (var i = 0, ii = node.length; i < ii; i++) {
+             var child = node[i];
+             element.appendChild(child);
+           }
+         },
+
+         prepend: function(element, node) {
+           if (element.nodeType === NODE_TYPE_ELEMENT) {
+             var index = element.firstChild;
+             forEach(new JQLite(node), function(child) {
+               element.insertBefore(child, index);
+             });
+           }
+         },
+
+         wrap: function(element, wrapNode) {
+           wrapNode = jqLite(wrapNode).eq(0).clone()[0];
+           var parent = element.parentNode;
+           if (parent) {
+             parent.replaceChild(wrapNode, element);
+           }
+           wrapNode.appendChild(element);
+         },
+
+         remove: jqLiteRemove,
+
+         detach: function(element) {
+           jqLiteRemove(element, true);
+         },
+
+         after: function(element, newElement) {
+           var index = element, parent = element.parentNode;
+           newElement = new JQLite(newElement);
+
+           for (var i = 0, ii = newElement.length; i < ii; i++) {
+             var node = newElement[i];
+             parent.insertBefore(node, index.nextSibling);
+             index = node;
+           }
+         },
+
+         addClass: jqLiteAddClass,
+         removeClass: jqLiteRemoveClass,
+
+         toggleClass: function(element, selector, condition) {
+           if (selector) {
+             forEach(selector.split(' '), function(className) {
+               var classCondition = condition;
+               if (isUndefined(classCondition)) {
+                 classCondition = !jqLiteHasClass(element, className);
+               }
+               (classCondition ? jqLiteAddClass : jqLiteRemoveClass)(element, className);
+             });
+           }
+         },
+
+         parent: function(element) {
+           var parent = element.parentNode;
+           return parent && parent.nodeType !== NODE_TYPE_DOCUMENT_FRAGMENT ? parent : null;
+         },
+
+         next: function(element) {
+           return element.nextElementSibling;
+         },
+
+         find: function(element, selector) {
+           if (element.getElementsByTagName) {
+             return element.getElementsByTagName(selector);
+           } else {
+             return [];
+           }
+         },
+
+         clone: jqLiteClone,
+
+         triggerHandler: function(element, event, extraParameters) {
+
+           var dummyEvent, eventFnsCopy, handlerArgs;
+           var eventName = event.type || event;
+           var expandoStore = jqLiteExpandoStore(element);
+           var events = expandoStore && expandoStore.events;
+           var eventFns = events && events[eventName];
+
+           if (eventFns) {
+             // Create a dummy event to pass to the handlers
+             dummyEvent = {
+               preventDefault: function() { this.defaultPrevented = true; },
+               isDefaultPrevented: function() { return this.defaultPrevented === true; },
+               stopImmediatePropagation: function() { this.immediatePropagationStopped = true; },
+               isImmediatePropagationStopped: function() { return this.immediatePropagationStopped === true; },
+               stopPropagation: noop,
+               type: eventName,
+               target: element
+             };
+
+             // If a custom event was provided then extend our dummy event with it
+             if (event.type) {
+               dummyEvent = extend(dummyEvent, event);
+             }
+
+             // Copy event handlers in case event handlers array is modified during execution.
+             eventFnsCopy = shallowCopy(eventFns);
+             handlerArgs = extraParameters ? [dummyEvent].concat(extraParameters) : [dummyEvent];
+
+             forEach(eventFnsCopy, function(fn) {
+               if (!dummyEvent.isImmediatePropagationStopped()) {
+                 fn.apply(element, handlerArgs);
+               }
+             });
+           }
+         }
+       }, function(fn, name) {
+         /**
+          * chaining functions
+          */
+         JQLite.prototype[name] = function(arg1, arg2, arg3) {
+           var value;
+
+           for (var i = 0, ii = this.length; i < ii; i++) {
+             if (isUndefined(value)) {
+               value = fn(this[i], arg1, arg2, arg3);
+               if (isDefined(value)) {
+                 // any function which returns a value needs to be wrapped
+                 value = jqLite(value);
+               }
+             } else {
+               jqLiteAddNodes(value, fn(this[i], arg1, arg2, arg3));
+             }
+           }
+           return isDefined(value) ? value : this;
+         };
+
+         // bind legacy bind/unbind to on/off
+         JQLite.prototype.bind = JQLite.prototype.on;
+         JQLite.prototype.unbind = JQLite.prototype.off;
+       });
+
+
+       // Provider for private $$jqLite service
+       function $$jqLiteProvider() {
+         this.$get = function $$jqLite() {
+           return extend(JQLite, {
+             hasClass: function(node, classes) {
+               if (node.attr) node = node[0];
+               return jqLiteHasClass(node, classes);
+             },
+             addClass: function(node, classes) {
+               if (node.attr) node = node[0];
+               return jqLiteAddClass(node, classes);
+             },
+             removeClass: function(node, classes) {
+               if (node.attr) node = node[0];
+               return jqLiteRemoveClass(node, classes);
+             }
+           });
+         };
+       }
+
+       /**
+        * Computes a hash of an 'obj'.
+        * Hash of a:
+        *  string is string
+        *  number is number as string
+        *  object is either result of calling $$hashKey function on the object or uniquely generated id,
+        *         that is also assigned to the $$hashKey property of the object.
+        *
+        * @param obj
+        * @returns {string} hash string such that the same input will have the same hash string.
+        *         The resulting string key is in 'type:hashKey' format.
+        */
+       function hashKey(obj, nextUidFn) {
+         var key = obj && obj.$$hashKey;
+
+         if (key) {
+           if (typeof key === 'function') {
+             key = obj.$$hashKey();
+           }
+           return key;
+         }
+
+         var objType = typeof obj;
+         if (objType == 'function' || (objType == 'object' && obj !== null)) {
+           key = obj.$$hashKey = objType + ':' + (nextUidFn || nextUid)();
+         } else {
+           key = objType + ':' + obj;
+         }
+
+         return key;
+       }
+
+       /**
+        * HashMap which can use objects as keys
+        */
+       function HashMap(array, isolatedUid) {
+         if (isolatedUid) {
+           var uid = 0;
+           this.nextUid = function() {
+             return ++uid;
+           };
+         }
+         forEach(array, this.put, this);
+       }
+       HashMap.prototype = {
+         /**
+          * Store key value pair
+          * @param key key to store can be any type
+          * @param value value to store can be any type
+          */
+         put: function(key, value) {
+           this[hashKey(key, this.nextUid)] = value;
+         },
+
+         /**
+          * @param key
+          * @returns {Object} the value for the key
+          */
+         get: function(key) {
+           return this[hashKey(key, this.nextUid)];
+         },
+
+         /**
+          * Remove the key/value pair
+          * @param key
+          */
+         remove: function(key) {
+           var value = this[key = hashKey(key, this.nextUid)];
+           delete this[key];
+           return value;
+         }
+       };
+
+       var $$HashMapProvider = [function() {
+         this.$get = [function() {
+           return HashMap;
+         }];
+       }];
+
+       /**
+        * @ngdoc function
+        * @module ng
+        * @name angular.injector
+        * @kind function
+        *
+        * @description
+        * Creates an injector object that can be used for retrieving services as well as for
+        * dependency injection (see {@link guide/di dependency injection}).
+        *
+        * @param {Array.<string|Function>} modules A list of module functions or their aliases. See
+        *     {@link angular.module}. The `ng` module must be explicitly added.
+        * @param {boolean=} [strictDi=false] Whether the injector should be in strict mode, which
+        *     disallows argument name annotation inference.
+        * @returns {injector} Injector object. See {@link auto.$injector $injector}.
+        *
+        * @example
+        * Typical usage
+        * ```js
+        *   // create an injector
+        *   var $injector = angular.injector(['ng']);
+        *
+        *   // use the injector to kick off your application
+        *   // use the type inference to auto inject arguments, or use implicit injection
+        *   $injector.invoke(function($rootScope, $compile, $document) {
+        *     $compile($document)($rootScope);
+        *     $rootScope.$digest();
+        *   });
+        * ```
+        *
+        * Sometimes you want to get access to the injector of a currently running Angular app
+        * from outside Angular. Perhaps, you want to inject and compile some markup after the
+        * application has been bootstrapped. You can do this using the extra `injector()` added
+        * to JQuery/jqLite elements. See {@link angular.element}.
+        *
+        * *This is fairly rare but could be the case if a third party library is injecting the
+        * markup.*
+        *
+        * In the following example a new block of HTML containing a `ng-controller`
+        * directive is added to the end of the document body by JQuery. We then compile and link
+        * it into the current AngularJS scope.
+        *
+        * ```js
+        * var $div = $('<div ng-controller="MyCtrl">{{content.label}}</div>');
+        * $(document.body).append($div);
+        *
+        * angular.element(document).injector().invoke(function($compile) {
+        *   var scope = angular.element($div).scope();
+        *   $compile($div)(scope);
+        * });
+        * ```
+        */
+
+
+       /**
+        * @ngdoc module
+        * @name auto
+        * @description
+        *
+        * Implicit module which gets automatically added to each {@link auto.$injector $injector}.
+        */
+
+       var FN_ARGS = /^[^\(]*\(\s*([^\)]*)\)/m;
+       var FN_ARG_SPLIT = /,/;
+       var FN_ARG = /^\s*(_?)(\S+?)\1\s*$/;
+       var STRIP_COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg;
+       var $injectorMinErr = minErr('$injector');
+
+       function anonFn(fn) {
+         // For anonymous functions, showing at the very least the function signature can help in
+         // debugging.
+         var fnText = fn.toString().replace(STRIP_COMMENTS, ''),
+             args = fnText.match(FN_ARGS);
+         if (args) {
+           return 'function(' + (args[1] || '').replace(/[\s\r\n]+/, ' ') + ')';
+         }
+         return 'fn';
+       }
+
+       function annotate(fn, strictDi, name) {
+         var $inject,
+             fnText,
+             argDecl,
+             last;
+
+         if (typeof fn === 'function') {
+           if (!($inject = fn.$inject)) {
+             $inject = [];
+             if (fn.length) {
+               if (strictDi) {
+                 if (!isString(name) || !name) {
+                   name = fn.name || anonFn(fn);
+                 }
+                 throw $injectorMinErr('strictdi',
+                   '{0} is not using explicit annotation and cannot be invoked in strict mode', name);
+               }
+               fnText = fn.toString().replace(STRIP_COMMENTS, '');
+               argDecl = fnText.match(FN_ARGS);
+               forEach(argDecl[1].split(FN_ARG_SPLIT), function(arg) {
+                 arg.replace(FN_ARG, function(all, underscore, name) {
+                   $inject.push(name);
+                 });
+               });
+             }
+             fn.$inject = $inject;
+           }
+         } else if (isArray(fn)) {
+           last = fn.length - 1;
+           assertArgFn(fn[last], 'fn');
+           $inject = fn.slice(0, last);
+         } else {
+           assertArgFn(fn, 'fn', true);
+         }
+         return $inject;
+       }
+
+       ///////////////////////////////////////
+
+       /**
+        * @ngdoc service
+        * @name $injector
+        *
+        * @description
+        *
+        * `$injector` is used to retrieve object instances as defined by
+        * {@link auto.$provide provider}, instantiate types, invoke methods,
+        * and load modules.
+        *
+        * The following always holds true:
+        *
+        * ```js
+        *   var $injector = angular.injector();
+        *   expect($injector.get('$injector')).toBe($injector);
+        *   expect($injector.invoke(function($injector) {
+        *     return $injector;
+        *   })).toBe($injector);
+        * ```
+        *
+        * # Injection Function Annotation
+        *
+        * JavaScript does not have annotations, and annotations are needed for dependency injection. The
+        * following are all valid ways of annotating function with injection arguments and are equivalent.
+        *
+        * ```js
+        *   // inferred (only works if code not minified/obfuscated)
+        *   $injector.invoke(function(serviceA){});
+        *
+        *   // annotated
+        *   function explicit(serviceA) {};
+        *   explicit.$inject = ['serviceA'];
+        *   $injector.invoke(explicit);
+        *
+        *   // inline
+        *   $injector.invoke(['serviceA', function(serviceA){}]);
+        * ```
+        *
+        * ## Inference
+        *
+        * In JavaScript calling `toString()` on a function returns the function definition. The definition
+        * can then be parsed and the function arguments can be extracted. This method of discovering
+        * annotations is disallowed when the injector is in strict mode.
+        * *NOTE:* This does not work with minification, and obfuscation tools since these tools change the
+        * argument names.
+        *
+        * ## `$inject` Annotation
+        * By adding an `$inject` property onto a function the injection parameters can be specified.
+        *
+        * ## Inline
+        * As an array of injection names, where the last item in the array is the function to call.
+        */
+
+       /**
+        * @ngdoc method
+        * @name $injector#get
+        *
+        * @description
+        * Return an instance of the service.
+        *
+        * @param {string} name The name of the instance to retrieve.
+        * @param {string=} caller An optional string to provide the origin of the function call for error messages.
+        * @return {*} The instance.
+        */
+
+       /**
+        * @ngdoc method
+        * @name $injector#invoke
+        *
+        * @description
+        * Invoke the method and supply the method arguments from the `$injector`.
+        *
+        * @param {Function|Array.<string|Function>} fn The injectable function to invoke. Function parameters are
+        *   injected according to the {@link guide/di $inject Annotation} rules.
+        * @param {Object=} self The `this` for the invoked method.
+        * @param {Object=} locals Optional object. If preset then any argument names are read from this
+        *                         object first, before the `$injector` is consulted.
+        * @returns {*} the value returned by the invoked `fn` function.
+        */
+
+       /**
+        * @ngdoc method
+        * @name $injector#has
+        *
+        * @description
+        * Allows the user to query if the particular service exists.
+        *
+        * @param {string} name Name of the service to query.
+        * @returns {boolean} `true` if injector has given service.
+        */
+
+       /**
+        * @ngdoc method
+        * @name $injector#instantiate
+        * @description
+        * Create a new instance of JS type. The method takes a constructor function, invokes the new
+        * operator, and supplies all of the arguments to the constructor function as specified by the
+        * constructor annotation.
+        *
+        * @param {Function} Type Annotated constructor function.
+        * @param {Object=} locals Optional object. If preset then any argument names are read from this
+        * object first, before the `$injector` is consulted.
+        * @returns {Object} new instance of `Type`.
+        */
+
+       /**
+        * @ngdoc method
+        * @name $injector#annotate
+        *
+        * @description
+        * Returns an array of service names which the function is requesting for injection. This API is
+        * used by the injector to determine which services need to be injected into the function when the
+        * function is invoked. There are three ways in which the function can be annotated with the needed
+        * dependencies.
+        *
+        * # Argument names
+        *
+        * The simplest form is to extract the dependencies from the arguments of the function. This is done
+        * by converting the function into a string using `toString()` method and extracting the argument
+        * names.
+        * ```js
+        *   // Given
+        *   function MyController($scope, $route) {
+        *     // ...
+        *   }
+        *
+        *   // Then
+        *   expect(injector.annotate(MyController)).toEqual(['$scope', '$route']);
+        * ```
+        *
+        * You can disallow this method by using strict injection mode.
+        *
+        * This method does not work with code minification / obfuscation. For this reason the following
+        * annotation strategies are supported.
+        *
+        * # The `$inject` property
+        *
+        * If a function has an `$inject` property and its value is an array of strings, then the strings
+        * represent names of services to be injected into the function.
+        * ```js
+        *   // Given
+        *   var MyController = function(obfuscatedScope, obfuscatedRoute) {
+        *     // ...
+        *   }
+        *   // Define function dependencies
+        *   MyController['$inject'] = ['$scope', '$route'];
+        *
+        *   // Then
+        *   expect(injector.annotate(MyController)).toEqual(['$scope', '$route']);
+        * ```
+        *
+        * # The array notation
+        *
+        * It is often desirable to inline Injected functions and that's when setting the `$inject` property
+        * is very inconvenient. In these situations using the array notation to specify the dependencies in
+        * a way that survives minification is a better choice:
+        *
+        * ```js
+        *   // We wish to write this (not minification / obfuscation safe)
+        *   injector.invoke(function($compile, $rootScope) {
+        *     // ...
+        *   });
+        *
+        *   // We are forced to write break inlining
+        *   var tmpFn = function(obfuscatedCompile, obfuscatedRootScope) {
+        *     // ...
+        *   };
+        *   tmpFn.$inject = ['$compile', '$rootScope'];
+        *   injector.invoke(tmpFn);
+        *
+        *   // To better support inline function the inline annotation is supported
+        *   injector.invoke(['$compile', '$rootScope', function(obfCompile, obfRootScope) {
+        *     // ...
+        *   }]);
+        *
+        *   // Therefore
+        *   expect(injector.annotate(
+        *      ['$compile', '$rootScope', function(obfus_$compile, obfus_$rootScope) {}])
+        *    ).toEqual(['$compile', '$rootScope']);
+        * ```
+        *
+        * @param {Function|Array.<string|Function>} fn Function for which dependent service names need to
+        * be retrieved as described above.
+        *
+        * @param {boolean=} [strictDi=false] Disallow argument name annotation inference.
+        *
+        * @returns {Array.<string>} The names of the services which the function requires.
+        */
+
+
+
+
+       /**
+        * @ngdoc service
+        * @name $provide
+        *
+        * @description
+        *
+        * The {@link auto.$provide $provide} service has a number of methods for registering components
+        * with the {@link auto.$injector $injector}. Many of these functions are also exposed on
+        * {@link angular.Module}.
+        *
+        * An Angular **service** is a singleton object created by a **service factory**.  These **service
+        * factories** are functions which, in turn, are created by a **service provider**.
+        * The **service providers** are constructor functions. When instantiated they must contain a
+        * property called `$get`, which holds the **service factory** function.
+        *
+        * When you request a service, the {@link auto.$injector $injector} is responsible for finding the
+        * correct **service provider**, instantiating it and then calling its `$get` **service factory**
+        * function to get the instance of the **service**.
+        *
+        * Often services have no configuration options and there is no need to add methods to the service
+        * provider.  The provider will be no more than a constructor function with a `$get` property. For
+        * these cases the {@link auto.$provide $provide} service has additional helper methods to register
+        * services without specifying a provider.
+        *
+        * * {@link auto.$provide#provider provider(provider)} - registers a **service provider** with the
+        *     {@link auto.$injector $injector}
+        * * {@link auto.$provide#constant constant(obj)} - registers a value/object that can be accessed by
+        *     providers and services.
+        * * {@link auto.$provide#value value(obj)} - registers a value/object that can only be accessed by
+        *     services, not providers.
+        * * {@link auto.$provide#factory factory(fn)} - registers a service **factory function**, `fn`,
+        *     that will be wrapped in a **service provider** object, whose `$get` property will contain the
+        *     given factory function.
+        * * {@link auto.$provide#service service(class)} - registers a **constructor function**, `class`
+        *     that will be wrapped in a **service provider** object, whose `$get` property will instantiate
+        *      a new object using the given constructor function.
+        *
+        * See the individual methods for more information and examples.
+        */
+
+       /**
+        * @ngdoc method
+        * @name $provide#provider
+        * @description
+        *
+        * Register a **provider function** with the {@link auto.$injector $injector}. Provider functions
+        * are constructor functions, whose instances are responsible for "providing" a factory for a
+        * service.
+        *
+        * Service provider names start with the name of the service they provide followed by `Provider`.
+        * For example, the {@link ng.$log $log} service has a provider called
+        * {@link ng.$logProvider $logProvider}.
+        *
+        * Service provider objects can have additional methods which allow configuration of the provider
+        * and its service. Importantly, you can configure what kind of service is created by the `$get`
+        * method, or how that service will act. For example, the {@link ng.$logProvider $logProvider} has a
+        * method {@link ng.$logProvider#debugEnabled debugEnabled}
+        * which lets you specify whether the {@link ng.$log $log} service will log debug messages to the
+        * console or not.
+        *
+        * @param {string} name The name of the instance. NOTE: the provider will be available under `name +
+                               'Provider'` key.
+        * @param {(Object|function())} provider If the provider is:
+        *
+        *   - `Object`: then it should have a `$get` method. The `$get` method will be invoked using
+        *     {@link auto.$injector#invoke $injector.invoke()} when an instance needs to be created.
+        *   - `Constructor`: a new instance of the provider will be created using
+        *     {@link auto.$injector#instantiate $injector.instantiate()}, then treated as `object`.
+        *
+        * @returns {Object} registered provider instance
+
+        * @example
+        *
+        * The following example shows how to create a simple event tracking service and register it using
+        * {@link auto.$provide#provider $provide.provider()}.
+        *
+        * ```js
+        *  // Define the eventTracker provider
+        *  function EventTrackerProvider() {
+        *    var trackingUrl = '/track';
+        *
+        *    // A provider method for configuring where the tracked events should been saved
+        *    this.setTrackingUrl = function(url) {
+        *      trackingUrl = url;
+        *    };
+        *
+        *    // The service factory function
+        *    this.$get = ['$http', function($http) {
+        *      var trackedEvents = {};
+        *      return {
+        *        // Call this to track an event
+        *        event: function(event) {
+        *          var count = trackedEvents[event] || 0;
+        *          count += 1;
+        *          trackedEvents[event] = count;
+        *          return count;
+        *        },
+        *        // Call this to save the tracked events to the trackingUrl
+        *        save: function() {
+        *          $http.post(trackingUrl, trackedEvents);
+        *        }
+        *      };
+        *    }];
+        *  }
+        *
+        *  describe('eventTracker', function() {
+        *    var postSpy;
+        *
+        *    beforeEach(module(function($provide) {
+        *      // Register the eventTracker provider
+        *      $provide.provider('eventTracker', EventTrackerProvider);
+        *    }));
+        *
+        *    beforeEach(module(function(eventTrackerProvider) {
+        *      // Configure eventTracker provider
+        *      eventTrackerProvider.setTrackingUrl('/custom-track');
+        *    }));
+        *
+        *    it('tracks events', inject(function(eventTracker) {
+        *      expect(eventTracker.event('login')).toEqual(1);
+        *      expect(eventTracker.event('login')).toEqual(2);
+        *    }));
+        *
+        *    it('saves to the tracking url', inject(function(eventTracker, $http) {
+        *      postSpy = spyOn($http, 'post');
+        *      eventTracker.event('login');
+        *      eventTracker.save();
+        *      expect(postSpy).toHaveBeenCalled();
+        *      expect(postSpy.mostRecentCall.args[0]).not.toEqual('/track');
+        *      expect(postSpy.mostRecentCall.args[0]).toEqual('/custom-track');
+        *      expect(postSpy.mostRecentCall.args[1]).toEqual({ 'login': 1 });
+        *    }));
+        *  });
+        * ```
+        */
+
+       /**
+        * @ngdoc method
+        * @name $provide#factory
+        * @description
+        *
+        * Register a **service factory**, which will be called to return the service instance.
+        * This is short for registering a service where its provider consists of only a `$get` property,
+        * which is the given service factory function.
+        * You should use {@link auto.$provide#factory $provide.factory(getFn)} if you do not need to
+        * configure your service in a provider.
+        *
+        * @param {string} name The name of the instance.
+        * @param {Function|Array.<string|Function>} $getFn The injectable $getFn for the instance creation.
+        *                      Internally this is a short hand for `$provide.provider(name, {$get: $getFn})`.
+        * @returns {Object} registered provider instance
+        *
+        * @example
+        * Here is an example of registering a service
+        * ```js
+        *   $provide.factory('ping', ['$http', function($http) {
+        *     return function ping() {
+        *       return $http.send('/ping');
+        *     };
+        *   }]);
+        * ```
+        * You would then inject and use this service like this:
+        * ```js
+        *   someModule.controller('Ctrl', ['ping', function(ping) {
+        *     ping();
+        *   }]);
+        * ```
+        */
+
+
+       /**
+        * @ngdoc method
+        * @name $provide#service
+        * @description
+        *
+        * Register a **service constructor**, which will be invoked with `new` to create the service
+        * instance.
+        * This is short for registering a service where its provider's `$get` property is the service
+        * constructor function that will be used to instantiate the service instance.
+        *
+        * You should use {@link auto.$provide#service $provide.service(class)} if you define your service
+        * as a type/class.
+        *
+        * @param {string} name The name of the instance.
+        * @param {Function|Array.<string|Function>} constructor An injectable class (constructor function)
+        *     that will be instantiated.
+        * @returns {Object} registered provider instance
+        *
+        * @example
+        * Here is an example of registering a service using
+        * {@link auto.$provide#service $provide.service(class)}.
+        * ```js
+        *   var Ping = function($http) {
+        *     this.$http = $http;
+        *   };
+        *
+        *   Ping.$inject = ['$http'];
+        *
+        *   Ping.prototype.send = function() {
+        *     return this.$http.get('/ping');
+        *   };
+        *   $provide.service('ping', Ping);
+        * ```
+        * You would then inject and use this service like this:
+        * ```js
+        *   someModule.controller('Ctrl', ['ping', function(ping) {
+        *     ping.send();
+        *   }]);
+        * ```
+        */
+
+
+       /**
+        * @ngdoc method
+        * @name $provide#value
+        * @description
+        *
+        * Register a **value service** with the {@link auto.$injector $injector}, such as a string, a
+        * number, an array, an object or a function.  This is short for registering a service where its
+        * provider's `$get` property is a factory function that takes no arguments and returns the **value
+        * service**.
+        *
+        * Value services are similar to constant services, except that they cannot be injected into a
+        * module configuration function (see {@link angular.Module#config}) but they can be overridden by
+        * an Angular
+        * {@link auto.$provide#decorator decorator}.
+        *
+        * @param {string} name The name of the instance.
+        * @param {*} value The value.
+        * @returns {Object} registered provider instance
+        *
+        * @example
+        * Here are some examples of creating value services.
+        * ```js
+        *   $provide.value('ADMIN_USER', 'admin');
+        *
+        *   $provide.value('RoleLookup', { admin: 0, writer: 1, reader: 2 });
+        *
+        *   $provide.value('halfOf', function(value) {
+        *     return value / 2;
+        *   });
+        * ```
+        */
+
+
+       /**
+        * @ngdoc method
+        * @name $provide#constant
+        * @description
+        *
+        * Register a **constant service**, such as a string, a number, an array, an object or a function,
+        * with the {@link auto.$injector $injector}. Unlike {@link auto.$provide#value value} it can be
+        * injected into a module configuration function (see {@link angular.Module#config}) and it cannot
+        * be overridden by an Angular {@link auto.$provide#decorator decorator}.
+        *
+        * @param {string} name The name of the constant.
+        * @param {*} value The constant value.
+        * @returns {Object} registered instance
+        *
+        * @example
+        * Here a some examples of creating constants:
+        * ```js
+        *   $provide.constant('SHARD_HEIGHT', 306);
+        *
+        *   $provide.constant('MY_COLOURS', ['red', 'blue', 'grey']);
+        *
+        *   $provide.constant('double', function(value) {
+        *     return value * 2;
+        *   });
+        * ```
+        */
+
+
+       /**
+        * @ngdoc method
+        * @name $provide#decorator
+        * @description
+        *
+        * Register a **service decorator** with the {@link auto.$injector $injector}. A service decorator
+        * intercepts the creation of a service, allowing it to override or modify the behaviour of the
+        * service. The object returned by the decorator may be the original service, or a new service
+        * object which replaces or wraps and delegates to the original service.
+        *
+        * @param {string} name The name of the service to decorate.
+        * @param {Function|Array.<string|Function>} decorator This function will be invoked when the service needs to be
+        *    instantiated and should return the decorated service instance. The function is called using
+        *    the {@link auto.$injector#invoke injector.invoke} method and is therefore fully injectable.
+        *    Local injection arguments:
+        *
+        *    * `$delegate` - The original service instance, which can be monkey patched, configured,
+        *      decorated or delegated to.
+        *
+        * @example
+        * Here we decorate the {@link ng.$log $log} service to convert warnings to errors by intercepting
+        * calls to {@link ng.$log#error $log.warn()}.
+        * ```js
+        *   $provide.decorator('$log', ['$delegate', function($delegate) {
+        *     $delegate.warn = $delegate.error;
+        *     return $delegate;
+        *   }]);
+        * ```
+        */
+
+
+       function createInjector(modulesToLoad, strictDi) {
+         strictDi = (strictDi === true);
+         var INSTANTIATING = {},
+             providerSuffix = 'Provider',
+             path = [],
+             loadedModules = new HashMap([], true),
+             providerCache = {
+               $provide: {
+                   provider: supportObject(provider),
+                   factory: supportObject(factory),
+                   service: supportObject(service),
+                   value: supportObject(value),
+                   constant: supportObject(constant),
+                   decorator: decorator
+                 }
+             },
+             providerInjector = (providerCache.$injector =
+                 createInternalInjector(providerCache, function(serviceName, caller) {
+                   if (angular.isString(caller)) {
+                     path.push(caller);
+                   }
+                   throw $injectorMinErr('unpr', "Unknown provider: {0}", path.join(' <- '));
+                 })),
+             instanceCache = {},
+             instanceInjector = (instanceCache.$injector =
+                 createInternalInjector(instanceCache, function(serviceName, caller) {
+                   var provider = providerInjector.get(serviceName + providerSuffix, caller);
+                   return instanceInjector.invoke(provider.$get, provider, undefined, serviceName);
+                 }));
+
+
+         forEach(loadModules(modulesToLoad), function(fn) { if (fn) instanceInjector.invoke(fn); });
+
+         return instanceInjector;
+
+         ////////////////////////////////////
+         // $provider
+         ////////////////////////////////////
+
+         function supportObject(delegate) {
+           return function(key, value) {
+             if (isObject(key)) {
+               forEach(key, reverseParams(delegate));
+             } else {
+               return delegate(key, value);
+             }
+           };
+         }
+
+         function provider(name, provider_) {
+           assertNotHasOwnProperty(name, 'service');
+           if (isFunction(provider_) || isArray(provider_)) {
+             provider_ = providerInjector.instantiate(provider_);
+           }
+           if (!provider_.$get) {
+             throw $injectorMinErr('pget', "Provider '{0}' must define $get factory method.", name);
+           }
+           return providerCache[name + providerSuffix] = provider_;
+         }
+
+         function enforceReturnValue(name, factory) {
+           return function enforcedReturnValue() {
+             var result = instanceInjector.invoke(factory, this);
+             if (isUndefined(result)) {
+               throw $injectorMinErr('undef', "Provider '{0}' must return a value from $get factory method.", name);
+             }
+             return result;
+           };
+         }
+
+         function factory(name, factoryFn, enforce) {
+           return provider(name, {
+             $get: enforce !== false ? enforceReturnValue(name, factoryFn) : factoryFn
+           });
+         }
+
+         function service(name, constructor) {
+           return factory(name, ['$injector', function($injector) {
+             return $injector.instantiate(constructor);
+           }]);
+         }
+
+         function value(name, val) { return factory(name, valueFn(val), false); }
+
+         function constant(name, value) {
+           assertNotHasOwnProperty(name, 'constant');
+           providerCache[name] = value;
+           instanceCache[name] = value;
+         }
+
+         function decorator(serviceName, decorFn) {
+           var origProvider = providerInjector.get(serviceName + providerSuffix),
+               orig$get = origProvider.$get;
+
+           origProvider.$get = function() {
+             var origInstance = instanceInjector.invoke(orig$get, origProvider);
+             return instanceInjector.invoke(decorFn, null, {$delegate: origInstance});
+           };
+         }
+
+         ////////////////////////////////////
+         // Module Loading
+         ////////////////////////////////////
+         function loadModules(modulesToLoad) {
+           assertArg(isUndefined(modulesToLoad) || isArray(modulesToLoad), 'modulesToLoad', 'not an array');
+           var runBlocks = [], moduleFn;
+           forEach(modulesToLoad, function(module) {
+             if (loadedModules.get(module)) return;
+             loadedModules.put(module, true);
+
+             function runInvokeQueue(queue) {
+               var i, ii;
+               for (i = 0, ii = queue.length; i < ii; i++) {
+                 var invokeArgs = queue[i],
+                     provider = providerInjector.get(invokeArgs[0]);
+
+                 provider[invokeArgs[1]].apply(provider, invokeArgs[2]);
+               }
+             }
+
+             try {
+               if (isString(module)) {
+                 moduleFn = angularModule(module);
+                 runBlocks = runBlocks.concat(loadModules(moduleFn.requires)).concat(moduleFn._runBlocks);
+                 runInvokeQueue(moduleFn._invokeQueue);
+                 runInvokeQueue(moduleFn._configBlocks);
+               } else if (isFunction(module)) {
+                   runBlocks.push(providerInjector.invoke(module));
+               } else if (isArray(module)) {
+                   runBlocks.push(providerInjector.invoke(module));
+               } else {
+                 assertArgFn(module, 'module');
+               }
+             } catch (e) {
+               if (isArray(module)) {
+                 module = module[module.length - 1];
+               }
+               if (e.message && e.stack && e.stack.indexOf(e.message) == -1) {
+                 // Safari & FF's stack traces don't contain error.message content
+                 // unlike those of Chrome and IE
+                 // So if stack doesn't contain message, we create a new string that contains both.
+                 // Since error.stack is read-only in Safari, I'm overriding e and not e.stack here.
+                 /* jshint -W022 */
+                 e = e.message + '\n' + e.stack;
+               }
+               throw $injectorMinErr('modulerr', "Failed to instantiate module {0} due to:\n{1}",
+                         module, e.stack || e.message || e);
+             }
+           });
+           return runBlocks;
+         }
+
+         ////////////////////////////////////
+         // internal Injector
+         ////////////////////////////////////
+
+         function createInternalInjector(cache, factory) {
+
+           function getService(serviceName, caller) {
+             if (cache.hasOwnProperty(serviceName)) {
+               if (cache[serviceName] === INSTANTIATING) {
+                 throw $injectorMinErr('cdep', 'Circular dependency found: {0}',
+                           serviceName + ' <- ' + path.join(' <- '));
+               }
+               return cache[serviceName];
+             } else {
+               try {
+                 path.unshift(serviceName);
+                 cache[serviceName] = INSTANTIATING;
+                 return cache[serviceName] = factory(serviceName, caller);
+               } catch (err) {
+                 if (cache[serviceName] === INSTANTIATING) {
+                   delete cache[serviceName];
+                 }
+                 throw err;
+               } finally {
+                 path.shift();
+               }
+             }
+           }
+
+           function invoke(fn, self, locals, serviceName) {
+             if (typeof locals === 'string') {
+               serviceName = locals;
+               locals = null;
+             }
+
+             var args = [],
+                 $inject = createInjector.$$annotate(fn, strictDi, serviceName),
+                 length, i,
+                 key;
+
+             for (i = 0, length = $inject.length; i < length; i++) {
+               key = $inject[i];
+               if (typeof key !== 'string') {
+                 throw $injectorMinErr('itkn',
+                         'Incorrect injection token! Expected service name as string, got {0}', key);
+               }
+               args.push(
+                 locals && locals.hasOwnProperty(key)
+                 ? locals[key]
+                 : getService(key, serviceName)
+               );
+             }
+             if (isArray(fn)) {
+               fn = fn[length];
+             }
+
+             // http://jsperf.com/angularjs-invoke-apply-vs-switch
+             // #5388
+             return fn.apply(self, args);
+           }
+
+           function instantiate(Type, locals, serviceName) {
+             // Check if Type is annotated and use just the given function at n-1 as parameter
+             // e.g. someModule.factory('greeter', ['$window', function(renamed$window) {}]);
+             // Object creation: http://jsperf.com/create-constructor/2
+             var instance = Object.create((isArray(Type) ? Type[Type.length - 1] : Type).prototype || null);
+             var returnedValue = invoke(Type, instance, locals, serviceName);
+
+             return isObject(returnedValue) || isFunction(returnedValue) ? returnedValue : instance;
+           }
+
+           return {
+             invoke: invoke,
+             instantiate: instantiate,
+             get: getService,
+             annotate: createInjector.$$annotate,
+             has: function(name) {
+               return providerCache.hasOwnProperty(name + providerSuffix) || cache.hasOwnProperty(name);
+             }
+           };
+         }
+       }
+
+       createInjector.$$annotate = annotate;
+
+       /**
+        * @ngdoc provider
+        * @name $anchorScrollProvider
+        *
+        * @description
+        * Use `$anchorScrollProvider` to disable automatic scrolling whenever
+        * {@link ng.$location#hash $location.hash()} changes.
+        */
+       function $AnchorScrollProvider() {
+
+         var autoScrollingEnabled = true;
+
+         /**
+          * @ngdoc method
+          * @name $anchorScrollProvider#disableAutoScrolling
+          *
+          * @description
+          * By default, {@link ng.$anchorScroll $anchorScroll()} will automatically detect changes to
+          * {@link ng.$location#hash $location.hash()} and scroll to the element matching the new hash.<br />
+          * Use this method to disable automatic scrolling.
+          *
+          * If automatic scrolling is disabled, one must explicitly call
+          * {@link ng.$anchorScroll $anchorScroll()} in order to scroll to the element related to the
+          * current hash.
+          */
+         this.disableAutoScrolling = function() {
+           autoScrollingEnabled = false;
+         };
+
+         /**
+          * @ngdoc service
+          * @name $anchorScroll
+          * @kind function
+          * @requires $window
+          * @requires $location
+          * @requires $rootScope
+          *
+          * @description
+          * When called, it scrolls to the element related to the specified `hash` or (if omitted) to the
+          * current value of {@link ng.$location#hash $location.hash()}, according to the rules specified
+          * in the
+          * [HTML5 spec](http://www.w3.org/html/wg/drafts/html/master/browsers.html#the-indicated-part-of-the-document).
+          *
+          * It also watches the {@link ng.$location#hash $location.hash()} and automatically scrolls to
+          * match any anchor whenever it changes. This can be disabled by calling
+          * {@link ng.$anchorScrollProvider#disableAutoScrolling $anchorScrollProvider.disableAutoScrolling()}.
+          *
+          * Additionally, you can use its {@link ng.$anchorScroll#yOffset yOffset} property to specify a
+          * vertical scroll-offset (either fixed or dynamic).
+          *
+          * @param {string=} hash The hash specifying the element to scroll to. If omitted, the value of
+          *                       {@link ng.$location#hash $location.hash()} will be used.
+          *
+          * @property {(number|function|jqLite)} yOffset
+          * If set, specifies a vertical scroll-offset. This is often useful when there are fixed
+          * positioned elements at the top of the page, such as navbars, headers etc.
+          *
+          * `yOffset` can be specified in various ways:
+          * - **number**: A fixed number of pixels to be used as offset.<br /><br />
+          * - **function**: A getter function called everytime `$anchorScroll()` is executed. Must return
+          *   a number representing the offset (in pixels).<br /><br />
+          * - **jqLite**: A jqLite/jQuery element to be used for specifying the offset. The distance from
+          *   the top of the page to the element's bottom will be used as offset.<br />
+          *   **Note**: The element will be taken into account only as long as its `position` is set to
+          *   `fixed`. This option is useful, when dealing with responsive navbars/headers that adjust
+          *   their height and/or positioning according to the viewport's size.
+          *
+          * <br />
+          * <div class="alert alert-warning">
+          * In order for `yOffset` to work properly, scrolling should take place on the document's root and
+          * not some child element.
+          * </div>
+          *
+          * @example
+            <example module="anchorScrollExample">
+              <file name="index.html">
+                <div id="scrollArea" ng-controller="ScrollController">
+                  <a ng-click="gotoBottom()">Go to bottom</a>
+                  <a id="bottom"></a> You're at the bottom!
+                </div>
+              </file>
+              <file name="script.js">
+                angular.module('anchorScrollExample', [])
+                  .controller('ScrollController', ['$scope', '$location', '$anchorScroll',
+                    function ($scope, $location, $anchorScroll) {
+                      $scope.gotoBottom = function() {
+                        // set the location.hash to the id of
+                        // the element you wish to scroll to.
+                        $location.hash('bottom');
+
+                        // call $anchorScroll()
+                        $anchorScroll();
+                      };
+                    }]);
+              </file>
+              <file name="style.css">
+                #scrollArea {
+                  height: 280px;
+                  overflow: auto;
+                }
+
+                #bottom {
+                  display: block;
+                  margin-top: 2000px;
+                }
+              </file>
+            </example>
+          *
+          * <hr />
+          * The example below illustrates the use of a vertical scroll-offset (specified as a fixed value).
+          * See {@link ng.$anchorScroll#yOffset $anchorScroll.yOffset} for more details.
+          *
+          * @example
+            <example module="anchorScrollOffsetExample">
+              <file name="index.html">
+                <div class="fixed-header" ng-controller="headerCtrl">
+                  <a href="" ng-click="gotoAnchor(x)" ng-repeat="x in [1,2,3,4,5]">
+                    Go to anchor {{x}}
+                  </a>
+                </div>
+                <div id="anchor{{x}}" class="anchor" ng-repeat="x in [1,2,3,4,5]">
+                  Anchor {{x}} of 5
+                </div>
+              </file>
+              <file name="script.js">
+                angular.module('anchorScrollOffsetExample', [])
+                  .run(['$anchorScroll', function($anchorScroll) {
+                    $anchorScroll.yOffset = 50;   // always scroll by 50 extra pixels
+                  }])
+                  .controller('headerCtrl', ['$anchorScroll', '$location', '$scope',
+                    function ($anchorScroll, $location, $scope) {
+                      $scope.gotoAnchor = function(x) {
+                        var newHash = 'anchor' + x;
+                        if ($location.hash() !== newHash) {
+                          // set the $location.hash to `newHash` and
+                          // $anchorScroll will automatically scroll to it
+                          $location.hash('anchor' + x);
+                        } else {
+                          // call $anchorScroll() explicitly,
+                          // since $location.hash hasn't changed
+                          $anchorScroll();
+                        }
+                      };
+                    }
+                  ]);
+              </file>
+              <file name="style.css">
+                body {
+                  padding-top: 50px;
+                }
+
+                .anchor {
+                  border: 2px dashed DarkOrchid;
+                  padding: 10px 10px 200px 10px;
+                }
+
+                .fixed-header {
+                  background-color: rgba(0, 0, 0, 0.2);
+                  height: 50px;
+                  position: fixed;
+                  top: 0; left: 0; right: 0;
+                }
+
+                .fixed-header > a {
+                  display: inline-block;
+                  margin: 5px 15px;
+                }
+              </file>
+            </example>
+          */
+         this.$get = ['$window', '$location', '$rootScope', function($window, $location, $rootScope) {
+           var document = $window.document;
+
+           // Helper function to get first anchor from a NodeList
+           // (using `Array#some()` instead of `angular#forEach()` since it's more performant
+           //  and working in all supported browsers.)
+           function getFirstAnchor(list) {
+             var result = null;
+             Array.prototype.some.call(list, function(element) {
+               if (nodeName_(element) === 'a') {
+                 result = element;
+                 return true;
+               }
+             });
+             return result;
+           }
+
+           function getYOffset() {
+
+             var offset = scroll.yOffset;
+
+             if (isFunction(offset)) {
+               offset = offset();
+             } else if (isElement(offset)) {
+               var elem = offset[0];
+               var style = $window.getComputedStyle(elem);
+               if (style.position !== 'fixed') {
+                 offset = 0;
+               } else {
+                 offset = elem.getBoundingClientRect().bottom;
+               }
+             } else if (!isNumber(offset)) {
+               offset = 0;
+             }
+
+             return offset;
+           }
+
+           function scrollTo(elem) {
+             if (elem) {
+               elem.scrollIntoView();
+
+               var offset = getYOffset();
+
+               if (offset) {
+                 // `offset` is the number of pixels we should scroll UP in order to align `elem` properly.
+                 // This is true ONLY if the call to `elem.scrollIntoView()` initially aligns `elem` at the
+                 // top of the viewport.
+                 //
+                 // IF the number of pixels from the top of `elem` to the end of the page's content is less
+                 // than the height of the viewport, then `elem.scrollIntoView()` will align the `elem` some
+                 // way down the page.
+                 //
+                 // This is often the case for elements near the bottom of the page.
+                 //
+                 // In such cases we do not need to scroll the whole `offset` up, just the difference between
+                 // the top of the element and the offset, which is enough to align the top of `elem` at the
+                 // desired position.
+                 var elemTop = elem.getBoundingClientRect().top;
+                 $window.scrollBy(0, elemTop - offset);
+               }
+             } else {
+               $window.scrollTo(0, 0);
+             }
+           }
+
+           function scroll(hash) {
+             hash = isString(hash) ? hash : $location.hash();
+             var elm;
+
+             // empty hash, scroll to the top of the page
+             if (!hash) scrollTo(null);
+
+             // element with given id
+             else if ((elm = document.getElementById(hash))) scrollTo(elm);
+
+             // first anchor with given name :-D
+             else if ((elm = getFirstAnchor(document.getElementsByName(hash)))) scrollTo(elm);
+
+             // no element and hash == 'top', scroll to the top of the page
+             else if (hash === 'top') scrollTo(null);
+           }
+
+           // does not scroll when user clicks on anchor link that is currently on
+           // (no url change, no $location.hash() change), browser native does scroll
+           if (autoScrollingEnabled) {
+             $rootScope.$watch(function autoScrollWatch() {return $location.hash();},
+               function autoScrollWatchAction(newVal, oldVal) {
+                 // skip the initial scroll if $location.hash is empty
+                 if (newVal === oldVal && newVal === '') return;
+
+                 jqLiteDocumentLoaded(function() {
+                   $rootScope.$evalAsync(scroll);
+                 });
+               });
+           }
+
+           return scroll;
+         }];
+       }
+
+       var $animateMinErr = minErr('$animate');
+       var ELEMENT_NODE = 1;
+       var NG_ANIMATE_CLASSNAME = 'ng-animate';
+
+       function mergeClasses(a,b) {
+         if (!a && !b) return '';
+         if (!a) return b;
+         if (!b) return a;
+         if (isArray(a)) a = a.join(' ');
+         if (isArray(b)) b = b.join(' ');
+         return a + ' ' + b;
+       }
+
+       function extractElementNode(element) {
+         for (var i = 0; i < element.length; i++) {
+           var elm = element[i];
+           if (elm.nodeType === ELEMENT_NODE) {
+             return elm;
+           }
+         }
+       }
+
+       function splitClasses(classes) {
+         if (isString(classes)) {
+           classes = classes.split(' ');
+         }
+
+         // Use createMap() to prevent class assumptions involving property names in
+         // Object.prototype
+         var obj = createMap();
+         forEach(classes, function(klass) {
+           // sometimes the split leaves empty string values
+           // incase extra spaces were applied to the options
+           if (klass.length) {
+             obj[klass] = true;
+           }
+         });
+         return obj;
+       }
+
+       // if any other type of options value besides an Object value is
+       // passed into the $animate.method() animation then this helper code
+       // will be run which will ignore it. While this patch is not the
+       // greatest solution to this, a lot of existing plugins depend on
+       // $animate to either call the callback (< 1.2) or return a promise
+       // that can be changed. This helper function ensures that the options
+       // are wiped clean incase a callback function is provided.
+       function prepareAnimateOptions(options) {
+         return isObject(options)
+             ? options
+             : {};
+       }
+
+       var $$CoreAnimateRunnerProvider = function() {
+         this.$get = ['$q', '$$rAF', function($q, $$rAF) {
+           function AnimateRunner() {}
+           AnimateRunner.all = noop;
+           AnimateRunner.chain = noop;
+           AnimateRunner.prototype = {
+             end: noop,
+             cancel: noop,
+             resume: noop,
+             pause: noop,
+             complete: noop,
+             then: function(pass, fail) {
+               return $q(function(resolve) {
+                 $$rAF(function() {
+                   resolve();
+                 });
+               }).then(pass, fail);
+             }
+           };
+           return AnimateRunner;
+         }];
+       };
+
+       // this is prefixed with Core since it conflicts with
+       // the animateQueueProvider defined in ngAnimate/animateQueue.js
+       var $$CoreAnimateQueueProvider = function() {
+         var postDigestQueue = new HashMap();
+         var postDigestElements = [];
+
+         this.$get = ['$$AnimateRunner', '$rootScope',
+              function($$AnimateRunner,   $rootScope) {
+           return {
+             enabled: noop,
+             on: noop,
+             off: noop,
+             pin: noop,
+
+             push: function(element, event, options, domOperation) {
+               domOperation        && domOperation();
+
+               options = options || {};
+               options.from        && element.css(options.from);
+               options.to          && element.css(options.to);
+
+               if (options.addClass || options.removeClass) {
+                 addRemoveClassesPostDigest(element, options.addClass, options.removeClass);
+               }
+
+               return new $$AnimateRunner(); // jshint ignore:line
+             }
+           };
+
+
+           function updateData(data, classes, value) {
+             var changed = false;
+             if (classes) {
+               classes = isString(classes) ? classes.split(' ') :
+                         isArray(classes) ? classes : [];
+               forEach(classes, function(className) {
+                 if (className) {
+                   changed = true;
+                   data[className] = value;
+                 }
+               });
+             }
+             return changed;
+           }
+
+           function handleCSSClassChanges() {
+             forEach(postDigestElements, function(element) {
+               var data = postDigestQueue.get(element);
+               if (data) {
+                 var existing = splitClasses(element.attr('class'));
+                 var toAdd = '';
+                 var toRemove = '';
+                 forEach(data, function(status, className) {
+                   var hasClass = !!existing[className];
+                   if (status !== hasClass) {
+                     if (status) {
+                       toAdd += (toAdd.length ? ' ' : '') + className;
+                     } else {
+                       toRemove += (toRemove.length ? ' ' : '') + className;
+                     }
+                   }
+                 });
+
+                 forEach(element, function(elm) {
+                   toAdd    && jqLiteAddClass(elm, toAdd);
+                   toRemove && jqLiteRemoveClass(elm, toRemove);
+                 });
+                 postDigestQueue.remove(element);
+               }
+             });
+             postDigestElements.length = 0;
+           }
+
+
+           function addRemoveClassesPostDigest(element, add, remove) {
+             var data = postDigestQueue.get(element) || {};
+
+             var classesAdded = updateData(data, add, true);
+             var classesRemoved = updateData(data, remove, false);
+
+             if (classesAdded || classesRemoved) {
+
+               postDigestQueue.put(element, data);
+               postDigestElements.push(element);
+
+               if (postDigestElements.length === 1) {
+                 $rootScope.$$postDigest(handleCSSClassChanges);
+               }
+             }
+           }
+         }];
+       };
+
+       /**
+        * @ngdoc provider
+        * @name $animateProvider
+        *
+        * @description
+        * Default implementation of $animate that doesn't perform any animations, instead just
+        * synchronously performs DOM updates and resolves the returned runner promise.
+        *
+        * In order to enable animations the `ngAnimate` module has to be loaded.
+        *
+        * To see the functional implementation check out `src/ngAnimate/animate.js`.
+        */
+       var $AnimateProvider = ['$provide', function($provide) {
+         var provider = this;
+
+         this.$$registeredAnimations = Object.create(null);
+
+          /**
+          * @ngdoc method
+          * @name $animateProvider#register
+          *
+          * @description
+          * Registers a new injectable animation factory function. The factory function produces the
+          * animation object which contains callback functions for each event that is expected to be
+          * animated.
+          *
+          *   * `eventFn`: `function(element, ... , doneFunction, options)`
+          *   The element to animate, the `doneFunction` and the options fed into the animation. Depending
+          *   on the type of animation additional arguments will be injected into the animation function. The
+          *   list below explains the function signatures for the different animation methods:
+          *
+          *   - setClass: function(element, addedClasses, removedClasses, doneFunction, options)
+          *   - addClass: function(element, addedClasses, doneFunction, options)
+          *   - removeClass: function(element, removedClasses, doneFunction, options)
+          *   - enter, leave, move: function(element, doneFunction, options)
+          *   - animate: function(element, fromStyles, toStyles, doneFunction, options)
+          *
+          *   Make sure to trigger the `doneFunction` once the animation is fully complete.
+          *
+          * ```js
+          *   return {
+          *     //enter, leave, move signature
+          *     eventFn : function(element, done, options) {
+          *       //code to run the animation
+          *       //once complete, then run done()
+          *       return function endFunction(wasCancelled) {
+          *         //code to cancel the animation
+          *       }
+          *     }
+          *   }
+          * ```
+          *
+          * @param {string} name The name of the animation (this is what the class-based CSS value will be compared to).
+          * @param {Function} factory The factory function that will be executed to return the animation
+          *                           object.
+          */
+         this.register = function(name, factory) {
+           if (name && name.charAt(0) !== '.') {
+             throw $animateMinErr('notcsel', "Expecting class selector starting with '.' got '{0}'.", name);
+           }
+
+           var key = name + '-animation';
+           provider.$$registeredAnimations[name.substr(1)] = key;
+           $provide.factory(key, factory);
+         };
+
+         /**
+          * @ngdoc method
+          * @name $animateProvider#classNameFilter
+          *
+          * @description
+          * Sets and/or returns the CSS class regular expression that is checked when performing
+          * an animation. Upon bootstrap the classNameFilter value is not set at all and will
+          * therefore enable $animate to attempt to perform an animation on any element that is triggered.
+          * When setting the `classNameFilter` value, animations will only be performed on elements
+          * that successfully match the filter expression. This in turn can boost performance
+          * for low-powered devices as well as applications containing a lot of structural operations.
+          * @param {RegExp=} expression The className expression which will be checked against all animations
+          * @return {RegExp} The current CSS className expression value. If null then there is no expression value
+          */
+         this.classNameFilter = function(expression) {
+           if (arguments.length === 1) {
+             this.$$classNameFilter = (expression instanceof RegExp) ? expression : null;
+             if (this.$$classNameFilter) {
+               var reservedRegex = new RegExp("(\\s+|\\/)" + NG_ANIMATE_CLASSNAME + "(\\s+|\\/)");
+               if (reservedRegex.test(this.$$classNameFilter.toString())) {
+                 throw $animateMinErr('nongcls','$animateProvider.classNameFilter(regex) prohibits accepting a regex value which matches/contains the "{0}" CSS class.', NG_ANIMATE_CLASSNAME);
+
+               }
+             }
+           }
+           return this.$$classNameFilter;
+         };
+
+         this.$get = ['$$animateQueue', function($$animateQueue) {
+           function domInsert(element, parentElement, afterElement) {
+             // if for some reason the previous element was removed
+             // from the dom sometime before this code runs then let's
+             // just stick to using the parent element as the anchor
+             if (afterElement) {
+               var afterNode = extractElementNode(afterElement);
+               if (afterNode && !afterNode.parentNode && !afterNode.previousElementSibling) {
+                 afterElement = null;
+               }
+             }
+             afterElement ? afterElement.after(element) : parentElement.prepend(element);
+           }
+
+           /**
+            * @ngdoc service
+            * @name $animate
+            * @description The $animate service exposes a series of DOM utility methods that provide support
+            * for animation hooks. The default behavior is the application of DOM operations, however,
+            * when an animation is detected (and animations are enabled), $animate will do the heavy lifting
+            * to ensure that animation runs with the triggered DOM operation.
+            *
+            * By default $animate doesn't trigger any animations. This is because the `ngAnimate` module isn't
+            * included and only when it is active then the animation hooks that `$animate` triggers will be
+            * functional. Once active then all structural `ng-` directives will trigger animations as they perform
+            * their DOM-related operations (enter, leave and move). Other directives such as `ngClass`,
+            * `ngShow`, `ngHide` and `ngMessages` also provide support for animations.
+            *
+            * It is recommended that the`$animate` service is always used when executing DOM-related procedures within directives.
+            *
+            * To learn more about enabling animation support, click here to visit the
+            * {@link ngAnimate ngAnimate module page}.
+            */
+           return {
+             // we don't call it directly since non-existant arguments may
+             // be interpreted as null within the sub enabled function
+
+             /**
+              *
+              * @ngdoc method
+              * @name $animate#on
+              * @kind function
+              * @description Sets up an event listener to fire whenever the animation event (enter, leave, move, etc...)
+              *    has fired on the given element or among any of its children. Once the listener is fired, the provided callback
+              *    is fired with the following params:
+              *
+              * ```js
+              * $animate.on('enter', container,
+              *    function callback(element, phase) {
+              *      // cool we detected an enter animation within the container
+              *    }
+              * );
+              * ```
+              *
+              * @param {string} event the animation event that will be captured (e.g. enter, leave, move, addClass, removeClass, etc...)
+              * @param {DOMElement} container the container element that will capture each of the animation events that are fired on itself
+              *     as well as among its children
+              * @param {Function} callback the callback function that will be fired when the listener is triggered
+              *
+              * The arguments present in the callback function are:
+              * * `element` - The captured DOM element that the animation was fired on.
+              * * `phase` - The phase of the animation. The two possible phases are **start** (when the animation starts) and **close** (when it ends).
+              */
+             on: $$animateQueue.on,
+
+             /**
+              *
+              * @ngdoc method
+              * @name $animate#off
+              * @kind function
+              * @description Deregisters an event listener based on the event which has been associated with the provided element. This method
+              * can be used in three different ways depending on the arguments:
+              *
+              * ```js
+              * // remove all the animation event listeners listening for `enter`
+              * $animate.off('enter');
+              *
+              * // remove all the animation event listeners listening for `enter` on the given element and its children
+              * $animate.off('enter', container);
+              *
+              * // remove the event listener function provided by `listenerFn` that is set
+              * // to listen for `enter` on the given `element` as well as its children
+              * $animate.off('enter', container, callback);
+              * ```
+              *
+              * @param {string} event the animation event (e.g. enter, leave, move, addClass, removeClass, etc...)
+              * @param {DOMElement=} container the container element the event listener was placed on
+              * @param {Function=} callback the callback function that was registered as the listener
+              */
+             off: $$animateQueue.off,
+
+             /**
+              * @ngdoc method
+              * @name $animate#pin
+              * @kind function
+              * @description Associates the provided element with a host parent element to allow the element to be animated even if it exists
+              *    outside of the DOM structure of the Angular application. By doing so, any animation triggered via `$animate` can be issued on the
+              *    element despite being outside the realm of the application or within another application. Say for example if the application
+              *    was bootstrapped on an element that is somewhere inside of the `<body>` tag, but we wanted to allow for an element to be situated
+              *    as a direct child of `document.body`, then this can be achieved by pinning the element via `$animate.pin(element)`. Keep in mind
+              *    that calling `$animate.pin(element, parentElement)` will not actually insert into the DOM anywhere; it will just create the association.
+              *
+              *    Note that this feature is only active when the `ngAnimate` module is used.
+              *
+              * @param {DOMElement} element the external element that will be pinned
+              * @param {DOMElement} parentElement the host parent element that will be associated with the external element
+              */
+             pin: $$animateQueue.pin,
+
+             /**
+              *
+              * @ngdoc method
+              * @name $animate#enabled
+              * @kind function
+              * @description Used to get and set whether animations are enabled or not on the entire application or on an element and its children. This
+              * function can be called in four ways:
+              *
+              * ```js
+              * // returns true or false
+              * $animate.enabled();
+              *
+              * // changes the enabled state for all animations
+              * $animate.enabled(false);
+              * $animate.enabled(true);
+              *
+              * // returns true or false if animations are enabled for an element
+              * $animate.enabled(element);
+              *
+              * // changes the enabled state for an element and its children
+              * $animate.enabled(element, true);
+              * $animate.enabled(element, false);
+              * ```
+              *
+              * @param {DOMElement=} element the element that will be considered for checking/setting the enabled state
+              * @param {boolean=} enabled whether or not the animations will be enabled for the element
+              *
+              * @return {boolean} whether or not animations are enabled
+              */
+             enabled: $$animateQueue.enabled,
+
+             /**
+              * @ngdoc method
+              * @name $animate#cancel
+              * @kind function
+              * @description Cancels the provided animation.
+              *
+              * @param {Promise} animationPromise The animation promise that is returned when an animation is started.
+              */
+             cancel: function(runner) {
+               runner.end && runner.end();
+             },
+
+             /**
+              *
+              * @ngdoc method
+              * @name $animate#enter
+              * @kind function
+              * @description Inserts the element into the DOM either after the `after` element (if provided) or
+              *   as the first child within the `parent` element and then triggers an animation.
+              *   A promise is returned that will be resolved during the next digest once the animation
+              *   has completed.
+              *
+              * @param {DOMElement} element the element which will be inserted into the DOM
+              * @param {DOMElement} parent the parent element which will append the element as
+              *   a child (so long as the after element is not present)
+              * @param {DOMElement=} after the sibling element after which the element will be appended
+              * @param {object=} options an optional collection of options/styles that will be applied to the element
+              *
+              * @return {Promise} the animation callback promise
+              */
+             enter: function(element, parent, after, options) {
+               parent = parent && jqLite(parent);
+               after = after && jqLite(after);
+               parent = parent || after.parent();
+               domInsert(element, parent, after);
+               return $$animateQueue.push(element, 'enter', prepareAnimateOptions(options));
+             },
+
+             /**
+              *
+              * @ngdoc method
+              * @name $animate#move
+              * @kind function
+              * @description Inserts (moves) the element into its new position in the DOM either after
+              *   the `after` element (if provided) or as the first child within the `parent` element
+              *   and then triggers an animation. A promise is returned that will be resolved
+              *   during the next digest once the animation has completed.
+              *
+              * @param {DOMElement} element the element which will be moved into the new DOM position
+              * @param {DOMElement} parent the parent element which will append the element as
+              *   a child (so long as the after element is not present)
+              * @param {DOMElement=} after the sibling element after which the element will be appended
+              * @param {object=} options an optional collection of options/styles that will be applied to the element
+              *
+              * @return {Promise} the animation callback promise
+              */
+             move: function(element, parent, after, options) {
+               parent = parent && jqLite(parent);
+               after = after && jqLite(after);
+               parent = parent || after.parent();
+               domInsert(element, parent, after);
+               return $$animateQueue.push(element, 'move', prepareAnimateOptions(options));
+             },
+
+             /**
+              * @ngdoc method
+              * @name $animate#leave
+              * @kind function
+              * @description Triggers an animation and then removes the element from the DOM.
+              * When the function is called a promise is returned that will be resolved during the next
+              * digest once the animation has completed.
+              *
+              * @param {DOMElement} element the element which will be removed from the DOM
+              * @param {object=} options an optional collection of options/styles that will be applied to the element
+              *
+              * @return {Promise} the animation callback promise
+              */
+             leave: function(element, options) {
+               return $$animateQueue.push(element, 'leave', prepareAnimateOptions(options), function() {
+                 element.remove();
+               });
+             },
+
+             /**
+              * @ngdoc method
+              * @name $animate#addClass
+              * @kind function
+              *
+              * @description Triggers an addClass animation surrounding the addition of the provided CSS class(es). Upon
+              *   execution, the addClass operation will only be handled after the next digest and it will not trigger an
+              *   animation if element already contains the CSS class or if the class is removed at a later step.
+              *   Note that class-based animations are treated differently compared to structural animations
+              *   (like enter, move and leave) since the CSS classes may be added/removed at different points
+              *   depending if CSS or JavaScript animations are used.
+              *
+              * @param {DOMElement} element the element which the CSS classes will be applied to
+              * @param {string} className the CSS class(es) that will be added (multiple classes are separated via spaces)
+              * @param {object=} options an optional collection of options/styles that will be applied to the element
+              *
+              * @return {Promise} the animation callback promise
+              */
+             addClass: function(element, className, options) {
+               options = prepareAnimateOptions(options);
+               options.addClass = mergeClasses(options.addclass, className);
+               return $$animateQueue.push(element, 'addClass', options);
+             },
+
+             /**
+              * @ngdoc method
+              * @name $animate#removeClass
+              * @kind function
+              *
+              * @description Triggers a removeClass animation surrounding the removal of the provided CSS class(es). Upon
+              *   execution, the removeClass operation will only be handled after the next digest and it will not trigger an
+              *   animation if element does not contain the CSS class or if the class is added at a later step.
+              *   Note that class-based animations are treated differently compared to structural animations
+              *   (like enter, move and leave) since the CSS classes may be added/removed at different points
+              *   depending if CSS or JavaScript animations are used.
+              *
+              * @param {DOMElement} element the element which the CSS classes will be applied to
+              * @param {string} className the CSS class(es) that will be removed (multiple classes are separated via spaces)
+              * @param {object=} options an optional collection of options/styles that will be applied to the element
+              *
+              * @return {Promise} the animation callback promise
+              */
+             removeClass: function(element, className, options) {
+               options = prepareAnimateOptions(options);
+               options.removeClass = mergeClasses(options.removeClass, className);
+               return $$animateQueue.push(element, 'removeClass', options);
+             },
+
+             /**
+              * @ngdoc method
+              * @name $animate#setClass
+              * @kind function
+              *
+              * @description Performs both the addition and removal of a CSS classes on an element and (during the process)
+              *    triggers an animation surrounding the class addition/removal. Much like `$animate.addClass` and
+              *    `$animate.removeClass`, `setClass` will only evaluate the classes being added/removed once a digest has
+              *    passed. Note that class-based animations are treated differently compared to structural animations
+              *    (like enter, move and leave) since the CSS classes may be added/removed at different points
+              *    depending if CSS or JavaScript animations are used.
+              *
+              * @param {DOMElement} element the element which the CSS classes will be applied to
+              * @param {string} add the CSS class(es) that will be added (multiple classes are separated via spaces)
+              * @param {string} remove the CSS class(es) that will be removed (multiple classes are separated via spaces)
+              * @param {object=} options an optional collection of options/styles that will be applied to the element
+              *
+              * @return {Promise} the animation callback promise
+              */
+             setClass: function(element, add, remove, options) {
+               options = prepareAnimateOptions(options);
+               options.addClass = mergeClasses(options.addClass, add);
+               options.removeClass = mergeClasses(options.removeClass, remove);
+               return $$animateQueue.push(element, 'setClass', options);
+             },
+
+             /**
+              * @ngdoc method
+              * @name $animate#animate
+              * @kind function
+              *
+              * @description Performs an inline animation on the element which applies the provided to and from CSS styles to the element.
+              * If any detected CSS transition, keyframe or JavaScript matches the provided className value then the animation will take
+              * on the provided styles. For example, if a transition animation is set for the given className then the provided from and
+              * to styles will be applied alongside the given transition. If a JavaScript animation is detected then the provided styles
+              * will be given in as function paramters into the `animate` method (or as apart of the `options` parameter).
+              *
+              * @param {DOMElement} element the element which the CSS styles will be applied to
+              * @param {object} from the from (starting) CSS styles that will be applied to the element and across the animation.
+              * @param {object} to the to (destination) CSS styles that will be applied to the element and across the animation.
+              * @param {string=} className an optional CSS class that will be applied to the element for the duration of the animation. If
+              *    this value is left as empty then a CSS class of `ng-inline-animate` will be applied to the element.
+              *    (Note that if no animation is detected then this value will not be appplied to the element.)
+              * @param {object=} options an optional collection of options/styles that will be applied to the element
+              *
+              * @return {Promise} the animation callback promise
+              */
+             animate: function(element, from, to, className, options) {
+               options = prepareAnimateOptions(options);
+               options.from = options.from ? extend(options.from, from) : from;
+               options.to   = options.to   ? extend(options.to, to)     : to;
+
+               className = className || 'ng-inline-animate';
+               options.tempClasses = mergeClasses(options.tempClasses, className);
+               return $$animateQueue.push(element, 'animate', options);
+             }
+           };
+         }];
+       }];
+
+       /**
+        * @ngdoc service
+        * @name $animateCss
+        * @kind object
+        *
+        * @description
+        * This is the core version of `$animateCss`. By default, only when the `ngAnimate` is included,
+        * then the `$animateCss` service will actually perform animations.
+        *
+        * Click here {@link ngAnimate.$animateCss to read the documentation for $animateCss}.
+        */
+       var $CoreAnimateCssProvider = function() {
+         this.$get = ['$$rAF', '$q', function($$rAF, $q) {
+
+           var RAFPromise = function() {};
+           RAFPromise.prototype = {
+             done: function(cancel) {
+               this.defer && this.defer[cancel === true ? 'reject' : 'resolve']();
+             },
+             end: function() {
+               this.done();
+             },
+             cancel: function() {
+               this.done(true);
+             },
+             getPromise: function() {
+               if (!this.defer) {
+                 this.defer = $q.defer();
+               }
+               return this.defer.promise;
+             },
+             then: function(f1,f2) {
+               return this.getPromise().then(f1,f2);
+             },
+             'catch': function(f1) {
+               return this.getPromise()['catch'](f1);
+             },
+             'finally': function(f1) {
+               return this.getPromise()['finally'](f1);
+             }
+           };
+
+           return function(element, options) {
+             // there is no point in applying the styles since
+             // there is no animation that goes on at all in
+             // this version of $animateCss.
+             if (options.cleanupStyles) {
+               options.from = options.to = null;
+             }
+
+             if (options.from) {
+               element.css(options.from);
+               options.from = null;
+             }
+
+             var closed, runner = new RAFPromise();
+             return {
+               start: run,
+               end: run
+             };
+
+             function run() {
+               $$rAF(function() {
+                 close();
+                 if (!closed) {
+                   runner.done();
+                 }
+                 closed = true;
+               });
+               return runner;
+             }
+
+             function close() {
+               if (options.addClass) {
+                 element.addClass(options.addClass);
+                 options.addClass = null;
+               }
+               if (options.removeClass) {
+                 element.removeClass(options.removeClass);
+                 options.removeClass = null;
+               }
+               if (options.to) {
+                 element.css(options.to);
+                 options.to = null;
+               }
+             }
+           };
+         }];
+       };
+
+       /* global stripHash: true */
+
+       /**
+        * ! This is a private undocumented service !
+        *
+        * @name $browser
+        * @requires $log
+        * @description
+        * This object has two goals:
+        *
+        * - hide all the global state in the browser caused by the window object
+        * - abstract away all the browser specific features and inconsistencies
+        *
+        * For tests we provide {@link ngMock.$browser mock implementation} of the `$browser`
+        * service, which can be used for convenient testing of the application without the interaction with
+        * the real browser apis.
+        */
+       /**
+        * @param {object} window The global window object.
+        * @param {object} document jQuery wrapped document.
+        * @param {object} $log window.console or an object with the same interface.
+        * @param {object} $sniffer $sniffer service
+        */
+       function Browser(window, document, $log, $sniffer) {
+         var self = this,
+             rawDocument = document[0],
+             location = window.location,
+             history = window.history,
+             setTimeout = window.setTimeout,
+             clearTimeout = window.clearTimeout,
+             pendingDeferIds = {};
+
+         self.isMock = false;
+
+         var outstandingRequestCount = 0;
+         var outstandingRequestCallbacks = [];
+
+         // TODO(vojta): remove this temporary api
+         self.$$completeOutstandingRequest = completeOutstandingRequest;
+         self.$$incOutstandingRequestCount = function() { outstandingRequestCount++; };
+
+         /**
+          * Executes the `fn` function(supports currying) and decrements the `outstandingRequestCallbacks`
+          * counter. If the counter reaches 0, all the `outstandingRequestCallbacks` are executed.
+          */
+         function completeOutstandingRequest(fn) {
+           try {
+             fn.apply(null, sliceArgs(arguments, 1));
+           } finally {
+             outstandingRequestCount--;
+             if (outstandingRequestCount === 0) {
+               while (outstandingRequestCallbacks.length) {
+                 try {
+                   outstandingRequestCallbacks.pop()();
+                 } catch (e) {
+                   $log.error(e);
+                 }
+               }
+             }
+           }
+         }
+
+         function getHash(url) {
+           var index = url.indexOf('#');
+           return index === -1 ? '' : url.substr(index);
+         }
+
+         /**
+          * @private
+          * Note: this method is used only by scenario runner
+          * TODO(vojta): prefix this method with $$ ?
+          * @param {function()} callback Function that will be called when no outstanding request
+          */
+         self.notifyWhenNoOutstandingRequests = function(callback) {
+           if (outstandingRequestCount === 0) {
+             callback();
+           } else {
+             outstandingRequestCallbacks.push(callback);
+           }
+         };
+
+         //////////////////////////////////////////////////////////////
+         // URL API
+         //////////////////////////////////////////////////////////////
+
+         var cachedState, lastHistoryState,
+             lastBrowserUrl = location.href,
+             baseElement = document.find('base'),
+             pendingLocation = null;
+
+         cacheState();
+         lastHistoryState = cachedState;
+
+         /**
+          * @name $browser#url
+          *
+          * @description
+          * GETTER:
+          * Without any argument, this method just returns current value of location.href.
+          *
+          * SETTER:
+          * With at least one argument, this method sets url to new value.
+          * If html5 history api supported, pushState/replaceState is used, otherwise
+          * location.href/location.replace is used.
+          * Returns its own instance to allow chaining
+          *
+          * NOTE: this api is intended for use only by the $location service. Please use the
+          * {@link ng.$location $location service} to change url.
+          *
+          * @param {string} url New url (when used as setter)
+          * @param {boolean=} replace Should new url replace current history record?
+          * @param {object=} state object to use with pushState/replaceState
+          */
+         self.url = function(url, replace, state) {
+           // In modern browsers `history.state` is `null` by default; treating it separately
+           // from `undefined` would cause `$browser.url('/foo')` to change `history.state`
+           // to undefined via `pushState`. Instead, let's change `undefined` to `null` here.
+           if (isUndefined(state)) {
+             state = null;
+           }
+
+           // Android Browser BFCache causes location, history reference to become stale.
+           if (location !== window.location) location = window.location;
+           if (history !== window.history) history = window.history;
+
+           // setter
+           if (url) {
+             var sameState = lastHistoryState === state;
+
+             // Don't change anything if previous and current URLs and states match. This also prevents
+             // IE<10 from getting into redirect loop when in LocationHashbangInHtml5Url mode.
+             // See https://github.com/angular/angular.js/commit/ffb2701
+             if (lastBrowserUrl === url && (!$sniffer.history || sameState)) {
+               return self;
+             }
+             var sameBase = lastBrowserUrl && stripHash(lastBrowserUrl) === stripHash(url);
+             lastBrowserUrl = url;
+             lastHistoryState = state;
+             // Don't use history API if only the hash changed
+             // due to a bug in IE10/IE11 which leads
+             // to not firing a `hashchange` nor `popstate` event
+             // in some cases (see #9143).
+             if ($sniffer.history && (!sameBase || !sameState)) {
+               history[replace ? 'replaceState' : 'pushState'](state, '', url);
+               cacheState();
+               // Do the assignment again so that those two variables are referentially identical.
+               lastHistoryState = cachedState;
+             } else {
+               if (!sameBase || pendingLocation) {
+                 pendingLocation = url;
+               }
+               if (replace) {
+                 location.replace(url);
+               } else if (!sameBase) {
+                 location.href = url;
+               } else {
+                 location.hash = getHash(url);
+               }
+               if (location.href !== url) {
+                 pendingLocation = url;
+               }
+             }
+             return self;
+           // getter
+           } else {
+             // - pendingLocation is needed as browsers don't allow to read out
+             //   the new location.href if a reload happened or if there is a bug like in iOS 9 (see
+             //   https://openradar.appspot.com/22186109).
+             // - the replacement is a workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=407172
+             return pendingLocation || location.href.replace(/%27/g,"'");
+           }
+         };
+
+         /**
+          * @name $browser#state
+          *
+          * @description
+          * This method is a getter.
+          *
+          * Return history.state or null if history.state is undefined.
+          *
+          * @returns {object} state
+          */
+         self.state = function() {
+           return cachedState;
+         };
+
+         var urlChangeListeners = [],
+             urlChangeInit = false;
+
+         function cacheStateAndFireUrlChange() {
+           pendingLocation = null;
+           cacheState();
+           fireUrlChange();
+         }
+
+         function getCurrentState() {
+           try {
+             return history.state;
+           } catch (e) {
+             // MSIE can reportedly throw when there is no state (UNCONFIRMED).
+           }
+         }
+
+         // This variable should be used *only* inside the cacheState function.
+         var lastCachedState = null;
+         function cacheState() {
+           // This should be the only place in $browser where `history.state` is read.
+           cachedState = getCurrentState();
+           cachedState = isUndefined(cachedState) ? null : cachedState;
+
+           // Prevent callbacks fo fire twice if both hashchange & popstate were fired.
+           if (equals(cachedState, lastCachedState)) {
+             cachedState = lastCachedState;
+           }
+           lastCachedState = cachedState;
+         }
+
+         function fireUrlChange() {
+           if (lastBrowserUrl === self.url() && lastHistoryState === cachedState) {
+             return;
+           }
+
+           lastBrowserUrl = self.url();
+           lastHistoryState = cachedState;
+           forEach(urlChangeListeners, function(listener) {
+             listener(self.url(), cachedState);
+           });
+         }
+
+         /**
+          * @name $browser#onUrlChange
+          *
+          * @description
+          * Register callback function that will be called, when url changes.
+          *
+          * It's only called when the url is changed from outside of angular:
+          * - user types different url into address bar
+          * - user clicks on history (forward/back) button
+          * - user clicks on a link
+          *
+          * It's not called when url is changed by $browser.url() method
+          *
+          * The listener gets called with new url as parameter.
+          *
+          * NOTE: this api is intended for use only by the $location service. Please use the
+          * {@link ng.$location $location service} to monitor url changes in angular apps.
+          *
+          * @param {function(string)} listener Listener function to be called when url changes.
+          * @return {function(string)} Returns the registered listener fn - handy if the fn is anonymous.
+          */
+         self.onUrlChange = function(callback) {
+           // TODO(vojta): refactor to use node's syntax for events
+           if (!urlChangeInit) {
+             // We listen on both (hashchange/popstate) when available, as some browsers (e.g. Opera)
+             // don't fire popstate when user change the address bar and don't fire hashchange when url
+             // changed by push/replaceState
+
+             // html5 history api - popstate event
+             if ($sniffer.history) jqLite(window).on('popstate', cacheStateAndFireUrlChange);
+             // hashchange event
+             jqLite(window).on('hashchange', cacheStateAndFireUrlChange);
+
+             urlChangeInit = true;
+           }
+
+           urlChangeListeners.push(callback);
+           return callback;
+         };
+
+         /**
+          * @private
+          * Remove popstate and hashchange handler from window.
+          *
+          * NOTE: this api is intended for use only by $rootScope.
+          */
+         self.$$applicationDestroyed = function() {
+           jqLite(window).off('hashchange popstate', cacheStateAndFireUrlChange);
+         };
+
+         /**
+          * Checks whether the url has changed outside of Angular.
+          * Needs to be exported to be able to check for changes that have been done in sync,
+          * as hashchange/popstate events fire in async.
+          */
+         self.$$checkUrlChange = fireUrlChange;
+
+         //////////////////////////////////////////////////////////////
+         // Misc API
+         //////////////////////////////////////////////////////////////
+
+         /**
+          * @name $browser#baseHref
+          *
+          * @description
+          * Returns current <base href>
+          * (always relative - without domain)
+          *
+          * @returns {string} The current base href
+          */
+         self.baseHref = function() {
+           var href = baseElement.attr('href');
+           return href ? href.replace(/^(https?\:)?\/\/[^\/]*/, '') : '';
+         };
+
+         /**
+          * @name $browser#defer
+          * @param {function()} fn A function, who's execution should be deferred.
+          * @param {number=} [delay=0] of milliseconds to defer the function execution.
+          * @returns {*} DeferId that can be used to cancel the task via `$browser.defer.cancel()`.
+          *
+          * @description
+          * Executes a fn asynchronously via `setTimeout(fn, delay)`.
+          *
+          * Unlike when calling `setTimeout` directly, in test this function is mocked and instead of using
+          * `setTimeout` in tests, the fns are queued in an array, which can be programmatically flushed
+          * via `$browser.defer.flush()`.
+          *
+          */
+         self.defer = function(fn, delay) {
+           var timeoutId;
+           outstandingRequestCount++;
+           timeoutId = setTimeout(function() {
+             delete pendingDeferIds[timeoutId];
+             completeOutstandingRequest(fn);
+           }, delay || 0);
+           pendingDeferIds[timeoutId] = true;
+           return timeoutId;
+         };
+
+
+         /**
+          * @name $browser#defer.cancel
+          *
+          * @description
+          * Cancels a deferred task identified with `deferId`.
+          *
+          * @param {*} deferId Token returned by the `$browser.defer` function.
+          * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfully
+          *                    canceled.
+          */
+         self.defer.cancel = function(deferId) {
+           if (pendingDeferIds[deferId]) {
+             delete pendingDeferIds[deferId];
+             clearTimeout(deferId);
+             completeOutstandingRequest(noop);
+             return true;
+           }
+           return false;
+         };
+
+       }
+
+       function $BrowserProvider() {
+         this.$get = ['$window', '$log', '$sniffer', '$document',
+             function($window, $log, $sniffer, $document) {
+               return new Browser($window, $document, $log, $sniffer);
+             }];
+       }
+
+       /**
+        * @ngdoc service
+        * @name $cacheFactory
+        *
+        * @description
+        * Factory that constructs {@link $cacheFactory.Cache Cache} objects and gives access to
+        * them.
+        *
+        * ```js
+        *
+        *  var cache = $cacheFactory('cacheId');
+        *  expect($cacheFactory.get('cacheId')).toBe(cache);
+        *  expect($cacheFactory.get('noSuchCacheId')).not.toBeDefined();
+        *
+        *  cache.put("key", "value");
+        *  cache.put("another key", "another value");
+        *
+        *  // We've specified no options on creation
+        *  expect(cache.info()).toEqual({id: 'cacheId', size: 2});
+        *
+        * ```
+        *
+        *
+        * @param {string} cacheId Name or id of the newly created cache.
+        * @param {object=} options Options object that specifies the cache behavior. Properties:
+        *
+        *   - `{number=}` `capacity` — turns the cache into LRU cache.
+        *
+        * @returns {object} Newly created cache object with the following set of methods:
+        *
+        * - `{object}` `info()` — Returns id, size, and options of cache.
+        * - `{{*}}` `put({string} key, {*} value)` — Puts a new key-value pair into the cache and returns
+        *   it.
+        * - `{{*}}` `get({string} key)` — Returns cached value for `key` or undefined for cache miss.
+        * - `{void}` `remove({string} key)` — Removes a key-value pair from the cache.
+        * - `{void}` `removeAll()` — Removes all cached values.
+        * - `{void}` `destroy()` — Removes references to this cache from $cacheFactory.
+        *
+        * @example
+          <example module="cacheExampleApp">
+            <file name="index.html">
+              <div ng-controller="CacheController">
+                <input ng-model="newCacheKey" placeholder="Key">
+                <input ng-model="newCacheValue" placeholder="Value">
+                <button ng-click="put(newCacheKey, newCacheValue)">Cache</button>
+
+                <p ng-if="keys.length">Cached Values</p>
+                <div ng-repeat="key in keys">
+                  <span ng-bind="key"></span>
+                  <span>: </span>
+                  <b ng-bind="cache.get(key)"></b>
+                </div>
+
+                <p>Cache Info</p>
+                <div ng-repeat="(key, value) in cache.info()">
+                  <span ng-bind="key"></span>
+                  <span>: </span>
+                  <b ng-bind="value"></b>
+                </div>
+              </div>
+            </file>
+            <file name="script.js">
+              angular.module('cacheExampleApp', []).
+                controller('CacheController', ['$scope', '$cacheFactory', function($scope, $cacheFactory) {
+                  $scope.keys = [];
+                  $scope.cache = $cacheFactory('cacheId');
+                  $scope.put = function(key, value) {
+                    if (angular.isUndefined($scope.cache.get(key))) {
+                      $scope.keys.push(key);
+                    }
+                    $scope.cache.put(key, angular.isUndefined(value) ? null : value);
+                  };
+                }]);
+            </file>
+            <file name="style.css">
+              p {
+                margin: 10px 0 3px;
+              }
+            </file>
+          </example>
+        */
+       function $CacheFactoryProvider() {
+
+         this.$get = function() {
+           var caches = {};
+
+           function cacheFactory(cacheId, options) {
+             if (cacheId in caches) {
+               throw minErr('$cacheFactory')('iid', "CacheId '{0}' is already taken!", cacheId);
+             }
+
+             var size = 0,
+                 stats = extend({}, options, {id: cacheId}),
+                 data = createMap(),
+                 capacity = (options && options.capacity) || Number.MAX_VALUE,
+                 lruHash = createMap(),
+                 freshEnd = null,
+                 staleEnd = null;
+
+             /**
+              * @ngdoc type
+              * @name $cacheFactory.Cache
+              *
+              * @description
+              * A cache object used to store and retrieve data, primarily used by
+              * {@link $http $http} and the {@link ng.directive:script script} directive to cache
+              * templates and other data.
+              *
+              * ```js
+              *  angular.module('superCache')
+              *    .factory('superCache', ['$cacheFactory', function($cacheFactory) {
+              *      return $cacheFactory('super-cache');
+              *    }]);
+              * ```
+              *
+              * Example test:
+              *
+              * ```js
+              *  it('should behave like a cache', inject(function(superCache) {
+              *    superCache.put('key', 'value');
+              *    superCache.put('another key', 'another value');
+              *
+              *    expect(superCache.info()).toEqual({
+              *      id: 'super-cache',
+              *      size: 2
+              *    });
+              *
+              *    superCache.remove('another key');
+              *    expect(superCache.get('another key')).toBeUndefined();
+              *
+              *    superCache.removeAll();
+              *    expect(superCache.info()).toEqual({
+              *      id: 'super-cache',
+              *      size: 0
+              *    });
+              *  }));
+              * ```
+              */
+             return caches[cacheId] = {
+
+               /**
+                * @ngdoc method
+                * @name $cacheFactory.Cache#put
+                * @kind function
+                *
+                * @description
+                * Inserts a named entry into the {@link $cacheFactory.Cache Cache} object to be
+                * retrieved later, and incrementing the size of the cache if the key was not already
+                * present in the cache. If behaving like an LRU cache, it will also remove stale
+                * entries from the set.
+                *
+                * It will not insert undefined values into the cache.
+                *
+                * @param {string} key the key under which the cached data is stored.
+                * @param {*} value the value to store alongside the key. If it is undefined, the key
+                *    will not be stored.
+                * @returns {*} the value stored.
+                */
+               put: function(key, value) {
+                 if (isUndefined(value)) return;
+                 if (capacity < Number.MAX_VALUE) {
+                   var lruEntry = lruHash[key] || (lruHash[key] = {key: key});
+
+                   refresh(lruEntry);
+                 }
+
+                 if (!(key in data)) size++;
+                 data[key] = value;
+
+                 if (size > capacity) {
+                   this.remove(staleEnd.key);
+                 }
+
+                 return value;
+               },
+
+               /**
+                * @ngdoc method
+                * @name $cacheFactory.Cache#get
+                * @kind function
+                *
+                * @description
+                * Retrieves named data stored in the {@link $cacheFactory.Cache Cache} object.
+                *
+                * @param {string} key the key of the data to be retrieved
+                * @returns {*} the value stored.
+                */
+               get: function(key) {
+                 if (capacity < Number.MAX_VALUE) {
+                   var lruEntry = lruHash[key];
+
+                   if (!lruEntry) return;
+
+                   refresh(lruEntry);
+                 }
+
+                 return data[key];
+               },
+
+
+               /**
+                * @ngdoc method
+                * @name $cacheFactory.Cache#remove
+                * @kind function
+                *
+                * @description
+                * Removes an entry from the {@link $cacheFactory.Cache Cache} object.
+                *
+                * @param {string} key the key of the entry to be removed
+                */
+               remove: function(key) {
+                 if (capacity < Number.MAX_VALUE) {
+                   var lruEntry = lruHash[key];
+
+                   if (!lruEntry) return;
+
+                   if (lruEntry == freshEnd) freshEnd = lruEntry.p;
+                   if (lruEntry == staleEnd) staleEnd = lruEntry.n;
+                   link(lruEntry.n,lruEntry.p);
+
+                   delete lruHash[key];
+                 }
+
+                 if (!(key in data)) return;
+
+                 delete data[key];
+                 size--;
+               },
+
+
+               /**
+                * @ngdoc method
+                * @name $cacheFactory.Cache#removeAll
+                * @kind function
+                *
+                * @description
+                * Clears the cache object of any entries.
+                */
+               removeAll: function() {
+                 data = createMap();
+                 size = 0;
+                 lruHash = createMap();
+                 freshEnd = staleEnd = null;
+               },
+
+
+               /**
+                * @ngdoc method
+                * @name $cacheFactory.Cache#destroy
+                * @kind function
+                *
+                * @description
+                * Destroys the {@link $cacheFactory.Cache Cache} object entirely,
+                * removing it from the {@link $cacheFactory $cacheFactory} set.
+                */
+               destroy: function() {
+                 data = null;
+                 stats = null;
+                 lruHash = null;
+                 delete caches[cacheId];
+               },
+
+
+               /**
+                * @ngdoc method
+                * @name $cacheFactory.Cache#info
+                * @kind function
+                *
+                * @description
+                * Retrieve information regarding a particular {@link $cacheFactory.Cache Cache}.
+                *
+                * @returns {object} an object with the following properties:
+                *   <ul>
+                *     <li>**id**: the id of the cache instance</li>
+                *     <li>**size**: the number of entries kept in the cache instance</li>
+                *     <li>**...**: any additional properties from the options object when creating the
+                *       cache.</li>
+                *   </ul>
+                */
+               info: function() {
+                 return extend({}, stats, {size: size});
+               }
+             };
+
+
+             /**
+              * makes the `entry` the freshEnd of the LRU linked list
+              */
+             function refresh(entry) {
+               if (entry != freshEnd) {
+                 if (!staleEnd) {
+                   staleEnd = entry;
+                 } else if (staleEnd == entry) {
+                   staleEnd = entry.n;
+                 }
+
+                 link(entry.n, entry.p);
+                 link(entry, freshEnd);
+                 freshEnd = entry;
+                 freshEnd.n = null;
+               }
+             }
+
+
+             /**
+              * bidirectionally links two entries of the LRU linked list
+              */
+             function link(nextEntry, prevEntry) {
+               if (nextEntry != prevEntry) {
+                 if (nextEntry) nextEntry.p = prevEntry; //p stands for previous, 'prev' didn't minify
+                 if (prevEntry) prevEntry.n = nextEntry; //n stands for next, 'next' didn't minify
+               }
+             }
+           }
+
+
+         /**
+          * @ngdoc method
+          * @name $cacheFactory#info
+          *
+          * @description
+          * Get information about all the caches that have been created
+          *
+          * @returns {Object} - key-value map of `cacheId` to the result of calling `cache#info`
+          */
+           cacheFactory.info = function() {
+             var info = {};
+             forEach(caches, function(cache, cacheId) {
+               info[cacheId] = cache.info();
+             });
+             return info;
+           };
+
+
+         /**
+          * @ngdoc method
+          * @name $cacheFactory#get
+          *
+          * @description
+          * Get access to a cache object by the `cacheId` used when it was created.
+          *
+          * @param {string} cacheId Name or id of a cache to access.
+          * @returns {object} Cache object identified by the cacheId or undefined if no such cache.
+          */
+           cacheFactory.get = function(cacheId) {
+             return caches[cacheId];
+           };
+
+
+           return cacheFactory;
+         };
+       }
+
+       /**
+        * @ngdoc service
+        * @name $templateCache
+        *
+        * @description
+        * The first time a template is used, it is loaded in the template cache for quick retrieval. You
+        * can load templates directly into the cache in a `script` tag, or by consuming the
+        * `$templateCache` service directly.
+        *
+        * Adding via the `script` tag:
+        *
+        * ```html
+        *   <script type="text/ng-template" id="templateId.html">
+        *     <p>This is the content of the template</p>
+        *   </script>
+        * ```
+        *
+        * **Note:** the `script` tag containing the template does not need to be included in the `head` of
+        * the document, but it must be a descendent of the {@link ng.$rootElement $rootElement} (IE,
+        * element with ng-app attribute), otherwise the template will be ignored.
+        *
+        * Adding via the `$templateCache` service:
+        *
+        * ```js
+        * var myApp = angular.module('myApp', []);
+        * myApp.run(function($templateCache) {
+        *   $templateCache.put('templateId.html', 'This is the content of the template');
+        * });
+        * ```
+        *
+        * To retrieve the template later, simply use it in your HTML:
+        * ```html
+        * <div ng-include=" 'templateId.html' "></div>
+        * ```
+        *
+        * or get it via Javascript:
+        * ```js
+        * $templateCache.get('templateId.html')
+        * ```
+        *
+        * See {@link ng.$cacheFactory $cacheFactory}.
+        *
+        */
+       function $TemplateCacheProvider() {
+         this.$get = ['$cacheFactory', function($cacheFactory) {
+           return $cacheFactory('templates');
+         }];
+       }
+
+       /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+        *     Any commits to this file should be reviewed with security in mind.  *
+        *   Changes to this file can potentially create security vulnerabilities. *
+        *          An approval from 2 Core members with history of modifying      *
+        *                         this file is required.                          *
+        *                                                                         *
+        *  Does the change somehow allow for arbitrary javascript to be executed? *
+        *    Or allows for someone to change the prototype of built-in objects?   *
+        *     Or gives undesired access to variables likes document or window?    *
+        * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+       /* ! VARIABLE/FUNCTION NAMING CONVENTIONS THAT APPLY TO THIS FILE!
+        *
+        * DOM-related variables:
+        *
+        * - "node" - DOM Node
+        * - "element" - DOM Element or Node
+        * - "$node" or "$element" - jqLite-wrapped node or element
+        *
+        *
+        * Compiler related stuff:
+        *
+        * - "linkFn" - linking fn of a single directive
+        * - "nodeLinkFn" - function that aggregates all linking fns for a particular node
+        * - "childLinkFn" -  function that aggregates all linking fns for child nodes of a particular node
+        * - "compositeLinkFn" - function that aggregates all linking fns for a compilation root (nodeList)
+        */
+
+
+       /**
+        * @ngdoc service
+        * @name $compile
+        * @kind function
+        *
+        * @description
+        * Compiles an HTML string or DOM into a template and produces a template function, which
+        * can then be used to link {@link ng.$rootScope.Scope `scope`} and the template together.
+        *
+        * The compilation is a process of walking the DOM tree and matching DOM elements to
+        * {@link ng.$compileProvider#directive directives}.
+        *
+        * <div class="alert alert-warning">
+        * **Note:** This document is an in-depth reference of all directive options.
+        * For a gentle introduction to directives with examples of common use cases,
+        * see the {@link guide/directive directive guide}.
+        * </div>
+        *
+        * ## Comprehensive Directive API
+        *
+        * There are many different options for a directive.
+        *
+        * The difference resides in the return value of the factory function.
+        * You can either return a "Directive Definition Object" (see below) that defines the directive properties,
+        * or just the `postLink` function (all other properties will have the default values).
+        *
+        * <div class="alert alert-success">
+        * **Best Practice:** It's recommended to use the "directive definition object" form.
+        * </div>
+        *
+        * Here's an example directive declared with a Directive Definition Object:
+        *
+        * ```js
+        *   var myModule = angular.module(...);
+        *
+        *   myModule.directive('directiveName', function factory(injectables) {
+        *     var directiveDefinitionObject = {
+        *       priority: 0,
+        *       template: '<div></div>', // or // function(tElement, tAttrs) { ... },
+        *       // or
+        *       // templateUrl: 'directive.html', // or // function(tElement, tAttrs) { ... },
+        *       transclude: false,
+        *       restrict: 'A',
+        *       templateNamespace: 'html',
+        *       scope: false,
+        *       controller: function($scope, $element, $attrs, $transclude, otherInjectables) { ... },
+        *       controllerAs: 'stringIdentifier',
+        *       bindToController: false,
+        *       require: 'siblingDirectiveName', // or // ['^parentDirectiveName', '?optionalDirectiveName', '?^optionalParent'],
+        *       compile: function compile(tElement, tAttrs, transclude) {
+        *         return {
+        *           pre: function preLink(scope, iElement, iAttrs, controller) { ... },
+        *           post: function postLink(scope, iElement, iAttrs, controller) { ... }
+        *         }
+        *         // or
+        *         // return function postLink( ... ) { ... }
+        *       },
+        *       // or
+        *       // link: {
+        *       //  pre: function preLink(scope, iElement, iAttrs, controller) { ... },
+        *       //  post: function postLink(scope, iElement, iAttrs, controller) { ... }
+        *       // }
+        *       // or
+        *       // link: function postLink( ... ) { ... }
+        *     };
+        *     return directiveDefinitionObject;
+        *   });
+        * ```
+        *
+        * <div class="alert alert-warning">
+        * **Note:** Any unspecified options will use the default value. You can see the default values below.
+        * </div>
+        *
+        * Therefore the above can be simplified as:
+        *
+        * ```js
+        *   var myModule = angular.module(...);
+        *
+        *   myModule.directive('directiveName', function factory(injectables) {
+        *     var directiveDefinitionObject = {
+        *       link: function postLink(scope, iElement, iAttrs) { ... }
+        *     };
+        *     return directiveDefinitionObject;
+        *     // or
+        *     // return function postLink(scope, iElement, iAttrs) { ... }
+        *   });
+        * ```
+        *
+        *
+        *
+        * ### Directive Definition Object
+        *
+        * The directive definition object provides instructions to the {@link ng.$compile
+        * compiler}. The attributes are:
+        *
+        * #### `multiElement`
+        * When this property is set to true, the HTML compiler will collect DOM nodes between
+        * nodes with the attributes `directive-name-start` and `directive-name-end`, and group them
+        * together as the directive elements. It is recommended that this feature be used on directives
+        * which are not strictly behavioural (such as {@link ngClick}), and which
+        * do not manipulate or replace child nodes (such as {@link ngInclude}).
+        *
+        * #### `priority`
+        * When there are multiple directives defined on a single DOM element, sometimes it
+        * is necessary to specify the order in which the directives are applied. The `priority` is used
+        * to sort the directives before their `compile` functions get called. Priority is defined as a
+        * number. Directives with greater numerical `priority` are compiled first. Pre-link functions
+        * are also run in priority order, but post-link functions are run in reverse order. The order
+        * of directives with the same priority is undefined. The default priority is `0`.
+        *
+        * #### `terminal`
+        * If set to true then the current `priority` will be the last set of directives
+        * which will execute (any directives at the current priority will still execute
+        * as the order of execution on same `priority` is undefined). Note that expressions
+        * and other directives used in the directive's template will also be excluded from execution.
+        *
+        * #### `scope`
+        * The scope property can be `true`, an object or a falsy value:
+        *
+        * * **falsy:** No scope will be created for the directive. The directive will use its parent's scope.
+        *
+        * * **`true`:** A new child scope that prototypically inherits from its parent will be created for
+        * the directive's element. If multiple directives on the same element request a new scope,
+        * only one new scope is created. The new scope rule does not apply for the root of the template
+        * since the root of the template always gets a new scope.
+        *
+        * * **`{...}` (an object hash):** A new "isolate" scope is created for the directive's element. The
+        * 'isolate' scope differs from normal scope in that it does not prototypically inherit from its parent
+        * scope. This is useful when creating reusable components, which should not accidentally read or modify
+        * data in the parent scope.
+        *
+        * The 'isolate' scope object hash defines a set of local scope properties derived from attributes on the
+        * directive's element. These local properties are useful for aliasing values for templates. The keys in
+        * the object hash map to the name of the property on the isolate scope; the values define how the property
+        * is bound to the parent scope, via matching attributes on the directive's element:
+        *
+        * * `@` or `@attr` - bind a local scope property to the value of DOM attribute. The result is
+        *   always a string since DOM attributes are strings. If no `attr` name is specified  then the
+        *   attribute name is assumed to be the same as the local name.
+        *   Given `<widget my-attr="hello {{name}}">` and widget definition
+        *   of `scope: { localName:'@myAttr' }`, then widget scope property `localName` will reflect
+        *   the interpolated value of `hello {{name}}`. As the `name` attribute changes so will the
+        *   `localName` property on the widget scope. The `name` is read from the parent scope (not
+        *   component scope).
+        *
+        * * `=` or `=attr` - set up bi-directional binding between a local scope property and the
+        *   parent scope property of name defined via the value of the `attr` attribute. If no `attr`
+        *   name is specified then the attribute name is assumed to be the same as the local name.
+        *   Given `<widget my-attr="parentModel">` and widget definition of
+        *   `scope: { localModel:'=myAttr' }`, then widget scope property `localModel` will reflect the
+        *   value of `parentModel` on the parent scope. Any changes to `parentModel` will be reflected
+        *   in `localModel` and any changes in `localModel` will reflect in `parentModel`. If the parent
+        *   scope property doesn't exist, it will throw a NON_ASSIGNABLE_MODEL_EXPRESSION exception. You
+        *   can avoid this behavior using `=?` or `=?attr` in order to flag the property as optional. If
+        *   you want to shallow watch for changes (i.e. $watchCollection instead of $watch) you can use
+        *   `=*` or `=*attr` (`=*?` or `=*?attr` if the property is optional).
+        *
+        * * `&` or `&attr` - provides a way to execute an expression in the context of the parent scope.
+        *   If no `attr` name is specified then the attribute name is assumed to be the same as the
+        *   local name. Given `<widget my-attr="count = count + value">` and widget definition of
+        *   `scope: { localFn:'&myAttr' }`, then isolate scope property `localFn` will point to
+        *   a function wrapper for the `count = count + value` expression. Often it's desirable to
+        *   pass data from the isolated scope via an expression to the parent scope, this can be
+        *   done by passing a map of local variable names and values into the expression wrapper fn.
+        *   For example, if the expression is `increment(amount)` then we can specify the amount value
+        *   by calling the `localFn` as `localFn({amount: 22})`.
+        *
+        * In general it's possible to apply more than one directive to one element, but there might be limitations
+        * depending on the type of scope required by the directives. The following points will help explain these limitations.
+        * For simplicity only two directives are taken into account, but it is also applicable for several directives:
+        *
+        * * **no scope** + **no scope** => Two directives which don't require their own scope will use their parent's scope
+        * * **child scope** + **no scope** =>  Both directives will share one single child scope
+        * * **child scope** + **child scope** =>  Both directives will share one single child scope
+        * * **isolated scope** + **no scope** =>  The isolated directive will use it's own created isolated scope. The other directive will use
+        * its parent's scope
+        * * **isolated scope** + **child scope** =>  **Won't work!** Only one scope can be related to one element. Therefore these directives cannot
+        * be applied to the same element.
+        * * **isolated scope** + **isolated scope**  =>  **Won't work!** Only one scope can be related to one element. Therefore these directives
+        * cannot be applied to the same element.
+        *
+        *
+        * #### `bindToController`
+        * When an isolate scope is used for a component (see above), and `controllerAs` is used, `bindToController: true` will
+        * allow a component to have its properties bound to the controller, rather than to scope. When the controller
+        * is instantiated, the initial values of the isolate scope bindings are already available.
+        *
+        * #### `controller`
+        * Controller constructor function. The controller is instantiated before the
+        * pre-linking phase and can be accessed by other directives (see
+        * `require` attribute). This allows the directives to communicate with each other and augment
+        * each other's behavior. The controller is injectable (and supports bracket notation) with the following locals:
+        *
+        * * `$scope` - Current scope associated with the element
+        * * `$element` - Current element
+        * * `$attrs` - Current attributes object for the element
+        * * `$transclude` - A transclude linking function pre-bound to the correct transclusion scope:
+        *   `function([scope], cloneLinkingFn, futureParentElement)`.
+        *    * `scope`: optional argument to override the scope.
+        *    * `cloneLinkingFn`: optional argument to create clones of the original transcluded content.
+        *    * `futureParentElement`:
+        *        * defines the parent to which the `cloneLinkingFn` will add the cloned elements.
+        *        * default: `$element.parent()` resp. `$element` for `transclude:'element'` resp. `transclude:true`.
+        *        * only needed for transcludes that are allowed to contain non html elements (e.g. SVG elements)
+        *          and when the `cloneLinkinFn` is passed,
+        *          as those elements need to created and cloned in a special way when they are defined outside their
+        *          usual containers (e.g. like `<svg>`).
+        *        * See also the `directive.templateNamespace` property.
+        *
+        *
+        * #### `require`
+        * Require another directive and inject its controller as the fourth argument to the linking function. The
+        * `require` takes a string name (or array of strings) of the directive(s) to pass in. If an array is used, the
+        * injected argument will be an array in corresponding order. If no such directive can be
+        * found, or if the directive does not have a controller, then an error is raised (unless no link function
+        * is specified, in which case error checking is skipped). The name can be prefixed with:
+        *
+        * * (no prefix) - Locate the required controller on the current element. Throw an error if not found.
+        * * `?` - Attempt to locate the required controller or pass `null` to the `link` fn if not found.
+        * * `^` - Locate the required controller by searching the element and its parents. Throw an error if not found.
+        * * `^^` - Locate the required controller by searching the element's parents. Throw an error if not found.
+        * * `?^` - Attempt to locate the required controller by searching the element and its parents or pass
+        *   `null` to the `link` fn if not found.
+        * * `?^^` - Attempt to locate the required controller by searching the element's parents, or pass
+        *   `null` to the `link` fn if not found.
+        *
+        *
+        * #### `controllerAs`
+        * Identifier name for a reference to the controller in the directive's scope.
+        * This allows the controller to be referenced from the directive template. This is especially
+        * useful when a directive is used as component, i.e. with an `isolate` scope. It's also possible
+        * to use it in a directive without an `isolate` / `new` scope, but you need to be aware that the
+        * `controllerAs` reference might overwrite a property that already exists on the parent scope.
+        *
+        *
+        * #### `restrict`
+        * String of subset of `EACM` which restricts the directive to a specific directive
+        * declaration style. If omitted, the defaults (elements and attributes) are used.
+        *
+        * * `E` - Element name (default): `<my-directive></my-directive>`
+        * * `A` - Attribute (default): `<div my-directive="exp"></div>`
+        * * `C` - Class: `<div class="my-directive: exp;"></div>`
+        * * `M` - Comment: `<!-- directive: my-directive exp -->`
+        *
+        *
+        * #### `templateNamespace`
+        * String representing the document type used by the markup in the template.
+        * AngularJS needs this information as those elements need to be created and cloned
+        * in a special way when they are defined outside their usual containers like `<svg>` and `<math>`.
+        *
+        * * `html` - All root nodes in the template are HTML. Root nodes may also be
+        *   top-level elements such as `<svg>` or `<math>`.
+        * * `svg` - The root nodes in the template are SVG elements (excluding `<math>`).
+        * * `math` - The root nodes in the template are MathML elements (excluding `<svg>`).
+        *
+        * If no `templateNamespace` is specified, then the namespace is considered to be `html`.
+        *
+        * #### `template`
+        * HTML markup that may:
+        * * Replace the contents of the directive's element (default).
+        * * Replace the directive's element itself (if `replace` is true - DEPRECATED).
+        * * Wrap the contents of the directive's element (if `transclude` is true).
+        *
+        * Value may be:
+        *
+        * * A string. For example `<div red-on-hover>{{delete_str}}</div>`.
+        * * A function which takes two arguments `tElement` and `tAttrs` (described in the `compile`
+        *   function api below) and returns a string value.
+        *
+        *
+        * #### `templateUrl`
+        * This is similar to `template` but the template is loaded from the specified URL, asynchronously.
+        *
+        * Because template loading is asynchronous the compiler will suspend compilation of directives on that element
+        * for later when the template has been resolved.  In the meantime it will continue to compile and link
+        * sibling and parent elements as though this element had not contained any directives.
+        *
+        * The compiler does not suspend the entire compilation to wait for templates to be loaded because this
+        * would result in the whole app "stalling" until all templates are loaded asynchronously - even in the
+        * case when only one deeply nested directive has `templateUrl`.
+        *
+        * Template loading is asynchronous even if the template has been preloaded into the {@link $templateCache}
+        *
+        * You can specify `templateUrl` as a string representing the URL or as a function which takes two
+        * arguments `tElement` and `tAttrs` (described in the `compile` function api below) and returns
+        * a string value representing the url.  In either case, the template URL is passed through {@link
+        * $sce#getTrustedResourceUrl $sce.getTrustedResourceUrl}.
+        *
+        *
+        * #### `replace` ([*DEPRECATED*!], will be removed in next major release - i.e. v2.0)
+        * specify what the template should replace. Defaults to `false`.
+        *
+        * * `true` - the template will replace the directive's element.
+        * * `false` - the template will replace the contents of the directive's element.
+        *
+        * The replacement process migrates all of the attributes / classes from the old element to the new
+        * one. See the {@link guide/directive#template-expanding-directive
+        * Directives Guide} for an example.
+        *
+        * There are very few scenarios where element replacement is required for the application function,
+        * the main one being reusable custom components that are used within SVG contexts
+        * (because SVG doesn't work with custom elements in the DOM tree).
+        *
+        * #### `transclude`
+        * Extract the contents of the element where the directive appears and make it available to the directive.
+        * The contents are compiled and provided to the directive as a **transclusion function**. See the
+        * {@link $compile#transclusion Transclusion} section below.
+        *
+        * There are two kinds of transclusion depending upon whether you want to transclude just the contents of the
+        * directive's element or the entire element:
+        *
+        * * `true` - transclude the content (i.e. the child nodes) of the directive's element.
+        * * `'element'` - transclude the whole of the directive's element including any directives on this
+        *   element that defined at a lower priority than this directive. When used, the `template`
+        *   property is ignored.
+        *
+        *
+        * #### `compile`
+        *
+        * ```js
+        *   function compile(tElement, tAttrs, transclude) { ... }
+        * ```
+        *
+        * The compile function deals with transforming the template DOM. Since most directives do not do
+        * template transformation, it is not used often. The compile function takes the following arguments:
+        *
+        *   * `tElement` - template element - The element where the directive has been declared. It is
+        *     safe to do template transformation on the element and child elements only.
+        *
+        *   * `tAttrs` - template attributes - Normalized list of attributes declared on this element shared
+        *     between all directive compile functions.
+        *
+        *   * `transclude` -  [*DEPRECATED*!] A transclude linking function: `function(scope, cloneLinkingFn)`
+        *
+        * <div class="alert alert-warning">
+        * **Note:** The template instance and the link instance may be different objects if the template has
+        * been cloned. For this reason it is **not** safe to do anything other than DOM transformations that
+        * apply to all cloned DOM nodes within the compile function. Specifically, DOM listener registration
+        * should be done in a linking function rather than in a compile function.
+        * </div>
+
+        * <div class="alert alert-warning">
+        * **Note:** The compile function cannot handle directives that recursively use themselves in their
+        * own templates or compile functions. Compiling these directives results in an infinite loop and a
+        * stack overflow errors.
+        *
+        * This can be avoided by manually using $compile in the postLink function to imperatively compile
+        * a directive's template instead of relying on automatic template compilation via `template` or
+        * `templateUrl` declaration or manual compilation inside the compile function.
+        * </div>
+        *
+        * <div class="alert alert-danger">
+        * **Note:** The `transclude` function that is passed to the compile function is deprecated, as it
+        *   e.g. does not know about the right outer scope. Please use the transclude function that is passed
+        *   to the link function instead.
+        * </div>
+
+        * A compile function can have a return value which can be either a function or an object.
+        *
+        * * returning a (post-link) function - is equivalent to registering the linking function via the
+        *   `link` property of the config object when the compile function is empty.
+        *
+        * * returning an object with function(s) registered via `pre` and `post` properties - allows you to
+        *   control when a linking function should be called during the linking phase. See info about
+        *   pre-linking and post-linking functions below.
+        *
+        *
+        * #### `link`
+        * This property is used only if the `compile` property is not defined.
+        *
+        * ```js
+        *   function link(scope, iElement, iAttrs, controller, transcludeFn) { ... }
+        * ```
+        *
+        * The link function is responsible for registering DOM listeners as well as updating the DOM. It is
+        * executed after the template has been cloned. This is where most of the directive logic will be
+        * put.
+        *
+        *   * `scope` - {@link ng.$rootScope.Scope Scope} - The scope to be used by the
+        *     directive for registering {@link ng.$rootScope.Scope#$watch watches}.
+        *
+        *   * `iElement` - instance element - The element where the directive is to be used. It is safe to
+        *     manipulate the children of the element only in `postLink` function since the children have
+        *     already been linked.
+        *
+        *   * `iAttrs` - instance attributes - Normalized list of attributes declared on this element shared
+        *     between all directive linking functions.
+        *
+        *   * `controller` - the directive's required controller instance(s) - Instances are shared
+        *     among all directives, which allows the directives to use the controllers as a communication
+        *     channel. The exact value depends on the directive's `require` property:
+        *       * no controller(s) required: the directive's own controller, or `undefined` if it doesn't have one
+        *       * `string`: the controller instance
+        *       * `array`: array of controller instances
+        *
+        *     If a required controller cannot be found, and it is optional, the instance is `null`,
+        *     otherwise the {@link error:$compile:ctreq Missing Required Controller} error is thrown.
+        *
+        *     Note that you can also require the directive's own controller - it will be made available like
+        *     any other controller.
+        *
+        *   * `transcludeFn` - A transclude linking function pre-bound to the correct transclusion scope.
+        *     This is the same as the `$transclude`
+        *     parameter of directive controllers, see there for details.
+        *     `function([scope], cloneLinkingFn, futureParentElement)`.
+        *
+        * #### Pre-linking function
+        *
+        * Executed before the child elements are linked. Not safe to do DOM transformation since the
+        * compiler linking function will fail to locate the correct elements for linking.
+        *
+        * #### Post-linking function
+        *
+        * Executed after the child elements are linked.
+        *
+        * Note that child elements that contain `templateUrl` directives will not have been compiled
+        * and linked since they are waiting for their template to load asynchronously and their own
+        * compilation and linking has been suspended until that occurs.
+        *
+        * It is safe to do DOM transformation in the post-linking function on elements that are not waiting
+        * for their async templates to be resolved.
+        *
+        *
+        * ### Transclusion
+        *
+        * Transclusion is the process of extracting a collection of DOM elements from one part of the DOM and
+        * copying them to another part of the DOM, while maintaining their connection to the original AngularJS
+        * scope from where they were taken.
+        *
+        * Transclusion is used (often with {@link ngTransclude}) to insert the
+        * original contents of a directive's element into a specified place in the template of the directive.
+        * The benefit of transclusion, over simply moving the DOM elements manually, is that the transcluded
+        * content has access to the properties on the scope from which it was taken, even if the directive
+        * has isolated scope.
+        * See the {@link guide/directive#creating-a-directive-that-wraps-other-elements Directives Guide}.
+        *
+        * This makes it possible for the widget to have private state for its template, while the transcluded
+        * content has access to its originating scope.
+        *
+        * <div class="alert alert-warning">
+        * **Note:** When testing an element transclude directive you must not place the directive at the root of the
+        * DOM fragment that is being compiled. See {@link guide/unit-testing#testing-transclusion-directives
+        * Testing Transclusion Directives}.
+        * </div>
+        *
+        * #### Transclusion Functions
+        *
+        * When a directive requests transclusion, the compiler extracts its contents and provides a **transclusion
+        * function** to the directive's `link` function and `controller`. This transclusion function is a special
+        * **linking function** that will return the compiled contents linked to a new transclusion scope.
+        *
+        * <div class="alert alert-info">
+        * If you are just using {@link ngTransclude} then you don't need to worry about this function, since
+        * ngTransclude will deal with it for us.
+        * </div>
+        *
+        * If you want to manually control the insertion and removal of the transcluded content in your directive
+        * then you must use this transclude function. When you call a transclude function it returns a a jqLite/JQuery
+        * object that contains the compiled DOM, which is linked to the correct transclusion scope.
+        *
+        * When you call a transclusion function you can pass in a **clone attach function**. This function accepts
+        * two parameters, `function(clone, scope) { ... }`, where the `clone` is a fresh compiled copy of your transcluded
+        * content and the `scope` is the newly created transclusion scope, to which the clone is bound.
+        *
+        * <div class="alert alert-info">
+        * **Best Practice**: Always provide a `cloneFn` (clone attach function) when you call a translude function
+        * since you then get a fresh clone of the original DOM and also have access to the new transclusion scope.
+        * </div>
+        *
+        * It is normal practice to attach your transcluded content (`clone`) to the DOM inside your **clone
+        * attach function**:
+        *
+        * ```js
+        * var transcludedContent, transclusionScope;
+        *
+        * $transclude(function(clone, scope) {
+        *   element.append(clone);
+        *   transcludedContent = clone;
+        *   transclusionScope = scope;
+        * });
+        * ```
+        *
+        * Later, if you want to remove the transcluded content from your DOM then you should also destroy the
+        * associated transclusion scope:
+        *
+        * ```js
+        * transcludedContent.remove();
+        * transclusionScope.$destroy();
+        * ```
+        *
+        * <div class="alert alert-info">
+        * **Best Practice**: if you intend to add and remove transcluded content manually in your directive
+        * (by calling the transclude function to get the DOM and calling `element.remove()` to remove it),
+        * then you are also responsible for calling `$destroy` on the transclusion scope.
+        * </div>
+        *
+        * The built-in DOM manipulation directives, such as {@link ngIf}, {@link ngSwitch} and {@link ngRepeat}
+        * automatically destroy their transluded clones as necessary so you do not need to worry about this if
+        * you are simply using {@link ngTransclude} to inject the transclusion into your directive.
+        *
+        *
+        * #### Transclusion Scopes
+        *
+        * When you call a transclude function it returns a DOM fragment that is pre-bound to a **transclusion
+        * scope**. This scope is special, in that it is a child of the directive's scope (and so gets destroyed
+        * when the directive's scope gets destroyed) but it inherits the properties of the scope from which it
+        * was taken.
+        *
+        * For example consider a directive that uses transclusion and isolated scope. The DOM hierarchy might look
+        * like this:
+        *
+        * ```html
+        * <div ng-app>
+        *   <div isolate>
+        *     <div transclusion>
+        *     </div>
+        *   </div>
+        * </div>
+        * ```
+        *
+        * The `$parent` scope hierarchy will look like this:
+        *
+        * ```
+        * - $rootScope
+        *   - isolate
+        *     - transclusion
+        * ```
+        *
+        * but the scopes will inherit prototypically from different scopes to their `$parent`.
+        *
+        * ```
+        * - $rootScope
+        *   - transclusion
+        * - isolate
+        * ```
+        *
+        *
+        * ### Attributes
+        *
+        * The {@link ng.$compile.directive.Attributes Attributes} object - passed as a parameter in the
+        * `link()` or `compile()` functions. It has a variety of uses.
+        *
+        * accessing *Normalized attribute names:*
+        * Directives like 'ngBind' can be expressed in many ways: 'ng:bind', `data-ng-bind`, or 'x-ng-bind'.
+        * the attributes object allows for normalized access to
+        *   the attributes.
+        *
+        * * *Directive inter-communication:* All directives share the same instance of the attributes
+        *   object which allows the directives to use the attributes object as inter directive
+        *   communication.
+        *
+        * * *Supports interpolation:* Interpolation attributes are assigned to the attribute object
+        *   allowing other directives to read the interpolated value.
+        *
+        * * *Observing interpolated attributes:* Use `$observe` to observe the value changes of attributes
+        *   that contain interpolation (e.g. `src="{{bar}}"`). Not only is this very efficient but it's also
+        *   the only way to easily get the actual value because during the linking phase the interpolation
+        *   hasn't been evaluated yet and so the value is at this time set to `undefined`.
+        *
+        * ```js
+        * function linkingFn(scope, elm, attrs, ctrl) {
+        *   // get the attribute value
+        *   console.log(attrs.ngModel);
+        *
+        *   // change the attribute
+        *   attrs.$set('ngModel', 'new value');
+        *
+        *   // observe changes to interpolated attribute
+        *   attrs.$observe('ngModel', function(value) {
+        *     console.log('ngModel has changed value to ' + value);
+        *   });
+        * }
+        * ```
+        *
+        * ## Example
+        *
+        * <div class="alert alert-warning">
+        * **Note**: Typically directives are registered with `module.directive`. The example below is
+        * to illustrate how `$compile` works.
+        * </div>
+        *
+        <example module="compileExample">
+          <file name="index.html">
+           <script>
+             angular.module('compileExample', [], function($compileProvider) {
+               // configure new 'compile' directive by passing a directive
+               // factory function. The factory function injects the '$compile'
+               $compileProvider.directive('compile', function($compile) {
+                 // directive factory creates a link function
+                 return function(scope, element, attrs) {
+                   scope.$watch(
+                     function(scope) {
+                        // watch the 'compile' expression for changes
+                       return scope.$eval(attrs.compile);
+                     },
+                     function(value) {
+                       // when the 'compile' expression changes
+                       // assign it into the current DOM
+                       element.html(value);
+
+                       // compile the new DOM and link it to the current
+                       // scope.
+                       // NOTE: we only compile .childNodes so that
+                       // we don't get into infinite loop compiling ourselves
+                       $compile(element.contents())(scope);
+                     }
+                   );
+                 };
+               });
+             })
+             .controller('GreeterController', ['$scope', function($scope) {
+               $scope.name = 'Angular';
+               $scope.html = 'Hello {{name}}';
+             }]);
+           </script>
+           <div ng-controller="GreeterController">
+             <input ng-model="name"> <br/>
+             <textarea ng-model="html"></textarea> <br/>
+             <div compile="html"></div>
+           </div>
+          </file>
+          <file name="protractor.js" type="protractor">
+            it('should auto compile', function() {
+              var textarea = $('textarea');
+              var output = $('div[compile]');
+              // The initial state reads 'Hello Angular'.
+              expect(output.getText()).toBe('Hello Angular');
+              textarea.clear();
+              textarea.sendKeys('{{name}}!');
+              expect(output.getText()).toBe('Angular!');
+            });
+          </file>
+        </example>
+
+        *
+        *
+        * @param {string|DOMElement} element Element or HTML string to compile into a template function.
+        * @param {function(angular.Scope, cloneAttachFn=)} transclude function available to directives - DEPRECATED.
+        *
+        * <div class="alert alert-danger">
+        * **Note:** Passing a `transclude` function to the $compile function is deprecated, as it
+        *   e.g. will not use the right outer scope. Please pass the transclude function as a
+        *   `parentBoundTranscludeFn` to the link function instead.
+        * </div>
+        *
+        * @param {number} maxPriority only apply directives lower than given priority (Only effects the
+        *                 root element(s), not their children)
+        * @returns {function(scope, cloneAttachFn=, options=)} a link function which is used to bind template
+        * (a DOM element/tree) to a scope. Where:
+        *
+        *  * `scope` - A {@link ng.$rootScope.Scope Scope} to bind to.
+        *  * `cloneAttachFn` - If `cloneAttachFn` is provided, then the link function will clone the
+        *  `template` and call the `cloneAttachFn` function allowing the caller to attach the
+        *  cloned elements to the DOM document at the appropriate place. The `cloneAttachFn` is
+        *  called as: <br/> `cloneAttachFn(clonedElement, scope)` where:
+        *
+        *      * `clonedElement` - is a clone of the original `element` passed into the compiler.
+        *      * `scope` - is the current scope with which the linking function is working with.
+        *
+        *  * `options` - An optional object hash with linking options. If `options` is provided, then the following
+        *  keys may be used to control linking behavior:
+        *
+        *      * `parentBoundTranscludeFn` - the transclude function made available to
+        *        directives; if given, it will be passed through to the link functions of
+        *        directives found in `element` during compilation.
+        *      * `transcludeControllers` - an object hash with keys that map controller names
+        *        to controller instances; if given, it will make the controllers
+        *        available to directives.
+        *      * `futureParentElement` - defines the parent to which the `cloneAttachFn` will add
+        *        the cloned elements; only needed for transcludes that are allowed to contain non html
+        *        elements (e.g. SVG elements). See also the directive.controller property.
+        *
+        * Calling the linking function returns the element of the template. It is either the original
+        * element passed in, or the clone of the element if the `cloneAttachFn` is provided.
+        *
+        * After linking the view is not updated until after a call to $digest which typically is done by
+        * Angular automatically.
+        *
+        * If you need access to the bound view, there are two ways to do it:
+        *
+        * - If you are not asking the linking function to clone the template, create the DOM element(s)
+        *   before you send them to the compiler and keep this reference around.
+        *   ```js
+        *     var element = $compile('<p>{{total}}</p>')(scope);
+        *   ```
+        *
+        * - if on the other hand, you need the element to be cloned, the view reference from the original
+        *   example would not point to the clone, but rather to the original template that was cloned. In
+        *   this case, you can access the clone via the cloneAttachFn:
+        *   ```js
+        *     var templateElement = angular.element('<p>{{total}}</p>'),
+        *         scope = ....;
+        *
+        *     var clonedElement = $compile(templateElement)(scope, function(clonedElement, scope) {
+        *       //attach the clone to DOM document at the right place
+        *     });
+        *
+        *     //now we have reference to the cloned DOM via `clonedElement`
+        *   ```
+        *
+        *
+        * For information on how the compiler works, see the
+        * {@link guide/compiler Angular HTML Compiler} section of the Developer Guide.
+        */
+
+       var $compileMinErr = minErr('$compile');
+
+       /**
+        * @ngdoc provider
+        * @name $compileProvider
+        *
+        * @description
+        */
+       $CompileProvider.$inject = ['$provide', '$$sanitizeUriProvider'];
+       function $CompileProvider($provide, $$sanitizeUriProvider) {
+         var hasDirectives = {},
+             Suffix = 'Directive',
+             COMMENT_DIRECTIVE_REGEXP = /^\s*directive\:\s*([\w\-]+)\s+(.*)$/,
+             CLASS_DIRECTIVE_REGEXP = /(([\w\-]+)(?:\:([^;]+))?;?)/,
+             ALL_OR_NOTHING_ATTRS = makeMap('ngSrc,ngSrcset,src,srcset'),
+             REQUIRE_PREFIX_REGEXP = /^(?:(\^\^?)?(\?)?(\^\^?)?)?/;
+
+         // Ref: http://developers.whatwg.org/webappapis.html#event-handler-idl-attributes
+         // The assumption is that future DOM event attribute names will begin with
+         // 'on' and be composed of only English letters.
+         var EVENT_HANDLER_ATTR_REGEXP = /^(on[a-z]+|formaction)$/;
+
+         function parseIsolateBindings(scope, directiveName, isController) {
+           var LOCAL_REGEXP = /^\s*([@&]|=(\*?))(\??)\s*(\w*)\s*$/;
+
+           var bindings = {};
+
+           forEach(scope, function(definition, scopeName) {
+             var match = definition.match(LOCAL_REGEXP);
+
+             if (!match) {
+               throw $compileMinErr('iscp',
+                   "Invalid {3} for directive '{0}'." +
+                   " Definition: {... {1}: '{2}' ...}",
+                   directiveName, scopeName, definition,
+                   (isController ? "controller bindings definition" :
+                   "isolate scope definition"));
+             }
+
+             bindings[scopeName] = {
+               mode: match[1][0],
+               collection: match[2] === '*',
+               optional: match[3] === '?',
+               attrName: match[4] || scopeName
+             };
+           });
+
+           return bindings;
+         }
+
+         function parseDirectiveBindings(directive, directiveName) {
+           var bindings = {
+             isolateScope: null,
+             bindToController: null
+           };
+           if (isObject(directive.scope)) {
+             if (directive.bindToController === true) {
+               bindings.bindToController = parseIsolateBindings(directive.scope,
+                                                                directiveName, true);
+               bindings.isolateScope = {};
+             } else {
+               bindings.isolateScope = parseIsolateBindings(directive.scope,
+                                                            directiveName, false);
+             }
+           }
+           if (isObject(directive.bindToController)) {
+             bindings.bindToController =
+                 parseIsolateBindings(directive.bindToController, directiveName, true);
+           }
+           if (isObject(bindings.bindToController)) {
+             var controller = directive.controller;
+             var controllerAs = directive.controllerAs;
+             if (!controller) {
+               // There is no controller, there may or may not be a controllerAs property
+               throw $compileMinErr('noctrl',
+                     "Cannot bind to controller without directive '{0}'s controller.",
+                     directiveName);
+             } else if (!identifierForController(controller, controllerAs)) {
+               // There is a controller, but no identifier or controllerAs property
+               throw $compileMinErr('noident',
+                     "Cannot bind to controller without identifier for directive '{0}'.",
+                     directiveName);
+             }
+           }
+           return bindings;
+         }
+
+         function assertValidDirectiveName(name) {
+           var letter = name.charAt(0);
+           if (!letter || letter !== lowercase(letter)) {
+             throw $compileMinErr('baddir', "Directive name '{0}' is invalid. The first character must be a lowercase letter", name);
+           }
+           if (name !== name.trim()) {
+             throw $compileMinErr('baddir',
+                   "Directive name '{0}' is invalid. The name should not contain leading or trailing whitespaces",
+                   name);
+           }
+         }
+
+         /**
+          * @ngdoc method
+          * @name $compileProvider#directive
+          * @kind function
+          *
+          * @description
+          * Register a new directive with the compiler.
+          *
+          * @param {string|Object} name Name of the directive in camel-case (i.e. <code>ngBind</code> which
+          *    will match as <code>ng-bind</code>), or an object map of directives where the keys are the
+          *    names and the values are the factories.
+          * @param {Function|Array} directiveFactory An injectable directive factory function. See
+          *    {@link guide/directive} for more info.
+          * @returns {ng.$compileProvider} Self for chaining.
+          */
+          this.directive = function registerDirective(name, directiveFactory) {
+           assertNotHasOwnProperty(name, 'directive');
+           if (isString(name)) {
+             assertValidDirectiveName(name);
+             assertArg(directiveFactory, 'directiveFactory');
+             if (!hasDirectives.hasOwnProperty(name)) {
+               hasDirectives[name] = [];
+               $provide.factory(name + Suffix, ['$injector', '$exceptionHandler',
+                 function($injector, $exceptionHandler) {
+                   var directives = [];
+                   forEach(hasDirectives[name], function(directiveFactory, index) {
+                     try {
+                       var directive = $injector.invoke(directiveFactory);
+                       if (isFunction(directive)) {
+                         directive = { compile: valueFn(directive) };
+                       } else if (!directive.compile && directive.link) {
+                         directive.compile = valueFn(directive.link);
+                       }
+                       directive.priority = directive.priority || 0;
+                       directive.index = index;
+                       directive.name = directive.name || name;
+                       directive.require = directive.require || (directive.controller && directive.name);
+                       directive.restrict = directive.restrict || 'EA';
+                       var bindings = directive.$$bindings =
+                           parseDirectiveBindings(directive, directive.name);
+                       if (isObject(bindings.isolateScope)) {
+                         directive.$$isolateBindings = bindings.isolateScope;
+                       }
+                       directive.$$moduleName = directiveFactory.$$moduleName;
+                       directives.push(directive);
+                     } catch (e) {
+                       $exceptionHandler(e);
+                     }
+                   });
+                   return directives;
+                 }]);
+             }
+             hasDirectives[name].push(directiveFactory);
+           } else {
+             forEach(name, reverseParams(registerDirective));
+           }
+           return this;
+         };
+
+
+         /**
+          * @ngdoc method
+          * @name $compileProvider#aHrefSanitizationWhitelist
+          * @kind function
+          *
+          * @description
+          * Retrieves or overrides the default regular expression that is used for whitelisting of safe
+          * urls during a[href] sanitization.
+          *
+          * The sanitization is a security measure aimed at preventing XSS attacks via html links.
+          *
+          * Any url about to be assigned to a[href] via data-binding is first normalized and turned into
+          * an absolute url. Afterwards, the url is matched against the `aHrefSanitizationWhitelist`
+          * regular expression. If a match is found, the original url is written into the dom. Otherwise,
+          * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM.
+          *
+          * @param {RegExp=} regexp New regexp to whitelist urls with.
+          * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for
+          *    chaining otherwise.
+          */
+         this.aHrefSanitizationWhitelist = function(regexp) {
+           if (isDefined(regexp)) {
+             $$sanitizeUriProvider.aHrefSanitizationWhitelist(regexp);
+             return this;
+           } else {
+             return $$sanitizeUriProvider.aHrefSanitizationWhitelist();
+           }
+         };
+
+
+         /**
+          * @ngdoc method
+          * @name $compileProvider#imgSrcSanitizationWhitelist
+          * @kind function
+          *
+          * @description
+          * Retrieves or overrides the default regular expression that is used for whitelisting of safe
+          * urls during img[src] sanitization.
+          *
+          * The sanitization is a security measure aimed at prevent XSS attacks via html links.
+          *
+          * Any url about to be assigned to img[src] via data-binding is first normalized and turned into
+          * an absolute url. Afterwards, the url is matched against the `imgSrcSanitizationWhitelist`
+          * regular expression. If a match is found, the original url is written into the dom. Otherwise,
+          * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM.
+          *
+          * @param {RegExp=} regexp New regexp to whitelist urls with.
+          * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for
+          *    chaining otherwise.
+          */
+         this.imgSrcSanitizationWhitelist = function(regexp) {
+           if (isDefined(regexp)) {
+             $$sanitizeUriProvider.imgSrcSanitizationWhitelist(regexp);
+             return this;
+           } else {
+             return $$sanitizeUriProvider.imgSrcSanitizationWhitelist();
+           }
+         };
+
+         /**
+          * @ngdoc method
+          * @name  $compileProvider#debugInfoEnabled
+          *
+          * @param {boolean=} enabled update the debugInfoEnabled state if provided, otherwise just return the
+          * current debugInfoEnabled state
+          * @returns {*} current value if used as getter or itself (chaining) if used as setter
+          *
+          * @kind function
+          *
+          * @description
+          * Call this method to enable/disable various debug runtime information in the compiler such as adding
+          * binding information and a reference to the current scope on to DOM elements.
+          * If enabled, the compiler will add the following to DOM elements that have been bound to the scope
+          * * `ng-binding` CSS class
+          * * `$binding` data property containing an array of the binding expressions
+          *
+          * You may want to disable this in production for a significant performance boost. See
+          * {@link guide/production#disabling-debug-data Disabling Debug Data} for more.
+          *
+          * The default value is true.
+          */
+         var debugInfoEnabled = true;
+         this.debugInfoEnabled = function(enabled) {
+           if (isDefined(enabled)) {
+             debugInfoEnabled = enabled;
+             return this;
+           }
+           return debugInfoEnabled;
+         };
+
+         this.$get = [
+                   '$injector', '$interpolate', '$exceptionHandler', '$templateRequest', '$parse',
+                   '$controller', '$rootScope', '$document', '$sce', '$animate', '$$sanitizeUri',
+           function($injector,   $interpolate,   $exceptionHandler,   $templateRequest,   $parse,
+                    $controller,   $rootScope,   $document,   $sce,   $animate,   $$sanitizeUri) {
+
+           var Attributes = function(element, attributesToCopy) {
+             if (attributesToCopy) {
+               var keys = Object.keys(attributesToCopy);
+               var i, l, key;
+
+               for (i = 0, l = keys.length; i < l; i++) {
+                 key = keys[i];
+                 this[key] = attributesToCopy[key];
+               }
+             } else {
+               this.$attr = {};
+             }
+
+             this.$$element = element;
+           };
+
+           Attributes.prototype = {
+             /**
+              * @ngdoc method
+              * @name $compile.directive.Attributes#$normalize
+              * @kind function
+              *
+              * @description
+              * Converts an attribute name (e.g. dash/colon/underscore-delimited string, optionally prefixed with `x-` or
+              * `data-`) to its normalized, camelCase form.
+              *
+              * Also there is special case for Moz prefix starting with upper case letter.
+              *
+              * For further information check out the guide on {@link guide/directive#matching-directives Matching Directives}
+              *
+              * @param {string} name Name to normalize
+              */
+             $normalize: directiveNormalize,
+
+
+             /**
+              * @ngdoc method
+              * @name $compile.directive.Attributes#$addClass
+              * @kind function
+              *
+              * @description
+              * Adds the CSS class value specified by the classVal parameter to the element. If animations
+              * are enabled then an animation will be triggered for the class addition.
+              *
+              * @param {string} classVal The className value that will be added to the element
+              */
+             $addClass: function(classVal) {
+               if (classVal && classVal.length > 0) {
+                 $animate.addClass(this.$$element, classVal);
+               }
+             },
+
+             /**
+              * @ngdoc method
+              * @name $compile.directive.Attributes#$removeClass
+              * @kind function
+              *
+              * @description
+              * Removes the CSS class value specified by the classVal parameter from the element. If
+              * animations are enabled then an animation will be triggered for the class removal.
+              *
+              * @param {string} classVal The className value that will be removed from the element
+              */
+             $removeClass: function(classVal) {
+               if (classVal && classVal.length > 0) {
+                 $animate.removeClass(this.$$element, classVal);
+               }
+             },
+
+             /**
+              * @ngdoc method
+              * @name $compile.directive.Attributes#$updateClass
+              * @kind function
+              *
+              * @description
+              * Adds and removes the appropriate CSS class values to the element based on the difference
+              * between the new and old CSS class values (specified as newClasses and oldClasses).
+              *
+              * @param {string} newClasses The current CSS className value
+              * @param {string} oldClasses The former CSS className value
+              */
+             $updateClass: function(newClasses, oldClasses) {
+               var toAdd = tokenDifference(newClasses, oldClasses);
+               if (toAdd && toAdd.length) {
+                 $animate.addClass(this.$$element, toAdd);
+               }
+
+               var toRemove = tokenDifference(oldClasses, newClasses);
+               if (toRemove && toRemove.length) {
+                 $animate.removeClass(this.$$element, toRemove);
+               }
+             },
+
+             /**
+              * Set a normalized attribute on the element in a way such that all directives
+              * can share the attribute. This function properly handles boolean attributes.
+              * @param {string} key Normalized key. (ie ngAttribute)
+              * @param {string|boolean} value The value to set. If `null` attribute will be deleted.
+              * @param {boolean=} writeAttr If false, does not write the value to DOM element attribute.
+              *     Defaults to true.
+              * @param {string=} attrName Optional none normalized name. Defaults to key.
+              */
+             $set: function(key, value, writeAttr, attrName) {
+               // TODO: decide whether or not to throw an error if "class"
+               //is set through this function since it may cause $updateClass to
+               //become unstable.
+
+               var node = this.$$element[0],
+                   booleanKey = getBooleanAttrName(node, key),
+                   aliasedKey = getAliasedAttrName(key),
+                   observer = key,
+                   nodeName;
+
+               if (booleanKey) {
+                 this.$$element.prop(key, value);
+                 attrName = booleanKey;
+               } else if (aliasedKey) {
+                 this[aliasedKey] = value;
+                 observer = aliasedKey;
+               }
+
+               this[key] = value;
+
+               // translate normalized key to actual key
+               if (attrName) {
+                 this.$attr[key] = attrName;
+               } else {
+                 attrName = this.$attr[key];
+                 if (!attrName) {
+                   this.$attr[key] = attrName = snake_case(key, '-');
+                 }
+               }
+
+               nodeName = nodeName_(this.$$element);
+
+               if ((nodeName === 'a' && key === 'href') ||
+                   (nodeName === 'img' && key === 'src')) {
+                 // sanitize a[href] and img[src] values
+                 this[key] = value = $$sanitizeUri(value, key === 'src');
+               } else if (nodeName === 'img' && key === 'srcset') {
+                 // sanitize img[srcset] values
+                 var result = "";
+
+                 // first check if there are spaces because it's not the same pattern
+                 var trimmedSrcset = trim(value);
+                 //                (   999x   ,|   999w   ,|   ,|,   )
+                 var srcPattern = /(\s+\d+x\s*,|\s+\d+w\s*,|\s+,|,\s+)/;
+                 var pattern = /\s/.test(trimmedSrcset) ? srcPattern : /(,)/;
+
+                 // split srcset into tuple of uri and descriptor except for the last item
+                 var rawUris = trimmedSrcset.split(pattern);
+
+                 // for each tuples
+                 var nbrUrisWith2parts = Math.floor(rawUris.length / 2);
+                 for (var i = 0; i < nbrUrisWith2parts; i++) {
+                   var innerIdx = i * 2;
+                   // sanitize the uri
+                   result += $$sanitizeUri(trim(rawUris[innerIdx]), true);
+                   // add the descriptor
+                   result += (" " + trim(rawUris[innerIdx + 1]));
+                 }
+
+                 // split the last item into uri and descriptor
+                 var lastTuple = trim(rawUris[i * 2]).split(/\s/);
+
+                 // sanitize the last uri
+                 result += $$sanitizeUri(trim(lastTuple[0]), true);
+
+                 // and add the last descriptor if any
+                 if (lastTuple.length === 2) {
+                   result += (" " + trim(lastTuple[1]));
+                 }
+                 this[key] = value = result;
+               }
+
+               if (writeAttr !== false) {
+                 if (value === null || isUndefined(value)) {
+                   this.$$element.removeAttr(attrName);
+                 } else {
+                   this.$$element.attr(attrName, value);
+                 }
+               }
+
+               // fire observers
+               var $$observers = this.$$observers;
+               $$observers && forEach($$observers[observer], function(fn) {
+                 try {
+                   fn(value);
+                 } catch (e) {
+                   $exceptionHandler(e);
+                 }
+               });
+             },
+
+
+             /**
+              * @ngdoc method
+              * @name $compile.directive.Attributes#$observe
+              * @kind function
+              *
+              * @description
+              * Observes an interpolated attribute.
+              *
+              * The observer function will be invoked once during the next `$digest` following
+              * compilation. The observer is then invoked whenever the interpolated value
+              * changes.
+              *
+              * @param {string} key Normalized key. (ie ngAttribute) .
+              * @param {function(interpolatedValue)} fn Function that will be called whenever
+                       the interpolated value of the attribute changes.
+              *        See the {@link guide/directive#text-and-attribute-bindings Directives} guide for more info.
+              * @returns {function()} Returns a deregistration function for this observer.
+              */
+             $observe: function(key, fn) {
+               var attrs = this,
+                   $$observers = (attrs.$$observers || (attrs.$$observers = createMap())),
+                   listeners = ($$observers[key] || ($$observers[key] = []));
+
+               listeners.push(fn);
+               $rootScope.$evalAsync(function() {
+                 if (!listeners.$$inter && attrs.hasOwnProperty(key) && !isUndefined(attrs[key])) {
+                   // no one registered attribute interpolation function, so lets call it manually
+                   fn(attrs[key]);
+                 }
+               });
+
+               return function() {
+                 arrayRemove(listeners, fn);
+               };
+             }
+           };
+
+
+           function safeAddClass($element, className) {
+             try {
+               $element.addClass(className);
+             } catch (e) {
+               // ignore, since it means that we are trying to set class on
+               // SVG element, where class name is read-only.
+             }
+           }
+
+
+           var startSymbol = $interpolate.startSymbol(),
+               endSymbol = $interpolate.endSymbol(),
+               denormalizeTemplate = (startSymbol == '{{' || endSymbol  == '}}')
+                   ? identity
+                   : function denormalizeTemplate(template) {
+                     return template.replace(/\{\{/g, startSymbol).replace(/}}/g, endSymbol);
+               },
+               NG_ATTR_BINDING = /^ngAttr[A-Z]/;
+           var MULTI_ELEMENT_DIR_RE = /^(.+)Start$/;
+
+           compile.$$addBindingInfo = debugInfoEnabled ? function $$addBindingInfo($element, binding) {
+             var bindings = $element.data('$binding') || [];
+
+             if (isArray(binding)) {
+               bindings = bindings.concat(binding);
+             } else {
+               bindings.push(binding);
+             }
+
+             $element.data('$binding', bindings);
+           } : noop;
+
+           compile.$$addBindingClass = debugInfoEnabled ? function $$addBindingClass($element) {
+             safeAddClass($element, 'ng-binding');
+           } : noop;
+
+           compile.$$addScopeInfo = debugInfoEnabled ? function $$addScopeInfo($element, scope, isolated, noTemplate) {
+             var dataName = isolated ? (noTemplate ? '$isolateScopeNoTemplate' : '$isolateScope') : '$scope';
+             $element.data(dataName, scope);
+           } : noop;
+
+           compile.$$addScopeClass = debugInfoEnabled ? function $$addScopeClass($element, isolated) {
+             safeAddClass($element, isolated ? 'ng-isolate-scope' : 'ng-scope');
+           } : noop;
+
+           return compile;
+
+           //================================
+
+           function compile($compileNodes, transcludeFn, maxPriority, ignoreDirective,
+                               previousCompileContext) {
+             if (!($compileNodes instanceof jqLite)) {
+               // jquery always rewraps, whereas we need to preserve the original selector so that we can
+               // modify it.
+               $compileNodes = jqLite($compileNodes);
+             }
+             // We can not compile top level text elements since text nodes can be merged and we will
+             // not be able to attach scope data to them, so we will wrap them in <span>
+             forEach($compileNodes, function(node, index) {
+               if (node.nodeType == NODE_TYPE_TEXT && node.nodeValue.match(/\S+/) /* non-empty */ ) {
+                 $compileNodes[index] = jqLite(node).wrap('<span></span>').parent()[0];
+               }
+             });
+             var compositeLinkFn =
+                     compileNodes($compileNodes, transcludeFn, $compileNodes,
+                                  maxPriority, ignoreDirective, previousCompileContext);
+             compile.$$addScopeClass($compileNodes);
+             var namespace = null;
+             return function publicLinkFn(scope, cloneConnectFn, options) {
+               assertArg(scope, 'scope');
+
+               if (previousCompileContext && previousCompileContext.needsNewScope) {
+                 // A parent directive did a replace and a directive on this element asked
+                 // for transclusion, which caused us to lose a layer of element on which
+                 // we could hold the new transclusion scope, so we will create it manually
+                 // here.
+                 scope = scope.$parent.$new();
+               }
+
+               options = options || {};
+               var parentBoundTranscludeFn = options.parentBoundTranscludeFn,
+                 transcludeControllers = options.transcludeControllers,
+                 futureParentElement = options.futureParentElement;
+
+               // When `parentBoundTranscludeFn` is passed, it is a
+               // `controllersBoundTransclude` function (it was previously passed
+               // as `transclude` to directive.link) so we must unwrap it to get
+               // its `boundTranscludeFn`
+               if (parentBoundTranscludeFn && parentBoundTranscludeFn.$$boundTransclude) {
+                 parentBoundTranscludeFn = parentBoundTranscludeFn.$$boundTransclude;
+               }
+
+               if (!namespace) {
+                 namespace = detectNamespaceForChildElements(futureParentElement);
+               }
+               var $linkNode;
+               if (namespace !== 'html') {
+                 // When using a directive with replace:true and templateUrl the $compileNodes
+                 // (or a child element inside of them)
+                 // might change, so we need to recreate the namespace adapted compileNodes
+                 // for call to the link function.
+                 // Note: This will already clone the nodes...
+                 $linkNode = jqLite(
+                   wrapTemplate(namespace, jqLite('<div>').append($compileNodes).html())
+                 );
+               } else if (cloneConnectFn) {
+                 // important!!: we must call our jqLite.clone() since the jQuery one is trying to be smart
+                 // and sometimes changes the structure of the DOM.
+                 $linkNode = JQLitePrototype.clone.call($compileNodes);
+               } else {
+                 $linkNode = $compileNodes;
+               }
+
+               if (transcludeControllers) {
+                 for (var controllerName in transcludeControllers) {
+                   $linkNode.data('$' + controllerName + 'Controller', transcludeControllers[controllerName].instance);
+                 }
+               }
+
+               compile.$$addScopeInfo($linkNode, scope);
+
+               if (cloneConnectFn) cloneConnectFn($linkNode, scope);
+               if (compositeLinkFn) compositeLinkFn(scope, $linkNode, $linkNode, parentBoundTranscludeFn);
+               return $linkNode;
+             };
+           }
+
+           function detectNamespaceForChildElements(parentElement) {
+             // TODO: Make this detect MathML as well...
+             var node = parentElement && parentElement[0];
+             if (!node) {
+               return 'html';
+             } else {
+               return nodeName_(node) !== 'foreignobject' && node.toString().match(/SVG/) ? 'svg' : 'html';
+             }
+           }
+
+           /**
+            * Compile function matches each node in nodeList against the directives. Once all directives
+            * for a particular node are collected their compile functions are executed. The compile
+            * functions return values - the linking functions - are combined into a composite linking
+            * function, which is the a linking function for the node.
+            *
+            * @param {NodeList} nodeList an array of nodes or NodeList to compile
+            * @param {function(angular.Scope, cloneAttachFn=)} transcludeFn A linking function, where the
+            *        scope argument is auto-generated to the new child of the transcluded parent scope.
+            * @param {DOMElement=} $rootElement If the nodeList is the root of the compilation tree then
+            *        the rootElement must be set the jqLite collection of the compile root. This is
+            *        needed so that the jqLite collection items can be replaced with widgets.
+            * @param {number=} maxPriority Max directive priority.
+            * @returns {Function} A composite linking function of all of the matched directives or null.
+            */
+           function compileNodes(nodeList, transcludeFn, $rootElement, maxPriority, ignoreDirective,
+                                   previousCompileContext) {
+             var linkFns = [],
+                 attrs, directives, nodeLinkFn, childNodes, childLinkFn, linkFnFound, nodeLinkFnFound;
+
+             for (var i = 0; i < nodeList.length; i++) {
+               attrs = new Attributes();
+
+               // we must always refer to nodeList[i] since the nodes can be replaced underneath us.
+               directives = collectDirectives(nodeList[i], [], attrs, i === 0 ? maxPriority : undefined,
+                                               ignoreDirective);
+
+               nodeLinkFn = (directives.length)
+                   ? applyDirectivesToNode(directives, nodeList[i], attrs, transcludeFn, $rootElement,
+                                             null, [], [], previousCompileContext)
+                   : null;
+
+               if (nodeLinkFn && nodeLinkFn.scope) {
+                 compile.$$addScopeClass(attrs.$$element);
+               }
+
+               childLinkFn = (nodeLinkFn && nodeLinkFn.terminal ||
+                             !(childNodes = nodeList[i].childNodes) ||
+                             !childNodes.length)
+                   ? null
+                   : compileNodes(childNodes,
+                        nodeLinkFn ? (
+                         (nodeLinkFn.transcludeOnThisElement || !nodeLinkFn.templateOnThisElement)
+                            && nodeLinkFn.transclude) : transcludeFn);
+
+               if (nodeLinkFn || childLinkFn) {
+                 linkFns.push(i, nodeLinkFn, childLinkFn);
+                 linkFnFound = true;
+                 nodeLinkFnFound = nodeLinkFnFound || nodeLinkFn;
+               }
+
+               //use the previous context only for the first element in the virtual group
+               previousCompileContext = null;
+             }
+
+             // return a linking function if we have found anything, null otherwise
+             return linkFnFound ? compositeLinkFn : null;
+
+             function compositeLinkFn(scope, nodeList, $rootElement, parentBoundTranscludeFn) {
+               var nodeLinkFn, childLinkFn, node, childScope, i, ii, idx, childBoundTranscludeFn;
+               var stableNodeList;
+
+
+               if (nodeLinkFnFound) {
+                 // copy nodeList so that if a nodeLinkFn removes or adds an element at this DOM level our
+                 // offsets don't get screwed up
+                 var nodeListLength = nodeList.length;
+                 stableNodeList = new Array(nodeListLength);
+
+                 // create a sparse array by only copying the elements which have a linkFn
+                 for (i = 0; i < linkFns.length; i+=3) {
+                   idx = linkFns[i];
+                   stableNodeList[idx] = nodeList[idx];
+                 }
+               } else {
+                 stableNodeList = nodeList;
+               }
+
+               for (i = 0, ii = linkFns.length; i < ii;) {
+                 node = stableNodeList[linkFns[i++]];
+                 nodeLinkFn = linkFns[i++];
+                 childLinkFn = linkFns[i++];
+
+                 if (nodeLinkFn) {
+                   if (nodeLinkFn.scope) {
+                     childScope = scope.$new();
+                     compile.$$addScopeInfo(jqLite(node), childScope);
+                   } else {
+                     childScope = scope;
+                   }
+
+                   if (nodeLinkFn.transcludeOnThisElement) {
+                     childBoundTranscludeFn = createBoundTranscludeFn(
+                         scope, nodeLinkFn.transclude, parentBoundTranscludeFn);
+
+                   } else if (!nodeLinkFn.templateOnThisElement && parentBoundTranscludeFn) {
+                     childBoundTranscludeFn = parentBoundTranscludeFn;
+
+                   } else if (!parentBoundTranscludeFn && transcludeFn) {
+                     childBoundTranscludeFn = createBoundTranscludeFn(scope, transcludeFn);
+
+                   } else {
+                     childBoundTranscludeFn = null;
+                   }
+
+                   nodeLinkFn(childLinkFn, childScope, node, $rootElement, childBoundTranscludeFn);
+
+                 } else if (childLinkFn) {
+                   childLinkFn(scope, node.childNodes, undefined, parentBoundTranscludeFn);
+                 }
+               }
+             }
+           }
+
+           function createBoundTranscludeFn(scope, transcludeFn, previousBoundTranscludeFn) {
+
+             var boundTranscludeFn = function(transcludedScope, cloneFn, controllers, futureParentElement, containingScope) {
+
+               if (!transcludedScope) {
+                 transcludedScope = scope.$new(false, containingScope);
+                 transcludedScope.$$transcluded = true;
+               }
+
+               return transcludeFn(transcludedScope, cloneFn, {
+                 parentBoundTranscludeFn: previousBoundTranscludeFn,
+                 transcludeControllers: controllers,
+                 futureParentElement: futureParentElement
+               });
+             };
+
+             return boundTranscludeFn;
+           }
+
+           /**
+            * Looks for directives on the given node and adds them to the directive collection which is
+            * sorted.
+            *
+            * @param node Node to search.
+            * @param directives An array to which the directives are added to. This array is sorted before
+            *        the function returns.
+            * @param attrs The shared attrs object which is used to populate the normalized attributes.
+            * @param {number=} maxPriority Max directive priority.
+            */
+           function collectDirectives(node, directives, attrs, maxPriority, ignoreDirective) {
+             var nodeType = node.nodeType,
+                 attrsMap = attrs.$attr,
+                 match,
+                 className;
+
+             switch (nodeType) {
+               case NODE_TYPE_ELEMENT: /* Element */
+                 // use the node name: <directive>
+                 addDirective(directives,
+                     directiveNormalize(nodeName_(node)), 'E', maxPriority, ignoreDirective);
+
+                 // iterate over the attributes
+                 for (var attr, name, nName, ngAttrName, value, isNgAttr, nAttrs = node.attributes,
+                          j = 0, jj = nAttrs && nAttrs.length; j < jj; j++) {
+                   var attrStartName = false;
+                   var attrEndName = false;
+
+                   attr = nAttrs[j];
+                   name = attr.name;
+                   value = trim(attr.value);
+
+                   // support ngAttr attribute binding
+                   ngAttrName = directiveNormalize(name);
+                   if (isNgAttr = NG_ATTR_BINDING.test(ngAttrName)) {
+                     name = name.replace(PREFIX_REGEXP, '')
+                       .substr(8).replace(/_(.)/g, function(match, letter) {
+                         return letter.toUpperCase();
+                       });
+                   }
+
+                   var multiElementMatch = ngAttrName.match(MULTI_ELEMENT_DIR_RE);
+                   if (multiElementMatch && directiveIsMultiElement(multiElementMatch[1])) {
+                     attrStartName = name;
+                     attrEndName = name.substr(0, name.length - 5) + 'end';
+                     name = name.substr(0, name.length - 6);
+                   }
+
+                   nName = directiveNormalize(name.toLowerCase());
+                   attrsMap[nName] = name;
+                   if (isNgAttr || !attrs.hasOwnProperty(nName)) {
+                       attrs[nName] = value;
+                       if (getBooleanAttrName(node, nName)) {
+                         attrs[nName] = true; // presence means true
+                       }
+                   }
+                   addAttrInterpolateDirective(node, directives, value, nName, isNgAttr);
+                   addDirective(directives, nName, 'A', maxPriority, ignoreDirective, attrStartName,
+                                 attrEndName);
+                 }
+
+                 // use class as directive
+                 className = node.className;
+                 if (isObject(className)) {
+                     // Maybe SVGAnimatedString
+                     className = className.animVal;
+                 }
+                 if (isString(className) && className !== '') {
+                   while (match = CLASS_DIRECTIVE_REGEXP.exec(className)) {
+                     nName = directiveNormalize(match[2]);
+                     if (addDirective(directives, nName, 'C', maxPriority, ignoreDirective)) {
+                       attrs[nName] = trim(match[3]);
+                     }
+                     className = className.substr(match.index + match[0].length);
+                   }
+                 }
+                 break;
+               case NODE_TYPE_TEXT: /* Text Node */
+                 if (msie === 11) {
+                   // Workaround for #11781
+                   while (node.parentNode && node.nextSibling && node.nextSibling.nodeType === NODE_TYPE_TEXT) {
+                     node.nodeValue = node.nodeValue + node.nextSibling.nodeValue;
+                     node.parentNode.removeChild(node.nextSibling);
+                   }
+                 }
+                 addTextInterpolateDirective(directives, node.nodeValue);
+                 break;
+               case NODE_TYPE_COMMENT: /* Comment */
+                 try {
+                   match = COMMENT_DIRECTIVE_REGEXP.exec(node.nodeValue);
+                   if (match) {
+                     nName = directiveNormalize(match[1]);
+                     if (addDirective(directives, nName, 'M', maxPriority, ignoreDirective)) {
+                       attrs[nName] = trim(match[2]);
+                     }
+                   }
+                 } catch (e) {
+                   // turns out that under some circumstances IE9 throws errors when one attempts to read
+                   // comment's node value.
+                   // Just ignore it and continue. (Can't seem to reproduce in test case.)
+                 }
+                 break;
+             }
+
+             directives.sort(byPriority);
+             return directives;
+           }
+
+           /**
+            * Given a node with an directive-start it collects all of the siblings until it finds
+            * directive-end.
+            * @param node
+            * @param attrStart
+            * @param attrEnd
+            * @returns {*}
+            */
+           function groupScan(node, attrStart, attrEnd) {
+             var nodes = [];
+             var depth = 0;
+             if (attrStart && node.hasAttribute && node.hasAttribute(attrStart)) {
+               do {
+                 if (!node) {
+                   throw $compileMinErr('uterdir',
+                             "Unterminated attribute, found '{0}' but no matching '{1}' found.",
+                             attrStart, attrEnd);
+                 }
+                 if (node.nodeType == NODE_TYPE_ELEMENT) {
+                   if (node.hasAttribute(attrStart)) depth++;
+                   if (node.hasAttribute(attrEnd)) depth--;
+                 }
+                 nodes.push(node);
+                 node = node.nextSibling;
+               } while (depth > 0);
+             } else {
+               nodes.push(node);
+             }
+
+             return jqLite(nodes);
+           }
+
+           /**
+            * Wrapper for linking function which converts normal linking function into a grouped
+            * linking function.
+            * @param linkFn
+            * @param attrStart
+            * @param attrEnd
+            * @returns {Function}
+            */
+           function groupElementsLinkFnWrapper(linkFn, attrStart, attrEnd) {
+             return function(scope, element, attrs, controllers, transcludeFn) {
+               element = groupScan(element[0], attrStart, attrEnd);
+               return linkFn(scope, element, attrs, controllers, transcludeFn);
+             };
+           }
+
+           /**
+            * Once the directives have been collected, their compile functions are executed. This method
+            * is responsible for inlining directive templates as well as terminating the application
+            * of the directives if the terminal directive has been reached.
+            *
+            * @param {Array} directives Array of collected directives to execute their compile function.
+            *        this needs to be pre-sorted by priority order.
+            * @param {Node} compileNode The raw DOM node to apply the compile functions to
+            * @param {Object} templateAttrs The shared attribute function
+            * @param {function(angular.Scope, cloneAttachFn=)} transcludeFn A linking function, where the
+            *                                                  scope argument is auto-generated to the new
+            *                                                  child of the transcluded parent scope.
+            * @param {JQLite} jqCollection If we are working on the root of the compile tree then this
+            *                              argument has the root jqLite array so that we can replace nodes
+            *                              on it.
+            * @param {Object=} originalReplaceDirective An optional directive that will be ignored when
+            *                                           compiling the transclusion.
+            * @param {Array.<Function>} preLinkFns
+            * @param {Array.<Function>} postLinkFns
+            * @param {Object} previousCompileContext Context used for previous compilation of the current
+            *                                        node
+            * @returns {Function} linkFn
+            */
+           function applyDirectivesToNode(directives, compileNode, templateAttrs, transcludeFn,
+                                          jqCollection, originalReplaceDirective, preLinkFns, postLinkFns,
+                                          previousCompileContext) {
+             previousCompileContext = previousCompileContext || {};
+
+             var terminalPriority = -Number.MAX_VALUE,
+                 newScopeDirective = previousCompileContext.newScopeDirective,
+                 controllerDirectives = previousCompileContext.controllerDirectives,
+                 newIsolateScopeDirective = previousCompileContext.newIsolateScopeDirective,
+                 templateDirective = previousCompileContext.templateDirective,
+                 nonTlbTranscludeDirective = previousCompileContext.nonTlbTranscludeDirective,
+                 hasTranscludeDirective = false,
+                 hasTemplate = false,
+                 hasElementTranscludeDirective = previousCompileContext.hasElementTranscludeDirective,
+                 $compileNode = templateAttrs.$$element = jqLite(compileNode),
+                 directive,
+                 directiveName,
+                 $template,
+                 replaceDirective = originalReplaceDirective,
+                 childTranscludeFn = transcludeFn,
+                 linkFn,
+                 directiveValue;
+
+             // executes all directives on the current element
+             for (var i = 0, ii = directives.length; i < ii; i++) {
+               directive = directives[i];
+               var attrStart = directive.$$start;
+               var attrEnd = directive.$$end;
+
+               // collect multiblock sections
+               if (attrStart) {
+                 $compileNode = groupScan(compileNode, attrStart, attrEnd);
+               }
+               $template = undefined;
+
+               if (terminalPriority > directive.priority) {
+                 break; // prevent further processing of directives
+               }
+
+               if (directiveValue = directive.scope) {
+
+                 // skip the check for directives with async templates, we'll check the derived sync
+                 // directive when the template arrives
+                 if (!directive.templateUrl) {
+                   if (isObject(directiveValue)) {
+                     // This directive is trying to add an isolated scope.
+                     // Check that there is no scope of any kind already
+                     assertNoDuplicate('new/isolated scope', newIsolateScopeDirective || newScopeDirective,
+                                       directive, $compileNode);
+                     newIsolateScopeDirective = directive;
+                   } else {
+                     // This directive is trying to add a child scope.
+                     // Check that there is no isolated scope already
+                     assertNoDuplicate('new/isolated scope', newIsolateScopeDirective, directive,
+                                       $compileNode);
+                   }
+                 }
+
+                 newScopeDirective = newScopeDirective || directive;
+               }
+
+               directiveName = directive.name;
+
+               if (!directive.templateUrl && directive.controller) {
+                 directiveValue = directive.controller;
+                 controllerDirectives = controllerDirectives || createMap();
+                 assertNoDuplicate("'" + directiveName + "' controller",
+                     controllerDirectives[directiveName], directive, $compileNode);
+                 controllerDirectives[directiveName] = directive;
+               }
+
+               if (directiveValue = directive.transclude) {
+                 hasTranscludeDirective = true;
+
+                 // Special case ngIf and ngRepeat so that we don't complain about duplicate transclusion.
+                 // This option should only be used by directives that know how to safely handle element transclusion,
+                 // where the transcluded nodes are added or replaced after linking.
+                 if (!directive.$$tlb) {
+                   assertNoDuplicate('transclusion', nonTlbTranscludeDirective, directive, $compileNode);
+                   nonTlbTranscludeDirective = directive;
+                 }
+
+                 if (directiveValue == 'element') {
+                   hasElementTranscludeDirective = true;
+                   terminalPriority = directive.priority;
+                   $template = $compileNode;
+                   $compileNode = templateAttrs.$$element =
+                       jqLite(document.createComment(' ' + directiveName + ': ' +
+                                                     templateAttrs[directiveName] + ' '));
+                   compileNode = $compileNode[0];
+                   replaceWith(jqCollection, sliceArgs($template), compileNode);
+
+                   childTranscludeFn = compile($template, transcludeFn, terminalPriority,
+                                               replaceDirective && replaceDirective.name, {
+                                                 // Don't pass in:
+                                                 // - controllerDirectives - otherwise we'll create duplicates controllers
+                                                 // - newIsolateScopeDirective or templateDirective - combining templates with
+                                                 //   element transclusion doesn't make sense.
+                                                 //
+                                                 // We need only nonTlbTranscludeDirective so that we prevent putting transclusion
+                                                 // on the same element more than once.
+                                                 nonTlbTranscludeDirective: nonTlbTranscludeDirective
+                                               });
+                 } else {
+                   $template = jqLite(jqLiteClone(compileNode)).contents();
+                   $compileNode.empty(); // clear contents
+                   childTranscludeFn = compile($template, transcludeFn, undefined,
+                       undefined, { needsNewScope: directive.$$isolateScope || directive.$$newScope});
+                 }
+               }
+
+               if (directive.template) {
+                 hasTemplate = true;
+                 assertNoDuplicate('template', templateDirective, directive, $compileNode);
+                 templateDirective = directive;
+
+                 directiveValue = (isFunction(directive.template))
+                     ? directive.template($compileNode, templateAttrs)
+                     : directive.template;
+
+                 directiveValue = denormalizeTemplate(directiveValue);
+
+                 if (directive.replace) {
+                   replaceDirective = directive;
+                   if (jqLiteIsTextNode(directiveValue)) {
+                     $template = [];
+                   } else {
+                     $template = removeComments(wrapTemplate(directive.templateNamespace, trim(directiveValue)));
+                   }
+                   compileNode = $template[0];
+
+                   if ($template.length != 1 || compileNode.nodeType !== NODE_TYPE_ELEMENT) {
+                     throw $compileMinErr('tplrt',
+                         "Template for directive '{0}' must have exactly one root element. {1}",
+                         directiveName, '');
+                   }
+
+                   replaceWith(jqCollection, $compileNode, compileNode);
+
+                   var newTemplateAttrs = {$attr: {}};
+
+                   // combine directives from the original node and from the template:
+                   // - take the array of directives for this element
+                   // - split it into two parts, those that already applied (processed) and those that weren't (unprocessed)
+                   // - collect directives from the template and sort them by priority
+                   // - combine directives as: processed + template + unprocessed
+                   var templateDirectives = collectDirectives(compileNode, [], newTemplateAttrs);
+                   var unprocessedDirectives = directives.splice(i + 1, directives.length - (i + 1));
+
+                   if (newIsolateScopeDirective || newScopeDirective) {
+                     // The original directive caused the current element to be replaced but this element
+                     // also needs to have a new scope, so we need to tell the template directives
+                     // that they would need to get their scope from further up, if they require transclusion
+                     markDirectiveScope(templateDirectives, newIsolateScopeDirective, newScopeDirective);
+                   }
+                   directives = directives.concat(templateDirectives).concat(unprocessedDirectives);
+                   mergeTemplateAttributes(templateAttrs, newTemplateAttrs);
+
+                   ii = directives.length;
+                 } else {
+                   $compileNode.html(directiveValue);
+                 }
+               }
+
+               if (directive.templateUrl) {
+                 hasTemplate = true;
+                 assertNoDuplicate('template', templateDirective, directive, $compileNode);
+                 templateDirective = directive;
+
+                 if (directive.replace) {
+                   replaceDirective = directive;
+                 }
+
+                 nodeLinkFn = compileTemplateUrl(directives.splice(i, directives.length - i), $compileNode,
+                     templateAttrs, jqCollection, hasTranscludeDirective && childTranscludeFn, preLinkFns, postLinkFns, {
+                       controllerDirectives: controllerDirectives,
+                       newScopeDirective: (newScopeDirective !== directive) && newScopeDirective,
+                       newIsolateScopeDirective: newIsolateScopeDirective,
+                       templateDirective: templateDirective,
+                       nonTlbTranscludeDirective: nonTlbTranscludeDirective
+                     });
+                 ii = directives.length;
+               } else if (directive.compile) {
+                 try {
+                   linkFn = directive.compile($compileNode, templateAttrs, childTranscludeFn);
+                   if (isFunction(linkFn)) {
+                     addLinkFns(null, linkFn, attrStart, attrEnd);
+                   } else if (linkFn) {
+                     addLinkFns(linkFn.pre, linkFn.post, attrStart, attrEnd);
+                   }
+                 } catch (e) {
+                   $exceptionHandler(e, startingTag($compileNode));
+                 }
+               }
+
+               if (directive.terminal) {
+                 nodeLinkFn.terminal = true;
+                 terminalPriority = Math.max(terminalPriority, directive.priority);
+               }
+
+             }
+
+             nodeLinkFn.scope = newScopeDirective && newScopeDirective.scope === true;
+             nodeLinkFn.transcludeOnThisElement = hasTranscludeDirective;
+             nodeLinkFn.templateOnThisElement = hasTemplate;
+             nodeLinkFn.transclude = childTranscludeFn;
+
+             previousCompileContext.hasElementTranscludeDirective = hasElementTranscludeDirective;
+
+             // might be normal or delayed nodeLinkFn depending on if templateUrl is present
+             return nodeLinkFn;
+
+             ////////////////////
+
+             function addLinkFns(pre, post, attrStart, attrEnd) {
+               if (pre) {
+                 if (attrStart) pre = groupElementsLinkFnWrapper(pre, attrStart, attrEnd);
+                 pre.require = directive.require;
+                 pre.directiveName = directiveName;
+                 if (newIsolateScopeDirective === directive || directive.$$isolateScope) {
+                   pre = cloneAndAnnotateFn(pre, {isolateScope: true});
+                 }
+                 preLinkFns.push(pre);
+               }
+               if (post) {
+                 if (attrStart) post = groupElementsLinkFnWrapper(post, attrStart, attrEnd);
+                 post.require = directive.require;
+                 post.directiveName = directiveName;
+                 if (newIsolateScopeDirective === directive || directive.$$isolateScope) {
+                   post = cloneAndAnnotateFn(post, {isolateScope: true});
+                 }
+                 postLinkFns.push(post);
+               }
+             }
+
+
+             function getControllers(directiveName, require, $element, elementControllers) {
+               var value;
+
+               if (isString(require)) {
+                 var match = require.match(REQUIRE_PREFIX_REGEXP);
+                 var name = require.substring(match[0].length);
+                 var inheritType = match[1] || match[3];
+                 var optional = match[2] === '?';
+
+                 //If only parents then start at the parent element
+                 if (inheritType === '^^') {
+                   $element = $element.parent();
+                 //Otherwise attempt getting the controller from elementControllers in case
+                 //the element is transcluded (and has no data) and to avoid .data if possible
+                 } else {
+                   value = elementControllers && elementControllers[name];
+                   value = value && value.instance;
+                 }
+
+                 if (!value) {
+                   var dataName = '$' + name + 'Controller';
+                   value = inheritType ? $element.inheritedData(dataName) : $element.data(dataName);
+                 }
+
+                 if (!value && !optional) {
+                   throw $compileMinErr('ctreq',
+                       "Controller '{0}', required by directive '{1}', can't be found!",
+                       name, directiveName);
+                 }
+               } else if (isArray(require)) {
+                 value = [];
+                 for (var i = 0, ii = require.length; i < ii; i++) {
+                   value[i] = getControllers(directiveName, require[i], $element, elementControllers);
+                 }
+               }
+
+               return value || null;
+             }
+
+             function setupControllers($element, attrs, transcludeFn, controllerDirectives, isolateScope, scope) {
+               var elementControllers = createMap();
+               for (var controllerKey in controllerDirectives) {
+                 var directive = controllerDirectives[controllerKey];
+                 var locals = {
+                   $scope: directive === newIsolateScopeDirective || directive.$$isolateScope ? isolateScope : scope,
+                   $element: $element,
+                   $attrs: attrs,
+                   $transclude: transcludeFn
+                 };
+
+                 var controller = directive.controller;
+                 if (controller == '@') {
+                   controller = attrs[directive.name];
+                 }
+
+                 var controllerInstance = $controller(controller, locals, true, directive.controllerAs);
+
+                 // For directives with element transclusion the element is a comment,
+                 // but jQuery .data doesn't support attaching data to comment nodes as it's hard to
+                 // clean up (http://bugs.jquery.com/ticket/8335).
+                 // Instead, we save the controllers for the element in a local hash and attach to .data
+                 // later, once we have the actual element.
+                 elementControllers[directive.name] = controllerInstance;
+                 if (!hasElementTranscludeDirective) {
+                   $element.data('$' + directive.name + 'Controller', controllerInstance.instance);
+                 }
+               }
+               return elementControllers;
+             }
+
+             function nodeLinkFn(childLinkFn, scope, linkNode, $rootElement, boundTranscludeFn) {
+               var linkFn, isolateScope, controllerScope, elementControllers, transcludeFn, $element,
+                   attrs, removeScopeBindingWatches, removeControllerBindingWatches;
+
+               if (compileNode === linkNode) {
+                 attrs = templateAttrs;
+                 $element = templateAttrs.$$element;
+               } else {
+                 $element = jqLite(linkNode);
+                 attrs = new Attributes($element, templateAttrs);
+               }
+
+               controllerScope = scope;
+               if (newIsolateScopeDirective) {
+                 isolateScope = scope.$new(true);
+               } else if (newScopeDirective) {
+                 controllerScope = scope.$parent;
+               }
+
+               if (boundTranscludeFn) {
+                 // track `boundTranscludeFn` so it can be unwrapped if `transcludeFn`
+                 // is later passed as `parentBoundTranscludeFn` to `publicLinkFn`
+                 transcludeFn = controllersBoundTransclude;
+                 transcludeFn.$$boundTransclude = boundTranscludeFn;
+               }
+
+               if (controllerDirectives) {
+                 elementControllers = setupControllers($element, attrs, transcludeFn, controllerDirectives, isolateScope, scope);
+               }
+
+               if (newIsolateScopeDirective) {
+                 // Initialize isolate scope bindings for new isolate scope directive.
+                 compile.$$addScopeInfo($element, isolateScope, true, !(templateDirective && (templateDirective === newIsolateScopeDirective ||
+                     templateDirective === newIsolateScopeDirective.$$originalDirective)));
+                 compile.$$addScopeClass($element, true);
+                 isolateScope.$$isolateBindings =
+                     newIsolateScopeDirective.$$isolateBindings;
+                 removeScopeBindingWatches = initializeDirectiveBindings(scope, attrs, isolateScope,
+                                               isolateScope.$$isolateBindings,
+                                               newIsolateScopeDirective);
+                 if (removeScopeBindingWatches) {
+                   isolateScope.$on('$destroy', removeScopeBindingWatches);
+                 }
+               }
+
+               // Initialize bindToController bindings
+               for (var name in elementControllers) {
+                 var controllerDirective = controllerDirectives[name];
+                 var controller = elementControllers[name];
+                 var bindings = controllerDirective.$$bindings.bindToController;
+
+                 if (controller.identifier && bindings) {
+                   removeControllerBindingWatches =
+                     initializeDirectiveBindings(controllerScope, attrs, controller.instance, bindings, controllerDirective);
+                 }
+
+                 var controllerResult = controller();
+                 if (controllerResult !== controller.instance) {
+                   // If the controller constructor has a return value, overwrite the instance
+                   // from setupControllers
+                   controller.instance = controllerResult;
+                   $element.data('$' + controllerDirective.name + 'Controller', controllerResult);
+                   removeControllerBindingWatches && removeControllerBindingWatches();
+                   removeControllerBindingWatches =
+                     initializeDirectiveBindings(controllerScope, attrs, controller.instance, bindings, controllerDirective);
+                 }
+               }
+
+               // PRELINKING
+               for (i = 0, ii = preLinkFns.length; i < ii; i++) {
+                 linkFn = preLinkFns[i];
+                 invokeLinkFn(linkFn,
+                     linkFn.isolateScope ? isolateScope : scope,
+                     $element,
+                     attrs,
+                     linkFn.require && getControllers(linkFn.directiveName, linkFn.require, $element, elementControllers),
+                     transcludeFn
+                 );
+               }
+
+               // RECURSION
+               // We only pass the isolate scope, if the isolate directive has a template,
+               // otherwise the child elements do not belong to the isolate directive.
+               var scopeToChild = scope;
+               if (newIsolateScopeDirective && (newIsolateScopeDirective.template || newIsolateScopeDirective.templateUrl === null)) {
+                 scopeToChild = isolateScope;
+               }
+               childLinkFn && childLinkFn(scopeToChild, linkNode.childNodes, undefined, boundTranscludeFn);
+
+               // POSTLINKING
+               for (i = postLinkFns.length - 1; i >= 0; i--) {
+                 linkFn = postLinkFns[i];
+                 invokeLinkFn(linkFn,
+                     linkFn.isolateScope ? isolateScope : scope,
+                     $element,
+                     attrs,
+                     linkFn.require && getControllers(linkFn.directiveName, linkFn.require, $element, elementControllers),
+                     transcludeFn
+                 );
+               }
+
+               // This is the function that is injected as `$transclude`.
+               // Note: all arguments are optional!
+               function controllersBoundTransclude(scope, cloneAttachFn, futureParentElement) {
+                 var transcludeControllers;
+
+                 // No scope passed in:
+                 if (!isScope(scope)) {
+                   futureParentElement = cloneAttachFn;
+                   cloneAttachFn = scope;
+                   scope = undefined;
+                 }
+
+                 if (hasElementTranscludeDirective) {
+                   transcludeControllers = elementControllers;
+                 }
+                 if (!futureParentElement) {
+                   futureParentElement = hasElementTranscludeDirective ? $element.parent() : $element;
+                 }
+                 return boundTranscludeFn(scope, cloneAttachFn, transcludeControllers, futureParentElement, scopeToChild);
+               }
+             }
+           }
+
+           // Depending upon the context in which a directive finds itself it might need to have a new isolated
+           // or child scope created. For instance:
+           // * if the directive has been pulled into a template because another directive with a higher priority
+           // asked for element transclusion
+           // * if the directive itself asks for transclusion but it is at the root of a template and the original
+           // element was replaced. See https://github.com/angular/angular.js/issues/12936
+           function markDirectiveScope(directives, isolateScope, newScope) {
+             for (var j = 0, jj = directives.length; j < jj; j++) {
+               directives[j] = inherit(directives[j], {$$isolateScope: isolateScope, $$newScope: newScope});
+             }
+           }
+
+           /**
+            * looks up the directive and decorates it with exception handling and proper parameters. We
+            * call this the boundDirective.
+            *
+            * @param {string} name name of the directive to look up.
+            * @param {string} location The directive must be found in specific format.
+            *   String containing any of theses characters:
+            *
+            *   * `E`: element name
+            *   * `A': attribute
+            *   * `C`: class
+            *   * `M`: comment
+            * @returns {boolean} true if directive was added.
+            */
+           function addDirective(tDirectives, name, location, maxPriority, ignoreDirective, startAttrName,
+                                 endAttrName) {
+             if (name === ignoreDirective) return null;
+             var match = null;
+             if (hasDirectives.hasOwnProperty(name)) {
+               for (var directive, directives = $injector.get(name + Suffix),
+                   i = 0, ii = directives.length; i < ii; i++) {
+                 try {
+                   directive = directives[i];
+                   if ((isUndefined(maxPriority) || maxPriority > directive.priority) &&
+                        directive.restrict.indexOf(location) != -1) {
+                     if (startAttrName) {
+                       directive = inherit(directive, {$$start: startAttrName, $$end: endAttrName});
+                     }
+                     tDirectives.push(directive);
+                     match = directive;
+                   }
+                 } catch (e) { $exceptionHandler(e); }
+               }
+             }
+             return match;
+           }
+
+
+           /**
+            * looks up the directive and returns true if it is a multi-element directive,
+            * and therefore requires DOM nodes between -start and -end markers to be grouped
+            * together.
+            *
+            * @param {string} name name of the directive to look up.
+            * @returns true if directive was registered as multi-element.
+            */
+           function directiveIsMultiElement(name) {
+             if (hasDirectives.hasOwnProperty(name)) {
+               for (var directive, directives = $injector.get(name + Suffix),
+                   i = 0, ii = directives.length; i < ii; i++) {
+                 directive = directives[i];
+                 if (directive.multiElement) {
+                   return true;
+                 }
+               }
+             }
+             return false;
+           }
+
+           /**
+            * When the element is replaced with HTML template then the new attributes
+            * on the template need to be merged with the existing attributes in the DOM.
+            * The desired effect is to have both of the attributes present.
+            *
+            * @param {object} dst destination attributes (original DOM)
+            * @param {object} src source attributes (from the directive template)
+            */
+           function mergeTemplateAttributes(dst, src) {
+             var srcAttr = src.$attr,
+                 dstAttr = dst.$attr,
+                 $element = dst.$$element;
+
+             // reapply the old attributes to the new element
+             forEach(dst, function(value, key) {
+               if (key.charAt(0) != '$') {
+                 if (src[key] && src[key] !== value) {
+                   value += (key === 'style' ? ';' : ' ') + src[key];
+                 }
+                 dst.$set(key, value, true, srcAttr[key]);
+               }
+             });
+
+             // copy the new attributes on the old attrs object
+             forEach(src, function(value, key) {
+               if (key == 'class') {
+                 safeAddClass($element, value);
+                 dst['class'] = (dst['class'] ? dst['class'] + ' ' : '') + value;
+               } else if (key == 'style') {
+                 $element.attr('style', $element.attr('style') + ';' + value);
+                 dst['style'] = (dst['style'] ? dst['style'] + ';' : '') + value;
+                 // `dst` will never contain hasOwnProperty as DOM parser won't let it.
+                 // You will get an "InvalidCharacterError: DOM Exception 5" error if you
+                 // have an attribute like "has-own-property" or "data-has-own-property", etc.
+               } else if (key.charAt(0) != '$' && !dst.hasOwnProperty(key)) {
+                 dst[key] = value;
+                 dstAttr[key] = srcAttr[key];
+               }
+             });
+           }
+
+
+           function compileTemplateUrl(directives, $compileNode, tAttrs,
+               $rootElement, childTranscludeFn, preLinkFns, postLinkFns, previousCompileContext) {
+             var linkQueue = [],
+                 afterTemplateNodeLinkFn,
+                 afterTemplateChildLinkFn,
+                 beforeTemplateCompileNode = $compileNode[0],
+                 origAsyncDirective = directives.shift(),
+                 derivedSyncDirective = inherit(origAsyncDirective, {
+                   templateUrl: null, transclude: null, replace: null, $$originalDirective: origAsyncDirective
+                 }),
+                 templateUrl = (isFunction(origAsyncDirective.templateUrl))
+                     ? origAsyncDirective.templateUrl($compileNode, tAttrs)
+                     : origAsyncDirective.templateUrl,
+                 templateNamespace = origAsyncDirective.templateNamespace;
+
+             $compileNode.empty();
+
+             $templateRequest(templateUrl)
+               .then(function(content) {
+                 var compileNode, tempTemplateAttrs, $template, childBoundTranscludeFn;
+
+                 content = denormalizeTemplate(content);
+
+                 if (origAsyncDirective.replace) {
+                   if (jqLiteIsTextNode(content)) {
+                     $template = [];
+                   } else {
+                     $template = removeComments(wrapTemplate(templateNamespace, trim(content)));
+                   }
+                   compileNode = $template[0];
+
+                   if ($template.length != 1 || compileNode.nodeType !== NODE_TYPE_ELEMENT) {
+                     throw $compileMinErr('tplrt',
+                         "Template for directive '{0}' must have exactly one root element. {1}",
+                         origAsyncDirective.name, templateUrl);
+                   }
+
+                   tempTemplateAttrs = {$attr: {}};
+                   replaceWith($rootElement, $compileNode, compileNode);
+                   var templateDirectives = collectDirectives(compileNode, [], tempTemplateAttrs);
+
+                   if (isObject(origAsyncDirective.scope)) {
+                     // the original directive that caused the template to be loaded async required
+                     // an isolate scope
+                     markDirectiveScope(templateDirectives, true);
+                   }
+                   directives = templateDirectives.concat(directives);
+                   mergeTemplateAttributes(tAttrs, tempTemplateAttrs);
+                 } else {
+                   compileNode = beforeTemplateCompileNode;
+                   $compileNode.html(content);
+                 }
+
+                 directives.unshift(derivedSyncDirective);
+
+                 afterTemplateNodeLinkFn = applyDirectivesToNode(directives, compileNode, tAttrs,
+                     childTranscludeFn, $compileNode, origAsyncDirective, preLinkFns, postLinkFns,
+                     previousCompileContext);
+                 forEach($rootElement, function(node, i) {
+                   if (node == compileNode) {
+                     $rootElement[i] = $compileNode[0];
+                   }
+                 });
+                 afterTemplateChildLinkFn = compileNodes($compileNode[0].childNodes, childTranscludeFn);
+
+                 while (linkQueue.length) {
+                   var scope = linkQueue.shift(),
+                       beforeTemplateLinkNode = linkQueue.shift(),
+                       linkRootElement = linkQueue.shift(),
+                       boundTranscludeFn = linkQueue.shift(),
+                       linkNode = $compileNode[0];
+
+                   if (scope.$$destroyed) continue;
+
+                   if (beforeTemplateLinkNode !== beforeTemplateCompileNode) {
+                     var oldClasses = beforeTemplateLinkNode.className;
+
+                     if (!(previousCompileContext.hasElementTranscludeDirective &&
+                         origAsyncDirective.replace)) {
+                       // it was cloned therefore we have to clone as well.
+                       linkNode = jqLiteClone(compileNode);
+                     }
+                     replaceWith(linkRootElement, jqLite(beforeTemplateLinkNode), linkNode);
+
+                     // Copy in CSS classes from original node
+                     safeAddClass(jqLite(linkNode), oldClasses);
+                   }
+                   if (afterTemplateNodeLinkFn.transcludeOnThisElement) {
+                     childBoundTranscludeFn = createBoundTranscludeFn(scope, afterTemplateNodeLinkFn.transclude, boundTranscludeFn);
+                   } else {
+                     childBoundTranscludeFn = boundTranscludeFn;
+                   }
+                   afterTemplateNodeLinkFn(afterTemplateChildLinkFn, scope, linkNode, $rootElement,
+                     childBoundTranscludeFn);
+                 }
+                 linkQueue = null;
+               });
+
+             return function delayedNodeLinkFn(ignoreChildLinkFn, scope, node, rootElement, boundTranscludeFn) {
+               var childBoundTranscludeFn = boundTranscludeFn;
+               if (scope.$$destroyed) return;
+               if (linkQueue) {
+                 linkQueue.push(scope,
+                                node,
+                                rootElement,
+                                childBoundTranscludeFn);
+               } else {
+                 if (afterTemplateNodeLinkFn.transcludeOnThisElement) {
+                   childBoundTranscludeFn = createBoundTranscludeFn(scope, afterTemplateNodeLinkFn.transclude, boundTranscludeFn);
+                 }
+                 afterTemplateNodeLinkFn(afterTemplateChildLinkFn, scope, node, rootElement, childBoundTranscludeFn);
+               }
+             };
+           }
+
+
+           /**
+            * Sorting function for bound directives.
+            */
+           function byPriority(a, b) {
+             var diff = b.priority - a.priority;
+             if (diff !== 0) return diff;
+             if (a.name !== b.name) return (a.name < b.name) ? -1 : 1;
+             return a.index - b.index;
+           }
+
+           function assertNoDuplicate(what, previousDirective, directive, element) {
+
+             function wrapModuleNameIfDefined(moduleName) {
+               return moduleName ?
+                 (' (module: ' + moduleName + ')') :
+                 '';
+             }
+
+             if (previousDirective) {
+               throw $compileMinErr('multidir', 'Multiple directives [{0}{1}, {2}{3}] asking for {4} on: {5}',
+                   previousDirective.name, wrapModuleNameIfDefined(previousDirective.$$moduleName),
+                   directive.name, wrapModuleNameIfDefined(directive.$$moduleName), what, startingTag(element));
+             }
+           }
+
+
+           function addTextInterpolateDirective(directives, text) {
+             var interpolateFn = $interpolate(text, true);
+             if (interpolateFn) {
+               directives.push({
+                 priority: 0,
+                 compile: function textInterpolateCompileFn(templateNode) {
+                   var templateNodeParent = templateNode.parent(),
+                       hasCompileParent = !!templateNodeParent.length;
+
+                   // When transcluding a template that has bindings in the root
+                   // we don't have a parent and thus need to add the class during linking fn.
+                   if (hasCompileParent) compile.$$addBindingClass(templateNodeParent);
+
+                   return function textInterpolateLinkFn(scope, node) {
+                     var parent = node.parent();
+                     if (!hasCompileParent) compile.$$addBindingClass(parent);
+                     compile.$$addBindingInfo(parent, interpolateFn.expressions);
+                     scope.$watch(interpolateFn, function interpolateFnWatchAction(value) {
+                       node[0].nodeValue = value;
+                     });
+                   };
+                 }
+               });
+             }
+           }
+
+
+           function wrapTemplate(type, template) {
+             type = lowercase(type || 'html');
+             switch (type) {
+             case 'svg':
+             case 'math':
+               var wrapper = document.createElement('div');
+               wrapper.innerHTML = '<' + type + '>' + template + '</' + type + '>';
+               return wrapper.childNodes[0].childNodes;
+             default:
+               return template;
+             }
+           }
+
+
+           function getTrustedContext(node, attrNormalizedName) {
+             if (attrNormalizedName == "srcdoc") {
+               return $sce.HTML;
+             }
+             var tag = nodeName_(node);
+             // maction[xlink:href] can source SVG.  It's not limited to <maction>.
+             if (attrNormalizedName == "xlinkHref" ||
+                 (tag == "form" && attrNormalizedName == "action") ||
+                 (tag != "img" && (attrNormalizedName == "src" ||
+                                   attrNormalizedName == "ngSrc"))) {
+               return $sce.RESOURCE_URL;
+             }
+           }
+
+
+           function addAttrInterpolateDirective(node, directives, value, name, allOrNothing) {
+             var trustedContext = getTrustedContext(node, name);
+             allOrNothing = ALL_OR_NOTHING_ATTRS[name] || allOrNothing;
+
+             var interpolateFn = $interpolate(value, true, trustedContext, allOrNothing);
+
+             // no interpolation found -> ignore
+             if (!interpolateFn) return;
+
+
+             if (name === "multiple" && nodeName_(node) === "select") {
+               throw $compileMinErr("selmulti",
+                   "Binding to the 'multiple' attribute is not supported. Element: {0}",
+                   startingTag(node));
+             }
+
+             directives.push({
+               priority: 100,
+               compile: function() {
+                   return {
+                     pre: function attrInterpolatePreLinkFn(scope, element, attr) {
+                       var $$observers = (attr.$$observers || (attr.$$observers = createMap()));
+
+                       if (EVENT_HANDLER_ATTR_REGEXP.test(name)) {
+                         throw $compileMinErr('nodomevents',
+                             "Interpolations for HTML DOM event attributes are disallowed.  Please use the " +
+                                 "ng- versions (such as ng-click instead of onclick) instead.");
+                       }
+
+                       // If the attribute has changed since last $interpolate()ed
+                       var newValue = attr[name];
+                       if (newValue !== value) {
+                         // we need to interpolate again since the attribute value has been updated
+                         // (e.g. by another directive's compile function)
+                         // ensure unset/empty values make interpolateFn falsy
+                         interpolateFn = newValue && $interpolate(newValue, true, trustedContext, allOrNothing);
+                         value = newValue;
+                       }
+
+                       // if attribute was updated so that there is no interpolation going on we don't want to
+                       // register any observers
+                       if (!interpolateFn) return;
+
+                       // initialize attr object so that it's ready in case we need the value for isolate
+                       // scope initialization, otherwise the value would not be available from isolate
+                       // directive's linking fn during linking phase
+                       attr[name] = interpolateFn(scope);
+
+                       ($$observers[name] || ($$observers[name] = [])).$$inter = true;
+                       (attr.$$observers && attr.$$observers[name].$$scope || scope).
+                         $watch(interpolateFn, function interpolateFnWatchAction(newValue, oldValue) {
+                           //special case for class attribute addition + removal
+                           //so that class changes can tap into the animation
+                           //hooks provided by the $animate service. Be sure to
+                           //skip animations when the first digest occurs (when
+                           //both the new and the old values are the same) since
+                           //the CSS classes are the non-interpolated values
+                           if (name === 'class' && newValue != oldValue) {
+                             attr.$updateClass(newValue, oldValue);
+                           } else {
+                             attr.$set(name, newValue);
+                           }
+                         });
+                     }
+                   };
+                 }
+             });
+           }
+
+
+           /**
+            * This is a special jqLite.replaceWith, which can replace items which
+            * have no parents, provided that the containing jqLite collection is provided.
+            *
+            * @param {JqLite=} $rootElement The root of the compile tree. Used so that we can replace nodes
+            *                               in the root of the tree.
+            * @param {JqLite} elementsToRemove The jqLite element which we are going to replace. We keep
+            *                                  the shell, but replace its DOM node reference.
+            * @param {Node} newNode The new DOM node.
+            */
+           function replaceWith($rootElement, elementsToRemove, newNode) {
+             var firstElementToRemove = elementsToRemove[0],
+                 removeCount = elementsToRemove.length,
+                 parent = firstElementToRemove.parentNode,
+                 i, ii;
+
+             if ($rootElement) {
+               for (i = 0, ii = $rootElement.length; i < ii; i++) {
+                 if ($rootElement[i] == firstElementToRemove) {
+                   $rootElement[i++] = newNode;
+                   for (var j = i, j2 = j + removeCount - 1,
+                            jj = $rootElement.length;
+                        j < jj; j++, j2++) {
+                     if (j2 < jj) {
+                       $rootElement[j] = $rootElement[j2];
+                     } else {
+                       delete $rootElement[j];
+                     }
+                   }
+                   $rootElement.length -= removeCount - 1;
+
+                   // If the replaced element is also the jQuery .context then replace it
+                   // .context is a deprecated jQuery api, so we should set it only when jQuery set it
+                   // http://api.jquery.com/context/
+                   if ($rootElement.context === firstElementToRemove) {
+                     $rootElement.context = newNode;
+                   }
+                   break;
+                 }
+               }
+             }
+
+             if (parent) {
+               parent.replaceChild(newNode, firstElementToRemove);
+             }
+
+             // TODO(perf): what's this document fragment for? is it needed? can we at least reuse it?
+             var fragment = document.createDocumentFragment();
+             fragment.appendChild(firstElementToRemove);
+
+             if (jqLite.hasData(firstElementToRemove)) {
+               // Copy over user data (that includes Angular's $scope etc.). Don't copy private
+               // data here because there's no public interface in jQuery to do that and copying over
+               // event listeners (which is the main use of private data) wouldn't work anyway.
+               jqLite.data(newNode, jqLite.data(firstElementToRemove));
+
+               // Remove data of the replaced element. We cannot just call .remove()
+               // on the element it since that would deallocate scope that is needed
+               // for the new node. Instead, remove the data "manually".
+               if (!jQuery) {
+                 delete jqLite.cache[firstElementToRemove[jqLite.expando]];
+               } else {
+                 // jQuery 2.x doesn't expose the data storage. Use jQuery.cleanData to clean up after
+                 // the replaced element. The cleanData version monkey-patched by Angular would cause
+                 // the scope to be trashed and we do need the very same scope to work with the new
+                 // element. However, we cannot just cache the non-patched version and use it here as
+                 // that would break if another library patches the method after Angular does (one
+                 // example is jQuery UI). Instead, set a flag indicating scope destroying should be
+                 // skipped this one time.
+                 skipDestroyOnNextJQueryCleanData = true;
+                 jQuery.cleanData([firstElementToRemove]);
+               }
+             }
+
+             for (var k = 1, kk = elementsToRemove.length; k < kk; k++) {
+               var element = elementsToRemove[k];
+               jqLite(element).remove(); // must do this way to clean up expando
+               fragment.appendChild(element);
+               delete elementsToRemove[k];
+             }
+
+             elementsToRemove[0] = newNode;
+             elementsToRemove.length = 1;
+           }
+
+
+           function cloneAndAnnotateFn(fn, annotation) {
+             return extend(function() { return fn.apply(null, arguments); }, fn, annotation);
+           }
+
+
+           function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) {
+             try {
+               linkFn(scope, $element, attrs, controllers, transcludeFn);
+             } catch (e) {
+               $exceptionHandler(e, startingTag($element));
+             }
+           }
+
+
+           // Set up $watches for isolate scope and controller bindings. This process
+           // only occurs for isolate scopes and new scopes with controllerAs.
+           function initializeDirectiveBindings(scope, attrs, destination, bindings, directive) {
+             var removeWatchCollection = [];
+             forEach(bindings, function(definition, scopeName) {
+               var attrName = definition.attrName,
+               optional = definition.optional,
+               mode = definition.mode, // @, =, or &
+               lastValue,
+               parentGet, parentSet, compare;
+
+               switch (mode) {
+
+                 case '@':
+                   if (!optional && !hasOwnProperty.call(attrs, attrName)) {
+                     destination[scopeName] = attrs[attrName] = void 0;
+                   }
+                   attrs.$observe(attrName, function(value) {
+                     if (isString(value)) {
+                       destination[scopeName] = value;
+                     }
+                   });
+                   attrs.$$observers[attrName].$$scope = scope;
+                   if (isString(attrs[attrName])) {
+                     // If the attribute has been provided then we trigger an interpolation to ensure
+                     // the value is there for use in the link fn
+                     destination[scopeName] = $interpolate(attrs[attrName])(scope);
+                   }
+                   break;
+
+                 case '=':
+                   if (!hasOwnProperty.call(attrs, attrName)) {
+                     if (optional) break;
+                     attrs[attrName] = void 0;
+                   }
+                   if (optional && !attrs[attrName]) break;
+
+                   parentGet = $parse(attrs[attrName]);
+                   if (parentGet.literal) {
+                     compare = equals;
+                   } else {
+                     compare = function(a, b) { return a === b || (a !== a && b !== b); };
+                   }
+                   parentSet = parentGet.assign || function() {
+                     // reset the change, or we will throw this exception on every $digest
+                     lastValue = destination[scopeName] = parentGet(scope);
+                     throw $compileMinErr('nonassign',
+                         "Expression '{0}' used with directive '{1}' is non-assignable!",
+                         attrs[attrName], directive.name);
+                   };
+                   lastValue = destination[scopeName] = parentGet(scope);
+                   var parentValueWatch = function parentValueWatch(parentValue) {
+                     if (!compare(parentValue, destination[scopeName])) {
+                       // we are out of sync and need to copy
+                       if (!compare(parentValue, lastValue)) {
+                         // parent changed and it has precedence
+                         destination[scopeName] = parentValue;
+                       } else {
+                         // if the parent can be assigned then do so
+                         parentSet(scope, parentValue = destination[scopeName]);
+                       }
+                     }
+                     return lastValue = parentValue;
+                   };
+                   parentValueWatch.$stateful = true;
+                   var removeWatch;
+                   if (definition.collection) {
+                     removeWatch = scope.$watchCollection(attrs[attrName], parentValueWatch);
+                   } else {
+                     removeWatch = scope.$watch($parse(attrs[attrName], parentValueWatch), null, parentGet.literal);
+                   }
+                   removeWatchCollection.push(removeWatch);
+                   break;
+
+                 case '&':
+                   // Don't assign Object.prototype method to scope
+                   parentGet = attrs.hasOwnProperty(attrName) ? $parse(attrs[attrName]) : noop;
+
+                   // Don't assign noop to destination if expression is not valid
+                   if (parentGet === noop && optional) break;
+
+                   destination[scopeName] = function(locals) {
+                     return parentGet(scope, locals);
+                   };
+                   break;
+               }
+             });
+
+             return removeWatchCollection.length && function removeWatches() {
+               for (var i = 0, ii = removeWatchCollection.length; i < ii; ++i) {
+                 removeWatchCollection[i]();
+               }
+             };
+           }
+         }];
+       }
+
+       var PREFIX_REGEXP = /^((?:x|data)[\:\-_])/i;
+       /**
+        * Converts all accepted directives format into proper directive name.
+        * @param name Name to normalize
+        */
+       function directiveNormalize(name) {
+         return camelCase(name.replace(PREFIX_REGEXP, ''));
+       }
+
+       /**
+        * @ngdoc type
+        * @name $compile.directive.Attributes
+        *
+        * @description
+        * A shared object between directive compile / linking functions which contains normalized DOM
+        * element attributes. The values reflect current binding state `{{ }}`. The normalization is
+        * needed since all of these are treated as equivalent in Angular:
+        *
+        * ```
+        *    <span ng:bind="a" ng-bind="a" data-ng-bind="a" x-ng-bind="a">
+        * ```
+        */
+
+       /**
+        * @ngdoc property
+        * @name $compile.directive.Attributes#$attr
+        *
+        * @description
+        * A map of DOM element attribute names to the normalized name. This is
+        * needed to do reverse lookup from normalized name back to actual name.
+        */
+
+
+       /**
+        * @ngdoc method
+        * @name $compile.directive.Attributes#$set
+        * @kind function
+        *
+        * @description
+        * Set DOM element attribute value.
+        *
+        *
+        * @param {string} name Normalized element attribute name of the property to modify. The name is
+        *          reverse-translated using the {@link ng.$compile.directive.Attributes#$attr $attr}
+        *          property to the original name.
+        * @param {string} value Value to set the attribute to. The value can be an interpolated string.
+        */
+
+
+
+       /**
+        * Closure compiler type information
+        */
+
+       function nodesetLinkingFn(
+         /* angular.Scope */ scope,
+         /* NodeList */ nodeList,
+         /* Element */ rootElement,
+         /* function(Function) */ boundTranscludeFn
+       ) {}
+
+       function directiveLinkingFn(
+         /* nodesetLinkingFn */ nodesetLinkingFn,
+         /* angular.Scope */ scope,
+         /* Node */ node,
+         /* Element */ rootElement,
+         /* function(Function) */ boundTranscludeFn
+       ) {}
+
+       function tokenDifference(str1, str2) {
+         var values = '',
+             tokens1 = str1.split(/\s+/),
+             tokens2 = str2.split(/\s+/);
+
+         outer:
+         for (var i = 0; i < tokens1.length; i++) {
+           var token = tokens1[i];
+           for (var j = 0; j < tokens2.length; j++) {
+             if (token == tokens2[j]) continue outer;
+           }
+           values += (values.length > 0 ? ' ' : '') + token;
+         }
+         return values;
+       }
+
+       function removeComments(jqNodes) {
+         jqNodes = jqLite(jqNodes);
+         var i = jqNodes.length;
+
+         if (i <= 1) {
+           return jqNodes;
+         }
+
+         while (i--) {
+           var node = jqNodes[i];
+           if (node.nodeType === NODE_TYPE_COMMENT) {
+             splice.call(jqNodes, i, 1);
+           }
+         }
+         return jqNodes;
+       }
+
+       var $controllerMinErr = minErr('$controller');
+
+
+       var CNTRL_REG = /^(\S+)(\s+as\s+(\w+))?$/;
+       function identifierForController(controller, ident) {
+         if (ident && isString(ident)) return ident;
+         if (isString(controller)) {
+           var match = CNTRL_REG.exec(controller);
+           if (match) return match[3];
+         }
+       }
+
+
+       /**
+        * @ngdoc provider
+        * @name $controllerProvider
+        * @description
+        * The {@link ng.$controller $controller service} is used by Angular to create new
+        * controllers.
+        *
+        * This provider allows controller registration via the
+        * {@link ng.$controllerProvider#register register} method.
+        */
+       function $ControllerProvider() {
+         var controllers = {},
+             globals = false;
+
+         /**
+          * @ngdoc method
+          * @name $controllerProvider#register
+          * @param {string|Object} name Controller name, or an object map of controllers where the keys are
+          *    the names and the values are the constructors.
+          * @param {Function|Array} constructor Controller constructor fn (optionally decorated with DI
+          *    annotations in the array notation).
+          */
+         this.register = function(name, constructor) {
+           assertNotHasOwnProperty(name, 'controller');
+           if (isObject(name)) {
+             extend(controllers, name);
+           } else {
+             controllers[name] = constructor;
+           }
+         };
+
+         /**
+          * @ngdoc method
+          * @name $controllerProvider#allowGlobals
+          * @description If called, allows `$controller` to find controller constructors on `window`
+          */
+         this.allowGlobals = function() {
+           globals = true;
+         };
+
+
+         this.$get = ['$injector', '$window', function($injector, $window) {
+
+           /**
+            * @ngdoc service
+            * @name $controller
+            * @requires $injector
+            *
+            * @param {Function|string} constructor If called with a function then it's considered to be the
+            *    controller constructor function. Otherwise it's considered to be a string which is used
+            *    to retrieve the controller constructor using the following steps:
+            *
+            *    * check if a controller with given name is registered via `$controllerProvider`
+            *    * check if evaluating the string on the current scope returns a constructor
+            *    * if $controllerProvider#allowGlobals, check `window[constructor]` on the global
+            *      `window` object (not recommended)
+            *
+            *    The string can use the `controller as property` syntax, where the controller instance is published
+            *    as the specified property on the `scope`; the `scope` must be injected into `locals` param for this
+            *    to work correctly.
+            *
+            * @param {Object} locals Injection locals for Controller.
+            * @return {Object} Instance of given controller.
+            *
+            * @description
+            * `$controller` service is responsible for instantiating controllers.
+            *
+            * It's just a simple call to {@link auto.$injector $injector}, but extracted into
+            * a service, so that one can override this service with [BC version](https://gist.github.com/1649788).
+            */
+           return function(expression, locals, later, ident) {
+             // PRIVATE API:
+             //   param `later` --- indicates that the controller's constructor is invoked at a later time.
+             //                     If true, $controller will allocate the object with the correct
+             //                     prototype chain, but will not invoke the controller until a returned
+             //                     callback is invoked.
+             //   param `ident` --- An optional label which overrides the label parsed from the controller
+             //                     expression, if any.
+             var instance, match, constructor, identifier;
+             later = later === true;
+             if (ident && isString(ident)) {
+               identifier = ident;
+             }
+
+             if (isString(expression)) {
+               match = expression.match(CNTRL_REG);
+               if (!match) {
+                 throw $controllerMinErr('ctrlfmt',
+                   "Badly formed controller string '{0}'. " +
+                   "Must match `__name__ as __id__` or `__name__`.", expression);
+               }
+               constructor = match[1],
+               identifier = identifier || match[3];
+               expression = controllers.hasOwnProperty(constructor)
+                   ? controllers[constructor]
+                   : getter(locals.$scope, constructor, true) ||
+                       (globals ? getter($window, constructor, true) : undefined);
+
+               assertArgFn(expression, constructor, true);
+             }
+
+             if (later) {
+               // Instantiate controller later:
+               // This machinery is used to create an instance of the object before calling the
+               // controller's constructor itself.
+               //
+               // This allows properties to be added to the controller before the constructor is
+               // invoked. Primarily, this is used for isolate scope bindings in $compile.
+               //
+               // This feature is not intended for use by applications, and is thus not documented
+               // publicly.
+               // Object creation: http://jsperf.com/create-constructor/2
+               var controllerPrototype = (isArray(expression) ?
+                 expression[expression.length - 1] : expression).prototype;
+               instance = Object.create(controllerPrototype || null);
+
+               if (identifier) {
+                 addIdentifier(locals, identifier, instance, constructor || expression.name);
+               }
+
+               var instantiate;
+               return instantiate = extend(function() {
+                 var result = $injector.invoke(expression, instance, locals, constructor);
+                 if (result !== instance && (isObject(result) || isFunction(result))) {
+                   instance = result;
+                   if (identifier) {
+                     // If result changed, re-assign controllerAs value to scope.
+                     addIdentifier(locals, identifier, instance, constructor || expression.name);
+                   }
+                 }
+                 return instance;
+               }, {
+                 instance: instance,
+                 identifier: identifier
+               });
+             }
+
+             instance = $injector.instantiate(expression, locals, constructor);
+
+             if (identifier) {
+               addIdentifier(locals, identifier, instance, constructor || expression.name);
+             }
+
+             return instance;
+           };
+
+           function addIdentifier(locals, identifier, instance, name) {
+             if (!(locals && isObject(locals.$scope))) {
+               throw minErr('$controller')('noscp',
+                 "Cannot export controller '{0}' as '{1}'! No $scope object provided via `locals`.",
+                 name, identifier);
+             }
+
+             locals.$scope[identifier] = instance;
+           }
+         }];
+       }
+
+       /**
+        * @ngdoc service
+        * @name $document
+        * @requires $window
+        *
+        * @description
+        * A {@link angular.element jQuery or jqLite} wrapper for the browser's `window.document` object.
+        *
+        * @example
+          <example module="documentExample">
+            <file name="index.html">
+              <div ng-controller="ExampleController">
+                <p>$document title: <b ng-bind="title"></b></p>
+                <p>window.document title: <b ng-bind="windowTitle"></b></p>
+              </div>
+            </file>
+            <file name="script.js">
+              angular.module('documentExample', [])
+                .controller('ExampleController', ['$scope', '$document', function($scope, $document) {
+                  $scope.title = $document[0].title;
+                  $scope.windowTitle = angular.element(window.document)[0].title;
+                }]);
+            </file>
+          </example>
+        */
+       function $DocumentProvider() {
+         this.$get = ['$window', function(window) {
+           return jqLite(window.document);
+         }];
+       }
+
+       /**
+        * @ngdoc service
+        * @name $exceptionHandler
+        * @requires ng.$log
+        *
+        * @description
+        * Any uncaught exception in angular expressions is delegated to this service.
+        * The default implementation simply delegates to `$log.error` which logs it into
+        * the browser console.
+        *
+        * In unit tests, if `angular-mocks.js` is loaded, this service is overridden by
+        * {@link ngMock.$exceptionHandler mock $exceptionHandler} which aids in testing.
+        *
+        * ## Example:
+        *
+        * ```js
+        *   angular.module('exceptionOverride', []).factory('$exceptionHandler', function() {
+        *     return function(exception, cause) {
+        *       exception.message += ' (caused by "' + cause + '")';
+        *       throw exception;
+        *     };
+        *   });
+        * ```
+        *
+        * This example will override the normal action of `$exceptionHandler`, to make angular
+        * exceptions fail hard when they happen, instead of just logging to the console.
+        *
+        * <hr />
+        * Note, that code executed in event-listeners (even those registered using jqLite's `on`/`bind`
+        * methods) does not delegate exceptions to the {@link ng.$exceptionHandler $exceptionHandler}
+        * (unless executed during a digest).
+        *
+        * If you wish, you can manually delegate exceptions, e.g.
+        * `try { ... } catch(e) { $exceptionHandler(e); }`
+        *
+        * @param {Error} exception Exception associated with the error.
+        * @param {string=} cause optional information about the context in which
+        *       the error was thrown.
+        *
+        */
+       function $ExceptionHandlerProvider() {
+         this.$get = ['$log', function($log) {
+           return function(exception, cause) {
+             $log.error.apply($log, arguments);
+           };
+         }];
+       }
+
+       var $$ForceReflowProvider = function() {
+         this.$get = ['$document', function($document) {
+           return function(domNode) {
+             //the line below will force the browser to perform a repaint so
+             //that all the animated elements within the animation frame will
+             //be properly updated and drawn on screen. This is required to
+             //ensure that the preparation animation is properly flushed so that
+             //the active state picks up from there. DO NOT REMOVE THIS LINE.
+             //DO NOT OPTIMIZE THIS LINE. THE MINIFIER WILL REMOVE IT OTHERWISE WHICH
+             //WILL RESULT IN AN UNPREDICTABLE BUG THAT IS VERY HARD TO TRACK DOWN AND
+             //WILL TAKE YEARS AWAY FROM YOUR LIFE.
+             if (domNode) {
+               if (!domNode.nodeType && domNode instanceof jqLite) {
+                 domNode = domNode[0];
+               }
+             } else {
+               domNode = $document[0].body;
+             }
+             return domNode.offsetWidth + 1;
+           };
+         }];
+       };
+
+       var APPLICATION_JSON = 'application/json';
+       var CONTENT_TYPE_APPLICATION_JSON = {'Content-Type': APPLICATION_JSON + ';charset=utf-8'};
+       var JSON_START = /^\[|^\{(?!\{)/;
+       var JSON_ENDS = {
+         '[': /]$/,
+         '{': /}$/
+       };
+       var JSON_PROTECTION_PREFIX = /^\)\]\}',?\n/;
+       var $httpMinErr = minErr('$http');
+       var $httpMinErrLegacyFn = function(method) {
+         return function() {
+           throw $httpMinErr('legacy', 'The method `{0}` on the promise returned from `$http` has been disabled.', method);
+         };
+       };
+
+       function serializeValue(v) {
+         if (isObject(v)) {
+           return isDate(v) ? v.toISOString() : toJson(v);
+         }
+         return v;
+       }
+
+
+       function $HttpParamSerializerProvider() {
+         /**
+          * @ngdoc service
+          * @name $httpParamSerializer
+          * @description
+          *
+          * Default {@link $http `$http`} params serializer that converts objects to strings
+          * according to the following rules:
+          *
+          * * `{'foo': 'bar'}` results in `foo=bar`
+          * * `{'foo': Date.now()}` results in `foo=2015-04-01T09%3A50%3A49.262Z` (`toISOString()` and encoded representation of a Date object)
+          * * `{'foo': ['bar', 'baz']}` results in `foo=bar&foo=baz` (repeated key for each array element)
+          * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D"` (stringified and encoded representation of an object)
+          *
+          * Note that serializer will sort the request parameters alphabetically.
+          * */
+
+         this.$get = function() {
+           return function ngParamSerializer(params) {
+             if (!params) return '';
+             var parts = [];
+             forEachSorted(params, function(value, key) {
+               if (value === null || isUndefined(value)) return;
+               if (isArray(value)) {
+                 forEach(value, function(v, k) {
+                   parts.push(encodeUriQuery(key)  + '=' + encodeUriQuery(serializeValue(v)));
+                 });
+               } else {
+                 parts.push(encodeUriQuery(key) + '=' + encodeUriQuery(serializeValue(value)));
+               }
+             });
+
+             return parts.join('&');
+           };
+         };
+       }
+
+       function $HttpParamSerializerJQLikeProvider() {
+         /**
+          * @ngdoc service
+          * @name $httpParamSerializerJQLike
+          * @description
+          *
+          * Alternative {@link $http `$http`} params serializer that follows
+          * jQuery's [`param()`](http://api.jquery.com/jquery.param/) method logic.
+          * The serializer will also sort the params alphabetically.
+          *
+          * To use it for serializing `$http` request parameters, set it as the `paramSerializer` property:
+          *
+          * ```js
+          * $http({
+          *   url: myUrl,
+          *   method: 'GET',
+          *   params: myParams,
+          *   paramSerializer: '$httpParamSerializerJQLike'
+          * });
+          * ```
+          *
+          * It is also possible to set it as the default `paramSerializer` in the
+          * {@link $httpProvider#defaults `$httpProvider`}.
+          *
+          * Additionally, you can inject the serializer and use it explicitly, for example to serialize
+          * form data for submission:
+          *
+          * ```js
+          * .controller(function($http, $httpParamSerializerJQLike) {
+          *   //...
+          *
+          *   $http({
+          *     url: myUrl,
+          *     method: 'POST',
+          *     data: $httpParamSerializerJQLike(myData),
+          *     headers: {
+          *       'Content-Type': 'application/x-www-form-urlencoded'
+          *     }
+          *   });
+          *
+          * });
+          * ```
+          *
+          * */
+         this.$get = function() {
+           return function jQueryLikeParamSerializer(params) {
+             if (!params) return '';
+             var parts = [];
+             serialize(params, '', true);
+             return parts.join('&');
+
+             function serialize(toSerialize, prefix, topLevel) {
+               if (toSerialize === null || isUndefined(toSerialize)) return;
+               if (isArray(toSerialize)) {
+                 forEach(toSerialize, function(value, index) {
+                   serialize(value, prefix + '[' + (isObject(value) ? index : '') + ']');
+                 });
+               } else if (isObject(toSerialize) && !isDate(toSerialize)) {
+                 forEachSorted(toSerialize, function(value, key) {
+                   serialize(value, prefix +
+                       (topLevel ? '' : '[') +
+                       key +
+                       (topLevel ? '' : ']'));
+                 });
+               } else {
+                 parts.push(encodeUriQuery(prefix) + '=' + encodeUriQuery(serializeValue(toSerialize)));
+               }
+             }
+           };
+         };
+       }
+
+       function defaultHttpResponseTransform(data, headers) {
+         if (isString(data)) {
+           // Strip json vulnerability protection prefix and trim whitespace
+           var tempData = data.replace(JSON_PROTECTION_PREFIX, '').trim();
+
+           if (tempData) {
+             var contentType = headers('Content-Type');
+             if ((contentType && (contentType.indexOf(APPLICATION_JSON) === 0)) || isJsonLike(tempData)) {
+               data = fromJson(tempData);
+             }
+           }
+         }
+
+         return data;
+       }
+
+       function isJsonLike(str) {
+           var jsonStart = str.match(JSON_START);
+           return jsonStart && JSON_ENDS[jsonStart[0]].test(str);
+       }
+
+       /**
+        * Parse headers into key value object
+        *
+        * @param {string} headers Raw headers as a string
+        * @returns {Object} Parsed headers as key value object
+        */
+       function parseHeaders(headers) {
+         var parsed = createMap(), i;
+
+         function fillInParsed(key, val) {
+           if (key) {
+             parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;
+           }
+         }
+
+         if (isString(headers)) {
+           forEach(headers.split('\n'), function(line) {
+             i = line.indexOf(':');
+             fillInParsed(lowercase(trim(line.substr(0, i))), trim(line.substr(i + 1)));
+           });
+         } else if (isObject(headers)) {
+           forEach(headers, function(headerVal, headerKey) {
+             fillInParsed(lowercase(headerKey), trim(headerVal));
+           });
+         }
+
+         return parsed;
+       }
+
+
+       /**
+        * Returns a function that provides access to parsed headers.
+        *
+        * Headers are lazy parsed when first requested.
+        * @see parseHeaders
+        *
+        * @param {(string|Object)} headers Headers to provide access to.
+        * @returns {function(string=)} Returns a getter function which if called with:
+        *
+        *   - if called with single an argument returns a single header value or null
+        *   - if called with no arguments returns an object containing all headers.
+        */
+       function headersGetter(headers) {
+         var headersObj;
+
+         return function(name) {
+           if (!headersObj) headersObj =  parseHeaders(headers);
+
+           if (name) {
+             var value = headersObj[lowercase(name)];
+             if (value === void 0) {
+               value = null;
+             }
+             return value;
+           }
+
+           return headersObj;
+         };
+       }
+
+
+       /**
+        * Chain all given functions
+        *
+        * This function is used for both request and response transforming
+        *
+        * @param {*} data Data to transform.
+        * @param {function(string=)} headers HTTP headers getter fn.
+        * @param {number} status HTTP status code of the response.
+        * @param {(Function|Array.<Function>)} fns Function or an array of functions.
+        * @returns {*} Transformed data.
+        */
+       function transformData(data, headers, status, fns) {
+         if (isFunction(fns)) {
+           return fns(data, headers, status);
+         }
+
+         forEach(fns, function(fn) {
+           data = fn(data, headers, status);
+         });
+
+         return data;
+       }
+
+
+       function isSuccess(status) {
+         return 200 <= status && status < 300;
+       }
+
+
+       /**
+        * @ngdoc provider
+        * @name $httpProvider
+        * @description
+        * Use `$httpProvider` to change the default behavior of the {@link ng.$http $http} service.
+        * */
+       function $HttpProvider() {
+         /**
+          * @ngdoc property
+          * @name $httpProvider#defaults
+          * @description
+          *
+          * Object containing default values for all {@link ng.$http $http} requests.
+          *
+          * - **`defaults.cache`** - {Object} - an object built with {@link ng.$cacheFactory `$cacheFactory`}
+          * that will provide the cache for all requests who set their `cache` property to `true`.
+          * If you set the `defaults.cache = false` then only requests that specify their own custom
+          * cache object will be cached. See {@link $http#caching $http Caching} for more information.
+          *
+          * - **`defaults.xsrfCookieName`** - {string} - Name of cookie containing the XSRF token.
+          * Defaults value is `'XSRF-TOKEN'`.
+          *
+          * - **`defaults.xsrfHeaderName`** - {string} - Name of HTTP header to populate with the
+          * XSRF token. Defaults value is `'X-XSRF-TOKEN'`.
+          *
+          * - **`defaults.headers`** - {Object} - Default headers for all $http requests.
+          * Refer to {@link ng.$http#setting-http-headers $http} for documentation on
+          * setting default headers.
+          *     - **`defaults.headers.common`**
+          *     - **`defaults.headers.post`**
+          *     - **`defaults.headers.put`**
+          *     - **`defaults.headers.patch`**
+          *
+          *
+          * - **`defaults.paramSerializer`** - `{string|function(Object<string,string>):string}` - A function
+          *  used to the prepare string representation of request parameters (specified as an object).
+          *  If specified as string, it is interpreted as a function registered with the {@link auto.$injector $injector}.
+          *  Defaults to {@link ng.$httpParamSerializer $httpParamSerializer}.
+          *
+          **/
+         var defaults = this.defaults = {
+           // transform incoming response data
+           transformResponse: [defaultHttpResponseTransform],
+
+           // transform outgoing request data
+           transformRequest: [function(d) {
+             return isObject(d) && !isFile(d) && !isBlob(d) && !isFormData(d) ? toJson(d) : d;
+           }],
+
+           // default headers
+           headers: {
+             common: {
+               'Accept': 'application/json, text/plain, */*'
+             },
+             post:   shallowCopy(CONTENT_TYPE_APPLICATION_JSON),
+             put:    shallowCopy(CONTENT_TYPE_APPLICATION_JSON),
+             patch:  shallowCopy(CONTENT_TYPE_APPLICATION_JSON)
+           },
+
+           xsrfCookieName: 'XSRF-TOKEN',
+           xsrfHeaderName: 'X-XSRF-TOKEN',
+
+           paramSerializer: '$httpParamSerializer'
+         };
+
+         var useApplyAsync = false;
+         /**
+          * @ngdoc method
+          * @name $httpProvider#useApplyAsync
+          * @description
+          *
+          * Configure $http service to combine processing of multiple http responses received at around
+          * the same time via {@link ng.$rootScope.Scope#$applyAsync $rootScope.$applyAsync}. This can result in
+          * significant performance improvement for bigger applications that make many HTTP requests
+          * concurrently (common during application bootstrap).
+          *
+          * Defaults to false. If no value is specified, returns the current configured value.
+          *
+          * @param {boolean=} value If true, when requests are loaded, they will schedule a deferred
+          *    "apply" on the next tick, giving time for subsequent requests in a roughly ~10ms window
+          *    to load and share the same digest cycle.
+          *
+          * @returns {boolean|Object} If a value is specified, returns the $httpProvider for chaining.
+          *    otherwise, returns the current configured value.
+          **/
+         this.useApplyAsync = function(value) {
+           if (isDefined(value)) {
+             useApplyAsync = !!value;
+             return this;
+           }
+           return useApplyAsync;
+         };
+
+         var useLegacyPromise = true;
+         /**
+          * @ngdoc method
+          * @name $httpProvider#useLegacyPromiseExtensions
+          * @description
+          *
+          * Configure `$http` service to return promises without the shorthand methods `success` and `error`.
+          * This should be used to make sure that applications work without these methods.
+          *
+          * Defaults to true. If no value is specified, returns the current configured value.
+          *
+          * @param {boolean=} value If true, `$http` will return a promise with the deprecated legacy `success` and `error` methods.
+          *
+          * @returns {boolean|Object} If a value is specified, returns the $httpProvider for chaining.
+          *    otherwise, returns the current configured value.
+          **/
+         this.useLegacyPromiseExtensions = function(value) {
+           if (isDefined(value)) {
+             useLegacyPromise = !!value;
+             return this;
+           }
+           return useLegacyPromise;
+         };
+
+         /**
+          * @ngdoc property
+          * @name $httpProvider#interceptors
+          * @description
+          *
+          * Array containing service factories for all synchronous or asynchronous {@link ng.$http $http}
+          * pre-processing of request or postprocessing of responses.
+          *
+          * These service factories are ordered by request, i.e. they are applied in the same order as the
+          * array, on request, but reverse order, on response.
+          *
+          * {@link ng.$http#interceptors Interceptors detailed info}
+          **/
+         var interceptorFactories = this.interceptors = [];
+
+         this.$get = ['$httpBackend', '$$cookieReader', '$cacheFactory', '$rootScope', '$q', '$injector',
+             function($httpBackend, $$cookieReader, $cacheFactory, $rootScope, $q, $injector) {
+
+           var defaultCache = $cacheFactory('$http');
+
+           /**
+            * Make sure that default param serializer is exposed as a function
+            */
+           defaults.paramSerializer = isString(defaults.paramSerializer) ?
+             $injector.get(defaults.paramSerializer) : defaults.paramSerializer;
+
+           /**
+            * Interceptors stored in reverse order. Inner interceptors before outer interceptors.
+            * The reversal is needed so that we can build up the interception chain around the
+            * server request.
+            */
+           var reversedInterceptors = [];
+
+           forEach(interceptorFactories, function(interceptorFactory) {
+             reversedInterceptors.unshift(isString(interceptorFactory)
+                 ? $injector.get(interceptorFactory) : $injector.invoke(interceptorFactory));
+           });
+
+           /**
+            * @ngdoc service
+            * @kind function
+            * @name $http
+            * @requires ng.$httpBackend
+            * @requires $cacheFactory
+            * @requires $rootScope
+            * @requires $q
+            * @requires $injector
+            *
+            * @description
+            * The `$http` service is a core Angular service that facilitates communication with the remote
+            * HTTP servers via the browser's [XMLHttpRequest](https://developer.mozilla.org/en/xmlhttprequest)
+            * object or via [JSONP](http://en.wikipedia.org/wiki/JSONP).
+            *
+            * For unit testing applications that use `$http` service, see
+            * {@link ngMock.$httpBackend $httpBackend mock}.
+            *
+            * For a higher level of abstraction, please check out the {@link ngResource.$resource
+            * $resource} service.
+            *
+            * The $http API is based on the {@link ng.$q deferred/promise APIs} exposed by
+            * the $q service. While for simple usage patterns this doesn't matter much, for advanced usage
+            * it is important to familiarize yourself with these APIs and the guarantees they provide.
+            *
+            *
+            * ## General usage
+            * The `$http` service is a function which takes a single argument — a {@link $http#usage configuration object} —
+            * that is used to generate an HTTP request and returns  a {@link ng.$q promise}.
+            *
+            * ```js
+            *   // Simple GET request example:
+            *   $http({
+            *     method: 'GET',
+            *     url: '/someUrl'
+            *   }).then(function successCallback(response) {
+            *       // this callback will be called asynchronously
+            *       // when the response is available
+            *     }, function errorCallback(response) {
+            *       // called asynchronously if an error occurs
+            *       // or server returns response with an error status.
+            *     });
+            * ```
+            *
+            * The response object has these properties:
+            *
+            *   - **data** – `{string|Object}` – The response body transformed with the transform
+            *     functions.
+            *   - **status** – `{number}` – HTTP status code of the response.
+            *   - **headers** – `{function([headerName])}` – Header getter function.
+            *   - **config** – `{Object}` – The configuration object that was used to generate the request.
+            *   - **statusText** – `{string}` – HTTP status text of the response.
+            *
+            * A response status code between 200 and 299 is considered a success status and
+            * will result in the success callback being called. Note that if the response is a redirect,
+            * XMLHttpRequest will transparently follow it, meaning that the error callback will not be
+            * called for such responses.
+            *
+            *
+            * ## Shortcut methods
+            *
+            * Shortcut methods are also available. All shortcut methods require passing in the URL, and
+            * request data must be passed in for POST/PUT requests. An optional config can be passed as the
+            * last argument.
+            *
+            * ```js
+            *   $http.get('/someUrl', config).then(successCallback, errorCallback);
+            *   $http.post('/someUrl', data, config).then(successCallback, errorCallback);
+            * ```
+            *
+            * Complete list of shortcut methods:
+            *
+            * - {@link ng.$http#get $http.get}
+            * - {@link ng.$http#head $http.head}
+            * - {@link ng.$http#post $http.post}
+            * - {@link ng.$http#put $http.put}
+            * - {@link ng.$http#delete $http.delete}
+            * - {@link ng.$http#jsonp $http.jsonp}
+            * - {@link ng.$http#patch $http.patch}
+            *
+            *
+            * ## Writing Unit Tests that use $http
+            * When unit testing (using {@link ngMock ngMock}), it is necessary to call
+            * {@link ngMock.$httpBackend#flush $httpBackend.flush()} to flush each pending
+            * request using trained responses.
+            *
+            * ```
+            * $httpBackend.expectGET(...);
+            * $http.get(...);
+            * $httpBackend.flush();
+            * ```
+            *
+            * ## Deprecation Notice
+            * <div class="alert alert-danger">
+            *   The `$http` legacy promise methods `success` and `error` have been deprecated.
+            *   Use the standard `then` method instead.
+            *   If {@link $httpProvider#useLegacyPromiseExtensions `$httpProvider.useLegacyPromiseExtensions`} is set to
+            *   `false` then these methods will throw {@link $http:legacy `$http/legacy`} error.
+            * </div>
+            *
+            * ## Setting HTTP Headers
+            *
+            * The $http service will automatically add certain HTTP headers to all requests. These defaults
+            * can be fully configured by accessing the `$httpProvider.defaults.headers` configuration
+            * object, which currently contains this default configuration:
+            *
+            * - `$httpProvider.defaults.headers.common` (headers that are common for all requests):
+            *   - `Accept: application/json, text/plain, * / *`
+            * - `$httpProvider.defaults.headers.post`: (header defaults for POST requests)
+            *   - `Content-Type: application/json`
+            * - `$httpProvider.defaults.headers.put` (header defaults for PUT requests)
+            *   - `Content-Type: application/json`
+            *
+            * To add or overwrite these defaults, simply add or remove a property from these configuration
+            * objects. To add headers for an HTTP method other than POST or PUT, simply add a new object
+            * with the lowercased HTTP method name as the key, e.g.
+            * `$httpProvider.defaults.headers.get = { 'My-Header' : 'value' }`.
+            *
+            * The defaults can also be set at runtime via the `$http.defaults` object in the same
+            * fashion. For example:
+            *
+            * ```
+            * module.run(function($http) {
+            *   $http.defaults.headers.common.Authorization = 'Basic YmVlcDpib29w'
+            * });
+            * ```
+            *
+            * In addition, you can supply a `headers` property in the config object passed when
+            * calling `$http(config)`, which overrides the defaults without changing them globally.
+            *
+            * To explicitly remove a header automatically added via $httpProvider.defaults.headers on a per request basis,
+            * Use the `headers` property, setting the desired header to `undefined`. For example:
+            *
+            * ```js
+            * var req = {
+            *  method: 'POST',
+            *  url: 'http://example.com',
+            *  headers: {
+            *    'Content-Type': undefined
+            *  },
+            *  data: { test: 'test' }
+            * }
+            *
+            * $http(req).then(function(){...}, function(){...});
+            * ```
+            *
+            * ## Transforming Requests and Responses
+            *
+            * Both requests and responses can be transformed using transformation functions: `transformRequest`
+            * and `transformResponse`. These properties can be a single function that returns
+            * the transformed value (`function(data, headersGetter, status)`) or an array of such transformation functions,
+            * which allows you to `push` or `unshift` a new transformation function into the transformation chain.
+            *
+            * ### Default Transformations
+            *
+            * The `$httpProvider` provider and `$http` service expose `defaults.transformRequest` and
+            * `defaults.transformResponse` properties. If a request does not provide its own transformations
+            * then these will be applied.
+            *
+            * You can augment or replace the default transformations by modifying these properties by adding to or
+            * replacing the array.
+            *
+            * Angular provides the following default transformations:
+            *
+            * Request transformations (`$httpProvider.defaults.transformRequest` and `$http.defaults.transformRequest`):
+            *
+            * - If the `data` property of the request configuration object contains an object, serialize it
+            *   into JSON format.
+            *
+            * Response transformations (`$httpProvider.defaults.transformResponse` and `$http.defaults.transformResponse`):
+            *
+            *  - If XSRF prefix is detected, strip it (see Security Considerations section below).
+            *  - If JSON response is detected, deserialize it using a JSON parser.
+            *
+            *
+            * ### Overriding the Default Transformations Per Request
+            *
+            * If you wish override the request/response transformations only for a single request then provide
+            * `transformRequest` and/or `transformResponse` properties on the configuration object passed
+            * into `$http`.
+            *
+            * Note that if you provide these properties on the config object the default transformations will be
+            * overwritten. If you wish to augment the default transformations then you must include them in your
+            * local transformation array.
+            *
+            * The following code demonstrates adding a new response transformation to be run after the default response
+            * transformations have been run.
+            *
+            * ```js
+            * function appendTransform(defaults, transform) {
+            *
+            *   // We can't guarantee that the default transformation is an array
+            *   defaults = angular.isArray(defaults) ? defaults : [defaults];
+            *
+            *   // Append the new transformation to the defaults
+            *   return defaults.concat(transform);
+            * }
+            *
+            * $http({
+            *   url: '...',
+            *   method: 'GET',
+            *   transformResponse: appendTransform($http.defaults.transformResponse, function(value) {
+            *     return doTransform(value);
+            *   })
+            * });
+            * ```
+            *
+            *
+            * ## Caching
+            *
+            * To enable caching, set the request configuration `cache` property to `true` (to use default
+            * cache) or to a custom cache object (built with {@link ng.$cacheFactory `$cacheFactory`}).
+            * When the cache is enabled, `$http` stores the response from the server in the specified
+            * cache. The next time the same request is made, the response is served from the cache without
+            * sending a request to the server.
+            *
+            * Note that even if the response is served from cache, delivery of the data is asynchronous in
+            * the same way that real requests are.
+            *
+            * If there are multiple GET requests for the same URL that should be cached using the same
+            * cache, but the cache is not populated yet, only one request to the server will be made and
+            * the remaining requests will be fulfilled using the response from the first request.
+            *
+            * You can change the default cache to a new object (built with
+            * {@link ng.$cacheFactory `$cacheFactory`}) by updating the
+            * {@link ng.$http#defaults `$http.defaults.cache`} property. All requests who set
+            * their `cache` property to `true` will now use this cache object.
+            *
+            * If you set the default cache to `false` then only requests that specify their own custom
+            * cache object will be cached.
+            *
+            * ## Interceptors
+            *
+            * Before you start creating interceptors, be sure to understand the
+            * {@link ng.$q $q and deferred/promise APIs}.
+            *
+            * For purposes of global error handling, authentication, or any kind of synchronous or
+            * asynchronous pre-processing of request or postprocessing of responses, it is desirable to be
+            * able to intercept requests before they are handed to the server and
+            * responses before they are handed over to the application code that
+            * initiated these requests. The interceptors leverage the {@link ng.$q
+            * promise APIs} to fulfill this need for both synchronous and asynchronous pre-processing.
+            *
+            * The interceptors are service factories that are registered with the `$httpProvider` by
+            * adding them to the `$httpProvider.interceptors` array. The factory is called and
+            * injected with dependencies (if specified) and returns the interceptor.
+            *
+            * There are two kinds of interceptors (and two kinds of rejection interceptors):
+            *
+            *   * `request`: interceptors get called with a http {@link $http#usage config} object. The function is free to
+            *     modify the `config` object or create a new one. The function needs to return the `config`
+            *     object directly, or a promise containing the `config` or a new `config` object.
+            *   * `requestError`: interceptor gets called when a previous interceptor threw an error or
+            *     resolved with a rejection.
+            *   * `response`: interceptors get called with http `response` object. The function is free to
+            *     modify the `response` object or create a new one. The function needs to return the `response`
+            *     object directly, or as a promise containing the `response` or a new `response` object.
+            *   * `responseError`: interceptor gets called when a previous interceptor threw an error or
+            *     resolved with a rejection.
+            *
+            *
+            * ```js
+            *   // register the interceptor as a service
+            *   $provide.factory('myHttpInterceptor', function($q, dependency1, dependency2) {
+            *     return {
+            *       // optional method
+            *       'request': function(config) {
+            *         // do something on success
+            *         return config;
+            *       },
+            *
+            *       // optional method
+            *      'requestError': function(rejection) {
+            *         // do something on error
+            *         if (canRecover(rejection)) {
+            *           return responseOrNewPromise
+            *         }
+            *         return $q.reject(rejection);
+            *       },
+            *
+            *
+            *
+            *       // optional method
+            *       'response': function(response) {
+            *         // do something on success
+            *         return response;
+            *       },
+            *
+            *       // optional method
+            *      'responseError': function(rejection) {
+            *         // do something on error
+            *         if (canRecover(rejection)) {
+            *           return responseOrNewPromise
+            *         }
+            *         return $q.reject(rejection);
+            *       }
+            *     };
+            *   });
+            *
+            *   $httpProvider.interceptors.push('myHttpInterceptor');
+            *
+            *
+            *   // alternatively, register the interceptor via an anonymous factory
+            *   $httpProvider.interceptors.push(function($q, dependency1, dependency2) {
+            *     return {
+            *      'request': function(config) {
+            *          // same as above
+            *       },
+            *
+            *       'response': function(response) {
+            *          // same as above
+            *       }
+            *     };
+            *   });
+            * ```
+            *
+            * ## Security Considerations
+            *
+            * When designing web applications, consider security threats from:
+            *
+            * - [JSON vulnerability](http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx)
+            * - [XSRF](http://en.wikipedia.org/wiki/Cross-site_request_forgery)
+            *
+            * Both server and the client must cooperate in order to eliminate these threats. Angular comes
+            * pre-configured with strategies that address these issues, but for this to work backend server
+            * cooperation is required.
+            *
+            * ### JSON Vulnerability Protection
+            *
+            * A [JSON vulnerability](http://haacked.com/archive/2008/11/20/anatomy-of-a-subtle-json-vulnerability.aspx)
+            * allows third party website to turn your JSON resource URL into
+            * [JSONP](http://en.wikipedia.org/wiki/JSONP) request under some conditions. To
+            * counter this your server can prefix all JSON requests with following string `")]}',\n"`.
+            * Angular will automatically strip the prefix before processing it as JSON.
+            *
+            * For example if your server needs to return:
+            * ```js
+            * ['one','two']
+            * ```
+            *
+            * which is vulnerable to attack, your server can return:
+            * ```js
+            * )]}',
+            * ['one','two']
+            * ```
+            *
+            * Angular will strip the prefix, before processing the JSON.
+            *
+            *
+            * ### Cross Site Request Forgery (XSRF) Protection
+            *
+            * [XSRF](http://en.wikipedia.org/wiki/Cross-site_request_forgery) is a technique by which
+            * an unauthorized site can gain your user's private data. Angular provides a mechanism
+            * to counter XSRF. When performing XHR requests, the $http service reads a token from a cookie
+            * (by default, `XSRF-TOKEN`) and sets it as an HTTP header (`X-XSRF-TOKEN`). Since only
+            * JavaScript that runs on your domain could read the cookie, your server can be assured that
+            * the XHR came from JavaScript running on your domain. The header will not be set for
+            * cross-domain requests.
+            *
+            * To take advantage of this, your server needs to set a token in a JavaScript readable session
+            * cookie called `XSRF-TOKEN` on the first HTTP GET request. On subsequent XHR requests the
+            * server can verify that the cookie matches `X-XSRF-TOKEN` HTTP header, and therefore be sure
+            * that only JavaScript running on your domain could have sent the request. The token must be
+            * unique for each user and must be verifiable by the server (to prevent the JavaScript from
+            * making up its own tokens). We recommend that the token is a digest of your site's
+            * authentication cookie with a [salt](https://en.wikipedia.org/wiki/Salt_(cryptography&#41;)
+            * for added security.
+            *
+            * The name of the headers can be specified using the xsrfHeaderName and xsrfCookieName
+            * properties of either $httpProvider.defaults at config-time, $http.defaults at run-time,
+            * or the per-request config object.
+            *
+            * In order to prevent collisions in environments where multiple Angular apps share the
+            * same domain or subdomain, we recommend that each application uses unique cookie name.
+            *
+            * @param {object} config Object describing the request to be made and how it should be
+            *    processed. The object has following properties:
+            *
+            *    - **method** – `{string}` – HTTP method (e.g. 'GET', 'POST', etc)
+            *    - **url** – `{string}` – Absolute or relative URL of the resource that is being requested.
+            *    - **params** – `{Object.<string|Object>}` – Map of strings or objects which will be serialized
+            *      with the `paramSerializer` and appended as GET parameters.
+            *    - **data** – `{string|Object}` – Data to be sent as the request message data.
+            *    - **headers** – `{Object}` – Map of strings or functions which return strings representing
+            *      HTTP headers to send to the server. If the return value of a function is null, the
+            *      header will not be sent. Functions accept a config object as an argument.
+            *    - **xsrfHeaderName** – `{string}` – Name of HTTP header to populate with the XSRF token.
+            *    - **xsrfCookieName** – `{string}` – Name of cookie containing the XSRF token.
+            *    - **transformRequest** –
+            *      `{function(data, headersGetter)|Array.<function(data, headersGetter)>}` –
+            *      transform function or an array of such functions. The transform function takes the http
+            *      request body and headers and returns its transformed (typically serialized) version.
+            *      See {@link ng.$http#overriding-the-default-transformations-per-request
+            *      Overriding the Default Transformations}
+            *    - **transformResponse** –
+            *      `{function(data, headersGetter, status)|Array.<function(data, headersGetter, status)>}` –
+            *      transform function or an array of such functions. The transform function takes the http
+            *      response body, headers and status and returns its transformed (typically deserialized) version.
+            *      See {@link ng.$http#overriding-the-default-transformations-per-request
+            *      Overriding the Default TransformationjqLiks}
+            *    - **paramSerializer** - `{string|function(Object<string,string>):string}` - A function used to
+            *      prepare the string representation of request parameters (specified as an object).
+            *      If specified as string, it is interpreted as function registered with the
+            *      {@link $injector $injector}, which means you can create your own serializer
+            *      by registering it as a {@link auto.$provide#service service}.
+            *      The default serializer is the {@link $httpParamSerializer $httpParamSerializer};
+            *      alternatively, you can use the {@link $httpParamSerializerJQLike $httpParamSerializerJQLike}
+            *    - **cache** – `{boolean|Cache}` – If true, a default $http cache will be used to cache the
+            *      GET request, otherwise if a cache instance built with
+            *      {@link ng.$cacheFactory $cacheFactory}, this cache will be used for
+            *      caching.
+            *    - **timeout** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise}
+            *      that should abort the request when resolved.
+            *    - **withCredentials** - `{boolean}` - whether to set the `withCredentials` flag on the
+            *      XHR object. See [requests with credentials](https://developer.mozilla.org/docs/Web/HTTP/Access_control_CORS#Requests_with_credentials)
+            *      for more information.
+            *    - **responseType** - `{string}` - see
+            *      [XMLHttpRequest.responseType](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest#xmlhttprequest-responsetype).
+            *
+            * @returns {HttpPromise} Returns a {@link ng.$q `Promise}` that will be resolved to a response object
+            *                        when the request succeeds or fails.
+            *
+            *
+            * @property {Array.<Object>} pendingRequests Array of config objects for currently pending
+            *   requests. This is primarily meant to be used for debugging purposes.
+            *
+            *
+            * @example
+       <example module="httpExample">
+       <file name="index.html">
+         <div ng-controller="FetchController">
+           <select ng-model="method" aria-label="Request method">
+             <option>GET</option>
+             <option>JSONP</option>
+           </select>
+           <input type="text" ng-model="url" size="80" aria-label="URL" />
+           <button id="fetchbtn" ng-click="fetch()">fetch</button><br>
+           <button id="samplegetbtn" ng-click="updateModel('GET', 'http-hello.html')">Sample GET</button>
+           <button id="samplejsonpbtn"
+             ng-click="updateModel('JSONP',
+                           'https://angularjs.org/greet.php?callback=JSON_CALLBACK&name=Super%20Hero')">
+             Sample JSONP
+           </button>
+           <button id="invalidjsonpbtn"
+             ng-click="updateModel('JSONP', 'https://angularjs.org/doesntexist&callback=JSON_CALLBACK')">
+               Invalid JSONP
+             </button>
+           <pre>http status code: {{status}}</pre>
+           <pre>http response data: {{data}}</pre>
+         </div>
+       </file>
+       <file name="script.js">
+         angular.module('httpExample', [])
+           .controller('FetchController', ['$scope', '$http', '$templateCache',
+             function($scope, $http, $templateCache) {
+               $scope.method = 'GET';
+               $scope.url = 'http-hello.html';
+
+               $scope.fetch = function() {
+                 $scope.code = null;
+                 $scope.response = null;
+
+                 $http({method: $scope.method, url: $scope.url, cache: $templateCache}).
+                   then(function(response) {
+                     $scope.status = response.status;
+                     $scope.data = response.data;
+                   }, function(response) {
+                     $scope.data = response.data || "Request failed";
+                     $scope.status = response.status;
+                 });
+               };
+
+               $scope.updateModel = function(method, url) {
+                 $scope.method = method;
+                 $scope.url = url;
+               };
+             }]);
+       </file>
+       <file name="http-hello.html">
+         Hello, $http!
+       </file>
+       <file name="protractor.js" type="protractor">
+         var status = element(by.binding('status'));
+         var data = element(by.binding('data'));
+         var fetchBtn = element(by.id('fetchbtn'));
+         var sampleGetBtn = element(by.id('samplegetbtn'));
+         var sampleJsonpBtn = element(by.id('samplejsonpbtn'));
+         var invalidJsonpBtn = element(by.id('invalidjsonpbtn'));
+
+         it('should make an xhr GET request', function() {
+           sampleGetBtn.click();
+           fetchBtn.click();
+           expect(status.getText()).toMatch('200');
+           expect(data.getText()).toMatch(/Hello, \$http!/);
+         });
+
+       // Commented out due to flakes. See https://github.com/angular/angular.js/issues/9185
+       // it('should make a JSONP request to angularjs.org', function() {
+       //   sampleJsonpBtn.click();
+       //   fetchBtn.click();
+       //   expect(status.getText()).toMatch('200');
+       //   expect(data.getText()).toMatch(/Super Hero!/);
+       // });
+
+         it('should make JSONP request to invalid URL and invoke the error handler',
+             function() {
+           invalidJsonpBtn.click();
+           fetchBtn.click();
+           expect(status.getText()).toMatch('0');
+           expect(data.getText()).toMatch('Request failed');
+         });
+       </file>
+       </example>
+            */
+           function $http(requestConfig) {
+
+             if (!angular.isObject(requestConfig)) {
+               throw minErr('$http')('badreq', 'Http request configuration must be an object.  Received: {0}', requestConfig);
+             }
+
+             var config = extend({
+               method: 'get',
+               transformRequest: defaults.transformRequest,
+               transformResponse: defaults.transformResponse,
+               paramSerializer: defaults.paramSerializer
+             }, requestConfig);
+
+             config.headers = mergeHeaders(requestConfig);
+             config.method = uppercase(config.method);
+             config.paramSerializer = isString(config.paramSerializer) ?
+               $injector.get(config.paramSerializer) : config.paramSerializer;
+
+             var serverRequest = function(config) {
+               var headers = config.headers;
+               var reqData = transformData(config.data, headersGetter(headers), undefined, config.transformRequest);
+
+               // strip content-type if data is undefined
+               if (isUndefined(reqData)) {
+                 forEach(headers, function(value, header) {
+                   if (lowercase(header) === 'content-type') {
+                       delete headers[header];
+                   }
+                 });
+               }
+
+               if (isUndefined(config.withCredentials) && !isUndefined(defaults.withCredentials)) {
+                 config.withCredentials = defaults.withCredentials;
+               }
+
+               // send request
+               return sendReq(config, reqData).then(transformResponse, transformResponse);
+             };
+
+             var chain = [serverRequest, undefined];
+             var promise = $q.when(config);
+
+             // apply interceptors
+             forEach(reversedInterceptors, function(interceptor) {
+               if (interceptor.request || interceptor.requestError) {
+                 chain.unshift(interceptor.request, interceptor.requestError);
+               }
+               if (interceptor.response || interceptor.responseError) {
+                 chain.push(interceptor.response, interceptor.responseError);
+               }
+             });
+
+             while (chain.length) {
+               var thenFn = chain.shift();
+               var rejectFn = chain.shift();
+
+               promise = promise.then(thenFn, rejectFn);
+             }
+
+             if (useLegacyPromise) {
+               promise.success = function(fn) {
+                 assertArgFn(fn, 'fn');
+
+                 promise.then(function(response) {
+                   fn(response.data, response.status, response.headers, config);
+                 });
+                 return promise;
+               };
+
+               promise.error = function(fn) {
+                 assertArgFn(fn, 'fn');
+
+                 promise.then(null, function(response) {
+                   fn(response.data, response.status, response.headers, config);
+                 });
+                 return promise;
+               };
+             } else {
+               promise.success = $httpMinErrLegacyFn('success');
+               promise.error = $httpMinErrLegacyFn('error');
+             }
+
+             return promise;
+
+             function transformResponse(response) {
+               // make a copy since the response must be cacheable
+               var resp = extend({}, response);
+               resp.data = transformData(response.data, response.headers, response.status,
+                                         config.transformResponse);
+               return (isSuccess(response.status))
+                 ? resp
+                 : $q.reject(resp);
+             }
+
+             function executeHeaderFns(headers, config) {
+               var headerContent, processedHeaders = {};
+
+               forEach(headers, function(headerFn, header) {
+                 if (isFunction(headerFn)) {
+                   headerContent = headerFn(config);
+                   if (headerContent != null) {
+                     processedHeaders[header] = headerContent;
+                   }
+                 } else {
+                   processedHeaders[header] = headerFn;
+                 }
+               });
+
+               return processedHeaders;
+             }
+
+             function mergeHeaders(config) {
+               var defHeaders = defaults.headers,
+                   reqHeaders = extend({}, config.headers),
+                   defHeaderName, lowercaseDefHeaderName, reqHeaderName;
+
+               defHeaders = extend({}, defHeaders.common, defHeaders[lowercase(config.method)]);
+
+               // using for-in instead of forEach to avoid unecessary iteration after header has been found
+               defaultHeadersIteration:
+               for (defHeaderName in defHeaders) {
+                 lowercaseDefHeaderName = lowercase(defHeaderName);
+
+                 for (reqHeaderName in reqHeaders) {
+                   if (lowercase(reqHeaderName) === lowercaseDefHeaderName) {
+                     continue defaultHeadersIteration;
+                   }
+                 }
+
+                 reqHeaders[defHeaderName] = defHeaders[defHeaderName];
+               }
+
+               // execute if header value is a function for merged headers
+               return executeHeaderFns(reqHeaders, shallowCopy(config));
+             }
+           }
+
+           $http.pendingRequests = [];
+
+           /**
+            * @ngdoc method
+            * @name $http#get
+            *
+            * @description
+            * Shortcut method to perform `GET` request.
+            *
+            * @param {string} url Relative or absolute URL specifying the destination of the request
+            * @param {Object=} config Optional configuration object
+            * @returns {HttpPromise} Future object
+            */
+
+           /**
+            * @ngdoc method
+            * @name $http#delete
+            *
+            * @description
+            * Shortcut method to perform `DELETE` request.
+            *
+            * @param {string} url Relative or absolute URL specifying the destination of the request
+            * @param {Object=} config Optional configuration object
+            * @returns {HttpPromise} Future object
+            */
+
+           /**
+            * @ngdoc method
+            * @name $http#head
+            *
+            * @description
+            * Shortcut method to perform `HEAD` request.
+            *
+            * @param {string} url Relative or absolute URL specifying the destination of the request
+            * @param {Object=} config Optional configuration object
+            * @returns {HttpPromise} Future object
+            */
+
+           /**
+            * @ngdoc method
+            * @name $http#jsonp
+            *
+            * @description
+            * Shortcut method to perform `JSONP` request.
+            *
+            * @param {string} url Relative or absolute URL specifying the destination of the request.
+            *                     The name of the callback should be the string `JSON_CALLBACK`.
+            * @param {Object=} config Optional configuration object
+            * @returns {HttpPromise} Future object
+            */
+           createShortMethods('get', 'delete', 'head', 'jsonp');
+
+           /**
+            * @ngdoc method
+            * @name $http#post
+            *
+            * @description
+            * Shortcut method to perform `POST` request.
+            *
+            * @param {string} url Relative or absolute URL specifying the destination of the request
+            * @param {*} data Request content
+            * @param {Object=} config Optional configuration object
+            * @returns {HttpPromise} Future object
+            */
+
+           /**
+            * @ngdoc method
+            * @name $http#put
+            *
+            * @description
+            * Shortcut method to perform `PUT` request.
+            *
+            * @param {string} url Relative or absolute URL specifying the destination of the request
+            * @param {*} data Request content
+            * @param {Object=} config Optional configuration object
+            * @returns {HttpPromise} Future object
+            */
+
+            /**
+             * @ngdoc method
+             * @name $http#patch
+             *
+             * @description
+             * Shortcut method to perform `PATCH` request.
+             *
+             * @param {string} url Relative or absolute URL specifying the destination of the request
+             * @param {*} data Request content
+             * @param {Object=} config Optional configuration object
+             * @returns {HttpPromise} Future object
+             */
+           createShortMethodsWithData('post', 'put', 'patch');
+
+               /**
+                * @ngdoc property
+                * @name $http#defaults
+                *
+                * @description
+                * Runtime equivalent of the `$httpProvider.defaults` property. Allows configuration of
+                * default headers, withCredentials as well as request and response transformations.
+                *
+                * See "Setting HTTP Headers" and "Transforming Requests and Responses" sections above.
+                */
+           $http.defaults = defaults;
+
+
+           return $http;
+
+
+           function createShortMethods(names) {
+             forEach(arguments, function(name) {
+               $http[name] = function(url, config) {
+                 return $http(extend({}, config || {}, {
+                   method: name,
+                   url: url
+                 }));
+               };
+             });
+           }
+
+
+           function createShortMethodsWithData(name) {
+             forEach(arguments, function(name) {
+               $http[name] = function(url, data, config) {
+                 return $http(extend({}, config || {}, {
+                   method: name,
+                   url: url,
+                   data: data
+                 }));
+               };
+             });
+           }
+
+
+           /**
+            * Makes the request.
+            *
+            * !!! ACCESSES CLOSURE VARS:
+            * $httpBackend, defaults, $log, $rootScope, defaultCache, $http.pendingRequests
+            */
+           function sendReq(config, reqData) {
+             var deferred = $q.defer(),
+                 promise = deferred.promise,
+                 cache,
+                 cachedResp,
+                 reqHeaders = config.headers,
+                 url = buildUrl(config.url, config.paramSerializer(config.params));
+
+             $http.pendingRequests.push(config);
+             promise.then(removePendingReq, removePendingReq);
+
+
+             if ((config.cache || defaults.cache) && config.cache !== false &&
+                 (config.method === 'GET' || config.method === 'JSONP')) {
+               cache = isObject(config.cache) ? config.cache
+                     : isObject(defaults.cache) ? defaults.cache
+                     : defaultCache;
+             }
+
+             if (cache) {
+               cachedResp = cache.get(url);
+               if (isDefined(cachedResp)) {
+                 if (isPromiseLike(cachedResp)) {
+                   // cached request has already been sent, but there is no response yet
+                   cachedResp.then(resolvePromiseWithResult, resolvePromiseWithResult);
+                 } else {
+                   // serving from cache
+                   if (isArray(cachedResp)) {
+                     resolvePromise(cachedResp[1], cachedResp[0], shallowCopy(cachedResp[2]), cachedResp[3]);
+                   } else {
+                     resolvePromise(cachedResp, 200, {}, 'OK');
+                   }
+                 }
+               } else {
+                 // put the promise for the non-transformed response into cache as a placeholder
+                 cache.put(url, promise);
+               }
+             }
+
+
+             // if we won't have the response in cache, set the xsrf headers and
+             // send the request to the backend
+             if (isUndefined(cachedResp)) {
+               var xsrfValue = urlIsSameOrigin(config.url)
+                   ? $$cookieReader()[config.xsrfCookieName || defaults.xsrfCookieName]
+                   : undefined;
+               if (xsrfValue) {
+                 reqHeaders[(config.xsrfHeaderName || defaults.xsrfHeaderName)] = xsrfValue;
+               }
+
+               $httpBackend(config.method, url, reqData, done, reqHeaders, config.timeout,
+                   config.withCredentials, config.responseType);
+             }
+
+             return promise;
+
+
+             /**
+              * Callback registered to $httpBackend():
+              *  - caches the response if desired
+              *  - resolves the raw $http promise
+              *  - calls $apply
+              */
+             function done(status, response, headersString, statusText) {
+               if (cache) {
+                 if (isSuccess(status)) {
+                   cache.put(url, [status, response, parseHeaders(headersString), statusText]);
+                 } else {
+                   // remove promise from the cache
+                   cache.remove(url);
+                 }
+               }
+
+               function resolveHttpPromise() {
+                 resolvePromise(response, status, headersString, statusText);
+               }
+
+               if (useApplyAsync) {
+                 $rootScope.$applyAsync(resolveHttpPromise);
+               } else {
+                 resolveHttpPromise();
+                 if (!$rootScope.$$phase) $rootScope.$apply();
+               }
+             }
+
+
+             /**
+              * Resolves the raw $http promise.
+              */
+             function resolvePromise(response, status, headers, statusText) {
+               //status: HTTP response status code, 0, -1 (aborted by timeout / promise)
+               status = status >= -1 ? status : 0;
+
+               (isSuccess(status) ? deferred.resolve : deferred.reject)({
+                 data: response,
+                 status: status,
+                 headers: headersGetter(headers),
+                 config: config,
+                 statusText: statusText
+               });
+             }
+
+             function resolvePromiseWithResult(result) {
+               resolvePromise(result.data, result.status, shallowCopy(result.headers()), result.statusText);
+             }
+
+             function removePendingReq() {
+               var idx = $http.pendingRequests.indexOf(config);
+               if (idx !== -1) $http.pendingRequests.splice(idx, 1);
+             }
+           }
+
+
+           function buildUrl(url, serializedParams) {
+             if (serializedParams.length > 0) {
+               url += ((url.indexOf('?') == -1) ? '?' : '&') + serializedParams;
+             }
+             return url;
+           }
+         }];
+       }
+
+       /**
+        * @ngdoc service
+        * @name $xhrFactory
+        *
+        * @description
+        * Factory function used to create XMLHttpRequest objects.
+        *
+        * Replace or decorate this service to create your own custom XMLHttpRequest objects.
+        *
+        * ```
+        * angular.module('myApp', [])
+        * .factory('$xhrFactory', function() {
+        *   return function createXhr(method, url) {
+        *     return new window.XMLHttpRequest({mozSystem: true});
+        *   };
+        * });
+        * ```
+        *
+        * @param {string} method HTTP method of the request (GET, POST, PUT, ..)
+        * @param {string} url URL of the request.
+        */
+       function $xhrFactoryProvider() {
+         this.$get = function() {
+           return function createXhr() {
+             return new window.XMLHttpRequest();
+           };
+         };
+       }
+
+       /**
+        * @ngdoc service
+        * @name $httpBackend
+        * @requires $window
+        * @requires $document
+        * @requires $xhrFactory
+        *
+        * @description
+        * HTTP backend used by the {@link ng.$http service} that delegates to
+        * XMLHttpRequest object or JSONP and deals with browser incompatibilities.
+        *
+        * You should never need to use this service directly, instead use the higher-level abstractions:
+        * {@link ng.$http $http} or {@link ngResource.$resource $resource}.
+        *
+        * During testing this implementation is swapped with {@link ngMock.$httpBackend mock
+        * $httpBackend} which can be trained with responses.
+        */
+       function $HttpBackendProvider() {
+         this.$get = ['$browser', '$window', '$document', '$xhrFactory', function($browser, $window, $document, $xhrFactory) {
+           return createHttpBackend($browser, $xhrFactory, $browser.defer, $window.angular.callbacks, $document[0]);
+         }];
+       }
+
+       function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDocument) {
+         // TODO(vojta): fix the signature
+         return function(method, url, post, callback, headers, timeout, withCredentials, responseType) {
+           $browser.$$incOutstandingRequestCount();
+           url = url || $browser.url();
+
+           if (lowercase(method) == 'jsonp') {
+             var callbackId = '_' + (callbacks.counter++).toString(36);
+             callbacks[callbackId] = function(data) {
+               callbacks[callbackId].data = data;
+               callbacks[callbackId].called = true;
+             };
+
+             var jsonpDone = jsonpReq(url.replace('JSON_CALLBACK', 'angular.callbacks.' + callbackId),
+                 callbackId, function(status, text) {
+               completeRequest(callback, status, callbacks[callbackId].data, "", text);
+               callbacks[callbackId] = noop;
+             });
+           } else {
+
+             var xhr = createXhr(method, url);
+
+             xhr.open(method, url, true);
+             forEach(headers, function(value, key) {
+               if (isDefined(value)) {
+                   xhr.setRequestHeader(key, value);
+               }
+             });
+
+             xhr.onload = function requestLoaded() {
+               var statusText = xhr.statusText || '';
+
+               // responseText is the old-school way of retrieving response (supported by IE9)
+               // response/responseType properties were introduced in XHR Level2 spec (supported by IE10)
+               var response = ('response' in xhr) ? xhr.response : xhr.responseText;
+
+               // normalize IE9 bug (http://bugs.jquery.com/ticket/1450)
+               var status = xhr.status === 1223 ? 204 : xhr.status;
+
+               // fix status code when it is 0 (0 status is undocumented).
+               // Occurs when accessing file resources or on Android 4.1 stock browser
+               // while retrieving files from application cache.
+               if (status === 0) {
+                 status = response ? 200 : urlResolve(url).protocol == 'file' ? 404 : 0;
+               }
+
+               completeRequest(callback,
+                   status,
+                   response,
+                   xhr.getAllResponseHeaders(),
+                   statusText);
+             };
+
+             var requestError = function() {
+               // The response is always empty
+               // See https://xhr.spec.whatwg.org/#request-error-steps and https://fetch.spec.whatwg.org/#concept-network-error
+               completeRequest(callback, -1, null, null, '');
+             };
+
+             xhr.onerror = requestError;
+             xhr.onabort = requestError;
+
+             if (withCredentials) {
+               xhr.withCredentials = true;
+             }
+
+             if (responseType) {
+               try {
+                 xhr.responseType = responseType;
+               } catch (e) {
+                 // WebKit added support for the json responseType value on 09/03/2013
+                 // https://bugs.webkit.org/show_bug.cgi?id=73648. Versions of Safari prior to 7 are
+                 // known to throw when setting the value "json" as the response type. Other older
+                 // browsers implementing the responseType
+                 //
+                 // The json response type can be ignored if not supported, because JSON payloads are
+                 // parsed on the client-side regardless.
+                 if (responseType !== 'json') {
+                   throw e;
+                 }
+               }
+             }
+
+             xhr.send(isUndefined(post) ? null : post);
+           }
+
+           if (timeout > 0) {
+             var timeoutId = $browserDefer(timeoutRequest, timeout);
+           } else if (isPromiseLike(timeout)) {
+             timeout.then(timeoutRequest);
+           }
+
+
+           function timeoutRequest() {
+             jsonpDone && jsonpDone();
+             xhr && xhr.abort();
+           }
+
+           function completeRequest(callback, status, response, headersString, statusText) {
+             // cancel timeout and subsequent timeout promise resolution
+             if (isDefined(timeoutId)) {
+               $browserDefer.cancel(timeoutId);
+             }
+             jsonpDone = xhr = null;
+
+             callback(status, response, headersString, statusText);
+             $browser.$$completeOutstandingRequest(noop);
+           }
+         };
+
+         function jsonpReq(url, callbackId, done) {
+           // we can't use jQuery/jqLite here because jQuery does crazy stuff with script elements, e.g.:
+           // - fetches local scripts via XHR and evals them
+           // - adds and immediately removes script elements from the document
+           var script = rawDocument.createElement('script'), callback = null;
+           script.type = "text/javascript";
+           script.src = url;
+           script.async = true;
+
+           callback = function(event) {
+             removeEventListenerFn(script, "load", callback);
+             removeEventListenerFn(script, "error", callback);
+             rawDocument.body.removeChild(script);
+             script = null;
+             var status = -1;
+             var text = "unknown";
+
+             if (event) {
+               if (event.type === "load" && !callbacks[callbackId].called) {
+                 event = { type: "error" };
+               }
+               text = event.type;
+               status = event.type === "error" ? 404 : 200;
+             }
+
+             if (done) {
+               done(status, text);
+             }
+           };
+
+           addEventListenerFn(script, "load", callback);
+           addEventListenerFn(script, "error", callback);
+           rawDocument.body.appendChild(script);
+           return callback;
+         }
+       }
+
+       var $interpolateMinErr = angular.$interpolateMinErr = minErr('$interpolate');
+       $interpolateMinErr.throwNoconcat = function(text) {
+         throw $interpolateMinErr('noconcat',
+             "Error while interpolating: {0}\nStrict Contextual Escaping disallows " +
+             "interpolations that concatenate multiple expressions when a trusted value is " +
+             "required.  See http://docs.angularjs.org/api/ng.$sce", text);
+       };
+
+       $interpolateMinErr.interr = function(text, err) {
+         return $interpolateMinErr('interr', "Can't interpolate: {0}\n{1}", text, err.toString());
+       };
+
+       /**
+        * @ngdoc provider
+        * @name $interpolateProvider
+        *
+        * @description
+        *
+        * Used for configuring the interpolation markup. Defaults to `{{` and `}}`.
+        *
+        * @example
+       <example module="customInterpolationApp">
+       <file name="index.html">
+       <script>
+         var customInterpolationApp = angular.module('customInterpolationApp', []);
+
+         customInterpolationApp.config(function($interpolateProvider) {
+           $interpolateProvider.startSymbol('//');
+           $interpolateProvider.endSymbol('//');
+         });
+
+
+         customInterpolationApp.controller('DemoController', function() {
+             this.label = "This binding is brought you by // interpolation symbols.";
+         });
+       </script>
+       <div ng-app="App" ng-controller="DemoController as demo">
+           //demo.label//
+       </div>
+       </file>
+       <file name="protractor.js" type="protractor">
+         it('should interpolate binding with custom symbols', function() {
+           expect(element(by.binding('demo.label')).getText()).toBe('This binding is brought you by // interpolation symbols.');
+         });
+       </file>
+       </example>
+        */
+       function $InterpolateProvider() {
+         var startSymbol = '{{';
+         var endSymbol = '}}';
+
+         /**
+          * @ngdoc method
+          * @name $interpolateProvider#startSymbol
+          * @description
+          * Symbol to denote start of expression in the interpolated string. Defaults to `{{`.
+          *
+          * @param {string=} value new value to set the starting symbol to.
+          * @returns {string|self} Returns the symbol when used as getter and self if used as setter.
+          */
+         this.startSymbol = function(value) {
+           if (value) {
+             startSymbol = value;
+             return this;
+           } else {
+             return startSymbol;
+           }
+         };
+
+         /**
+          * @ngdoc method
+          * @name $interpolateProvider#endSymbol
+          * @description
+          * Symbol to denote the end of expression in the interpolated string. Defaults to `}}`.
+          *
+          * @param {string=} value new value to set the ending symbol to.
+          * @returns {string|self} Returns the symbol when used as getter and self if used as setter.
+          */
+         this.endSymbol = function(value) {
+           if (value) {
+             endSymbol = value;
+             return this;
+           } else {
+             return endSymbol;
+           }
+         };
+
+
+         this.$get = ['$parse', '$exceptionHandler', '$sce', function($parse, $exceptionHandler, $sce) {
+           var startSymbolLength = startSymbol.length,
+               endSymbolLength = endSymbol.length,
+               escapedStartRegexp = new RegExp(startSymbol.replace(/./g, escape), 'g'),
+               escapedEndRegexp = new RegExp(endSymbol.replace(/./g, escape), 'g');
+
+           function escape(ch) {
+             return '\\\\\\' + ch;
+           }
+
+           function unescapeText(text) {
+             return text.replace(escapedStartRegexp, startSymbol).
+               replace(escapedEndRegexp, endSymbol);
+           }
+
+           function stringify(value) {
+             if (value == null) { // null || undefined
+               return '';
+             }
+             switch (typeof value) {
+               case 'string':
+                 break;
+               case 'number':
+                 value = '' + value;
+                 break;
+               default:
+                 value = toJson(value);
+             }
+
+             return value;
+           }
+
+           /**
+            * @ngdoc service
+            * @name $interpolate
+            * @kind function
+            *
+            * @requires $parse
+            * @requires $sce
+            *
+            * @description
+            *
+            * Compiles a string with markup into an interpolation function. This service is used by the
+            * HTML {@link ng.$compile $compile} service for data binding. See
+            * {@link ng.$interpolateProvider $interpolateProvider} for configuring the
+            * interpolation markup.
+            *
+            *
+            * ```js
+            *   var $interpolate = ...; // injected
+            *   var exp = $interpolate('Hello {{name | uppercase}}!');
+            *   expect(exp({name:'Angular'})).toEqual('Hello ANGULAR!');
+            * ```
+            *
+            * `$interpolate` takes an optional fourth argument, `allOrNothing`. If `allOrNothing` is
+            * `true`, the interpolation function will return `undefined` unless all embedded expressions
+            * evaluate to a value other than `undefined`.
+            *
+            * ```js
+            *   var $interpolate = ...; // injected
+            *   var context = {greeting: 'Hello', name: undefined };
+            *
+            *   // default "forgiving" mode
+            *   var exp = $interpolate('{{greeting}} {{name}}!');
+            *   expect(exp(context)).toEqual('Hello !');
+            *
+            *   // "allOrNothing" mode
+            *   exp = $interpolate('{{greeting}} {{name}}!', false, null, true);
+            *   expect(exp(context)).toBeUndefined();
+            *   context.name = 'Angular';
+            *   expect(exp(context)).toEqual('Hello Angular!');
+            * ```
+            *
+            * `allOrNothing` is useful for interpolating URLs. `ngSrc` and `ngSrcset` use this behavior.
+            *
+            * ####Escaped Interpolation
+            * $interpolate provides a mechanism for escaping interpolation markers. Start and end markers
+            * can be escaped by preceding each of their characters with a REVERSE SOLIDUS U+005C (backslash).
+            * It will be rendered as a regular start/end marker, and will not be interpreted as an expression
+            * or binding.
+            *
+            * This enables web-servers to prevent script injection attacks and defacing attacks, to some
+            * degree, while also enabling code examples to work without relying on the
+            * {@link ng.directive:ngNonBindable ngNonBindable} directive.
+            *
+            * **For security purposes, it is strongly encouraged that web servers escape user-supplied data,
+            * replacing angle brackets (&lt;, &gt;) with &amp;lt; and &amp;gt; respectively, and replacing all
+            * interpolation start/end markers with their escaped counterparts.**
+            *
+            * Escaped interpolation markers are only replaced with the actual interpolation markers in rendered
+            * output when the $interpolate service processes the text. So, for HTML elements interpolated
+            * by {@link ng.$compile $compile}, or otherwise interpolated with the `mustHaveExpression` parameter
+            * set to `true`, the interpolated text must contain an unescaped interpolation expression. As such,
+            * this is typically useful only when user-data is used in rendering a template from the server, or
+            * when otherwise untrusted data is used by a directive.
+            *
+            * <example>
+            *  <file name="index.html">
+            *    <div ng-init="username='A user'">
+            *      <p ng-init="apptitle='Escaping demo'">{{apptitle}}: \{\{ username = "defaced value"; \}\}
+            *        </p>
+            *      <p><strong>{{username}}</strong> attempts to inject code which will deface the
+            *        application, but fails to accomplish their task, because the server has correctly
+            *        escaped the interpolation start/end markers with REVERSE SOLIDUS U+005C (backslash)
+            *        characters.</p>
+            *      <p>Instead, the result of the attempted script injection is visible, and can be removed
+            *        from the database by an administrator.</p>
+            *    </div>
+            *  </file>
+            * </example>
+            *
+            * @param {string} text The text with markup to interpolate.
+            * @param {boolean=} mustHaveExpression if set to true then the interpolation string must have
+            *    embedded expression in order to return an interpolation function. Strings with no
+            *    embedded expression will return null for the interpolation function.
+            * @param {string=} trustedContext when provided, the returned function passes the interpolated
+            *    result through {@link ng.$sce#getTrusted $sce.getTrusted(interpolatedResult,
+            *    trustedContext)} before returning it.  Refer to the {@link ng.$sce $sce} service that
+            *    provides Strict Contextual Escaping for details.
+            * @param {boolean=} allOrNothing if `true`, then the returned function returns undefined
+            *    unless all embedded expressions evaluate to a value other than `undefined`.
+            * @returns {function(context)} an interpolation function which is used to compute the
+            *    interpolated string. The function has these parameters:
+            *
+            * - `context`: evaluation context for all expressions embedded in the interpolated text
+            */
+           function $interpolate(text, mustHaveExpression, trustedContext, allOrNothing) {
+             allOrNothing = !!allOrNothing;
+             var startIndex,
+                 endIndex,
+                 index = 0,
+                 expressions = [],
+                 parseFns = [],
+                 textLength = text.length,
+                 exp,
+                 concat = [],
+                 expressionPositions = [];
+
+             while (index < textLength) {
+               if (((startIndex = text.indexOf(startSymbol, index)) != -1) &&
+                    ((endIndex = text.indexOf(endSymbol, startIndex + startSymbolLength)) != -1)) {
+                 if (index !== startIndex) {
+                   concat.push(unescapeText(text.substring(index, startIndex)));
+                 }
+                 exp = text.substring(startIndex + startSymbolLength, endIndex);
+                 expressions.push(exp);
+                 parseFns.push($parse(exp, parseStringifyInterceptor));
+                 index = endIndex + endSymbolLength;
+                 expressionPositions.push(concat.length);
+                 concat.push('');
+               } else {
+                 // we did not find an interpolation, so we have to add the remainder to the separators array
+                 if (index !== textLength) {
+                   concat.push(unescapeText(text.substring(index)));
+                 }
+                 break;
+               }
+             }
+
+             // Concatenating expressions makes it hard to reason about whether some combination of
+             // concatenated values are unsafe to use and could easily lead to XSS.  By requiring that a
+             // single expression be used for iframe[src], object[src], etc., we ensure that the value
+             // that's used is assigned or constructed by some JS code somewhere that is more testable or
+             // make it obvious that you bound the value to some user controlled value.  This helps reduce
+             // the load when auditing for XSS issues.
+             if (trustedContext && concat.length > 1) {
+                 $interpolateMinErr.throwNoconcat(text);
+             }
+
+             if (!mustHaveExpression || expressions.length) {
+               var compute = function(values) {
+                 for (var i = 0, ii = expressions.length; i < ii; i++) {
+                   if (allOrNothing && isUndefined(values[i])) return;
+                   concat[expressionPositions[i]] = values[i];
+                 }
+                 return concat.join('');
+               };
+
+               var getValue = function(value) {
+                 return trustedContext ?
+                   $sce.getTrusted(trustedContext, value) :
+                   $sce.valueOf(value);
+               };
+
+               return extend(function interpolationFn(context) {
+                   var i = 0;
+                   var ii = expressions.length;
+                   var values = new Array(ii);
+
+                   try {
+                     for (; i < ii; i++) {
+                       values[i] = parseFns[i](context);
+                     }
+
+                     return compute(values);
+                   } catch (err) {
+                     $exceptionHandler($interpolateMinErr.interr(text, err));
+                   }
+
+                 }, {
+                 // all of these properties are undocumented for now
+                 exp: text, //just for compatibility with regular watchers created via $watch
+                 expressions: expressions,
+                 $$watchDelegate: function(scope, listener) {
+                   var lastValue;
+                   return scope.$watchGroup(parseFns, function interpolateFnWatcher(values, oldValues) {
+                     var currValue = compute(values);
+                     if (isFunction(listener)) {
+                       listener.call(this, currValue, values !== oldValues ? lastValue : currValue, scope);
+                     }
+                     lastValue = currValue;
+                   });
+                 }
+               });
+             }
+
+             function parseStringifyInterceptor(value) {
+               try {
+                 value = getValue(value);
+                 return allOrNothing && !isDefined(value) ? value : stringify(value);
+               } catch (err) {
+                 $exceptionHandler($interpolateMinErr.interr(text, err));
+               }
+             }
+           }
+
+
+           /**
+            * @ngdoc method
+            * @name $interpolate#startSymbol
+            * @description
+            * Symbol to denote the start of expression in the interpolated string. Defaults to `{{`.
+            *
+            * Use {@link ng.$interpolateProvider#startSymbol `$interpolateProvider.startSymbol`} to change
+            * the symbol.
+            *
+            * @returns {string} start symbol.
+            */
+           $interpolate.startSymbol = function() {
+             return startSymbol;
+           };
+
+
+           /**
+            * @ngdoc method
+            * @name $interpolate#endSymbol
+            * @description
+            * Symbol to denote the end of expression in the interpolated string. Defaults to `}}`.
+            *
+            * Use {@link ng.$interpolateProvider#endSymbol `$interpolateProvider.endSymbol`} to change
+            * the symbol.
+            *
+            * @returns {string} end symbol.
+            */
+           $interpolate.endSymbol = function() {
+             return endSymbol;
+           };
+
+           return $interpolate;
+         }];
+       }
+
+       function $IntervalProvider() {
+         this.$get = ['$rootScope', '$window', '$q', '$$q',
+              function($rootScope,   $window,   $q,   $$q) {
+           var intervals = {};
+
+
+            /**
+             * @ngdoc service
+             * @name $interval
+             *
+             * @description
+             * Angular's wrapper for `window.setInterval`. The `fn` function is executed every `delay`
+             * milliseconds.
+             *
+             * The return value of registering an interval function is a promise. This promise will be
+             * notified upon each tick of the interval, and will be resolved after `count` iterations, or
+             * run indefinitely if `count` is not defined. The value of the notification will be the
+             * number of iterations that have run.
+             * To cancel an interval, call `$interval.cancel(promise)`.
+             *
+             * In tests you can use {@link ngMock.$interval#flush `$interval.flush(millis)`} to
+             * move forward by `millis` milliseconds and trigger any functions scheduled to run in that
+             * time.
+             *
+             * <div class="alert alert-warning">
+             * **Note**: Intervals created by this service must be explicitly destroyed when you are finished
+             * with them.  In particular they are not automatically destroyed when a controller's scope or a
+             * directive's element are destroyed.
+             * You should take this into consideration and make sure to always cancel the interval at the
+             * appropriate moment.  See the example below for more details on how and when to do this.
+             * </div>
+             *
+             * @param {function()} fn A function that should be called repeatedly.
+             * @param {number} delay Number of milliseconds between each function call.
+             * @param {number=} [count=0] Number of times to repeat. If not set, or 0, will repeat
+             *   indefinitely.
+             * @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise
+             *   will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block.
+             * @param {...*=} Pass additional parameters to the executed function.
+             * @returns {promise} A promise which will be notified on each iteration.
+             *
+             * @example
+             * <example module="intervalExample">
+             * <file name="index.html">
+             *   <script>
+             *     angular.module('intervalExample', [])
+             *       .controller('ExampleController', ['$scope', '$interval',
+             *         function($scope, $interval) {
+             *           $scope.format = 'M/d/yy h:mm:ss a';
+             *           $scope.blood_1 = 100;
+             *           $scope.blood_2 = 120;
+             *
+             *           var stop;
+             *           $scope.fight = function() {
+             *             // Don't start a new fight if we are already fighting
+             *             if ( angular.isDefined(stop) ) return;
+             *
+             *             stop = $interval(function() {
+             *               if ($scope.blood_1 > 0 && $scope.blood_2 > 0) {
+             *                 $scope.blood_1 = $scope.blood_1 - 3;
+             *                 $scope.blood_2 = $scope.blood_2 - 4;
+             *               } else {
+             *                 $scope.stopFight();
+             *               }
+             *             }, 100);
+             *           };
+             *
+             *           $scope.stopFight = function() {
+             *             if (angular.isDefined(stop)) {
+             *               $interval.cancel(stop);
+             *               stop = undefined;
+             *             }
+             *           };
+             *
+             *           $scope.resetFight = function() {
+             *             $scope.blood_1 = 100;
+             *             $scope.blood_2 = 120;
+             *           };
+             *
+             *           $scope.$on('$destroy', function() {
+             *             // Make sure that the interval is destroyed too
+             *             $scope.stopFight();
+             *           });
+             *         }])
+             *       // Register the 'myCurrentTime' directive factory method.
+             *       // We inject $interval and dateFilter service since the factory method is DI.
+             *       .directive('myCurrentTime', ['$interval', 'dateFilter',
+             *         function($interval, dateFilter) {
+             *           // return the directive link function. (compile function not needed)
+             *           return function(scope, element, attrs) {
+             *             var format,  // date format
+             *                 stopTime; // so that we can cancel the time updates
+             *
+             *             // used to update the UI
+             *             function updateTime() {
+             *               element.text(dateFilter(new Date(), format));
+             *             }
+             *
+             *             // watch the expression, and update the UI on change.
+             *             scope.$watch(attrs.myCurrentTime, function(value) {
+             *               format = value;
+             *               updateTime();
+             *             });
+             *
+             *             stopTime = $interval(updateTime, 1000);
+             *
+             *             // listen on DOM destroy (removal) event, and cancel the next UI update
+             *             // to prevent updating time after the DOM element was removed.
+             *             element.on('$destroy', function() {
+             *               $interval.cancel(stopTime);
+             *             });
+             *           }
+             *         }]);
+             *   </script>
+             *
+             *   <div>
+             *     <div ng-controller="ExampleController">
+             *       <label>Date format: <input ng-model="format"></label> <hr/>
+             *       Current time is: <span my-current-time="format"></span>
+             *       <hr/>
+             *       Blood 1 : <font color='red'>{{blood_1}}</font>
+             *       Blood 2 : <font color='red'>{{blood_2}}</font>
+             *       <button type="button" data-ng-click="fight()">Fight</button>
+             *       <button type="button" data-ng-click="stopFight()">StopFight</button>
+             *       <button type="button" data-ng-click="resetFight()">resetFight</button>
+             *     </div>
+             *   </div>
+             *
+             * </file>
+             * </example>
+             */
+           function interval(fn, delay, count, invokeApply) {
+             var hasParams = arguments.length > 4,
+                 args = hasParams ? sliceArgs(arguments, 4) : [],
+                 setInterval = $window.setInterval,
+                 clearInterval = $window.clearInterval,
+                 iteration = 0,
+                 skipApply = (isDefined(invokeApply) && !invokeApply),
+                 deferred = (skipApply ? $$q : $q).defer(),
+                 promise = deferred.promise;
+
+             count = isDefined(count) ? count : 0;
+
+             promise.then(null, null, (!hasParams) ? fn : function() {
+               fn.apply(null, args);
+             });
+
+             promise.$$intervalId = setInterval(function tick() {
+               deferred.notify(iteration++);
+
+               if (count > 0 && iteration >= count) {
+                 deferred.resolve(iteration);
+                 clearInterval(promise.$$intervalId);
+                 delete intervals[promise.$$intervalId];
+               }
+
+               if (!skipApply) $rootScope.$apply();
+
+             }, delay);
+
+             intervals[promise.$$intervalId] = deferred;
+
+             return promise;
+           }
+
+
+            /**
+             * @ngdoc method
+             * @name $interval#cancel
+             *
+             * @description
+             * Cancels a task associated with the `promise`.
+             *
+             * @param {Promise=} promise returned by the `$interval` function.
+             * @returns {boolean} Returns `true` if the task was successfully canceled.
+             */
+           interval.cancel = function(promise) {
+             if (promise && promise.$$intervalId in intervals) {
+               intervals[promise.$$intervalId].reject('canceled');
+               $window.clearInterval(promise.$$intervalId);
+               delete intervals[promise.$$intervalId];
+               return true;
+             }
+             return false;
+           };
+
+           return interval;
+         }];
+       }
+
+       /**
+        * @ngdoc service
+        * @name $locale
+        *
+        * @description
+        * $locale service provides localization rules for various Angular components. As of right now the
+        * only public api is:
+        *
+        * * `id` – `{string}` – locale id formatted as `languageId-countryId` (e.g. `en-us`)
+        */
+
+       var PATH_MATCH = /^([^\?#]*)(\?([^#]*))?(#(.*))?$/,
+           DEFAULT_PORTS = {'http': 80, 'https': 443, 'ftp': 21};
+       var $locationMinErr = minErr('$location');
+
+
+       /**
+        * Encode path using encodeUriSegment, ignoring forward slashes
+        *
+        * @param {string} path Path to encode
+        * @returns {string}
+        */
+       function encodePath(path) {
+         var segments = path.split('/'),
+             i = segments.length;
+
+         while (i--) {
+           segments[i] = encodeUriSegment(segments[i]);
+         }
+
+         return segments.join('/');
+       }
+
+       function parseAbsoluteUrl(absoluteUrl, locationObj) {
+         var parsedUrl = urlResolve(absoluteUrl);
+
+         locationObj.$$protocol = parsedUrl.protocol;
+         locationObj.$$host = parsedUrl.hostname;
+         locationObj.$$port = toInt(parsedUrl.port) || DEFAULT_PORTS[parsedUrl.protocol] || null;
+       }
+
+
+       function parseAppUrl(relativeUrl, locationObj) {
+         var prefixed = (relativeUrl.charAt(0) !== '/');
+         if (prefixed) {
+           relativeUrl = '/' + relativeUrl;
+         }
+         var match = urlResolve(relativeUrl);
+         locationObj.$$path = decodeURIComponent(prefixed && match.pathname.charAt(0) === '/' ?
+             match.pathname.substring(1) : match.pathname);
+         locationObj.$$search = parseKeyValue(match.search);
+         locationObj.$$hash = decodeURIComponent(match.hash);
+
+         // make sure path starts with '/';
+         if (locationObj.$$path && locationObj.$$path.charAt(0) != '/') {
+           locationObj.$$path = '/' + locationObj.$$path;
+         }
+       }
+
+
+       /**
+        *
+        * @param {string} begin
+        * @param {string} whole
+        * @returns {string} returns text from whole after begin or undefined if it does not begin with
+        *                   expected string.
+        */
+       function beginsWith(begin, whole) {
+         if (whole.indexOf(begin) === 0) {
+           return whole.substr(begin.length);
+         }
+       }
+
+
+       function stripHash(url) {
+         var index = url.indexOf('#');
+         return index == -1 ? url : url.substr(0, index);
+       }
+
+       function trimEmptyHash(url) {
+         return url.replace(/(#.+)|#$/, '$1');
+       }
+
+
+       function stripFile(url) {
+         return url.substr(0, stripHash(url).lastIndexOf('/') + 1);
+       }
+
+       /* return the server only (scheme://host:port) */
+       function serverBase(url) {
+         return url.substring(0, url.indexOf('/', url.indexOf('//') + 2));
+       }
+
+
+       /**
+        * LocationHtml5Url represents an url
+        * This object is exposed as $location service when HTML5 mode is enabled and supported
+        *
+        * @constructor
+        * @param {string} appBase application base URL
+        * @param {string} appBaseNoFile application base URL stripped of any filename
+        * @param {string} basePrefix url path prefix
+        */
+       function LocationHtml5Url(appBase, appBaseNoFile, basePrefix) {
+         this.$$html5 = true;
+         basePrefix = basePrefix || '';
+         parseAbsoluteUrl(appBase, this);
+
+
+         /**
+          * Parse given html5 (regular) url string into properties
+          * @param {string} url HTML5 url
+          * @private
+          */
+         this.$$parse = function(url) {
+           var pathUrl = beginsWith(appBaseNoFile, url);
+           if (!isString(pathUrl)) {
+             throw $locationMinErr('ipthprfx', 'Invalid url "{0}", missing path prefix "{1}".', url,
+                 appBaseNoFile);
+           }
+
+           parseAppUrl(pathUrl, this);
+
+           if (!this.$$path) {
+             this.$$path = '/';
+           }
+
+           this.$$compose();
+         };
+
+         /**
+          * Compose url and update `absUrl` property
+          * @private
+          */
+         this.$$compose = function() {
+           var search = toKeyValue(this.$$search),
+               hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : '';
+
+           this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash;
+           this.$$absUrl = appBaseNoFile + this.$$url.substr(1); // first char is always '/'
+         };
+
+         this.$$parseLinkUrl = function(url, relHref) {
+           if (relHref && relHref[0] === '#') {
+             // special case for links to hash fragments:
+             // keep the old url and only replace the hash fragment
+             this.hash(relHref.slice(1));
+             return true;
+           }
+           var appUrl, prevAppUrl;
+           var rewrittenUrl;
+
+           if (isDefined(appUrl = beginsWith(appBase, url))) {
+             prevAppUrl = appUrl;
+             if (isDefined(appUrl = beginsWith(basePrefix, appUrl))) {
+               rewrittenUrl = appBaseNoFile + (beginsWith('/', appUrl) || appUrl);
+             } else {
+               rewrittenUrl = appBase + prevAppUrl;
+             }
+           } else if (isDefined(appUrl = beginsWith(appBaseNoFile, url))) {
+             rewrittenUrl = appBaseNoFile + appUrl;
+           } else if (appBaseNoFile == url + '/') {
+             rewrittenUrl = appBaseNoFile;
+           }
+           if (rewrittenUrl) {
+             this.$$parse(rewrittenUrl);
+           }
+           return !!rewrittenUrl;
+         };
+       }
+
+
+       /**
+        * LocationHashbangUrl represents url
+        * This object is exposed as $location service when developer doesn't opt into html5 mode.
+        * It also serves as the base class for html5 mode fallback on legacy browsers.
+        *
+        * @constructor
+        * @param {string} appBase application base URL
+        * @param {string} appBaseNoFile application base URL stripped of any filename
+        * @param {string} hashPrefix hashbang prefix
+        */
+       function LocationHashbangUrl(appBase, appBaseNoFile, hashPrefix) {
+
+         parseAbsoluteUrl(appBase, this);
+
+
+         /**
+          * Parse given hashbang url into properties
+          * @param {string} url Hashbang url
+          * @private
+          */
+         this.$$parse = function(url) {
+           var withoutBaseUrl = beginsWith(appBase, url) || beginsWith(appBaseNoFile, url);
+           var withoutHashUrl;
+
+           if (!isUndefined(withoutBaseUrl) && withoutBaseUrl.charAt(0) === '#') {
+
+             // The rest of the url starts with a hash so we have
+             // got either a hashbang path or a plain hash fragment
+             withoutHashUrl = beginsWith(hashPrefix, withoutBaseUrl);
+             if (isUndefined(withoutHashUrl)) {
+               // There was no hashbang prefix so we just have a hash fragment
+               withoutHashUrl = withoutBaseUrl;
+             }
+
+           } else {
+             // There was no hashbang path nor hash fragment:
+             // If we are in HTML5 mode we use what is left as the path;
+             // Otherwise we ignore what is left
+             if (this.$$html5) {
+               withoutHashUrl = withoutBaseUrl;
+             } else {
+               withoutHashUrl = '';
+               if (isUndefined(withoutBaseUrl)) {
+                 appBase = url;
+                 this.replace();
+               }
+             }
+           }
+
+           parseAppUrl(withoutHashUrl, this);
+
+           this.$$path = removeWindowsDriveName(this.$$path, withoutHashUrl, appBase);
+
+           this.$$compose();
+
+           /*
+            * In Windows, on an anchor node on documents loaded from
+            * the filesystem, the browser will return a pathname
+            * prefixed with the drive name ('/C:/path') when a
+            * pathname without a drive is set:
+            *  * a.setAttribute('href', '/foo')
+            *   * a.pathname === '/C:/foo' //true
+            *
+            * Inside of Angular, we're always using pathnames that
+            * do not include drive names for routing.
+            */
+           function removeWindowsDriveName(path, url, base) {
+             /*
+             Matches paths for file protocol on windows,
+             such as /C:/foo/bar, and captures only /foo/bar.
+             */
+             var windowsFilePathExp = /^\/[A-Z]:(\/.*)/;
+
+             var firstPathSegmentMatch;
+
+             //Get the relative path from the input URL.
+             if (url.indexOf(base) === 0) {
+               url = url.replace(base, '');
+             }
+
+             // The input URL intentionally contains a first path segment that ends with a colon.
+             if (windowsFilePathExp.exec(url)) {
+               return path;
+             }
+
+             firstPathSegmentMatch = windowsFilePathExp.exec(path);
+             return firstPathSegmentMatch ? firstPathSegmentMatch[1] : path;
+           }
+         };
+
+         /**
+          * Compose hashbang url and update `absUrl` property
+          * @private
+          */
+         this.$$compose = function() {
+           var search = toKeyValue(this.$$search),
+               hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : '';
+
+           this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash;
+           this.$$absUrl = appBase + (this.$$url ? hashPrefix + this.$$url : '');
+         };
+
+         this.$$parseLinkUrl = function(url, relHref) {
+           if (stripHash(appBase) == stripHash(url)) {
+             this.$$parse(url);
+             return true;
+           }
+           return false;
+         };
+       }
+
+
+       /**
+        * LocationHashbangUrl represents url
+        * This object is exposed as $location service when html5 history api is enabled but the browser
+        * does not support it.
+        *
+        * @constructor
+        * @param {string} appBase application base URL
+        * @param {string} appBaseNoFile application base URL stripped of any filename
+        * @param {string} hashPrefix hashbang prefix
+        */
+       function LocationHashbangInHtml5Url(appBase, appBaseNoFile, hashPrefix) {
+         this.$$html5 = true;
+         LocationHashbangUrl.apply(this, arguments);
+
+         this.$$parseLinkUrl = function(url, relHref) {
+           if (relHref && relHref[0] === '#') {
+             // special case for links to hash fragments:
+             // keep the old url and only replace the hash fragment
+             this.hash(relHref.slice(1));
+             return true;
+           }
+
+           var rewrittenUrl;
+           var appUrl;
+
+           if (appBase == stripHash(url)) {
+             rewrittenUrl = url;
+           } else if ((appUrl = beginsWith(appBaseNoFile, url))) {
+             rewrittenUrl = appBase + hashPrefix + appUrl;
+           } else if (appBaseNoFile === url + '/') {
+             rewrittenUrl = appBaseNoFile;
+           }
+           if (rewrittenUrl) {
+             this.$$parse(rewrittenUrl);
+           }
+           return !!rewrittenUrl;
+         };
+
+         this.$$compose = function() {
+           var search = toKeyValue(this.$$search),
+               hash = this.$$hash ? '#' + encodeUriSegment(this.$$hash) : '';
+
+           this.$$url = encodePath(this.$$path) + (search ? '?' + search : '') + hash;
+           // include hashPrefix in $$absUrl when $$url is empty so IE9 does not reload page because of removal of '#'
+           this.$$absUrl = appBase + hashPrefix + this.$$url;
+         };
+
+       }
+
+
+       var locationPrototype = {
+
+         /**
+          * Are we in html5 mode?
+          * @private
+          */
+         $$html5: false,
+
+         /**
+          * Has any change been replacing?
+          * @private
+          */
+         $$replace: false,
+
+         /**
+          * @ngdoc method
+          * @name $location#absUrl
+          *
+          * @description
+          * This method is getter only.
+          *
+          * Return full url representation with all segments encoded according to rules specified in
+          * [RFC 3986](http://www.ietf.org/rfc/rfc3986.txt).
+          *
+          *
+          * ```js
+          * // given url http://example.com/#/some/path?foo=bar&baz=xoxo
+          * var absUrl = $location.absUrl();
+          * // => "http://example.com/#/some/path?foo=bar&baz=xoxo"
+          * ```
+          *
+          * @return {string} full url
+          */
+         absUrl: locationGetter('$$absUrl'),
+
+         /**
+          * @ngdoc method
+          * @name $location#url
+          *
+          * @description
+          * This method is getter / setter.
+          *
+          * Return url (e.g. `/path?a=b#hash`) when called without any parameter.
+          *
+          * Change path, search and hash, when called with parameter and return `$location`.
+          *
+          *
+          * ```js
+          * // given url http://example.com/#/some/path?foo=bar&baz=xoxo
+          * var url = $location.url();
+          * // => "/some/path?foo=bar&baz=xoxo"
+          * ```
+          *
+          * @param {string=} url New url without base prefix (e.g. `/path?a=b#hash`)
+          * @return {string} url
+          */
+         url: function(url) {
+           if (isUndefined(url)) {
+             return this.$$url;
+           }
+
+           var match = PATH_MATCH.exec(url);
+           if (match[1] || url === '') this.path(decodeURIComponent(match[1]));
+           if (match[2] || match[1] || url === '') this.search(match[3] || '');
+           this.hash(match[5] || '');
+
+           return this;
+         },
+
+         /**
+          * @ngdoc method
+          * @name $location#protocol
+          *
+          * @description
+          * This method is getter only.
+          *
+          * Return protocol of current url.
+          *
+          *
+          * ```js
+          * // given url http://example.com/#/some/path?foo=bar&baz=xoxo
+          * var protocol = $location.protocol();
+          * // => "http"
+          * ```
+          *
+          * @return {string} protocol of current url
+          */
+         protocol: locationGetter('$$protocol'),
+
+         /**
+          * @ngdoc method
+          * @name $location#host
+          *
+          * @description
+          * This method is getter only.
+          *
+          * Return host of current url.
+          *
+          * Note: compared to the non-angular version `location.host` which returns `hostname:port`, this returns the `hostname` portion only.
+          *
+          *
+          * ```js
+          * // given url http://example.com/#/some/path?foo=bar&baz=xoxo
+          * var host = $location.host();
+          * // => "example.com"
+          *
+          * // given url http://user:password@example.com:8080/#/some/path?foo=bar&baz=xoxo
+          * host = $location.host();
+          * // => "example.com"
+          * host = location.host;
+          * // => "example.com:8080"
+          * ```
+          *
+          * @return {string} host of current url.
+          */
+         host: locationGetter('$$host'),
+
+         /**
+          * @ngdoc method
+          * @name $location#port
+          *
+          * @description
+          * This method is getter only.
+          *
+          * Return port of current url.
+          *
+          *
+          * ```js
+          * // given url http://example.com/#/some/path?foo=bar&baz=xoxo
+          * var port = $location.port();
+          * // => 80
+          * ```
+          *
+          * @return {Number} port
+          */
+         port: locationGetter('$$port'),
+
+         /**
+          * @ngdoc method
+          * @name $location#path
+          *
+          * @description
+          * This method is getter / setter.
+          *
+          * Return path of current url when called without any parameter.
+          *
+          * Change path when called with parameter and return `$location`.
+          *
+          * Note: Path should always begin with forward slash (/), this method will add the forward slash
+          * if it is missing.
+          *
+          *
+          * ```js
+          * // given url http://example.com/#/some/path?foo=bar&baz=xoxo
+          * var path = $location.path();
+          * // => "/some/path"
+          * ```
+          *
+          * @param {(string|number)=} path New path
+          * @return {string} path
+          */
+         path: locationGetterSetter('$$path', function(path) {
+           path = path !== null ? path.toString() : '';
+           return path.charAt(0) == '/' ? path : '/' + path;
+         }),
+
+         /**
+          * @ngdoc method
+          * @name $location#search
+          *
+          * @description
+          * This method is getter / setter.
+          *
+          * Return search part (as object) of current url when called without any parameter.
+          *
+          * Change search part when called with parameter and return `$location`.
+          *
+          *
+          * ```js
+          * // given url http://example.com/#/some/path?foo=bar&baz=xoxo
+          * var searchObject = $location.search();
+          * // => {foo: 'bar', baz: 'xoxo'}
+          *
+          * // set foo to 'yipee'
+          * $location.search('foo', 'yipee');
+          * // $location.search() => {foo: 'yipee', baz: 'xoxo'}
+          * ```
+          *
+          * @param {string|Object.<string>|Object.<Array.<string>>} search New search params - string or
+          * hash object.
+          *
+          * When called with a single argument the method acts as a setter, setting the `search` component
+          * of `$location` to the specified value.
+          *
+          * If the argument is a hash object containing an array of values, these values will be encoded
+          * as duplicate search parameters in the url.
+          *
+          * @param {(string|Number|Array<string>|boolean)=} paramValue If `search` is a string or number, then `paramValue`
+          * will override only a single search property.
+          *
+          * If `paramValue` is an array, it will override the property of the `search` component of
+          * `$location` specified via the first argument.
+          *
+          * If `paramValue` is `null`, the property specified via the first argument will be deleted.
+          *
+          * If `paramValue` is `true`, the property specified via the first argument will be added with no
+          * value nor trailing equal sign.
+          *
+          * @return {Object} If called with no arguments returns the parsed `search` object. If called with
+          * one or more arguments returns `$location` object itself.
+          */
+         search: function(search, paramValue) {
+           switch (arguments.length) {
+             case 0:
+               return this.$$search;
+             case 1:
+               if (isString(search) || isNumber(search)) {
+                 search = search.toString();
+                 this.$$search = parseKeyValue(search);
+               } else if (isObject(search)) {
+                 search = copy(search, {});
+                 // remove object undefined or null properties
+                 forEach(search, function(value, key) {
+                   if (value == null) delete search[key];
+                 });
+
+                 this.$$search = search;
+               } else {
+                 throw $locationMinErr('isrcharg',
+                     'The first argument of the `$location#search()` call must be a string or an object.');
+               }
+               break;
+             default:
+               if (isUndefined(paramValue) || paramValue === null) {
+                 delete this.$$search[search];
+               } else {
+                 this.$$search[search] = paramValue;
+               }
+           }
+
+           this.$$compose();
+           return this;
+         },
+
+         /**
+          * @ngdoc method
+          * @name $location#hash
+          *
+          * @description
+          * This method is getter / setter.
+          *
+          * Returns the hash fragment when called without any parameters.
+          *
+          * Changes the hash fragment when called with a parameter and returns `$location`.
+          *
+          *
+          * ```js
+          * // given url http://example.com/#/some/path?foo=bar&baz=xoxo#hashValue
+          * var hash = $location.hash();
+          * // => "hashValue"
+          * ```
+          *
+          * @param {(string|number)=} hash New hash fragment
+          * @return {string} hash
+          */
+         hash: locationGetterSetter('$$hash', function(hash) {
+           return hash !== null ? hash.toString() : '';
+         }),
+
+         /**
+          * @ngdoc method
+          * @name $location#replace
+          *
+          * @description
+          * If called, all changes to $location during the current `$digest` will replace the current history
+          * record, instead of adding a new one.
+          */
+         replace: function() {
+           this.$$replace = true;
+           return this;
+         }
+       };
+
+       forEach([LocationHashbangInHtml5Url, LocationHashbangUrl, LocationHtml5Url], function(Location) {
+         Location.prototype = Object.create(locationPrototype);
+
+         /**
+          * @ngdoc method
+          * @name $location#state
+          *
+          * @description
+          * This method is getter / setter.
+          *
+          * Return the history state object when called without any parameter.
+          *
+          * Change the history state object when called with one parameter and return `$location`.
+          * The state object is later passed to `pushState` or `replaceState`.
+          *
+          * NOTE: This method is supported only in HTML5 mode and only in browsers supporting
+          * the HTML5 History API (i.e. methods `pushState` and `replaceState`). If you need to support
+          * older browsers (like IE9 or Android < 4.0), don't use this method.
+          *
+          * @param {object=} state State object for pushState or replaceState
+          * @return {object} state
+          */
+         Location.prototype.state = function(state) {
+           if (!arguments.length) {
+             return this.$$state;
+           }
+
+           if (Location !== LocationHtml5Url || !this.$$html5) {
+             throw $locationMinErr('nostate', 'History API state support is available only ' +
+               'in HTML5 mode and only in browsers supporting HTML5 History API');
+           }
+           // The user might modify `stateObject` after invoking `$location.state(stateObject)`
+           // but we're changing the $$state reference to $browser.state() during the $digest
+           // so the modification window is narrow.
+           this.$$state = isUndefined(state) ? null : state;
+
+           return this;
+         };
+       });
+
+
+       function locationGetter(property) {
+         return function() {
+           return this[property];
+         };
+       }
+
+
+       function locationGetterSetter(property, preprocess) {
+         return function(value) {
+           if (isUndefined(value)) {
+             return this[property];
+           }
+
+           this[property] = preprocess(value);
+           this.$$compose();
+
+           return this;
+         };
+       }
+
+
+       /**
+        * @ngdoc service
+        * @name $location
+        *
+        * @requires $rootElement
+        *
+        * @description
+        * The $location service parses the URL in the browser address bar (based on the
+        * [window.location](https://developer.mozilla.org/en/window.location)) and makes the URL
+        * available to your application. Changes to the URL in the address bar are reflected into
+        * $location service and changes to $location are reflected into the browser address bar.
+        *
+        * **The $location service:**
+        *
+        * - Exposes the current URL in the browser address bar, so you can
+        *   - Watch and observe the URL.
+        *   - Change the URL.
+        * - Synchronizes the URL with the browser when the user
+        *   - Changes the address bar.
+        *   - Clicks the back or forward button (or clicks a History link).
+        *   - Clicks on a link.
+        * - Represents the URL object as a set of methods (protocol, host, port, path, search, hash).
+        *
+        * For more information see {@link guide/$location Developer Guide: Using $location}
+        */
+
+       /**
+        * @ngdoc provider
+        * @name $locationProvider
+        * @description
+        * Use the `$locationProvider` to configure how the application deep linking paths are stored.
+        */
+       function $LocationProvider() {
+         var hashPrefix = '',
+             html5Mode = {
+               enabled: false,
+               requireBase: true,
+               rewriteLinks: true
+             };
+
+         /**
+          * @ngdoc method
+          * @name $locationProvider#hashPrefix
+          * @description
+          * @param {string=} prefix Prefix for hash part (containing path and search)
+          * @returns {*} current value if used as getter or itself (chaining) if used as setter
+          */
+         this.hashPrefix = function(prefix) {
+           if (isDefined(prefix)) {
+             hashPrefix = prefix;
+             return this;
+           } else {
+             return hashPrefix;
+           }
+         };
+
+         /**
+          * @ngdoc method
+          * @name $locationProvider#html5Mode
+          * @description
+          * @param {(boolean|Object)=} mode If boolean, sets `html5Mode.enabled` to value.
+          *   If object, sets `enabled`, `requireBase` and `rewriteLinks` to respective values. Supported
+          *   properties:
+          *   - **enabled** – `{boolean}` – (default: false) If true, will rely on `history.pushState` to
+          *     change urls where supported. Will fall back to hash-prefixed paths in browsers that do not
+          *     support `pushState`.
+          *   - **requireBase** - `{boolean}` - (default: `true`) When html5Mode is enabled, specifies
+          *     whether or not a <base> tag is required to be present. If `enabled` and `requireBase` are
+          *     true, and a base tag is not present, an error will be thrown when `$location` is injected.
+          *     See the {@link guide/$location $location guide for more information}
+          *   - **rewriteLinks** - `{boolean}` - (default: `true`) When html5Mode is enabled,
+          *     enables/disables url rewriting for relative links.
+          *
+          * @returns {Object} html5Mode object if used as getter or itself (chaining) if used as setter
+          */
+         this.html5Mode = function(mode) {
+           if (isBoolean(mode)) {
+             html5Mode.enabled = mode;
+             return this;
+           } else if (isObject(mode)) {
+
+             if (isBoolean(mode.enabled)) {
+               html5Mode.enabled = mode.enabled;
+             }
+
+             if (isBoolean(mode.requireBase)) {
+               html5Mode.requireBase = mode.requireBase;
+             }
+
+             if (isBoolean(mode.rewriteLinks)) {
+               html5Mode.rewriteLinks = mode.rewriteLinks;
+             }
+
+             return this;
+           } else {
+             return html5Mode;
+           }
+         };
+
+         /**
+          * @ngdoc event
+          * @name $location#$locationChangeStart
+          * @eventType broadcast on root scope
+          * @description
+          * Broadcasted before a URL will change.
+          *
+          * This change can be prevented by calling
+          * `preventDefault` method of the event. See {@link ng.$rootScope.Scope#$on} for more
+          * details about event object. Upon successful change
+          * {@link ng.$location#$locationChangeSuccess $locationChangeSuccess} is fired.
+          *
+          * The `newState` and `oldState` parameters may be defined only in HTML5 mode and when
+          * the browser supports the HTML5 History API.
+          *
+          * @param {Object} angularEvent Synthetic event object.
+          * @param {string} newUrl New URL
+          * @param {string=} oldUrl URL that was before it was changed.
+          * @param {string=} newState New history state object
+          * @param {string=} oldState History state object that was before it was changed.
+          */
+
+         /**
+          * @ngdoc event
+          * @name $location#$locationChangeSuccess
+          * @eventType broadcast on root scope
+          * @description
+          * Broadcasted after a URL was changed.
+          *
+          * The `newState` and `oldState` parameters may be defined only in HTML5 mode and when
+          * the browser supports the HTML5 History API.
+          *
+          * @param {Object} angularEvent Synthetic event object.
+          * @param {string} newUrl New URL
+          * @param {string=} oldUrl URL that was before it was changed.
+          * @param {string=} newState New history state object
+          * @param {string=} oldState History state object that was before it was changed.
+          */
+
+         this.$get = ['$rootScope', '$browser', '$sniffer', '$rootElement', '$window',
+             function($rootScope, $browser, $sniffer, $rootElement, $window) {
+           var $location,
+               LocationMode,
+               baseHref = $browser.baseHref(), // if base[href] is undefined, it defaults to ''
+               initialUrl = $browser.url(),
+               appBase;
+
+           if (html5Mode.enabled) {
+             if (!baseHref && html5Mode.requireBase) {
+               throw $locationMinErr('nobase',
+                 "$location in HTML5 mode requires a <base> tag to be present!");
+             }
+             appBase = serverBase(initialUrl) + (baseHref || '/');
+             LocationMode = $sniffer.history ? LocationHtml5Url : LocationHashbangInHtml5Url;
+           } else {
+             appBase = stripHash(initialUrl);
+             LocationMode = LocationHashbangUrl;
+           }
+           var appBaseNoFile = stripFile(appBase);
+
+           $location = new LocationMode(appBase, appBaseNoFile, '#' + hashPrefix);
+           $location.$$parseLinkUrl(initialUrl, initialUrl);
+
+           $location.$$state = $browser.state();
+
+           var IGNORE_URI_REGEXP = /^\s*(javascript|mailto):/i;
+
+           function setBrowserUrlWithFallback(url, replace, state) {
+             var oldUrl = $location.url();
+             var oldState = $location.$$state;
+             try {
+               $browser.url(url, replace, state);
+
+               // Make sure $location.state() returns referentially identical (not just deeply equal)
+               // state object; this makes possible quick checking if the state changed in the digest
+               // loop. Checking deep equality would be too expensive.
+               $location.$$state = $browser.state();
+             } catch (e) {
+               // Restore old values if pushState fails
+               $location.url(oldUrl);
+               $location.$$state = oldState;
+
+               throw e;
+             }
+           }
+
+           $rootElement.on('click', function(event) {
+             // TODO(vojta): rewrite link when opening in new tab/window (in legacy browser)
+             // currently we open nice url link and redirect then
+
+             if (!html5Mode.rewriteLinks || event.ctrlKey || event.metaKey || event.shiftKey || event.which == 2 || event.button == 2) return;
+
+             var elm = jqLite(event.target);
+
+             // traverse the DOM up to find first A tag
+             while (nodeName_(elm[0]) !== 'a') {
+               // ignore rewriting if no A tag (reached root element, or no parent - removed from document)
+               if (elm[0] === $rootElement[0] || !(elm = elm.parent())[0]) return;
+             }
+
+             var absHref = elm.prop('href');
+             // get the actual href attribute - see
+             // http://msdn.microsoft.com/en-us/library/ie/dd347148(v=vs.85).aspx
+             var relHref = elm.attr('href') || elm.attr('xlink:href');
+
+             if (isObject(absHref) && absHref.toString() === '[object SVGAnimatedString]') {
+               // SVGAnimatedString.animVal should be identical to SVGAnimatedString.baseVal, unless during
+               // an animation.
+               absHref = urlResolve(absHref.animVal).href;
+             }
+
+             // Ignore when url is started with javascript: or mailto:
+             if (IGNORE_URI_REGEXP.test(absHref)) return;
+
+             if (absHref && !elm.attr('target') && !event.isDefaultPrevented()) {
+               if ($location.$$parseLinkUrl(absHref, relHref)) {
+                 // We do a preventDefault for all urls that are part of the angular application,
+                 // in html5mode and also without, so that we are able to abort navigation without
+                 // getting double entries in the location history.
+                 event.preventDefault();
+                 // update location manually
+                 if ($location.absUrl() != $browser.url()) {
+                   $rootScope.$apply();
+                   // hack to work around FF6 bug 684208 when scenario runner clicks on links
+                   $window.angular['ff-684208-preventDefault'] = true;
+                 }
+               }
+             }
+           });
+
+
+           // rewrite hashbang url <> html5 url
+           if (trimEmptyHash($location.absUrl()) != trimEmptyHash(initialUrl)) {
+             $browser.url($location.absUrl(), true);
+           }
+
+           var initializing = true;
+
+           // update $location when $browser url changes
+           $browser.onUrlChange(function(newUrl, newState) {
+
+             if (isUndefined(beginsWith(appBaseNoFile, newUrl))) {
+               // If we are navigating outside of the app then force a reload
+               $window.location.href = newUrl;
+               return;
+             }
+
+             $rootScope.$evalAsync(function() {
+               var oldUrl = $location.absUrl();
+               var oldState = $location.$$state;
+               var defaultPrevented;
+               newUrl = trimEmptyHash(newUrl);
+               $location.$$parse(newUrl);
+               $location.$$state = newState;
+
+               defaultPrevented = $rootScope.$broadcast('$locationChangeStart', newUrl, oldUrl,
+                   newState, oldState).defaultPrevented;
+
+               // if the location was changed by a `$locationChangeStart` handler then stop
+               // processing this location change
+               if ($location.absUrl() !== newUrl) return;
+
+               if (defaultPrevented) {
+                 $location.$$parse(oldUrl);
+                 $location.$$state = oldState;
+                 setBrowserUrlWithFallback(oldUrl, false, oldState);
+               } else {
+                 initializing = false;
+                 afterLocationChange(oldUrl, oldState);
+               }
+             });
+             if (!$rootScope.$$phase) $rootScope.$digest();
+           });
+
+           // update browser
+           $rootScope.$watch(function $locationWatch() {
+             var oldUrl = trimEmptyHash($browser.url());
+             var newUrl = trimEmptyHash($location.absUrl());
+             var oldState = $browser.state();
+             var currentReplace = $location.$$replace;
+             var urlOrStateChanged = oldUrl !== newUrl ||
+               ($location.$$html5 && $sniffer.history && oldState !== $location.$$state);
+
+             if (initializing || urlOrStateChanged) {
+               initializing = false;
+
+               $rootScope.$evalAsync(function() {
+                 var newUrl = $location.absUrl();
+                 var defaultPrevented = $rootScope.$broadcast('$locationChangeStart', newUrl, oldUrl,
+                     $location.$$state, oldState).defaultPrevented;
+
+                 // if the location was changed by a `$locationChangeStart` handler then stop
+                 // processing this location change
+                 if ($location.absUrl() !== newUrl) return;
+
+                 if (defaultPrevented) {
+                   $location.$$parse(oldUrl);
+                   $location.$$state = oldState;
+                 } else {
+                   if (urlOrStateChanged) {
+                     setBrowserUrlWithFallback(newUrl, currentReplace,
+                                               oldState === $location.$$state ? null : $location.$$state);
+                   }
+                   afterLocationChange(oldUrl, oldState);
+                 }
+               });
+             }
+
+             $location.$$replace = false;
+
+             // we don't need to return anything because $evalAsync will make the digest loop dirty when
+             // there is a change
+           });
+
+           return $location;
+
+           function afterLocationChange(oldUrl, oldState) {
+             $rootScope.$broadcast('$locationChangeSuccess', $location.absUrl(), oldUrl,
+               $location.$$state, oldState);
+           }
+       }];
+       }
+
+       /**
+        * @ngdoc service
+        * @name $log
+        * @requires $window
+        *
+        * @description
+        * Simple service for logging. Default implementation safely writes the message
+        * into the browser's console (if present).
+        *
+        * The main purpose of this service is to simplify debugging and troubleshooting.
+        *
+        * The default is to log `debug` messages. You can use
+        * {@link ng.$logProvider ng.$logProvider#debugEnabled} to change this.
+        *
+        * @example
+          <example module="logExample">
+            <file name="script.js">
+              angular.module('logExample', [])
+                .controller('LogController', ['$scope', '$log', function($scope, $log) {
+                  $scope.$log = $log;
+                  $scope.message = 'Hello World!';
+                }]);
+            </file>
+            <file name="index.html">
+              <div ng-controller="LogController">
+                <p>Reload this page with open console, enter text and hit the log button...</p>
+                <label>Message:
+                <input type="text" ng-model="message" /></label>
+                <button ng-click="$log.log(message)">log</button>
+                <button ng-click="$log.warn(message)">warn</button>
+                <button ng-click="$log.info(message)">info</button>
+                <button ng-click="$log.error(message)">error</button>
+                <button ng-click="$log.debug(message)">debug</button>
+              </div>
+            </file>
+          </example>
+        */
+
+       /**
+        * @ngdoc provider
+        * @name $logProvider
+        * @description
+        * Use the `$logProvider` to configure how the application logs messages
+        */
+       function $LogProvider() {
+         var debug = true,
+             self = this;
+
+         /**
+          * @ngdoc method
+          * @name $logProvider#debugEnabled
+          * @description
+          * @param {boolean=} flag enable or disable debug level messages
+          * @returns {*} current value if used as getter or itself (chaining) if used as setter
+          */
+         this.debugEnabled = function(flag) {
+           if (isDefined(flag)) {
+             debug = flag;
+           return this;
+           } else {
+             return debug;
+           }
+         };
+
+         this.$get = ['$window', function($window) {
+           return {
+             /**
+              * @ngdoc method
+              * @name $log#log
+              *
+              * @description
+              * Write a log message
+              */
+             log: consoleLog('log'),
+
+             /**
+              * @ngdoc method
+              * @name $log#info
+              *
+              * @description
+              * Write an information message
+              */
+             info: consoleLog('info'),
+
+             /**
+              * @ngdoc method
+              * @name $log#warn
+              *
+              * @description
+              * Write a warning message
+              */
+             warn: consoleLog('warn'),
+
+             /**
+              * @ngdoc method
+              * @name $log#error
+              *
+              * @description
+              * Write an error message
+              */
+             error: consoleLog('error'),
+
+             /**
+              * @ngdoc method
+              * @name $log#debug
+              *
+              * @description
+              * Write a debug message
+              */
+             debug: (function() {
+               var fn = consoleLog('debug');
+
+               return function() {
+                 if (debug) {
+                   fn.apply(self, arguments);
+                 }
+               };
+             }())
+           };
+
+           function formatError(arg) {
+             if (arg instanceof Error) {
+               if (arg.stack) {
+                 arg = (arg.message && arg.stack.indexOf(arg.message) === -1)
+                     ? 'Error: ' + arg.message + '\n' + arg.stack
+                     : arg.stack;
+               } else if (arg.sourceURL) {
+                 arg = arg.message + '\n' + arg.sourceURL + ':' + arg.line;
+               }
+             }
+             return arg;
+           }
+
+           function consoleLog(type) {
+             var console = $window.console || {},
+                 logFn = console[type] || console.log || noop,
+                 hasApply = false;
+
+             // Note: reading logFn.apply throws an error in IE11 in IE8 document mode.
+             // The reason behind this is that console.log has type "object" in IE8...
+             try {
+               hasApply = !!logFn.apply;
+             } catch (e) {}
+
+             if (hasApply) {
+               return function() {
+                 var args = [];
+                 forEach(arguments, function(arg) {
+                   args.push(formatError(arg));
+                 });
+                 return logFn.apply(console, args);
+               };
+             }
+
+             // we are IE which either doesn't have window.console => this is noop and we do nothing,
+             // or we are IE where console.log doesn't have apply so we log at least first 2 args
+             return function(arg1, arg2) {
+               logFn(arg1, arg2 == null ? '' : arg2);
+             };
+           }
+         }];
+       }
+
+       /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+        *     Any commits to this file should be reviewed with security in mind.  *
+        *   Changes to this file can potentially create security vulnerabilities. *
+        *          An approval from 2 Core members with history of modifying      *
+        *                         this file is required.                          *
+        *                                                                         *
+        *  Does the change somehow allow for arbitrary javascript to be executed? *
+        *    Or allows for someone to change the prototype of built-in objects?   *
+        *     Or gives undesired access to variables likes document or window?    *
+        * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+       var $parseMinErr = minErr('$parse');
+
+       // Sandboxing Angular Expressions
+       // ------------------------------
+       // Angular expressions are generally considered safe because these expressions only have direct
+       // access to `$scope` and locals. However, one can obtain the ability to execute arbitrary JS code by
+       // obtaining a reference to native JS functions such as the Function constructor.
+       //
+       // As an example, consider the following Angular expression:
+       //
+       //   {}.toString.constructor('alert("evil JS code")')
+       //
+       // This sandboxing technique is not perfect and doesn't aim to be. The goal is to prevent exploits
+       // against the expression language, but not to prevent exploits that were enabled by exposing
+       // sensitive JavaScript or browser APIs on Scope. Exposing such objects on a Scope is never a good
+       // practice and therefore we are not even trying to protect against interaction with an object
+       // explicitly exposed in this way.
+       //
+       // In general, it is not possible to access a Window object from an angular expression unless a
+       // window or some DOM object that has a reference to window is published onto a Scope.
+       // Similarly we prevent invocations of function known to be dangerous, as well as assignments to
+       // native objects.
+       //
+       // See https://docs.angularjs.org/guide/security
+
+
+       function ensureSafeMemberName(name, fullExpression) {
+         if (name === "__defineGetter__" || name === "__defineSetter__"
+             || name === "__lookupGetter__" || name === "__lookupSetter__"
+             || name === "__proto__") {
+           throw $parseMinErr('isecfld',
+               'Attempting to access a disallowed field in Angular expressions! '
+               + 'Expression: {0}', fullExpression);
+         }
+         return name;
+       }
+
+       function getStringValue(name, fullExpression) {
+         // From the JavaScript docs:
+         // Property names must be strings. This means that non-string objects cannot be used
+         // as keys in an object. Any non-string object, including a number, is typecasted
+         // into a string via the toString method.
+         //
+         // So, to ensure that we are checking the same `name` that JavaScript would use,
+         // we cast it to a string, if possible.
+         // Doing `name + ''` can cause a repl error if the result to `toString` is not a string,
+         // this is, this will handle objects that misbehave.
+         name = name + '';
+         if (!isString(name)) {
+           throw $parseMinErr('iseccst',
+               'Cannot convert object to primitive value! '
+               + 'Expression: {0}', fullExpression);
+         }
+         return name;
+       }
+
+       function ensureSafeObject(obj, fullExpression) {
+         // nifty check if obj is Function that is fast and works across iframes and other contexts
+         if (obj) {
+           if (obj.constructor === obj) {
+             throw $parseMinErr('isecfn',
+                 'Referencing Function in Angular expressions is disallowed! Expression: {0}',
+                 fullExpression);
+           } else if (// isWindow(obj)
+               obj.window === obj) {
+             throw $parseMinErr('isecwindow',
+                 'Referencing the Window in Angular expressions is disallowed! Expression: {0}',
+                 fullExpression);
+           } else if (// isElement(obj)
+               obj.children && (obj.nodeName || (obj.prop && obj.attr && obj.find))) {
+             throw $parseMinErr('isecdom',
+                 'Referencing DOM nodes in Angular expressions is disallowed! Expression: {0}',
+                 fullExpression);
+           } else if (// block Object so that we can't get hold of dangerous Object.* methods
+               obj === Object) {
+             throw $parseMinErr('isecobj',
+                 'Referencing Object in Angular expressions is disallowed! Expression: {0}',
+                 fullExpression);
+           }
+         }
+         return obj;
+       }
+
+       var CALL = Function.prototype.call;
+       var APPLY = Function.prototype.apply;
+       var BIND = Function.prototype.bind;
+
+       function ensureSafeFunction(obj, fullExpression) {
+         if (obj) {
+           if (obj.constructor === obj) {
+             throw $parseMinErr('isecfn',
+               'Referencing Function in Angular expressions is disallowed! Expression: {0}',
+               fullExpression);
+           } else if (obj === CALL || obj === APPLY || obj === BIND) {
+             throw $parseMinErr('isecff',
+               'Referencing call, apply or bind in Angular expressions is disallowed! Expression: {0}',
+               fullExpression);
+           }
+         }
+       }
+
+       function ensureSafeAssignContext(obj, fullExpression) {
+         if (obj) {
+           if (obj === (0).constructor || obj === (false).constructor || obj === ''.constructor ||
+               obj === {}.constructor || obj === [].constructor || obj === Function.constructor) {
+             throw $parseMinErr('isecaf',
+               'Assigning to a constructor is disallowed! Expression: {0}', fullExpression);
+           }
+         }
+       }
+
+       var OPERATORS = createMap();
+       forEach('+ - * / % === !== == != < > <= >= && || ! = |'.split(' '), function(operator) { OPERATORS[operator] = true; });
+       var ESCAPE = {"n":"\n", "f":"\f", "r":"\r", "t":"\t", "v":"\v", "'":"'", '"':'"'};
+
+
+       /////////////////////////////////////////
+
+
+       /**
+        * @constructor
+        */
+       var Lexer = function(options) {
+         this.options = options;
+       };
+
+       Lexer.prototype = {
+         constructor: Lexer,
+
+         lex: function(text) {
+           this.text = text;
+           this.index = 0;
+           this.tokens = [];
+
+           while (this.index < this.text.length) {
+             var ch = this.text.charAt(this.index);
+             if (ch === '"' || ch === "'") {
+               this.readString(ch);
+             } else if (this.isNumber(ch) || ch === '.' && this.isNumber(this.peek())) {
+               this.readNumber();
+             } else if (this.isIdent(ch)) {
+               this.readIdent();
+             } else if (this.is(ch, '(){}[].,;:?')) {
+               this.tokens.push({index: this.index, text: ch});
+               this.index++;
+             } else if (this.isWhitespace(ch)) {
+               this.index++;
+             } else {
+               var ch2 = ch + this.peek();
+               var ch3 = ch2 + this.peek(2);
+               var op1 = OPERATORS[ch];
+               var op2 = OPERATORS[ch2];
+               var op3 = OPERATORS[ch3];
+               if (op1 || op2 || op3) {
+                 var token = op3 ? ch3 : (op2 ? ch2 : ch);
+                 this.tokens.push({index: this.index, text: token, operator: true});
+                 this.index += token.length;
+               } else {
+                 this.throwError('Unexpected next character ', this.index, this.index + 1);
+               }
+             }
+           }
+           return this.tokens;
+         },
+
+         is: function(ch, chars) {
+           return chars.indexOf(ch) !== -1;
+         },
+
+         peek: function(i) {
+           var num = i || 1;
+           return (this.index + num < this.text.length) ? this.text.charAt(this.index + num) : false;
+         },
+
+         isNumber: function(ch) {
+           return ('0' <= ch && ch <= '9') && typeof ch === "string";
+         },
+
+         isWhitespace: function(ch) {
+           // IE treats non-breaking space as \u00A0
+           return (ch === ' ' || ch === '\r' || ch === '\t' ||
+                   ch === '\n' || ch === '\v' || ch === '\u00A0');
+         },
+
+         isIdent: function(ch) {
+           return ('a' <= ch && ch <= 'z' ||
+                   'A' <= ch && ch <= 'Z' ||
+                   '_' === ch || ch === '$');
+         },
+
+         isExpOperator: function(ch) {
+           return (ch === '-' || ch === '+' || this.isNumber(ch));
+         },
+
+         throwError: function(error, start, end) {
+           end = end || this.index;
+           var colStr = (isDefined(start)
+                   ? 's ' + start +  '-' + this.index + ' [' + this.text.substring(start, end) + ']'
+                   : ' ' + end);
+           throw $parseMinErr('lexerr', 'Lexer Error: {0} at column{1} in expression [{2}].',
+               error, colStr, this.text);
+         },
+
+         readNumber: function() {
+           var number = '';
+           var start = this.index;
+           while (this.index < this.text.length) {
+             var ch = lowercase(this.text.charAt(this.index));
+             if (ch == '.' || this.isNumber(ch)) {
+               number += ch;
+             } else {
+               var peekCh = this.peek();
+               if (ch == 'e' && this.isExpOperator(peekCh)) {
+                 number += ch;
+               } else if (this.isExpOperator(ch) &&
+                   peekCh && this.isNumber(peekCh) &&
+                   number.charAt(number.length - 1) == 'e') {
+                 number += ch;
+               } else if (this.isExpOperator(ch) &&
+                   (!peekCh || !this.isNumber(peekCh)) &&
+                   number.charAt(number.length - 1) == 'e') {
+                 this.throwError('Invalid exponent');
+               } else {
+                 break;
+               }
+             }
+             this.index++;
+           }
+           this.tokens.push({
+             index: start,
+             text: number,
+             constant: true,
+             value: Number(number)
+           });
+         },
+
+         readIdent: function() {
+           var start = this.index;
+           while (this.index < this.text.length) {
+             var ch = this.text.charAt(this.index);
+             if (!(this.isIdent(ch) || this.isNumber(ch))) {
+               break;
+             }
+             this.index++;
+           }
+           this.tokens.push({
+             index: start,
+             text: this.text.slice(start, this.index),
+             identifier: true
+           });
+         },
+
+         readString: function(quote) {
+           var start = this.index;
+           this.index++;
+           var string = '';
+           var rawString = quote;
+           var escape = false;
+           while (this.index < this.text.length) {
+             var ch = this.text.charAt(this.index);
+             rawString += ch;
+             if (escape) {
+               if (ch === 'u') {
+                 var hex = this.text.substring(this.index + 1, this.index + 5);
+                 if (!hex.match(/[\da-f]{4}/i)) {
+                   this.throwError('Invalid unicode escape [\\u' + hex + ']');
+                 }
+                 this.index += 4;
+                 string += String.fromCharCode(parseInt(hex, 16));
+               } else {
+                 var rep = ESCAPE[ch];
+                 string = string + (rep || ch);
+               }
+               escape = false;
+             } else if (ch === '\\') {
+               escape = true;
+             } else if (ch === quote) {
+               this.index++;
+               this.tokens.push({
+                 index: start,
+                 text: rawString,
+                 constant: true,
+                 value: string
+               });
+               return;
+             } else {
+               string += ch;
+             }
+             this.index++;
+           }
+           this.throwError('Unterminated quote', start);
+         }
+       };
+
+       var AST = function(lexer, options) {
+         this.lexer = lexer;
+         this.options = options;
+       };
+
+       AST.Program = 'Program';
+       AST.ExpressionStatement = 'ExpressionStatement';
+       AST.AssignmentExpression = 'AssignmentExpression';
+       AST.ConditionalExpression = 'ConditionalExpression';
+       AST.LogicalExpression = 'LogicalExpression';
+       AST.BinaryExpression = 'BinaryExpression';
+       AST.UnaryExpression = 'UnaryExpression';
+       AST.CallExpression = 'CallExpression';
+       AST.MemberExpression = 'MemberExpression';
+       AST.Identifier = 'Identifier';
+       AST.Literal = 'Literal';
+       AST.ArrayExpression = 'ArrayExpression';
+       AST.Property = 'Property';
+       AST.ObjectExpression = 'ObjectExpression';
+       AST.ThisExpression = 'ThisExpression';
+
+       // Internal use only
+       AST.NGValueParameter = 'NGValueParameter';
+
+       AST.prototype = {
+         ast: function(text) {
+           this.text = text;
+           this.tokens = this.lexer.lex(text);
+
+           var value = this.program();
+
+           if (this.tokens.length !== 0) {
+             this.throwError('is an unexpected token', this.tokens[0]);
+           }
+
+           return value;
+         },
+
+         program: function() {
+           var body = [];
+           while (true) {
+             if (this.tokens.length > 0 && !this.peek('}', ')', ';', ']'))
+               body.push(this.expressionStatement());
+             if (!this.expect(';')) {
+               return { type: AST.Program, body: body};
+             }
+           }
+         },
+
+         expressionStatement: function() {
+           return { type: AST.ExpressionStatement, expression: this.filterChain() };
+         },
+
+         filterChain: function() {
+           var left = this.expression();
+           var token;
+           while ((token = this.expect('|'))) {
+             left = this.filter(left);
+           }
+           return left;
+         },
+
+         expression: function() {
+           return this.assignment();
+         },
+
+         assignment: function() {
+           var result = this.ternary();
+           if (this.expect('=')) {
+             result = { type: AST.AssignmentExpression, left: result, right: this.assignment(), operator: '='};
+           }
+           return result;
+         },
+
+         ternary: function() {
+           var test = this.logicalOR();
+           var alternate;
+           var consequent;
+           if (this.expect('?')) {
+             alternate = this.expression();
+             if (this.consume(':')) {
+               consequent = this.expression();
+               return { type: AST.ConditionalExpression, test: test, alternate: alternate, consequent: consequent};
+             }
+           }
+           return test;
+         },
+
+         logicalOR: function() {
+           var left = this.logicalAND();
+           while (this.expect('||')) {
+             left = { type: AST.LogicalExpression, operator: '||', left: left, right: this.logicalAND() };
+           }
+           return left;
+         },
+
+         logicalAND: function() {
+           var left = this.equality();
+           while (this.expect('&&')) {
+             left = { type: AST.LogicalExpression, operator: '&&', left: left, right: this.equality()};
+           }
+           return left;
+         },
+
+         equality: function() {
+           var left = this.relational();
+           var token;
+           while ((token = this.expect('==','!=','===','!=='))) {
+             left = { type: AST.BinaryExpression, operator: token.text, left: left, right: this.relational() };
+           }
+           return left;
+         },
+
+         relational: function() {
+           var left = this.additive();
+           var token;
+           while ((token = this.expect('<', '>', '<=', '>='))) {
+             left = { type: AST.BinaryExpression, operator: token.text, left: left, right: this.additive() };
+           }
+           return left;
+         },
+
+         additive: function() {
+           var left = this.multiplicative();
+           var token;
+           while ((token = this.expect('+','-'))) {
+             left = { type: AST.BinaryExpression, operator: token.text, left: left, right: this.multiplicative() };
+           }
+           return left;
+         },
+
+         multiplicative: function() {
+           var left = this.unary();
+           var token;
+           while ((token = this.expect('*','/','%'))) {
+             left = { type: AST.BinaryExpression, operator: token.text, left: left, right: this.unary() };
+           }
+           return left;
+         },
+
+         unary: function() {
+           var token;
+           if ((token = this.expect('+', '-', '!'))) {
+             return { type: AST.UnaryExpression, operator: token.text, prefix: true, argument: this.unary() };
+           } else {
+             return this.primary();
+           }
+         },
+
+         primary: function() {
+           var primary;
+           if (this.expect('(')) {
+             primary = this.filterChain();
+             this.consume(')');
+           } else if (this.expect('[')) {
+             primary = this.arrayDeclaration();
+           } else if (this.expect('{')) {
+             primary = this.object();
+           } else if (this.constants.hasOwnProperty(this.peek().text)) {
+             primary = copy(this.constants[this.consume().text]);
+           } else if (this.peek().identifier) {
+             primary = this.identifier();
+           } else if (this.peek().constant) {
+             primary = this.constant();
+           } else {
+             this.throwError('not a primary expression', this.peek());
+           }
+
+           var next;
+           while ((next = this.expect('(', '[', '.'))) {
+             if (next.text === '(') {
+               primary = {type: AST.CallExpression, callee: primary, arguments: this.parseArguments() };
+               this.consume(')');
+             } else if (next.text === '[') {
+               primary = { type: AST.MemberExpression, object: primary, property: this.expression(), computed: true };
+               this.consume(']');
+             } else if (next.text === '.') {
+               primary = { type: AST.MemberExpression, object: primary, property: this.identifier(), computed: false };
+             } else {
+               this.throwError('IMPOSSIBLE');
+             }
+           }
+           return primary;
+         },
+
+         filter: function(baseExpression) {
+           var args = [baseExpression];
+           var result = {type: AST.CallExpression, callee: this.identifier(), arguments: args, filter: true};
+
+           while (this.expect(':')) {
+             args.push(this.expression());
+           }
+
+           return result;
+         },
+
+         parseArguments: function() {
+           var args = [];
+           if (this.peekToken().text !== ')') {
+             do {
+               args.push(this.expression());
+             } while (this.expect(','));
+           }
+           return args;
+         },
+
+         identifier: function() {
+           var token = this.consume();
+           if (!token.identifier) {
+             this.throwError('is not a valid identifier', token);
+           }
+           return { type: AST.Identifier, name: token.text };
+         },
+
+         constant: function() {
+           // TODO check that it is a constant
+           return { type: AST.Literal, value: this.consume().value };
+         },
+
+         arrayDeclaration: function() {
+           var elements = [];
+           if (this.peekToken().text !== ']') {
+             do {
+               if (this.peek(']')) {
+                 // Support trailing commas per ES5.1.
+                 break;
+               }
+               elements.push(this.expression());
+             } while (this.expect(','));
+           }
+           this.consume(']');
+
+           return { type: AST.ArrayExpression, elements: elements };
+         },
+
+         object: function() {
+           var properties = [], property;
+           if (this.peekToken().text !== '}') {
+             do {
+               if (this.peek('}')) {
+                 // Support trailing commas per ES5.1.
+                 break;
+               }
+               property = {type: AST.Property, kind: 'init'};
+               if (this.peek().constant) {
+                 property.key = this.constant();
+               } else if (this.peek().identifier) {
+                 property.key = this.identifier();
+               } else {
+                 this.throwError("invalid key", this.peek());
+               }
+               this.consume(':');
+               property.value = this.expression();
+               properties.push(property);
+             } while (this.expect(','));
+           }
+           this.consume('}');
+
+           return {type: AST.ObjectExpression, properties: properties };
+         },
+
+         throwError: function(msg, token) {
+           throw $parseMinErr('syntax',
+               'Syntax Error: Token \'{0}\' {1} at column {2} of the expression [{3}] starting at [{4}].',
+                 token.text, msg, (token.index + 1), this.text, this.text.substring(token.index));
+         },
+
+         consume: function(e1) {
+           if (this.tokens.length === 0) {
+             throw $parseMinErr('ueoe', 'Unexpected end of expression: {0}', this.text);
+           }
+
+           var token = this.expect(e1);
+           if (!token) {
+             this.throwError('is unexpected, expecting [' + e1 + ']', this.peek());
+           }
+           return token;
+         },
+
+         peekToken: function() {
+           if (this.tokens.length === 0) {
+             throw $parseMinErr('ueoe', 'Unexpected end of expression: {0}', this.text);
+           }
+           return this.tokens[0];
+         },
+
+         peek: function(e1, e2, e3, e4) {
+           return this.peekAhead(0, e1, e2, e3, e4);
+         },
+
+         peekAhead: function(i, e1, e2, e3, e4) {
+           if (this.tokens.length > i) {
+             var token = this.tokens[i];
+             var t = token.text;
+             if (t === e1 || t === e2 || t === e3 || t === e4 ||
+                 (!e1 && !e2 && !e3 && !e4)) {
+               return token;
+             }
+           }
+           return false;
+         },
+
+         expect: function(e1, e2, e3, e4) {
+           var token = this.peek(e1, e2, e3, e4);
+           if (token) {
+             this.tokens.shift();
+             return token;
+           }
+           return false;
+         },
+
+
+         /* `undefined` is not a constant, it is an identifier,
+          * but using it as an identifier is not supported
+          */
+         constants: {
+           'true': { type: AST.Literal, value: true },
+           'false': { type: AST.Literal, value: false },
+           'null': { type: AST.Literal, value: null },
+           'undefined': {type: AST.Literal, value: undefined },
+           'this': {type: AST.ThisExpression }
+         }
+       };
+
+       function ifDefined(v, d) {
+         return typeof v !== 'undefined' ? v : d;
+       }
+
+       function plusFn(l, r) {
+         if (typeof l === 'undefined') return r;
+         if (typeof r === 'undefined') return l;
+         return l + r;
+       }
+
+       function isStateless($filter, filterName) {
+         var fn = $filter(filterName);
+         return !fn.$stateful;
+       }
+
+       function findConstantAndWatchExpressions(ast, $filter) {
+         var allConstants;
+         var argsToWatch;
+         switch (ast.type) {
+         case AST.Program:
+           allConstants = true;
+           forEach(ast.body, function(expr) {
+             findConstantAndWatchExpressions(expr.expression, $filter);
+             allConstants = allConstants && expr.expression.constant;
+           });
+           ast.constant = allConstants;
+           break;
+         case AST.Literal:
+           ast.constant = true;
+           ast.toWatch = [];
+           break;
+         case AST.UnaryExpression:
+           findConstantAndWatchExpressions(ast.argument, $filter);
+           ast.constant = ast.argument.constant;
+           ast.toWatch = ast.argument.toWatch;
+           break;
+         case AST.BinaryExpression:
+           findConstantAndWatchExpressions(ast.left, $filter);
+           findConstantAndWatchExpressions(ast.right, $filter);
+           ast.constant = ast.left.constant && ast.right.constant;
+           ast.toWatch = ast.left.toWatch.concat(ast.right.toWatch);
+           break;
+         case AST.LogicalExpression:
+           findConstantAndWatchExpressions(ast.left, $filter);
+           findConstantAndWatchExpressions(ast.right, $filter);
+           ast.constant = ast.left.constant && ast.right.constant;
+           ast.toWatch = ast.constant ? [] : [ast];
+           break;
+         case AST.ConditionalExpression:
+           findConstantAndWatchExpressions(ast.test, $filter);
+           findConstantAndWatchExpressions(ast.alternate, $filter);
+           findConstantAndWatchExpressions(ast.consequent, $filter);
+           ast.constant = ast.test.constant && ast.alternate.constant && ast.consequent.constant;
+           ast.toWatch = ast.constant ? [] : [ast];
+           break;
+         case AST.Identifier:
+           ast.constant = false;
+           ast.toWatch = [ast];
+           break;
+         case AST.MemberExpression:
+           findConstantAndWatchExpressions(ast.object, $filter);
+           if (ast.computed) {
+             findConstantAndWatchExpressions(ast.property, $filter);
+           }
+           ast.constant = ast.object.constant && (!ast.computed || ast.property.constant);
+           ast.toWatch = [ast];
+           break;
+         case AST.CallExpression:
+           allConstants = ast.filter ? isStateless($filter, ast.callee.name) : false;
+           argsToWatch = [];
+           forEach(ast.arguments, function(expr) {
+             findConstantAndWatchExpressions(expr, $filter);
+             allConstants = allConstants && expr.constant;
+             if (!expr.constant) {
+               argsToWatch.push.apply(argsToWatch, expr.toWatch);
+             }
+           });
+           ast.constant = allConstants;
+           ast.toWatch = ast.filter && isStateless($filter, ast.callee.name) ? argsToWatch : [ast];
+           break;
+         case AST.AssignmentExpression:
+           findConstantAndWatchExpressions(ast.left, $filter);
+           findConstantAndWatchExpressions(ast.right, $filter);
+           ast.constant = ast.left.constant && ast.right.constant;
+           ast.toWatch = [ast];
+           break;
+         case AST.ArrayExpression:
+           allConstants = true;
+           argsToWatch = [];
+           forEach(ast.elements, function(expr) {
+             findConstantAndWatchExpressions(expr, $filter);
+             allConstants = allConstants && expr.constant;
+             if (!expr.constant) {
+               argsToWatch.push.apply(argsToWatch, expr.toWatch);
+             }
+           });
+           ast.constant = allConstants;
+           ast.toWatch = argsToWatch;
+           break;
+         case AST.ObjectExpression:
+           allConstants = true;
+           argsToWatch = [];
+           forEach(ast.properties, function(property) {
+             findConstantAndWatchExpressions(property.value, $filter);
+             allConstants = allConstants && property.value.constant;
+             if (!property.value.constant) {
+               argsToWatch.push.apply(argsToWatch, property.value.toWatch);
+             }
+           });
+           ast.constant = allConstants;
+           ast.toWatch = argsToWatch;
+           break;
+         case AST.ThisExpression:
+           ast.constant = false;
+           ast.toWatch = [];
+           break;
+         }
+       }
+
+       function getInputs(body) {
+         if (body.length != 1) return;
+         var lastExpression = body[0].expression;
+         var candidate = lastExpression.toWatch;
+         if (candidate.length !== 1) return candidate;
+         return candidate[0] !== lastExpression ? candidate : undefined;
+       }
+
+       function isAssignable(ast) {
+         return ast.type === AST.Identifier || ast.type === AST.MemberExpression;
+       }
+
+       function assignableAST(ast) {
+         if (ast.body.length === 1 && isAssignable(ast.body[0].expression)) {
+           return {type: AST.AssignmentExpression, left: ast.body[0].expression, right: {type: AST.NGValueParameter}, operator: '='};
+         }
+       }
+
+       function isLiteral(ast) {
+         return ast.body.length === 0 ||
+             ast.body.length === 1 && (
+             ast.body[0].expression.type === AST.Literal ||
+             ast.body[0].expression.type === AST.ArrayExpression ||
+             ast.body[0].expression.type === AST.ObjectExpression);
+       }
+
+       function isConstant(ast) {
+         return ast.constant;
+       }
+
+       function ASTCompiler(astBuilder, $filter) {
+         this.astBuilder = astBuilder;
+         this.$filter = $filter;
+       }
+
+       ASTCompiler.prototype = {
+         compile: function(expression, expensiveChecks) {
+           var self = this;
+           var ast = this.astBuilder.ast(expression);
+           this.state = {
+             nextId: 0,
+             filters: {},
+             expensiveChecks: expensiveChecks,
+             fn: {vars: [], body: [], own: {}},
+             assign: {vars: [], body: [], own: {}},
+             inputs: []
+           };
+           findConstantAndWatchExpressions(ast, self.$filter);
+           var extra = '';
+           var assignable;
+           this.stage = 'assign';
+           if ((assignable = assignableAST(ast))) {
+             this.state.computing = 'assign';
+             var result = this.nextId();
+             this.recurse(assignable, result);
+             this.return_(result);
+             extra = 'fn.assign=' + this.generateFunction('assign', 's,v,l');
+           }
+           var toWatch = getInputs(ast.body);
+           self.stage = 'inputs';
+           forEach(toWatch, function(watch, key) {
+             var fnKey = 'fn' + key;
+             self.state[fnKey] = {vars: [], body: [], own: {}};
+             self.state.computing = fnKey;
+             var intoId = self.nextId();
+             self.recurse(watch, intoId);
+             self.return_(intoId);
+             self.state.inputs.push(fnKey);
+             watch.watchId = key;
+           });
+           this.state.computing = 'fn';
+           this.stage = 'main';
+           this.recurse(ast);
+           var fnString =
+             // The build and minification steps remove the string "use strict" from the code, but this is done using a regex.
+             // This is a workaround for this until we do a better job at only removing the prefix only when we should.
+             '"' + this.USE + ' ' + this.STRICT + '";\n' +
+             this.filterPrefix() +
+             'var fn=' + this.generateFunction('fn', 's,l,a,i') +
+             extra +
+             this.watchFns() +
+             'return fn;';
+
+           /* jshint -W054 */
+           var fn = (new Function('$filter',
+               'ensureSafeMemberName',
+               'ensureSafeObject',
+               'ensureSafeFunction',
+               'getStringValue',
+               'ensureSafeAssignContext',
+               'ifDefined',
+               'plus',
+               'text',
+               fnString))(
+                 this.$filter,
+                 ensureSafeMemberName,
+                 ensureSafeObject,
+                 ensureSafeFunction,
+                 getStringValue,
+                 ensureSafeAssignContext,
+                 ifDefined,
+                 plusFn,
+                 expression);
+           /* jshint +W054 */
+           this.state = this.stage = undefined;
+           fn.literal = isLiteral(ast);
+           fn.constant = isConstant(ast);
+           return fn;
+         },
+
+         USE: 'use',
+
+         STRICT: 'strict',
+
+         watchFns: function() {
+           var result = [];
+           var fns = this.state.inputs;
+           var self = this;
+           forEach(fns, function(name) {
+             result.push('var ' + name + '=' + self.generateFunction(name, 's'));
+           });
+           if (fns.length) {
+             result.push('fn.inputs=[' + fns.join(',') + '];');
+           }
+           return result.join('');
+         },
+
+         generateFunction: function(name, params) {
+           return 'function(' + params + '){' +
+               this.varsPrefix(name) +
+               this.body(name) +
+               '};';
+         },
+
+         filterPrefix: function() {
+           var parts = [];
+           var self = this;
+           forEach(this.state.filters, function(id, filter) {
+             parts.push(id + '=$filter(' + self.escape(filter) + ')');
+           });
+           if (parts.length) return 'var ' + parts.join(',') + ';';
+           return '';
+         },
+
+         varsPrefix: function(section) {
+           return this.state[section].vars.length ? 'var ' + this.state[section].vars.join(',') + ';' : '';
+         },
+
+         body: function(section) {
+           return this.state[section].body.join('');
+         },
+
+         recurse: function(ast, intoId, nameId, recursionFn, create, skipWatchIdCheck) {
+           var left, right, self = this, args, expression;
+           recursionFn = recursionFn || noop;
+           if (!skipWatchIdCheck && isDefined(ast.watchId)) {
+             intoId = intoId || this.nextId();
+             this.if_('i',
+               this.lazyAssign(intoId, this.computedMember('i', ast.watchId)),
+               this.lazyRecurse(ast, intoId, nameId, recursionFn, create, true)
+             );
+             return;
+           }
+           switch (ast.type) {
+           case AST.Program:
+             forEach(ast.body, function(expression, pos) {
+               self.recurse(expression.expression, undefined, undefined, function(expr) { right = expr; });
+               if (pos !== ast.body.length - 1) {
+                 self.current().body.push(right, ';');
+               } else {
+                 self.return_(right);
+               }
+             });
+             break;
+           case AST.Literal:
+             expression = this.escape(ast.value);
+             this.assign(intoId, expression);
+             recursionFn(expression);
+             break;
+           case AST.UnaryExpression:
+             this.recurse(ast.argument, undefined, undefined, function(expr) { right = expr; });
+             expression = ast.operator + '(' + this.ifDefined(right, 0) + ')';
+             this.assign(intoId, expression);
+             recursionFn(expression);
+             break;
+           case AST.BinaryExpression:
+             this.recurse(ast.left, undefined, undefined, function(expr) { left = expr; });
+             this.recurse(ast.right, undefined, undefined, function(expr) { right = expr; });
+             if (ast.operator === '+') {
+               expression = this.plus(left, right);
+             } else if (ast.operator === '-') {
+               expression = this.ifDefined(left, 0) + ast.operator + this.ifDefined(right, 0);
+             } else {
+               expression = '(' + left + ')' + ast.operator + '(' + right + ')';
+             }
+             this.assign(intoId, expression);
+             recursionFn(expression);
+             break;
+           case AST.LogicalExpression:
+             intoId = intoId || this.nextId();
+             self.recurse(ast.left, intoId);
+             self.if_(ast.operator === '&&' ? intoId : self.not(intoId), self.lazyRecurse(ast.right, intoId));
+             recursionFn(intoId);
+             break;
+           case AST.ConditionalExpression:
+             intoId = intoId || this.nextId();
+             self.recurse(ast.test, intoId);
+             self.if_(intoId, self.lazyRecurse(ast.alternate, intoId), self.lazyRecurse(ast.consequent, intoId));
+             recursionFn(intoId);
+             break;
+           case AST.Identifier:
+             intoId = intoId || this.nextId();
+             if (nameId) {
+               nameId.context = self.stage === 'inputs' ? 's' : this.assign(this.nextId(), this.getHasOwnProperty('l', ast.name) + '?l:s');
+               nameId.computed = false;
+               nameId.name = ast.name;
+             }
+             ensureSafeMemberName(ast.name);
+             self.if_(self.stage === 'inputs' || self.not(self.getHasOwnProperty('l', ast.name)),
+               function() {
+                 self.if_(self.stage === 'inputs' || 's', function() {
+                   if (create && create !== 1) {
+                     self.if_(
+                       self.not(self.nonComputedMember('s', ast.name)),
+                       self.lazyAssign(self.nonComputedMember('s', ast.name), '{}'));
+                   }
+                   self.assign(intoId, self.nonComputedMember('s', ast.name));
+                 });
+               }, intoId && self.lazyAssign(intoId, self.nonComputedMember('l', ast.name))
+               );
+             if (self.state.expensiveChecks || isPossiblyDangerousMemberName(ast.name)) {
+               self.addEnsureSafeObject(intoId);
+             }
+             recursionFn(intoId);
+             break;
+           case AST.MemberExpression:
+             left = nameId && (nameId.context = this.nextId()) || this.nextId();
+             intoId = intoId || this.nextId();
+             self.recurse(ast.object, left, undefined, function() {
+               self.if_(self.notNull(left), function() {
+                 if (ast.computed) {
+                   right = self.nextId();
+                   self.recurse(ast.property, right);
+                   self.getStringValue(right);
+                   self.addEnsureSafeMemberName(right);
+                   if (create && create !== 1) {
+                     self.if_(self.not(self.computedMember(left, right)), self.lazyAssign(self.computedMember(left, right), '{}'));
+                   }
+                   expression = self.ensureSafeObject(self.computedMember(left, right));
+                   self.assign(intoId, expression);
+                   if (nameId) {
+                     nameId.computed = true;
+                     nameId.name = right;
+                   }
+                 } else {
+                   ensureSafeMemberName(ast.property.name);
+                   if (create && create !== 1) {
+                     self.if_(self.not(self.nonComputedMember(left, ast.property.name)), self.lazyAssign(self.nonComputedMember(left, ast.property.name), '{}'));
+                   }
+                   expression = self.nonComputedMember(left, ast.property.name);
+                   if (self.state.expensiveChecks || isPossiblyDangerousMemberName(ast.property.name)) {
+                     expression = self.ensureSafeObject(expression);
+                   }
+                   self.assign(intoId, expression);
+                   if (nameId) {
+                     nameId.computed = false;
+                     nameId.name = ast.property.name;
+                   }
+                 }
+               }, function() {
+                 self.assign(intoId, 'undefined');
+               });
+               recursionFn(intoId);
+             }, !!create);
+             break;
+           case AST.CallExpression:
+             intoId = intoId || this.nextId();
+             if (ast.filter) {
+               right = self.filter(ast.callee.name);
+               args = [];
+               forEach(ast.arguments, function(expr) {
+                 var argument = self.nextId();
+                 self.recurse(expr, argument);
+                 args.push(argument);
+               });
+               expression = right + '(' + args.join(',') + ')';
+               self.assign(intoId, expression);
+               recursionFn(intoId);
+             } else {
+               right = self.nextId();
+               left = {};
+               args = [];
+               self.recurse(ast.callee, right, left, function() {
+                 self.if_(self.notNull(right), function() {
+                   self.addEnsureSafeFunction(right);
+                   forEach(ast.arguments, function(expr) {
+                     self.recurse(expr, self.nextId(), undefined, function(argument) {
+                       args.push(self.ensureSafeObject(argument));
+                     });
+                   });
+                   if (left.name) {
+                     if (!self.state.expensiveChecks) {
+                       self.addEnsureSafeObject(left.context);
+                     }
+                     expression = self.member(left.context, left.name, left.computed) + '(' + args.join(',') + ')';
+                   } else {
+                     expression = right + '(' + args.join(',') + ')';
+                   }
+                   expression = self.ensureSafeObject(expression);
+                   self.assign(intoId, expression);
+                 }, function() {
+                   self.assign(intoId, 'undefined');
+                 });
+                 recursionFn(intoId);
+               });
+             }
+             break;
+           case AST.AssignmentExpression:
+             right = this.nextId();
+             left = {};
+             if (!isAssignable(ast.left)) {
+               throw $parseMinErr('lval', 'Trying to assing a value to a non l-value');
+             }
+             this.recurse(ast.left, undefined, left, function() {
+               self.if_(self.notNull(left.context), function() {
+                 self.recurse(ast.right, right);
+                 self.addEnsureSafeObject(self.member(left.context, left.name, left.computed));
+                 self.addEnsureSafeAssignContext(left.context);
+                 expression = self.member(left.context, left.name, left.computed) + ast.operator + right;
+                 self.assign(intoId, expression);
+                 recursionFn(intoId || expression);
+               });
+             }, 1);
+             break;
+           case AST.ArrayExpression:
+             args = [];
+             forEach(ast.elements, function(expr) {
+               self.recurse(expr, self.nextId(), undefined, function(argument) {
+                 args.push(argument);
+               });
+             });
+             expression = '[' + args.join(',') + ']';
+             this.assign(intoId, expression);
+             recursionFn(expression);
+             break;
+           case AST.ObjectExpression:
+             args = [];
+             forEach(ast.properties, function(property) {
+               self.recurse(property.value, self.nextId(), undefined, function(expr) {
+                 args.push(self.escape(
+                     property.key.type === AST.Identifier ? property.key.name :
+                       ('' + property.key.value)) +
+                     ':' + expr);
+               });
+             });
+             expression = '{' + args.join(',') + '}';
+             this.assign(intoId, expression);
+             recursionFn(expression);
+             break;
+           case AST.ThisExpression:
+             this.assign(intoId, 's');
+             recursionFn('s');
+             break;
+           case AST.NGValueParameter:
+             this.assign(intoId, 'v');
+             recursionFn('v');
+             break;
+           }
+         },
+
+         getHasOwnProperty: function(element, property) {
+           var key = element + '.' + property;
+           var own = this.current().own;
+           if (!own.hasOwnProperty(key)) {
+             own[key] = this.nextId(false, element + '&&(' + this.escape(property) + ' in ' + element + ')');
+           }
+           return own[key];
+         },
+
+         assign: function(id, value) {
+           if (!id) return;
+           this.current().body.push(id, '=', value, ';');
+           return id;
+         },
+
+         filter: function(filterName) {
+           if (!this.state.filters.hasOwnProperty(filterName)) {
+             this.state.filters[filterName] = this.nextId(true);
+           }
+           return this.state.filters[filterName];
+         },
+
+         ifDefined: function(id, defaultValue) {
+           return 'ifDefined(' + id + ',' + this.escape(defaultValue) + ')';
+         },
+
+         plus: function(left, right) {
+           return 'plus(' + left + ',' + right + ')';
+         },
+
+         return_: function(id) {
+           this.current().body.push('return ', id, ';');
+         },
+
+         if_: function(test, alternate, consequent) {
+           if (test === true) {
+             alternate();
+           } else {
+             var body = this.current().body;
+             body.push('if(', test, '){');
+             alternate();
+             body.push('}');
+             if (consequent) {
+               body.push('else{');
+               consequent();
+               body.push('}');
+             }
+           }
+         },
+
+         not: function(expression) {
+           return '!(' + expression + ')';
+         },
+
+         notNull: function(expression) {
+           return expression + '!=null';
+         },
+
+         nonComputedMember: function(left, right) {
+           return left + '.' + right;
+         },
+
+         computedMember: function(left, right) {
+           return left + '[' + right + ']';
+         },
+
+         member: function(left, right, computed) {
+           if (computed) return this.computedMember(left, right);
+           return this.nonComputedMember(left, right);
+         },
+
+         addEnsureSafeObject: function(item) {
+           this.current().body.push(this.ensureSafeObject(item), ';');
+         },
+
+         addEnsureSafeMemberName: function(item) {
+           this.current().body.push(this.ensureSafeMemberName(item), ';');
+         },
+
+         addEnsureSafeFunction: function(item) {
+           this.current().body.push(this.ensureSafeFunction(item), ';');
+         },
+
+         addEnsureSafeAssignContext: function(item) {
+           this.current().body.push(this.ensureSafeAssignContext(item), ';');
+         },
+
+         ensureSafeObject: function(item) {
+           return 'ensureSafeObject(' + item + ',text)';
+         },
+
+         ensureSafeMemberName: function(item) {
+           return 'ensureSafeMemberName(' + item + ',text)';
+         },
+
+         ensureSafeFunction: function(item) {
+           return 'ensureSafeFunction(' + item + ',text)';
+         },
+
+         getStringValue: function(item) {
+           this.assign(item, 'getStringValue(' + item + ',text)');
+         },
+
+         ensureSafeAssignContext: function(item) {
+           return 'ensureSafeAssignContext(' + item + ',text)';
+         },
+
+         lazyRecurse: function(ast, intoId, nameId, recursionFn, create, skipWatchIdCheck) {
+           var self = this;
+           return function() {
+             self.recurse(ast, intoId, nameId, recursionFn, create, skipWatchIdCheck);
+           };
+         },
+
+         lazyAssign: function(id, value) {
+           var self = this;
+           return function() {
+             self.assign(id, value);
+           };
+         },
+
+         stringEscapeRegex: /[^ a-zA-Z0-9]/g,
+
+         stringEscapeFn: function(c) {
+           return '\\u' + ('0000' + c.charCodeAt(0).toString(16)).slice(-4);
+         },
+
+         escape: function(value) {
+           if (isString(value)) return "'" + value.replace(this.stringEscapeRegex, this.stringEscapeFn) + "'";
+           if (isNumber(value)) return value.toString();
+           if (value === true) return 'true';
+           if (value === false) return 'false';
+           if (value === null) return 'null';
+           if (typeof value === 'undefined') return 'undefined';
+
+           throw $parseMinErr('esc', 'IMPOSSIBLE');
+         },
+
+         nextId: function(skip, init) {
+           var id = 'v' + (this.state.nextId++);
+           if (!skip) {
+             this.current().vars.push(id + (init ? '=' + init : ''));
+           }
+           return id;
+         },
+
+         current: function() {
+           return this.state[this.state.computing];
+         }
+       };
+
+
+       function ASTInterpreter(astBuilder, $filter) {
+         this.astBuilder = astBuilder;
+         this.$filter = $filter;
+       }
+
+       ASTInterpreter.prototype = {
+         compile: function(expression, expensiveChecks) {
+           var self = this;
+           var ast = this.astBuilder.ast(expression);
+           this.expression = expression;
+           this.expensiveChecks = expensiveChecks;
+           findConstantAndWatchExpressions(ast, self.$filter);
+           var assignable;
+           var assign;
+           if ((assignable = assignableAST(ast))) {
+             assign = this.recurse(assignable);
+           }
+           var toWatch = getInputs(ast.body);
+           var inputs;
+           if (toWatch) {
+             inputs = [];
+             forEach(toWatch, function(watch, key) {
+               var input = self.recurse(watch);
+               watch.input = input;
+               inputs.push(input);
+               watch.watchId = key;
+             });
+           }
+           var expressions = [];
+           forEach(ast.body, function(expression) {
+             expressions.push(self.recurse(expression.expression));
+           });
+           var fn = ast.body.length === 0 ? function() {} :
+                    ast.body.length === 1 ? expressions[0] :
+                    function(scope, locals) {
+                      var lastValue;
+                      forEach(expressions, function(exp) {
+                        lastValue = exp(scope, locals);
+                      });
+                      return lastValue;
+                    };
+           if (assign) {
+             fn.assign = function(scope, value, locals) {
+               return assign(scope, locals, value);
+             };
+           }
+           if (inputs) {
+             fn.inputs = inputs;
+           }
+           fn.literal = isLiteral(ast);
+           fn.constant = isConstant(ast);
+           return fn;
+         },
+
+         recurse: function(ast, context, create) {
+           var left, right, self = this, args, expression;
+           if (ast.input) {
+             return this.inputs(ast.input, ast.watchId);
+           }
+           switch (ast.type) {
+           case AST.Literal:
+             return this.value(ast.value, context);
+           case AST.UnaryExpression:
+             right = this.recurse(ast.argument);
+             return this['unary' + ast.operator](right, context);
+           case AST.BinaryExpression:
+             left = this.recurse(ast.left);
+             right = this.recurse(ast.right);
+             return this['binary' + ast.operator](left, right, context);
+           case AST.LogicalExpression:
+             left = this.recurse(ast.left);
+             right = this.recurse(ast.right);
+             return this['binary' + ast.operator](left, right, context);
+           case AST.ConditionalExpression:
+             return this['ternary?:'](
+               this.recurse(ast.test),
+               this.recurse(ast.alternate),
+               this.recurse(ast.consequent),
+               context
+             );
+           case AST.Identifier:
+             ensureSafeMemberName(ast.name, self.expression);
+             return self.identifier(ast.name,
+                                    self.expensiveChecks || isPossiblyDangerousMemberName(ast.name),
+                                    context, create, self.expression);
+           case AST.MemberExpression:
+             left = this.recurse(ast.object, false, !!create);
+             if (!ast.computed) {
+               ensureSafeMemberName(ast.property.name, self.expression);
+               right = ast.property.name;
+             }
+             if (ast.computed) right = this.recurse(ast.property);
+             return ast.computed ?
+               this.computedMember(left, right, context, create, self.expression) :
+               this.nonComputedMember(left, right, self.expensiveChecks, context, create, self.expression);
+           case AST.CallExpression:
+             args = [];
+             forEach(ast.arguments, function(expr) {
+               args.push(self.recurse(expr));
+             });
+             if (ast.filter) right = this.$filter(ast.callee.name);
+             if (!ast.filter) right = this.recurse(ast.callee, true);
+             return ast.filter ?
+               function(scope, locals, assign, inputs) {
+                 var values = [];
+                 for (var i = 0; i < args.length; ++i) {
+                   values.push(args[i](scope, locals, assign, inputs));
+                 }
+                 var value = right.apply(undefined, values, inputs);
+                 return context ? {context: undefined, name: undefined, value: value} : value;
+               } :
+               function(scope, locals, assign, inputs) {
+                 var rhs = right(scope, locals, assign, inputs);
+                 var value;
+                 if (rhs.value != null) {
+                   ensureSafeObject(rhs.context, self.expression);
+                   ensureSafeFunction(rhs.value, self.expression);
+                   var values = [];
+                   for (var i = 0; i < args.length; ++i) {
+                     values.push(ensureSafeObject(args[i](scope, locals, assign, inputs), self.expression));
+                   }
+                   value = ensureSafeObject(rhs.value.apply(rhs.context, values), self.expression);
+                 }
+                 return context ? {value: value} : value;
+               };
+           case AST.AssignmentExpression:
+             left = this.recurse(ast.left, true, 1);
+             right = this.recurse(ast.right);
+             return function(scope, locals, assign, inputs) {
+               var lhs = left(scope, locals, assign, inputs);
+               var rhs = right(scope, locals, assign, inputs);
+               ensureSafeObject(lhs.value, self.expression);
+               ensureSafeAssignContext(lhs.context);
+               lhs.context[lhs.name] = rhs;
+               return context ? {value: rhs} : rhs;
+             };
+           case AST.ArrayExpression:
+             args = [];
+             forEach(ast.elements, function(expr) {
+               args.push(self.recurse(expr));
+             });
+             return function(scope, locals, assign, inputs) {
+               var value = [];
+               for (var i = 0; i < args.length; ++i) {
+                 value.push(args[i](scope, locals, assign, inputs));
+               }
+               return context ? {value: value} : value;
+             };
+           case AST.ObjectExpression:
+             args = [];
+             forEach(ast.properties, function(property) {
+               args.push({key: property.key.type === AST.Identifier ?
+                               property.key.name :
+                               ('' + property.key.value),
+                          value: self.recurse(property.value)
+               });
+             });
+             return function(scope, locals, assign, inputs) {
+               var value = {};
+               for (var i = 0; i < args.length; ++i) {
+                 value[args[i].key] = args[i].value(scope, locals, assign, inputs);
+               }
+               return context ? {value: value} : value;
+             };
+           case AST.ThisExpression:
+             return function(scope) {
+               return context ? {value: scope} : scope;
+             };
+           case AST.NGValueParameter:
+             return function(scope, locals, assign, inputs) {
+               return context ? {value: assign} : assign;
+             };
+           }
+         },
+
+         'unary+': function(argument, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = argument(scope, locals, assign, inputs);
+             if (isDefined(arg)) {
+               arg = +arg;
+             } else {
+               arg = 0;
+             }
+             return context ? {value: arg} : arg;
+           };
+         },
+         'unary-': function(argument, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = argument(scope, locals, assign, inputs);
+             if (isDefined(arg)) {
+               arg = -arg;
+             } else {
+               arg = 0;
+             }
+             return context ? {value: arg} : arg;
+           };
+         },
+         'unary!': function(argument, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = !argument(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary+': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var lhs = left(scope, locals, assign, inputs);
+             var rhs = right(scope, locals, assign, inputs);
+             var arg = plusFn(lhs, rhs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary-': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var lhs = left(scope, locals, assign, inputs);
+             var rhs = right(scope, locals, assign, inputs);
+             var arg = (isDefined(lhs) ? lhs : 0) - (isDefined(rhs) ? rhs : 0);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary*': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) * right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary/': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) / right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary%': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) % right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary===': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) === right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary!==': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) !== right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary==': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) == right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary!=': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) != right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary<': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) < right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary>': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) > right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary<=': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) <= right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary>=': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) >= right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary&&': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) && right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'binary||': function(left, right, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = left(scope, locals, assign, inputs) || right(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         'ternary?:': function(test, alternate, consequent, context) {
+           return function(scope, locals, assign, inputs) {
+             var arg = test(scope, locals, assign, inputs) ? alternate(scope, locals, assign, inputs) : consequent(scope, locals, assign, inputs);
+             return context ? {value: arg} : arg;
+           };
+         },
+         value: function(value, context) {
+           return function() { return context ? {context: undefined, name: undefined, value: value} : value; };
+         },
+         identifier: function(name, expensiveChecks, context, create, expression) {
+           return function(scope, locals, assign, inputs) {
+             var base = locals && (name in locals) ? locals : scope;
+             if (create && create !== 1 && base && !(base[name])) {
+               base[name] = {};
+             }
+             var value = base ? base[name] : undefined;
+             if (expensiveChecks) {
+               ensureSafeObject(value, expression);
+             }
+             if (context) {
+               return {context: base, name: name, value: value};
+             } else {
+               return value;
+             }
+           };
+         },
+         computedMember: function(left, right, context, create, expression) {
+           return function(scope, locals, assign, inputs) {
+             var lhs = left(scope, locals, assign, inputs);
+             var rhs;
+             var value;
+             if (lhs != null) {
+               rhs = right(scope, locals, assign, inputs);
+               rhs = getStringValue(rhs);
+               ensureSafeMemberName(rhs, expression);
+               if (create && create !== 1 && lhs && !(lhs[rhs])) {
+                 lhs[rhs] = {};
+               }
+               value = lhs[rhs];
+               ensureSafeObject(value, expression);
+             }
+             if (context) {
+               return {context: lhs, name: rhs, value: value};
+             } else {
+               return value;
+             }
+           };
+         },
+         nonComputedMember: function(left, right, expensiveChecks, context, create, expression) {
+           return function(scope, locals, assign, inputs) {
+             var lhs = left(scope, locals, assign, inputs);
+             if (create && create !== 1 && lhs && !(lhs[right])) {
+               lhs[right] = {};
+             }
+             var value = lhs != null ? lhs[right] : undefined;
+             if (expensiveChecks || isPossiblyDangerousMemberName(right)) {
+               ensureSafeObject(value, expression);
+             }
+             if (context) {
+               return {context: lhs, name: right, value: value};
+             } else {
+               return value;
+             }
+           };
+         },
+         inputs: function(input, watchId) {
+           return function(scope, value, locals, inputs) {
+             if (inputs) return inputs[watchId];
+             return input(scope, value, locals);
+           };
+         }
+       };
+
+       /**
+        * @constructor
+        */
+       var Parser = function(lexer, $filter, options) {
+         this.lexer = lexer;
+         this.$filter = $filter;
+         this.options = options;
+         this.ast = new AST(this.lexer);
+         this.astCompiler = options.csp ? new ASTInterpreter(this.ast, $filter) :
+                                          new ASTCompiler(this.ast, $filter);
+       };
+
+       Parser.prototype = {
+         constructor: Parser,
+
+         parse: function(text) {
+           return this.astCompiler.compile(text, this.options.expensiveChecks);
+         }
+       };
+
+       var getterFnCacheDefault = createMap();
+       var getterFnCacheExpensive = createMap();
+
+       function isPossiblyDangerousMemberName(name) {
+         return name == 'constructor';
+       }
+
+       var objectValueOf = Object.prototype.valueOf;
+
+       function getValueOf(value) {
+         return isFunction(value.valueOf) ? value.valueOf() : objectValueOf.call(value);
+       }
+
+       ///////////////////////////////////
+
+       /**
+        * @ngdoc service
+        * @name $parse
+        * @kind function
+        *
+        * @description
+        *
+        * Converts Angular {@link guide/expression expression} into a function.
+        *
+        * ```js
+        *   var getter = $parse('user.name');
+        *   var setter = getter.assign;
+        *   var context = {user:{name:'angular'}};
+        *   var locals = {user:{name:'local'}};
+        *
+        *   expect(getter(context)).toEqual('angular');
+        *   setter(context, 'newValue');
+        *   expect(context.user.name).toEqual('newValue');
+        *   expect(getter(context, locals)).toEqual('local');
+        * ```
+        *
+        *
+        * @param {string} expression String expression to compile.
+        * @returns {function(context, locals)} a function which represents the compiled expression:
+        *
+        *    * `context` – `{object}` – an object against which any expressions embedded in the strings
+        *      are evaluated against (typically a scope object).
+        *    * `locals` – `{object=}` – local variables context object, useful for overriding values in
+        *      `context`.
+        *
+        *    The returned function also has the following properties:
+        *      * `literal` – `{boolean}` – whether the expression's top-level node is a JavaScript
+        *        literal.
+        *      * `constant` – `{boolean}` – whether the expression is made entirely of JavaScript
+        *        constant literals.
+        *      * `assign` – `{?function(context, value)}` – if the expression is assignable, this will be
+        *        set to a function to change its value on the given context.
+        *
+        */
+
+
+       /**
+        * @ngdoc provider
+        * @name $parseProvider
+        *
+        * @description
+        * `$parseProvider` can be used for configuring the default behavior of the {@link ng.$parse $parse}
+        *  service.
+        */
+       function $ParseProvider() {
+         var cacheDefault = createMap();
+         var cacheExpensive = createMap();
+
+         this.$get = ['$filter', function($filter) {
+           var noUnsafeEval = csp().noUnsafeEval;
+           var $parseOptions = {
+                 csp: noUnsafeEval,
+                 expensiveChecks: false
+               },
+               $parseOptionsExpensive = {
+                 csp: noUnsafeEval,
+                 expensiveChecks: true
+               };
+
+           return function $parse(exp, interceptorFn, expensiveChecks) {
+             var parsedExpression, oneTime, cacheKey;
+
+             switch (typeof exp) {
+               case 'string':
+                 exp = exp.trim();
+                 cacheKey = exp;
+
+                 var cache = (expensiveChecks ? cacheExpensive : cacheDefault);
+                 parsedExpression = cache[cacheKey];
+
+                 if (!parsedExpression) {
+                   if (exp.charAt(0) === ':' && exp.charAt(1) === ':') {
+                     oneTime = true;
+                     exp = exp.substring(2);
+                   }
+                   var parseOptions = expensiveChecks ? $parseOptionsExpensive : $parseOptions;
+                   var lexer = new Lexer(parseOptions);
+                   var parser = new Parser(lexer, $filter, parseOptions);
+                   parsedExpression = parser.parse(exp);
+                   if (parsedExpression.constant) {
+                     parsedExpression.$$watchDelegate = constantWatchDelegate;
+                   } else if (oneTime) {
+                     parsedExpression.$$watchDelegate = parsedExpression.literal ?
+                         oneTimeLiteralWatchDelegate : oneTimeWatchDelegate;
+                   } else if (parsedExpression.inputs) {
+                     parsedExpression.$$watchDelegate = inputsWatchDelegate;
+                   }
+                   cache[cacheKey] = parsedExpression;
+                 }
+                 return addInterceptor(parsedExpression, interceptorFn);
+
+               case 'function':
+                 return addInterceptor(exp, interceptorFn);
+
+               default:
+                 return noop;
+             }
+           };
+
+           function expressionInputDirtyCheck(newValue, oldValueOfValue) {
+
+             if (newValue == null || oldValueOfValue == null) { // null/undefined
+               return newValue === oldValueOfValue;
+             }
+
+             if (typeof newValue === 'object') {
+
+               // attempt to convert the value to a primitive type
+               // TODO(docs): add a note to docs that by implementing valueOf even objects and arrays can
+               //             be cheaply dirty-checked
+               newValue = getValueOf(newValue);
+
+               if (typeof newValue === 'object') {
+                 // objects/arrays are not supported - deep-watching them would be too expensive
+                 return false;
+               }
+
+               // fall-through to the primitive equality check
+             }
+
+             //Primitive or NaN
+             return newValue === oldValueOfValue || (newValue !== newValue && oldValueOfValue !== oldValueOfValue);
+           }
+
+           function inputsWatchDelegate(scope, listener, objectEquality, parsedExpression, prettyPrintExpression) {
+             var inputExpressions = parsedExpression.inputs;
+             var lastResult;
+
+             if (inputExpressions.length === 1) {
+               var oldInputValueOf = expressionInputDirtyCheck; // init to something unique so that equals check fails
+               inputExpressions = inputExpressions[0];
+               return scope.$watch(function expressionInputWatch(scope) {
+                 var newInputValue = inputExpressions(scope);
+                 if (!expressionInputDirtyCheck(newInputValue, oldInputValueOf)) {
+                   lastResult = parsedExpression(scope, undefined, undefined, [newInputValue]);
+                   oldInputValueOf = newInputValue && getValueOf(newInputValue);
+                 }
+                 return lastResult;
+               }, listener, objectEquality, prettyPrintExpression);
+             }
+
+             var oldInputValueOfValues = [];
+             var oldInputValues = [];
+             for (var i = 0, ii = inputExpressions.length; i < ii; i++) {
+               oldInputValueOfValues[i] = expressionInputDirtyCheck; // init to something unique so that equals check fails
+               oldInputValues[i] = null;
+             }
+
+             return scope.$watch(function expressionInputsWatch(scope) {
+               var changed = false;
+
+               for (var i = 0, ii = inputExpressions.length; i < ii; i++) {
+                 var newInputValue = inputExpressions[i](scope);
+                 if (changed || (changed = !expressionInputDirtyCheck(newInputValue, oldInputValueOfValues[i]))) {
+                   oldInputValues[i] = newInputValue;
+                   oldInputValueOfValues[i] = newInputValue && getValueOf(newInputValue);
+                 }
+               }
+
+               if (changed) {
+                 lastResult = parsedExpression(scope, undefined, undefined, oldInputValues);
+               }
+
+               return lastResult;
+             }, listener, objectEquality, prettyPrintExpression);
+           }
+
+           function oneTimeWatchDelegate(scope, listener, objectEquality, parsedExpression) {
+             var unwatch, lastValue;
+             return unwatch = scope.$watch(function oneTimeWatch(scope) {
+               return parsedExpression(scope);
+             }, function oneTimeListener(value, old, scope) {
+               lastValue = value;
+               if (isFunction(listener)) {
+                 listener.apply(this, arguments);
+               }
+               if (isDefined(value)) {
+                 scope.$$postDigest(function() {
+                   if (isDefined(lastValue)) {
+                     unwatch();
+                   }
+                 });
+               }
+             }, objectEquality);
+           }
+
+           function oneTimeLiteralWatchDelegate(scope, listener, objectEquality, parsedExpression) {
+             var unwatch, lastValue;
+             return unwatch = scope.$watch(function oneTimeWatch(scope) {
+               return parsedExpression(scope);
+             }, function oneTimeListener(value, old, scope) {
+               lastValue = value;
+               if (isFunction(listener)) {
+                 listener.call(this, value, old, scope);
+               }
+               if (isAllDefined(value)) {
+                 scope.$$postDigest(function() {
+                   if (isAllDefined(lastValue)) unwatch();
+                 });
+               }
+             }, objectEquality);
+
+             function isAllDefined(value) {
+               var allDefined = true;
+               forEach(value, function(val) {
+                 if (!isDefined(val)) allDefined = false;
+               });
+               return allDefined;
+             }
+           }
+
+           function constantWatchDelegate(scope, listener, objectEquality, parsedExpression) {
+             var unwatch;
+             return unwatch = scope.$watch(function constantWatch(scope) {
+               return parsedExpression(scope);
+             }, function constantListener(value, old, scope) {
+               if (isFunction(listener)) {
+                 listener.apply(this, arguments);
+               }
+               unwatch();
+             }, objectEquality);
+           }
+
+           function addInterceptor(parsedExpression, interceptorFn) {
+             if (!interceptorFn) return parsedExpression;
+             var watchDelegate = parsedExpression.$$watchDelegate;
+             var useInputs = false;
+
+             var regularWatch =
+                 watchDelegate !== oneTimeLiteralWatchDelegate &&
+                 watchDelegate !== oneTimeWatchDelegate;
+
+             var fn = regularWatch ? function regularInterceptedExpression(scope, locals, assign, inputs) {
+               var value = useInputs && inputs ? inputs[0] : parsedExpression(scope, locals, assign, inputs);
+               return interceptorFn(value, scope, locals);
+             } : function oneTimeInterceptedExpression(scope, locals, assign, inputs) {
+               var value = parsedExpression(scope, locals, assign, inputs);
+               var result = interceptorFn(value, scope, locals);
+               // we only return the interceptor's result if the
+               // initial value is defined (for bind-once)
+               return isDefined(value) ? result : value;
+             };
+
+             // Propagate $$watchDelegates other then inputsWatchDelegate
+             if (parsedExpression.$$watchDelegate &&
+                 parsedExpression.$$watchDelegate !== inputsWatchDelegate) {
+               fn.$$watchDelegate = parsedExpression.$$watchDelegate;
+             } else if (!interceptorFn.$stateful) {
+               // If there is an interceptor, but no watchDelegate then treat the interceptor like
+               // we treat filters - it is assumed to be a pure function unless flagged with $stateful
+               fn.$$watchDelegate = inputsWatchDelegate;
+               useInputs = !parsedExpression.inputs;
+               fn.inputs = parsedExpression.inputs ? parsedExpression.inputs : [parsedExpression];
+             }
+
+             return fn;
+           }
+         }];
+       }
+
+       /**
+        * @ngdoc service
+        * @name $q
+        * @requires $rootScope
+        *
+        * @description
+        * A service that helps you run functions asynchronously, and use their return values (or exceptions)
+        * when they are done processing.
+        *
+        * This is an implementation of promises/deferred objects inspired by
+        * [Kris Kowal's Q](https://github.com/kriskowal/q).
+        *
+        * $q can be used in two fashions --- one which is more similar to Kris Kowal's Q or jQuery's Deferred
+        * implementations, and the other which resembles ES6 promises to some degree.
+        *
+        * # $q constructor
+        *
+        * The streamlined ES6 style promise is essentially just using $q as a constructor which takes a `resolver`
+        * function as the first argument. This is similar to the native Promise implementation from ES6 Harmony,
+        * see [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise).
+        *
+        * While the constructor-style use is supported, not all of the supporting methods from ES6 Harmony promises are
+        * available yet.
+        *
+        * It can be used like so:
+        *
+        * ```js
+        *   // for the purpose of this example let's assume that variables `$q` and `okToGreet`
+        *   // are available in the current lexical scope (they could have been injected or passed in).
+        *
+        *   function asyncGreet(name) {
+        *     // perform some asynchronous operation, resolve or reject the promise when appropriate.
+        *     return $q(function(resolve, reject) {
+        *       setTimeout(function() {
+        *         if (okToGreet(name)) {
+        *           resolve('Hello, ' + name + '!');
+        *         } else {
+        *           reject('Greeting ' + name + ' is not allowed.');
+        *         }
+        *       }, 1000);
+        *     });
+        *   }
+        *
+        *   var promise = asyncGreet('Robin Hood');
+        *   promise.then(function(greeting) {
+        *     alert('Success: ' + greeting);
+        *   }, function(reason) {
+        *     alert('Failed: ' + reason);
+        *   });
+        * ```
+        *
+        * Note: progress/notify callbacks are not currently supported via the ES6-style interface.
+        *
+        * Note: unlike ES6 behaviour, an exception thrown in the constructor function will NOT implicitly reject the promise.
+        *
+        * However, the more traditional CommonJS-style usage is still available, and documented below.
+        *
+        * [The CommonJS Promise proposal](http://wiki.commonjs.org/wiki/Promises) describes a promise as an
+        * interface for interacting with an object that represents the result of an action that is
+        * performed asynchronously, and may or may not be finished at any given point in time.
+        *
+        * From the perspective of dealing with error handling, deferred and promise APIs are to
+        * asynchronous programming what `try`, `catch` and `throw` keywords are to synchronous programming.
+        *
+        * ```js
+        *   // for the purpose of this example let's assume that variables `$q` and `okToGreet`
+        *   // are available in the current lexical scope (they could have been injected or passed in).
+        *
+        *   function asyncGreet(name) {
+        *     var deferred = $q.defer();
+        *
+        *     setTimeout(function() {
+        *       deferred.notify('About to greet ' + name + '.');
+        *
+        *       if (okToGreet(name)) {
+        *         deferred.resolve('Hello, ' + name + '!');
+        *       } else {
+        *         deferred.reject('Greeting ' + name + ' is not allowed.');
+        *       }
+        *     }, 1000);
+        *
+        *     return deferred.promise;
+        *   }
+        *
+        *   var promise = asyncGreet('Robin Hood');
+        *   promise.then(function(greeting) {
+        *     alert('Success: ' + greeting);
+        *   }, function(reason) {
+        *     alert('Failed: ' + reason);
+        *   }, function(update) {
+        *     alert('Got notification: ' + update);
+        *   });
+        * ```
+        *
+        * At first it might not be obvious why this extra complexity is worth the trouble. The payoff
+        * comes in the way of guarantees that promise and deferred APIs make, see
+        * https://github.com/kriskowal/uncommonjs/blob/master/promises/specification.md.
+        *
+        * Additionally the promise api allows for composition that is very hard to do with the
+        * traditional callback ([CPS](http://en.wikipedia.org/wiki/Continuation-passing_style)) approach.
+        * For more on this please see the [Q documentation](https://github.com/kriskowal/q) especially the
+        * section on serial or parallel joining of promises.
+        *
+        * # The Deferred API
+        *
+        * A new instance of deferred is constructed by calling `$q.defer()`.
+        *
+        * The purpose of the deferred object is to expose the associated Promise instance as well as APIs
+        * that can be used for signaling the successful or unsuccessful completion, as well as the status
+        * of the task.
+        *
+        * **Methods**
+        *
+        * - `resolve(value)` – resolves the derived promise with the `value`. If the value is a rejection
+        *   constructed via `$q.reject`, the promise will be rejected instead.
+        * - `reject(reason)` – rejects the derived promise with the `reason`. This is equivalent to
+        *   resolving it with a rejection constructed via `$q.reject`.
+        * - `notify(value)` - provides updates on the status of the promise's execution. This may be called
+        *   multiple times before the promise is either resolved or rejected.
+        *
+        * **Properties**
+        *
+        * - promise – `{Promise}` – promise object associated with this deferred.
+        *
+        *
+        * # The Promise API
+        *
+        * A new promise instance is created when a deferred instance is created and can be retrieved by
+        * calling `deferred.promise`.
+        *
+        * The purpose of the promise object is to allow for interested parties to get access to the result
+        * of the deferred task when it completes.
+        *
+        * **Methods**
+        *
+        * - `then(successCallback, errorCallback, notifyCallback)` – regardless of when the promise was or
+        *   will be resolved or rejected, `then` calls one of the success or error callbacks asynchronously
+        *   as soon as the result is available. The callbacks are called with a single argument: the result
+        *   or rejection reason. Additionally, the notify callback may be called zero or more times to
+        *   provide a progress indication, before the promise is resolved or rejected.
+        *
+        *   This method *returns a new promise* which is resolved or rejected via the return value of the
+        *   `successCallback`, `errorCallback` (unless that value is a promise, in which case it is resolved
+        *   with the value which is resolved in that promise using
+        *   [promise chaining](http://www.html5rocks.com/en/tutorials/es6/promises/#toc-promises-queues)).
+        *   It also notifies via the return value of the `notifyCallback` method. The promise cannot be
+        *   resolved or rejected from the notifyCallback method.
+        *
+        * - `catch(errorCallback)` – shorthand for `promise.then(null, errorCallback)`
+        *
+        * - `finally(callback, notifyCallback)` – allows you to observe either the fulfillment or rejection of a promise,
+        *   but to do so without modifying the final value. This is useful to release resources or do some
+        *   clean-up that needs to be done whether the promise was rejected or resolved. See the [full
+        *   specification](https://github.com/kriskowal/q/wiki/API-Reference#promisefinallycallback) for
+        *   more information.
+        *
+        * # Chaining promises
+        *
+        * Because calling the `then` method of a promise returns a new derived promise, it is easily
+        * possible to create a chain of promises:
+        *
+        * ```js
+        *   promiseB = promiseA.then(function(result) {
+        *     return result + 1;
+        *   });
+        *
+        *   // promiseB will be resolved immediately after promiseA is resolved and its value
+        *   // will be the result of promiseA incremented by 1
+        * ```
+        *
+        * It is possible to create chains of any length and since a promise can be resolved with another
+        * promise (which will defer its resolution further), it is possible to pause/defer resolution of
+        * the promises at any point in the chain. This makes it possible to implement powerful APIs like
+        * $http's response interceptors.
+        *
+        *
+        * # Differences between Kris Kowal's Q and $q
+        *
+        *  There are two main differences:
+        *
+        * - $q is integrated with the {@link ng.$rootScope.Scope} Scope model observation
+        *   mechanism in angular, which means faster propagation of resolution or rejection into your
+        *   models and avoiding unnecessary browser repaints, which would result in flickering UI.
+        * - Q has many more features than $q, but that comes at a cost of bytes. $q is tiny, but contains
+        *   all the important functionality needed for common async tasks.
+        *
+        *  # Testing
+        *
+        *  ```js
+        *    it('should simulate promise', inject(function($q, $rootScope) {
+        *      var deferred = $q.defer();
+        *      var promise = deferred.promise;
+        *      var resolvedValue;
+        *
+        *      promise.then(function(value) { resolvedValue = value; });
+        *      expect(resolvedValue).toBeUndefined();
+        *
+        *      // Simulate resolving of promise
+        *      deferred.resolve(123);
+        *      // Note that the 'then' function does not get called synchronously.
+        *      // This is because we want the promise API to always be async, whether or not
+        *      // it got called synchronously or asynchronously.
+        *      expect(resolvedValue).toBeUndefined();
+        *
+        *      // Propagate promise resolution to 'then' functions using $apply().
+        *      $rootScope.$apply();
+        *      expect(resolvedValue).toEqual(123);
+        *    }));
+        *  ```
+        *
+        * @param {function(function, function)} resolver Function which is responsible for resolving or
+        *   rejecting the newly created promise. The first parameter is a function which resolves the
+        *   promise, the second parameter is a function which rejects the promise.
+        *
+        * @returns {Promise} The newly created promise.
+        */
+       function $QProvider() {
+
+         this.$get = ['$rootScope', '$exceptionHandler', function($rootScope, $exceptionHandler) {
+           return qFactory(function(callback) {
+             $rootScope.$evalAsync(callback);
+           }, $exceptionHandler);
+         }];
+       }
+
+       function $$QProvider() {
+         this.$get = ['$browser', '$exceptionHandler', function($browser, $exceptionHandler) {
+           return qFactory(function(callback) {
+             $browser.defer(callback);
+           }, $exceptionHandler);
+         }];
+       }
+
+       /**
+        * Constructs a promise manager.
+        *
+        * @param {function(function)} nextTick Function for executing functions in the next turn.
+        * @param {function(...*)} exceptionHandler Function into which unexpected exceptions are passed for
+        *     debugging purposes.
+        * @returns {object} Promise manager.
+        */
+       function qFactory(nextTick, exceptionHandler) {
+         var $qMinErr = minErr('$q', TypeError);
+         function callOnce(self, resolveFn, rejectFn) {
+           var called = false;
+           function wrap(fn) {
+             return function(value) {
+               if (called) return;
+               called = true;
+               fn.call(self, value);
+             };
+           }
+
+           return [wrap(resolveFn), wrap(rejectFn)];
+         }
+
+         /**
+          * @ngdoc method
+          * @name ng.$q#defer
+          * @kind function
+          *
+          * @description
+          * Creates a `Deferred` object which represents a task which will finish in the future.
+          *
+          * @returns {Deferred} Returns a new instance of deferred.
+          */
+         var defer = function() {
+           return new Deferred();
+         };
+
+         function Promise() {
+           this.$$state = { status: 0 };
+         }
+
+         extend(Promise.prototype, {
+           then: function(onFulfilled, onRejected, progressBack) {
+             if (isUndefined(onFulfilled) && isUndefined(onRejected) && isUndefined(progressBack)) {
+               return this;
+             }
+             var result = new Deferred();
+
+             this.$$state.pending = this.$$state.pending || [];
+             this.$$state.pending.push([result, onFulfilled, onRejected, progressBack]);
+             if (this.$$state.status > 0) scheduleProcessQueue(this.$$state);
+
+             return result.promise;
+           },
+
+           "catch": function(callback) {
+             return this.then(null, callback);
+           },
+
+           "finally": function(callback, progressBack) {
+             return this.then(function(value) {
+               return handleCallback(value, true, callback);
+             }, function(error) {
+               return handleCallback(error, false, callback);
+             }, progressBack);
+           }
+         });
+
+         //Faster, more basic than angular.bind http://jsperf.com/angular-bind-vs-custom-vs-native
+         function simpleBind(context, fn) {
+           return function(value) {
+             fn.call(context, value);
+           };
+         }
+
+         function processQueue(state) {
+           var fn, deferred, pending;
+
+           pending = state.pending;
+           state.processScheduled = false;
+           state.pending = undefined;
+           for (var i = 0, ii = pending.length; i < ii; ++i) {
+             deferred = pending[i][0];
+             fn = pending[i][state.status];
+             try {
+               if (isFunction(fn)) {
+                 deferred.resolve(fn(state.value));
+               } else if (state.status === 1) {
+                 deferred.resolve(state.value);
+               } else {
+                 deferred.reject(state.value);
+               }
+             } catch (e) {
+               deferred.reject(e);
+               exceptionHandler(e);
+             }
+           }
+         }
+
+         function scheduleProcessQueue(state) {
+           if (state.processScheduled || !state.pending) return;
+           state.processScheduled = true;
+           nextTick(function() { processQueue(state); });
+         }
+
+         function Deferred() {
+           this.promise = new Promise();
+           //Necessary to support unbound execution :/
+           this.resolve = simpleBind(this, this.resolve);
+           this.reject = simpleBind(this, this.reject);
+           this.notify = simpleBind(this, this.notify);
+         }
+
+         extend(Deferred.prototype, {
+           resolve: function(val) {
+             if (this.promise.$$state.status) return;
+             if (val === this.promise) {
+               this.$$reject($qMinErr(
+                 'qcycle',
+                 "Expected promise to be resolved with value other than itself '{0}'",
+                 val));
+             } else {
+               this.$$resolve(val);
+             }
+
+           },
+
+           $$resolve: function(val) {
+             var then, fns;
+
+             fns = callOnce(this, this.$$resolve, this.$$reject);
+             try {
+               if ((isObject(val) || isFunction(val))) then = val && val.then;
+               if (isFunction(then)) {
+                 this.promise.$$state.status = -1;
+                 then.call(val, fns[0], fns[1], this.notify);
+               } else {
+                 this.promise.$$state.value = val;
+                 this.promise.$$state.status = 1;
+                 scheduleProcessQueue(this.promise.$$state);
+               }
+             } catch (e) {
+               fns[1](e);
+               exceptionHandler(e);
+             }
+           },
+
+           reject: function(reason) {
+             if (this.promise.$$state.status) return;
+             this.$$reject(reason);
+           },
+
+           $$reject: function(reason) {
+             this.promise.$$state.value = reason;
+             this.promise.$$state.status = 2;
+             scheduleProcessQueue(this.promise.$$state);
+           },
+
+           notify: function(progress) {
+             var callbacks = this.promise.$$state.pending;
+
+             if ((this.promise.$$state.status <= 0) && callbacks && callbacks.length) {
+               nextTick(function() {
+                 var callback, result;
+                 for (var i = 0, ii = callbacks.length; i < ii; i++) {
+                   result = callbacks[i][0];
+                   callback = callbacks[i][3];
+                   try {
+                     result.notify(isFunction(callback) ? callback(progress) : progress);
+                   } catch (e) {
+                     exceptionHandler(e);
+                   }
+                 }
+               });
+             }
+           }
+         });
+
+         /**
+          * @ngdoc method
+          * @name $q#reject
+          * @kind function
+          *
+          * @description
+          * Creates a promise that is resolved as rejected with the specified `reason`. This api should be
+          * used to forward rejection in a chain of promises. If you are dealing with the last promise in
+          * a promise chain, you don't need to worry about it.
+          *
+          * When comparing deferreds/promises to the familiar behavior of try/catch/throw, think of
+          * `reject` as the `throw` keyword in JavaScript. This also means that if you "catch" an error via
+          * a promise error callback and you want to forward the error to the promise derived from the
+          * current promise, you have to "rethrow" the error by returning a rejection constructed via
+          * `reject`.
+          *
+          * ```js
+          *   promiseB = promiseA.then(function(result) {
+          *     // success: do something and resolve promiseB
+          *     //          with the old or a new result
+          *     return result;
+          *   }, function(reason) {
+          *     // error: handle the error if possible and
+          *     //        resolve promiseB with newPromiseOrValue,
+          *     //        otherwise forward the rejection to promiseB
+          *     if (canHandle(reason)) {
+          *      // handle the error and recover
+          *      return newPromiseOrValue;
+          *     }
+          *     return $q.reject(reason);
+          *   });
+          * ```
+          *
+          * @param {*} reason Constant, message, exception or an object representing the rejection reason.
+          * @returns {Promise} Returns a promise that was already resolved as rejected with the `reason`.
+          */
+         var reject = function(reason) {
+           var result = new Deferred();
+           result.reject(reason);
+           return result.promise;
+         };
+
+         var makePromise = function makePromise(value, resolved) {
+           var result = new Deferred();
+           if (resolved) {
+             result.resolve(value);
+           } else {
+             result.reject(value);
+           }
+           return result.promise;
+         };
+
+         var handleCallback = function handleCallback(value, isResolved, callback) {
+           var callbackOutput = null;
+           try {
+             if (isFunction(callback)) callbackOutput = callback();
+           } catch (e) {
+             return makePromise(e, false);
+           }
+           if (isPromiseLike(callbackOutput)) {
+             return callbackOutput.then(function() {
+               return makePromise(value, isResolved);
+             }, function(error) {
+               return makePromise(error, false);
+             });
+           } else {
+             return makePromise(value, isResolved);
+           }
+         };
+
+         /**
+          * @ngdoc method
+          * @name $q#when
+          * @kind function
+          *
+          * @description
+          * Wraps an object that might be a value or a (3rd party) then-able promise into a $q promise.
+          * This is useful when you are dealing with an object that might or might not be a promise, or if
+          * the promise comes from a source that can't be trusted.
+          *
+          * @param {*} value Value or a promise
+          * @param {Function=} successCallback
+          * @param {Function=} errorCallback
+          * @param {Function=} progressCallback
+          * @returns {Promise} Returns a promise of the passed value or promise
+          */
+
+
+         var when = function(value, callback, errback, progressBack) {
+           var result = new Deferred();
+           result.resolve(value);
+           return result.promise.then(callback, errback, progressBack);
+         };
+
+         /**
+          * @ngdoc method
+          * @name $q#resolve
+          * @kind function
+          *
+          * @description
+          * Alias of {@link ng.$q#when when} to maintain naming consistency with ES6.
+          *
+          * @param {*} value Value or a promise
+          * @param {Function=} successCallback
+          * @param {Function=} errorCallback
+          * @param {Function=} progressCallback
+          * @returns {Promise} Returns a promise of the passed value or promise
+          */
+         var resolve = when;
+
+         /**
+          * @ngdoc method
+          * @name $q#all
+          * @kind function
+          *
+          * @description
+          * Combines multiple promises into a single promise that is resolved when all of the input
+          * promises are resolved.
+          *
+          * @param {Array.<Promise>|Object.<Promise>} promises An array or hash of promises.
+          * @returns {Promise} Returns a single promise that will be resolved with an array/hash of values,
+          *   each value corresponding to the promise at the same index/key in the `promises` array/hash.
+          *   If any of the promises is resolved with a rejection, this resulting promise will be rejected
+          *   with the same rejection value.
+          */
+
+         function all(promises) {
+           var deferred = new Deferred(),
+               counter = 0,
+               results = isArray(promises) ? [] : {};
+
+           forEach(promises, function(promise, key) {
+             counter++;
+             when(promise).then(function(value) {
+               if (results.hasOwnProperty(key)) return;
+               results[key] = value;
+               if (!(--counter)) deferred.resolve(results);
+             }, function(reason) {
+               if (results.hasOwnProperty(key)) return;
+               deferred.reject(reason);
+             });
+           });
+
+           if (counter === 0) {
+             deferred.resolve(results);
+           }
+
+           return deferred.promise;
+         }
+
+         var $Q = function Q(resolver) {
+           if (!isFunction(resolver)) {
+             throw $qMinErr('norslvr', "Expected resolverFn, got '{0}'", resolver);
+           }
+
+           if (!(this instanceof Q)) {
+             // More useful when $Q is the Promise itself.
+             return new Q(resolver);
+           }
+
+           var deferred = new Deferred();
+
+           function resolveFn(value) {
+             deferred.resolve(value);
+           }
+
+           function rejectFn(reason) {
+             deferred.reject(reason);
+           }
+
+           resolver(resolveFn, rejectFn);
+
+           return deferred.promise;
+         };
+
+         $Q.defer = defer;
+         $Q.reject = reject;
+         $Q.when = when;
+         $Q.resolve = resolve;
+         $Q.all = all;
+
+         return $Q;
+       }
+
+       function $$RAFProvider() { //rAF
+         this.$get = ['$window', '$timeout', function($window, $timeout) {
+           var requestAnimationFrame = $window.requestAnimationFrame ||
+                                       $window.webkitRequestAnimationFrame;
+
+           var cancelAnimationFrame = $window.cancelAnimationFrame ||
+                                      $window.webkitCancelAnimationFrame ||
+                                      $window.webkitCancelRequestAnimationFrame;
+
+           var rafSupported = !!requestAnimationFrame;
+           var raf = rafSupported
+             ? function(fn) {
+                 var id = requestAnimationFrame(fn);
+                 return function() {
+                   cancelAnimationFrame(id);
+                 };
+               }
+             : function(fn) {
+                 var timer = $timeout(fn, 16.66, false); // 1000 / 60 = 16.666
+                 return function() {
+                   $timeout.cancel(timer);
+                 };
+               };
+
+           raf.supported = rafSupported;
+
+           return raf;
+         }];
+       }
+
+       /**
+        * DESIGN NOTES
+        *
+        * The design decisions behind the scope are heavily favored for speed and memory consumption.
+        *
+        * The typical use of scope is to watch the expressions, which most of the time return the same
+        * value as last time so we optimize the operation.
+        *
+        * Closures construction is expensive in terms of speed as well as memory:
+        *   - No closures, instead use prototypical inheritance for API
+        *   - Internal state needs to be stored on scope directly, which means that private state is
+        *     exposed as $$____ properties
+        *
+        * Loop operations are optimized by using while(count--) { ... }
+        *   - This means that in order to keep the same order of execution as addition we have to add
+        *     items to the array at the beginning (unshift) instead of at the end (push)
+        *
+        * Child scopes are created and removed often
+        *   - Using an array would be slow since inserts in the middle are expensive; so we use linked lists
+        *
+        * There are fewer watches than observers. This is why you don't want the observer to be implemented
+        * in the same way as watch. Watch requires return of the initialization function which is expensive
+        * to construct.
+        */
+
+
+       /**
+        * @ngdoc provider
+        * @name $rootScopeProvider
+        * @description
+        *
+        * Provider for the $rootScope service.
+        */
+
+       /**
+        * @ngdoc method
+        * @name $rootScopeProvider#digestTtl
+        * @description
+        *
+        * Sets the number of `$digest` iterations the scope should attempt to execute before giving up and
+        * assuming that the model is unstable.
+        *
+        * The current default is 10 iterations.
+        *
+        * In complex applications it's possible that the dependencies between `$watch`s will result in
+        * several digest iterations. However if an application needs more than the default 10 digest
+        * iterations for its model to stabilize then you should investigate what is causing the model to
+        * continuously change during the digest.
+        *
+        * Increasing the TTL could have performance implications, so you should not change it without
+        * proper justification.
+        *
+        * @param {number} limit The number of digest iterations.
+        */
+
+
+       /**
+        * @ngdoc service
+        * @name $rootScope
+        * @description
+        *
+        * Every application has a single root {@link ng.$rootScope.Scope scope}.
+        * All other scopes are descendant scopes of the root scope. Scopes provide separation
+        * between the model and the view, via a mechanism for watching the model for changes.
+        * They also provide event emission/broadcast and subscription facility. See the
+        * {@link guide/scope developer guide on scopes}.
+        */
+       function $RootScopeProvider() {
+         var TTL = 10;
+         var $rootScopeMinErr = minErr('$rootScope');
+         var lastDirtyWatch = null;
+         var applyAsyncId = null;
+
+         this.digestTtl = function(value) {
+           if (arguments.length) {
+             TTL = value;
+           }
+           return TTL;
+         };
+
+         function createChildScopeClass(parent) {
+           function ChildScope() {
+             this.$$watchers = this.$$nextSibling =
+                 this.$$childHead = this.$$childTail = null;
+             this.$$listeners = {};
+             this.$$listenerCount = {};
+             this.$$watchersCount = 0;
+             this.$id = nextUid();
+             this.$$ChildScope = null;
+           }
+           ChildScope.prototype = parent;
+           return ChildScope;
+         }
+
+         this.$get = ['$injector', '$exceptionHandler', '$parse', '$browser',
+             function($injector, $exceptionHandler, $parse, $browser) {
+
+           function destroyChildScope($event) {
+               $event.currentScope.$$destroyed = true;
+           }
+
+           function cleanUpScope($scope) {
+
+             if (msie === 9) {
+               // There is a memory leak in IE9 if all child scopes are not disconnected
+               // completely when a scope is destroyed. So this code will recurse up through
+               // all this scopes children
+               //
+               // See issue https://github.com/angular/angular.js/issues/10706
+               $scope.$$childHead && cleanUpScope($scope.$$childHead);
+               $scope.$$nextSibling && cleanUpScope($scope.$$nextSibling);
+             }
+
+             // The code below works around IE9 and V8's memory leaks
+             //
+             // See:
+             // - https://code.google.com/p/v8/issues/detail?id=2073#c26
+             // - https://github.com/angular/angular.js/issues/6794#issuecomment-38648909
+             // - https://github.com/angular/angular.js/issues/1313#issuecomment-10378451
+
+             $scope.$parent = $scope.$$nextSibling = $scope.$$prevSibling = $scope.$$childHead =
+                 $scope.$$childTail = $scope.$root = $scope.$$watchers = null;
+           }
+
+           /**
+            * @ngdoc type
+            * @name $rootScope.Scope
+            *
+            * @description
+            * A root scope can be retrieved using the {@link ng.$rootScope $rootScope} key from the
+            * {@link auto.$injector $injector}. Child scopes are created using the
+            * {@link ng.$rootScope.Scope#$new $new()} method. (Most scopes are created automatically when
+            * compiled HTML template is executed.) See also the {@link guide/scope Scopes guide} for
+            * an in-depth introduction and usage examples.
+            *
+            *
+            * # Inheritance
+            * A scope can inherit from a parent scope, as in this example:
+            * ```js
+                var parent = $rootScope;
+                var child = parent.$new();
+
+                parent.salutation = "Hello";
+                expect(child.salutation).toEqual('Hello');
+
+                child.salutation = "Welcome";
+                expect(child.salutation).toEqual('Welcome');
+                expect(parent.salutation).toEqual('Hello');
+            * ```
+            *
+            * When interacting with `Scope` in tests, additional helper methods are available on the
+            * instances of `Scope` type. See {@link ngMock.$rootScope.Scope ngMock Scope} for additional
+            * details.
+            *
+            *
+            * @param {Object.<string, function()>=} providers Map of service factory which need to be
+            *                                       provided for the current scope. Defaults to {@link ng}.
+            * @param {Object.<string, *>=} instanceCache Provides pre-instantiated services which should
+            *                              append/override services provided by `providers`. This is handy
+            *                              when unit-testing and having the need to override a default
+            *                              service.
+            * @returns {Object} Newly created scope.
+            *
+            */
+           function Scope() {
+             this.$id = nextUid();
+             this.$$phase = this.$parent = this.$$watchers =
+                            this.$$nextSibling = this.$$prevSibling =
+                            this.$$childHead = this.$$childTail = null;
+             this.$root = this;
+             this.$$destroyed = false;
+             this.$$listeners = {};
+             this.$$listenerCount = {};
+             this.$$watchersCount = 0;
+             this.$$isolateBindings = null;
+           }
+
+           /**
+            * @ngdoc property
+            * @name $rootScope.Scope#$id
+            *
+            * @description
+            * Unique scope ID (monotonically increasing) useful for debugging.
+            */
+
+            /**
+             * @ngdoc property
+             * @name $rootScope.Scope#$parent
+             *
+             * @description
+             * Reference to the parent scope.
+             */
+
+             /**
+              * @ngdoc property
+              * @name $rootScope.Scope#$root
+              *
+              * @description
+              * Reference to the root scope.
+              */
+
+           Scope.prototype = {
+             constructor: Scope,
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$new
+              * @kind function
+              *
+              * @description
+              * Creates a new child {@link ng.$rootScope.Scope scope}.
+              *
+              * The parent scope will propagate the {@link ng.$rootScope.Scope#$digest $digest()} event.
+              * The scope can be removed from the scope hierarchy using {@link ng.$rootScope.Scope#$destroy $destroy()}.
+              *
+              * {@link ng.$rootScope.Scope#$destroy $destroy()} must be called on a scope when it is
+              * desired for the scope and its child scopes to be permanently detached from the parent and
+              * thus stop participating in model change detection and listener notification by invoking.
+              *
+              * @param {boolean} isolate If true, then the scope does not prototypically inherit from the
+              *         parent scope. The scope is isolated, as it can not see parent scope properties.
+              *         When creating widgets, it is useful for the widget to not accidentally read parent
+              *         state.
+              *
+              * @param {Scope} [parent=this] The {@link ng.$rootScope.Scope `Scope`} that will be the `$parent`
+              *                              of the newly created scope. Defaults to `this` scope if not provided.
+              *                              This is used when creating a transclude scope to correctly place it
+              *                              in the scope hierarchy while maintaining the correct prototypical
+              *                              inheritance.
+              *
+              * @returns {Object} The newly created child scope.
+              *
+              */
+             $new: function(isolate, parent) {
+               var child;
+
+               parent = parent || this;
+
+               if (isolate) {
+                 child = new Scope();
+                 child.$root = this.$root;
+               } else {
+                 // Only create a child scope class if somebody asks for one,
+                 // but cache it to allow the VM to optimize lookups.
+                 if (!this.$$ChildScope) {
+                   this.$$ChildScope = createChildScopeClass(this);
+                 }
+                 child = new this.$$ChildScope();
+               }
+               child.$parent = parent;
+               child.$$prevSibling = parent.$$childTail;
+               if (parent.$$childHead) {
+                 parent.$$childTail.$$nextSibling = child;
+                 parent.$$childTail = child;
+               } else {
+                 parent.$$childHead = parent.$$childTail = child;
+               }
+
+               // When the new scope is not isolated or we inherit from `this`, and
+               // the parent scope is destroyed, the property `$$destroyed` is inherited
+               // prototypically. In all other cases, this property needs to be set
+               // when the parent scope is destroyed.
+               // The listener needs to be added after the parent is set
+               if (isolate || parent != this) child.$on('$destroy', destroyChildScope);
+
+               return child;
+             },
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$watch
+              * @kind function
+              *
+              * @description
+              * Registers a `listener` callback to be executed whenever the `watchExpression` changes.
+              *
+              * - The `watchExpression` is called on every call to {@link ng.$rootScope.Scope#$digest
+              *   $digest()} and should return the value that will be watched. (`watchExpression` should not change
+              *   its value when executed multiple times with the same input because it may be executed multiple
+              *   times by {@link ng.$rootScope.Scope#$digest $digest()}. That is, `watchExpression` should be
+              *   [idempotent](http://en.wikipedia.org/wiki/Idempotence).
+              * - The `listener` is called only when the value from the current `watchExpression` and the
+              *   previous call to `watchExpression` are not equal (with the exception of the initial run,
+              *   see below). Inequality is determined according to reference inequality,
+              *   [strict comparison](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators)
+              *    via the `!==` Javascript operator, unless `objectEquality == true`
+              *   (see next point)
+              * - When `objectEquality == true`, inequality of the `watchExpression` is determined
+              *   according to the {@link angular.equals} function. To save the value of the object for
+              *   later comparison, the {@link angular.copy} function is used. This therefore means that
+              *   watching complex objects will have adverse memory and performance implications.
+              * - The watch `listener` may change the model, which may trigger other `listener`s to fire.
+              *   This is achieved by rerunning the watchers until no changes are detected. The rerun
+              *   iteration limit is 10 to prevent an infinite loop deadlock.
+              *
+              *
+              * If you want to be notified whenever {@link ng.$rootScope.Scope#$digest $digest} is called,
+              * you can register a `watchExpression` function with no `listener`. (Be prepared for
+              * multiple calls to your `watchExpression` because it will execute multiple times in a
+              * single {@link ng.$rootScope.Scope#$digest $digest} cycle if a change is detected.)
+              *
+              * After a watcher is registered with the scope, the `listener` fn is called asynchronously
+              * (via {@link ng.$rootScope.Scope#$evalAsync $evalAsync}) to initialize the
+              * watcher. In rare cases, this is undesirable because the listener is called when the result
+              * of `watchExpression` didn't change. To detect this scenario within the `listener` fn, you
+              * can compare the `newVal` and `oldVal`. If these two values are identical (`===`) then the
+              * listener was called due to initialization.
+              *
+              *
+              *
+              * # Example
+              * ```js
+                  // let's assume that scope was dependency injected as the $rootScope
+                  var scope = $rootScope;
+                  scope.name = 'misko';
+                  scope.counter = 0;
+
+                  expect(scope.counter).toEqual(0);
+                  scope.$watch('name', function(newValue, oldValue) {
+                    scope.counter = scope.counter + 1;
+                  });
+                  expect(scope.counter).toEqual(0);
+
+                  scope.$digest();
+                  // the listener is always called during the first $digest loop after it was registered
+                  expect(scope.counter).toEqual(1);
+
+                  scope.$digest();
+                  // but now it will not be called unless the value changes
+                  expect(scope.counter).toEqual(1);
+
+                  scope.name = 'adam';
+                  scope.$digest();
+                  expect(scope.counter).toEqual(2);
+
+
+
+                  // Using a function as a watchExpression
+                  var food;
+                  scope.foodCounter = 0;
+                  expect(scope.foodCounter).toEqual(0);
+                  scope.$watch(
+                    // This function returns the value being watched. It is called for each turn of the $digest loop
+                    function() { return food; },
+                    // This is the change listener, called when the value returned from the above function changes
+                    function(newValue, oldValue) {
+                      if ( newValue !== oldValue ) {
+                        // Only increment the counter if the value changed
+                        scope.foodCounter = scope.foodCounter + 1;
+                      }
+                    }
+                  );
+                  // No digest has been run so the counter will be zero
+                  expect(scope.foodCounter).toEqual(0);
+
+                  // Run the digest but since food has not changed count will still be zero
+                  scope.$digest();
+                  expect(scope.foodCounter).toEqual(0);
+
+                  // Update food and run digest.  Now the counter will increment
+                  food = 'cheeseburger';
+                  scope.$digest();
+                  expect(scope.foodCounter).toEqual(1);
+
+              * ```
+              *
+              *
+              *
+              * @param {(function()|string)} watchExpression Expression that is evaluated on each
+              *    {@link ng.$rootScope.Scope#$digest $digest} cycle. A change in the return value triggers
+              *    a call to the `listener`.
+              *
+              *    - `string`: Evaluated as {@link guide/expression expression}
+              *    - `function(scope)`: called with current `scope` as a parameter.
+              * @param {function(newVal, oldVal, scope)} listener Callback called whenever the value
+              *    of `watchExpression` changes.
+              *
+              *    - `newVal` contains the current value of the `watchExpression`
+              *    - `oldVal` contains the previous value of the `watchExpression`
+              *    - `scope` refers to the current scope
+              * @param {boolean=} objectEquality Compare for object equality using {@link angular.equals} instead of
+              *     comparing for reference equality.
+              * @returns {function()} Returns a deregistration function for this listener.
+              */
+             $watch: function(watchExp, listener, objectEquality, prettyPrintExpression) {
+               var get = $parse(watchExp);
+
+               if (get.$$watchDelegate) {
+                 return get.$$watchDelegate(this, listener, objectEquality, get, watchExp);
+               }
+               var scope = this,
+                   array = scope.$$watchers,
+                   watcher = {
+                     fn: listener,
+                     last: initWatchVal,
+                     get: get,
+                     exp: prettyPrintExpression || watchExp,
+                     eq: !!objectEquality
+                   };
+
+               lastDirtyWatch = null;
+
+               if (!isFunction(listener)) {
+                 watcher.fn = noop;
+               }
+
+               if (!array) {
+                 array = scope.$$watchers = [];
+               }
+               // we use unshift since we use a while loop in $digest for speed.
+               // the while loop reads in reverse order.
+               array.unshift(watcher);
+               incrementWatchersCount(this, 1);
+
+               return function deregisterWatch() {
+                 if (arrayRemove(array, watcher) >= 0) {
+                   incrementWatchersCount(scope, -1);
+                 }
+                 lastDirtyWatch = null;
+               };
+             },
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$watchGroup
+              * @kind function
+              *
+              * @description
+              * A variant of {@link ng.$rootScope.Scope#$watch $watch()} where it watches an array of `watchExpressions`.
+              * If any one expression in the collection changes the `listener` is executed.
+              *
+              * - The items in the `watchExpressions` array are observed via standard $watch operation and are examined on every
+              *   call to $digest() to see if any items changes.
+              * - The `listener` is called whenever any expression in the `watchExpressions` array changes.
+              *
+              * @param {Array.<string|Function(scope)>} watchExpressions Array of expressions that will be individually
+              * watched using {@link ng.$rootScope.Scope#$watch $watch()}
+              *
+              * @param {function(newValues, oldValues, scope)} listener Callback called whenever the return value of any
+              *    expression in `watchExpressions` changes
+              *    The `newValues` array contains the current values of the `watchExpressions`, with the indexes matching
+              *    those of `watchExpression`
+              *    and the `oldValues` array contains the previous values of the `watchExpressions`, with the indexes matching
+              *    those of `watchExpression`
+              *    The `scope` refers to the current scope.
+              * @returns {function()} Returns a de-registration function for all listeners.
+              */
+             $watchGroup: function(watchExpressions, listener) {
+               var oldValues = new Array(watchExpressions.length);
+               var newValues = new Array(watchExpressions.length);
+               var deregisterFns = [];
+               var self = this;
+               var changeReactionScheduled = false;
+               var firstRun = true;
+
+               if (!watchExpressions.length) {
+                 // No expressions means we call the listener ASAP
+                 var shouldCall = true;
+                 self.$evalAsync(function() {
+                   if (shouldCall) listener(newValues, newValues, self);
+                 });
+                 return function deregisterWatchGroup() {
+                   shouldCall = false;
+                 };
+               }
+
+               if (watchExpressions.length === 1) {
+                 // Special case size of one
+                 return this.$watch(watchExpressions[0], function watchGroupAction(value, oldValue, scope) {
+                   newValues[0] = value;
+                   oldValues[0] = oldValue;
+                   listener(newValues, (value === oldValue) ? newValues : oldValues, scope);
+                 });
+               }
+
+               forEach(watchExpressions, function(expr, i) {
+                 var unwatchFn = self.$watch(expr, function watchGroupSubAction(value, oldValue) {
+                   newValues[i] = value;
+                   oldValues[i] = oldValue;
+                   if (!changeReactionScheduled) {
+                     changeReactionScheduled = true;
+                     self.$evalAsync(watchGroupAction);
+                   }
+                 });
+                 deregisterFns.push(unwatchFn);
+               });
+
+               function watchGroupAction() {
+                 changeReactionScheduled = false;
+
+                 if (firstRun) {
+                   firstRun = false;
+                   listener(newValues, newValues, self);
+                 } else {
+                   listener(newValues, oldValues, self);
+                 }
+               }
+
+               return function deregisterWatchGroup() {
+                 while (deregisterFns.length) {
+                   deregisterFns.shift()();
+                 }
+               };
+             },
+
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$watchCollection
+              * @kind function
+              *
+              * @description
+              * Shallow watches the properties of an object and fires whenever any of the properties change
+              * (for arrays, this implies watching the array items; for object maps, this implies watching
+              * the properties). If a change is detected, the `listener` callback is fired.
+              *
+              * - The `obj` collection is observed via standard $watch operation and is examined on every
+              *   call to $digest() to see if any items have been added, removed, or moved.
+              * - The `listener` is called whenever anything within the `obj` has changed. Examples include
+              *   adding, removing, and moving items belonging to an object or array.
+              *
+              *
+              * # Example
+              * ```js
+                 $scope.names = ['igor', 'matias', 'misko', 'james'];
+                 $scope.dataCount = 4;
+
+                 $scope.$watchCollection('names', function(newNames, oldNames) {
+                   $scope.dataCount = newNames.length;
+                 });
+
+                 expect($scope.dataCount).toEqual(4);
+                 $scope.$digest();
+
+                 //still at 4 ... no changes
+                 expect($scope.dataCount).toEqual(4);
+
+                 $scope.names.pop();
+                 $scope.$digest();
+
+                 //now there's been a change
+                 expect($scope.dataCount).toEqual(3);
+              * ```
+              *
+              *
+              * @param {string|function(scope)} obj Evaluated as {@link guide/expression expression}. The
+              *    expression value should evaluate to an object or an array which is observed on each
+              *    {@link ng.$rootScope.Scope#$digest $digest} cycle. Any shallow change within the
+              *    collection will trigger a call to the `listener`.
+              *
+              * @param {function(newCollection, oldCollection, scope)} listener a callback function called
+              *    when a change is detected.
+              *    - The `newCollection` object is the newly modified data obtained from the `obj` expression
+              *    - The `oldCollection` object is a copy of the former collection data.
+              *      Due to performance considerations, the`oldCollection` value is computed only if the
+              *      `listener` function declares two or more arguments.
+              *    - The `scope` argument refers to the current scope.
+              *
+              * @returns {function()} Returns a de-registration function for this listener. When the
+              *    de-registration function is executed, the internal watch operation is terminated.
+              */
+             $watchCollection: function(obj, listener) {
+               $watchCollectionInterceptor.$stateful = true;
+
+               var self = this;
+               // the current value, updated on each dirty-check run
+               var newValue;
+               // a shallow copy of the newValue from the last dirty-check run,
+               // updated to match newValue during dirty-check run
+               var oldValue;
+               // a shallow copy of the newValue from when the last change happened
+               var veryOldValue;
+               // only track veryOldValue if the listener is asking for it
+               var trackVeryOldValue = (listener.length > 1);
+               var changeDetected = 0;
+               var changeDetector = $parse(obj, $watchCollectionInterceptor);
+               var internalArray = [];
+               var internalObject = {};
+               var initRun = true;
+               var oldLength = 0;
+
+               function $watchCollectionInterceptor(_value) {
+                 newValue = _value;
+                 var newLength, key, bothNaN, newItem, oldItem;
+
+                 // If the new value is undefined, then return undefined as the watch may be a one-time watch
+                 if (isUndefined(newValue)) return;
+
+                 if (!isObject(newValue)) { // if primitive
+                   if (oldValue !== newValue) {
+                     oldValue = newValue;
+                     changeDetected++;
+                   }
+                 } else if (isArrayLike(newValue)) {
+                   if (oldValue !== internalArray) {
+                     // we are transitioning from something which was not an array into array.
+                     oldValue = internalArray;
+                     oldLength = oldValue.length = 0;
+                     changeDetected++;
+                   }
+
+                   newLength = newValue.length;
+
+                   if (oldLength !== newLength) {
+                     // if lengths do not match we need to trigger change notification
+                     changeDetected++;
+                     oldValue.length = oldLength = newLength;
+                   }
+                   // copy the items to oldValue and look for changes.
+                   for (var i = 0; i < newLength; i++) {
+                     oldItem = oldValue[i];
+                     newItem = newValue[i];
+
+                     bothNaN = (oldItem !== oldItem) && (newItem !== newItem);
+                     if (!bothNaN && (oldItem !== newItem)) {
+                       changeDetected++;
+                       oldValue[i] = newItem;
+                     }
+                   }
+                 } else {
+                   if (oldValue !== internalObject) {
+                     // we are transitioning from something which was not an object into object.
+                     oldValue = internalObject = {};
+                     oldLength = 0;
+                     changeDetected++;
+                   }
+                   // copy the items to oldValue and look for changes.
+                   newLength = 0;
+                   for (key in newValue) {
+                     if (hasOwnProperty.call(newValue, key)) {
+                       newLength++;
+                       newItem = newValue[key];
+                       oldItem = oldValue[key];
+
+                       if (key in oldValue) {
+                         bothNaN = (oldItem !== oldItem) && (newItem !== newItem);
+                         if (!bothNaN && (oldItem !== newItem)) {
+                           changeDetected++;
+                           oldValue[key] = newItem;
+                         }
+                       } else {
+                         oldLength++;
+                         oldValue[key] = newItem;
+                         changeDetected++;
+                       }
+                     }
+                   }
+                   if (oldLength > newLength) {
+                     // we used to have more keys, need to find them and destroy them.
+                     changeDetected++;
+                     for (key in oldValue) {
+                       if (!hasOwnProperty.call(newValue, key)) {
+                         oldLength--;
+                         delete oldValue[key];
+                       }
+                     }
+                   }
+                 }
+                 return changeDetected;
+               }
+
+               function $watchCollectionAction() {
+                 if (initRun) {
+                   initRun = false;
+                   listener(newValue, newValue, self);
+                 } else {
+                   listener(newValue, veryOldValue, self);
+                 }
+
+                 // make a copy for the next time a collection is changed
+                 if (trackVeryOldValue) {
+                   if (!isObject(newValue)) {
+                     //primitive
+                     veryOldValue = newValue;
+                   } else if (isArrayLike(newValue)) {
+                     veryOldValue = new Array(newValue.length);
+                     for (var i = 0; i < newValue.length; i++) {
+                       veryOldValue[i] = newValue[i];
+                     }
+                   } else { // if object
+                     veryOldValue = {};
+                     for (var key in newValue) {
+                       if (hasOwnProperty.call(newValue, key)) {
+                         veryOldValue[key] = newValue[key];
+                       }
+                     }
+                   }
+                 }
+               }
+
+               return this.$watch(changeDetector, $watchCollectionAction);
+             },
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$digest
+              * @kind function
+              *
+              * @description
+              * Processes all of the {@link ng.$rootScope.Scope#$watch watchers} of the current scope and
+              * its children. Because a {@link ng.$rootScope.Scope#$watch watcher}'s listener can change
+              * the model, the `$digest()` keeps calling the {@link ng.$rootScope.Scope#$watch watchers}
+              * until no more listeners are firing. This means that it is possible to get into an infinite
+              * loop. This function will throw `'Maximum iteration limit exceeded.'` if the number of
+              * iterations exceeds 10.
+              *
+              * Usually, you don't call `$digest()` directly in
+              * {@link ng.directive:ngController controllers} or in
+              * {@link ng.$compileProvider#directive directives}.
+              * Instead, you should call {@link ng.$rootScope.Scope#$apply $apply()} (typically from within
+              * a {@link ng.$compileProvider#directive directive}), which will force a `$digest()`.
+              *
+              * If you want to be notified whenever `$digest()` is called,
+              * you can register a `watchExpression` function with
+              * {@link ng.$rootScope.Scope#$watch $watch()} with no `listener`.
+              *
+              * In unit tests, you may need to call `$digest()` to simulate the scope life cycle.
+              *
+              * # Example
+              * ```js
+                  var scope = ...;
+                  scope.name = 'misko';
+                  scope.counter = 0;
+
+                  expect(scope.counter).toEqual(0);
+                  scope.$watch('name', function(newValue, oldValue) {
+                    scope.counter = scope.counter + 1;
+                  });
+                  expect(scope.counter).toEqual(0);
+
+                  scope.$digest();
+                  // the listener is always called during the first $digest loop after it was registered
+                  expect(scope.counter).toEqual(1);
+
+                  scope.$digest();
+                  // but now it will not be called unless the value changes
+                  expect(scope.counter).toEqual(1);
+
+                  scope.name = 'adam';
+                  scope.$digest();
+                  expect(scope.counter).toEqual(2);
+              * ```
+              *
+              */
+             $digest: function() {
+               var watch, value, last,
+                   watchers,
+                   length,
+                   dirty, ttl = TTL,
+                   next, current, target = this,
+                   watchLog = [],
+                   logIdx, logMsg, asyncTask;
+
+               beginPhase('$digest');
+               // Check for changes to browser url that happened in sync before the call to $digest
+               $browser.$$checkUrlChange();
+
+               if (this === $rootScope && applyAsyncId !== null) {
+                 // If this is the root scope, and $applyAsync has scheduled a deferred $apply(), then
+                 // cancel the scheduled $apply and flush the queue of expressions to be evaluated.
+                 $browser.defer.cancel(applyAsyncId);
+                 flushApplyAsync();
+               }
+
+               lastDirtyWatch = null;
+
+               do { // "while dirty" loop
+                 dirty = false;
+                 current = target;
+
+                 while (asyncQueue.length) {
+                   try {
+                     asyncTask = asyncQueue.shift();
+                     asyncTask.scope.$eval(asyncTask.expression, asyncTask.locals);
+                   } catch (e) {
+                     $exceptionHandler(e);
+                   }
+                   lastDirtyWatch = null;
+                 }
+
+                 traverseScopesLoop:
+                 do { // "traverse the scopes" loop
+                   if ((watchers = current.$$watchers)) {
+                     // process our watches
+                     length = watchers.length;
+                     while (length--) {
+                       try {
+                         watch = watchers[length];
+                         // Most common watches are on primitives, in which case we can short
+                         // circuit it with === operator, only when === fails do we use .equals
+                         if (watch) {
+                           if ((value = watch.get(current)) !== (last = watch.last) &&
+                               !(watch.eq
+                                   ? equals(value, last)
+                                   : (typeof value === 'number' && typeof last === 'number'
+                                      && isNaN(value) && isNaN(last)))) {
+                             dirty = true;
+                             lastDirtyWatch = watch;
+                             watch.last = watch.eq ? copy(value, null) : value;
+                             watch.fn(value, ((last === initWatchVal) ? value : last), current);
+                             if (ttl < 5) {
+                               logIdx = 4 - ttl;
+                               if (!watchLog[logIdx]) watchLog[logIdx] = [];
+                               watchLog[logIdx].push({
+                                 msg: isFunction(watch.exp) ? 'fn: ' + (watch.exp.name || watch.exp.toString()) : watch.exp,
+                                 newVal: value,
+                                 oldVal: last
+                               });
+                             }
+                           } else if (watch === lastDirtyWatch) {
+                             // If the most recently dirty watcher is now clean, short circuit since the remaining watchers
+                             // have already been tested.
+                             dirty = false;
+                             break traverseScopesLoop;
+                           }
+                         }
+                       } catch (e) {
+                         $exceptionHandler(e);
+                       }
+                     }
+                   }
+
+                   // Insanity Warning: scope depth-first traversal
+                   // yes, this code is a bit crazy, but it works and we have tests to prove it!
+                   // this piece should be kept in sync with the traversal in $broadcast
+                   if (!(next = ((current.$$watchersCount && current.$$childHead) ||
+                       (current !== target && current.$$nextSibling)))) {
+                     while (current !== target && !(next = current.$$nextSibling)) {
+                       current = current.$parent;
+                     }
+                   }
+                 } while ((current = next));
+
+                 // `break traverseScopesLoop;` takes us to here
+
+                 if ((dirty || asyncQueue.length) && !(ttl--)) {
+                   clearPhase();
+                   throw $rootScopeMinErr('infdig',
+                       '{0} $digest() iterations reached. Aborting!\n' +
+                       'Watchers fired in the last 5 iterations: {1}',
+                       TTL, watchLog);
+                 }
+
+               } while (dirty || asyncQueue.length);
+
+               clearPhase();
+
+               while (postDigestQueue.length) {
+                 try {
+                   postDigestQueue.shift()();
+                 } catch (e) {
+                   $exceptionHandler(e);
+                 }
+               }
+             },
+
+
+             /**
+              * @ngdoc event
+              * @name $rootScope.Scope#$destroy
+              * @eventType broadcast on scope being destroyed
+              *
+              * @description
+              * Broadcasted when a scope and its children are being destroyed.
+              *
+              * Note that, in AngularJS, there is also a `$destroy` jQuery event, which can be used to
+              * clean up DOM bindings before an element is removed from the DOM.
+              */
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$destroy
+              * @kind function
+              *
+              * @description
+              * Removes the current scope (and all of its children) from the parent scope. Removal implies
+              * that calls to {@link ng.$rootScope.Scope#$digest $digest()} will no longer
+              * propagate to the current scope and its children. Removal also implies that the current
+              * scope is eligible for garbage collection.
+              *
+              * The `$destroy()` is usually used by directives such as
+              * {@link ng.directive:ngRepeat ngRepeat} for managing the
+              * unrolling of the loop.
+              *
+              * Just before a scope is destroyed, a `$destroy` event is broadcasted on this scope.
+              * Application code can register a `$destroy` event handler that will give it a chance to
+              * perform any necessary cleanup.
+              *
+              * Note that, in AngularJS, there is also a `$destroy` jQuery event, which can be used to
+              * clean up DOM bindings before an element is removed from the DOM.
+              */
+             $destroy: function() {
+               // We can't destroy a scope that has been already destroyed.
+               if (this.$$destroyed) return;
+               var parent = this.$parent;
+
+               this.$broadcast('$destroy');
+               this.$$destroyed = true;
+
+               if (this === $rootScope) {
+                 //Remove handlers attached to window when $rootScope is removed
+                 $browser.$$applicationDestroyed();
+               }
+
+               incrementWatchersCount(this, -this.$$watchersCount);
+               for (var eventName in this.$$listenerCount) {
+                 decrementListenerCount(this, this.$$listenerCount[eventName], eventName);
+               }
+
+               // sever all the references to parent scopes (after this cleanup, the current scope should
+               // not be retained by any of our references and should be eligible for garbage collection)
+               if (parent && parent.$$childHead == this) parent.$$childHead = this.$$nextSibling;
+               if (parent && parent.$$childTail == this) parent.$$childTail = this.$$prevSibling;
+               if (this.$$prevSibling) this.$$prevSibling.$$nextSibling = this.$$nextSibling;
+               if (this.$$nextSibling) this.$$nextSibling.$$prevSibling = this.$$prevSibling;
+
+               // Disable listeners, watchers and apply/digest methods
+               this.$destroy = this.$digest = this.$apply = this.$evalAsync = this.$applyAsync = noop;
+               this.$on = this.$watch = this.$watchGroup = function() { return noop; };
+               this.$$listeners = {};
+
+               // Disconnect the next sibling to prevent `cleanUpScope` destroying those too
+               this.$$nextSibling = null;
+               cleanUpScope(this);
+             },
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$eval
+              * @kind function
+              *
+              * @description
+              * Executes the `expression` on the current scope and returns the result. Any exceptions in
+              * the expression are propagated (uncaught). This is useful when evaluating Angular
+              * expressions.
+              *
+              * # Example
+              * ```js
+                  var scope = ng.$rootScope.Scope();
+                  scope.a = 1;
+                  scope.b = 2;
+
+                  expect(scope.$eval('a+b')).toEqual(3);
+                  expect(scope.$eval(function(scope){ return scope.a + scope.b; })).toEqual(3);
+              * ```
+              *
+              * @param {(string|function())=} expression An angular expression to be executed.
+              *
+              *    - `string`: execute using the rules as defined in  {@link guide/expression expression}.
+              *    - `function(scope)`: execute the function with the current `scope` parameter.
+              *
+              * @param {(object)=} locals Local variables object, useful for overriding values in scope.
+              * @returns {*} The result of evaluating the expression.
+              */
+             $eval: function(expr, locals) {
+               return $parse(expr)(this, locals);
+             },
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$evalAsync
+              * @kind function
+              *
+              * @description
+              * Executes the expression on the current scope at a later point in time.
+              *
+              * The `$evalAsync` makes no guarantees as to when the `expression` will be executed, only
+              * that:
+              *
+              *   - it will execute after the function that scheduled the evaluation (preferably before DOM
+              *     rendering).
+              *   - at least one {@link ng.$rootScope.Scope#$digest $digest cycle} will be performed after
+              *     `expression` execution.
+              *
+              * Any exceptions from the execution of the expression are forwarded to the
+              * {@link ng.$exceptionHandler $exceptionHandler} service.
+              *
+              * __Note:__ if this function is called outside of a `$digest` cycle, a new `$digest` cycle
+              * will be scheduled. However, it is encouraged to always call code that changes the model
+              * from within an `$apply` call. That includes code evaluated via `$evalAsync`.
+              *
+              * @param {(string|function())=} expression An angular expression to be executed.
+              *
+              *    - `string`: execute using the rules as defined in {@link guide/expression expression}.
+              *    - `function(scope)`: execute the function with the current `scope` parameter.
+              *
+              * @param {(object)=} locals Local variables object, useful for overriding values in scope.
+              */
+             $evalAsync: function(expr, locals) {
+               // if we are outside of an $digest loop and this is the first time we are scheduling async
+               // task also schedule async auto-flush
+               if (!$rootScope.$$phase && !asyncQueue.length) {
+                 $browser.defer(function() {
+                   if (asyncQueue.length) {
+                     $rootScope.$digest();
+                   }
+                 });
+               }
+
+               asyncQueue.push({scope: this, expression: expr, locals: locals});
+             },
+
+             $$postDigest: function(fn) {
+               postDigestQueue.push(fn);
+             },
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$apply
+              * @kind function
+              *
+              * @description
+              * `$apply()` is used to execute an expression in angular from outside of the angular
+              * framework. (For example from browser DOM events, setTimeout, XHR or third party libraries).
+              * Because we are calling into the angular framework we need to perform proper scope life
+              * cycle of {@link ng.$exceptionHandler exception handling},
+              * {@link ng.$rootScope.Scope#$digest executing watches}.
+              *
+              * ## Life cycle
+              *
+              * # Pseudo-Code of `$apply()`
+              * ```js
+                  function $apply(expr) {
+                    try {
+                      return $eval(expr);
+                    } catch (e) {
+                      $exceptionHandler(e);
+                    } finally {
+                      $root.$digest();
+                    }
+                  }
+              * ```
+              *
+              *
+              * Scope's `$apply()` method transitions through the following stages:
+              *
+              * 1. The {@link guide/expression expression} is executed using the
+              *    {@link ng.$rootScope.Scope#$eval $eval()} method.
+              * 2. Any exceptions from the execution of the expression are forwarded to the
+              *    {@link ng.$exceptionHandler $exceptionHandler} service.
+              * 3. The {@link ng.$rootScope.Scope#$watch watch} listeners are fired immediately after the
+              *    expression was executed using the {@link ng.$rootScope.Scope#$digest $digest()} method.
+              *
+              *
+              * @param {(string|function())=} exp An angular expression to be executed.
+              *
+              *    - `string`: execute using the rules as defined in {@link guide/expression expression}.
+              *    - `function(scope)`: execute the function with current `scope` parameter.
+              *
+              * @returns {*} The result of evaluating the expression.
+              */
+             $apply: function(expr) {
+               try {
+                 beginPhase('$apply');
+                 try {
+                   return this.$eval(expr);
+                 } finally {
+                   clearPhase();
+                 }
+               } catch (e) {
+                 $exceptionHandler(e);
+               } finally {
+                 try {
+                   $rootScope.$digest();
+                 } catch (e) {
+                   $exceptionHandler(e);
+                   throw e;
+                 }
+               }
+             },
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$applyAsync
+              * @kind function
+              *
+              * @description
+              * Schedule the invocation of $apply to occur at a later time. The actual time difference
+              * varies across browsers, but is typically around ~10 milliseconds.
+              *
+              * This can be used to queue up multiple expressions which need to be evaluated in the same
+              * digest.
+              *
+              * @param {(string|function())=} exp An angular expression to be executed.
+              *
+              *    - `string`: execute using the rules as defined in {@link guide/expression expression}.
+              *    - `function(scope)`: execute the function with current `scope` parameter.
+              */
+             $applyAsync: function(expr) {
+               var scope = this;
+               expr && applyAsyncQueue.push($applyAsyncExpression);
+               scheduleApplyAsync();
+
+               function $applyAsyncExpression() {
+                 scope.$eval(expr);
+               }
+             },
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$on
+              * @kind function
+              *
+              * @description
+              * Listens on events of a given type. See {@link ng.$rootScope.Scope#$emit $emit} for
+              * discussion of event life cycle.
+              *
+              * The event listener function format is: `function(event, args...)`. The `event` object
+              * passed into the listener has the following attributes:
+              *
+              *   - `targetScope` - `{Scope}`: the scope on which the event was `$emit`-ed or
+              *     `$broadcast`-ed.
+              *   - `currentScope` - `{Scope}`: the scope that is currently handling the event. Once the
+              *     event propagates through the scope hierarchy, this property is set to null.
+              *   - `name` - `{string}`: name of the event.
+              *   - `stopPropagation` - `{function=}`: calling `stopPropagation` function will cancel
+              *     further event propagation (available only for events that were `$emit`-ed).
+              *   - `preventDefault` - `{function}`: calling `preventDefault` sets `defaultPrevented` flag
+              *     to true.
+              *   - `defaultPrevented` - `{boolean}`: true if `preventDefault` was called.
+              *
+              * @param {string} name Event name to listen on.
+              * @param {function(event, ...args)} listener Function to call when the event is emitted.
+              * @returns {function()} Returns a deregistration function for this listener.
+              */
+             $on: function(name, listener) {
+               var namedListeners = this.$$listeners[name];
+               if (!namedListeners) {
+                 this.$$listeners[name] = namedListeners = [];
+               }
+               namedListeners.push(listener);
+
+               var current = this;
+               do {
+                 if (!current.$$listenerCount[name]) {
+                   current.$$listenerCount[name] = 0;
+                 }
+                 current.$$listenerCount[name]++;
+               } while ((current = current.$parent));
+
+               var self = this;
+               return function() {
+                 var indexOfListener = namedListeners.indexOf(listener);
+                 if (indexOfListener !== -1) {
+                   namedListeners[indexOfListener] = null;
+                   decrementListenerCount(self, 1, name);
+                 }
+               };
+             },
+
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$emit
+              * @kind function
+              *
+              * @description
+              * Dispatches an event `name` upwards through the scope hierarchy notifying the
+              * registered {@link ng.$rootScope.Scope#$on} listeners.
+              *
+              * The event life cycle starts at the scope on which `$emit` was called. All
+              * {@link ng.$rootScope.Scope#$on listeners} listening for `name` event on this scope get
+              * notified. Afterwards, the event traverses upwards toward the root scope and calls all
+              * registered listeners along the way. The event will stop propagating if one of the listeners
+              * cancels it.
+              *
+              * Any exception emitted from the {@link ng.$rootScope.Scope#$on listeners} will be passed
+              * onto the {@link ng.$exceptionHandler $exceptionHandler} service.
+              *
+              * @param {string} name Event name to emit.
+              * @param {...*} args Optional one or more arguments which will be passed onto the event listeners.
+              * @return {Object} Event object (see {@link ng.$rootScope.Scope#$on}).
+              */
+             $emit: function(name, args) {
+               var empty = [],
+                   namedListeners,
+                   scope = this,
+                   stopPropagation = false,
+                   event = {
+                     name: name,
+                     targetScope: scope,
+                     stopPropagation: function() {stopPropagation = true;},
+                     preventDefault: function() {
+                       event.defaultPrevented = true;
+                     },
+                     defaultPrevented: false
+                   },
+                   listenerArgs = concat([event], arguments, 1),
+                   i, length;
+
+               do {
+                 namedListeners = scope.$$listeners[name] || empty;
+                 event.currentScope = scope;
+                 for (i = 0, length = namedListeners.length; i < length; i++) {
+
+                   // if listeners were deregistered, defragment the array
+                   if (!namedListeners[i]) {
+                     namedListeners.splice(i, 1);
+                     i--;
+                     length--;
+                     continue;
+                   }
+                   try {
+                     //allow all listeners attached to the current scope to run
+                     namedListeners[i].apply(null, listenerArgs);
+                   } catch (e) {
+                     $exceptionHandler(e);
+                   }
+                 }
+                 //if any listener on the current scope stops propagation, prevent bubbling
+                 if (stopPropagation) {
+                   event.currentScope = null;
+                   return event;
+                 }
+                 //traverse upwards
+                 scope = scope.$parent;
+               } while (scope);
+
+               event.currentScope = null;
+
+               return event;
+             },
+
+
+             /**
+              * @ngdoc method
+              * @name $rootScope.Scope#$broadcast
+              * @kind function
+              *
+              * @description
+              * Dispatches an event `name` downwards to all child scopes (and their children) notifying the
+              * registered {@link ng.$rootScope.Scope#$on} listeners.
+              *
+              * The event life cycle starts at the scope on which `$broadcast` was called. All
+              * {@link ng.$rootScope.Scope#$on listeners} listening for `name` event on this scope get
+              * notified. Afterwards, the event propagates to all direct and indirect scopes of the current
+              * scope and calls all registered listeners along the way. The event cannot be canceled.
+              *
+              * Any exception emitted from the {@link ng.$rootScope.Scope#$on listeners} will be passed
+              * onto the {@link ng.$exceptionHandler $exceptionHandler} service.
+              *
+              * @param {string} name Event name to broadcast.
+              * @param {...*} args Optional one or more arguments which will be passed onto the event listeners.
+              * @return {Object} Event object, see {@link ng.$rootScope.Scope#$on}
+              */
+             $broadcast: function(name, args) {
+               var target = this,
+                   current = target,
+                   next = target,
+                   event = {
+                     name: name,
+                     targetScope: target,
+                     preventDefault: function() {
+                       event.defaultPrevented = true;
+                     },
+                     defaultPrevented: false
+                   };
+
+               if (!target.$$listenerCount[name]) return event;
+
+               var listenerArgs = concat([event], arguments, 1),
+                   listeners, i, length;
+
+               //down while you can, then up and next sibling or up and next sibling until back at root
+               while ((current = next)) {
+                 event.currentScope = current;
+                 listeners = current.$$listeners[name] || [];
+                 for (i = 0, length = listeners.length; i < length; i++) {
+                   // if listeners were deregistered, defragment the array
+                   if (!listeners[i]) {
+                     listeners.splice(i, 1);
+                     i--;
+                     length--;
+                     continue;
+                   }
+
+                   try {
+                     listeners[i].apply(null, listenerArgs);
+                   } catch (e) {
+                     $exceptionHandler(e);
+                   }
+                 }
+
+                 // Insanity Warning: scope depth-first traversal
+                 // yes, this code is a bit crazy, but it works and we have tests to prove it!
+                 // this piece should be kept in sync with the traversal in $digest
+                 // (though it differs due to having the extra check for $$listenerCount)
+                 if (!(next = ((current.$$listenerCount[name] && current.$$childHead) ||
+                     (current !== target && current.$$nextSibling)))) {
+                   while (current !== target && !(next = current.$$nextSibling)) {
+                     current = current.$parent;
+                   }
+                 }
+               }
+
+               event.currentScope = null;
+               return event;
+             }
+           };
+
+           var $rootScope = new Scope();
+
+           //The internal queues. Expose them on the $rootScope for debugging/testing purposes.
+           var asyncQueue = $rootScope.$$asyncQueue = [];
+           var postDigestQueue = $rootScope.$$postDigestQueue = [];
+           var applyAsyncQueue = $rootScope.$$applyAsyncQueue = [];
+
+           return $rootScope;
+
+
+           function beginPhase(phase) {
+             if ($rootScope.$$phase) {
+               throw $rootScopeMinErr('inprog', '{0} already in progress', $rootScope.$$phase);
+             }
+
+             $rootScope.$$phase = phase;
+           }
+
+           function clearPhase() {
+             $rootScope.$$phase = null;
+           }
+
+           function incrementWatchersCount(current, count) {
+             do {
+               current.$$watchersCount += count;
+             } while ((current = current.$parent));
+           }
+
+           function decrementListenerCount(current, count, name) {
+             do {
+               current.$$listenerCount[name] -= count;
+
+               if (current.$$listenerCount[name] === 0) {
+                 delete current.$$listenerCount[name];
+               }
+             } while ((current = current.$parent));
+           }
+
+           /**
+            * function used as an initial value for watchers.
+            * because it's unique we can easily tell it apart from other values
+            */
+           function initWatchVal() {}
+
+           function flushApplyAsync() {
+             while (applyAsyncQueue.length) {
+               try {
+                 applyAsyncQueue.shift()();
+               } catch (e) {
+                 $exceptionHandler(e);
+               }
+             }
+             applyAsyncId = null;
+           }
+
+           function scheduleApplyAsync() {
+             if (applyAsyncId === null) {
+               applyAsyncId = $browser.defer(function() {
+                 $rootScope.$apply(flushApplyAsync);
+               });
+             }
+           }
+         }];
+       }
+
+       /**
+        * @description
+        * Private service to sanitize uris for links and images. Used by $compile and $sanitize.
+        */
+       function $$SanitizeUriProvider() {
+         var aHrefSanitizationWhitelist = /^\s*(https?|ftp|mailto|tel|file):/,
+           imgSrcSanitizationWhitelist = /^\s*((https?|ftp|file|blob):|data:image\/)/;
+
+         /**
+          * @description
+          * Retrieves or overrides the default regular expression that is used for whitelisting of safe
+          * urls during a[href] sanitization.
+          *
+          * The sanitization is a security measure aimed at prevent XSS attacks via html links.
+          *
+          * Any url about to be assigned to a[href] via data-binding is first normalized and turned into
+          * an absolute url. Afterwards, the url is matched against the `aHrefSanitizationWhitelist`
+          * regular expression. If a match is found, the original url is written into the dom. Otherwise,
+          * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM.
+          *
+          * @param {RegExp=} regexp New regexp to whitelist urls with.
+          * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for
+          *    chaining otherwise.
+          */
+         this.aHrefSanitizationWhitelist = function(regexp) {
+           if (isDefined(regexp)) {
+             aHrefSanitizationWhitelist = regexp;
+             return this;
+           }
+           return aHrefSanitizationWhitelist;
+         };
+
+
+         /**
+          * @description
+          * Retrieves or overrides the default regular expression that is used for whitelisting of safe
+          * urls during img[src] sanitization.
+          *
+          * The sanitization is a security measure aimed at prevent XSS attacks via html links.
+          *
+          * Any url about to be assigned to img[src] via data-binding is first normalized and turned into
+          * an absolute url. Afterwards, the url is matched against the `imgSrcSanitizationWhitelist`
+          * regular expression. If a match is found, the original url is written into the dom. Otherwise,
+          * the absolute url is prefixed with `'unsafe:'` string and only then is it written into the DOM.
+          *
+          * @param {RegExp=} regexp New regexp to whitelist urls with.
+          * @returns {RegExp|ng.$compileProvider} Current RegExp if called without value or self for
+          *    chaining otherwise.
+          */
+         this.imgSrcSanitizationWhitelist = function(regexp) {
+           if (isDefined(regexp)) {
+             imgSrcSanitizationWhitelist = regexp;
+             return this;
+           }
+           return imgSrcSanitizationWhitelist;
+         };
+
+         this.$get = function() {
+           return function sanitizeUri(uri, isImage) {
+             var regex = isImage ? imgSrcSanitizationWhitelist : aHrefSanitizationWhitelist;
+             var normalizedVal;
+             normalizedVal = urlResolve(uri).href;
+             if (normalizedVal !== '' && !normalizedVal.match(regex)) {
+               return 'unsafe:' + normalizedVal;
+             }
+             return uri;
+           };
+         };
+       }
+
+       /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+        *     Any commits to this file should be reviewed with security in mind.  *
+        *   Changes to this file can potentially create security vulnerabilities. *
+        *          An approval from 2 Core members with history of modifying      *
+        *                         this file is required.                          *
+        *                                                                         *
+        *  Does the change somehow allow for arbitrary javascript to be executed? *
+        *    Or allows for someone to change the prototype of built-in objects?   *
+        *     Or gives undesired access to variables likes document or window?    *
+        * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+       var $sceMinErr = minErr('$sce');
+
+       var SCE_CONTEXTS = {
+         HTML: 'html',
+         CSS: 'css',
+         URL: 'url',
+         // RESOURCE_URL is a subtype of URL used in contexts where a privileged resource is sourced from a
+         // url.  (e.g. ng-include, script src, templateUrl)
+         RESOURCE_URL: 'resourceUrl',
+         JS: 'js'
+       };
+
+       // Helper functions follow.
+
+       function adjustMatcher(matcher) {
+         if (matcher === 'self') {
+           return matcher;
+         } else if (isString(matcher)) {
+           // Strings match exactly except for 2 wildcards - '*' and '**'.
+           // '*' matches any character except those from the set ':/.?&'.
+           // '**' matches any character (like .* in a RegExp).
+           // More than 2 *'s raises an error as it's ill defined.
+           if (matcher.indexOf('***') > -1) {
+             throw $sceMinErr('iwcard',
+                 'Illegal sequence *** in string matcher.  String: {0}', matcher);
+           }
+           matcher = escapeForRegexp(matcher).
+                         replace('\\*\\*', '.*').
+                         replace('\\*', '[^:/.?&;]*');
+           return new RegExp('^' + matcher + '$');
+         } else if (isRegExp(matcher)) {
+           // The only other type of matcher allowed is a Regexp.
+           // Match entire URL / disallow partial matches.
+           // Flags are reset (i.e. no global, ignoreCase or multiline)
+           return new RegExp('^' + matcher.source + '$');
+         } else {
+           throw $sceMinErr('imatcher',
+               'Matchers may only be "self", string patterns or RegExp objects');
+         }
+       }
+
+
+       function adjustMatchers(matchers) {
+         var adjustedMatchers = [];
+         if (isDefined(matchers)) {
+           forEach(matchers, function(matcher) {
+             adjustedMatchers.push(adjustMatcher(matcher));
+           });
+         }
+         return adjustedMatchers;
+       }
+
+
+       /**
+        * @ngdoc service
+        * @name $sceDelegate
+        * @kind function
+        *
+        * @description
+        *
+        * `$sceDelegate` is a service that is used by the `$sce` service to provide {@link ng.$sce Strict
+        * Contextual Escaping (SCE)} services to AngularJS.
+        *
+        * Typically, you would configure or override the {@link ng.$sceDelegate $sceDelegate} instead of
+        * the `$sce` service to customize the way Strict Contextual Escaping works in AngularJS.  This is
+        * because, while the `$sce` provides numerous shorthand methods, etc., you really only need to
+        * override 3 core functions (`trustAs`, `getTrusted` and `valueOf`) to replace the way things
+        * work because `$sce` delegates to `$sceDelegate` for these operations.
+        *
+        * Refer {@link ng.$sceDelegateProvider $sceDelegateProvider} to configure this service.
+        *
+        * The default instance of `$sceDelegate` should work out of the box with little pain.  While you
+        * can override it completely to change the behavior of `$sce`, the common case would
+        * involve configuring the {@link ng.$sceDelegateProvider $sceDelegateProvider} instead by setting
+        * your own whitelists and blacklists for trusting URLs used for loading AngularJS resources such as
+        * templates.  Refer {@link ng.$sceDelegateProvider#resourceUrlWhitelist
+        * $sceDelegateProvider.resourceUrlWhitelist} and {@link
+        * ng.$sceDelegateProvider#resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist}
+        */
+
+       /**
+        * @ngdoc provider
+        * @name $sceDelegateProvider
+        * @description
+        *
+        * The `$sceDelegateProvider` provider allows developers to configure the {@link ng.$sceDelegate
+        * $sceDelegate} service.  This allows one to get/set the whitelists and blacklists used to ensure
+        * that the URLs used for sourcing Angular templates are safe.  Refer {@link
+        * ng.$sceDelegateProvider#resourceUrlWhitelist $sceDelegateProvider.resourceUrlWhitelist} and
+        * {@link ng.$sceDelegateProvider#resourceUrlBlacklist $sceDelegateProvider.resourceUrlBlacklist}
+        *
+        * For the general details about this service in Angular, read the main page for {@link ng.$sce
+        * Strict Contextual Escaping (SCE)}.
+        *
+        * **Example**:  Consider the following case. <a name="example"></a>
+        *
+        * - your app is hosted at url `http://myapp.example.com/`
+        * - but some of your templates are hosted on other domains you control such as
+        *   `http://srv01.assets.example.com/`,  `http://srv02.assets.example.com/`, etc.
+        * - and you have an open redirect at `http://myapp.example.com/clickThru?...`.
+        *
+        * Here is what a secure configuration for this scenario might look like:
+        *
+        * ```
+        *  angular.module('myApp', []).config(function($sceDelegateProvider) {
+        *    $sceDelegateProvider.resourceUrlWhitelist([
+        *      // Allow same origin resource loads.
+        *      'self',
+        *      // Allow loading from our assets domain.  Notice the difference between * and **.
+        *      'http://srv*.assets.example.com/**'
+        *    ]);
+        *
+        *    // The blacklist overrides the whitelist so the open redirect here is blocked.
+        *    $sceDelegateProvider.resourceUrlBlacklist([
+        *      'http://myapp.example.com/clickThru**'
+        *    ]);
+        *  });
+        * ```
+        */
+
+       function $SceDelegateProvider() {
+         this.SCE_CONTEXTS = SCE_CONTEXTS;
+
+         // Resource URLs can also be trusted by policy.
+         var resourceUrlWhitelist = ['self'],
+             resourceUrlBlacklist = [];
+
+         /**
+          * @ngdoc method
+          * @name $sceDelegateProvider#resourceUrlWhitelist
+          * @kind function
+          *
+          * @param {Array=} whitelist When provided, replaces the resourceUrlWhitelist with the value
+          *     provided.  This must be an array or null.  A snapshot of this array is used so further
+          *     changes to the array are ignored.
+          *
+          *     Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items
+          *     allowed in this array.
+          *
+          *     Note: **an empty whitelist array will block all URLs**!
+          *
+          * @return {Array} the currently set whitelist array.
+          *
+          * The **default value** when no whitelist has been explicitly set is `['self']` allowing only
+          * same origin resource requests.
+          *
+          * @description
+          * Sets/Gets the whitelist of trusted resource URLs.
+          */
+         this.resourceUrlWhitelist = function(value) {
+           if (arguments.length) {
+             resourceUrlWhitelist = adjustMatchers(value);
+           }
+           return resourceUrlWhitelist;
+         };
+
+         /**
+          * @ngdoc method
+          * @name $sceDelegateProvider#resourceUrlBlacklist
+          * @kind function
+          *
+          * @param {Array=} blacklist When provided, replaces the resourceUrlBlacklist with the value
+          *     provided.  This must be an array or null.  A snapshot of this array is used so further
+          *     changes to the array are ignored.
+          *
+          *     Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items
+          *     allowed in this array.
+          *
+          *     The typical usage for the blacklist is to **block
+          *     [open redirects](http://cwe.mitre.org/data/definitions/601.html)** served by your domain as
+          *     these would otherwise be trusted but actually return content from the redirected domain.
+          *
+          *     Finally, **the blacklist overrides the whitelist** and has the final say.
+          *
+          * @return {Array} the currently set blacklist array.
+          *
+          * The **default value** when no whitelist has been explicitly set is the empty array (i.e. there
+          * is no blacklist.)
+          *
+          * @description
+          * Sets/Gets the blacklist of trusted resource URLs.
+          */
+
+         this.resourceUrlBlacklist = function(value) {
+           if (arguments.length) {
+             resourceUrlBlacklist = adjustMatchers(value);
+           }
+           return resourceUrlBlacklist;
+         };
+
+         this.$get = ['$injector', function($injector) {
+
+           var htmlSanitizer = function htmlSanitizer(html) {
+             throw $sceMinErr('unsafe', 'Attempting to use an unsafe value in a safe context.');
+           };
+
+           if ($injector.has('$sanitize')) {
+             htmlSanitizer = $injector.get('$sanitize');
+           }
+
+
+           function matchUrl(matcher, parsedUrl) {
+             if (matcher === 'self') {
+               return urlIsSameOrigin(parsedUrl);
+             } else {
+               // definitely a regex.  See adjustMatchers()
+               return !!matcher.exec(parsedUrl.href);
+             }
+           }
+
+           function isResourceUrlAllowedByPolicy(url) {
+             var parsedUrl = urlResolve(url.toString());
+             var i, n, allowed = false;
+             // Ensure that at least one item from the whitelist allows this url.
+             for (i = 0, n = resourceUrlWhitelist.length; i < n; i++) {
+               if (matchUrl(resourceUrlWhitelist[i], parsedUrl)) {
+                 allowed = true;
+                 break;
+               }
+             }
+             if (allowed) {
+               // Ensure that no item from the blacklist blocked this url.
+               for (i = 0, n = resourceUrlBlacklist.length; i < n; i++) {
+                 if (matchUrl(resourceUrlBlacklist[i], parsedUrl)) {
+                   allowed = false;
+                   break;
+                 }
+               }
+             }
+             return allowed;
+           }
+
+           function generateHolderType(Base) {
+             var holderType = function TrustedValueHolderType(trustedValue) {
+               this.$$unwrapTrustedValue = function() {
+                 return trustedValue;
+               };
+             };
+             if (Base) {
+               holderType.prototype = new Base();
+             }
+             holderType.prototype.valueOf = function sceValueOf() {
+               return this.$$unwrapTrustedValue();
+             };
+             holderType.prototype.toString = function sceToString() {
+               return this.$$unwrapTrustedValue().toString();
+             };
+             return holderType;
+           }
+
+           var trustedValueHolderBase = generateHolderType(),
+               byType = {};
+
+           byType[SCE_CONTEXTS.HTML] = generateHolderType(trustedValueHolderBase);
+           byType[SCE_CONTEXTS.CSS] = generateHolderType(trustedValueHolderBase);
+           byType[SCE_CONTEXTS.URL] = generateHolderType(trustedValueHolderBase);
+           byType[SCE_CONTEXTS.JS] = generateHolderType(trustedValueHolderBase);
+           byType[SCE_CONTEXTS.RESOURCE_URL] = generateHolderType(byType[SCE_CONTEXTS.URL]);
+
+           /**
+            * @ngdoc method
+            * @name $sceDelegate#trustAs
+            *
+            * @description
+            * Returns an object that is trusted by angular for use in specified strict
+            * contextual escaping contexts (such as ng-bind-html, ng-include, any src
+            * attribute interpolation, any dom event binding attribute interpolation
+            * such as for onclick,  etc.) that uses the provided value.
+            * See {@link ng.$sce $sce} for enabling strict contextual escaping.
+            *
+            * @param {string} type The kind of context in which this value is safe for use.  e.g. url,
+            *   resourceUrl, html, js and css.
+            * @param {*} value The value that that should be considered trusted/safe.
+            * @returns {*} A value that can be used to stand in for the provided `value` in places
+            * where Angular expects a $sce.trustAs() return value.
+            */
+           function trustAs(type, trustedValue) {
+             var Constructor = (byType.hasOwnProperty(type) ? byType[type] : null);
+             if (!Constructor) {
+               throw $sceMinErr('icontext',
+                   'Attempted to trust a value in invalid context. Context: {0}; Value: {1}',
+                   type, trustedValue);
+             }
+             if (trustedValue === null || isUndefined(trustedValue) || trustedValue === '') {
+               return trustedValue;
+             }
+             // All the current contexts in SCE_CONTEXTS happen to be strings.  In order to avoid trusting
+             // mutable objects, we ensure here that the value passed in is actually a string.
+             if (typeof trustedValue !== 'string') {
+               throw $sceMinErr('itype',
+                   'Attempted to trust a non-string value in a content requiring a string: Context: {0}',
+                   type);
+             }
+             return new Constructor(trustedValue);
+           }
+
+           /**
+            * @ngdoc method
+            * @name $sceDelegate#valueOf
+            *
+            * @description
+            * If the passed parameter had been returned by a prior call to {@link ng.$sceDelegate#trustAs
+            * `$sceDelegate.trustAs`}, returns the value that had been passed to {@link
+            * ng.$sceDelegate#trustAs `$sceDelegate.trustAs`}.
+            *
+            * If the passed parameter is not a value that had been returned by {@link
+            * ng.$sceDelegate#trustAs `$sceDelegate.trustAs`}, returns it as-is.
+            *
+            * @param {*} value The result of a prior {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs`}
+            *      call or anything else.
+            * @returns {*} The `value` that was originally provided to {@link ng.$sceDelegate#trustAs
+            *     `$sceDelegate.trustAs`} if `value` is the result of such a call.  Otherwise, returns
+            *     `value` unchanged.
+            */
+           function valueOf(maybeTrusted) {
+             if (maybeTrusted instanceof trustedValueHolderBase) {
+               return maybeTrusted.$$unwrapTrustedValue();
+             } else {
+               return maybeTrusted;
+             }
+           }
+
+           /**
+            * @ngdoc method
+            * @name $sceDelegate#getTrusted
+            *
+            * @description
+            * Takes the result of a {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs`} call and
+            * returns the originally supplied value if the queried context type is a supertype of the
+            * created type.  If this condition isn't satisfied, throws an exception.
+            *
+            * @param {string} type The kind of context in which this value is to be used.
+            * @param {*} maybeTrusted The result of a prior {@link ng.$sceDelegate#trustAs
+            *     `$sceDelegate.trustAs`} call.
+            * @returns {*} The value the was originally provided to {@link ng.$sceDelegate#trustAs
+            *     `$sceDelegate.trustAs`} if valid in this context.  Otherwise, throws an exception.
+            */
+           function getTrusted(type, maybeTrusted) {
+             if (maybeTrusted === null || isUndefined(maybeTrusted) || maybeTrusted === '') {
+               return maybeTrusted;
+             }
+             var constructor = (byType.hasOwnProperty(type) ? byType[type] : null);
+             if (constructor && maybeTrusted instanceof constructor) {
+               return maybeTrusted.$$unwrapTrustedValue();
+             }
+             // If we get here, then we may only take one of two actions.
+             // 1. sanitize the value for the requested type, or
+             // 2. throw an exception.
+             if (type === SCE_CONTEXTS.RESOURCE_URL) {
+               if (isResourceUrlAllowedByPolicy(maybeTrusted)) {
+                 return maybeTrusted;
+               } else {
+                 throw $sceMinErr('insecurl',
+                     'Blocked loading resource from url not allowed by $sceDelegate policy.  URL: {0}',
+                     maybeTrusted.toString());
+               }
+             } else if (type === SCE_CONTEXTS.HTML) {
+               return htmlSanitizer(maybeTrusted);
+             }
+             throw $sceMinErr('unsafe', 'Attempting to use an unsafe value in a safe context.');
+           }
+
+           return { trustAs: trustAs,
+                    getTrusted: getTrusted,
+                    valueOf: valueOf };
+         }];
+       }
+
+
+       /**
+        * @ngdoc provider
+        * @name $sceProvider
+        * @description
+        *
+        * The $sceProvider provider allows developers to configure the {@link ng.$sce $sce} service.
+        * -   enable/disable Strict Contextual Escaping (SCE) in a module
+        * -   override the default implementation with a custom delegate
+        *
+        * Read more about {@link ng.$sce Strict Contextual Escaping (SCE)}.
+        */
+
+       /* jshint maxlen: false*/
+
+       /**
+        * @ngdoc service
+        * @name $sce
+        * @kind function
+        *
+        * @description
+        *
+        * `$sce` is a service that provides Strict Contextual Escaping services to AngularJS.
+        *
+        * # Strict Contextual Escaping
+        *
+        * Strict Contextual Escaping (SCE) is a mode in which AngularJS requires bindings in certain
+        * contexts to result in a value that is marked as safe to use for that context.  One example of
+        * such a context is binding arbitrary html controlled by the user via `ng-bind-html`.  We refer
+        * to these contexts as privileged or SCE contexts.
+        *
+        * As of version 1.2, Angular ships with SCE enabled by default.
+        *
+        * Note:  When enabled (the default), IE<11 in quirks mode is not supported.  In this mode, IE<11 allow
+        * one to execute arbitrary javascript by the use of the expression() syntax.  Refer
+        * <http://blogs.msdn.com/b/ie/archive/2008/10/16/ending-expressions.aspx> to learn more about them.
+        * You can ensure your document is in standards mode and not quirks mode by adding `<!doctype html>`
+        * to the top of your HTML document.
+        *
+        * SCE assists in writing code in way that (a) is secure by default and (b) makes auditing for
+        * security vulnerabilities such as XSS, clickjacking, etc. a lot easier.
+        *
+        * Here's an example of a binding in a privileged context:
+        *
+        * ```
+        * <input ng-model="userHtml" aria-label="User input">
+        * <div ng-bind-html="userHtml"></div>
+        * ```
+        *
+        * Notice that `ng-bind-html` is bound to `userHtml` controlled by the user.  With SCE
+        * disabled, this application allows the user to render arbitrary HTML into the DIV.
+        * In a more realistic example, one may be rendering user comments, blog articles, etc. via
+        * bindings.  (HTML is just one example of a context where rendering user controlled input creates
+        * security vulnerabilities.)
+        *
+        * For the case of HTML, you might use a library, either on the client side, or on the server side,
+        * to sanitize unsafe HTML before binding to the value and rendering it in the document.
+        *
+        * How would you ensure that every place that used these types of bindings was bound to a value that
+        * was sanitized by your library (or returned as safe for rendering by your server?)  How can you
+        * ensure that you didn't accidentally delete the line that sanitized the value, or renamed some
+        * properties/fields and forgot to update the binding to the sanitized value?
+        *
+        * To be secure by default, you want to ensure that any such bindings are disallowed unless you can
+        * determine that something explicitly says it's safe to use a value for binding in that
+        * context.  You can then audit your code (a simple grep would do) to ensure that this is only done
+        * for those values that you can easily tell are safe - because they were received from your server,
+        * sanitized by your library, etc.  You can organize your codebase to help with this - perhaps
+        * allowing only the files in a specific directory to do this.  Ensuring that the internal API
+        * exposed by that code doesn't markup arbitrary values as safe then becomes a more manageable task.
+        *
+        * In the case of AngularJS' SCE service, one uses {@link ng.$sce#trustAs $sce.trustAs}
+        * (and shorthand methods such as {@link ng.$sce#trustAsHtml $sce.trustAsHtml}, etc.) to
+        * obtain values that will be accepted by SCE / privileged contexts.
+        *
+        *
+        * ## How does it work?
+        *
+        * In privileged contexts, directives and code will bind to the result of {@link ng.$sce#getTrusted
+        * $sce.getTrusted(context, value)} rather than to the value directly.  Directives use {@link
+        * ng.$sce#parseAs $sce.parseAs} rather than `$parse` to watch attribute bindings, which performs the
+        * {@link ng.$sce#getTrusted $sce.getTrusted} behind the scenes on non-constant literals.
+        *
+        * As an example, {@link ng.directive:ngBindHtml ngBindHtml} uses {@link
+        * ng.$sce#parseAsHtml $sce.parseAsHtml(binding expression)}.  Here's the actual code (slightly
+        * simplified):
+        *
+        * ```
+        * var ngBindHtmlDirective = ['$sce', function($sce) {
+        *   return function(scope, element, attr) {
+        *     scope.$watch($sce.parseAsHtml(attr.ngBindHtml), function(value) {
+        *       element.html(value || '');
+        *     });
+        *   };
+        * }];
+        * ```
+        *
+        * ## Impact on loading templates
+        *
+        * This applies both to the {@link ng.directive:ngInclude `ng-include`} directive as well as
+        * `templateUrl`'s specified by {@link guide/directive directives}.
+        *
+        * By default, Angular only loads templates from the same domain and protocol as the application
+        * document.  This is done by calling {@link ng.$sce#getTrustedResourceUrl
+        * $sce.getTrustedResourceUrl} on the template URL.  To load templates from other domains and/or
+        * protocols, you may either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist
+        * them} or {@link ng.$sce#trustAsResourceUrl wrap it} into a trusted value.
+        *
+        * *Please note*:
+        * The browser's
+        * [Same Origin Policy](https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest)
+        * and [Cross-Origin Resource Sharing (CORS)](http://www.w3.org/TR/cors/)
+        * policy apply in addition to this and may further restrict whether the template is successfully
+        * loaded.  This means that without the right CORS policy, loading templates from a different domain
+        * won't work on all browsers.  Also, loading templates from `file://` URL does not work on some
+        * browsers.
+        *
+        * ## This feels like too much overhead
+        *
+        * It's important to remember that SCE only applies to interpolation expressions.
+        *
+        * If your expressions are constant literals, they're automatically trusted and you don't need to
+        * call `$sce.trustAs` on them (remember to include the `ngSanitize` module) (e.g.
+        * `<div ng-bind-html="'<b>implicitly trusted</b>'"></div>`) just works.
+        *
+        * Additionally, `a[href]` and `img[src]` automatically sanitize their URLs and do not pass them
+        * through {@link ng.$sce#getTrusted $sce.getTrusted}.  SCE doesn't play a role here.
+        *
+        * The included {@link ng.$sceDelegate $sceDelegate} comes with sane defaults to allow you to load
+        * templates in `ng-include` from your application's domain without having to even know about SCE.
+        * It blocks loading templates from other domains or loading templates over http from an https
+        * served document.  You can change these by setting your own custom {@link
+        * ng.$sceDelegateProvider#resourceUrlWhitelist whitelists} and {@link
+        * ng.$sceDelegateProvider#resourceUrlBlacklist blacklists} for matching such URLs.
+        *
+        * This significantly reduces the overhead.  It is far easier to pay the small overhead and have an
+        * application that's secure and can be audited to verify that with much more ease than bolting
+        * security onto an application later.
+        *
+        * <a name="contexts"></a>
+        * ## What trusted context types are supported?
+        *
+        * | Context             | Notes          |
+        * |---------------------|----------------|
+        * | `$sce.HTML`         | For HTML that's safe to source into the application.  The {@link ng.directive:ngBindHtml ngBindHtml} directive uses this context for bindings. If an unsafe value is encountered and the {@link ngSanitize $sanitize} module is present this will sanitize the value instead of throwing an error. |
+        * | `$sce.CSS`          | For CSS that's safe to source into the application.  Currently unused.  Feel free to use it in your own directives. |
+        * | `$sce.URL`          | For URLs that are safe to follow as links.  Currently unused (`<a href=` and `<img src=` sanitize their urls and don't constitute an SCE context. |
+        * | `$sce.RESOURCE_URL` | For URLs that are not only safe to follow as links, but whose contents are also safe to include in your application.  Examples include `ng-include`, `src` / `ngSrc` bindings for tags other than `IMG` (e.g. `IFRAME`, `OBJECT`, etc.)  <br><br>Note that `$sce.RESOURCE_URL` makes a stronger statement about the URL than `$sce.URL` does and therefore contexts requiring values trusted for `$sce.RESOURCE_URL` can be used anywhere that values trusted for `$sce.URL` are required. |
+        * | `$sce.JS`           | For JavaScript that is safe to execute in your application's context.  Currently unused.  Feel free to use it in your own directives. |
+        *
+        * ## Format of items in {@link ng.$sceDelegateProvider#resourceUrlWhitelist resourceUrlWhitelist}/{@link ng.$sceDelegateProvider#resourceUrlBlacklist Blacklist} <a name="resourceUrlPatternItem"></a>
+        *
+        *  Each element in these arrays must be one of the following:
+        *
+        *  - **'self'**
+        *    - The special **string**, `'self'`, can be used to match against all URLs of the **same
+        *      domain** as the application document using the **same protocol**.
+        *  - **String** (except the special value `'self'`)
+        *    - The string is matched against the full *normalized / absolute URL* of the resource
+        *      being tested (substring matches are not good enough.)
+        *    - There are exactly **two wildcard sequences** - `*` and `**`.  All other characters
+        *      match themselves.
+        *    - `*`: matches zero or more occurrences of any character other than one of the following 6
+        *      characters: '`:`', '`/`', '`.`', '`?`', '`&`' and '`;`'.  It's a useful wildcard for use
+        *      in a whitelist.
+        *    - `**`: matches zero or more occurrences of *any* character.  As such, it's not
+        *      appropriate for use in a scheme, domain, etc. as it would match too much.  (e.g.
+        *      http://**.example.com/ would match http://evil.com/?ignore=.example.com/ and that might
+        *      not have been the intention.)  Its usage at the very end of the path is ok.  (e.g.
+        *      http://foo.example.com/templates/**).
+        *  - **RegExp** (*see caveat below*)
+        *    - *Caveat*:  While regular expressions are powerful and offer great flexibility,  their syntax
+        *      (and all the inevitable escaping) makes them *harder to maintain*.  It's easy to
+        *      accidentally introduce a bug when one updates a complex expression (imho, all regexes should
+        *      have good test coverage).  For instance, the use of `.` in the regex is correct only in a
+        *      small number of cases.  A `.` character in the regex used when matching the scheme or a
+        *      subdomain could be matched against a `:` or literal `.` that was likely not intended.   It
+        *      is highly recommended to use the string patterns and only fall back to regular expressions
+        *      as a last resort.
+        *    - The regular expression must be an instance of RegExp (i.e. not a string.)  It is
+        *      matched against the **entire** *normalized / absolute URL* of the resource being tested
+        *      (even when the RegExp did not have the `^` and `$` codes.)  In addition, any flags
+        *      present on the RegExp (such as multiline, global, ignoreCase) are ignored.
+        *    - If you are generating your JavaScript from some other templating engine (not
+        *      recommended, e.g. in issue [#4006](https://github.com/angular/angular.js/issues/4006)),
+        *      remember to escape your regular expression (and be aware that you might need more than
+        *      one level of escaping depending on your templating engine and the way you interpolated
+        *      the value.)  Do make use of your platform's escaping mechanism as it might be good
+        *      enough before coding your own.  E.g. Ruby has
+        *      [Regexp.escape(str)](http://www.ruby-doc.org/core-2.0.0/Regexp.html#method-c-escape)
+        *      and Python has [re.escape](http://docs.python.org/library/re.html#re.escape).
+        *      Javascript lacks a similar built in function for escaping.  Take a look at Google
+        *      Closure library's [goog.string.regExpEscape(s)](
+        *      http://docs.closure-library.googlecode.com/git/closure_goog_string_string.js.source.html#line962).
+        *
+        * Refer {@link ng.$sceDelegateProvider $sceDelegateProvider} for an example.
+        *
+        * ## Show me an example using SCE.
+        *
+        * <example module="mySceApp" deps="angular-sanitize.js">
+        * <file name="index.html">
+        *   <div ng-controller="AppController as myCtrl">
+        *     <i ng-bind-html="myCtrl.explicitlyTrustedHtml" id="explicitlyTrustedHtml"></i><br><br>
+        *     <b>User comments</b><br>
+        *     By default, HTML that isn't explicitly trusted (e.g. Alice's comment) is sanitized when
+        *     $sanitize is available.  If $sanitize isn't available, this results in an error instead of an
+        *     exploit.
+        *     <div class="well">
+        *       <div ng-repeat="userComment in myCtrl.userComments">
+        *         <b>{{userComment.name}}</b>:
+        *         <span ng-bind-html="userComment.htmlComment" class="htmlComment"></span>
+        *         <br>
+        *       </div>
+        *     </div>
+        *   </div>
+        * </file>
+        *
+        * <file name="script.js">
+        *   angular.module('mySceApp', ['ngSanitize'])
+        *     .controller('AppController', ['$http', '$templateCache', '$sce',
+        *       function($http, $templateCache, $sce) {
+        *         var self = this;
+        *         $http.get("test_data.json", {cache: $templateCache}).success(function(userComments) {
+        *           self.userComments = userComments;
+        *         });
+        *         self.explicitlyTrustedHtml = $sce.trustAsHtml(
+        *             '<span onmouseover="this.textContent=&quot;Explicitly trusted HTML bypasses ' +
+        *             'sanitization.&quot;">Hover over this text.</span>');
+        *       }]);
+        * </file>
+        *
+        * <file name="test_data.json">
+        * [
+        *   { "name": "Alice",
+        *     "htmlComment":
+        *         "<span onmouseover='this.textContent=\"PWN3D!\"'>Is <i>anyone</i> reading this?</span>"
+        *   },
+        *   { "name": "Bob",
+        *     "htmlComment": "<i>Yes!</i>  Am I the only other one?"
+        *   }
+        * ]
+        * </file>
+        *
+        * <file name="protractor.js" type="protractor">
+        *   describe('SCE doc demo', function() {
+        *     it('should sanitize untrusted values', function() {
+        *       expect(element.all(by.css('.htmlComment')).first().getInnerHtml())
+        *           .toBe('<span>Is <i>anyone</i> reading this?</span>');
+        *     });
+        *
+        *     it('should NOT sanitize explicitly trusted values', function() {
+        *       expect(element(by.id('explicitlyTrustedHtml')).getInnerHtml()).toBe(
+        *           '<span onmouseover="this.textContent=&quot;Explicitly trusted HTML bypasses ' +
+        *           'sanitization.&quot;">Hover over this text.</span>');
+        *     });
+        *   });
+        * </file>
+        * </example>
+        *
+        *
+        *
+        * ## Can I disable SCE completely?
+        *
+        * Yes, you can.  However, this is strongly discouraged.  SCE gives you a lot of security benefits
+        * for little coding overhead.  It will be much harder to take an SCE disabled application and
+        * either secure it on your own or enable SCE at a later stage.  It might make sense to disable SCE
+        * for cases where you have a lot of existing code that was written before SCE was introduced and
+        * you're migrating them a module at a time.
+        *
+        * That said, here's how you can completely disable SCE:
+        *
+        * ```
+        * angular.module('myAppWithSceDisabledmyApp', []).config(function($sceProvider) {
+        *   // Completely disable SCE.  For demonstration purposes only!
+        *   // Do not use in new projects.
+        *   $sceProvider.enabled(false);
+        * });
+        * ```
+        *
+        */
+       /* jshint maxlen: 100 */
+
+       function $SceProvider() {
+         var enabled = true;
+
+         /**
+          * @ngdoc method
+          * @name $sceProvider#enabled
+          * @kind function
+          *
+          * @param {boolean=} value If provided, then enables/disables SCE.
+          * @return {boolean} true if SCE is enabled, false otherwise.
+          *
+          * @description
+          * Enables/disables SCE and returns the current value.
+          */
+         this.enabled = function(value) {
+           if (arguments.length) {
+             enabled = !!value;
+           }
+           return enabled;
+         };
+
+
+         /* Design notes on the default implementation for SCE.
+          *
+          * The API contract for the SCE delegate
+          * -------------------------------------
+          * The SCE delegate object must provide the following 3 methods:
+          *
+          * - trustAs(contextEnum, value)
+          *     This method is used to tell the SCE service that the provided value is OK to use in the
+          *     contexts specified by contextEnum.  It must return an object that will be accepted by
+          *     getTrusted() for a compatible contextEnum and return this value.
+          *
+          * - valueOf(value)
+          *     For values that were not produced by trustAs(), return them as is.  For values that were
+          *     produced by trustAs(), return the corresponding input value to trustAs.  Basically, if
+          *     trustAs is wrapping the given values into some type, this operation unwraps it when given
+          *     such a value.
+          *
+          * - getTrusted(contextEnum, value)
+          *     This function should return the a value that is safe to use in the context specified by
+          *     contextEnum or throw and exception otherwise.
+          *
+          * NOTE: This contract deliberately does NOT state that values returned by trustAs() must be
+          * opaque or wrapped in some holder object.  That happens to be an implementation detail.  For
+          * instance, an implementation could maintain a registry of all trusted objects by context.  In
+          * such a case, trustAs() would return the same object that was passed in.  getTrusted() would
+          * return the same object passed in if it was found in the registry under a compatible context or
+          * throw an exception otherwise.  An implementation might only wrap values some of the time based
+          * on some criteria.  getTrusted() might return a value and not throw an exception for special
+          * constants or objects even if not wrapped.  All such implementations fulfill this contract.
+          *
+          *
+          * A note on the inheritance model for SCE contexts
+          * ------------------------------------------------
+          * I've used inheritance and made RESOURCE_URL wrapped types a subtype of URL wrapped types.  This
+          * is purely an implementation details.
+          *
+          * The contract is simply this:
+          *
+          *     getTrusted($sce.RESOURCE_URL, value) succeeding implies that getTrusted($sce.URL, value)
+          *     will also succeed.
+          *
+          * Inheritance happens to capture this in a natural way.  In some future, we
+          * may not use inheritance anymore.  That is OK because no code outside of
+          * sce.js and sceSpecs.js would need to be aware of this detail.
+          */
+
+         this.$get = ['$parse', '$sceDelegate', function(
+                       $parse,   $sceDelegate) {
+           // Prereq: Ensure that we're not running in IE<11 quirks mode.  In that mode, IE < 11 allow
+           // the "expression(javascript expression)" syntax which is insecure.
+           if (enabled && msie < 8) {
+             throw $sceMinErr('iequirks',
+               'Strict Contextual Escaping does not support Internet Explorer version < 11 in quirks ' +
+               'mode.  You can fix this by adding the text <!doctype html> to the top of your HTML ' +
+               'document.  See http://docs.angularjs.org/api/ng.$sce for more information.');
+           }
+
+           var sce = shallowCopy(SCE_CONTEXTS);
+
+           /**
+            * @ngdoc method
+            * @name $sce#isEnabled
+            * @kind function
+            *
+            * @return {Boolean} true if SCE is enabled, false otherwise.  If you want to set the value, you
+            * have to do it at module config time on {@link ng.$sceProvider $sceProvider}.
+            *
+            * @description
+            * Returns a boolean indicating if SCE is enabled.
+            */
+           sce.isEnabled = function() {
+             return enabled;
+           };
+           sce.trustAs = $sceDelegate.trustAs;
+           sce.getTrusted = $sceDelegate.getTrusted;
+           sce.valueOf = $sceDelegate.valueOf;
+
+           if (!enabled) {
+             sce.trustAs = sce.getTrusted = function(type, value) { return value; };
+             sce.valueOf = identity;
+           }
+
+           /**
+            * @ngdoc method
+            * @name $sce#parseAs
+            *
+            * @description
+            * Converts Angular {@link guide/expression expression} into a function.  This is like {@link
+            * ng.$parse $parse} and is identical when the expression is a literal constant.  Otherwise, it
+            * wraps the expression in a call to {@link ng.$sce#getTrusted $sce.getTrusted(*type*,
+            * *result*)}
+            *
+            * @param {string} type The kind of SCE context in which this result will be used.
+            * @param {string} expression String expression to compile.
+            * @returns {function(context, locals)} a function which represents the compiled expression:
+            *
+            *    * `context` – `{object}` – an object against which any expressions embedded in the strings
+            *      are evaluated against (typically a scope object).
+            *    * `locals` – `{object=}` – local variables context object, useful for overriding values in
+            *      `context`.
+            */
+           sce.parseAs = function sceParseAs(type, expr) {
+             var parsed = $parse(expr);
+             if (parsed.literal && parsed.constant) {
+               return parsed;
+             } else {
+               return $parse(expr, function(value) {
+                 return sce.getTrusted(type, value);
+               });
+             }
+           };
+
+           /**
+            * @ngdoc method
+            * @name $sce#trustAs
+            *
+            * @description
+            * Delegates to {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs`}.  As such,
+            * returns an object that is trusted by angular for use in specified strict contextual
+            * escaping contexts (such as ng-bind-html, ng-include, any src attribute
+            * interpolation, any dom event binding attribute interpolation such as for onclick,  etc.)
+            * that uses the provided value.  See * {@link ng.$sce $sce} for enabling strict contextual
+            * escaping.
+            *
+            * @param {string} type The kind of context in which this value is safe for use.  e.g. url,
+            *   resourceUrl, html, js and css.
+            * @param {*} value The value that that should be considered trusted/safe.
+            * @returns {*} A value that can be used to stand in for the provided `value` in places
+            * where Angular expects a $sce.trustAs() return value.
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#trustAsHtml
+            *
+            * @description
+            * Shorthand method.  `$sce.trustAsHtml(value)` →
+            *     {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs($sce.HTML, value)`}
+            *
+            * @param {*} value The value to trustAs.
+            * @returns {*} An object that can be passed to {@link ng.$sce#getTrustedHtml
+            *     $sce.getTrustedHtml(value)} to obtain the original value.  (privileged directives
+            *     only accept expressions that are either literal constants or are the
+            *     return value of {@link ng.$sce#trustAs $sce.trustAs}.)
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#trustAsUrl
+            *
+            * @description
+            * Shorthand method.  `$sce.trustAsUrl(value)` →
+            *     {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs($sce.URL, value)`}
+            *
+            * @param {*} value The value to trustAs.
+            * @returns {*} An object that can be passed to {@link ng.$sce#getTrustedUrl
+            *     $sce.getTrustedUrl(value)} to obtain the original value.  (privileged directives
+            *     only accept expressions that are either literal constants or are the
+            *     return value of {@link ng.$sce#trustAs $sce.trustAs}.)
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#trustAsResourceUrl
+            *
+            * @description
+            * Shorthand method.  `$sce.trustAsResourceUrl(value)` →
+            *     {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs($sce.RESOURCE_URL, value)`}
+            *
+            * @param {*} value The value to trustAs.
+            * @returns {*} An object that can be passed to {@link ng.$sce#getTrustedResourceUrl
+            *     $sce.getTrustedResourceUrl(value)} to obtain the original value.  (privileged directives
+            *     only accept expressions that are either literal constants or are the return
+            *     value of {@link ng.$sce#trustAs $sce.trustAs}.)
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#trustAsJs
+            *
+            * @description
+            * Shorthand method.  `$sce.trustAsJs(value)` →
+            *     {@link ng.$sceDelegate#trustAs `$sceDelegate.trustAs($sce.JS, value)`}
+            *
+            * @param {*} value The value to trustAs.
+            * @returns {*} An object that can be passed to {@link ng.$sce#getTrustedJs
+            *     $sce.getTrustedJs(value)} to obtain the original value.  (privileged directives
+            *     only accept expressions that are either literal constants or are the
+            *     return value of {@link ng.$sce#trustAs $sce.trustAs}.)
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#getTrusted
+            *
+            * @description
+            * Delegates to {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted`}.  As such,
+            * takes the result of a {@link ng.$sce#trustAs `$sce.trustAs`}() call and returns the
+            * originally supplied value if the queried context type is a supertype of the created type.
+            * If this condition isn't satisfied, throws an exception.
+            *
+            * @param {string} type The kind of context in which this value is to be used.
+            * @param {*} maybeTrusted The result of a prior {@link ng.$sce#trustAs `$sce.trustAs`}
+            *                         call.
+            * @returns {*} The value the was originally provided to
+            *              {@link ng.$sce#trustAs `$sce.trustAs`} if valid in this context.
+            *              Otherwise, throws an exception.
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#getTrustedHtml
+            *
+            * @description
+            * Shorthand method.  `$sce.getTrustedHtml(value)` →
+            *     {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.HTML, value)`}
+            *
+            * @param {*} value The value to pass to `$sce.getTrusted`.
+            * @returns {*} The return value of `$sce.getTrusted($sce.HTML, value)`
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#getTrustedCss
+            *
+            * @description
+            * Shorthand method.  `$sce.getTrustedCss(value)` →
+            *     {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.CSS, value)`}
+            *
+            * @param {*} value The value to pass to `$sce.getTrusted`.
+            * @returns {*} The return value of `$sce.getTrusted($sce.CSS, value)`
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#getTrustedUrl
+            *
+            * @description
+            * Shorthand method.  `$sce.getTrustedUrl(value)` →
+            *     {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.URL, value)`}
+            *
+            * @param {*} value The value to pass to `$sce.getTrusted`.
+            * @returns {*} The return value of `$sce.getTrusted($sce.URL, value)`
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#getTrustedResourceUrl
+            *
+            * @description
+            * Shorthand method.  `$sce.getTrustedResourceUrl(value)` →
+            *     {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.RESOURCE_URL, value)`}
+            *
+            * @param {*} value The value to pass to `$sceDelegate.getTrusted`.
+            * @returns {*} The return value of `$sce.getTrusted($sce.RESOURCE_URL, value)`
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#getTrustedJs
+            *
+            * @description
+            * Shorthand method.  `$sce.getTrustedJs(value)` →
+            *     {@link ng.$sceDelegate#getTrusted `$sceDelegate.getTrusted($sce.JS, value)`}
+            *
+            * @param {*} value The value to pass to `$sce.getTrusted`.
+            * @returns {*} The return value of `$sce.getTrusted($sce.JS, value)`
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#parseAsHtml
+            *
+            * @description
+            * Shorthand method.  `$sce.parseAsHtml(expression string)` →
+            *     {@link ng.$sce#parseAs `$sce.parseAs($sce.HTML, value)`}
+            *
+            * @param {string} expression String expression to compile.
+            * @returns {function(context, locals)} a function which represents the compiled expression:
+            *
+            *    * `context` – `{object}` – an object against which any expressions embedded in the strings
+            *      are evaluated against (typically a scope object).
+            *    * `locals` – `{object=}` – local variables context object, useful for overriding values in
+            *      `context`.
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#parseAsCss
+            *
+            * @description
+            * Shorthand method.  `$sce.parseAsCss(value)` →
+            *     {@link ng.$sce#parseAs `$sce.parseAs($sce.CSS, value)`}
+            *
+            * @param {string} expression String expression to compile.
+            * @returns {function(context, locals)} a function which represents the compiled expression:
+            *
+            *    * `context` – `{object}` – an object against which any expressions embedded in the strings
+            *      are evaluated against (typically a scope object).
+            *    * `locals` – `{object=}` – local variables context object, useful for overriding values in
+            *      `context`.
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#parseAsUrl
+            *
+            * @description
+            * Shorthand method.  `$sce.parseAsUrl(value)` →
+            *     {@link ng.$sce#parseAs `$sce.parseAs($sce.URL, value)`}
+            *
+            * @param {string} expression String expression to compile.
+            * @returns {function(context, locals)} a function which represents the compiled expression:
+            *
+            *    * `context` – `{object}` – an object against which any expressions embedded in the strings
+            *      are evaluated against (typically a scope object).
+            *    * `locals` – `{object=}` – local variables context object, useful for overriding values in
+            *      `context`.
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#parseAsResourceUrl
+            *
+            * @description
+            * Shorthand method.  `$sce.parseAsResourceUrl(value)` →
+            *     {@link ng.$sce#parseAs `$sce.parseAs($sce.RESOURCE_URL, value)`}
+            *
+            * @param {string} expression String expression to compile.
+            * @returns {function(context, locals)} a function which represents the compiled expression:
+            *
+            *    * `context` – `{object}` – an object against which any expressions embedded in the strings
+            *      are evaluated against (typically a scope object).
+            *    * `locals` – `{object=}` – local variables context object, useful for overriding values in
+            *      `context`.
+            */
+
+           /**
+            * @ngdoc method
+            * @name $sce#parseAsJs
+            *
+            * @description
+            * Shorthand method.  `$sce.parseAsJs(value)` →
+            *     {@link ng.$sce#parseAs `$sce.parseAs($sce.JS, value)`}
+            *
+            * @param {string} expression String expression to compile.
+            * @returns {function(context, locals)} a function which represents the compiled expression:
+            *
+            *    * `context` – `{object}` – an object against which any expressions embedded in the strings
+            *      are evaluated against (typically a scope object).
+            *    * `locals` – `{object=}` – local variables context object, useful for overriding values in
+            *      `context`.
+            */
+
+           // Shorthand delegations.
+           var parse = sce.parseAs,
+               getTrusted = sce.getTrusted,
+               trustAs = sce.trustAs;
+
+           forEach(SCE_CONTEXTS, function(enumValue, name) {
+             var lName = lowercase(name);
+             sce[camelCase("parse_as_" + lName)] = function(expr) {
+               return parse(enumValue, expr);
+             };
+             sce[camelCase("get_trusted_" + lName)] = function(value) {
+               return getTrusted(enumValue, value);
+             };
+             sce[camelCase("trust_as_" + lName)] = function(value) {
+               return trustAs(enumValue, value);
+             };
+           });
+
+           return sce;
+         }];
+       }
+
+       /**
+        * !!! This is an undocumented "private" service !!!
+        *
+        * @name $sniffer
+        * @requires $window
+        * @requires $document
+        *
+        * @property {boolean} history Does the browser support html5 history api ?
+        * @property {boolean} transitions Does the browser support CSS transition events ?
+        * @property {boolean} animations Does the browser support CSS animation events ?
+        *
+        * @description
+        * This is very simple implementation of testing browser's features.
+        */
+       function $SnifferProvider() {
+         this.$get = ['$window', '$document', function($window, $document) {
+           var eventSupport = {},
+               android =
+                 toInt((/android (\d+)/.exec(lowercase(($window.navigator || {}).userAgent)) || [])[1]),
+               boxee = /Boxee/i.test(($window.navigator || {}).userAgent),
+               document = $document[0] || {},
+               vendorPrefix,
+               vendorRegex = /^(Moz|webkit|ms)(?=[A-Z])/,
+               bodyStyle = document.body && document.body.style,
+               transitions = false,
+               animations = false,
+               match;
+
+           if (bodyStyle) {
+             for (var prop in bodyStyle) {
+               if (match = vendorRegex.exec(prop)) {
+                 vendorPrefix = match[0];
+                 vendorPrefix = vendorPrefix.substr(0, 1).toUpperCase() + vendorPrefix.substr(1);
+                 break;
+               }
+             }
+
+             if (!vendorPrefix) {
+               vendorPrefix = ('WebkitOpacity' in bodyStyle) && 'webkit';
+             }
+
+             transitions = !!(('transition' in bodyStyle) || (vendorPrefix + 'Transition' in bodyStyle));
+             animations  = !!(('animation' in bodyStyle) || (vendorPrefix + 'Animation' in bodyStyle));
+
+             if (android && (!transitions ||  !animations)) {
+               transitions = isString(bodyStyle.webkitTransition);
+               animations = isString(bodyStyle.webkitAnimation);
+             }
+           }
+
+
+           return {
+             // Android has history.pushState, but it does not update location correctly
+             // so let's not use the history API at all.
+             // http://code.google.com/p/android/issues/detail?id=17471
+             // https://github.com/angular/angular.js/issues/904
+
+             // older webkit browser (533.9) on Boxee box has exactly the same problem as Android has
+             // so let's not use the history API also
+             // We are purposefully using `!(android < 4)` to cover the case when `android` is undefined
+             // jshint -W018
+             history: !!($window.history && $window.history.pushState && !(android < 4) && !boxee),
+             // jshint +W018
+             hasEvent: function(event) {
+               // IE9 implements 'input' event it's so fubared that we rather pretend that it doesn't have
+               // it. In particular the event is not fired when backspace or delete key are pressed or
+               // when cut operation is performed.
+               // IE10+ implements 'input' event but it erroneously fires under various situations,
+               // e.g. when placeholder changes, or a form is focused.
+               if (event === 'input' && msie <= 11) return false;
+
+               if (isUndefined(eventSupport[event])) {
+                 var divElm = document.createElement('div');
+                 eventSupport[event] = 'on' + event in divElm;
+               }
+
+               return eventSupport[event];
+             },
+             csp: csp(),
+             vendorPrefix: vendorPrefix,
+             transitions: transitions,
+             animations: animations,
+             android: android
+           };
+         }];
+       }
+
+       var $compileMinErr = minErr('$compile');
+
+       /**
+        * @ngdoc service
+        * @name $templateRequest
+        *
+        * @description
+        * The `$templateRequest` service runs security checks then downloads the provided template using
+        * `$http` and, upon success, stores the contents inside of `$templateCache`. If the HTTP request
+        * fails or the response data of the HTTP request is empty, a `$compile` error will be thrown (the
+        * exception can be thwarted by setting the 2nd parameter of the function to true). Note that the
+        * contents of `$templateCache` are trusted, so the call to `$sce.getTrustedUrl(tpl)` is omitted
+        * when `tpl` is of type string and `$templateCache` has the matching entry.
+        *
+        * @param {string|TrustedResourceUrl} tpl The HTTP request template URL
+        * @param {boolean=} ignoreRequestError Whether or not to ignore the exception when the request fails or the template is empty
+        *
+        * @return {Promise} a promise for the HTTP response data of the given URL.
+        *
+        * @property {number} totalPendingRequests total amount of pending template requests being downloaded.
+        */
+       function $TemplateRequestProvider() {
+         this.$get = ['$templateCache', '$http', '$q', '$sce', function($templateCache, $http, $q, $sce) {
+           function handleRequestFn(tpl, ignoreRequestError) {
+             handleRequestFn.totalPendingRequests++;
+
+             // We consider the template cache holds only trusted templates, so
+             // there's no need to go through whitelisting again for keys that already
+             // are included in there. This also makes Angular accept any script
+             // directive, no matter its name. However, we still need to unwrap trusted
+             // types.
+             if (!isString(tpl) || !$templateCache.get(tpl)) {
+               tpl = $sce.getTrustedResourceUrl(tpl);
+             }
+
+             var transformResponse = $http.defaults && $http.defaults.transformResponse;
+
+             if (isArray(transformResponse)) {
+               transformResponse = transformResponse.filter(function(transformer) {
+                 return transformer !== defaultHttpResponseTransform;
+               });
+             } else if (transformResponse === defaultHttpResponseTransform) {
+               transformResponse = null;
+             }
+
+             var httpOptions = {
+               cache: $templateCache,
+               transformResponse: transformResponse
+             };
+
+             return $http.get(tpl, httpOptions)
+               ['finally'](function() {
+                 handleRequestFn.totalPendingRequests--;
+               })
+               .then(function(response) {
+                 $templateCache.put(tpl, response.data);
+                 return response.data;
+               }, handleError);
+
+             function handleError(resp) {
+               if (!ignoreRequestError) {
+                 throw $compileMinErr('tpload', 'Failed to load template: {0} (HTTP status: {1} {2})',
+                   tpl, resp.status, resp.statusText);
+               }
+               return $q.reject(resp);
+             }
+           }
+
+           handleRequestFn.totalPendingRequests = 0;
+
+           return handleRequestFn;
+         }];
+       }
+
+       function $$TestabilityProvider() {
+         this.$get = ['$rootScope', '$browser', '$location',
+              function($rootScope,   $browser,   $location) {
+
+           /**
+            * @name $testability
+            *
+            * @description
+            * The private $$testability service provides a collection of methods for use when debugging
+            * or by automated test and debugging tools.
+            */
+           var testability = {};
+
+           /**
+            * @name $$testability#findBindings
+            *
+            * @description
+            * Returns an array of elements that are bound (via ng-bind or {{}})
+            * to expressions matching the input.
+            *
+            * @param {Element} element The element root to search from.
+            * @param {string} expression The binding expression to match.
+            * @param {boolean} opt_exactMatch If true, only returns exact matches
+            *     for the expression. Filters and whitespace are ignored.
+            */
+           testability.findBindings = function(element, expression, opt_exactMatch) {
+             var bindings = element.getElementsByClassName('ng-binding');
+             var matches = [];
+             forEach(bindings, function(binding) {
+               var dataBinding = angular.element(binding).data('$binding');
+               if (dataBinding) {
+                 forEach(dataBinding, function(bindingName) {
+                   if (opt_exactMatch) {
+                     var matcher = new RegExp('(^|\\s)' + escapeForRegexp(expression) + '(\\s|\\||$)');
+                     if (matcher.test(bindingName)) {
+                       matches.push(binding);
+                     }
+                   } else {
+                     if (bindingName.indexOf(expression) != -1) {
+                       matches.push(binding);
+                     }
+                   }
+                 });
+               }
+             });
+             return matches;
+           };
+
+           /**
+            * @name $$testability#findModels
+            *
+            * @description
+            * Returns an array of elements that are two-way found via ng-model to
+            * expressions matching the input.
+            *
+            * @param {Element} element The element root to search from.
+            * @param {string} expression The model expression to match.
+            * @param {boolean} opt_exactMatch If true, only returns exact matches
+            *     for the expression.
+            */
+           testability.findModels = function(element, expression, opt_exactMatch) {
+             var prefixes = ['ng-', 'data-ng-', 'ng\\:'];
+             for (var p = 0; p < prefixes.length; ++p) {
+               var attributeEquals = opt_exactMatch ? '=' : '*=';
+               var selector = '[' + prefixes[p] + 'model' + attributeEquals + '"' + expression + '"]';
+               var elements = element.querySelectorAll(selector);
+               if (elements.length) {
+                 return elements;
+               }
+             }
+           };
+
+           /**
+            * @name $$testability#getLocation
+            *
+            * @description
+            * Shortcut for getting the location in a browser agnostic way. Returns
+            *     the path, search, and hash. (e.g. /path?a=b#hash)
+            */
+           testability.getLocation = function() {
+             return $location.url();
+           };
+
+           /**
+            * @name $$testability#setLocation
+            *
+            * @description
+            * Shortcut for navigating to a location without doing a full page reload.
+            *
+            * @param {string} url The location url (path, search and hash,
+            *     e.g. /path?a=b#hash) to go to.
+            */
+           testability.setLocation = function(url) {
+             if (url !== $location.url()) {
+               $location.url(url);
+               $rootScope.$digest();
+             }
+           };
+
+           /**
+            * @name $$testability#whenStable
+            *
+            * @description
+            * Calls the callback when $timeout and $http requests are completed.
+            *
+            * @param {function} callback
+            */
+           testability.whenStable = function(callback) {
+             $browser.notifyWhenNoOutstandingRequests(callback);
+           };
+
+           return testability;
+         }];
+       }
+
+       function $TimeoutProvider() {
+         this.$get = ['$rootScope', '$browser', '$q', '$$q', '$exceptionHandler',
+              function($rootScope,   $browser,   $q,   $$q,   $exceptionHandler) {
+
+           var deferreds = {};
+
+
+            /**
+             * @ngdoc service
+             * @name $timeout
+             *
+             * @description
+             * Angular's wrapper for `window.setTimeout`. The `fn` function is wrapped into a try/catch
+             * block and delegates any exceptions to
+             * {@link ng.$exceptionHandler $exceptionHandler} service.
+             *
+             * The return value of calling `$timeout` is a promise, which will be resolved when
+             * the delay has passed and the timeout function, if provided, is executed.
+             *
+             * To cancel a timeout request, call `$timeout.cancel(promise)`.
+             *
+             * In tests you can use {@link ngMock.$timeout `$timeout.flush()`} to
+             * synchronously flush the queue of deferred functions.
+             *
+             * If you only want a promise that will be resolved after some specified delay
+             * then you can call `$timeout` without the `fn` function.
+             *
+             * @param {function()=} fn A function, whose execution should be delayed.
+             * @param {number=} [delay=0] Delay in milliseconds.
+             * @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise
+             *   will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block.
+             * @param {...*=} Pass additional parameters to the executed function.
+             * @returns {Promise} Promise that will be resolved when the timeout is reached. The value this
+             *   promise will be resolved with is the return value of the `fn` function.
+             *
+             */
+           function timeout(fn, delay, invokeApply) {
+             if (!isFunction(fn)) {
+               invokeApply = delay;
+               delay = fn;
+               fn = noop;
+             }
+
+             var args = sliceArgs(arguments, 3),
+                 skipApply = (isDefined(invokeApply) && !invokeApply),
+                 deferred = (skipApply ? $$q : $q).defer(),
+                 promise = deferred.promise,
+                 timeoutId;
+
+             timeoutId = $browser.defer(function() {
+               try {
+                 deferred.resolve(fn.apply(null, args));
+               } catch (e) {
+                 deferred.reject(e);
+                 $exceptionHandler(e);
+               }
+               finally {
+                 delete deferreds[promise.$$timeoutId];
+               }
+
+               if (!skipApply) $rootScope.$apply();
+             }, delay);
+
+             promise.$$timeoutId = timeoutId;
+             deferreds[timeoutId] = deferred;
+
+             return promise;
+           }
+
+
+            /**
+             * @ngdoc method
+             * @name $timeout#cancel
+             *
+             * @description
+             * Cancels a task associated with the `promise`. As a result of this, the promise will be
+             * resolved with a rejection.
+             *
+             * @param {Promise=} promise Promise returned by the `$timeout` function.
+             * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfully
+             *   canceled.
+             */
+           timeout.cancel = function(promise) {
+             if (promise && promise.$$timeoutId in deferreds) {
+               deferreds[promise.$$timeoutId].reject('canceled');
+               delete deferreds[promise.$$timeoutId];
+               return $browser.defer.cancel(promise.$$timeoutId);
+             }
+             return false;
+           };
+
+           return timeout;
+         }];
+       }
+
+       // NOTE:  The usage of window and document instead of $window and $document here is
+       // deliberate.  This service depends on the specific behavior of anchor nodes created by the
+       // browser (resolving and parsing URLs) that is unlikely to be provided by mock objects and
+       // cause us to break tests.  In addition, when the browser resolves a URL for XHR, it
+       // doesn't know about mocked locations and resolves URLs to the real document - which is
+       // exactly the behavior needed here.  There is little value is mocking these out for this
+       // service.
+       var urlParsingNode = document.createElement("a");
+       var originUrl = urlResolve(window.location.href);
+
+
+       /**
+        *
+        * Implementation Notes for non-IE browsers
+        * ----------------------------------------
+        * Assigning a URL to the href property of an anchor DOM node, even one attached to the DOM,
+        * results both in the normalizing and parsing of the URL.  Normalizing means that a relative
+        * URL will be resolved into an absolute URL in the context of the application document.
+        * Parsing means that the anchor node's host, hostname, protocol, port, pathname and related
+        * properties are all populated to reflect the normalized URL.  This approach has wide
+        * compatibility - Safari 1+, Mozilla 1+, Opera 7+,e etc.  See
+        * http://www.aptana.com/reference/html/api/HTMLAnchorElement.html
+        *
+        * Implementation Notes for IE
+        * ---------------------------
+        * IE <= 10 normalizes the URL when assigned to the anchor node similar to the other
+        * browsers.  However, the parsed components will not be set if the URL assigned did not specify
+        * them.  (e.g. if you assign a.href = "foo", then a.protocol, a.host, etc. will be empty.)  We
+        * work around that by performing the parsing in a 2nd step by taking a previously normalized
+        * URL (e.g. by assigning to a.href) and assigning it a.href again.  This correctly populates the
+        * properties such as protocol, hostname, port, etc.
+        *
+        * References:
+        *   http://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
+        *   http://www.aptana.com/reference/html/api/HTMLAnchorElement.html
+        *   http://url.spec.whatwg.org/#urlutils
+        *   https://github.com/angular/angular.js/pull/2902
+        *   http://james.padolsey.com/javascript/parsing-urls-with-the-dom/
+        *
+        * @kind function
+        * @param {string} url The URL to be parsed.
+        * @description Normalizes and parses a URL.
+        * @returns {object} Returns the normalized URL as a dictionary.
+        *
+        *   | member name   | Description    |
+        *   |---------------|----------------|
+        *   | href          | A normalized version of the provided URL if it was not an absolute URL |
+        *   | protocol      | The protocol including the trailing colon                              |
+        *   | host          | The host and port (if the port is non-default) of the normalizedUrl    |
+        *   | search        | The search params, minus the question mark                             |
+        *   | hash          | The hash string, minus the hash symbol
+        *   | hostname      | The hostname
+        *   | port          | The port, without ":"
+        *   | pathname      | The pathname, beginning with "/"
+        *
+        */
+       function urlResolve(url) {
+         var href = url;
+
+         if (msie) {
+           // Normalize before parse.  Refer Implementation Notes on why this is
+           // done in two steps on IE.
+           urlParsingNode.setAttribute("href", href);
+           href = urlParsingNode.href;
+         }
+
+         urlParsingNode.setAttribute('href', href);
+
+         // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils
+         return {
+           href: urlParsingNode.href,
+           protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',
+           host: urlParsingNode.host,
+           search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '',
+           hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',
+           hostname: urlParsingNode.hostname,
+           port: urlParsingNode.port,
+           pathname: (urlParsingNode.pathname.charAt(0) === '/')
+             ? urlParsingNode.pathname
+             : '/' + urlParsingNode.pathname
+         };
+       }
+
+       /**
+        * Parse a request URL and determine whether this is a same-origin request as the application document.
+        *
+        * @param {string|object} requestUrl The url of the request as a string that will be resolved
+        * or a parsed URL object.
+        * @returns {boolean} Whether the request is for the same origin as the application document.
+        */
+       function urlIsSameOrigin(requestUrl) {
+         var parsed = (isString(requestUrl)) ? urlResolve(requestUrl) : requestUrl;
+         return (parsed.protocol === originUrl.protocol &&
+                 parsed.host === originUrl.host);
+       }
+
+       /**
+        * @ngdoc service
+        * @name $window
+        *
+        * @description
+        * A reference to the browser's `window` object. While `window`
+        * is globally available in JavaScript, it causes testability problems, because
+        * it is a global variable. In angular we always refer to it through the
+        * `$window` service, so it may be overridden, removed or mocked for testing.
+        *
+        * Expressions, like the one defined for the `ngClick` directive in the example
+        * below, are evaluated with respect to the current scope.  Therefore, there is
+        * no risk of inadvertently coding in a dependency on a global value in such an
+        * expression.
+        *
+        * @example
+          <example module="windowExample">
+            <file name="index.html">
+              <script>
+                angular.module('windowExample', [])
+                  .controller('ExampleController', ['$scope', '$window', function($scope, $window) {
+                    $scope.greeting = 'Hello, World!';
+                    $scope.doGreeting = function(greeting) {
+                      $window.alert(greeting);
+                    };
+                  }]);
+              </script>
+              <div ng-controller="ExampleController">
+                <input type="text" ng-model="greeting" aria-label="greeting" />
+                <button ng-click="doGreeting(greeting)">ALERT</button>
+              </div>
+            </file>
+            <file name="protractor.js" type="protractor">
+             it('should display the greeting in the input box', function() {
+              element(by.model('greeting')).sendKeys('Hello, E2E Tests');
+              // If we click the button it will block the test runner
+              // element(':button').click();
+             });
+            </file>
+          </example>
+        */
+       function $WindowProvider() {
+         this.$get = valueFn(window);
+       }
+
+       /**
+        * @name $$cookieReader
+        * @requires $document
+        *
+        * @description
+        * This is a private service for reading cookies used by $http and ngCookies
+        *
+        * @return {Object} a key/value map of the current cookies
+        */
+       function $$CookieReader($document) {
+         var rawDocument = $document[0] || {};
+         var lastCookies = {};
+         var lastCookieString = '';
+
+         function safeDecodeURIComponent(str) {
+           try {
+             return decodeURIComponent(str);
+           } catch (e) {
+             return str;
+           }
+         }
+
+         return function() {
+           var cookieArray, cookie, i, index, name;
+           var currentCookieString = rawDocument.cookie || '';
+
+           if (currentCookieString !== lastCookieString) {
+             lastCookieString = currentCookieString;
+             cookieArray = lastCookieString.split('; ');
+             lastCookies = {};
+
+             for (i = 0; i < cookieArray.length; i++) {
+               cookie = cookieArray[i];
+               index = cookie.indexOf('=');
+               if (index > 0) { //ignore nameless cookies
+                 name = safeDecodeURIComponent(cookie.substring(0, index));
+                 // the first value that is seen for a cookie is the most
+                 // specific one.  values for the same cookie name that
+                 // follow are for less specific paths.
+                 if (isUndefined(lastCookies[name])) {
+                   lastCookies[name] = safeDecodeURIComponent(cookie.substring(index + 1));
+                 }
+               }
+             }
+           }
+           return lastCookies;
+         };
+       }
+
+       $$CookieReader.$inject = ['$document'];
+
+       function $$CookieReaderProvider() {
+         this.$get = $$CookieReader;
+       }
+
+       /* global currencyFilter: true,
+        dateFilter: true,
+        filterFilter: true,
+        jsonFilter: true,
+        limitToFilter: true,
+        lowercaseFilter: true,
+        numberFilter: true,
+        orderByFilter: true,
+        uppercaseFilter: true,
+        */
+
+       /**
+        * @ngdoc provider
+        * @name $filterProvider
+        * @description
+        *
+        * Filters are just functions which transform input to an output. However filters need to be
+        * Dependency Injected. To achieve this a filter definition consists of a factory function which is
+        * annotated with dependencies and is responsible for creating a filter function.
+        *
+        * <div class="alert alert-warning">
+        * **Note:** Filter names must be valid angular {@link expression} identifiers, such as `uppercase` or `orderBy`.
+        * Names with special characters, such as hyphens and dots, are not allowed. If you wish to namespace
+        * your filters, then you can use capitalization (`myappSubsectionFilterx`) or underscores
+        * (`myapp_subsection_filterx`).
+        * </div>
+        *
+        * ```js
+        *   // Filter registration
+        *   function MyModule($provide, $filterProvider) {
+        *     // create a service to demonstrate injection (not always needed)
+        *     $provide.value('greet', function(name){
+        *       return 'Hello ' + name + '!';
+        *     });
+        *
+        *     // register a filter factory which uses the
+        *     // greet service to demonstrate DI.
+        *     $filterProvider.register('greet', function(greet){
+        *       // return the filter function which uses the greet service
+        *       // to generate salutation
+        *       return function(text) {
+        *         // filters need to be forgiving so check input validity
+        *         return text && greet(text) || text;
+        *       };
+        *     });
+        *   }
+        * ```
+        *
+        * The filter function is registered with the `$injector` under the filter name suffix with
+        * `Filter`.
+        *
+        * ```js
+        *   it('should be the same instance', inject(
+        *     function($filterProvider) {
+        *       $filterProvider.register('reverse', function(){
+        *         return ...;
+        *       });
+        *     },
+        *     function($filter, reverseFilter) {
+        *       expect($filter('reverse')).toBe(reverseFilter);
+        *     });
+        * ```
+        *
+        *
+        * For more information about how angular filters work, and how to create your own filters, see
+        * {@link guide/filter Filters} in the Angular Developer Guide.
+        */
+
+       /**
+        * @ngdoc service
+        * @name $filter
+        * @kind function
+        * @description
+        * Filters are used for formatting data displayed to the user.
+        *
+        * The general syntax in templates is as follows:
+        *
+        *         {{ expression [| filter_name[:parameter_value] ... ] }}
+        *
+        * @param {String} name Name of the filter function to retrieve
+        * @return {Function} the filter function
+        * @example
+          <example name="$filter" module="filterExample">
+            <file name="index.html">
+              <div ng-controller="MainCtrl">
+               <h3>{{ originalText }}</h3>
+               <h3>{{ filteredText }}</h3>
+              </div>
+            </file>
+
+            <file name="script.js">
+             angular.module('filterExample', [])
+             .controller('MainCtrl', function($scope, $filter) {
+               $scope.originalText = 'hello';
+               $scope.filteredText = $filter('uppercase')($scope.originalText);
+             });
+            </file>
+          </example>
+         */
+       $FilterProvider.$inject = ['$provide'];
+       function $FilterProvider($provide) {
+         var suffix = 'Filter';
+
+         /**
+          * @ngdoc method
+          * @name $filterProvider#register
+          * @param {string|Object} name Name of the filter function, or an object map of filters where
+          *    the keys are the filter names and the values are the filter factories.
+          *
+          *    <div class="alert alert-warning">
+          *    **Note:** Filter names must be valid angular {@link expression} identifiers, such as `uppercase` or `orderBy`.
+          *    Names with special characters, such as hyphens and dots, are not allowed. If you wish to namespace
+          *    your filters, then you can use capitalization (`myappSubsectionFilterx`) or underscores
+          *    (`myapp_subsection_filterx`).
+          *    </div>
+           * @param {Function} factory If the first argument was a string, a factory function for the filter to be registered.
+          * @returns {Object} Registered filter instance, or if a map of filters was provided then a map
+          *    of the registered filter instances.
+          */
+         function register(name, factory) {
+           if (isObject(name)) {
+             var filters = {};
+             forEach(name, function(filter, key) {
+               filters[key] = register(key, filter);
+             });
+             return filters;
+           } else {
+             return $provide.factory(name + suffix, factory);
+           }
+         }
+         this.register = register;
+
+         this.$get = ['$injector', function($injector) {
+           return function(name) {
+             return $injector.get(name + suffix);
+           };
+         }];
+
+         ////////////////////////////////////////
+
+         /* global
+           currencyFilter: false,
+           dateFilter: false,
+           filterFilter: false,
+           jsonFilter: false,
+           limitToFilter: false,
+           lowercaseFilter: false,
+           numberFilter: false,
+           orderByFilter: false,
+           uppercaseFilter: false,
+         */
+
+         register('currency', currencyFilter);
+         register('date', dateFilter);
+         register('filter', filterFilter);
+         register('json', jsonFilter);
+         register('limitTo', limitToFilter);
+         register('lowercase', lowercaseFilter);
+         register('number', numberFilter);
+         register('orderBy', orderByFilter);
+         register('uppercase', uppercaseFilter);
+       }
+
+       /**
+        * @ngdoc filter
+        * @name filter
+        * @kind function
+        *
+        * @description
+        * Selects a subset of items from `array` and returns it as a new array.
+        *
+        * @param {Array} array The source array.
+        * @param {string|Object|function()} expression The predicate to be used for selecting items from
+        *   `array`.
+        *
+        *   Can be one of:
+        *
+        *   - `string`: The string is used for matching against the contents of the `array`. All strings or
+        *     objects with string properties in `array` that match this string will be returned. This also
+        *     applies to nested object properties.
+        *     The predicate can be negated by prefixing the string with `!`.
+        *
+        *   - `Object`: A pattern object can be used to filter specific properties on objects contained
+        *     by `array`. For example `{name:"M", phone:"1"}` predicate will return an array of items
+        *     which have property `name` containing "M" and property `phone` containing "1". A special
+        *     property name `$` can be used (as in `{$:"text"}`) to accept a match against any
+        *     property of the object or its nested object properties. That's equivalent to the simple
+        *     substring match with a `string` as described above. The predicate can be negated by prefixing
+        *     the string with `!`.
+        *     For example `{name: "!M"}` predicate will return an array of items which have property `name`
+        *     not containing "M".
+        *
+        *     Note that a named property will match properties on the same level only, while the special
+        *     `$` property will match properties on the same level or deeper. E.g. an array item like
+        *     `{name: {first: 'John', last: 'Doe'}}` will **not** be matched by `{name: 'John'}`, but
+        *     **will** be matched by `{$: 'John'}`.
+        *
+        *   - `function(value, index, array)`: A predicate function can be used to write arbitrary filters.
+        *     The function is called for each element of the array, with the element, its index, and
+        *     the entire array itself as arguments.
+        *
+        *     The final result is an array of those elements that the predicate returned true for.
+        *
+        * @param {function(actual, expected)|true|undefined} comparator Comparator which is used in
+        *     determining if the expected value (from the filter expression) and actual value (from
+        *     the object in the array) should be considered a match.
+        *
+        *   Can be one of:
+        *
+        *   - `function(actual, expected)`:
+        *     The function will be given the object value and the predicate value to compare and
+        *     should return true if both values should be considered equal.
+        *
+        *   - `true`: A shorthand for `function(actual, expected) { return angular.equals(actual, expected)}`.
+        *     This is essentially strict comparison of expected and actual.
+        *
+        *   - `false|undefined`: A short hand for a function which will look for a substring match in case
+        *     insensitive way.
+        *
+        *     Primitive values are converted to strings. Objects are not compared against primitives,
+        *     unless they have a custom `toString` method (e.g. `Date` objects).
+        *
+        * @example
+          <example>
+            <file name="index.html">
+              <div ng-init="friends = [{name:'John', phone:'555-1276'},
+                                       {name:'Mary', phone:'800-BIG-MARY'},
+                                       {name:'Mike', phone:'555-4321'},
+                                       {name:'Adam', phone:'555-5678'},
+                                       {name:'Julie', phone:'555-8765'},
+                                       {name:'Juliette', phone:'555-5678'}]"></div>
+
+              <label>Search: <input ng-model="searchText"></label>
+              <table id="searchTextResults">
+                <tr><th>Name</th><th>Phone</th></tr>
+                <tr ng-repeat="friend in friends | filter:searchText">
+                  <td>{{friend.name}}</td>
+                  <td>{{friend.phone}}</td>
+                </tr>
+              </table>
+              <hr>
+              <label>Any: <input ng-model="search.$"></label> <br>
+              <label>Name only <input ng-model="search.name"></label><br>
+              <label>Phone only <input ng-model="search.phone"></label><br>
+              <label>Equality <input type="checkbox" ng-model="strict"></label><br>
+              <table id="searchObjResults">
+                <tr><th>Name</th><th>Phone</th></tr>
+                <tr ng-repeat="friendObj in friends | filter:search:strict">
+                  <td>{{friendObj.name}}</td>
+                  <td>{{friendObj.phone}}</td>
+                </tr>
+              </table>
+            </file>
+            <file name="protractor.js" type="protractor">
+              var expectFriendNames = function(expectedNames, key) {
+                element.all(by.repeater(key + ' in friends').column(key + '.name')).then(function(arr) {
+                  arr.forEach(function(wd, i) {
+                    expect(wd.getText()).toMatch(expectedNames[i]);
+                  });
+                });
+              };
+
+              it('should search across all fields when filtering with a string', function() {
+                var searchText = element(by.model('searchText'));
+                searchText.clear();
+                searchText.sendKeys('m');
+                expectFriendNames(['Mary', 'Mike', 'Adam'], 'friend');
+
+                searchText.clear();
+                searchText.sendKeys('76');
+                expectFriendNames(['John', 'Julie'], 'friend');
+              });
+
+              it('should search in specific fields when filtering with a predicate object', function() {
+                var searchAny = element(by.model('search.$'));
+                searchAny.clear();
+                searchAny.sendKeys('i');
+                expectFriendNames(['Mary', 'Mike', 'Julie', 'Juliette'], 'friendObj');
+              });
+              it('should use a equal comparison when comparator is true', function() {
+                var searchName = element(by.model('search.name'));
+                var strict = element(by.model('strict'));
+                searchName.clear();
+                searchName.sendKeys('Julie');
+                strict.click();
+                expectFriendNames(['Julie'], 'friendObj');
+              });
+            </file>
+          </example>
+        */
+       function filterFilter() {
+         return function(array, expression, comparator) {
+           if (!isArrayLike(array)) {
+             if (array == null) {
+               return array;
+             } else {
+               throw minErr('filter')('notarray', 'Expected array but received: {0}', array);
+             }
+           }
+
+           var expressionType = getTypeForFilter(expression);
+           var predicateFn;
+           var matchAgainstAnyProp;
+
+           switch (expressionType) {
+             case 'function':
+               predicateFn = expression;
+               break;
+             case 'boolean':
+             case 'null':
+             case 'number':
+             case 'string':
+               matchAgainstAnyProp = true;
+               //jshint -W086
+             case 'object':
+               //jshint +W086
+               predicateFn = createPredicateFn(expression, comparator, matchAgainstAnyProp);
+               break;
+             default:
+               return array;
+           }
+
+           return Array.prototype.filter.call(array, predicateFn);
+         };
+       }
+
+       // Helper functions for `filterFilter`
+       function createPredicateFn(expression, comparator, matchAgainstAnyProp) {
+         var shouldMatchPrimitives = isObject(expression) && ('$' in expression);
+         var predicateFn;
+
+         if (comparator === true) {
+           comparator = equals;
+         } else if (!isFunction(comparator)) {
+           comparator = function(actual, expected) {
+             if (isUndefined(actual)) {
+               // No substring matching against `undefined`
+               return false;
+             }
+             if ((actual === null) || (expected === null)) {
+               // No substring matching against `null`; only match against `null`
+               return actual === expected;
+             }
+             if (isObject(expected) || (isObject(actual) && !hasCustomToString(actual))) {
+               // Should not compare primitives against objects, unless they have custom `toString` method
+               return false;
+             }
+
+             actual = lowercase('' + actual);
+             expected = lowercase('' + expected);
+             return actual.indexOf(expected) !== -1;
+           };
+         }
+
+         predicateFn = function(item) {
+           if (shouldMatchPrimitives && !isObject(item)) {
+             return deepCompare(item, expression.$, comparator, false);
+           }
+           return deepCompare(item, expression, comparator, matchAgainstAnyProp);
+         };
+
+         return predicateFn;
+       }
+
+       function deepCompare(actual, expected, comparator, matchAgainstAnyProp, dontMatchWholeObject) {
+         var actualType = getTypeForFilter(actual);
+         var expectedType = getTypeForFilter(expected);
+
+         if ((expectedType === 'string') && (expected.charAt(0) === '!')) {
+           return !deepCompare(actual, expected.substring(1), comparator, matchAgainstAnyProp);
+         } else if (isArray(actual)) {
+           // In case `actual` is an array, consider it a match
+           // if ANY of it's items matches `expected`
+           return actual.some(function(item) {
+             return deepCompare(item, expected, comparator, matchAgainstAnyProp);
+           });
+         }
+
+         switch (actualType) {
+           case 'object':
+             var key;
+             if (matchAgainstAnyProp) {
+               for (key in actual) {
+                 if ((key.charAt(0) !== '$') && deepCompare(actual[key], expected, comparator, true)) {
+                   return true;
+                 }
+               }
+               return dontMatchWholeObject ? false : deepCompare(actual, expected, comparator, false);
+             } else if (expectedType === 'object') {
+               for (key in expected) {
+                 var expectedVal = expected[key];
+                 if (isFunction(expectedVal) || isUndefined(expectedVal)) {
+                   continue;
+                 }
+
+                 var matchAnyProperty = key === '$';
+                 var actualVal = matchAnyProperty ? actual : actual[key];
+                 if (!deepCompare(actualVal, expectedVal, comparator, matchAnyProperty, matchAnyProperty)) {
+                   return false;
+                 }
+               }
+               return true;
+             } else {
+               return comparator(actual, expected);
+             }
+             break;
+           case 'function':
+             return false;
+           default:
+             return comparator(actual, expected);
+         }
+       }
+
+       // Used for easily differentiating between `null` and actual `object`
+       function getTypeForFilter(val) {
+         return (val === null) ? 'null' : typeof val;
+       }
+
+       /**
+        * @ngdoc filter
+        * @name currency
+        * @kind function
+        *
+        * @description
+        * Formats a number as a currency (ie $1,234.56). When no currency symbol is provided, default
+        * symbol for current locale is used.
+        *
+        * @param {number} amount Input to filter.
+        * @param {string=} symbol Currency symbol or identifier to be displayed.
+        * @param {number=} fractionSize Number of decimal places to round the amount to, defaults to default max fraction size for current locale
+        * @returns {string} Formatted number.
+        *
+        *
+        * @example
+          <example module="currencyExample">
+            <file name="index.html">
+              <script>
+                angular.module('currencyExample', [])
+                  .controller('ExampleController', ['$scope', function($scope) {
+                    $scope.amount = 1234.56;
+                  }]);
+              </script>
+              <div ng-controller="ExampleController">
+                <input type="number" ng-model="amount" aria-label="amount"> <br>
+                default currency symbol ($): <span id="currency-default">{{amount | currency}}</span><br>
+                custom currency identifier (USD$): <span id="currency-custom">{{amount | currency:"USD$"}}</span>
+                no fractions (0): <span id="currency-no-fractions">{{amount | currency:"USD$":0}}</span>
+              </div>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should init with 1234.56', function() {
+                expect(element(by.id('currency-default')).getText()).toBe('$1,234.56');
+                expect(element(by.id('currency-custom')).getText()).toBe('USD$1,234.56');
+                expect(element(by.id('currency-no-fractions')).getText()).toBe('USD$1,235');
+              });
+              it('should update', function() {
+                if (browser.params.browser == 'safari') {
+                  // Safari does not understand the minus key. See
+                  // https://github.com/angular/protractor/issues/481
+                  return;
+                }
+                element(by.model('amount')).clear();
+                element(by.model('amount')).sendKeys('-1234');
+                expect(element(by.id('currency-default')).getText()).toBe('-$1,234.00');
+                expect(element(by.id('currency-custom')).getText()).toBe('-USD$1,234.00');
+                expect(element(by.id('currency-no-fractions')).getText()).toBe('-USD$1,234');
+              });
+            </file>
+          </example>
+        */
+       currencyFilter.$inject = ['$locale'];
+       function currencyFilter($locale) {
+         var formats = $locale.NUMBER_FORMATS;
+         return function(amount, currencySymbol, fractionSize) {
+           if (isUndefined(currencySymbol)) {
+             currencySymbol = formats.CURRENCY_SYM;
+           }
+
+           if (isUndefined(fractionSize)) {
+             fractionSize = formats.PATTERNS[1].maxFrac;
+           }
+
+           // if null or undefined pass it through
+           return (amount == null)
+               ? amount
+               : formatNumber(amount, formats.PATTERNS[1], formats.GROUP_SEP, formats.DECIMAL_SEP, fractionSize).
+                   replace(/\u00A4/g, currencySymbol);
+         };
+       }
+
+       /**
+        * @ngdoc filter
+        * @name number
+        * @kind function
+        *
+        * @description
+        * Formats a number as text.
+        *
+        * If the input is null or undefined, it will just be returned.
+        * If the input is infinite (Infinity/-Infinity) the Infinity symbol '∞' is returned.
+        * If the input is not a number an empty string is returned.
+        *
+        *
+        * @param {number|string} number Number to format.
+        * @param {(number|string)=} fractionSize Number of decimal places to round the number to.
+        * If this is not provided then the fraction size is computed from the current locale's number
+        * formatting pattern. In the case of the default locale, it will be 3.
+        * @returns {string} Number rounded to decimalPlaces and places a “,” after each third digit.
+        *
+        * @example
+          <example module="numberFilterExample">
+            <file name="index.html">
+              <script>
+                angular.module('numberFilterExample', [])
+                  .controller('ExampleController', ['$scope', function($scope) {
+                    $scope.val = 1234.56789;
+                  }]);
+              </script>
+              <div ng-controller="ExampleController">
+                <label>Enter number: <input ng-model='val'></label><br>
+                Default formatting: <span id='number-default'>{{val | number}}</span><br>
+                No fractions: <span>{{val | number:0}}</span><br>
+                Negative number: <span>{{-val | number:4}}</span>
+              </div>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should format numbers', function() {
+                expect(element(by.id('number-default')).getText()).toBe('1,234.568');
+                expect(element(by.binding('val | number:0')).getText()).toBe('1,235');
+                expect(element(by.binding('-val | number:4')).getText()).toBe('-1,234.5679');
+              });
+
+              it('should update', function() {
+                element(by.model('val')).clear();
+                element(by.model('val')).sendKeys('3374.333');
+                expect(element(by.id('number-default')).getText()).toBe('3,374.333');
+                expect(element(by.binding('val | number:0')).getText()).toBe('3,374');
+                expect(element(by.binding('-val | number:4')).getText()).toBe('-3,374.3330');
+             });
+            </file>
+          </example>
+        */
+
+
+       numberFilter.$inject = ['$locale'];
+       function numberFilter($locale) {
+         var formats = $locale.NUMBER_FORMATS;
+         return function(number, fractionSize) {
+
+           // if null or undefined pass it through
+           return (number == null)
+               ? number
+               : formatNumber(number, formats.PATTERNS[0], formats.GROUP_SEP, formats.DECIMAL_SEP,
+                              fractionSize);
+         };
+       }
+
+       var DECIMAL_SEP = '.';
+       function formatNumber(number, pattern, groupSep, decimalSep, fractionSize) {
+         if (isObject(number)) return '';
+
+         var isNegative = number < 0;
+         number = Math.abs(number);
+
+         var isInfinity = number === Infinity;
+         if (!isInfinity && !isFinite(number)) return '';
+
+         var numStr = number + '',
+             formatedText = '',
+             hasExponent = false,
+             parts = [];
+
+         if (isInfinity) formatedText = '\u221e';
+
+         if (!isInfinity && numStr.indexOf('e') !== -1) {
+           var match = numStr.match(/([\d\.]+)e(-?)(\d+)/);
+           if (match && match[2] == '-' && match[3] > fractionSize + 1) {
+             number = 0;
+           } else {
+             formatedText = numStr;
+             hasExponent = true;
+           }
+         }
+
+         if (!isInfinity && !hasExponent) {
+           var fractionLen = (numStr.split(DECIMAL_SEP)[1] || '').length;
+
+           // determine fractionSize if it is not specified
+           if (isUndefined(fractionSize)) {
+             fractionSize = Math.min(Math.max(pattern.minFrac, fractionLen), pattern.maxFrac);
+           }
+
+           // safely round numbers in JS without hitting imprecisions of floating-point arithmetics
+           // inspired by:
+           // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/round
+           number = +(Math.round(+(number.toString() + 'e' + fractionSize)).toString() + 'e' + -fractionSize);
+
+           var fraction = ('' + number).split(DECIMAL_SEP);
+           var whole = fraction[0];
+           fraction = fraction[1] || '';
+
+           var i, pos = 0,
+               lgroup = pattern.lgSize,
+               group = pattern.gSize;
+
+           if (whole.length >= (lgroup + group)) {
+             pos = whole.length - lgroup;
+             for (i = 0; i < pos; i++) {
+               if ((pos - i) % group === 0 && i !== 0) {
+                 formatedText += groupSep;
+               }
+               formatedText += whole.charAt(i);
+             }
+           }
+
+           for (i = pos; i < whole.length; i++) {
+             if ((whole.length - i) % lgroup === 0 && i !== 0) {
+               formatedText += groupSep;
+             }
+             formatedText += whole.charAt(i);
+           }
+
+           // format fraction part.
+           while (fraction.length < fractionSize) {
+             fraction += '0';
+           }
+
+           if (fractionSize && fractionSize !== "0") formatedText += decimalSep + fraction.substr(0, fractionSize);
+         } else {
+           if (fractionSize > 0 && number < 1) {
+             formatedText = number.toFixed(fractionSize);
+             number = parseFloat(formatedText);
+             formatedText = formatedText.replace(DECIMAL_SEP, decimalSep);
+           }
+         }
+
+         if (number === 0) {
+           isNegative = false;
+         }
+
+         parts.push(isNegative ? pattern.negPre : pattern.posPre,
+                    formatedText,
+                    isNegative ? pattern.negSuf : pattern.posSuf);
+         return parts.join('');
+       }
+
+       function padNumber(num, digits, trim) {
+         var neg = '';
+         if (num < 0) {
+           neg =  '-';
+           num = -num;
+         }
+         num = '' + num;
+         while (num.length < digits) num = '0' + num;
+         if (trim) {
+           num = num.substr(num.length - digits);
+         }
+         return neg + num;
+       }
+
+
+       function dateGetter(name, size, offset, trim) {
+         offset = offset || 0;
+         return function(date) {
+           var value = date['get' + name]();
+           if (offset > 0 || value > -offset) {
+             value += offset;
+           }
+           if (value === 0 && offset == -12) value = 12;
+           return padNumber(value, size, trim);
+         };
+       }
+
+       function dateStrGetter(name, shortForm) {
+         return function(date, formats) {
+           var value = date['get' + name]();
+           var get = uppercase(shortForm ? ('SHORT' + name) : name);
+
+           return formats[get][value];
+         };
+       }
+
+       function timeZoneGetter(date, formats, offset) {
+         var zone = -1 * offset;
+         var paddedZone = (zone >= 0) ? "+" : "";
+
+         paddedZone += padNumber(Math[zone > 0 ? 'floor' : 'ceil'](zone / 60), 2) +
+                       padNumber(Math.abs(zone % 60), 2);
+
+         return paddedZone;
+       }
+
+       function getFirstThursdayOfYear(year) {
+           // 0 = index of January
+           var dayOfWeekOnFirst = (new Date(year, 0, 1)).getDay();
+           // 4 = index of Thursday (+1 to account for 1st = 5)
+           // 11 = index of *next* Thursday (+1 account for 1st = 12)
+           return new Date(year, 0, ((dayOfWeekOnFirst <= 4) ? 5 : 12) - dayOfWeekOnFirst);
+       }
+
+       function getThursdayThisWeek(datetime) {
+           return new Date(datetime.getFullYear(), datetime.getMonth(),
+             // 4 = index of Thursday
+             datetime.getDate() + (4 - datetime.getDay()));
+       }
+
+       function weekGetter(size) {
+          return function(date) {
+             var firstThurs = getFirstThursdayOfYear(date.getFullYear()),
+                thisThurs = getThursdayThisWeek(date);
+
+             var diff = +thisThurs - +firstThurs,
+                result = 1 + Math.round(diff / 6.048e8); // 6.048e8 ms per week
+
+             return padNumber(result, size);
+          };
+       }
+
+       function ampmGetter(date, formats) {
+         return date.getHours() < 12 ? formats.AMPMS[0] : formats.AMPMS[1];
+       }
+
+       function eraGetter(date, formats) {
+         return date.getFullYear() <= 0 ? formats.ERAS[0] : formats.ERAS[1];
+       }
+
+       function longEraGetter(date, formats) {
+         return date.getFullYear() <= 0 ? formats.ERANAMES[0] : formats.ERANAMES[1];
+       }
+
+       var DATE_FORMATS = {
+         yyyy: dateGetter('FullYear', 4),
+           yy: dateGetter('FullYear', 2, 0, true),
+            y: dateGetter('FullYear', 1),
+         MMMM: dateStrGetter('Month'),
+          MMM: dateStrGetter('Month', true),
+           MM: dateGetter('Month', 2, 1),
+            M: dateGetter('Month', 1, 1),
+           dd: dateGetter('Date', 2),
+            d: dateGetter('Date', 1),
+           HH: dateGetter('Hours', 2),
+            H: dateGetter('Hours', 1),
+           hh: dateGetter('Hours', 2, -12),
+            h: dateGetter('Hours', 1, -12),
+           mm: dateGetter('Minutes', 2),
+            m: dateGetter('Minutes', 1),
+           ss: dateGetter('Seconds', 2),
+            s: dateGetter('Seconds', 1),
+            // while ISO 8601 requires fractions to be prefixed with `.` or `,`
+            // we can be just safely rely on using `sss` since we currently don't support single or two digit fractions
+          sss: dateGetter('Milliseconds', 3),
+         EEEE: dateStrGetter('Day'),
+          EEE: dateStrGetter('Day', true),
+            a: ampmGetter,
+            Z: timeZoneGetter,
+           ww: weekGetter(2),
+            w: weekGetter(1),
+            G: eraGetter,
+            GG: eraGetter,
+            GGG: eraGetter,
+            GGGG: longEraGetter
+       };
+
+       var DATE_FORMATS_SPLIT = /((?:[^yMdHhmsaZEwG']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|d+|H+|h+|m+|s+|a|Z|G+|w+))(.*)/,
+           NUMBER_STRING = /^\-?\d+$/;
+
+       /**
+        * @ngdoc filter
+        * @name date
+        * @kind function
+        *
+        * @description
+        *   Formats `date` to a string based on the requested `format`.
+        *
+        *   `format` string can be composed of the following elements:
+        *
+        *   * `'yyyy'`: 4 digit representation of year (e.g. AD 1 => 0001, AD 2010 => 2010)
+        *   * `'yy'`: 2 digit representation of year, padded (00-99). (e.g. AD 2001 => 01, AD 2010 => 10)
+        *   * `'y'`: 1 digit representation of year, e.g. (AD 1 => 1, AD 199 => 199)
+        *   * `'MMMM'`: Month in year (January-December)
+        *   * `'MMM'`: Month in year (Jan-Dec)
+        *   * `'MM'`: Month in year, padded (01-12)
+        *   * `'M'`: Month in year (1-12)
+        *   * `'dd'`: Day in month, padded (01-31)
+        *   * `'d'`: Day in month (1-31)
+        *   * `'EEEE'`: Day in Week,(Sunday-Saturday)
+        *   * `'EEE'`: Day in Week, (Sun-Sat)
+        *   * `'HH'`: Hour in day, padded (00-23)
+        *   * `'H'`: Hour in day (0-23)
+        *   * `'hh'`: Hour in AM/PM, padded (01-12)
+        *   * `'h'`: Hour in AM/PM, (1-12)
+        *   * `'mm'`: Minute in hour, padded (00-59)
+        *   * `'m'`: Minute in hour (0-59)
+        *   * `'ss'`: Second in minute, padded (00-59)
+        *   * `'s'`: Second in minute (0-59)
+        *   * `'sss'`: Millisecond in second, padded (000-999)
+        *   * `'a'`: AM/PM marker
+        *   * `'Z'`: 4 digit (+sign) representation of the timezone offset (-1200-+1200)
+        *   * `'ww'`: Week of year, padded (00-53). Week 01 is the week with the first Thursday of the year
+        *   * `'w'`: Week of year (0-53). Week 1 is the week with the first Thursday of the year
+        *   * `'G'`, `'GG'`, `'GGG'`: The abbreviated form of the era string (e.g. 'AD')
+        *   * `'GGGG'`: The long form of the era string (e.g. 'Anno Domini')
+        *
+        *   `format` string can also be one of the following predefined
+        *   {@link guide/i18n localizable formats}:
+        *
+        *   * `'medium'`: equivalent to `'MMM d, y h:mm:ss a'` for en_US locale
+        *     (e.g. Sep 3, 2010 12:05:08 PM)
+        *   * `'short'`: equivalent to `'M/d/yy h:mm a'` for en_US  locale (e.g. 9/3/10 12:05 PM)
+        *   * `'fullDate'`: equivalent to `'EEEE, MMMM d, y'` for en_US  locale
+        *     (e.g. Friday, September 3, 2010)
+        *   * `'longDate'`: equivalent to `'MMMM d, y'` for en_US  locale (e.g. September 3, 2010)
+        *   * `'mediumDate'`: equivalent to `'MMM d, y'` for en_US  locale (e.g. Sep 3, 2010)
+        *   * `'shortDate'`: equivalent to `'M/d/yy'` for en_US locale (e.g. 9/3/10)
+        *   * `'mediumTime'`: equivalent to `'h:mm:ss a'` for en_US locale (e.g. 12:05:08 PM)
+        *   * `'shortTime'`: equivalent to `'h:mm a'` for en_US locale (e.g. 12:05 PM)
+        *
+        *   `format` string can contain literal values. These need to be escaped by surrounding with single quotes (e.g.
+        *   `"h 'in the morning'"`). In order to output a single quote, escape it - i.e., two single quotes in a sequence
+        *   (e.g. `"h 'o''clock'"`).
+        *
+        * @param {(Date|number|string)} date Date to format either as Date object, milliseconds (string or
+        *    number) or various ISO 8601 datetime string formats (e.g. yyyy-MM-ddTHH:mm:ss.sssZ and its
+        *    shorter versions like yyyy-MM-ddTHH:mmZ, yyyy-MM-dd or yyyyMMddTHHmmssZ). If no timezone is
+        *    specified in the string input, the time is considered to be in the local timezone.
+        * @param {string=} format Formatting rules (see Description). If not specified,
+        *    `mediumDate` is used.
+        * @param {string=} timezone Timezone to be used for formatting. It understands UTC/GMT and the
+        *    continental US time zone abbreviations, but for general use, use a time zone offset, for
+        *    example, `'+0430'` (4 hours, 30 minutes east of the Greenwich meridian)
+        *    If not specified, the timezone of the browser will be used.
+        * @returns {string} Formatted string or the input if input is not recognized as date/millis.
+        *
+        * @example
+          <example>
+            <file name="index.html">
+              <span ng-non-bindable>{{1288323623006 | date:'medium'}}</span>:
+                  <span>{{1288323623006 | date:'medium'}}</span><br>
+              <span ng-non-bindable>{{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}</span>:
+                 <span>{{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}</span><br>
+              <span ng-non-bindable>{{1288323623006 | date:'MM/dd/yyyy @ h:mma'}}</span>:
+                 <span>{{'1288323623006' | date:'MM/dd/yyyy @ h:mma'}}</span><br>
+              <span ng-non-bindable>{{1288323623006 | date:"MM/dd/yyyy 'at' h:mma"}}</span>:
+                 <span>{{'1288323623006' | date:"MM/dd/yyyy 'at' h:mma"}}</span><br>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should format date', function() {
+                expect(element(by.binding("1288323623006 | date:'medium'")).getText()).
+                   toMatch(/Oct 2\d, 2010 \d{1,2}:\d{2}:\d{2} (AM|PM)/);
+                expect(element(by.binding("1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'")).getText()).
+                   toMatch(/2010\-10\-2\d \d{2}:\d{2}:\d{2} (\-|\+)?\d{4}/);
+                expect(element(by.binding("'1288323623006' | date:'MM/dd/yyyy @ h:mma'")).getText()).
+                   toMatch(/10\/2\d\/2010 @ \d{1,2}:\d{2}(AM|PM)/);
+                expect(element(by.binding("'1288323623006' | date:\"MM/dd/yyyy 'at' h:mma\"")).getText()).
+                   toMatch(/10\/2\d\/2010 at \d{1,2}:\d{2}(AM|PM)/);
+              });
+            </file>
+          </example>
+        */
+       dateFilter.$inject = ['$locale'];
+       function dateFilter($locale) {
+
+
+         var R_ISO8601_STR = /^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/;
+                            // 1        2       3         4          5          6          7          8  9     10      11
+         function jsonStringToDate(string) {
+           var match;
+           if (match = string.match(R_ISO8601_STR)) {
+             var date = new Date(0),
+                 tzHour = 0,
+                 tzMin  = 0,
+                 dateSetter = match[8] ? date.setUTCFullYear : date.setFullYear,
+                 timeSetter = match[8] ? date.setUTCHours : date.setHours;
+
+             if (match[9]) {
+               tzHour = toInt(match[9] + match[10]);
+               tzMin = toInt(match[9] + match[11]);
+             }
+             dateSetter.call(date, toInt(match[1]), toInt(match[2]) - 1, toInt(match[3]));
+             var h = toInt(match[4] || 0) - tzHour;
+             var m = toInt(match[5] || 0) - tzMin;
+             var s = toInt(match[6] || 0);
+             var ms = Math.round(parseFloat('0.' + (match[7] || 0)) * 1000);
+             timeSetter.call(date, h, m, s, ms);
+             return date;
+           }
+           return string;
+         }
+
+
+         return function(date, format, timezone) {
+           var text = '',
+               parts = [],
+               fn, match;
+
+           format = format || 'mediumDate';
+           format = $locale.DATETIME_FORMATS[format] || format;
+           if (isString(date)) {
+             date = NUMBER_STRING.test(date) ? toInt(date) : jsonStringToDate(date);
+           }
+
+           if (isNumber(date)) {
+             date = new Date(date);
+           }
+
+           if (!isDate(date) || !isFinite(date.getTime())) {
+             return date;
+           }
+
+           while (format) {
+             match = DATE_FORMATS_SPLIT.exec(format);
+             if (match) {
+               parts = concat(parts, match, 1);
+               format = parts.pop();
+             } else {
+               parts.push(format);
+               format = null;
+             }
+           }
+
+           var dateTimezoneOffset = date.getTimezoneOffset();
+           if (timezone) {
+             dateTimezoneOffset = timezoneToOffset(timezone, date.getTimezoneOffset());
+             date = convertTimezoneToLocal(date, timezone, true);
+           }
+           forEach(parts, function(value) {
+             fn = DATE_FORMATS[value];
+             text += fn ? fn(date, $locale.DATETIME_FORMATS, dateTimezoneOffset)
+                        : value.replace(/(^'|'$)/g, '').replace(/''/g, "'");
+           });
+
+           return text;
+         };
+       }
+
+
+       /**
+        * @ngdoc filter
+        * @name json
+        * @kind function
+        *
+        * @description
+        *   Allows you to convert a JavaScript object into JSON string.
+        *
+        *   This filter is mostly useful for debugging. When using the double curly {{value}} notation
+        *   the binding is automatically converted to JSON.
+        *
+        * @param {*} object Any JavaScript object (including arrays and primitive types) to filter.
+        * @param {number=} spacing The number of spaces to use per indentation, defaults to 2.
+        * @returns {string} JSON string.
+        *
+        *
+        * @example
+          <example>
+            <file name="index.html">
+              <pre id="default-spacing">{{ {'name':'value'} | json }}</pre>
+              <pre id="custom-spacing">{{ {'name':'value'} | json:4 }}</pre>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should jsonify filtered objects', function() {
+                expect(element(by.id('default-spacing')).getText()).toMatch(/\{\n  "name": ?"value"\n}/);
+                expect(element(by.id('custom-spacing')).getText()).toMatch(/\{\n    "name": ?"value"\n}/);
+              });
+            </file>
+          </example>
+        *
+        */
+       function jsonFilter() {
+         return function(object, spacing) {
+           if (isUndefined(spacing)) {
+               spacing = 2;
+           }
+           return toJson(object, spacing);
+         };
+       }
+
+
+       /**
+        * @ngdoc filter
+        * @name lowercase
+        * @kind function
+        * @description
+        * Converts string to lowercase.
+        * @see angular.lowercase
+        */
+       var lowercaseFilter = valueFn(lowercase);
+
+
+       /**
+        * @ngdoc filter
+        * @name uppercase
+        * @kind function
+        * @description
+        * Converts string to uppercase.
+        * @see angular.uppercase
+        */
+       var uppercaseFilter = valueFn(uppercase);
+
+       /**
+        * @ngdoc filter
+        * @name limitTo
+        * @kind function
+        *
+        * @description
+        * Creates a new array or string containing only a specified number of elements. The elements
+        * are taken from either the beginning or the end of the source array, string or number, as specified by
+        * the value and sign (positive or negative) of `limit`. If a number is used as input, it is
+        * converted to a string.
+        *
+        * @param {Array|string|number} input Source array, string or number to be limited.
+        * @param {string|number} limit The length of the returned array or string. If the `limit` number
+        *     is positive, `limit` number of items from the beginning of the source array/string are copied.
+        *     If the number is negative, `limit` number  of items from the end of the source array/string
+        *     are copied. The `limit` will be trimmed if it exceeds `array.length`. If `limit` is undefined,
+        *     the input will be returned unchanged.
+        * @param {(string|number)=} begin Index at which to begin limitation. As a negative index, `begin`
+        *     indicates an offset from the end of `input`. Defaults to `0`.
+        * @returns {Array|string} A new sub-array or substring of length `limit` or less if input array
+        *     had less than `limit` elements.
+        *
+        * @example
+          <example module="limitToExample">
+            <file name="index.html">
+              <script>
+                angular.module('limitToExample', [])
+                  .controller('ExampleController', ['$scope', function($scope) {
+                    $scope.numbers = [1,2,3,4,5,6,7,8,9];
+                    $scope.letters = "abcdefghi";
+                    $scope.longNumber = 2345432342;
+                    $scope.numLimit = 3;
+                    $scope.letterLimit = 3;
+                    $scope.longNumberLimit = 3;
+                  }]);
+              </script>
+              <div ng-controller="ExampleController">
+                <label>
+                   Limit {{numbers}} to:
+                   <input type="number" step="1" ng-model="numLimit">
+                </label>
+                <p>Output numbers: {{ numbers | limitTo:numLimit }}</p>
+                <label>
+                   Limit {{letters}} to:
+                   <input type="number" step="1" ng-model="letterLimit">
+                </label>
+                <p>Output letters: {{ letters | limitTo:letterLimit }}</p>
+                <label>
+                   Limit {{longNumber}} to:
+                   <input type="number" step="1" ng-model="longNumberLimit">
+                </label>
+                <p>Output long number: {{ longNumber | limitTo:longNumberLimit }}</p>
+              </div>
+            </file>
+            <file name="protractor.js" type="protractor">
+              var numLimitInput = element(by.model('numLimit'));
+              var letterLimitInput = element(by.model('letterLimit'));
+              var longNumberLimitInput = element(by.model('longNumberLimit'));
+              var limitedNumbers = element(by.binding('numbers | limitTo:numLimit'));
+              var limitedLetters = element(by.binding('letters | limitTo:letterLimit'));
+              var limitedLongNumber = element(by.binding('longNumber | limitTo:longNumberLimit'));
+
+              it('should limit the number array to first three items', function() {
+                expect(numLimitInput.getAttribute('value')).toBe('3');
+                expect(letterLimitInput.getAttribute('value')).toBe('3');
+                expect(longNumberLimitInput.getAttribute('value')).toBe('3');
+                expect(limitedNumbers.getText()).toEqual('Output numbers: [1,2,3]');
+                expect(limitedLetters.getText()).toEqual('Output letters: abc');
+                expect(limitedLongNumber.getText()).toEqual('Output long number: 234');
+              });
+
+              // There is a bug in safari and protractor that doesn't like the minus key
+              // it('should update the output when -3 is entered', function() {
+              //   numLimitInput.clear();
+              //   numLimitInput.sendKeys('-3');
+              //   letterLimitInput.clear();
+              //   letterLimitInput.sendKeys('-3');
+              //   longNumberLimitInput.clear();
+              //   longNumberLimitInput.sendKeys('-3');
+              //   expect(limitedNumbers.getText()).toEqual('Output numbers: [7,8,9]');
+              //   expect(limitedLetters.getText()).toEqual('Output letters: ghi');
+              //   expect(limitedLongNumber.getText()).toEqual('Output long number: 342');
+              // });
+
+              it('should not exceed the maximum size of input array', function() {
+                numLimitInput.clear();
+                numLimitInput.sendKeys('100');
+                letterLimitInput.clear();
+                letterLimitInput.sendKeys('100');
+                longNumberLimitInput.clear();
+                longNumberLimitInput.sendKeys('100');
+                expect(limitedNumbers.getText()).toEqual('Output numbers: [1,2,3,4,5,6,7,8,9]');
+                expect(limitedLetters.getText()).toEqual('Output letters: abcdefghi');
+                expect(limitedLongNumber.getText()).toEqual('Output long number: 2345432342');
+              });
+            </file>
+          </example>
+       */
+       function limitToFilter() {
+         return function(input, limit, begin) {
+           if (Math.abs(Number(limit)) === Infinity) {
+             limit = Number(limit);
+           } else {
+             limit = toInt(limit);
+           }
+           if (isNaN(limit)) return input;
+
+           if (isNumber(input)) input = input.toString();
+           if (!isArray(input) && !isString(input)) return input;
+
+           begin = (!begin || isNaN(begin)) ? 0 : toInt(begin);
+           begin = (begin < 0) ? Math.max(0, input.length + begin) : begin;
+
+           if (limit >= 0) {
+             return input.slice(begin, begin + limit);
+           } else {
+             if (begin === 0) {
+               return input.slice(limit, input.length);
+             } else {
+               return input.slice(Math.max(0, begin + limit), begin);
+             }
+           }
+         };
+       }
+
+       /**
+        * @ngdoc filter
+        * @name orderBy
+        * @kind function
+        *
+        * @description
+        * Orders a specified `array` by the `expression` predicate. It is ordered alphabetically
+        * for strings and numerically for numbers. Note: if you notice numbers are not being sorted
+        * as expected, make sure they are actually being saved as numbers and not strings.
+        *
+        * @param {Array} array The array to sort.
+        * @param {function(*)|string|Array.<(function(*)|string)>=} expression A predicate to be
+        *    used by the comparator to determine the order of elements.
+        *
+        *    Can be one of:
+        *
+        *    - `function`: Getter function. The result of this function will be sorted using the
+        *      `<`, `===`, `>` operator.
+        *    - `string`: An Angular expression. The result of this expression is used to compare elements
+        *      (for example `name` to sort by a property called `name` or `name.substr(0, 3)` to sort by
+        *      3 first characters of a property called `name`). The result of a constant expression
+        *      is interpreted as a property name to be used in comparisons (for example `"special name"`
+        *      to sort object by the value of their `special name` property). An expression can be
+        *      optionally prefixed with `+` or `-` to control ascending or descending sort order
+        *      (for example, `+name` or `-name`). If no property is provided, (e.g. `'+'`) then the array
+        *      element itself is used to compare where sorting.
+        *    - `Array`: An array of function or string predicates. The first predicate in the array
+        *      is used for sorting, but when two items are equivalent, the next predicate is used.
+        *
+        *    If the predicate is missing or empty then it defaults to `'+'`.
+        *
+        * @param {boolean=} reverse Reverse the order of the array.
+        * @returns {Array} Sorted copy of the source array.
+        *
+        *
+        * @example
+        * The example below demonstrates a simple ngRepeat, where the data is sorted
+        * by age in descending order (predicate is set to `'-age'`).
+        * `reverse` is not set, which means it defaults to `false`.
+          <example module="orderByExample">
+            <file name="index.html">
+              <script>
+                angular.module('orderByExample', [])
+                  .controller('ExampleController', ['$scope', function($scope) {
+                    $scope.friends =
+                        [{name:'John', phone:'555-1212', age:10},
+                         {name:'Mary', phone:'555-9876', age:19},
+                         {name:'Mike', phone:'555-4321', age:21},
+                         {name:'Adam', phone:'555-5678', age:35},
+                         {name:'Julie', phone:'555-8765', age:29}];
+                  }]);
+              </script>
+              <div ng-controller="ExampleController">
+                <table class="friend">
+                  <tr>
+                    <th>Name</th>
+                    <th>Phone Number</th>
+                    <th>Age</th>
+                  </tr>
+                  <tr ng-repeat="friend in friends | orderBy:'-age'">
+                    <td>{{friend.name}}</td>
+                    <td>{{friend.phone}}</td>
+                    <td>{{friend.age}}</td>
+                  </tr>
+                </table>
+              </div>
+            </file>
+          </example>
+        *
+        * The predicate and reverse parameters can be controlled dynamically through scope properties,
+        * as shown in the next example.
+        * @example
+          <example module="orderByExample">
+            <file name="index.html">
+              <script>
+                angular.module('orderByExample', [])
+                  .controller('ExampleController', ['$scope', function($scope) {
+                    $scope.friends =
+                        [{name:'John', phone:'555-1212', age:10},
+                         {name:'Mary', phone:'555-9876', age:19},
+                         {name:'Mike', phone:'555-4321', age:21},
+                         {name:'Adam', phone:'555-5678', age:35},
+                         {name:'Julie', phone:'555-8765', age:29}];
+                    $scope.predicate = 'age';
+                    $scope.reverse = true;
+                    $scope.order = function(predicate) {
+                      $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false;
+                      $scope.predicate = predicate;
+                    };
+                  }]);
+              </script>
+              <style type="text/css">
+                .sortorder:after {
+                  content: '\25b2';
+                }
+                .sortorder.reverse:after {
+                  content: '\25bc';
+                }
+              </style>
+              <div ng-controller="ExampleController">
+                <pre>Sorting predicate = {{predicate}}; reverse = {{reverse}}</pre>
+                <hr/>
+                [ <a href="" ng-click="predicate=''">unsorted</a> ]
+                <table class="friend">
+                  <tr>
+                    <th>
+                      <a href="" ng-click="order('name')">Name</a>
+                      <span class="sortorder" ng-show="predicate === 'name'" ng-class="{reverse:reverse}"></span>
+                    </th>
+                    <th>
+                      <a href="" ng-click="order('phone')">Phone Number</a>
+                      <span class="sortorder" ng-show="predicate === 'phone'" ng-class="{reverse:reverse}"></span>
+                    </th>
+                    <th>
+                      <a href="" ng-click="order('age')">Age</a>
+                      <span class="sortorder" ng-show="predicate === 'age'" ng-class="{reverse:reverse}"></span>
+                    </th>
+                  </tr>
+                  <tr ng-repeat="friend in friends | orderBy:predicate:reverse">
+                    <td>{{friend.name}}</td>
+                    <td>{{friend.phone}}</td>
+                    <td>{{friend.age}}</td>
+                  </tr>
+                </table>
+              </div>
+            </file>
+          </example>
+        *
+        * It's also possible to call the orderBy filter manually, by injecting `$filter`, retrieving the
+        * filter routine with `$filter('orderBy')`, and calling the returned filter routine with the
+        * desired parameters.
+        *
+        * Example:
+        *
+        * @example
+         <example module="orderByExample">
+           <file name="index.html">
+             <div ng-controller="ExampleController">
+               <table class="friend">
+                 <tr>
+                   <th><a href="" ng-click="reverse=false;order('name', false)">Name</a>
+                     (<a href="" ng-click="order('-name',false)">^</a>)</th>
+                   <th><a href="" ng-click="reverse=!reverse;order('phone', reverse)">Phone Number</a></th>
+                   <th><a href="" ng-click="reverse=!reverse;order('age',reverse)">Age</a></th>
+                 </tr>
+                 <tr ng-repeat="friend in friends">
+                   <td>{{friend.name}}</td>
+                   <td>{{friend.phone}}</td>
+                   <td>{{friend.age}}</td>
+                 </tr>
+               </table>
+             </div>
+           </file>
+
+           <file name="script.js">
+             angular.module('orderByExample', [])
+               .controller('ExampleController', ['$scope', '$filter', function($scope, $filter) {
+                 var orderBy = $filter('orderBy');
+                 $scope.friends = [
+                   { name: 'John',    phone: '555-1212',    age: 10 },
+                   { name: 'Mary',    phone: '555-9876',    age: 19 },
+                   { name: 'Mike',    phone: '555-4321',    age: 21 },
+                   { name: 'Adam',    phone: '555-5678',    age: 35 },
+                   { name: 'Julie',   phone: '555-8765',    age: 29 }
+                 ];
+                 $scope.order = function(predicate, reverse) {
+                   $scope.friends = orderBy($scope.friends, predicate, reverse);
+                 };
+                 $scope.order('-age',false);
+               }]);
+           </file>
+       </example>
+        */
+       orderByFilter.$inject = ['$parse'];
+       function orderByFilter($parse) {
+         return function(array, sortPredicate, reverseOrder) {
+
+           if (!(isArrayLike(array))) return array;
+
+           if (!isArray(sortPredicate)) { sortPredicate = [sortPredicate]; }
+           if (sortPredicate.length === 0) { sortPredicate = ['+']; }
+
+           var predicates = processPredicates(sortPredicate, reverseOrder);
+           // Add a predicate at the end that evaluates to the element index. This makes the
+           // sort stable as it works as a tie-breaker when all the input predicates cannot
+           // distinguish between two elements.
+           predicates.push({ get: function() { return {}; }, descending: reverseOrder ? -1 : 1});
+
+           // The next three lines are a version of a Swartzian Transform idiom from Perl
+           // (sometimes called the Decorate-Sort-Undecorate idiom)
+           // See https://en.wikipedia.org/wiki/Schwartzian_transform
+           var compareValues = Array.prototype.map.call(array, getComparisonObject);
+           compareValues.sort(doComparison);
+           array = compareValues.map(function(item) { return item.value; });
+
+           return array;
+
+           function getComparisonObject(value, index) {
+             return {
+               value: value,
+               predicateValues: predicates.map(function(predicate) {
+                 return getPredicateValue(predicate.get(value), index);
+               })
+             };
+           }
+
+           function doComparison(v1, v2) {
+             var result = 0;
+             for (var index=0, length = predicates.length; index < length; ++index) {
+               result = compare(v1.predicateValues[index], v2.predicateValues[index]) * predicates[index].descending;
+               if (result) break;
+             }
+             return result;
+           }
+         };
+
+         function processPredicates(sortPredicate, reverseOrder) {
+           reverseOrder = reverseOrder ? -1 : 1;
+           return sortPredicate.map(function(predicate) {
+             var descending = 1, get = identity;
+
+             if (isFunction(predicate)) {
+               get = predicate;
+             } else if (isString(predicate)) {
+               if ((predicate.charAt(0) == '+' || predicate.charAt(0) == '-')) {
+                 descending = predicate.charAt(0) == '-' ? -1 : 1;
+                 predicate = predicate.substring(1);
+               }
+               if (predicate !== '') {
+                 get = $parse(predicate);
+                 if (get.constant) {
+                   var key = get();
+                   get = function(value) { return value[key]; };
+                 }
+               }
+             }
+             return { get: get, descending: descending * reverseOrder };
+           });
+         }
+
+         function isPrimitive(value) {
+           switch (typeof value) {
+             case 'number': /* falls through */
+             case 'boolean': /* falls through */
+             case 'string':
+               return true;
+             default:
+               return false;
+           }
+         }
+
+         function objectValue(value, index) {
+           // If `valueOf` is a valid function use that
+           if (typeof value.valueOf === 'function') {
+             value = value.valueOf();
+             if (isPrimitive(value)) return value;
+           }
+           // If `toString` is a valid function and not the one from `Object.prototype` use that
+           if (hasCustomToString(value)) {
+             value = value.toString();
+             if (isPrimitive(value)) return value;
+           }
+           // We have a basic object so we use the position of the object in the collection
+           return index;
+         }
+
+         function getPredicateValue(value, index) {
+           var type = typeof value;
+           if (value === null) {
+             type = 'string';
+             value = 'null';
+           } else if (type === 'string') {
+             value = value.toLowerCase();
+           } else if (type === 'object') {
+             value = objectValue(value, index);
+           }
+           return { value: value, type: type };
+         }
+
+         function compare(v1, v2) {
+           var result = 0;
+           if (v1.type === v2.type) {
+             if (v1.value !== v2.value) {
+               result = v1.value < v2.value ? -1 : 1;
+             }
+           } else {
+             result = v1.type < v2.type ? -1 : 1;
+           }
+           return result;
+         }
+       }
+
+       function ngDirective(directive) {
+         if (isFunction(directive)) {
+           directive = {
+             link: directive
+           };
+         }
+         directive.restrict = directive.restrict || 'AC';
+         return valueFn(directive);
+       }
+
+       /**
+        * @ngdoc directive
+        * @name a
+        * @restrict E
+        *
+        * @description
+        * Modifies the default behavior of the html A tag so that the default action is prevented when
+        * the href attribute is empty.
+        *
+        * This change permits the easy creation of action links with the `ngClick` directive
+        * without changing the location or causing page reloads, e.g.:
+        * `<a href="" ng-click="list.addItem()">Add Item</a>`
+        */
+       var htmlAnchorDirective = valueFn({
+         restrict: 'E',
+         compile: function(element, attr) {
+           if (!attr.href && !attr.xlinkHref) {
+             return function(scope, element) {
+               // If the linked element is not an anchor tag anymore, do nothing
+               if (element[0].nodeName.toLowerCase() !== 'a') return;
+
+               // SVGAElement does not use the href attribute, but rather the 'xlinkHref' attribute.
+               var href = toString.call(element.prop('href')) === '[object SVGAnimatedString]' ?
+                          'xlink:href' : 'href';
+               element.on('click', function(event) {
+                 // if we have no href url, then don't navigate anywhere.
+                 if (!element.attr(href)) {
+                   event.preventDefault();
+                 }
+               });
+             };
+           }
+         }
+       });
+
+       /**
+        * @ngdoc directive
+        * @name ngHref
+        * @restrict A
+        * @priority 99
+        *
+        * @description
+        * Using Angular markup like `{{hash}}` in an href attribute will
+        * make the link go to the wrong URL if the user clicks it before
+        * Angular has a chance to replace the `{{hash}}` markup with its
+        * value. Until Angular replaces the markup the link will be broken
+        * and will most likely return a 404 error. The `ngHref` directive
+        * solves this problem.
+        *
+        * The wrong way to write it:
+        * ```html
+        * <a href="http://www.gravatar.com/avatar/{{hash}}">link1</a>
+        * ```
+        *
+        * The correct way to write it:
+        * ```html
+        * <a ng-href="http://www.gravatar.com/avatar/{{hash}}">link1</a>
+        * ```
+        *
+        * @element A
+        * @param {template} ngHref any string which can contain `{{}}` markup.
+        *
+        * @example
+        * This example shows various combinations of `href`, `ng-href` and `ng-click` attributes
+        * in links and their different behaviors:
+           <example>
+             <file name="index.html">
+               <input ng-model="value" /><br />
+               <a id="link-1" href ng-click="value = 1">link 1</a> (link, don't reload)<br />
+               <a id="link-2" href="" ng-click="value = 2">link 2</a> (link, don't reload)<br />
+               <a id="link-3" ng-href="/{{'123'}}">link 3</a> (link, reload!)<br />
+               <a id="link-4" href="" name="xx" ng-click="value = 4">anchor</a> (link, don't reload)<br />
+               <a id="link-5" name="xxx" ng-click="value = 5">anchor</a> (no link)<br />
+               <a id="link-6" ng-href="{{value}}">link</a> (link, change location)
+             </file>
+             <file name="protractor.js" type="protractor">
+               it('should execute ng-click but not reload when href without value', function() {
+                 element(by.id('link-1')).click();
+                 expect(element(by.model('value')).getAttribute('value')).toEqual('1');
+                 expect(element(by.id('link-1')).getAttribute('href')).toBe('');
+               });
+
+               it('should execute ng-click but not reload when href empty string', function() {
+                 element(by.id('link-2')).click();
+                 expect(element(by.model('value')).getAttribute('value')).toEqual('2');
+                 expect(element(by.id('link-2')).getAttribute('href')).toBe('');
+               });
+
+               it('should execute ng-click and change url when ng-href specified', function() {
+                 expect(element(by.id('link-3')).getAttribute('href')).toMatch(/\/123$/);
+
+                 element(by.id('link-3')).click();
+
+                 // At this point, we navigate away from an Angular page, so we need
+                 // to use browser.driver to get the base webdriver.
+
+                 browser.wait(function() {
+                   return browser.driver.getCurrentUrl().then(function(url) {
+                     return url.match(/\/123$/);
+                   });
+                 }, 5000, 'page should navigate to /123');
+               });
+
+               it('should execute ng-click but not reload when href empty string and name specified', function() {
+                 element(by.id('link-4')).click();
+                 expect(element(by.model('value')).getAttribute('value')).toEqual('4');
+                 expect(element(by.id('link-4')).getAttribute('href')).toBe('');
+               });
+
+               it('should execute ng-click but not reload when no href but name specified', function() {
+                 element(by.id('link-5')).click();
+                 expect(element(by.model('value')).getAttribute('value')).toEqual('5');
+                 expect(element(by.id('link-5')).getAttribute('href')).toBe(null);
+               });
+
+               it('should only change url when only ng-href', function() {
+                 element(by.model('value')).clear();
+                 element(by.model('value')).sendKeys('6');
+                 expect(element(by.id('link-6')).getAttribute('href')).toMatch(/\/6$/);
+
+                 element(by.id('link-6')).click();
+
+                 // At this point, we navigate away from an Angular page, so we need
+                 // to use browser.driver to get the base webdriver.
+                 browser.wait(function() {
+                   return browser.driver.getCurrentUrl().then(function(url) {
+                     return url.match(/\/6$/);
+                   });
+                 }, 5000, 'page should navigate to /6');
+               });
+             </file>
+           </example>
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngSrc
+        * @restrict A
+        * @priority 99
+        *
+        * @description
+        * Using Angular markup like `{{hash}}` in a `src` attribute doesn't
+        * work right: The browser will fetch from the URL with the literal
+        * text `{{hash}}` until Angular replaces the expression inside
+        * `{{hash}}`. The `ngSrc` directive solves this problem.
+        *
+        * The buggy way to write it:
+        * ```html
+        * <img src="http://www.gravatar.com/avatar/{{hash}}" alt="Description"/>
+        * ```
+        *
+        * The correct way to write it:
+        * ```html
+        * <img ng-src="http://www.gravatar.com/avatar/{{hash}}" alt="Description" />
+        * ```
+        *
+        * @element IMG
+        * @param {template} ngSrc any string which can contain `{{}}` markup.
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngSrcset
+        * @restrict A
+        * @priority 99
+        *
+        * @description
+        * Using Angular markup like `{{hash}}` in a `srcset` attribute doesn't
+        * work right: The browser will fetch from the URL with the literal
+        * text `{{hash}}` until Angular replaces the expression inside
+        * `{{hash}}`. The `ngSrcset` directive solves this problem.
+        *
+        * The buggy way to write it:
+        * ```html
+        * <img srcset="http://www.gravatar.com/avatar/{{hash}} 2x" alt="Description"/>
+        * ```
+        *
+        * The correct way to write it:
+        * ```html
+        * <img ng-srcset="http://www.gravatar.com/avatar/{{hash}} 2x" alt="Description" />
+        * ```
+        *
+        * @element IMG
+        * @param {template} ngSrcset any string which can contain `{{}}` markup.
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngDisabled
+        * @restrict A
+        * @priority 100
+        *
+        * @description
+        *
+        * This directive sets the `disabled` attribute on the element if the
+        * {@link guide/expression expression} inside `ngDisabled` evaluates to truthy.
+        *
+        * A special directive is necessary because we cannot use interpolation inside the `disabled`
+        * attribute.  The following example would make the button enabled on Chrome/Firefox
+        * but not on older IEs:
+        *
+        * ```html
+        * <!-- See below for an example of ng-disabled being used correctly -->
+        * <div ng-init="isDisabled = false">
+        *  <button disabled="{{isDisabled}}">Disabled</button>
+        * </div>
+        * ```
+        *
+        * This is because the HTML specification does not require browsers to preserve the values of
+        * boolean attributes such as `disabled` (Their presence means true and their absence means false.)
+        * If we put an Angular interpolation expression into such an attribute then the
+        * binding information would be lost when the browser removes the attribute.
+        *
+        * @example
+           <example>
+             <file name="index.html">
+               <label>Click me to toggle: <input type="checkbox" ng-model="checked"></label><br/>
+               <button ng-model="button" ng-disabled="checked">Button</button>
+             </file>
+             <file name="protractor.js" type="protractor">
+               it('should toggle button', function() {
+                 expect(element(by.css('button')).getAttribute('disabled')).toBeFalsy();
+                 element(by.model('checked')).click();
+                 expect(element(by.css('button')).getAttribute('disabled')).toBeTruthy();
+               });
+             </file>
+           </example>
+        *
+        * @element INPUT
+        * @param {expression} ngDisabled If the {@link guide/expression expression} is truthy,
+        *     then the `disabled` attribute will be set on the element
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngChecked
+        * @restrict A
+        * @priority 100
+        *
+        * @description
+        * Sets the `checked` attribute on the element, if the expression inside `ngChecked` is truthy.
+        *
+        * Note that this directive should not be used together with {@link ngModel `ngModel`},
+        * as this can lead to unexpected behavior.
+        *
+        * ### Why do we need `ngChecked`?
+        *
+        * The HTML specification does not require browsers to preserve the values of boolean attributes
+        * such as checked. (Their presence means true and their absence means false.)
+        * If we put an Angular interpolation expression into such an attribute then the
+        * binding information would be lost when the browser removes the attribute.
+        * The `ngChecked` directive solves this problem for the `checked` attribute.
+        * This complementary directive is not removed by the browser and so provides
+        * a permanent reliable place to store the binding information.
+        * @example
+           <example>
+             <file name="index.html">
+               <label>Check me to check both: <input type="checkbox" ng-model="master"></label><br/>
+               <input id="checkSlave" type="checkbox" ng-checked="master" aria-label="Slave input">
+             </file>
+             <file name="protractor.js" type="protractor">
+               it('should check both checkBoxes', function() {
+                 expect(element(by.id('checkSlave')).getAttribute('checked')).toBeFalsy();
+                 element(by.model('master')).click();
+                 expect(element(by.id('checkSlave')).getAttribute('checked')).toBeTruthy();
+               });
+             </file>
+           </example>
+        *
+        * @element INPUT
+        * @param {expression} ngChecked If the {@link guide/expression expression} is truthy,
+        *     then the `checked` attribute will be set on the element
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngReadonly
+        * @restrict A
+        * @priority 100
+        *
+        * @description
+        * The HTML specification does not require browsers to preserve the values of boolean attributes
+        * such as readonly. (Their presence means true and their absence means false.)
+        * If we put an Angular interpolation expression into such an attribute then the
+        * binding information would be lost when the browser removes the attribute.
+        * The `ngReadonly` directive solves this problem for the `readonly` attribute.
+        * This complementary directive is not removed by the browser and so provides
+        * a permanent reliable place to store the binding information.
+        * @example
+           <example>
+             <file name="index.html">
+               <label>Check me to make text readonly: <input type="checkbox" ng-model="checked"></label><br/>
+               <input type="text" ng-readonly="checked" value="I'm Angular" aria-label="Readonly field" />
+             </file>
+             <file name="protractor.js" type="protractor">
+               it('should toggle readonly attr', function() {
+                 expect(element(by.css('[type="text"]')).getAttribute('readonly')).toBeFalsy();
+                 element(by.model('checked')).click();
+                 expect(element(by.css('[type="text"]')).getAttribute('readonly')).toBeTruthy();
+               });
+             </file>
+           </example>
+        *
+        * @element INPUT
+        * @param {expression} ngReadonly If the {@link guide/expression expression} is truthy,
+        *     then special attribute "readonly" will be set on the element
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngSelected
+        * @restrict A
+        * @priority 100
+        *
+        * @description
+        * The HTML specification does not require browsers to preserve the values of boolean attributes
+        * such as selected. (Their presence means true and their absence means false.)
+        * If we put an Angular interpolation expression into such an attribute then the
+        * binding information would be lost when the browser removes the attribute.
+        * The `ngSelected` directive solves this problem for the `selected` attribute.
+        * This complementary directive is not removed by the browser and so provides
+        * a permanent reliable place to store the binding information.
+        *
+        * @example
+           <example>
+             <file name="index.html">
+               <label>Check me to select: <input type="checkbox" ng-model="selected"></label><br/>
+               <select aria-label="ngSelected demo">
+                 <option>Hello!</option>
+                 <option id="greet" ng-selected="selected">Greetings!</option>
+               </select>
+             </file>
+             <file name="protractor.js" type="protractor">
+               it('should select Greetings!', function() {
+                 expect(element(by.id('greet')).getAttribute('selected')).toBeFalsy();
+                 element(by.model('selected')).click();
+                 expect(element(by.id('greet')).getAttribute('selected')).toBeTruthy();
+               });
+             </file>
+           </example>
+        *
+        * @element OPTION
+        * @param {expression} ngSelected If the {@link guide/expression expression} is truthy,
+        *     then special attribute "selected" will be set on the element
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngOpen
+        * @restrict A
+        * @priority 100
+        *
+        * @description
+        * The HTML specification does not require browsers to preserve the values of boolean attributes
+        * such as open. (Their presence means true and their absence means false.)
+        * If we put an Angular interpolation expression into such an attribute then the
+        * binding information would be lost when the browser removes the attribute.
+        * The `ngOpen` directive solves this problem for the `open` attribute.
+        * This complementary directive is not removed by the browser and so provides
+        * a permanent reliable place to store the binding information.
+        * @example
+            <example>
+              <file name="index.html">
+                <label>Check me check multiple: <input type="checkbox" ng-model="open"></label><br/>
+                <details id="details" ng-open="open">
+                   <summary>Show/Hide me</summary>
+                </details>
+              </file>
+              <file name="protractor.js" type="protractor">
+                it('should toggle open', function() {
+                  expect(element(by.id('details')).getAttribute('open')).toBeFalsy();
+                  element(by.model('open')).click();
+                  expect(element(by.id('details')).getAttribute('open')).toBeTruthy();
+                });
+              </file>
+            </example>
+        *
+        * @element DETAILS
+        * @param {expression} ngOpen If the {@link guide/expression expression} is truthy,
+        *     then special attribute "open" will be set on the element
+        */
+
+       var ngAttributeAliasDirectives = {};
+
+       // boolean attrs are evaluated
+       forEach(BOOLEAN_ATTR, function(propName, attrName) {
+         // binding to multiple is not supported
+         if (propName == "multiple") return;
+
+         function defaultLinkFn(scope, element, attr) {
+           scope.$watch(attr[normalized], function ngBooleanAttrWatchAction(value) {
+             attr.$set(attrName, !!value);
+           });
+         }
+
+         var normalized = directiveNormalize('ng-' + attrName);
+         var linkFn = defaultLinkFn;
+
+         if (propName === 'checked') {
+           linkFn = function(scope, element, attr) {
+             // ensuring ngChecked doesn't interfere with ngModel when both are set on the same input
+             if (attr.ngModel !== attr[normalized]) {
+               defaultLinkFn(scope, element, attr);
+             }
+           };
+         }
+
+         ngAttributeAliasDirectives[normalized] = function() {
+           return {
+             restrict: 'A',
+             priority: 100,
+             link: linkFn
+           };
+         };
+       });
+
+       // aliased input attrs are evaluated
+       forEach(ALIASED_ATTR, function(htmlAttr, ngAttr) {
+         ngAttributeAliasDirectives[ngAttr] = function() {
+           return {
+             priority: 100,
+             link: function(scope, element, attr) {
+               //special case ngPattern when a literal regular expression value
+               //is used as the expression (this way we don't have to watch anything).
+               if (ngAttr === "ngPattern" && attr.ngPattern.charAt(0) == "/") {
+                 var match = attr.ngPattern.match(REGEX_STRING_REGEXP);
+                 if (match) {
+                   attr.$set("ngPattern", new RegExp(match[1], match[2]));
+                   return;
+                 }
+               }
+
+               scope.$watch(attr[ngAttr], function ngAttrAliasWatchAction(value) {
+                 attr.$set(ngAttr, value);
+               });
+             }
+           };
+         };
+       });
+
+       // ng-src, ng-srcset, ng-href are interpolated
+       forEach(['src', 'srcset', 'href'], function(attrName) {
+         var normalized = directiveNormalize('ng-' + attrName);
+         ngAttributeAliasDirectives[normalized] = function() {
+           return {
+             priority: 99, // it needs to run after the attributes are interpolated
+             link: function(scope, element, attr) {
+               var propName = attrName,
+                   name = attrName;
+
+               if (attrName === 'href' &&
+                   toString.call(element.prop('href')) === '[object SVGAnimatedString]') {
+                 name = 'xlinkHref';
+                 attr.$attr[name] = 'xlink:href';
+                 propName = null;
+               }
+
+               attr.$observe(normalized, function(value) {
+                 if (!value) {
+                   if (attrName === 'href') {
+                     attr.$set(name, null);
+                   }
+                   return;
+                 }
+
+                 attr.$set(name, value);
+
+                 // on IE, if "ng:src" directive declaration is used and "src" attribute doesn't exist
+                 // then calling element.setAttribute('src', 'foo') doesn't do anything, so we need
+                 // to set the property as well to achieve the desired effect.
+                 // we use attr[attrName] value since $set can sanitize the url.
+                 if (msie && propName) element.prop(propName, attr[name]);
+               });
+             }
+           };
+         };
+       });
+
+       /* global -nullFormCtrl, -SUBMITTED_CLASS, addSetValidityMethod: true
+        */
+       var nullFormCtrl = {
+         $addControl: noop,
+         $$renameControl: nullFormRenameControl,
+         $removeControl: noop,
+         $setValidity: noop,
+         $setDirty: noop,
+         $setPristine: noop,
+         $setSubmitted: noop
+       },
+       SUBMITTED_CLASS = 'ng-submitted';
+
+       function nullFormRenameControl(control, name) {
+         control.$name = name;
+       }
+
+       /**
+        * @ngdoc type
+        * @name form.FormController
+        *
+        * @property {boolean} $pristine True if user has not interacted with the form yet.
+        * @property {boolean} $dirty True if user has already interacted with the form.
+        * @property {boolean} $valid True if all of the containing forms and controls are valid.
+        * @property {boolean} $invalid True if at least one containing control or form is invalid.
+        * @property {boolean} $pending True if at least one containing control or form is pending.
+        * @property {boolean} $submitted True if user has submitted the form even if its invalid.
+        *
+        * @property {Object} $error Is an object hash, containing references to controls or
+        *  forms with failing validators, where:
+        *
+        *  - keys are validation tokens (error names),
+        *  - values are arrays of controls or forms that have a failing validator for given error name.
+        *
+        *  Built-in validation tokens:
+        *
+        *  - `email`
+        *  - `max`
+        *  - `maxlength`
+        *  - `min`
+        *  - `minlength`
+        *  - `number`
+        *  - `pattern`
+        *  - `required`
+        *  - `url`
+        *  - `date`
+        *  - `datetimelocal`
+        *  - `time`
+        *  - `week`
+        *  - `month`
+        *
+        * @description
+        * `FormController` keeps track of all its controls and nested forms as well as the state of them,
+        * such as being valid/invalid or dirty/pristine.
+        *
+        * Each {@link ng.directive:form form} directive creates an instance
+        * of `FormController`.
+        *
+        */
+       //asks for $scope to fool the BC controller module
+       FormController.$inject = ['$element', '$attrs', '$scope', '$animate', '$interpolate'];
+       function FormController(element, attrs, $scope, $animate, $interpolate) {
+         var form = this,
+             controls = [];
+
+         // init state
+         form.$error = {};
+         form.$$success = {};
+         form.$pending = undefined;
+         form.$name = $interpolate(attrs.name || attrs.ngForm || '')($scope);
+         form.$dirty = false;
+         form.$pristine = true;
+         form.$valid = true;
+         form.$invalid = false;
+         form.$submitted = false;
+         form.$$parentForm = nullFormCtrl;
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$rollbackViewValue
+          *
+          * @description
+          * Rollback all form controls pending updates to the `$modelValue`.
+          *
+          * Updates may be pending by a debounced event or because the input is waiting for a some future
+          * event defined in `ng-model-options`. This method is typically needed by the reset button of
+          * a form that uses `ng-model-options` to pend updates.
+          */
+         form.$rollbackViewValue = function() {
+           forEach(controls, function(control) {
+             control.$rollbackViewValue();
+           });
+         };
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$commitViewValue
+          *
+          * @description
+          * Commit all form controls pending updates to the `$modelValue`.
+          *
+          * Updates may be pending by a debounced event or because the input is waiting for a some future
+          * event defined in `ng-model-options`. This method is rarely needed as `NgModelController`
+          * usually handles calling this in response to input events.
+          */
+         form.$commitViewValue = function() {
+           forEach(controls, function(control) {
+             control.$commitViewValue();
+           });
+         };
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$addControl
+          * @param {object} control control object, either a {@link form.FormController} or an
+          * {@link ngModel.NgModelController}
+          *
+          * @description
+          * Register a control with the form. Input elements using ngModelController do this automatically
+          * when they are linked.
+          *
+          * Note that the current state of the control will not be reflected on the new parent form. This
+          * is not an issue with normal use, as freshly compiled and linked controls are in a `$pristine`
+          * state.
+          *
+          * However, if the method is used programmatically, for example by adding dynamically created controls,
+          * or controls that have been previously removed without destroying their corresponding DOM element,
+          * it's the developers responsiblity to make sure the current state propagates to the parent form.
+          *
+          * For example, if an input control is added that is already `$dirty` and has `$error` properties,
+          * calling `$setDirty()` and `$validate()` afterwards will propagate the state to the parent form.
+          */
+         form.$addControl = function(control) {
+           // Breaking change - before, inputs whose name was "hasOwnProperty" were quietly ignored
+           // and not added to the scope.  Now we throw an error.
+           assertNotHasOwnProperty(control.$name, 'input');
+           controls.push(control);
+
+           if (control.$name) {
+             form[control.$name] = control;
+           }
+
+           control.$$parentForm = form;
+         };
+
+         // Private API: rename a form control
+         form.$$renameControl = function(control, newName) {
+           var oldName = control.$name;
+
+           if (form[oldName] === control) {
+             delete form[oldName];
+           }
+           form[newName] = control;
+           control.$name = newName;
+         };
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$removeControl
+          * @param {object} control control object, either a {@link form.FormController} or an
+          * {@link ngModel.NgModelController}
+          *
+          * @description
+          * Deregister a control from the form.
+          *
+          * Input elements using ngModelController do this automatically when they are destroyed.
+          *
+          * Note that only the removed control's validation state (`$errors`etc.) will be removed from the
+          * form. `$dirty`, `$submitted` states will not be changed, because the expected behavior can be
+          * different from case to case. For example, removing the only `$dirty` control from a form may or
+          * may not mean that the form is still `$dirty`.
+          */
+         form.$removeControl = function(control) {
+           if (control.$name && form[control.$name] === control) {
+             delete form[control.$name];
+           }
+           forEach(form.$pending, function(value, name) {
+             form.$setValidity(name, null, control);
+           });
+           forEach(form.$error, function(value, name) {
+             form.$setValidity(name, null, control);
+           });
+           forEach(form.$$success, function(value, name) {
+             form.$setValidity(name, null, control);
+           });
+
+           arrayRemove(controls, control);
+           control.$$parentForm = nullFormCtrl;
+         };
+
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$setValidity
+          *
+          * @description
+          * Sets the validity of a form control.
+          *
+          * This method will also propagate to parent forms.
+          */
+         addSetValidityMethod({
+           ctrl: this,
+           $element: element,
+           set: function(object, property, controller) {
+             var list = object[property];
+             if (!list) {
+               object[property] = [controller];
+             } else {
+               var index = list.indexOf(controller);
+               if (index === -1) {
+                 list.push(controller);
+               }
+             }
+           },
+           unset: function(object, property, controller) {
+             var list = object[property];
+             if (!list) {
+               return;
+             }
+             arrayRemove(list, controller);
+             if (list.length === 0) {
+               delete object[property];
+             }
+           },
+           $animate: $animate
+         });
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$setDirty
+          *
+          * @description
+          * Sets the form to a dirty state.
+          *
+          * This method can be called to add the 'ng-dirty' class and set the form to a dirty
+          * state (ng-dirty class). This method will also propagate to parent forms.
+          */
+         form.$setDirty = function() {
+           $animate.removeClass(element, PRISTINE_CLASS);
+           $animate.addClass(element, DIRTY_CLASS);
+           form.$dirty = true;
+           form.$pristine = false;
+           form.$$parentForm.$setDirty();
+         };
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$setPristine
+          *
+          * @description
+          * Sets the form to its pristine state.
+          *
+          * This method can be called to remove the 'ng-dirty' class and set the form to its pristine
+          * state (ng-pristine class). This method will also propagate to all the controls contained
+          * in this form.
+          *
+          * Setting a form back to a pristine state is often useful when we want to 'reuse' a form after
+          * saving or resetting it.
+          */
+         form.$setPristine = function() {
+           $animate.setClass(element, PRISTINE_CLASS, DIRTY_CLASS + ' ' + SUBMITTED_CLASS);
+           form.$dirty = false;
+           form.$pristine = true;
+           form.$submitted = false;
+           forEach(controls, function(control) {
+             control.$setPristine();
+           });
+         };
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$setUntouched
+          *
+          * @description
+          * Sets the form to its untouched state.
+          *
+          * This method can be called to remove the 'ng-touched' class and set the form controls to their
+          * untouched state (ng-untouched class).
+          *
+          * Setting a form controls back to their untouched state is often useful when setting the form
+          * back to its pristine state.
+          */
+         form.$setUntouched = function() {
+           forEach(controls, function(control) {
+             control.$setUntouched();
+           });
+         };
+
+         /**
+          * @ngdoc method
+          * @name form.FormController#$setSubmitted
+          *
+          * @description
+          * Sets the form to its submitted state.
+          */
+         form.$setSubmitted = function() {
+           $animate.addClass(element, SUBMITTED_CLASS);
+           form.$submitted = true;
+           form.$$parentForm.$setSubmitted();
+         };
+       }
+
+       /**
+        * @ngdoc directive
+        * @name ngForm
+        * @restrict EAC
+        *
+        * @description
+        * Nestable alias of {@link ng.directive:form `form`} directive. HTML
+        * does not allow nesting of form elements. It is useful to nest forms, for example if the validity of a
+        * sub-group of controls needs to be determined.
+        *
+        * Note: the purpose of `ngForm` is to group controls,
+        * but not to be a replacement for the `<form>` tag with all of its capabilities
+        * (e.g. posting to the server, ...).
+        *
+        * @param {string=} ngForm|name Name of the form. If specified, the form controller will be published into
+        *                       related scope, under this name.
+        *
+        */
+
+        /**
+        * @ngdoc directive
+        * @name form
+        * @restrict E
+        *
+        * @description
+        * Directive that instantiates
+        * {@link form.FormController FormController}.
+        *
+        * If the `name` attribute is specified, the form controller is published onto the current scope under
+        * this name.
+        *
+        * # Alias: {@link ng.directive:ngForm `ngForm`}
+        *
+        * In Angular, forms can be nested. This means that the outer form is valid when all of the child
+        * forms are valid as well. However, browsers do not allow nesting of `<form>` elements, so
+        * Angular provides the {@link ng.directive:ngForm `ngForm`} directive which behaves identically to
+        * `<form>` but can be nested.  This allows you to have nested forms, which is very useful when
+        * using Angular validation directives in forms that are dynamically generated using the
+        * {@link ng.directive:ngRepeat `ngRepeat`} directive. Since you cannot dynamically generate the `name`
+        * attribute of input elements using interpolation, you have to wrap each set of repeated inputs in an
+        * `ngForm` directive and nest these in an outer `form` element.
+        *
+        *
+        * # CSS classes
+        *  - `ng-valid` is set if the form is valid.
+        *  - `ng-invalid` is set if the form is invalid.
+        *  - `ng-pending` is set if the form is pending.
+        *  - `ng-pristine` is set if the form is pristine.
+        *  - `ng-dirty` is set if the form is dirty.
+        *  - `ng-submitted` is set if the form was submitted.
+        *
+        * Keep in mind that ngAnimate can detect each of these classes when added and removed.
+        *
+        *
+        * # Submitting a form and preventing the default action
+        *
+        * Since the role of forms in client-side Angular applications is different than in classical
+        * roundtrip apps, it is desirable for the browser not to translate the form submission into a full
+        * page reload that sends the data to the server. Instead some javascript logic should be triggered
+        * to handle the form submission in an application-specific way.
+        *
+        * For this reason, Angular prevents the default action (form submission to the server) unless the
+        * `<form>` element has an `action` attribute specified.
+        *
+        * You can use one of the following two ways to specify what javascript method should be called when
+        * a form is submitted:
+        *
+        * - {@link ng.directive:ngSubmit ngSubmit} directive on the form element
+        * - {@link ng.directive:ngClick ngClick} directive on the first
+         *  button or input field of type submit (input[type=submit])
+        *
+        * To prevent double execution of the handler, use only one of the {@link ng.directive:ngSubmit ngSubmit}
+        * or {@link ng.directive:ngClick ngClick} directives.
+        * This is because of the following form submission rules in the HTML specification:
+        *
+        * - If a form has only one input field then hitting enter in this field triggers form submit
+        * (`ngSubmit`)
+        * - if a form has 2+ input fields and no buttons or input[type=submit] then hitting enter
+        * doesn't trigger submit
+        * - if a form has one or more input fields and one or more buttons or input[type=submit] then
+        * hitting enter in any of the input fields will trigger the click handler on the *first* button or
+        * input[type=submit] (`ngClick`) *and* a submit handler on the enclosing form (`ngSubmit`)
+        *
+        * Any pending `ngModelOptions` changes will take place immediately when an enclosing form is
+        * submitted. Note that `ngClick` events will occur before the model is updated. Use `ngSubmit`
+        * to have access to the updated model.
+        *
+        * ## Animation Hooks
+        *
+        * Animations in ngForm are triggered when any of the associated CSS classes are added and removed.
+        * These classes are: `.ng-pristine`, `.ng-dirty`, `.ng-invalid` and `.ng-valid` as well as any
+        * other validations that are performed within the form. Animations in ngForm are similar to how
+        * they work in ngClass and animations can be hooked into using CSS transitions, keyframes as well
+        * as JS animations.
+        *
+        * The following example shows a simple way to utilize CSS transitions to style a form element
+        * that has been rendered as invalid after it has been validated:
+        *
+        * <pre>
+        * //be sure to include ngAnimate as a module to hook into more
+        * //advanced animations
+        * .my-form {
+        *   transition:0.5s linear all;
+        *   background: white;
+        * }
+        * .my-form.ng-invalid {
+        *   background: red;
+        *   color:white;
+        * }
+        * </pre>
+        *
+        * @example
+           <example deps="angular-animate.js" animations="true" fixBase="true" module="formExample">
+             <file name="index.html">
+              <script>
+                angular.module('formExample', [])
+                  .controller('FormController', ['$scope', function($scope) {
+                    $scope.userType = 'guest';
+                  }]);
+              </script>
+              <style>
+               .my-form {
+                 transition:all linear 0.5s;
+                 background: transparent;
+               }
+               .my-form.ng-invalid {
+                 background: red;
+               }
+              </style>
+              <form name="myForm" ng-controller="FormController" class="my-form">
+                userType: <input name="input" ng-model="userType" required>
+                <span class="error" ng-show="myForm.input.$error.required">Required!</span><br>
+                <code>userType = {{userType}}</code><br>
+                <code>myForm.input.$valid = {{myForm.input.$valid}}</code><br>
+                <code>myForm.input.$error = {{myForm.input.$error}}</code><br>
+                <code>myForm.$valid = {{myForm.$valid}}</code><br>
+                <code>myForm.$error.required = {{!!myForm.$error.required}}</code><br>
+               </form>
+             </file>
+             <file name="protractor.js" type="protractor">
+               it('should initialize to model', function() {
+                 var userType = element(by.binding('userType'));
+                 var valid = element(by.binding('myForm.input.$valid'));
+
+                 expect(userType.getText()).toContain('guest');
+                 expect(valid.getText()).toContain('true');
+               });
+
+               it('should be invalid if empty', function() {
+                 var userType = element(by.binding('userType'));
+                 var valid = element(by.binding('myForm.input.$valid'));
+                 var userInput = element(by.model('userType'));
+
+                 userInput.clear();
+                 userInput.sendKeys('');
+
+                 expect(userType.getText()).toEqual('userType =');
+                 expect(valid.getText()).toContain('false');
+               });
+             </file>
+           </example>
+        *
+        * @param {string=} name Name of the form. If specified, the form controller will be published into
+        *                       related scope, under this name.
+        */
+       var formDirectiveFactory = function(isNgForm) {
+         return ['$timeout', '$parse', function($timeout, $parse) {
+           var formDirective = {
+             name: 'form',
+             restrict: isNgForm ? 'EAC' : 'E',
+             require: ['form', '^^?form'], //first is the form's own ctrl, second is an optional parent form
+             controller: FormController,
+             compile: function ngFormCompile(formElement, attr) {
+               // Setup initial state of the control
+               formElement.addClass(PRISTINE_CLASS).addClass(VALID_CLASS);
+
+               var nameAttr = attr.name ? 'name' : (isNgForm && attr.ngForm ? 'ngForm' : false);
+
+               return {
+                 pre: function ngFormPreLink(scope, formElement, attr, ctrls) {
+                   var controller = ctrls[0];
+
+                   // if `action` attr is not present on the form, prevent the default action (submission)
+                   if (!('action' in attr)) {
+                     // we can't use jq events because if a form is destroyed during submission the default
+                     // action is not prevented. see #1238
+                     //
+                     // IE 9 is not affected because it doesn't fire a submit event and try to do a full
+                     // page reload if the form was destroyed by submission of the form via a click handler
+                     // on a button in the form. Looks like an IE9 specific bug.
+                     var handleFormSubmission = function(event) {
+                       scope.$apply(function() {
+                         controller.$commitViewValue();
+                         controller.$setSubmitted();
+                       });
+
+                       event.preventDefault();
+                     };
+
+                     addEventListenerFn(formElement[0], 'submit', handleFormSubmission);
+
+                     // unregister the preventDefault listener so that we don't not leak memory but in a
+                     // way that will achieve the prevention of the default action.
+                     formElement.on('$destroy', function() {
+                       $timeout(function() {
+                         removeEventListenerFn(formElement[0], 'submit', handleFormSubmission);
+                       }, 0, false);
+                     });
+                   }
+
+                   var parentFormCtrl = ctrls[1] || controller.$$parentForm;
+                   parentFormCtrl.$addControl(controller);
+
+                   var setter = nameAttr ? getSetter(controller.$name) : noop;
+
+                   if (nameAttr) {
+                     setter(scope, controller);
+                     attr.$observe(nameAttr, function(newValue) {
+                       if (controller.$name === newValue) return;
+                       setter(scope, undefined);
+                       controller.$$parentForm.$$renameControl(controller, newValue);
+                       setter = getSetter(controller.$name);
+                       setter(scope, controller);
+                     });
+                   }
+                   formElement.on('$destroy', function() {
+                     controller.$$parentForm.$removeControl(controller);
+                     setter(scope, undefined);
+                     extend(controller, nullFormCtrl); //stop propagating child destruction handlers upwards
+                   });
+                 }
+               };
+             }
+           };
+
+           return formDirective;
+
+           function getSetter(expression) {
+             if (expression === '') {
+               //create an assignable expression, so forms with an empty name can be renamed later
+               return $parse('this[""]').assign;
+             }
+             return $parse(expression).assign || noop;
+           }
+         }];
+       };
+
+       var formDirective = formDirectiveFactory();
+       var ngFormDirective = formDirectiveFactory(true);
+
+       /* global VALID_CLASS: false,
+         INVALID_CLASS: false,
+         PRISTINE_CLASS: false,
+         DIRTY_CLASS: false,
+         UNTOUCHED_CLASS: false,
+         TOUCHED_CLASS: false,
+         ngModelMinErr: false,
+       */
+
+       // Regex code is obtained from SO: https://stackoverflow.com/questions/3143070/javascript-regex-iso-datetime#answer-3143231
+       var ISO_DATE_REGEXP = /\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z)/;
+       // See valid URLs in RFC3987 (http://tools.ietf.org/html/rfc3987)
+       var URL_REGEXP = /^[A-Za-z][A-Za-z\d.+-]*:\/*(?:\w+(?::\w+)?@)?[^\s/]+(?::\d+)?(?:\/[\w#!:.?+=&%@\-/]*)?$/;
+       var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i;
+       var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/;
+       var DATE_REGEXP = /^(\d{4})-(\d{2})-(\d{2})$/;
+       var DATETIMELOCAL_REGEXP = /^(\d{4})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/;
+       var WEEK_REGEXP = /^(\d{4})-W(\d\d)$/;
+       var MONTH_REGEXP = /^(\d{4})-(\d\d)$/;
+       var TIME_REGEXP = /^(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/;
+
+       var inputType = {
+
+         /**
+          * @ngdoc input
+          * @name input[text]
+          *
+          * @description
+          * Standard HTML text input with angular data binding, inherited by most of the `input` elements.
+          *
+          *
+          * @param {string} ngModel Assignable angular expression to data-bind to.
+          * @param {string=} name Property name of the form under which the control is published.
+          * @param {string=} required Adds `required` validation error key if the value is not entered.
+          * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+          *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+          *    `required` when you want to data-bind to the `required` attribute.
+          * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than
+          *    minlength.
+          * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than
+          *    maxlength. Setting the attribute to a negative or non-numeric value, allows view values of
+          *    any length.
+          * @param {string=} pattern Similar to `ngPattern` except that the attribute value is the actual string
+          *    that contains the regular expression body that will be converted to a regular expression
+          *    as in the ngPattern directive.
+          * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match
+          *    a RegExp found by evaluating the Angular expression given in the attribute value.
+          *    If the expression evaluates to a RegExp object, then this is used directly.
+          *    If the expression evaluates to a string, then it will be converted to a RegExp
+          *    after wrapping it in `^` and `$` characters. For instance, `"abc"` will be converted to
+          *    `new RegExp('^abc$')`.<br />
+          *    **Note:** Avoid using the `g` flag on the RegExp, as it will cause each successive search to
+          *    start at the index of the last search's match, thus not taking the whole input value into
+          *    account.
+          * @param {string=} ngChange Angular expression to be executed when input changes due to user
+          *    interaction with the input element.
+          * @param {boolean=} [ngTrim=true] If set to false Angular will not automatically trim the input.
+          *    This parameter is ignored for input[type=password] controls, which will never trim the
+          *    input.
+          *
+          * @example
+             <example name="text-input-directive" module="textInputExample">
+               <file name="index.html">
+                <script>
+                  angular.module('textInputExample', [])
+                    .controller('ExampleController', ['$scope', function($scope) {
+                      $scope.example = {
+                        text: 'guest',
+                        word: /^\s*\w*\s*$/
+                      };
+                    }]);
+                </script>
+                <form name="myForm" ng-controller="ExampleController">
+                  <label>Single word:
+                    <input type="text" name="input" ng-model="example.text"
+                           ng-pattern="example.word" required ng-trim="false">
+                  </label>
+                  <div role="alert">
+                    <span class="error" ng-show="myForm.input.$error.required">
+                      Required!</span>
+                    <span class="error" ng-show="myForm.input.$error.pattern">
+                      Single word only!</span>
+                  </div>
+                  <tt>text = {{example.text}}</tt><br/>
+                  <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+                  <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+                  <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+                  <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+                 </form>
+               </file>
+               <file name="protractor.js" type="protractor">
+                 var text = element(by.binding('example.text'));
+                 var valid = element(by.binding('myForm.input.$valid'));
+                 var input = element(by.model('example.text'));
+
+                 it('should initialize to model', function() {
+                   expect(text.getText()).toContain('guest');
+                   expect(valid.getText()).toContain('true');
+                 });
+
+                 it('should be invalid if empty', function() {
+                   input.clear();
+                   input.sendKeys('');
+
+                   expect(text.getText()).toEqual('text =');
+                   expect(valid.getText()).toContain('false');
+                 });
+
+                 it('should be invalid if multi word', function() {
+                   input.clear();
+                   input.sendKeys('hello world');
+
+                   expect(valid.getText()).toContain('false');
+                 });
+               </file>
+             </example>
+          */
+         'text': textInputType,
+
+           /**
+            * @ngdoc input
+            * @name input[date]
+            *
+            * @description
+            * Input with date validation and transformation. In browsers that do not yet support
+            * the HTML5 date input, a text element will be used. In that case, text must be entered in a valid ISO-8601
+            * date format (yyyy-MM-dd), for example: `2009-01-06`. Since many
+            * modern browsers do not yet support this input type, it is important to provide cues to users on the
+            * expected input format via a placeholder or label.
+            *
+            * The model must always be a Date object, otherwise Angular will throw an error.
+            * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string.
+            *
+            * The timezone to be used to read/write the `Date` instance in the model can be defined using
+            * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser.
+            *
+            * @param {string} ngModel Assignable angular expression to data-bind to.
+            * @param {string=} name Property name of the form under which the control is published.
+            * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`. This must be a
+            *   valid ISO date string (yyyy-MM-dd). You can also use interpolation inside this attribute
+            *   (e.g. `min="{{minDate | date:'yyyy-MM-dd'}}"`). Note that `min` will also add native HTML5
+            *   constraint validation.
+            * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`. This must be
+            *   a valid ISO date string (yyyy-MM-dd). You can also use interpolation inside this attribute
+            *   (e.g. `max="{{maxDate | date:'yyyy-MM-dd'}}"`). Note that `max` will also add native HTML5
+            *   constraint validation.
+            * @param {(date|string)=} ngMin Sets the `min` validation constraint to the Date / ISO date string
+            *   the `ngMin` expression evaluates to. Note that it does not set the `min` attribute.
+            * @param {(date|string)=} ngMax Sets the `max` validation constraint to the Date / ISO date string
+            *   the `ngMax` expression evaluates to. Note that it does not set the `max` attribute.
+            * @param {string=} required Sets `required` validation error key if the value is not entered.
+            * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+            *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+            *    `required` when you want to data-bind to the `required` attribute.
+            * @param {string=} ngChange Angular expression to be executed when input changes due to user
+            *    interaction with the input element.
+            *
+            * @example
+            <example name="date-input-directive" module="dateInputExample">
+            <file name="index.html">
+              <script>
+                 angular.module('dateInputExample', [])
+                   .controller('DateController', ['$scope', function($scope) {
+                     $scope.example = {
+                       value: new Date(2013, 9, 22)
+                     };
+                   }]);
+              </script>
+              <form name="myForm" ng-controller="DateController as dateCtrl">
+                 <label for="exampleInput">Pick a date in 2013:</label>
+                 <input type="date" id="exampleInput" name="input" ng-model="example.value"
+                     placeholder="yyyy-MM-dd" min="2013-01-01" max="2013-12-31" required />
+                 <div role="alert">
+                   <span class="error" ng-show="myForm.input.$error.required">
+                       Required!</span>
+                   <span class="error" ng-show="myForm.input.$error.date">
+                       Not a valid date!</span>
+                  </div>
+                  <tt>value = {{example.value | date: "yyyy-MM-dd"}}</tt><br/>
+                  <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+                  <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+                  <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+                  <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+              </form>
+            </file>
+            <file name="protractor.js" type="protractor">
+               var value = element(by.binding('example.value | date: "yyyy-MM-dd"'));
+               var valid = element(by.binding('myForm.input.$valid'));
+               var input = element(by.model('example.value'));
+
+               // currently protractor/webdriver does not support
+               // sending keys to all known HTML5 input controls
+               // for various browsers (see https://github.com/angular/protractor/issues/562).
+               function setInput(val) {
+                 // set the value of the element and force validation.
+                 var scr = "var ipt = document.getElementById('exampleInput'); " +
+                 "ipt.value = '" + val + "';" +
+                 "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });";
+                 browser.executeScript(scr);
+               }
+
+               it('should initialize to model', function() {
+                 expect(value.getText()).toContain('2013-10-22');
+                 expect(valid.getText()).toContain('myForm.input.$valid = true');
+               });
+
+               it('should be invalid if empty', function() {
+                 setInput('');
+                 expect(value.getText()).toEqual('value =');
+                 expect(valid.getText()).toContain('myForm.input.$valid = false');
+               });
+
+               it('should be invalid if over max', function() {
+                 setInput('2015-01-01');
+                 expect(value.getText()).toContain('');
+                 expect(valid.getText()).toContain('myForm.input.$valid = false');
+               });
+            </file>
+            </example>
+            */
+         'date': createDateInputType('date', DATE_REGEXP,
+                createDateParser(DATE_REGEXP, ['yyyy', 'MM', 'dd']),
+                'yyyy-MM-dd'),
+
+          /**
+           * @ngdoc input
+           * @name input[datetime-local]
+           *
+           * @description
+           * Input with datetime validation and transformation. In browsers that do not yet support
+           * the HTML5 date input, a text element will be used. In that case, the text must be entered in a valid ISO-8601
+           * local datetime format (yyyy-MM-ddTHH:mm:ss), for example: `2010-12-28T14:57:00`.
+           *
+           * The model must always be a Date object, otherwise Angular will throw an error.
+           * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string.
+           *
+           * The timezone to be used to read/write the `Date` instance in the model can be defined using
+           * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser.
+           *
+           * @param {string} ngModel Assignable angular expression to data-bind to.
+           * @param {string=} name Property name of the form under which the control is published.
+           * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`.
+           *   This must be a valid ISO datetime format (yyyy-MM-ddTHH:mm:ss). You can also use interpolation
+           *   inside this attribute (e.g. `min="{{minDatetimeLocal | date:'yyyy-MM-ddTHH:mm:ss'}}"`).
+           *   Note that `min` will also add native HTML5 constraint validation.
+           * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`.
+           *   This must be a valid ISO datetime format (yyyy-MM-ddTHH:mm:ss). You can also use interpolation
+           *   inside this attribute (e.g. `max="{{maxDatetimeLocal | date:'yyyy-MM-ddTHH:mm:ss'}}"`).
+           *   Note that `max` will also add native HTML5 constraint validation.
+           * @param {(date|string)=} ngMin Sets the `min` validation error key to the Date / ISO datetime string
+           *   the `ngMin` expression evaluates to. Note that it does not set the `min` attribute.
+           * @param {(date|string)=} ngMax Sets the `max` validation error key to the Date / ISO datetime string
+           *   the `ngMax` expression evaluates to. Note that it does not set the `max` attribute.
+           * @param {string=} required Sets `required` validation error key if the value is not entered.
+           * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+           *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+           *    `required` when you want to data-bind to the `required` attribute.
+           * @param {string=} ngChange Angular expression to be executed when input changes due to user
+           *    interaction with the input element.
+           *
+           * @example
+           <example name="datetimelocal-input-directive" module="dateExample">
+           <file name="index.html">
+             <script>
+               angular.module('dateExample', [])
+                 .controller('DateController', ['$scope', function($scope) {
+                   $scope.example = {
+                     value: new Date(2010, 11, 28, 14, 57)
+                   };
+                 }]);
+             </script>
+             <form name="myForm" ng-controller="DateController as dateCtrl">
+               <label for="exampleInput">Pick a date between in 2013:</label>
+               <input type="datetime-local" id="exampleInput" name="input" ng-model="example.value"
+                   placeholder="yyyy-MM-ddTHH:mm:ss" min="2001-01-01T00:00:00" max="2013-12-31T00:00:00" required />
+               <div role="alert">
+                 <span class="error" ng-show="myForm.input.$error.required">
+                     Required!</span>
+                 <span class="error" ng-show="myForm.input.$error.datetimelocal">
+                     Not a valid date!</span>
+               </div>
+               <tt>value = {{example.value | date: "yyyy-MM-ddTHH:mm:ss"}}</tt><br/>
+               <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+               <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+               <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+               <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+             </form>
+           </file>
+           <file name="protractor.js" type="protractor">
+             var value = element(by.binding('example.value | date: "yyyy-MM-ddTHH:mm:ss"'));
+             var valid = element(by.binding('myForm.input.$valid'));
+             var input = element(by.model('example.value'));
+
+             // currently protractor/webdriver does not support
+             // sending keys to all known HTML5 input controls
+             // for various browsers (https://github.com/angular/protractor/issues/562).
+             function setInput(val) {
+               // set the value of the element and force validation.
+               var scr = "var ipt = document.getElementById('exampleInput'); " +
+               "ipt.value = '" + val + "';" +
+               "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });";
+               browser.executeScript(scr);
+             }
+
+             it('should initialize to model', function() {
+               expect(value.getText()).toContain('2010-12-28T14:57:00');
+               expect(valid.getText()).toContain('myForm.input.$valid = true');
+             });
+
+             it('should be invalid if empty', function() {
+               setInput('');
+               expect(value.getText()).toEqual('value =');
+               expect(valid.getText()).toContain('myForm.input.$valid = false');
+             });
+
+             it('should be invalid if over max', function() {
+               setInput('2015-01-01T23:59:00');
+               expect(value.getText()).toContain('');
+               expect(valid.getText()).toContain('myForm.input.$valid = false');
+             });
+           </file>
+           </example>
+           */
+         'datetime-local': createDateInputType('datetimelocal', DATETIMELOCAL_REGEXP,
+             createDateParser(DATETIMELOCAL_REGEXP, ['yyyy', 'MM', 'dd', 'HH', 'mm', 'ss', 'sss']),
+             'yyyy-MM-ddTHH:mm:ss.sss'),
+
+         /**
+          * @ngdoc input
+          * @name input[time]
+          *
+          * @description
+          * Input with time validation and transformation. In browsers that do not yet support
+          * the HTML5 date input, a text element will be used. In that case, the text must be entered in a valid ISO-8601
+          * local time format (HH:mm:ss), for example: `14:57:00`. Model must be a Date object. This binding will always output a
+          * Date object to the model of January 1, 1970, or local date `new Date(1970, 0, 1, HH, mm, ss)`.
+          *
+          * The model must always be a Date object, otherwise Angular will throw an error.
+          * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string.
+          *
+          * The timezone to be used to read/write the `Date` instance in the model can be defined using
+          * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser.
+          *
+          * @param {string} ngModel Assignable angular expression to data-bind to.
+          * @param {string=} name Property name of the form under which the control is published.
+          * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`.
+          *   This must be a valid ISO time format (HH:mm:ss). You can also use interpolation inside this
+          *   attribute (e.g. `min="{{minTime | date:'HH:mm:ss'}}"`). Note that `min` will also add
+          *   native HTML5 constraint validation.
+          * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`.
+          *   This must be a valid ISO time format (HH:mm:ss). You can also use interpolation inside this
+          *   attribute (e.g. `max="{{maxTime | date:'HH:mm:ss'}}"`). Note that `max` will also add
+          *   native HTML5 constraint validation.
+          * @param {(date|string)=} ngMin Sets the `min` validation constraint to the Date / ISO time string the
+          *   `ngMin` expression evaluates to. Note that it does not set the `min` attribute.
+          * @param {(date|string)=} ngMax Sets the `max` validation constraint to the Date / ISO time string the
+          *   `ngMax` expression evaluates to. Note that it does not set the `max` attribute.
+          * @param {string=} required Sets `required` validation error key if the value is not entered.
+          * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+          *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+          *    `required` when you want to data-bind to the `required` attribute.
+          * @param {string=} ngChange Angular expression to be executed when input changes due to user
+          *    interaction with the input element.
+          *
+          * @example
+          <example name="time-input-directive" module="timeExample">
+          <file name="index.html">
+            <script>
+             angular.module('timeExample', [])
+               .controller('DateController', ['$scope', function($scope) {
+                 $scope.example = {
+                   value: new Date(1970, 0, 1, 14, 57, 0)
+                 };
+               }]);
+            </script>
+            <form name="myForm" ng-controller="DateController as dateCtrl">
+               <label for="exampleInput">Pick a between 8am and 5pm:</label>
+               <input type="time" id="exampleInput" name="input" ng-model="example.value"
+                   placeholder="HH:mm:ss" min="08:00:00" max="17:00:00" required />
+               <div role="alert">
+                 <span class="error" ng-show="myForm.input.$error.required">
+                     Required!</span>
+                 <span class="error" ng-show="myForm.input.$error.time">
+                     Not a valid date!</span>
+               </div>
+               <tt>value = {{example.value | date: "HH:mm:ss"}}</tt><br/>
+               <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+               <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+               <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+               <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+            </form>
+          </file>
+          <file name="protractor.js" type="protractor">
+             var value = element(by.binding('example.value | date: "HH:mm:ss"'));
+             var valid = element(by.binding('myForm.input.$valid'));
+             var input = element(by.model('example.value'));
+
+             // currently protractor/webdriver does not support
+             // sending keys to all known HTML5 input controls
+             // for various browsers (https://github.com/angular/protractor/issues/562).
+             function setInput(val) {
+               // set the value of the element and force validation.
+               var scr = "var ipt = document.getElementById('exampleInput'); " +
+               "ipt.value = '" + val + "';" +
+               "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });";
+               browser.executeScript(scr);
+             }
+
+             it('should initialize to model', function() {
+               expect(value.getText()).toContain('14:57:00');
+               expect(valid.getText()).toContain('myForm.input.$valid = true');
+             });
+
+             it('should be invalid if empty', function() {
+               setInput('');
+               expect(value.getText()).toEqual('value =');
+               expect(valid.getText()).toContain('myForm.input.$valid = false');
+             });
+
+             it('should be invalid if over max', function() {
+               setInput('23:59:00');
+               expect(value.getText()).toContain('');
+               expect(valid.getText()).toContain('myForm.input.$valid = false');
+             });
+          </file>
+          </example>
+          */
+         'time': createDateInputType('time', TIME_REGEXP,
+             createDateParser(TIME_REGEXP, ['HH', 'mm', 'ss', 'sss']),
+            'HH:mm:ss.sss'),
+
+          /**
+           * @ngdoc input
+           * @name input[week]
+           *
+           * @description
+           * Input with week-of-the-year validation and transformation to Date. In browsers that do not yet support
+           * the HTML5 week input, a text element will be used. In that case, the text must be entered in a valid ISO-8601
+           * week format (yyyy-W##), for example: `2013-W02`.
+           *
+           * The model must always be a Date object, otherwise Angular will throw an error.
+           * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string.
+           *
+           * The timezone to be used to read/write the `Date` instance in the model can be defined using
+           * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser.
+           *
+           * @param {string} ngModel Assignable angular expression to data-bind to.
+           * @param {string=} name Property name of the form under which the control is published.
+           * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`.
+           *   This must be a valid ISO week format (yyyy-W##). You can also use interpolation inside this
+           *   attribute (e.g. `min="{{minWeek | date:'yyyy-Www'}}"`). Note that `min` will also add
+           *   native HTML5 constraint validation.
+           * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`.
+           *   This must be a valid ISO week format (yyyy-W##). You can also use interpolation inside this
+           *   attribute (e.g. `max="{{maxWeek | date:'yyyy-Www'}}"`). Note that `max` will also add
+           *   native HTML5 constraint validation.
+           * @param {(date|string)=} ngMin Sets the `min` validation constraint to the Date / ISO week string
+           *   the `ngMin` expression evaluates to. Note that it does not set the `min` attribute.
+           * @param {(date|string)=} ngMax Sets the `max` validation constraint to the Date / ISO week string
+           *   the `ngMax` expression evaluates to. Note that it does not set the `max` attribute.
+           * @param {string=} required Sets `required` validation error key if the value is not entered.
+           * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+           *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+           *    `required` when you want to data-bind to the `required` attribute.
+           * @param {string=} ngChange Angular expression to be executed when input changes due to user
+           *    interaction with the input element.
+           *
+           * @example
+           <example name="week-input-directive" module="weekExample">
+           <file name="index.html">
+             <script>
+             angular.module('weekExample', [])
+               .controller('DateController', ['$scope', function($scope) {
+                 $scope.example = {
+                   value: new Date(2013, 0, 3)
+                 };
+               }]);
+             </script>
+             <form name="myForm" ng-controller="DateController as dateCtrl">
+               <label>Pick a date between in 2013:
+                 <input id="exampleInput" type="week" name="input" ng-model="example.value"
+                        placeholder="YYYY-W##" min="2012-W32"
+                        max="2013-W52" required />
+               </label>
+               <div role="alert">
+                 <span class="error" ng-show="myForm.input.$error.required">
+                     Required!</span>
+                 <span class="error" ng-show="myForm.input.$error.week">
+                     Not a valid date!</span>
+               </div>
+               <tt>value = {{example.value | date: "yyyy-Www"}}</tt><br/>
+               <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+               <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+               <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+               <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+             </form>
+           </file>
+           <file name="protractor.js" type="protractor">
+             var value = element(by.binding('example.value | date: "yyyy-Www"'));
+             var valid = element(by.binding('myForm.input.$valid'));
+             var input = element(by.model('example.value'));
+
+             // currently protractor/webdriver does not support
+             // sending keys to all known HTML5 input controls
+             // for various browsers (https://github.com/angular/protractor/issues/562).
+             function setInput(val) {
+               // set the value of the element and force validation.
+               var scr = "var ipt = document.getElementById('exampleInput'); " +
+               "ipt.value = '" + val + "';" +
+               "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });";
+               browser.executeScript(scr);
+             }
+
+             it('should initialize to model', function() {
+               expect(value.getText()).toContain('2013-W01');
+               expect(valid.getText()).toContain('myForm.input.$valid = true');
+             });
+
+             it('should be invalid if empty', function() {
+               setInput('');
+               expect(value.getText()).toEqual('value =');
+               expect(valid.getText()).toContain('myForm.input.$valid = false');
+             });
+
+             it('should be invalid if over max', function() {
+               setInput('2015-W01');
+               expect(value.getText()).toContain('');
+               expect(valid.getText()).toContain('myForm.input.$valid = false');
+             });
+           </file>
+           </example>
+           */
+         'week': createDateInputType('week', WEEK_REGEXP, weekParser, 'yyyy-Www'),
+
+         /**
+          * @ngdoc input
+          * @name input[month]
+          *
+          * @description
+          * Input with month validation and transformation. In browsers that do not yet support
+          * the HTML5 month input, a text element will be used. In that case, the text must be entered in a valid ISO-8601
+          * month format (yyyy-MM), for example: `2009-01`.
+          *
+          * The model must always be a Date object, otherwise Angular will throw an error.
+          * Invalid `Date` objects (dates whose `getTime()` is `NaN`) will be rendered as an empty string.
+          * If the model is not set to the first of the month, the next view to model update will set it
+          * to the first of the month.
+          *
+          * The timezone to be used to read/write the `Date` instance in the model can be defined using
+          * {@link ng.directive:ngModelOptions ngModelOptions}. By default, this is the timezone of the browser.
+          *
+          * @param {string} ngModel Assignable angular expression to data-bind to.
+          * @param {string=} name Property name of the form under which the control is published.
+          * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`.
+          *   This must be a valid ISO month format (yyyy-MM). You can also use interpolation inside this
+          *   attribute (e.g. `min="{{minMonth | date:'yyyy-MM'}}"`). Note that `min` will also add
+          *   native HTML5 constraint validation.
+          * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`.
+          *   This must be a valid ISO month format (yyyy-MM). You can also use interpolation inside this
+          *   attribute (e.g. `max="{{maxMonth | date:'yyyy-MM'}}"`). Note that `max` will also add
+          *   native HTML5 constraint validation.
+          * @param {(date|string)=} ngMin Sets the `min` validation constraint to the Date / ISO week string
+          *   the `ngMin` expression evaluates to. Note that it does not set the `min` attribute.
+          * @param {(date|string)=} ngMax Sets the `max` validation constraint to the Date / ISO week string
+          *   the `ngMax` expression evaluates to. Note that it does not set the `max` attribute.
+
+          * @param {string=} required Sets `required` validation error key if the value is not entered.
+          * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+          *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+          *    `required` when you want to data-bind to the `required` attribute.
+          * @param {string=} ngChange Angular expression to be executed when input changes due to user
+          *    interaction with the input element.
+          *
+          * @example
+          <example name="month-input-directive" module="monthExample">
+          <file name="index.html">
+            <script>
+             angular.module('monthExample', [])
+               .controller('DateController', ['$scope', function($scope) {
+                 $scope.example = {
+                   value: new Date(2013, 9, 1)
+                 };
+               }]);
+            </script>
+            <form name="myForm" ng-controller="DateController as dateCtrl">
+              <label for="exampleInput">Pick a month in 2013:</label>
+              <input id="exampleInput" type="month" name="input" ng-model="example.value"
+                 placeholder="yyyy-MM" min="2013-01" max="2013-12" required />
+              <div role="alert">
+                <span class="error" ng-show="myForm.input.$error.required">
+                   Required!</span>
+                <span class="error" ng-show="myForm.input.$error.month">
+                   Not a valid month!</span>
+              </div>
+              <tt>value = {{example.value | date: "yyyy-MM"}}</tt><br/>
+              <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+              <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+              <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+              <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+            </form>
+          </file>
+          <file name="protractor.js" type="protractor">
+             var value = element(by.binding('example.value | date: "yyyy-MM"'));
+             var valid = element(by.binding('myForm.input.$valid'));
+             var input = element(by.model('example.value'));
+
+             // currently protractor/webdriver does not support
+             // sending keys to all known HTML5 input controls
+             // for various browsers (https://github.com/angular/protractor/issues/562).
+             function setInput(val) {
+               // set the value of the element and force validation.
+               var scr = "var ipt = document.getElementById('exampleInput'); " +
+               "ipt.value = '" + val + "';" +
+               "angular.element(ipt).scope().$apply(function(s) { s.myForm[ipt.name].$setViewValue('" + val + "'); });";
+               browser.executeScript(scr);
+             }
+
+             it('should initialize to model', function() {
+               expect(value.getText()).toContain('2013-10');
+               expect(valid.getText()).toContain('myForm.input.$valid = true');
+             });
+
+             it('should be invalid if empty', function() {
+               setInput('');
+               expect(value.getText()).toEqual('value =');
+               expect(valid.getText()).toContain('myForm.input.$valid = false');
+             });
+
+             it('should be invalid if over max', function() {
+               setInput('2015-01');
+               expect(value.getText()).toContain('');
+               expect(valid.getText()).toContain('myForm.input.$valid = false');
+             });
+          </file>
+          </example>
+          */
+         'month': createDateInputType('month', MONTH_REGEXP,
+            createDateParser(MONTH_REGEXP, ['yyyy', 'MM']),
+            'yyyy-MM'),
+
+         /**
+          * @ngdoc input
+          * @name input[number]
+          *
+          * @description
+          * Text input with number validation and transformation. Sets the `number` validation
+          * error if not a valid number.
+          *
+          * <div class="alert alert-warning">
+          * The model must always be of type `number` otherwise Angular will throw an error.
+          * Be aware that a string containing a number is not enough. See the {@link ngModel:numfmt}
+          * error docs for more information and an example of how to convert your model if necessary.
+          * </div>
+          *
+          * ## Issues with HTML5 constraint validation
+          *
+          * In browsers that follow the
+          * [HTML5 specification](https://html.spec.whatwg.org/multipage/forms.html#number-state-%28type=number%29),
+          * `input[number]` does not work as expected with {@link ngModelOptions `ngModelOptions.allowInvalid`}.
+          * If a non-number is entered in the input, the browser will report the value as an empty string,
+          * which means the view / model values in `ngModel` and subsequently the scope value
+          * will also be an empty string.
+          *
+          *
+          * @param {string} ngModel Assignable angular expression to data-bind to.
+          * @param {string=} name Property name of the form under which the control is published.
+          * @param {string=} min Sets the `min` validation error key if the value entered is less than `min`.
+          * @param {string=} max Sets the `max` validation error key if the value entered is greater than `max`.
+          * @param {string=} required Sets `required` validation error key if the value is not entered.
+          * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+          *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+          *    `required` when you want to data-bind to the `required` attribute.
+          * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than
+          *    minlength.
+          * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than
+          *    maxlength. Setting the attribute to a negative or non-numeric value, allows view values of
+          *    any length.
+          * @param {string=} pattern Similar to `ngPattern` except that the attribute value is the actual string
+          *    that contains the regular expression body that will be converted to a regular expression
+          *    as in the ngPattern directive.
+          * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match
+          *    a RegExp found by evaluating the Angular expression given in the attribute value.
+          *    If the expression evaluates to a RegExp object, then this is used directly.
+          *    If the expression evaluates to a string, then it will be converted to a RegExp
+          *    after wrapping it in `^` and `$` characters. For instance, `"abc"` will be converted to
+          *    `new RegExp('^abc$')`.<br />
+          *    **Note:** Avoid using the `g` flag on the RegExp, as it will cause each successive search to
+          *    start at the index of the last search's match, thus not taking the whole input value into
+          *    account.
+          * @param {string=} ngChange Angular expression to be executed when input changes due to user
+          *    interaction with the input element.
+          *
+          * @example
+             <example name="number-input-directive" module="numberExample">
+               <file name="index.html">
+                <script>
+                  angular.module('numberExample', [])
+                    .controller('ExampleController', ['$scope', function($scope) {
+                      $scope.example = {
+                        value: 12
+                      };
+                    }]);
+                </script>
+                <form name="myForm" ng-controller="ExampleController">
+                  <label>Number:
+                    <input type="number" name="input" ng-model="example.value"
+                           min="0" max="99" required>
+                 </label>
+                  <div role="alert">
+                    <span class="error" ng-show="myForm.input.$error.required">
+                      Required!</span>
+                    <span class="error" ng-show="myForm.input.$error.number">
+                      Not valid number!</span>
+                  </div>
+                  <tt>value = {{example.value}}</tt><br/>
+                  <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+                  <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+                  <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+                  <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+                 </form>
+               </file>
+               <file name="protractor.js" type="protractor">
+                 var value = element(by.binding('example.value'));
+                 var valid = element(by.binding('myForm.input.$valid'));
+                 var input = element(by.model('example.value'));
+
+                 it('should initialize to model', function() {
+                   expect(value.getText()).toContain('12');
+                   expect(valid.getText()).toContain('true');
+                 });
+
+                 it('should be invalid if empty', function() {
+                   input.clear();
+                   input.sendKeys('');
+                   expect(value.getText()).toEqual('value =');
+                   expect(valid.getText()).toContain('false');
+                 });
+
+                 it('should be invalid if over max', function() {
+                   input.clear();
+                   input.sendKeys('123');
+                   expect(value.getText()).toEqual('value =');
+                   expect(valid.getText()).toContain('false');
+                 });
+               </file>
+             </example>
+          */
+         'number': numberInputType,
+
+
+         /**
+          * @ngdoc input
+          * @name input[url]
+          *
+          * @description
+          * Text input with URL validation. Sets the `url` validation error key if the content is not a
+          * valid URL.
+          *
+          * <div class="alert alert-warning">
+          * **Note:** `input[url]` uses a regex to validate urls that is derived from the regex
+          * used in Chromium. If you need stricter validation, you can use `ng-pattern` or modify
+          * the built-in validators (see the {@link guide/forms Forms guide})
+          * </div>
+          *
+          * @param {string} ngModel Assignable angular expression to data-bind to.
+          * @param {string=} name Property name of the form under which the control is published.
+          * @param {string=} required Sets `required` validation error key if the value is not entered.
+          * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+          *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+          *    `required` when you want to data-bind to the `required` attribute.
+          * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than
+          *    minlength.
+          * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than
+          *    maxlength. Setting the attribute to a negative or non-numeric value, allows view values of
+          *    any length.
+          * @param {string=} pattern Similar to `ngPattern` except that the attribute value is the actual string
+          *    that contains the regular expression body that will be converted to a regular expression
+          *    as in the ngPattern directive.
+          * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match
+          *    a RegExp found by evaluating the Angular expression given in the attribute value.
+          *    If the expression evaluates to a RegExp object, then this is used directly.
+          *    If the expression evaluates to a string, then it will be converted to a RegExp
+          *    after wrapping it in `^` and `$` characters. For instance, `"abc"` will be converted to
+          *    `new RegExp('^abc$')`.<br />
+          *    **Note:** Avoid using the `g` flag on the RegExp, as it will cause each successive search to
+          *    start at the index of the last search's match, thus not taking the whole input value into
+          *    account.
+          * @param {string=} ngChange Angular expression to be executed when input changes due to user
+          *    interaction with the input element.
+          *
+          * @example
+             <example name="url-input-directive" module="urlExample">
+               <file name="index.html">
+                <script>
+                  angular.module('urlExample', [])
+                    .controller('ExampleController', ['$scope', function($scope) {
+                      $scope.url = {
+                        text: 'http://google.com'
+                      };
+                    }]);
+                </script>
+                <form name="myForm" ng-controller="ExampleController">
+                  <label>URL:
+                    <input type="url" name="input" ng-model="url.text" required>
+                  <label>
+                  <div role="alert">
+                    <span class="error" ng-show="myForm.input.$error.required">
+                      Required!</span>
+                    <span class="error" ng-show="myForm.input.$error.url">
+                      Not valid url!</span>
+                  </div>
+                  <tt>text = {{url.text}}</tt><br/>
+                  <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+                  <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+                  <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+                  <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+                  <tt>myForm.$error.url = {{!!myForm.$error.url}}</tt><br/>
+                 </form>
+               </file>
+               <file name="protractor.js" type="protractor">
+                 var text = element(by.binding('url.text'));
+                 var valid = element(by.binding('myForm.input.$valid'));
+                 var input = element(by.model('url.text'));
+
+                 it('should initialize to model', function() {
+                   expect(text.getText()).toContain('http://google.com');
+                   expect(valid.getText()).toContain('true');
+                 });
+
+                 it('should be invalid if empty', function() {
+                   input.clear();
+                   input.sendKeys('');
+
+                   expect(text.getText()).toEqual('text =');
+                   expect(valid.getText()).toContain('false');
+                 });
+
+                 it('should be invalid if not url', function() {
+                   input.clear();
+                   input.sendKeys('box');
+
+                   expect(valid.getText()).toContain('false');
+                 });
+               </file>
+             </example>
+          */
+         'url': urlInputType,
+
+
+         /**
+          * @ngdoc input
+          * @name input[email]
+          *
+          * @description
+          * Text input with email validation. Sets the `email` validation error key if not a valid email
+          * address.
+          *
+          * <div class="alert alert-warning">
+          * **Note:** `input[email]` uses a regex to validate email addresses that is derived from the regex
+          * used in Chromium. If you need stricter validation (e.g. requiring a top-level domain), you can
+          * use `ng-pattern` or modify the built-in validators (see the {@link guide/forms Forms guide})
+          * </div>
+          *
+          * @param {string} ngModel Assignable angular expression to data-bind to.
+          * @param {string=} name Property name of the form under which the control is published.
+          * @param {string=} required Sets `required` validation error key if the value is not entered.
+          * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+          *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+          *    `required` when you want to data-bind to the `required` attribute.
+          * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than
+          *    minlength.
+          * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than
+          *    maxlength. Setting the attribute to a negative or non-numeric value, allows view values of
+          *    any length.
+          * @param {string=} pattern Similar to `ngPattern` except that the attribute value is the actual string
+          *    that contains the regular expression body that will be converted to a regular expression
+          *    as in the ngPattern directive.
+          * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match
+          *    a RegExp found by evaluating the Angular expression given in the attribute value.
+          *    If the expression evaluates to a RegExp object, then this is used directly.
+          *    If the expression evaluates to a string, then it will be converted to a RegExp
+          *    after wrapping it in `^` and `$` characters. For instance, `"abc"` will be converted to
+          *    `new RegExp('^abc$')`.<br />
+          *    **Note:** Avoid using the `g` flag on the RegExp, as it will cause each successive search to
+          *    start at the index of the last search's match, thus not taking the whole input value into
+          *    account.
+          * @param {string=} ngChange Angular expression to be executed when input changes due to user
+          *    interaction with the input element.
+          *
+          * @example
+             <example name="email-input-directive" module="emailExample">
+               <file name="index.html">
+                <script>
+                  angular.module('emailExample', [])
+                    .controller('ExampleController', ['$scope', function($scope) {
+                      $scope.email = {
+                        text: 'me@example.com'
+                      };
+                    }]);
+                </script>
+                  <form name="myForm" ng-controller="ExampleController">
+                    <label>Email:
+                      <input type="email" name="input" ng-model="email.text" required>
+                    </label>
+                    <div role="alert">
+                      <span class="error" ng-show="myForm.input.$error.required">
+                        Required!</span>
+                      <span class="error" ng-show="myForm.input.$error.email">
+                        Not valid email!</span>
+                    </div>
+                    <tt>text = {{email.text}}</tt><br/>
+                    <tt>myForm.input.$valid = {{myForm.input.$valid}}</tt><br/>
+                    <tt>myForm.input.$error = {{myForm.input.$error}}</tt><br/>
+                    <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+                    <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+                    <tt>myForm.$error.email = {{!!myForm.$error.email}}</tt><br/>
+                  </form>
+                </file>
+               <file name="protractor.js" type="protractor">
+                 var text = element(by.binding('email.text'));
+                 var valid = element(by.binding('myForm.input.$valid'));
+                 var input = element(by.model('email.text'));
+
+                 it('should initialize to model', function() {
+                   expect(text.getText()).toContain('me@example.com');
+                   expect(valid.getText()).toContain('true');
+                 });
+
+                 it('should be invalid if empty', function() {
+                   input.clear();
+                   input.sendKeys('');
+                   expect(text.getText()).toEqual('text =');
+                   expect(valid.getText()).toContain('false');
+                 });
+
+                 it('should be invalid if not email', function() {
+                   input.clear();
+                   input.sendKeys('xxx');
+
+                   expect(valid.getText()).toContain('false');
+                 });
+               </file>
+             </example>
+          */
+         'email': emailInputType,
+
+
+         /**
+          * @ngdoc input
+          * @name input[radio]
+          *
+          * @description
+          * HTML radio button.
+          *
+          * @param {string} ngModel Assignable angular expression to data-bind to.
+          * @param {string} value The value to which the `ngModel` expression should be set when selected.
+          *    Note that `value` only supports `string` values, i.e. the scope model needs to be a string,
+          *    too. Use `ngValue` if you need complex models (`number`, `object`, ...).
+          * @param {string=} name Property name of the form under which the control is published.
+          * @param {string=} ngChange Angular expression to be executed when input changes due to user
+          *    interaction with the input element.
+          * @param {string} ngValue Angular expression to which `ngModel` will be be set when the radio
+          *    is selected. Should be used instead of the `value` attribute if you need
+          *    a non-string `ngModel` (`boolean`, `array`, ...).
+          *
+          * @example
+             <example name="radio-input-directive" module="radioExample">
+               <file name="index.html">
+                <script>
+                  angular.module('radioExample', [])
+                    .controller('ExampleController', ['$scope', function($scope) {
+                      $scope.color = {
+                        name: 'blue'
+                      };
+                      $scope.specialValue = {
+                        "id": "12345",
+                        "value": "green"
+                      };
+                    }]);
+                </script>
+                <form name="myForm" ng-controller="ExampleController">
+                  <label>
+                    <input type="radio" ng-model="color.name" value="red">
+                    Red
+                  </label><br/>
+                  <label>
+                    <input type="radio" ng-model="color.name" ng-value="specialValue">
+                    Green
+                  </label><br/>
+                  <label>
+                    <input type="radio" ng-model="color.name" value="blue">
+                    Blue
+                  </label><br/>
+                  <tt>color = {{color.name | json}}</tt><br/>
+                 </form>
+                 Note that `ng-value="specialValue"` sets radio item's value to be the value of `$scope.specialValue`.
+               </file>
+               <file name="protractor.js" type="protractor">
+                 it('should change state', function() {
+                   var color = element(by.binding('color.name'));
+
+                   expect(color.getText()).toContain('blue');
+
+                   element.all(by.model('color.name')).get(0).click();
+
+                   expect(color.getText()).toContain('red');
+                 });
+               </file>
+             </example>
+          */
+         'radio': radioInputType,
+
+
+         /**
+          * @ngdoc input
+          * @name input[checkbox]
+          *
+          * @description
+          * HTML checkbox.
+          *
+          * @param {string} ngModel Assignable angular expression to data-bind to.
+          * @param {string=} name Property name of the form under which the control is published.
+          * @param {expression=} ngTrueValue The value to which the expression should be set when selected.
+          * @param {expression=} ngFalseValue The value to which the expression should be set when not selected.
+          * @param {string=} ngChange Angular expression to be executed when input changes due to user
+          *    interaction with the input element.
+          *
+          * @example
+             <example name="checkbox-input-directive" module="checkboxExample">
+               <file name="index.html">
+                <script>
+                  angular.module('checkboxExample', [])
+                    .controller('ExampleController', ['$scope', function($scope) {
+                      $scope.checkboxModel = {
+                       value1 : true,
+                       value2 : 'YES'
+                     };
+                    }]);
+                </script>
+                <form name="myForm" ng-controller="ExampleController">
+                  <label>Value1:
+                    <input type="checkbox" ng-model="checkboxModel.value1">
+                  </label><br/>
+                  <label>Value2:
+                    <input type="checkbox" ng-model="checkboxModel.value2"
+                           ng-true-value="'YES'" ng-false-value="'NO'">
+                   </label><br/>
+                  <tt>value1 = {{checkboxModel.value1}}</tt><br/>
+                  <tt>value2 = {{checkboxModel.value2}}</tt><br/>
+                 </form>
+               </file>
+               <file name="protractor.js" type="protractor">
+                 it('should change state', function() {
+                   var value1 = element(by.binding('checkboxModel.value1'));
+                   var value2 = element(by.binding('checkboxModel.value2'));
+
+                   expect(value1.getText()).toContain('true');
+                   expect(value2.getText()).toContain('YES');
+
+                   element(by.model('checkboxModel.value1')).click();
+                   element(by.model('checkboxModel.value2')).click();
+
+                   expect(value1.getText()).toContain('false');
+                   expect(value2.getText()).toContain('NO');
+                 });
+               </file>
+             </example>
+          */
+         'checkbox': checkboxInputType,
+
+         'hidden': noop,
+         'button': noop,
+         'submit': noop,
+         'reset': noop,
+         'file': noop
+       };
+
+       function stringBasedInputType(ctrl) {
+         ctrl.$formatters.push(function(value) {
+           return ctrl.$isEmpty(value) ? value : value.toString();
+         });
+       }
+
+       function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
+         baseInputType(scope, element, attr, ctrl, $sniffer, $browser);
+         stringBasedInputType(ctrl);
+       }
+
+       function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
+         var type = lowercase(element[0].type);
+
+         // In composition mode, users are still inputing intermediate text buffer,
+         // hold the listener until composition is done.
+         // More about composition events: https://developer.mozilla.org/en-US/docs/Web/API/CompositionEvent
+         if (!$sniffer.android) {
+           var composing = false;
+
+           element.on('compositionstart', function(data) {
+             composing = true;
+           });
+
+           element.on('compositionend', function() {
+             composing = false;
+             listener();
+           });
+         }
+
+         var listener = function(ev) {
+           if (timeout) {
+             $browser.defer.cancel(timeout);
+             timeout = null;
+           }
+           if (composing) return;
+           var value = element.val(),
+               event = ev && ev.type;
+
+           // By default we will trim the value
+           // If the attribute ng-trim exists we will avoid trimming
+           // If input type is 'password', the value is never trimmed
+           if (type !== 'password' && (!attr.ngTrim || attr.ngTrim !== 'false')) {
+             value = trim(value);
+           }
+
+           // If a control is suffering from bad input (due to native validators), browsers discard its
+           // value, so it may be necessary to revalidate (by calling $setViewValue again) even if the
+           // control's value is the same empty value twice in a row.
+           if (ctrl.$viewValue !== value || (value === '' && ctrl.$$hasNativeValidators)) {
+             ctrl.$setViewValue(value, event);
+           }
+         };
+
+         // if the browser does support "input" event, we are fine - except on IE9 which doesn't fire the
+         // input event on backspace, delete or cut
+         if ($sniffer.hasEvent('input')) {
+           element.on('input', listener);
+         } else {
+           var timeout;
+
+           var deferListener = function(ev, input, origValue) {
+             if (!timeout) {
+               timeout = $browser.defer(function() {
+                 timeout = null;
+                 if (!input || input.value !== origValue) {
+                   listener(ev);
+                 }
+               });
+             }
+           };
+
+           element.on('keydown', function(event) {
+             var key = event.keyCode;
+
+             // ignore
+             //    command            modifiers                   arrows
+             if (key === 91 || (15 < key && key < 19) || (37 <= key && key <= 40)) return;
+
+             deferListener(event, this, this.value);
+           });
+
+           // if user modifies input value using context menu in IE, we need "paste" and "cut" events to catch it
+           if ($sniffer.hasEvent('paste')) {
+             element.on('paste cut', deferListener);
+           }
+         }
+
+         // if user paste into input using mouse on older browser
+         // or form autocomplete on newer browser, we need "change" event to catch it
+         element.on('change', listener);
+
+         ctrl.$render = function() {
+           // Workaround for Firefox validation #12102.
+           var value = ctrl.$isEmpty(ctrl.$viewValue) ? '' : ctrl.$viewValue;
+           if (element.val() !== value) {
+             element.val(value);
+           }
+         };
+       }
+
+       function weekParser(isoWeek, existingDate) {
+         if (isDate(isoWeek)) {
+           return isoWeek;
+         }
+
+         if (isString(isoWeek)) {
+           WEEK_REGEXP.lastIndex = 0;
+           var parts = WEEK_REGEXP.exec(isoWeek);
+           if (parts) {
+             var year = +parts[1],
+                 week = +parts[2],
+                 hours = 0,
+                 minutes = 0,
+                 seconds = 0,
+                 milliseconds = 0,
+                 firstThurs = getFirstThursdayOfYear(year),
+                 addDays = (week - 1) * 7;
+
+             if (existingDate) {
+               hours = existingDate.getHours();
+               minutes = existingDate.getMinutes();
+               seconds = existingDate.getSeconds();
+               milliseconds = existingDate.getMilliseconds();
+             }
+
+             return new Date(year, 0, firstThurs.getDate() + addDays, hours, minutes, seconds, milliseconds);
+           }
+         }
+
+         return NaN;
+       }
+
+       function createDateParser(regexp, mapping) {
+         return function(iso, date) {
+           var parts, map;
+
+           if (isDate(iso)) {
+             return iso;
+           }
+
+           if (isString(iso)) {
+             // When a date is JSON'ified to wraps itself inside of an extra
+             // set of double quotes. This makes the date parsing code unable
+             // to match the date string and parse it as a date.
+             if (iso.charAt(0) == '"' && iso.charAt(iso.length - 1) == '"') {
+               iso = iso.substring(1, iso.length - 1);
+             }
+             if (ISO_DATE_REGEXP.test(iso)) {
+               return new Date(iso);
+             }
+             regexp.lastIndex = 0;
+             parts = regexp.exec(iso);
+
+             if (parts) {
+               parts.shift();
+               if (date) {
+                 map = {
+                   yyyy: date.getFullYear(),
+                   MM: date.getMonth() + 1,
+                   dd: date.getDate(),
+                   HH: date.getHours(),
+                   mm: date.getMinutes(),
+                   ss: date.getSeconds(),
+                   sss: date.getMilliseconds() / 1000
+                 };
+               } else {
+                 map = { yyyy: 1970, MM: 1, dd: 1, HH: 0, mm: 0, ss: 0, sss: 0 };
+               }
+
+               forEach(parts, function(part, index) {
+                 if (index < mapping.length) {
+                   map[mapping[index]] = +part;
+                 }
+               });
+               return new Date(map.yyyy, map.MM - 1, map.dd, map.HH, map.mm, map.ss || 0, map.sss * 1000 || 0);
+             }
+           }
+
+           return NaN;
+         };
+       }
+
+       function createDateInputType(type, regexp, parseDate, format) {
+         return function dynamicDateInputType(scope, element, attr, ctrl, $sniffer, $browser, $filter) {
+           badInputChecker(scope, element, attr, ctrl);
+           baseInputType(scope, element, attr, ctrl, $sniffer, $browser);
+           var timezone = ctrl && ctrl.$options && ctrl.$options.timezone;
+           var previousDate;
+
+           ctrl.$$parserName = type;
+           ctrl.$parsers.push(function(value) {
+             if (ctrl.$isEmpty(value)) return null;
+             if (regexp.test(value)) {
+               // Note: We cannot read ctrl.$modelValue, as there might be a different
+               // parser/formatter in the processing chain so that the model
+               // contains some different data format!
+               var parsedDate = parseDate(value, previousDate);
+               if (timezone) {
+                 parsedDate = convertTimezoneToLocal(parsedDate, timezone);
+               }
+               return parsedDate;
+             }
+             return undefined;
+           });
+
+           ctrl.$formatters.push(function(value) {
+             if (value && !isDate(value)) {
+               throw ngModelMinErr('datefmt', 'Expected `{0}` to be a date', value);
+             }
+             if (isValidDate(value)) {
+               previousDate = value;
+               if (previousDate && timezone) {
+                 previousDate = convertTimezoneToLocal(previousDate, timezone, true);
+               }
+               return $filter('date')(value, format, timezone);
+             } else {
+               previousDate = null;
+               return '';
+             }
+           });
+
+           if (isDefined(attr.min) || attr.ngMin) {
+             var minVal;
+             ctrl.$validators.min = function(value) {
+               return !isValidDate(value) || isUndefined(minVal) || parseDate(value) >= minVal;
+             };
+             attr.$observe('min', function(val) {
+               minVal = parseObservedDateValue(val);
+               ctrl.$validate();
+             });
+           }
+
+           if (isDefined(attr.max) || attr.ngMax) {
+             var maxVal;
+             ctrl.$validators.max = function(value) {
+               return !isValidDate(value) || isUndefined(maxVal) || parseDate(value) <= maxVal;
+             };
+             attr.$observe('max', function(val) {
+               maxVal = parseObservedDateValue(val);
+               ctrl.$validate();
+             });
+           }
+
+           function isValidDate(value) {
+             // Invalid Date: getTime() returns NaN
+             return value && !(value.getTime && value.getTime() !== value.getTime());
+           }
+
+           function parseObservedDateValue(val) {
+             return isDefined(val) && !isDate(val) ? parseDate(val) || undefined : val;
+           }
+         };
+       }
+
+       function badInputChecker(scope, element, attr, ctrl) {
+         var node = element[0];
+         var nativeValidation = ctrl.$$hasNativeValidators = isObject(node.validity);
+         if (nativeValidation) {
+           ctrl.$parsers.push(function(value) {
+             var validity = element.prop(VALIDITY_STATE_PROPERTY) || {};
+             // Detect bug in FF35 for input[email] (https://bugzilla.mozilla.org/show_bug.cgi?id=1064430):
+             // - also sets validity.badInput (should only be validity.typeMismatch).
+             // - see http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#e-mail-state-(type=email)
+             // - can ignore this case as we can still read out the erroneous email...
+             return validity.badInput && !validity.typeMismatch ? undefined : value;
+           });
+         }
+       }
+
+       function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) {
+         badInputChecker(scope, element, attr, ctrl);
+         baseInputType(scope, element, attr, ctrl, $sniffer, $browser);
+
+         ctrl.$$parserName = 'number';
+         ctrl.$parsers.push(function(value) {
+           if (ctrl.$isEmpty(value))      return null;
+           if (NUMBER_REGEXP.test(value)) return parseFloat(value);
+           return undefined;
+         });
+
+         ctrl.$formatters.push(function(value) {
+           if (!ctrl.$isEmpty(value)) {
+             if (!isNumber(value)) {
+               throw ngModelMinErr('numfmt', 'Expected `{0}` to be a number', value);
+             }
+             value = value.toString();
+           }
+           return value;
+         });
+
+         if (isDefined(attr.min) || attr.ngMin) {
+           var minVal;
+           ctrl.$validators.min = function(value) {
+             return ctrl.$isEmpty(value) || isUndefined(minVal) || value >= minVal;
+           };
+
+           attr.$observe('min', function(val) {
+             if (isDefined(val) && !isNumber(val)) {
+               val = parseFloat(val, 10);
+             }
+             minVal = isNumber(val) && !isNaN(val) ? val : undefined;
+             // TODO(matsko): implement validateLater to reduce number of validations
+             ctrl.$validate();
+           });
+         }
+
+         if (isDefined(attr.max) || attr.ngMax) {
+           var maxVal;
+           ctrl.$validators.max = function(value) {
+             return ctrl.$isEmpty(value) || isUndefined(maxVal) || value <= maxVal;
+           };
+
+           attr.$observe('max', function(val) {
+             if (isDefined(val) && !isNumber(val)) {
+               val = parseFloat(val, 10);
+             }
+             maxVal = isNumber(val) && !isNaN(val) ? val : undefined;
+             // TODO(matsko): implement validateLater to reduce number of validations
+             ctrl.$validate();
+           });
+         }
+       }
+
+       function urlInputType(scope, element, attr, ctrl, $sniffer, $browser) {
+         // Note: no badInputChecker here by purpose as `url` is only a validation
+         // in browsers, i.e. we can always read out input.value even if it is not valid!
+         baseInputType(scope, element, attr, ctrl, $sniffer, $browser);
+         stringBasedInputType(ctrl);
+
+         ctrl.$$parserName = 'url';
+         ctrl.$validators.url = function(modelValue, viewValue) {
+           var value = modelValue || viewValue;
+           return ctrl.$isEmpty(value) || URL_REGEXP.test(value);
+         };
+       }
+
+       function emailInputType(scope, element, attr, ctrl, $sniffer, $browser) {
+         // Note: no badInputChecker here by purpose as `url` is only a validation
+         // in browsers, i.e. we can always read out input.value even if it is not valid!
+         baseInputType(scope, element, attr, ctrl, $sniffer, $browser);
+         stringBasedInputType(ctrl);
+
+         ctrl.$$parserName = 'email';
+         ctrl.$validators.email = function(modelValue, viewValue) {
+           var value = modelValue || viewValue;
+           return ctrl.$isEmpty(value) || EMAIL_REGEXP.test(value);
+         };
+       }
+
+       function radioInputType(scope, element, attr, ctrl) {
+         // make the name unique, if not defined
+         if (isUndefined(attr.name)) {
+           element.attr('name', nextUid());
+         }
+
+         var listener = function(ev) {
+           if (element[0].checked) {
+             ctrl.$setViewValue(attr.value, ev && ev.type);
+           }
+         };
+
+         element.on('click', listener);
+
+         ctrl.$render = function() {
+           var value = attr.value;
+           element[0].checked = (value == ctrl.$viewValue);
+         };
+
+         attr.$observe('value', ctrl.$render);
+       }
+
+       function parseConstantExpr($parse, context, name, expression, fallback) {
+         var parseFn;
+         if (isDefined(expression)) {
+           parseFn = $parse(expression);
+           if (!parseFn.constant) {
+             throw ngModelMinErr('constexpr', 'Expected constant expression for `{0}`, but saw ' +
+                                          '`{1}`.', name, expression);
+           }
+           return parseFn(context);
+         }
+         return fallback;
+       }
+
+       function checkboxInputType(scope, element, attr, ctrl, $sniffer, $browser, $filter, $parse) {
+         var trueValue = parseConstantExpr($parse, scope, 'ngTrueValue', attr.ngTrueValue, true);
+         var falseValue = parseConstantExpr($parse, scope, 'ngFalseValue', attr.ngFalseValue, false);
+
+         var listener = function(ev) {
+           ctrl.$setViewValue(element[0].checked, ev && ev.type);
+         };
+
+         element.on('click', listener);
+
+         ctrl.$render = function() {
+           element[0].checked = ctrl.$viewValue;
+         };
+
+         // Override the standard `$isEmpty` because the $viewValue of an empty checkbox is always set to `false`
+         // This is because of the parser below, which compares the `$modelValue` with `trueValue` to convert
+         // it to a boolean.
+         ctrl.$isEmpty = function(value) {
+           return value === false;
+         };
+
+         ctrl.$formatters.push(function(value) {
+           return equals(value, trueValue);
+         });
+
+         ctrl.$parsers.push(function(value) {
+           return value ? trueValue : falseValue;
+         });
+       }
+
+
+       /**
+        * @ngdoc directive
+        * @name textarea
+        * @restrict E
+        *
+        * @description
+        * HTML textarea element control with angular data-binding. The data-binding and validation
+        * properties of this element are exactly the same as those of the
+        * {@link ng.directive:input input element}.
+        *
+        * @param {string} ngModel Assignable angular expression to data-bind to.
+        * @param {string=} name Property name of the form under which the control is published.
+        * @param {string=} required Sets `required` validation error key if the value is not entered.
+        * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+        *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+        *    `required` when you want to data-bind to the `required` attribute.
+        * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than
+        *    minlength.
+        * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than
+        *    maxlength. Setting the attribute to a negative or non-numeric value, allows view values of any
+        *    length.
+        * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match
+        *    a RegExp found by evaluating the Angular expression given in the attribute value.
+        *    If the expression evaluates to a RegExp object, then this is used directly.
+        *    If the expression evaluates to a string, then it will be converted to a RegExp
+        *    after wrapping it in `^` and `$` characters. For instance, `"abc"` will be converted to
+        *    `new RegExp('^abc$')`.<br />
+        *    **Note:** Avoid using the `g` flag on the RegExp, as it will cause each successive search to
+        *    start at the index of the last search's match, thus not taking the whole input value into
+        *    account.
+        * @param {string=} ngChange Angular expression to be executed when input changes due to user
+        *    interaction with the input element.
+        * @param {boolean=} [ngTrim=true] If set to false Angular will not automatically trim the input.
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name input
+        * @restrict E
+        *
+        * @description
+        * HTML input element control. When used together with {@link ngModel `ngModel`}, it provides data-binding,
+        * input state control, and validation.
+        * Input control follows HTML5 input types and polyfills the HTML5 validation behavior for older browsers.
+        *
+        * <div class="alert alert-warning">
+        * **Note:** Not every feature offered is available for all input types.
+        * Specifically, data binding and event handling via `ng-model` is unsupported for `input[file]`.
+        * </div>
+        *
+        * @param {string} ngModel Assignable angular expression to data-bind to.
+        * @param {string=} name Property name of the form under which the control is published.
+        * @param {string=} required Sets `required` validation error key if the value is not entered.
+        * @param {boolean=} ngRequired Sets `required` attribute if set to true
+        * @param {number=} ngMinlength Sets `minlength` validation error key if the value is shorter than
+        *    minlength.
+        * @param {number=} ngMaxlength Sets `maxlength` validation error key if the value is longer than
+        *    maxlength. Setting the attribute to a negative or non-numeric value, allows view values of any
+        *    length.
+        * @param {string=} ngPattern Sets `pattern` validation error key if the ngModel value does not match
+        *    a RegExp found by evaluating the Angular expression given in the attribute value.
+        *    If the expression evaluates to a RegExp object, then this is used directly.
+        *    If the expression evaluates to a string, then it will be converted to a RegExp
+        *    after wrapping it in `^` and `$` characters. For instance, `"abc"` will be converted to
+        *    `new RegExp('^abc$')`.<br />
+        *    **Note:** Avoid using the `g` flag on the RegExp, as it will cause each successive search to
+        *    start at the index of the last search's match, thus not taking the whole input value into
+        *    account.
+        * @param {string=} ngChange Angular expression to be executed when input changes due to user
+        *    interaction with the input element.
+        * @param {boolean=} [ngTrim=true] If set to false Angular will not automatically trim the input.
+        *    This parameter is ignored for input[type=password] controls, which will never trim the
+        *    input.
+        *
+        * @example
+           <example name="input-directive" module="inputExample">
+             <file name="index.html">
+              <script>
+                 angular.module('inputExample', [])
+                   .controller('ExampleController', ['$scope', function($scope) {
+                     $scope.user = {name: 'guest', last: 'visitor'};
+                   }]);
+              </script>
+              <div ng-controller="ExampleController">
+                <form name="myForm">
+                  <label>
+                     User name:
+                     <input type="text" name="userName" ng-model="user.name" required>
+                  </label>
+                  <div role="alert">
+                    <span class="error" ng-show="myForm.userName.$error.required">
+                     Required!</span>
+                  </div>
+                  <label>
+                     Last name:
+                     <input type="text" name="lastName" ng-model="user.last"
+                     ng-minlength="3" ng-maxlength="10">
+                  </label>
+                  <div role="alert">
+                    <span class="error" ng-show="myForm.lastName.$error.minlength">
+                      Too short!</span>
+                    <span class="error" ng-show="myForm.lastName.$error.maxlength">
+                      Too long!</span>
+                  </div>
+                </form>
+                <hr>
+                <tt>user = {{user}}</tt><br/>
+                <tt>myForm.userName.$valid = {{myForm.userName.$valid}}</tt><br/>
+                <tt>myForm.userName.$error = {{myForm.userName.$error}}</tt><br/>
+                <tt>myForm.lastName.$valid = {{myForm.lastName.$valid}}</tt><br/>
+                <tt>myForm.lastName.$error = {{myForm.lastName.$error}}</tt><br/>
+                <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+                <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+                <tt>myForm.$error.minlength = {{!!myForm.$error.minlength}}</tt><br/>
+                <tt>myForm.$error.maxlength = {{!!myForm.$error.maxlength}}</tt><br/>
+              </div>
+             </file>
+             <file name="protractor.js" type="protractor">
+               var user = element(by.exactBinding('user'));
+               var userNameValid = element(by.binding('myForm.userName.$valid'));
+               var lastNameValid = element(by.binding('myForm.lastName.$valid'));
+               var lastNameError = element(by.binding('myForm.lastName.$error'));
+               var formValid = element(by.binding('myForm.$valid'));
+               var userNameInput = element(by.model('user.name'));
+               var userLastInput = element(by.model('user.last'));
+
+               it('should initialize to model', function() {
+                 expect(user.getText()).toContain('{"name":"guest","last":"visitor"}');
+                 expect(userNameValid.getText()).toContain('true');
+                 expect(formValid.getText()).toContain('true');
+               });
+
+               it('should be invalid if empty when required', function() {
+                 userNameInput.clear();
+                 userNameInput.sendKeys('');
+
+                 expect(user.getText()).toContain('{"last":"visitor"}');
+                 expect(userNameValid.getText()).toContain('false');
+                 expect(formValid.getText()).toContain('false');
+               });
+
+               it('should be valid if empty when min length is set', function() {
+                 userLastInput.clear();
+                 userLastInput.sendKeys('');
+
+                 expect(user.getText()).toContain('{"name":"guest","last":""}');
+                 expect(lastNameValid.getText()).toContain('true');
+                 expect(formValid.getText()).toContain('true');
+               });
+
+               it('should be invalid if less than required min length', function() {
+                 userLastInput.clear();
+                 userLastInput.sendKeys('xx');
+
+                 expect(user.getText()).toContain('{"name":"guest"}');
+                 expect(lastNameValid.getText()).toContain('false');
+                 expect(lastNameError.getText()).toContain('minlength');
+                 expect(formValid.getText()).toContain('false');
+               });
+
+               it('should be invalid if longer than max length', function() {
+                 userLastInput.clear();
+                 userLastInput.sendKeys('some ridiculously long name');
+
+                 expect(user.getText()).toContain('{"name":"guest"}');
+                 expect(lastNameValid.getText()).toContain('false');
+                 expect(lastNameError.getText()).toContain('maxlength');
+                 expect(formValid.getText()).toContain('false');
+               });
+             </file>
+           </example>
+        */
+       var inputDirective = ['$browser', '$sniffer', '$filter', '$parse',
+           function($browser, $sniffer, $filter, $parse) {
+         return {
+           restrict: 'E',
+           require: ['?ngModel'],
+           link: {
+             pre: function(scope, element, attr, ctrls) {
+               if (ctrls[0]) {
+                 (inputType[lowercase(attr.type)] || inputType.text)(scope, element, attr, ctrls[0], $sniffer,
+                                                                     $browser, $filter, $parse);
+               }
+             }
+           }
+         };
+       }];
+
+
+
+       var CONSTANT_VALUE_REGEXP = /^(true|false|\d+)$/;
+       /**
+        * @ngdoc directive
+        * @name ngValue
+        *
+        * @description
+        * Binds the given expression to the value of `<option>` or {@link input[radio] `input[radio]`},
+        * so that when the element is selected, the {@link ngModel `ngModel`} of that element is set to
+        * the bound value.
+        *
+        * `ngValue` is useful when dynamically generating lists of radio buttons using
+        * {@link ngRepeat `ngRepeat`}, as shown below.
+        *
+        * Likewise, `ngValue` can be used to generate `<option>` elements for
+        * the {@link select `select`} element. In that case however, only strings are supported
+        * for the `value `attribute, so the resulting `ngModel` will always be a string.
+        * Support for `select` models with non-string values is available via `ngOptions`.
+        *
+        * @element input
+        * @param {string=} ngValue angular expression, whose value will be bound to the `value` attribute
+        *   of the `input` element
+        *
+        * @example
+           <example name="ngValue-directive" module="valueExample">
+             <file name="index.html">
+              <script>
+                 angular.module('valueExample', [])
+                   .controller('ExampleController', ['$scope', function($scope) {
+                     $scope.names = ['pizza', 'unicorns', 'robots'];
+                     $scope.my = { favorite: 'unicorns' };
+                   }]);
+              </script>
+               <form ng-controller="ExampleController">
+                 <h2>Which is your favorite?</h2>
+                   <label ng-repeat="name in names" for="{{name}}">
+                     {{name}}
+                     <input type="radio"
+                            ng-model="my.favorite"
+                            ng-value="name"
+                            id="{{name}}"
+                            name="favorite">
+                   </label>
+                 <div>You chose {{my.favorite}}</div>
+               </form>
+             </file>
+             <file name="protractor.js" type="protractor">
+               var favorite = element(by.binding('my.favorite'));
+
+               it('should initialize to model', function() {
+                 expect(favorite.getText()).toContain('unicorns');
+               });
+               it('should bind the values to the inputs', function() {
+                 element.all(by.model('my.favorite')).get(0).click();
+                 expect(favorite.getText()).toContain('pizza');
+               });
+             </file>
+           </example>
+        */
+       var ngValueDirective = function() {
+         return {
+           restrict: 'A',
+           priority: 100,
+           compile: function(tpl, tplAttr) {
+             if (CONSTANT_VALUE_REGEXP.test(tplAttr.ngValue)) {
+               return function ngValueConstantLink(scope, elm, attr) {
+                 attr.$set('value', scope.$eval(attr.ngValue));
+               };
+             } else {
+               return function ngValueLink(scope, elm, attr) {
+                 scope.$watch(attr.ngValue, function valueWatchAction(value) {
+                   attr.$set('value', value);
+                 });
+               };
+             }
+           }
+         };
+       };
+
+       /**
+        * @ngdoc directive
+        * @name ngBind
+        * @restrict AC
+        *
+        * @description
+        * The `ngBind` attribute tells Angular to replace the text content of the specified HTML element
+        * with the value of a given expression, and to update the text content when the value of that
+        * expression changes.
+        *
+        * Typically, you don't use `ngBind` directly, but instead you use the double curly markup like
+        * `{{ expression }}` which is similar but less verbose.
+        *
+        * It is preferable to use `ngBind` instead of `{{ expression }}` if a template is momentarily
+        * displayed by the browser in its raw state before Angular compiles it. Since `ngBind` is an
+        * element attribute, it makes the bindings invisible to the user while the page is loading.
+        *
+        * An alternative solution to this problem would be using the
+        * {@link ng.directive:ngCloak ngCloak} directive.
+        *
+        *
+        * @element ANY
+        * @param {expression} ngBind {@link guide/expression Expression} to evaluate.
+        *
+        * @example
+        * Enter a name in the Live Preview text box; the greeting below the text box changes instantly.
+          <example module="bindExample">
+            <file name="index.html">
+              <script>
+                angular.module('bindExample', [])
+                  .controller('ExampleController', ['$scope', function($scope) {
+                    $scope.name = 'Whirled';
+                  }]);
+              </script>
+              <div ng-controller="ExampleController">
+                <label>Enter name: <input type="text" ng-model="name"></label><br>
+                Hello <span ng-bind="name"></span>!
+              </div>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should check ng-bind', function() {
+                var nameInput = element(by.model('name'));
+
+                expect(element(by.binding('name')).getText()).toBe('Whirled');
+                nameInput.clear();
+                nameInput.sendKeys('world');
+                expect(element(by.binding('name')).getText()).toBe('world');
+              });
+            </file>
+          </example>
+        */
+       var ngBindDirective = ['$compile', function($compile) {
+         return {
+           restrict: 'AC',
+           compile: function ngBindCompile(templateElement) {
+             $compile.$$addBindingClass(templateElement);
+             return function ngBindLink(scope, element, attr) {
+               $compile.$$addBindingInfo(element, attr.ngBind);
+               element = element[0];
+               scope.$watch(attr.ngBind, function ngBindWatchAction(value) {
+                 element.textContent = isUndefined(value) ? '' : value;
+               });
+             };
+           }
+         };
+       }];
+
+
+       /**
+        * @ngdoc directive
+        * @name ngBindTemplate
+        *
+        * @description
+        * The `ngBindTemplate` directive specifies that the element
+        * text content should be replaced with the interpolation of the template
+        * in the `ngBindTemplate` attribute.
+        * Unlike `ngBind`, the `ngBindTemplate` can contain multiple `{{` `}}`
+        * expressions. This directive is needed since some HTML elements
+        * (such as TITLE and OPTION) cannot contain SPAN elements.
+        *
+        * @element ANY
+        * @param {string} ngBindTemplate template of form
+        *   <tt>{{</tt> <tt>expression</tt> <tt>}}</tt> to eval.
+        *
+        * @example
+        * Try it here: enter text in text box and watch the greeting change.
+          <example module="bindExample">
+            <file name="index.html">
+              <script>
+                angular.module('bindExample', [])
+                  .controller('ExampleController', ['$scope', function($scope) {
+                    $scope.salutation = 'Hello';
+                    $scope.name = 'World';
+                  }]);
+              </script>
+              <div ng-controller="ExampleController">
+               <label>Salutation: <input type="text" ng-model="salutation"></label><br>
+               <label>Name: <input type="text" ng-model="name"></label><br>
+               <pre ng-bind-template="{{salutation}} {{name}}!"></pre>
+              </div>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should check ng-bind', function() {
+                var salutationElem = element(by.binding('salutation'));
+                var salutationInput = element(by.model('salutation'));
+                var nameInput = element(by.model('name'));
+
+                expect(salutationElem.getText()).toBe('Hello World!');
+
+                salutationInput.clear();
+                salutationInput.sendKeys('Greetings');
+                nameInput.clear();
+                nameInput.sendKeys('user');
+
+                expect(salutationElem.getText()).toBe('Greetings user!');
+              });
+            </file>
+          </example>
+        */
+       var ngBindTemplateDirective = ['$interpolate', '$compile', function($interpolate, $compile) {
+         return {
+           compile: function ngBindTemplateCompile(templateElement) {
+             $compile.$$addBindingClass(templateElement);
+             return function ngBindTemplateLink(scope, element, attr) {
+               var interpolateFn = $interpolate(element.attr(attr.$attr.ngBindTemplate));
+               $compile.$$addBindingInfo(element, interpolateFn.expressions);
+               element = element[0];
+               attr.$observe('ngBindTemplate', function(value) {
+                 element.textContent = isUndefined(value) ? '' : value;
+               });
+             };
+           }
+         };
+       }];
+
+
+       /**
+        * @ngdoc directive
+        * @name ngBindHtml
+        *
+        * @description
+        * Evaluates the expression and inserts the resulting HTML into the element in a secure way. By default,
+        * the resulting HTML content will be sanitized using the {@link ngSanitize.$sanitize $sanitize} service.
+        * To utilize this functionality, ensure that `$sanitize` is available, for example, by including {@link
+        * ngSanitize} in your module's dependencies (not in core Angular). In order to use {@link ngSanitize}
+        * in your module's dependencies, you need to include "angular-sanitize.js" in your application.
+        *
+        * You may also bypass sanitization for values you know are safe. To do so, bind to
+        * an explicitly trusted value via {@link ng.$sce#trustAsHtml $sce.trustAsHtml}.  See the example
+        * under {@link ng.$sce#show-me-an-example-using-sce- Strict Contextual Escaping (SCE)}.
+        *
+        * Note: If a `$sanitize` service is unavailable and the bound value isn't explicitly trusted, you
+        * will have an exception (instead of an exploit.)
+        *
+        * @element ANY
+        * @param {expression} ngBindHtml {@link guide/expression Expression} to evaluate.
+        *
+        * @example
+
+          <example module="bindHtmlExample" deps="angular-sanitize.js">
+            <file name="index.html">
+              <div ng-controller="ExampleController">
+               <p ng-bind-html="myHTML"></p>
+              </div>
+            </file>
+
+            <file name="script.js">
+              angular.module('bindHtmlExample', ['ngSanitize'])
+                .controller('ExampleController', ['$scope', function($scope) {
+                  $scope.myHTML =
+                     'I am an <code>HTML</code>string with ' +
+                     '<a href="#">links!</a> and other <em>stuff</em>';
+                }]);
+            </file>
+
+            <file name="protractor.js" type="protractor">
+              it('should check ng-bind-html', function() {
+                expect(element(by.binding('myHTML')).getText()).toBe(
+                    'I am an HTMLstring with links! and other stuff');
+              });
+            </file>
+          </example>
+        */
+       var ngBindHtmlDirective = ['$sce', '$parse', '$compile', function($sce, $parse, $compile) {
+         return {
+           restrict: 'A',
+           compile: function ngBindHtmlCompile(tElement, tAttrs) {
+             var ngBindHtmlGetter = $parse(tAttrs.ngBindHtml);
+             var ngBindHtmlWatch = $parse(tAttrs.ngBindHtml, function getStringValue(value) {
+               return (value || '').toString();
+             });
+             $compile.$$addBindingClass(tElement);
+
+             return function ngBindHtmlLink(scope, element, attr) {
+               $compile.$$addBindingInfo(element, attr.ngBindHtml);
+
+               scope.$watch(ngBindHtmlWatch, function ngBindHtmlWatchAction() {
+                 // we re-evaluate the expr because we want a TrustedValueHolderType
+                 // for $sce, not a string
+                 element.html($sce.getTrustedHtml(ngBindHtmlGetter(scope)) || '');
+               });
+             };
+           }
+         };
+       }];
+
+       /**
+        * @ngdoc directive
+        * @name ngChange
+        *
+        * @description
+        * Evaluate the given expression when the user changes the input.
+        * The expression is evaluated immediately, unlike the JavaScript onchange event
+        * which only triggers at the end of a change (usually, when the user leaves the
+        * form element or presses the return key).
+        *
+        * The `ngChange` expression is only evaluated when a change in the input value causes
+        * a new value to be committed to the model.
+        *
+        * It will not be evaluated:
+        * * if the value returned from the `$parsers` transformation pipeline has not changed
+        * * if the input has continued to be invalid since the model will stay `null`
+        * * if the model is changed programmatically and not by a change to the input value
+        *
+        *
+        * Note, this directive requires `ngModel` to be present.
+        *
+        * @element input
+        * @param {expression} ngChange {@link guide/expression Expression} to evaluate upon change
+        * in input value.
+        *
+        * @example
+        * <example name="ngChange-directive" module="changeExample">
+        *   <file name="index.html">
+        *     <script>
+        *       angular.module('changeExample', [])
+        *         .controller('ExampleController', ['$scope', function($scope) {
+        *           $scope.counter = 0;
+        *           $scope.change = function() {
+        *             $scope.counter++;
+        *           };
+        *         }]);
+        *     </script>
+        *     <div ng-controller="ExampleController">
+        *       <input type="checkbox" ng-model="confirmed" ng-change="change()" id="ng-change-example1" />
+        *       <input type="checkbox" ng-model="confirmed" id="ng-change-example2" />
+        *       <label for="ng-change-example2">Confirmed</label><br />
+        *       <tt>debug = {{confirmed}}</tt><br/>
+        *       <tt>counter = {{counter}}</tt><br/>
+        *     </div>
+        *   </file>
+        *   <file name="protractor.js" type="protractor">
+        *     var counter = element(by.binding('counter'));
+        *     var debug = element(by.binding('confirmed'));
+        *
+        *     it('should evaluate the expression if changing from view', function() {
+        *       expect(counter.getText()).toContain('0');
+        *
+        *       element(by.id('ng-change-example1')).click();
+        *
+        *       expect(counter.getText()).toContain('1');
+        *       expect(debug.getText()).toContain('true');
+        *     });
+        *
+        *     it('should not evaluate the expression if changing from model', function() {
+        *       element(by.id('ng-change-example2')).click();
+
+        *       expect(counter.getText()).toContain('0');
+        *       expect(debug.getText()).toContain('true');
+        *     });
+        *   </file>
+        * </example>
+        */
+       var ngChangeDirective = valueFn({
+         restrict: 'A',
+         require: 'ngModel',
+         link: function(scope, element, attr, ctrl) {
+           ctrl.$viewChangeListeners.push(function() {
+             scope.$eval(attr.ngChange);
+           });
+         }
+       });
+
+       function classDirective(name, selector) {
+         name = 'ngClass' + name;
+         return ['$animate', function($animate) {
+           return {
+             restrict: 'AC',
+             link: function(scope, element, attr) {
+               var oldVal;
+
+               scope.$watch(attr[name], ngClassWatchAction, true);
+
+               attr.$observe('class', function(value) {
+                 ngClassWatchAction(scope.$eval(attr[name]));
+               });
+
+
+               if (name !== 'ngClass') {
+                 scope.$watch('$index', function($index, old$index) {
+                   // jshint bitwise: false
+                   var mod = $index & 1;
+                   if (mod !== (old$index & 1)) {
+                     var classes = arrayClasses(scope.$eval(attr[name]));
+                     mod === selector ?
+                       addClasses(classes) :
+                       removeClasses(classes);
+                   }
+                 });
+               }
+
+               function addClasses(classes) {
+                 var newClasses = digestClassCounts(classes, 1);
+                 attr.$addClass(newClasses);
+               }
+
+               function removeClasses(classes) {
+                 var newClasses = digestClassCounts(classes, -1);
+                 attr.$removeClass(newClasses);
+               }
+
+               function digestClassCounts(classes, count) {
+                 // Use createMap() to prevent class assumptions involving property
+                 // names in Object.prototype
+                 var classCounts = element.data('$classCounts') || createMap();
+                 var classesToUpdate = [];
+                 forEach(classes, function(className) {
+                   if (count > 0 || classCounts[className]) {
+                     classCounts[className] = (classCounts[className] || 0) + count;
+                     if (classCounts[className] === +(count > 0)) {
+                       classesToUpdate.push(className);
+                     }
+                   }
+                 });
+                 element.data('$classCounts', classCounts);
+                 return classesToUpdate.join(' ');
+               }
+
+               function updateClasses(oldClasses, newClasses) {
+                 var toAdd = arrayDifference(newClasses, oldClasses);
+                 var toRemove = arrayDifference(oldClasses, newClasses);
+                 toAdd = digestClassCounts(toAdd, 1);
+                 toRemove = digestClassCounts(toRemove, -1);
+                 if (toAdd && toAdd.length) {
+                   $animate.addClass(element, toAdd);
+                 }
+                 if (toRemove && toRemove.length) {
+                   $animate.removeClass(element, toRemove);
+                 }
+               }
+
+               function ngClassWatchAction(newVal) {
+                 if (selector === true || scope.$index % 2 === selector) {
+                   var newClasses = arrayClasses(newVal || []);
+                   if (!oldVal) {
+                     addClasses(newClasses);
+                   } else if (!equals(newVal,oldVal)) {
+                     var oldClasses = arrayClasses(oldVal);
+                     updateClasses(oldClasses, newClasses);
+                   }
+                 }
+                 oldVal = shallowCopy(newVal);
+               }
+             }
+           };
+
+           function arrayDifference(tokens1, tokens2) {
+             var values = [];
+
+             outer:
+             for (var i = 0; i < tokens1.length; i++) {
+               var token = tokens1[i];
+               for (var j = 0; j < tokens2.length; j++) {
+                 if (token == tokens2[j]) continue outer;
+               }
+               values.push(token);
+             }
+             return values;
+           }
+
+           function arrayClasses(classVal) {
+             var classes = [];
+             if (isArray(classVal)) {
+               forEach(classVal, function(v) {
+                 classes = classes.concat(arrayClasses(v));
+               });
+               return classes;
+             } else if (isString(classVal)) {
+               return classVal.split(' ');
+             } else if (isObject(classVal)) {
+               forEach(classVal, function(v, k) {
+                 if (v) {
+                   classes = classes.concat(k.split(' '));
+                 }
+               });
+               return classes;
+             }
+             return classVal;
+           }
+         }];
+       }
+
+       /**
+        * @ngdoc directive
+        * @name ngClass
+        * @restrict AC
+        *
+        * @description
+        * The `ngClass` directive allows you to dynamically set CSS classes on an HTML element by databinding
+        * an expression that represents all classes to be added.
+        *
+        * The directive operates in three different ways, depending on which of three types the expression
+        * evaluates to:
+        *
+        * 1. If the expression evaluates to a string, the string should be one or more space-delimited class
+        * names.
+        *
+        * 2. If the expression evaluates to an object, then for each key-value pair of the
+        * object with a truthy value the corresponding key is used as a class name.
+        *
+        * 3. If the expression evaluates to an array, each element of the array should either be a string as in
+        * type 1 or an object as in type 2. This means that you can mix strings and objects together in an array
+        * to give you more control over what CSS classes appear. See the code below for an example of this.
+        *
+        *
+        * The directive won't add duplicate classes if a particular class was already set.
+        *
+        * When the expression changes, the previously added classes are removed and only then are the
+        * new classes added.
+        *
+        * @animations
+        * **add** - happens just before the class is applied to the elements
+        *
+        * **remove** - happens just before the class is removed from the element
+        *
+        * @element ANY
+        * @param {expression} ngClass {@link guide/expression Expression} to eval. The result
+        *   of the evaluation can be a string representing space delimited class
+        *   names, an array, or a map of class names to boolean values. In the case of a map, the
+        *   names of the properties whose values are truthy will be added as css classes to the
+        *   element.
+        *
+        * @example Example that demonstrates basic bindings via ngClass directive.
+          <example>
+            <file name="index.html">
+              <p ng-class="{strike: deleted, bold: important, 'has-error': error}">Map Syntax Example</p>
+              <label>
+                 <input type="checkbox" ng-model="deleted">
+                 deleted (apply "strike" class)
+              </label><br>
+              <label>
+                 <input type="checkbox" ng-model="important">
+                 important (apply "bold" class)
+              </label><br>
+              <label>
+                 <input type="checkbox" ng-model="error">
+                 error (apply "has-error" class)
+              </label>
+              <hr>
+              <p ng-class="style">Using String Syntax</p>
+              <input type="text" ng-model="style"
+                     placeholder="Type: bold strike red" aria-label="Type: bold strike red">
+              <hr>
+              <p ng-class="[style1, style2, style3]">Using Array Syntax</p>
+              <input ng-model="style1"
+                     placeholder="Type: bold, strike or red" aria-label="Type: bold, strike or red"><br>
+              <input ng-model="style2"
+                     placeholder="Type: bold, strike or red" aria-label="Type: bold, strike or red 2"><br>
+              <input ng-model="style3"
+                     placeholder="Type: bold, strike or red" aria-label="Type: bold, strike or red 3"><br>
+              <hr>
+              <p ng-class="[style4, {orange: warning}]">Using Array and Map Syntax</p>
+              <input ng-model="style4" placeholder="Type: bold, strike" aria-label="Type: bold, strike"><br>
+              <label><input type="checkbox" ng-model="warning"> warning (apply "orange" class)</label>
+            </file>
+            <file name="style.css">
+              .strike {
+                  text-decoration: line-through;
+              }
+              .bold {
+                  font-weight: bold;
+              }
+              .red {
+                  color: red;
+              }
+              .has-error {
+                  color: red;
+                  background-color: yellow;
+              }
+              .orange {
+                  color: orange;
+              }
+            </file>
+            <file name="protractor.js" type="protractor">
+              var ps = element.all(by.css('p'));
+
+              it('should let you toggle the class', function() {
+
+                expect(ps.first().getAttribute('class')).not.toMatch(/bold/);
+                expect(ps.first().getAttribute('class')).not.toMatch(/has-error/);
+
+                element(by.model('important')).click();
+                expect(ps.first().getAttribute('class')).toMatch(/bold/);
+
+                element(by.model('error')).click();
+                expect(ps.first().getAttribute('class')).toMatch(/has-error/);
+              });
+
+              it('should let you toggle string example', function() {
+                expect(ps.get(1).getAttribute('class')).toBe('');
+                element(by.model('style')).clear();
+                element(by.model('style')).sendKeys('red');
+                expect(ps.get(1).getAttribute('class')).toBe('red');
+              });
+
+              it('array example should have 3 classes', function() {
+                expect(ps.get(2).getAttribute('class')).toBe('');
+                element(by.model('style1')).sendKeys('bold');
+                element(by.model('style2')).sendKeys('strike');
+                element(by.model('style3')).sendKeys('red');
+                expect(ps.get(2).getAttribute('class')).toBe('bold strike red');
+              });
+
+              it('array with map example should have 2 classes', function() {
+                expect(ps.last().getAttribute('class')).toBe('');
+                element(by.model('style4')).sendKeys('bold');
+                element(by.model('warning')).click();
+                expect(ps.last().getAttribute('class')).toBe('bold orange');
+              });
+            </file>
+          </example>
+
+          ## Animations
+
+          The example below demonstrates how to perform animations using ngClass.
+
+          <example module="ngAnimate" deps="angular-animate.js" animations="true">
+            <file name="index.html">
+             <input id="setbtn" type="button" value="set" ng-click="myVar='my-class'">
+             <input id="clearbtn" type="button" value="clear" ng-click="myVar=''">
+             <br>
+             <span class="base-class" ng-class="myVar">Sample Text</span>
+            </file>
+            <file name="style.css">
+              .base-class {
+                transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
+              }
+
+              .base-class.my-class {
+                color: red;
+                font-size:3em;
+              }
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should check ng-class', function() {
+                expect(element(by.css('.base-class')).getAttribute('class')).not.
+                  toMatch(/my-class/);
+
+                element(by.id('setbtn')).click();
+
+                expect(element(by.css('.base-class')).getAttribute('class')).
+                  toMatch(/my-class/);
+
+                element(by.id('clearbtn')).click();
+
+                expect(element(by.css('.base-class')).getAttribute('class')).not.
+                  toMatch(/my-class/);
+              });
+            </file>
+          </example>
+
+
+          ## ngClass and pre-existing CSS3 Transitions/Animations
+          The ngClass directive still supports CSS3 Transitions/Animations even if they do not follow the ngAnimate CSS naming structure.
+          Upon animation ngAnimate will apply supplementary CSS classes to track the start and end of an animation, but this will not hinder
+          any pre-existing CSS transitions already on the element. To get an idea of what happens during a class-based animation, be sure
+          to view the step by step details of {@link $animate#addClass $animate.addClass} and
+          {@link $animate#removeClass $animate.removeClass}.
+        */
+       var ngClassDirective = classDirective('', true);
+
+       /**
+        * @ngdoc directive
+        * @name ngClassOdd
+        * @restrict AC
+        *
+        * @description
+        * The `ngClassOdd` and `ngClassEven` directives work exactly as
+        * {@link ng.directive:ngClass ngClass}, except they work in
+        * conjunction with `ngRepeat` and take effect only on odd (even) rows.
+        *
+        * This directive can be applied only within the scope of an
+        * {@link ng.directive:ngRepeat ngRepeat}.
+        *
+        * @element ANY
+        * @param {expression} ngClassOdd {@link guide/expression Expression} to eval. The result
+        *   of the evaluation can be a string representing space delimited class names or an array.
+        *
+        * @example
+          <example>
+            <file name="index.html">
+               <ol ng-init="names=['John', 'Mary', 'Cate', 'Suz']">
+                 <li ng-repeat="name in names">
+                  <span ng-class-odd="'odd'" ng-class-even="'even'">
+                    {{name}}
+                  </span>
+                 </li>
+               </ol>
+            </file>
+            <file name="style.css">
+              .odd {
+                color: red;
+              }
+              .even {
+                color: blue;
+              }
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should check ng-class-odd and ng-class-even', function() {
+                expect(element(by.repeater('name in names').row(0).column('name')).getAttribute('class')).
+                  toMatch(/odd/);
+                expect(element(by.repeater('name in names').row(1).column('name')).getAttribute('class')).
+                  toMatch(/even/);
+              });
+            </file>
+          </example>
+        */
+       var ngClassOddDirective = classDirective('Odd', 0);
+
+       /**
+        * @ngdoc directive
+        * @name ngClassEven
+        * @restrict AC
+        *
+        * @description
+        * The `ngClassOdd` and `ngClassEven` directives work exactly as
+        * {@link ng.directive:ngClass ngClass}, except they work in
+        * conjunction with `ngRepeat` and take effect only on odd (even) rows.
+        *
+        * This directive can be applied only within the scope of an
+        * {@link ng.directive:ngRepeat ngRepeat}.
+        *
+        * @element ANY
+        * @param {expression} ngClassEven {@link guide/expression Expression} to eval. The
+        *   result of the evaluation can be a string representing space delimited class names or an array.
+        *
+        * @example
+          <example>
+            <file name="index.html">
+               <ol ng-init="names=['John', 'Mary', 'Cate', 'Suz']">
+                 <li ng-repeat="name in names">
+                  <span ng-class-odd="'odd'" ng-class-even="'even'">
+                    {{name}} &nbsp; &nbsp; &nbsp;
+                  </span>
+                 </li>
+               </ol>
+            </file>
+            <file name="style.css">
+              .odd {
+                color: red;
+              }
+              .even {
+                color: blue;
+              }
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should check ng-class-odd and ng-class-even', function() {
+                expect(element(by.repeater('name in names').row(0).column('name')).getAttribute('class')).
+                  toMatch(/odd/);
+                expect(element(by.repeater('name in names').row(1).column('name')).getAttribute('class')).
+                  toMatch(/even/);
+              });
+            </file>
+          </example>
+        */
+       var ngClassEvenDirective = classDirective('Even', 1);
+
+       /**
+        * @ngdoc directive
+        * @name ngCloak
+        * @restrict AC
+        *
+        * @description
+        * The `ngCloak` directive is used to prevent the Angular html template from being briefly
+        * displayed by the browser in its raw (uncompiled) form while your application is loading. Use this
+        * directive to avoid the undesirable flicker effect caused by the html template display.
+        *
+        * The directive can be applied to the `<body>` element, but the preferred usage is to apply
+        * multiple `ngCloak` directives to small portions of the page to permit progressive rendering
+        * of the browser view.
+        *
+        * `ngCloak` works in cooperation with the following css rule embedded within `angular.js` and
+        * `angular.min.js`.
+        * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}).
+        *
+        * ```css
+        * [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
+        *   display: none !important;
+        * }
+        * ```
+        *
+        * When this css rule is loaded by the browser, all html elements (including their children) that
+        * are tagged with the `ngCloak` directive are hidden. When Angular encounters this directive
+        * during the compilation of the template it deletes the `ngCloak` element attribute, making
+        * the compiled element visible.
+        *
+        * For the best result, the `angular.js` script must be loaded in the head section of the html
+        * document; alternatively, the css rule above must be included in the external stylesheet of the
+        * application.
+        *
+        * @element ANY
+        *
+        * @example
+          <example>
+            <file name="index.html">
+               <div id="template1" ng-cloak>{{ 'hello' }}</div>
+               <div id="template2" class="ng-cloak">{{ 'world' }}</div>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should remove the template directive and css class', function() {
+                expect($('#template1').getAttribute('ng-cloak')).
+                  toBeNull();
+                expect($('#template2').getAttribute('ng-cloak')).
+                  toBeNull();
+              });
+            </file>
+          </example>
+        *
+        */
+       var ngCloakDirective = ngDirective({
+         compile: function(element, attr) {
+           attr.$set('ngCloak', undefined);
+           element.removeClass('ng-cloak');
+         }
+       });
+
+       /**
+        * @ngdoc directive
+        * @name ngController
+        *
+        * @description
+        * The `ngController` directive attaches a controller class to the view. This is a key aspect of how angular
+        * supports the principles behind the Model-View-Controller design pattern.
+        *
+        * MVC components in angular:
+        *
+        * * Model — Models are the properties of a scope; scopes are attached to the DOM where scope properties
+        *   are accessed through bindings.
+        * * View — The template (HTML with data bindings) that is rendered into the View.
+        * * Controller — The `ngController` directive specifies a Controller class; the class contains business
+        *   logic behind the application to decorate the scope with functions and values
+        *
+        * Note that you can also attach controllers to the DOM by declaring it in a route definition
+        * via the {@link ngRoute.$route $route} service. A common mistake is to declare the controller
+        * again using `ng-controller` in the template itself.  This will cause the controller to be attached
+        * and executed twice.
+        *
+        * @element ANY
+        * @scope
+        * @priority 500
+        * @param {expression} ngController Name of a constructor function registered with the current
+        * {@link ng.$controllerProvider $controllerProvider} or an {@link guide/expression expression}
+        * that on the current scope evaluates to a constructor function.
+        *
+        * The controller instance can be published into a scope property by specifying
+        * `ng-controller="as propertyName"`.
+        *
+        * If the current `$controllerProvider` is configured to use globals (via
+        * {@link ng.$controllerProvider#allowGlobals `$controllerProvider.allowGlobals()` }), this may
+        * also be the name of a globally accessible constructor function (not recommended).
+        *
+        * @example
+        * Here is a simple form for editing user contact information. Adding, removing, clearing, and
+        * greeting are methods declared on the controller (see source tab). These methods can
+        * easily be called from the angular markup. Any changes to the data are automatically reflected
+        * in the View without the need for a manual update.
+        *
+        * Two different declaration styles are included below:
+        *
+        * * one binds methods and properties directly onto the controller using `this`:
+        * `ng-controller="SettingsController1 as settings"`
+        * * one injects `$scope` into the controller:
+        * `ng-controller="SettingsController2"`
+        *
+        * The second option is more common in the Angular community, and is generally used in boilerplates
+        * and in this guide. However, there are advantages to binding properties directly to the controller
+        * and avoiding scope.
+        *
+        * * Using `controller as` makes it obvious which controller you are accessing in the template when
+        * multiple controllers apply to an element.
+        * * If you are writing your controllers as classes you have easier access to the properties and
+        * methods, which will appear on the scope, from inside the controller code.
+        * * Since there is always a `.` in the bindings, you don't have to worry about prototypal
+        * inheritance masking primitives.
+        *
+        * This example demonstrates the `controller as` syntax.
+        *
+        * <example name="ngControllerAs" module="controllerAsExample">
+        *   <file name="index.html">
+        *    <div id="ctrl-as-exmpl" ng-controller="SettingsController1 as settings">
+        *      <label>Name: <input type="text" ng-model="settings.name"/></label>
+        *      <button ng-click="settings.greet()">greet</button><br/>
+        *      Contact:
+        *      <ul>
+        *        <li ng-repeat="contact in settings.contacts">
+        *          <select ng-model="contact.type" aria-label="Contact method" id="select_{{$index}}">
+        *             <option>phone</option>
+        *             <option>email</option>
+        *          </select>
+        *          <input type="text" ng-model="contact.value" aria-labelledby="select_{{$index}}" />
+        *          <button ng-click="settings.clearContact(contact)">clear</button>
+        *          <button ng-click="settings.removeContact(contact)" aria-label="Remove">X</button>
+        *        </li>
+        *        <li><button ng-click="settings.addContact()">add</button></li>
+        *     </ul>
+        *    </div>
+        *   </file>
+        *   <file name="app.js">
+        *    angular.module('controllerAsExample', [])
+        *      .controller('SettingsController1', SettingsController1);
+        *
+        *    function SettingsController1() {
+        *      this.name = "John Smith";
+        *      this.contacts = [
+        *        {type: 'phone', value: '408 555 1212'},
+        *        {type: 'email', value: 'john.smith@example.org'} ];
+        *    }
+        *
+        *    SettingsController1.prototype.greet = function() {
+        *      alert(this.name);
+        *    };
+        *
+        *    SettingsController1.prototype.addContact = function() {
+        *      this.contacts.push({type: 'email', value: 'yourname@example.org'});
+        *    };
+        *
+        *    SettingsController1.prototype.removeContact = function(contactToRemove) {
+        *     var index = this.contacts.indexOf(contactToRemove);
+        *      this.contacts.splice(index, 1);
+        *    };
+        *
+        *    SettingsController1.prototype.clearContact = function(contact) {
+        *      contact.type = 'phone';
+        *      contact.value = '';
+        *    };
+        *   </file>
+        *   <file name="protractor.js" type="protractor">
+        *     it('should check controller as', function() {
+        *       var container = element(by.id('ctrl-as-exmpl'));
+        *         expect(container.element(by.model('settings.name'))
+        *           .getAttribute('value')).toBe('John Smith');
+        *
+        *       var firstRepeat =
+        *           container.element(by.repeater('contact in settings.contacts').row(0));
+        *       var secondRepeat =
+        *           container.element(by.repeater('contact in settings.contacts').row(1));
+        *
+        *       expect(firstRepeat.element(by.model('contact.value')).getAttribute('value'))
+        *           .toBe('408 555 1212');
+        *
+        *       expect(secondRepeat.element(by.model('contact.value')).getAttribute('value'))
+        *           .toBe('john.smith@example.org');
+        *
+        *       firstRepeat.element(by.buttonText('clear')).click();
+        *
+        *       expect(firstRepeat.element(by.model('contact.value')).getAttribute('value'))
+        *           .toBe('');
+        *
+        *       container.element(by.buttonText('add')).click();
+        *
+        *       expect(container.element(by.repeater('contact in settings.contacts').row(2))
+        *           .element(by.model('contact.value'))
+        *           .getAttribute('value'))
+        *           .toBe('yourname@example.org');
+        *     });
+        *   </file>
+        * </example>
+        *
+        * This example demonstrates the "attach to `$scope`" style of controller.
+        *
+        * <example name="ngController" module="controllerExample">
+        *  <file name="index.html">
+        *   <div id="ctrl-exmpl" ng-controller="SettingsController2">
+        *     <label>Name: <input type="text" ng-model="name"/></label>
+        *     <button ng-click="greet()">greet</button><br/>
+        *     Contact:
+        *     <ul>
+        *       <li ng-repeat="contact in contacts">
+        *         <select ng-model="contact.type" id="select_{{$index}}">
+        *            <option>phone</option>
+        *            <option>email</option>
+        *         </select>
+        *         <input type="text" ng-model="contact.value" aria-labelledby="select_{{$index}}" />
+        *         <button ng-click="clearContact(contact)">clear</button>
+        *         <button ng-click="removeContact(contact)">X</button>
+        *       </li>
+        *       <li>[ <button ng-click="addContact()">add</button> ]</li>
+        *    </ul>
+        *   </div>
+        *  </file>
+        *  <file name="app.js">
+        *   angular.module('controllerExample', [])
+        *     .controller('SettingsController2', ['$scope', SettingsController2]);
+        *
+        *   function SettingsController2($scope) {
+        *     $scope.name = "John Smith";
+        *     $scope.contacts = [
+        *       {type:'phone', value:'408 555 1212'},
+        *       {type:'email', value:'john.smith@example.org'} ];
+        *
+        *     $scope.greet = function() {
+        *       alert($scope.name);
+        *     };
+        *
+        *     $scope.addContact = function() {
+        *       $scope.contacts.push({type:'email', value:'yourname@example.org'});
+        *     };
+        *
+        *     $scope.removeContact = function(contactToRemove) {
+        *       var index = $scope.contacts.indexOf(contactToRemove);
+        *       $scope.contacts.splice(index, 1);
+        *     };
+        *
+        *     $scope.clearContact = function(contact) {
+        *       contact.type = 'phone';
+        *       contact.value = '';
+        *     };
+        *   }
+        *  </file>
+        *  <file name="protractor.js" type="protractor">
+        *    it('should check controller', function() {
+        *      var container = element(by.id('ctrl-exmpl'));
+        *
+        *      expect(container.element(by.model('name'))
+        *          .getAttribute('value')).toBe('John Smith');
+        *
+        *      var firstRepeat =
+        *          container.element(by.repeater('contact in contacts').row(0));
+        *      var secondRepeat =
+        *          container.element(by.repeater('contact in contacts').row(1));
+        *
+        *      expect(firstRepeat.element(by.model('contact.value')).getAttribute('value'))
+        *          .toBe('408 555 1212');
+        *      expect(secondRepeat.element(by.model('contact.value')).getAttribute('value'))
+        *          .toBe('john.smith@example.org');
+        *
+        *      firstRepeat.element(by.buttonText('clear')).click();
+        *
+        *      expect(firstRepeat.element(by.model('contact.value')).getAttribute('value'))
+        *          .toBe('');
+        *
+        *      container.element(by.buttonText('add')).click();
+        *
+        *      expect(container.element(by.repeater('contact in contacts').row(2))
+        *          .element(by.model('contact.value'))
+        *          .getAttribute('value'))
+        *          .toBe('yourname@example.org');
+        *    });
+        *  </file>
+        *</example>
+
+        */
+       var ngControllerDirective = [function() {
+         return {
+           restrict: 'A',
+           scope: true,
+           controller: '@',
+           priority: 500
+         };
+       }];
+
+       /**
+        * @ngdoc directive
+        * @name ngCsp
+        *
+        * @element html
+        * @description
+        *
+        * Angular has some features that can break certain
+        * [CSP (Content Security Policy)](https://developer.mozilla.org/en/Security/CSP) rules.
+        *
+        * If you intend to implement these rules then you must tell Angular not to use these features.
+        *
+        * This is necessary when developing things like Google Chrome Extensions or Universal Windows Apps.
+        *
+        *
+        * The following rules affect Angular:
+        *
+        * * `unsafe-eval`: this rule forbids apps to use `eval` or `Function(string)` generated functions
+        * (among other things). Angular makes use of this in the {@link $parse} service to provide a 30%
+        * increase in the speed of evaluating Angular expressions.
+        *
+        * * `unsafe-inline`: this rule forbids apps from inject custom styles into the document. Angular
+        * makes use of this to include some CSS rules (e.g. {@link ngCloak} and {@link ngHide}).
+        * To make these directives work when a CSP rule is blocking inline styles, you must link to the
+        * `angular-csp.css` in your HTML manually.
+        *
+        * If you do not provide `ngCsp` then Angular tries to autodetect if CSP is blocking unsafe-eval
+        * and automatically deactivates this feature in the {@link $parse} service. This autodetection,
+        * however, triggers a CSP error to be logged in the console:
+        *
+        * ```
+        * Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of
+        * script in the following Content Security Policy directive: "default-src 'self'". Note that
+        * 'script-src' was not explicitly set, so 'default-src' is used as a fallback.
+        * ```
+        *
+        * This error is harmless but annoying. To prevent the error from showing up, put the `ngCsp`
+        * directive on an element of the HTML document that appears before the `<script>` tag that loads
+        * the `angular.js` file.
+        *
+        * *Note: This directive is only available in the `ng-csp` and `data-ng-csp` attribute form.*
+        *
+        * You can specify which of the CSP related Angular features should be deactivated by providing
+        * a value for the `ng-csp` attribute. The options are as follows:
+        *
+        * * no-inline-style: this stops Angular from injecting CSS styles into the DOM
+        *
+        * * no-unsafe-eval: this stops Angular from optimising $parse with unsafe eval of strings
+        *
+        * You can use these values in the following combinations:
+        *
+        *
+        * * No declaration means that Angular will assume that you can do inline styles, but it will do
+        * a runtime check for unsafe-eval. E.g. `<body>`. This is backwardly compatible with previous versions
+        * of Angular.
+        *
+        * * A simple `ng-csp` (or `data-ng-csp`) attribute will tell Angular to deactivate both inline
+        * styles and unsafe eval. E.g. `<body ng-csp>`. This is backwardly compatible with previous versions
+        * of Angular.
+        *
+        * * Specifying only `no-unsafe-eval` tells Angular that we must not use eval, but that we can inject
+        * inline styles. E.g. `<body ng-csp="no-unsafe-eval">`.
+        *
+        * * Specifying only `no-inline-style` tells Angular that we must not inject styles, but that we can
+        * run eval - no automcatic check for unsafe eval will occur. E.g. `<body ng-csp="no-inline-style">`
+        *
+        * * Specifying both `no-unsafe-eval` and `no-inline-style` tells Angular that we must not inject
+        * styles nor use eval, which is the same as an empty: ng-csp.
+        * E.g.`<body ng-csp="no-inline-style;no-unsafe-eval">`
+        *
+        * @example
+        * This example shows how to apply the `ngCsp` directive to the `html` tag.
+          ```html
+            <!doctype html>
+            <html ng-app ng-csp>
+            ...
+            ...
+            </html>
+          ```
+         * @example
+             // Note: the suffix `.csp` in the example name triggers
+             // csp mode in our http server!
+             <example name="example.csp" module="cspExample" ng-csp="true">
+               <file name="index.html">
+                 <div ng-controller="MainController as ctrl">
+                   <div>
+                     <button ng-click="ctrl.inc()" id="inc">Increment</button>
+                     <span id="counter">
+                       {{ctrl.counter}}
+                     </span>
+                   </div>
+
+                   <div>
+                     <button ng-click="ctrl.evil()" id="evil">Evil</button>
+                     <span id="evilError">
+                       {{ctrl.evilError}}
+                     </span>
+                   </div>
+                 </div>
+               </file>
+               <file name="script.js">
+                  angular.module('cspExample', [])
+                    .controller('MainController', function() {
+                       this.counter = 0;
+                       this.inc = function() {
+                         this.counter++;
+                       };
+                       this.evil = function() {
+                         // jshint evil:true
+                         try {
+                           eval('1+2');
+                         } catch (e) {
+                           this.evilError = e.message;
+                         }
+                       };
+                     });
+               </file>
+               <file name="protractor.js" type="protractor">
+                 var util, webdriver;
+
+                 var incBtn = element(by.id('inc'));
+                 var counter = element(by.id('counter'));
+                 var evilBtn = element(by.id('evil'));
+                 var evilError = element(by.id('evilError'));
+
+                 function getAndClearSevereErrors() {
+                   return browser.manage().logs().get('browser').then(function(browserLog) {
+                     return browserLog.filter(function(logEntry) {
+                       return logEntry.level.value > webdriver.logging.Level.WARNING.value;
+                     });
+                   });
+                 }
+
+                 function clearErrors() {
+                   getAndClearSevereErrors();
+                 }
+
+                 function expectNoErrors() {
+                   getAndClearSevereErrors().then(function(filteredLog) {
+                     expect(filteredLog.length).toEqual(0);
+                     if (filteredLog.length) {
+                       console.log('browser console errors: ' + util.inspect(filteredLog));
+                     }
+                   });
+                 }
+
+                 function expectError(regex) {
+                   getAndClearSevereErrors().then(function(filteredLog) {
+                     var found = false;
+                     filteredLog.forEach(function(log) {
+                       if (log.message.match(regex)) {
+                         found = true;
+                       }
+                     });
+                     if (!found) {
+                       throw new Error('expected an error that matches ' + regex);
+                     }
+                   });
+                 }
+
+                 beforeEach(function() {
+                   util = require('util');
+                   webdriver = require('protractor/node_modules/selenium-webdriver');
+                 });
+
+                 // For now, we only test on Chrome,
+                 // as Safari does not load the page with Protractor's injected scripts,
+                 // and Firefox webdriver always disables content security policy (#6358)
+                 if (browser.params.browser !== 'chrome') {
+                   return;
+                 }
+
+                 it('should not report errors when the page is loaded', function() {
+                   // clear errors so we are not dependent on previous tests
+                   clearErrors();
+                   // Need to reload the page as the page is already loaded when
+                   // we come here
+                   browser.driver.getCurrentUrl().then(function(url) {
+                     browser.get(url);
+                   });
+                   expectNoErrors();
+                 });
+
+                 it('should evaluate expressions', function() {
+                   expect(counter.getText()).toEqual('0');
+                   incBtn.click();
+                   expect(counter.getText()).toEqual('1');
+                   expectNoErrors();
+                 });
+
+                 it('should throw and report an error when using "eval"', function() {
+                   evilBtn.click();
+                   expect(evilError.getText()).toMatch(/Content Security Policy/);
+                   expectError(/Content Security Policy/);
+                 });
+               </file>
+             </example>
+         */
+
+       // ngCsp is not implemented as a proper directive any more, because we need it be processed while we
+       // bootstrap the system (before $parse is instantiated), for this reason we just have
+       // the csp() fn that looks for the `ng-csp` attribute anywhere in the current doc
+
+       /**
+        * @ngdoc directive
+        * @name ngClick
+        *
+        * @description
+        * The ngClick directive allows you to specify custom behavior when
+        * an element is clicked.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngClick {@link guide/expression Expression} to evaluate upon
+        * click. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <button ng-click="count = count + 1" ng-init="count=0">
+               Increment
+             </button>
+             <span>
+               count: {{count}}
+             </span>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should check ng-click', function() {
+                expect(element(by.binding('count')).getText()).toMatch('0');
+                element(by.css('button')).click();
+                expect(element(by.binding('count')).getText()).toMatch('1');
+              });
+            </file>
+          </example>
+        */
+       /*
+        * A collection of directives that allows creation of custom event handlers that are defined as
+        * angular expressions and are compiled and executed within the current scope.
+        */
+       var ngEventDirectives = {};
+
+       // For events that might fire synchronously during DOM manipulation
+       // we need to execute their event handlers asynchronously using $evalAsync,
+       // so that they are not executed in an inconsistent state.
+       var forceAsyncEvents = {
+         'blur': true,
+         'focus': true
+       };
+       forEach(
+         'click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste'.split(' '),
+         function(eventName) {
+           var directiveName = directiveNormalize('ng-' + eventName);
+           ngEventDirectives[directiveName] = ['$parse', '$rootScope', function($parse, $rootScope) {
+             return {
+               restrict: 'A',
+               compile: function($element, attr) {
+                 // We expose the powerful $event object on the scope that provides access to the Window,
+                 // etc. that isn't protected by the fast paths in $parse.  We explicitly request better
+                 // checks at the cost of speed since event handler expressions are not executed as
+                 // frequently as regular change detection.
+                 var fn = $parse(attr[directiveName], /* interceptorFn */ null, /* expensiveChecks */ true);
+                 return function ngEventHandler(scope, element) {
+                   element.on(eventName, function(event) {
+                     var callback = function() {
+                       fn(scope, {$event:event});
+                     };
+                     if (forceAsyncEvents[eventName] && $rootScope.$$phase) {
+                       scope.$evalAsync(callback);
+                     } else {
+                       scope.$apply(callback);
+                     }
+                   });
+                 };
+               }
+             };
+           }];
+         }
+       );
+
+       /**
+        * @ngdoc directive
+        * @name ngDblclick
+        *
+        * @description
+        * The `ngDblclick` directive allows you to specify custom behavior on a dblclick event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngDblclick {@link guide/expression Expression} to evaluate upon
+        * a dblclick. (The Event object is available as `$event`)
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <button ng-dblclick="count = count + 1" ng-init="count=0">
+               Increment (on double click)
+             </button>
+             count: {{count}}
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngMousedown
+        *
+        * @description
+        * The ngMousedown directive allows you to specify custom behavior on mousedown event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngMousedown {@link guide/expression Expression} to evaluate upon
+        * mousedown. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <button ng-mousedown="count = count + 1" ng-init="count=0">
+               Increment (on mouse down)
+             </button>
+             count: {{count}}
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngMouseup
+        *
+        * @description
+        * Specify custom behavior on mouseup event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngMouseup {@link guide/expression Expression} to evaluate upon
+        * mouseup. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <button ng-mouseup="count = count + 1" ng-init="count=0">
+               Increment (on mouse up)
+             </button>
+             count: {{count}}
+            </file>
+          </example>
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngMouseover
+        *
+        * @description
+        * Specify custom behavior on mouseover event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngMouseover {@link guide/expression Expression} to evaluate upon
+        * mouseover. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <button ng-mouseover="count = count + 1" ng-init="count=0">
+               Increment (when mouse is over)
+             </button>
+             count: {{count}}
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngMouseenter
+        *
+        * @description
+        * Specify custom behavior on mouseenter event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngMouseenter {@link guide/expression Expression} to evaluate upon
+        * mouseenter. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <button ng-mouseenter="count = count + 1" ng-init="count=0">
+               Increment (when mouse enters)
+             </button>
+             count: {{count}}
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngMouseleave
+        *
+        * @description
+        * Specify custom behavior on mouseleave event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngMouseleave {@link guide/expression Expression} to evaluate upon
+        * mouseleave. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <button ng-mouseleave="count = count + 1" ng-init="count=0">
+               Increment (when mouse leaves)
+             </button>
+             count: {{count}}
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngMousemove
+        *
+        * @description
+        * Specify custom behavior on mousemove event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngMousemove {@link guide/expression Expression} to evaluate upon
+        * mousemove. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <button ng-mousemove="count = count + 1" ng-init="count=0">
+               Increment (when mouse moves)
+             </button>
+             count: {{count}}
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngKeydown
+        *
+        * @description
+        * Specify custom behavior on keydown event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngKeydown {@link guide/expression Expression} to evaluate upon
+        * keydown. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.)
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <input ng-keydown="count = count + 1" ng-init="count=0">
+             key down count: {{count}}
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngKeyup
+        *
+        * @description
+        * Specify custom behavior on keyup event.
+        *
+        * @element ANY
+        * @priority 0
+        * @param {expression} ngKeyup {@link guide/expression Expression} to evaluate upon
+        * keyup. (Event object is available as `$event` and can be interrogated for keyCode, altKey, etc.)
+        *
+        * @example
+          <example>
+            <file name="index.html">
+              <p>Typing in the input box below updates the key count</p>
+              <input ng-keyup="count = count + 1" ng-init="count=0"> key up count: {{count}}
+
+              <p>Typing in the input box below updates the keycode</p>
+              <input ng-keyup="event=$event">
+              <p>event keyCode: {{ event.keyCode }}</p>
+              <p>event altKey: {{ event.altKey }}</p>
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngKeypress
+        *
+        * @description
+        * Specify custom behavior on keypress event.
+        *
+        * @element ANY
+        * @param {expression} ngKeypress {@link guide/expression Expression} to evaluate upon
+        * keypress. ({@link guide/expression#-event- Event object is available as `$event`}
+        * and can be interrogated for keyCode, altKey, etc.)
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <input ng-keypress="count = count + 1" ng-init="count=0">
+             key press count: {{count}}
+            </file>
+          </example>
+        */
+
+
+       /**
+        * @ngdoc directive
+        * @name ngSubmit
+        *
+        * @description
+        * Enables binding angular expressions to onsubmit events.
+        *
+        * Additionally it prevents the default action (which for form means sending the request to the
+        * server and reloading the current page), but only if the form does not contain `action`,
+        * `data-action`, or `x-action` attributes.
+        *
+        * <div class="alert alert-warning">
+        * **Warning:** Be careful not to cause "double-submission" by using both the `ngClick` and
+        * `ngSubmit` handlers together. See the
+        * {@link form#submitting-a-form-and-preventing-the-default-action `form` directive documentation}
+        * for a detailed discussion of when `ngSubmit` may be triggered.
+        * </div>
+        *
+        * @element form
+        * @priority 0
+        * @param {expression} ngSubmit {@link guide/expression Expression} to eval.
+        * ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example module="submitExample">
+            <file name="index.html">
+             <script>
+               angular.module('submitExample', [])
+                 .controller('ExampleController', ['$scope', function($scope) {
+                   $scope.list = [];
+                   $scope.text = 'hello';
+                   $scope.submit = function() {
+                     if ($scope.text) {
+                       $scope.list.push(this.text);
+                       $scope.text = '';
+                     }
+                   };
+                 }]);
+             </script>
+             <form ng-submit="submit()" ng-controller="ExampleController">
+               Enter text and hit enter:
+               <input type="text" ng-model="text" name="text" />
+               <input type="submit" id="submit" value="Submit" />
+               <pre>list={{list}}</pre>
+             </form>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should check ng-submit', function() {
+                expect(element(by.binding('list')).getText()).toBe('list=[]');
+                element(by.css('#submit')).click();
+                expect(element(by.binding('list')).getText()).toContain('hello');
+                expect(element(by.model('text')).getAttribute('value')).toBe('');
+              });
+              it('should ignore empty strings', function() {
+                expect(element(by.binding('list')).getText()).toBe('list=[]');
+                element(by.css('#submit')).click();
+                element(by.css('#submit')).click();
+                expect(element(by.binding('list')).getText()).toContain('hello');
+               });
+            </file>
+          </example>
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngFocus
+        *
+        * @description
+        * Specify custom behavior on focus event.
+        *
+        * Note: As the `focus` event is executed synchronously when calling `input.focus()`
+        * AngularJS executes the expression using `scope.$evalAsync` if the event is fired
+        * during an `$apply` to ensure a consistent state.
+        *
+        * @element window, input, select, textarea, a
+        * @priority 0
+        * @param {expression} ngFocus {@link guide/expression Expression} to evaluate upon
+        * focus. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+        * See {@link ng.directive:ngClick ngClick}
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngBlur
+        *
+        * @description
+        * Specify custom behavior on blur event.
+        *
+        * A [blur event](https://developer.mozilla.org/en-US/docs/Web/Events/blur) fires when
+        * an element has lost focus.
+        *
+        * Note: As the `blur` event is executed synchronously also during DOM manipulations
+        * (e.g. removing a focussed input),
+        * AngularJS executes the expression using `scope.$evalAsync` if the event is fired
+        * during an `$apply` to ensure a consistent state.
+        *
+        * @element window, input, select, textarea, a
+        * @priority 0
+        * @param {expression} ngBlur {@link guide/expression Expression} to evaluate upon
+        * blur. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+        * See {@link ng.directive:ngClick ngClick}
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngCopy
+        *
+        * @description
+        * Specify custom behavior on copy event.
+        *
+        * @element window, input, select, textarea, a
+        * @priority 0
+        * @param {expression} ngCopy {@link guide/expression Expression} to evaluate upon
+        * copy. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <input ng-copy="copied=true" ng-init="copied=false; value='copy me'" ng-model="value">
+             copied: {{copied}}
+            </file>
+          </example>
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngCut
+        *
+        * @description
+        * Specify custom behavior on cut event.
+        *
+        * @element window, input, select, textarea, a
+        * @priority 0
+        * @param {expression} ngCut {@link guide/expression Expression} to evaluate upon
+        * cut. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <input ng-cut="cut=true" ng-init="cut=false; value='cut me'" ng-model="value">
+             cut: {{cut}}
+            </file>
+          </example>
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngPaste
+        *
+        * @description
+        * Specify custom behavior on paste event.
+        *
+        * @element window, input, select, textarea, a
+        * @priority 0
+        * @param {expression} ngPaste {@link guide/expression Expression} to evaluate upon
+        * paste. ({@link guide/expression#-event- Event object is available as `$event`})
+        *
+        * @example
+          <example>
+            <file name="index.html">
+             <input ng-paste="paste=true" ng-init="paste=false" placeholder='paste here'>
+             pasted: {{paste}}
+            </file>
+          </example>
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ngIf
+        * @restrict A
+        * @multiElement
+        *
+        * @description
+        * The `ngIf` directive removes or recreates a portion of the DOM tree based on an
+        * {expression}. If the expression assigned to `ngIf` evaluates to a false
+        * value then the element is removed from the DOM, otherwise a clone of the
+        * element is reinserted into the DOM.
+        *
+        * `ngIf` differs from `ngShow` and `ngHide` in that `ngIf` completely removes and recreates the
+        * element in the DOM rather than changing its visibility via the `display` css property.  A common
+        * case when this difference is significant is when using css selectors that rely on an element's
+        * position within the DOM, such as the `:first-child` or `:last-child` pseudo-classes.
+        *
+        * Note that when an element is removed using `ngIf` its scope is destroyed and a new scope
+        * is created when the element is restored.  The scope created within `ngIf` inherits from
+        * its parent scope using
+        * [prototypal inheritance](https://github.com/angular/angular.js/wiki/Understanding-Scopes#javascript-prototypal-inheritance).
+        * An important implication of this is if `ngModel` is used within `ngIf` to bind to
+        * a javascript primitive defined in the parent scope. In this case any modifications made to the
+        * variable within the child scope will override (hide) the value in the parent scope.
+        *
+        * Also, `ngIf` recreates elements using their compiled state. An example of this behavior
+        * is if an element's class attribute is directly modified after it's compiled, using something like
+        * jQuery's `.addClass()` method, and the element is later removed. When `ngIf` recreates the element
+        * the added class will be lost because the original compiled state is used to regenerate the element.
+        *
+        * Additionally, you can provide animations via the `ngAnimate` module to animate the `enter`
+        * and `leave` effects.
+        *
+        * @animations
+        * enter - happens just after the `ngIf` contents change and a new DOM element is created and injected into the `ngIf` container
+        * leave - happens just before the `ngIf` contents are removed from the DOM
+        *
+        * @element ANY
+        * @scope
+        * @priority 600
+        * @param {expression} ngIf If the {@link guide/expression expression} is falsy then
+        *     the element is removed from the DOM tree. If it is truthy a copy of the compiled
+        *     element is added to the DOM tree.
+        *
+        * @example
+         <example module="ngAnimate" deps="angular-animate.js" animations="true">
+           <file name="index.html">
+             <label>Click me: <input type="checkbox" ng-model="checked" ng-init="checked=true" /></label><br/>
+             Show when checked:
+             <span ng-if="checked" class="animate-if">
+               This is removed when the checkbox is unchecked.
+             </span>
+           </file>
+           <file name="animations.css">
+             .animate-if {
+               background:white;
+               border:1px solid black;
+               padding:10px;
+             }
+
+             .animate-if.ng-enter, .animate-if.ng-leave {
+               transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
+             }
+
+             .animate-if.ng-enter,
+             .animate-if.ng-leave.ng-leave-active {
+               opacity:0;
+             }
+
+             .animate-if.ng-leave,
+             .animate-if.ng-enter.ng-enter-active {
+               opacity:1;
+             }
+           </file>
+         </example>
+        */
+       var ngIfDirective = ['$animate', function($animate) {
+         return {
+           multiElement: true,
+           transclude: 'element',
+           priority: 600,
+           terminal: true,
+           restrict: 'A',
+           $$tlb: true,
+           link: function($scope, $element, $attr, ctrl, $transclude) {
+               var block, childScope, previousElements;
+               $scope.$watch($attr.ngIf, function ngIfWatchAction(value) {
+
+                 if (value) {
+                   if (!childScope) {
+                     $transclude(function(clone, newScope) {
+                       childScope = newScope;
+                       clone[clone.length++] = document.createComment(' end ngIf: ' + $attr.ngIf + ' ');
+                       // Note: We only need the first/last node of the cloned nodes.
+                       // However, we need to keep the reference to the jqlite wrapper as it might be changed later
+                       // by a directive with templateUrl when its template arrives.
+                       block = {
+                         clone: clone
+                       };
+                       $animate.enter(clone, $element.parent(), $element);
+                     });
+                   }
+                 } else {
+                   if (previousElements) {
+                     previousElements.remove();
+                     previousElements = null;
+                   }
+                   if (childScope) {
+                     childScope.$destroy();
+                     childScope = null;
+                   }
+                   if (block) {
+                     previousElements = getBlockNodes(block.clone);
+                     $animate.leave(previousElements).then(function() {
+                       previousElements = null;
+                     });
+                     block = null;
+                   }
+                 }
+               });
+           }
+         };
+       }];
+
+       /**
+        * @ngdoc directive
+        * @name ngInclude
+        * @restrict ECA
+        *
+        * @description
+        * Fetches, compiles and includes an external HTML fragment.
+        *
+        * By default, the template URL is restricted to the same domain and protocol as the
+        * application document. This is done by calling {@link $sce#getTrustedResourceUrl
+        * $sce.getTrustedResourceUrl} on it. To load templates from other domains or protocols
+        * you may either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist them} or
+        * {@link $sce#trustAsResourceUrl wrap them} as trusted values. Refer to Angular's {@link
+        * ng.$sce Strict Contextual Escaping}.
+        *
+        * In addition, the browser's
+        * [Same Origin Policy](https://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy_for_XMLHttpRequest)
+        * and [Cross-Origin Resource Sharing (CORS)](http://www.w3.org/TR/cors/)
+        * policy may further restrict whether the template is successfully loaded.
+        * For example, `ngInclude` won't work for cross-domain requests on all browsers and for `file://`
+        * access on some browsers.
+        *
+        * @animations
+        * enter - animation is used to bring new content into the browser.
+        * leave - animation is used to animate existing content away.
+        *
+        * The enter and leave animation occur concurrently.
+        *
+        * @scope
+        * @priority 400
+        *
+        * @param {string} ngInclude|src angular expression evaluating to URL. If the source is a string constant,
+        *                 make sure you wrap it in **single** quotes, e.g. `src="'myPartialTemplate.html'"`.
+        * @param {string=} onload Expression to evaluate when a new partial is loaded.
+        *                  <div class="alert alert-warning">
+        *                  **Note:** When using onload on SVG elements in IE11, the browser will try to call
+        *                  a function with the name on the window element, which will usually throw a
+        *                  "function is undefined" error. To fix this, you can instead use `data-onload` or a
+        *                  different form that {@link guide/directive#normalization matches} `onload`.
+        *                  </div>
+          *
+        * @param {string=} autoscroll Whether `ngInclude` should call {@link ng.$anchorScroll
+        *                  $anchorScroll} to scroll the viewport after the content is loaded.
+        *
+        *                  - If the attribute is not set, disable scrolling.
+        *                  - If the attribute is set without value, enable scrolling.
+        *                  - Otherwise enable scrolling only if the expression evaluates to truthy value.
+        *
+        * @example
+         <example module="includeExample" deps="angular-animate.js" animations="true">
+           <file name="index.html">
+            <div ng-controller="ExampleController">
+              <select ng-model="template" ng-options="t.name for t in templates">
+               <option value="">(blank)</option>
+              </select>
+              url of the template: <code>{{template.url}}</code>
+              <hr/>
+              <div class="slide-animate-container">
+                <div class="slide-animate" ng-include="template.url"></div>
+              </div>
+            </div>
+           </file>
+           <file name="script.js">
+             angular.module('includeExample', ['ngAnimate'])
+               .controller('ExampleController', ['$scope', function($scope) {
+                 $scope.templates =
+                   [ { name: 'template1.html', url: 'template1.html'},
+                     { name: 'template2.html', url: 'template2.html'} ];
+                 $scope.template = $scope.templates[0];
+               }]);
+            </file>
+           <file name="template1.html">
+             Content of template1.html
+           </file>
+           <file name="template2.html">
+             Content of template2.html
+           </file>
+           <file name="animations.css">
+             .slide-animate-container {
+               position:relative;
+               background:white;
+               border:1px solid black;
+               height:40px;
+               overflow:hidden;
+             }
+
+             .slide-animate {
+               padding:10px;
+             }
+
+             .slide-animate.ng-enter, .slide-animate.ng-leave {
+               transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
+
+               position:absolute;
+               top:0;
+               left:0;
+               right:0;
+               bottom:0;
+               display:block;
+               padding:10px;
+             }
+
+             .slide-animate.ng-enter {
+               top:-50px;
+             }
+             .slide-animate.ng-enter.ng-enter-active {
+               top:0;
+             }
+
+             .slide-animate.ng-leave {
+               top:0;
+             }
+             .slide-animate.ng-leave.ng-leave-active {
+               top:50px;
+             }
+           </file>
+           <file name="protractor.js" type="protractor">
+             var templateSelect = element(by.model('template'));
+             var includeElem = element(by.css('[ng-include]'));
+
+             it('should load template1.html', function() {
+               expect(includeElem.getText()).toMatch(/Content of template1.html/);
+             });
+
+             it('should load template2.html', function() {
+               if (browser.params.browser == 'firefox') {
+                 // Firefox can't handle using selects
+                 // See https://github.com/angular/protractor/issues/480
+                 return;
+               }
+               templateSelect.click();
+               templateSelect.all(by.css('option')).get(2).click();
+               expect(includeElem.getText()).toMatch(/Content of template2.html/);
+             });
+
+             it('should change to blank', function() {
+               if (browser.params.browser == 'firefox') {
+                 // Firefox can't handle using selects
+                 return;
+               }
+               templateSelect.click();
+               templateSelect.all(by.css('option')).get(0).click();
+               expect(includeElem.isPresent()).toBe(false);
+             });
+           </file>
+         </example>
+        */
+
+
+       /**
+        * @ngdoc event
+        * @name ngInclude#$includeContentRequested
+        * @eventType emit on the scope ngInclude was declared in
+        * @description
+        * Emitted every time the ngInclude content is requested.
+        *
+        * @param {Object} angularEvent Synthetic event object.
+        * @param {String} src URL of content to load.
+        */
+
+
+       /**
+        * @ngdoc event
+        * @name ngInclude#$includeContentLoaded
+        * @eventType emit on the current ngInclude scope
+        * @description
+        * Emitted every time the ngInclude content is reloaded.
+        *
+        * @param {Object} angularEvent Synthetic event object.
+        * @param {String} src URL of content to load.
+        */
+
+
+       /**
+        * @ngdoc event
+        * @name ngInclude#$includeContentError
+        * @eventType emit on the scope ngInclude was declared in
+        * @description
+        * Emitted when a template HTTP request yields an erroneous response (status < 200 || status > 299)
+        *
+        * @param {Object} angularEvent Synthetic event object.
+        * @param {String} src URL of content to load.
+        */
+       var ngIncludeDirective = ['$templateRequest', '$anchorScroll', '$animate',
+                         function($templateRequest,   $anchorScroll,   $animate) {
+         return {
+           restrict: 'ECA',
+           priority: 400,
+           terminal: true,
+           transclude: 'element',
+           controller: angular.noop,
+           compile: function(element, attr) {
+             var srcExp = attr.ngInclude || attr.src,
+                 onloadExp = attr.onload || '',
+                 autoScrollExp = attr.autoscroll;
+
+             return function(scope, $element, $attr, ctrl, $transclude) {
+               var changeCounter = 0,
+                   currentScope,
+                   previousElement,
+                   currentElement;
+
+               var cleanupLastIncludeContent = function() {
+                 if (previousElement) {
+                   previousElement.remove();
+                   previousElement = null;
+                 }
+                 if (currentScope) {
+                   currentScope.$destroy();
+                   currentScope = null;
+                 }
+                 if (currentElement) {
+                   $animate.leave(currentElement).then(function() {
+                     previousElement = null;
+                   });
+                   previousElement = currentElement;
+                   currentElement = null;
+                 }
+               };
+
+               scope.$watch(srcExp, function ngIncludeWatchAction(src) {
+                 var afterAnimation = function() {
+                   if (isDefined(autoScrollExp) && (!autoScrollExp || scope.$eval(autoScrollExp))) {
+                     $anchorScroll();
+                   }
+                 };
+                 var thisChangeId = ++changeCounter;
+
+                 if (src) {
+                   //set the 2nd param to true to ignore the template request error so that the inner
+                   //contents and scope can be cleaned up.
+                   $templateRequest(src, true).then(function(response) {
+                     if (thisChangeId !== changeCounter) return;
+                     var newScope = scope.$new();
+                     ctrl.template = response;
+
+                     // Note: This will also link all children of ng-include that were contained in the original
+                     // html. If that content contains controllers, ... they could pollute/change the scope.
+                     // However, using ng-include on an element with additional content does not make sense...
+                     // Note: We can't remove them in the cloneAttchFn of $transclude as that
+                     // function is called before linking the content, which would apply child
+                     // directives to non existing elements.
+                     var clone = $transclude(newScope, function(clone) {
+                       cleanupLastIncludeContent();
+                       $animate.enter(clone, null, $element).then(afterAnimation);
+                     });
+
+                     currentScope = newScope;
+                     currentElement = clone;
+
+                     currentScope.$emit('$includeContentLoaded', src);
+                     scope.$eval(onloadExp);
+                   }, function() {
+                     if (thisChangeId === changeCounter) {
+                       cleanupLastIncludeContent();
+                       scope.$emit('$includeContentError', src);
+                     }
+                   });
+                   scope.$emit('$includeContentRequested', src);
+                 } else {
+                   cleanupLastIncludeContent();
+                   ctrl.template = null;
+                 }
+               });
+             };
+           }
+         };
+       }];
+
+       // This directive is called during the $transclude call of the first `ngInclude` directive.
+       // It will replace and compile the content of the element with the loaded template.
+       // We need this directive so that the element content is already filled when
+       // the link function of another directive on the same element as ngInclude
+       // is called.
+       var ngIncludeFillContentDirective = ['$compile',
+         function($compile) {
+           return {
+             restrict: 'ECA',
+             priority: -400,
+             require: 'ngInclude',
+             link: function(scope, $element, $attr, ctrl) {
+               if (/SVG/.test($element[0].toString())) {
+                 // WebKit: https://bugs.webkit.org/show_bug.cgi?id=135698 --- SVG elements do not
+                 // support innerHTML, so detect this here and try to generate the contents
+                 // specially.
+                 $element.empty();
+                 $compile(jqLiteBuildFragment(ctrl.template, document).childNodes)(scope,
+                     function namespaceAdaptedClone(clone) {
+                   $element.append(clone);
+                 }, {futureParentElement: $element});
+                 return;
+               }
+
+               $element.html(ctrl.template);
+               $compile($element.contents())(scope);
+             }
+           };
+         }];
+
+       /**
+        * @ngdoc directive
+        * @name ngInit
+        * @restrict AC
+        *
+        * @description
+        * The `ngInit` directive allows you to evaluate an expression in the
+        * current scope.
+        *
+        * <div class="alert alert-danger">
+        * This directive can be abused to add unnecessary amounts of logic into your templates.
+        * There are only a few appropriate uses of `ngInit`, such as for aliasing special properties of
+        * {@link ng.directive:ngRepeat `ngRepeat`}, as seen in the demo below; and for injecting data via
+        * server side scripting. Besides these few cases, you should use {@link guide/controller controllers}
+        * rather than `ngInit` to initialize values on a scope.
+        * </div>
+        *
+        * <div class="alert alert-warning">
+        * **Note**: If you have assignment in `ngInit` along with a {@link ng.$filter `filter`}, make
+        * sure you have parentheses to ensure correct operator precedence:
+        * <pre class="prettyprint">
+        * `<div ng-init="test1 = ($index | toString)"></div>`
+        * </pre>
+        * </div>
+        *
+        * @priority 450
+        *
+        * @element ANY
+        * @param {expression} ngInit {@link guide/expression Expression} to eval.
+        *
+        * @example
+          <example module="initExample">
+            <file name="index.html">
+          <script>
+            angular.module('initExample', [])
+              .controller('ExampleController', ['$scope', function($scope) {
+                $scope.list = [['a', 'b'], ['c', 'd']];
+              }]);
+          </script>
+          <div ng-controller="ExampleController">
+            <div ng-repeat="innerList in list" ng-init="outerIndex = $index">
+              <div ng-repeat="value in innerList" ng-init="innerIndex = $index">
+                 <span class="example-init">list[ {{outerIndex}} ][ {{innerIndex}} ] = {{value}};</span>
+              </div>
+            </div>
+          </div>
+            </file>
+            <file name="protractor.js" type="protractor">
+              it('should alias index positions', function() {
+                var elements = element.all(by.css('.example-init'));
+                expect(elements.get(0).getText()).toBe('list[ 0 ][ 0 ] = a;');
+                expect(elements.get(1).getText()).toBe('list[ 0 ][ 1 ] = b;');
+                expect(elements.get(2).getText()).toBe('list[ 1 ][ 0 ] = c;');
+                expect(elements.get(3).getText()).toBe('list[ 1 ][ 1 ] = d;');
+              });
+            </file>
+          </example>
+        */
+       var ngInitDirective = ngDirective({
+         priority: 450,
+         compile: function() {
+           return {
+             pre: function(scope, element, attrs) {
+               scope.$eval(attrs.ngInit);
+             }
+           };
+         }
+       });
+
+       /**
+        * @ngdoc directive
+        * @name ngList
+        *
+        * @description
+        * Text input that converts between a delimited string and an array of strings. The default
+        * delimiter is a comma followed by a space - equivalent to `ng-list=", "`. You can specify a custom
+        * delimiter as the value of the `ngList` attribute - for example, `ng-list=" | "`.
+        *
+        * The behaviour of the directive is affected by the use of the `ngTrim` attribute.
+        * * If `ngTrim` is set to `"false"` then whitespace around both the separator and each
+        *   list item is respected. This implies that the user of the directive is responsible for
+        *   dealing with whitespace but also allows you to use whitespace as a delimiter, such as a
+        *   tab or newline character.
+        * * Otherwise whitespace around the delimiter is ignored when splitting (although it is respected
+        *   when joining the list items back together) and whitespace around each list item is stripped
+        *   before it is added to the model.
+        *
+        * ### Example with Validation
+        *
+        * <example name="ngList-directive" module="listExample">
+        *   <file name="app.js">
+        *      angular.module('listExample', [])
+        *        .controller('ExampleController', ['$scope', function($scope) {
+        *          $scope.names = ['morpheus', 'neo', 'trinity'];
+        *        }]);
+        *   </file>
+        *   <file name="index.html">
+        *    <form name="myForm" ng-controller="ExampleController">
+        *      <label>List: <input name="namesInput" ng-model="names" ng-list required></label>
+        *      <span role="alert">
+        *        <span class="error" ng-show="myForm.namesInput.$error.required">
+        *        Required!</span>
+        *      </span>
+        *      <br>
+        *      <tt>names = {{names}}</tt><br/>
+        *      <tt>myForm.namesInput.$valid = {{myForm.namesInput.$valid}}</tt><br/>
+        *      <tt>myForm.namesInput.$error = {{myForm.namesInput.$error}}</tt><br/>
+        *      <tt>myForm.$valid = {{myForm.$valid}}</tt><br/>
+        *      <tt>myForm.$error.required = {{!!myForm.$error.required}}</tt><br/>
+        *     </form>
+        *   </file>
+        *   <file name="protractor.js" type="protractor">
+        *     var listInput = element(by.model('names'));
+        *     var names = element(by.exactBinding('names'));
+        *     var valid = element(by.binding('myForm.namesInput.$valid'));
+        *     var error = element(by.css('span.error'));
+        *
+        *     it('should initialize to model', function() {
+        *       expect(names.getText()).toContain('["morpheus","neo","trinity"]');
+        *       expect(valid.getText()).toContain('true');
+        *       expect(error.getCssValue('display')).toBe('none');
+        *     });
+        *
+        *     it('should be invalid if empty', function() {
+        *       listInput.clear();
+        *       listInput.sendKeys('');
+        *
+        *       expect(names.getText()).toContain('');
+        *       expect(valid.getText()).toContain('false');
+        *       expect(error.getCssValue('display')).not.toBe('none');
+        *     });
+        *   </file>
+        * </example>
+        *
+        * ### Example - splitting on newline
+        * <example name="ngList-directive-newlines">
+        *   <file name="index.html">
+        *    <textarea ng-model="list" ng-list="&#10;" ng-trim="false"></textarea>
+        *    <pre>{{ list | json }}</pre>
+        *   </file>
+        *   <file name="protractor.js" type="protractor">
+        *     it("should split the text by newlines", function() {
+        *       var listInput = element(by.model('list'));
+        *       var output = element(by.binding('list | json'));
+        *       listInput.sendKeys('abc\ndef\nghi');
+        *       expect(output.getText()).toContain('[\n  "abc",\n  "def",\n  "ghi"\n]');
+        *     });
+        *   </file>
+        * </example>
+        *
+        * @element input
+        * @param {string=} ngList optional delimiter that should be used to split the value.
+        */
+       var ngListDirective = function() {
+         return {
+           restrict: 'A',
+           priority: 100,
+           require: 'ngModel',
+           link: function(scope, element, attr, ctrl) {
+             // We want to control whitespace trimming so we use this convoluted approach
+             // to access the ngList attribute, which doesn't pre-trim the attribute
+             var ngList = element.attr(attr.$attr.ngList) || ', ';
+             var trimValues = attr.ngTrim !== 'false';
+             var separator = trimValues ? trim(ngList) : ngList;
+
+             var parse = function(viewValue) {
+               // If the viewValue is invalid (say required but empty) it will be `undefined`
+               if (isUndefined(viewValue)) return;
+
+               var list = [];
+
+               if (viewValue) {
+                 forEach(viewValue.split(separator), function(value) {
+                   if (value) list.push(trimValues ? trim(value) : value);
+                 });
+               }
+
+               return list;
+             };
+
+             ctrl.$parsers.push(parse);
+             ctrl.$formatters.push(function(value) {
+               if (isArray(value)) {
+                 return value.join(ngList);
+               }
+
+               return undefined;
+             });
+
+             // Override the standard $isEmpty because an empty array means the input is empty.
+             ctrl.$isEmpty = function(value) {
+               return !value || !value.length;
+             };
+           }
+         };
+       };
+
+       /* global VALID_CLASS: true,
+         INVALID_CLASS: true,
+         PRISTINE_CLASS: true,
+         DIRTY_CLASS: true,
+         UNTOUCHED_CLASS: true,
+         TOUCHED_CLASS: true,
+       */
+
+       var VALID_CLASS = 'ng-valid',
+           INVALID_CLASS = 'ng-invalid',
+           PRISTINE_CLASS = 'ng-pristine',
+           DIRTY_CLASS = 'ng-dirty',
+           UNTOUCHED_CLASS = 'ng-untouched',
+           TOUCHED_CLASS = 'ng-touched',
+           PENDING_CLASS = 'ng-pending';
+
+       var ngModelMinErr = minErr('ngModel');
+
+       /**
+        * @ngdoc type
+        * @name ngModel.NgModelController
+        *
+        * @property {*} $viewValue The actual value from the control's view. For `input` elements, this is a
+        * String. See {@link ngModel.NgModelController#$setViewValue} for information about when the $viewValue
+        * is set.
+        * @property {*} $modelValue The value in the model that the control is bound to.
+        * @property {Array.<Function>} $parsers Array of functions to execute, as a pipeline, whenever
+              the control reads value from the DOM. The functions are called in array order, each passing
+              its return value through to the next. The last return value is forwarded to the
+              {@link ngModel.NgModelController#$validators `$validators`} collection.
+
+       Parsers are used to sanitize / convert the {@link ngModel.NgModelController#$viewValue
+       `$viewValue`}.
+
+       Returning `undefined` from a parser means a parse error occurred. In that case,
+       no {@link ngModel.NgModelController#$validators `$validators`} will run and the `ngModel`
+       will be set to `undefined` unless {@link ngModelOptions `ngModelOptions.allowInvalid`}
+       is set to `true`. The parse error is stored in `ngModel.$error.parse`.
+
+        *
+        * @property {Array.<Function>} $formatters Array of functions to execute, as a pipeline, whenever
+              the model value changes. The functions are called in reverse array order, each passing the value through to the
+              next. The last return value is used as the actual DOM value.
+              Used to format / convert values for display in the control.
+        * ```js
+        * function formatter(value) {
+        *   if (value) {
+        *     return value.toUpperCase();
+        *   }
+        * }
+        * ngModel.$formatters.push(formatter);
+        * ```
+        *
+        * @property {Object.<string, function>} $validators A collection of validators that are applied
+        *      whenever the model value changes. The key value within the object refers to the name of the
+        *      validator while the function refers to the validation operation. The validation operation is
+        *      provided with the model value as an argument and must return a true or false value depending
+        *      on the response of that validation.
+        *
+        * ```js
+        * ngModel.$validators.validCharacters = function(modelValue, viewValue) {
+        *   var value = modelValue || viewValue;
+        *   return /[0-9]+/.test(value) &&
+        *          /[a-z]+/.test(value) &&
+        *          /[A-Z]+/.test(value) &&
+        *          /\W+/.test(value);
+        * };
+        * ```
+        *
+        * @property {Object.<string, function>} $asyncValidators A collection of validations that are expected to
+        *      perform an asynchronous validation (e.g. a HTTP request). The validation function that is provided
+        *      is expected to return a promise when it is run during the model validation process. Once the promise
+        *      is delivered then the validation status will be set to true when fulfilled and false when rejected.
+        *      When the asynchronous validators are triggered, each of the validators will run in parallel and the model
+        *      value will only be updated once all validators have been fulfilled. As long as an asynchronous validator
+        *      is unfulfilled, its key will be added to the controllers `$pending` property. Also, all asynchronous validators
+        *      will only run once all synchronous validators have passed.
+        *
+        * Please note that if $http is used then it is important that the server returns a success HTTP response code
+        * in order to fulfill the validation and a status level of `4xx` in order to reject the validation.
+        *
+        * ```js
+        * ngModel.$asyncValidators.uniqueUsername = function(modelValue, viewValue) {
+        *   var value = modelValue || viewValue;
+        *
+        *   // Lookup user by username
+        *   return $http.get('/api/users/' + value).
+        *      then(function resolved() {
+        *        //username exists, this means validation fails
+        *        return $q.reject('exists');
+        *      }, function rejected() {
+        *        //username does not exist, therefore this validation passes
+        *        return true;
+        *      });
+        * };
+        * ```
+        *
+        * @property {Array.<Function>} $viewChangeListeners Array of functions to execute whenever the
+        *     view value has changed. It is called with no arguments, and its return value is ignored.
+        *     This can be used in place of additional $watches against the model value.
+        *
+        * @property {Object} $error An object hash with all failing validator ids as keys.
+        * @property {Object} $pending An object hash with all pending validator ids as keys.
+        *
+        * @property {boolean} $untouched True if control has not lost focus yet.
+        * @property {boolean} $touched True if control has lost focus.
+        * @property {boolean} $pristine True if user has not interacted with the control yet.
+        * @property {boolean} $dirty True if user has already interacted with the control.
+        * @property {boolean} $valid True if there is no error.
+        * @property {boolean} $invalid True if at least one error on the control.
+        * @property {string} $name The name attribute of the control.
+        *
+        * @description
+        *
+        * `NgModelController` provides API for the {@link ngModel `ngModel`} directive.
+        * The controller contains services for data-binding, validation, CSS updates, and value formatting
+        * and parsing. It purposefully does not contain any logic which deals with DOM rendering or
+        * listening to DOM events.
+        * Such DOM related logic should be provided by other directives which make use of
+        * `NgModelController` for data-binding to control elements.
+        * Angular provides this DOM logic for most {@link input `input`} elements.
+        * At the end of this page you can find a {@link ngModel.NgModelController#custom-control-example
+        * custom control example} that uses `ngModelController` to bind to `contenteditable` elements.
+        *
+        * @example
+        * ### Custom Control Example
+        * This example shows how to use `NgModelController` with a custom control to achieve
+        * data-binding. Notice how different directives (`contenteditable`, `ng-model`, and `required`)
+        * collaborate together to achieve the desired result.
+        *
+        * `contenteditable` is an HTML5 attribute, which tells the browser to let the element
+        * contents be edited in place by the user.
+        *
+        * We are using the {@link ng.service:$sce $sce} service here and include the {@link ngSanitize $sanitize}
+        * module to automatically remove "bad" content like inline event listener (e.g. `<span onclick="...">`).
+        * However, as we are using `$sce` the model can still decide to provide unsafe content if it marks
+        * that content using the `$sce` service.
+        *
+        * <example name="NgModelController" module="customControl" deps="angular-sanitize.js">
+           <file name="style.css">
+             [contenteditable] {
+               border: 1px solid black;
+               background-color: white;
+               min-height: 20px;
+             }
+
+             .ng-invalid {
+               border: 1px solid red;
+             }
+
+           </file>
+           <file name="script.js">
+             angular.module('customControl', ['ngSanitize']).
+               directive('contenteditable', ['$sce', function($sce) {
+                 return {
+                   restrict: 'A', // only activate on element attribute
+                   require: '?ngModel', // get a hold of NgModelController
+                   link: function(scope, element, attrs, ngModel) {
+                     if (!ngModel) return; // do nothing if no ng-model
+
+                     // Specify how UI should be updated
+                     ngModel.$render = function() {
+                       element.html($sce.getTrustedHtml(ngModel.$viewValue || ''));
+                     };
+
+                     // Listen for change events to enable binding
+                     element.on('blur keyup change', function() {
+                       scope.$evalAsync(read);
+                     });
+                     read(); // initialize
+
+                     // Write data to the model
+                     function read() {
+                       var html = element.html();
+                       // When we clear the content editable the browser leaves a <br> behind
+                       // If strip-br attribute is provided then we strip this out
+                       if ( attrs.stripBr && html == '<br>' ) {
+                         html = '';
+                       }
+                       ngModel.$setViewValue(html);
+                     }
+                   }
+                 };
+               }]);
+           </file>
+           <file name="index.html">
+             <form name="myForm">
+              <div contenteditable
+                   name="myWidget" ng-model="userContent"
+                   strip-br="true"
+                   required>Change me!</div>
+               <span ng-show="myForm.myWidget.$error.required">Required!</span>
+              <hr>
+              <textarea ng-model="userContent" aria-label="Dynamic textarea"></textarea>
+             </form>
+           </file>
+           <file name="protractor.js" type="protractor">
+           it('should data-bind and become invalid', function() {
+             if (browser.params.browser == 'safari' || browser.params.browser == 'firefox') {
+               // SafariDriver can't handle contenteditable
+               // and Firefox driver can't clear contenteditables very well
+               return;
+             }
+             var contentEditable = element(by.css('[contenteditable]'));
+             var content = 'Change me!';
+
+             expect(contentEditable.getText()).toEqual(content);
+
+             contentEditable.clear();
+             contentEditable.sendKeys(protractor.Key.BACK_SPACE);
+             expect(contentEditable.getText()).toEqual('');
+             expect(contentEditable.getAttribute('class')).toMatch(/ng-invalid-required/);
+           });
+           </file>
+        * </example>
+        *
+        *
+        */
+       var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$parse', '$animate', '$timeout', '$rootScope', '$q', '$interpolate',
+           function($scope, $exceptionHandler, $attr, $element, $parse, $animate, $timeout, $rootScope, $q, $interpolate) {
+         this.$viewValue = Number.NaN;
+         this.$modelValue = Number.NaN;
+         this.$$rawModelValue = undefined; // stores the parsed modelValue / model set from scope regardless of validity.
+         this.$validators = {};
+         this.$asyncValidators = {};
+         this.$parsers = [];
+         this.$formatters = [];
+         this.$viewChangeListeners = [];
+         this.$untouched = true;
+         this.$touched = false;
+         this.$pristine = true;
+         this.$dirty = false;
+         this.$valid = true;
+         this.$invalid = false;
+         this.$error = {}; // keep invalid keys here
+         this.$$success = {}; // keep valid keys here
+         this.$pending = undefined; // keep pending keys here
+         this.$name = $interpolate($attr.name || '', false)($scope);
+         this.$$parentForm = nullFormCtrl;
+
+         var parsedNgModel = $parse($attr.ngModel),
+             parsedNgModelAssign = parsedNgModel.assign,
+             ngModelGet = parsedNgModel,
+             ngModelSet = parsedNgModelAssign,
+             pendingDebounce = null,
+             parserValid,
+             ctrl = this;
+
+         this.$$setOptions = function(options) {
+           ctrl.$options = options;
+           if (options && options.getterSetter) {
+             var invokeModelGetter = $parse($attr.ngModel + '()'),
+                 invokeModelSetter = $parse($attr.ngModel + '($$$p)');
+
+             ngModelGet = function($scope) {
+               var modelValue = parsedNgModel($scope);
+               if (isFunction(modelValue)) {
+                 modelValue = invokeModelGetter($scope);
+               }
+               return modelValue;
+             };
+             ngModelSet = function($scope, newValue) {
+               if (isFunction(parsedNgModel($scope))) {
+                 invokeModelSetter($scope, {$$$p: ctrl.$modelValue});
+               } else {
+                 parsedNgModelAssign($scope, ctrl.$modelValue);
+               }
+             };
+           } else if (!parsedNgModel.assign) {
+             throw ngModelMinErr('nonassign', "Expression '{0}' is non-assignable. Element: {1}",
+                 $attr.ngModel, startingTag($element));
+           }
+         };
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$render
+          *
+          * @description
+          * Called when the view needs to be updated. It is expected that the user of the ng-model
+          * directive will implement this method.
+          *
+          * The `$render()` method is invoked in the following situations:
+          *
+          * * `$rollbackViewValue()` is called.  If we are rolling back the view value to the last
+          *   committed value then `$render()` is called to update the input control.
+          * * The value referenced by `ng-model` is changed programmatically and both the `$modelValue` and
+          *   the `$viewValue` are different from last time.
+          *
+          * Since `ng-model` does not do a deep watch, `$render()` is only invoked if the values of
+          * `$modelValue` and `$viewValue` are actually different from their previous value. If `$modelValue`
+          * or `$viewValue` are objects (rather than a string or number) then `$render()` will not be
+          * invoked if you only change a property on the objects.
+          */
+         this.$render = noop;
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$isEmpty
+          *
+          * @description
+          * This is called when we need to determine if the value of an input is empty.
+          *
+          * For instance, the required directive does this to work out if the input has data or not.
+          *
+          * The default `$isEmpty` function checks whether the value is `undefined`, `''`, `null` or `NaN`.
+          *
+          * You can override this for input directives whose concept of being empty is different from the
+          * default. The `checkboxInputType` directive does this because in its case a value of `false`
+          * implies empty.
+          *
+          * @param {*} value The value of the input to check for emptiness.
+          * @returns {boolean} True if `value` is "empty".
+          */
+         this.$isEmpty = function(value) {
+           return isUndefined(value) || value === '' || value === null || value !== value;
+         };
+
+         var currentValidationRunId = 0;
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$setValidity
+          *
+          * @description
+          * Change the validity state, and notify the form.
+          *
+          * This method can be called within $parsers/$formatters or a custom validation implementation.
+          * However, in most cases it should be sufficient to use the `ngModel.$validators` and
+          * `ngModel.$asyncValidators` collections which will call `$setValidity` automatically.
+          *
+          * @param {string} validationErrorKey Name of the validator. The `validationErrorKey` will be assigned
+          *        to either `$error[validationErrorKey]` or `$pending[validationErrorKey]`
+          *        (for unfulfilled `$asyncValidators`), so that it is available for data-binding.
+          *        The `validationErrorKey` should be in camelCase and will get converted into dash-case
+          *        for class name. Example: `myError` will result in `ng-valid-my-error` and `ng-invalid-my-error`
+          *        class and can be bound to as  `{{someForm.someControl.$error.myError}}` .
+          * @param {boolean} isValid Whether the current state is valid (true), invalid (false), pending (undefined),
+          *                          or skipped (null). Pending is used for unfulfilled `$asyncValidators`.
+          *                          Skipped is used by Angular when validators do not run because of parse errors and
+          *                          when `$asyncValidators` do not run because any of the `$validators` failed.
+          */
+         addSetValidityMethod({
+           ctrl: this,
+           $element: $element,
+           set: function(object, property) {
+             object[property] = true;
+           },
+           unset: function(object, property) {
+             delete object[property];
+           },
+           $animate: $animate
+         });
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$setPristine
+          *
+          * @description
+          * Sets the control to its pristine state.
+          *
+          * This method can be called to remove the `ng-dirty` class and set the control to its pristine
+          * state (`ng-pristine` class). A model is considered to be pristine when the control
+          * has not been changed from when first compiled.
+          */
+         this.$setPristine = function() {
+           ctrl.$dirty = false;
+           ctrl.$pristine = true;
+           $animate.removeClass($element, DIRTY_CLASS);
+           $animate.addClass($element, PRISTINE_CLASS);
+         };
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$setDirty
+          *
+          * @description
+          * Sets the control to its dirty state.
+          *
+          * This method can be called to remove the `ng-pristine` class and set the control to its dirty
+          * state (`ng-dirty` class). A model is considered to be dirty when the control has been changed
+          * from when first compiled.
+          */
+         this.$setDirty = function() {
+           ctrl.$dirty = true;
+           ctrl.$pristine = false;
+           $animate.removeClass($element, PRISTINE_CLASS);
+           $animate.addClass($element, DIRTY_CLASS);
+           ctrl.$$parentForm.$setDirty();
+         };
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$setUntouched
+          *
+          * @description
+          * Sets the control to its untouched state.
+          *
+          * This method can be called to remove the `ng-touched` class and set the control to its
+          * untouched state (`ng-untouched` class). Upon compilation, a model is set as untouched
+          * by default, however this function can be used to restore that state if the model has
+          * already been touched by the user.
+          */
+         this.$setUntouched = function() {
+           ctrl.$touched = false;
+           ctrl.$untouched = true;
+           $animate.setClass($element, UNTOUCHED_CLASS, TOUCHED_CLASS);
+         };
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$setTouched
+          *
+          * @description
+          * Sets the control to its touched state.
+          *
+          * This method can be called to remove the `ng-untouched` class and set the control to its
+          * touched state (`ng-touched` class). A model is considered to be touched when the user has
+          * first focused the control element and then shifted focus away from the control (blur event).
+          */
+         this.$setTouched = function() {
+           ctrl.$touched = true;
+           ctrl.$untouched = false;
+           $animate.setClass($element, TOUCHED_CLASS, UNTOUCHED_CLASS);
+         };
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$rollbackViewValue
+          *
+          * @description
+          * Cancel an update and reset the input element's value to prevent an update to the `$modelValue`,
+          * which may be caused by a pending debounced event or because the input is waiting for a some
+          * future event.
+          *
+          * If you have an input that uses `ng-model-options` to set up debounced events or events such
+          * as blur you can have a situation where there is a period when the `$viewValue`
+          * is out of synch with the ngModel's `$modelValue`.
+          *
+          * In this case, you can run into difficulties if you try to update the ngModel's `$modelValue`
+          * programmatically before these debounced/future events have resolved/occurred, because Angular's
+          * dirty checking mechanism is not able to tell whether the model has actually changed or not.
+          *
+          * The `$rollbackViewValue()` method should be called before programmatically changing the model of an
+          * input which may have such events pending. This is important in order to make sure that the
+          * input field will be updated with the new model value and any pending operations are cancelled.
+          *
+          * <example name="ng-model-cancel-update" module="cancel-update-example">
+          *   <file name="app.js">
+          *     angular.module('cancel-update-example', [])
+          *
+          *     .controller('CancelUpdateController', ['$scope', function($scope) {
+          *       $scope.resetWithCancel = function(e) {
+          *         if (e.keyCode == 27) {
+          *           $scope.myForm.myInput1.$rollbackViewValue();
+          *           $scope.myValue = '';
+          *         }
+          *       };
+          *       $scope.resetWithoutCancel = function(e) {
+          *         if (e.keyCode == 27) {
+          *           $scope.myValue = '';
+          *         }
+          *       };
+          *     }]);
+          *   </file>
+          *   <file name="index.html">
+          *     <div ng-controller="CancelUpdateController">
+          *       <p>Try typing something in each input.  See that the model only updates when you
+          *          blur off the input.
+          *        </p>
+          *        <p>Now see what happens if you start typing then press the Escape key</p>
+          *
+          *       <form name="myForm" ng-model-options="{ updateOn: 'blur' }">
+          *         <p id="inputDescription1">With $rollbackViewValue()</p>
+          *         <input name="myInput1" aria-describedby="inputDescription1" ng-model="myValue"
+          *                ng-keydown="resetWithCancel($event)"><br/>
+          *         myValue: "{{ myValue }}"
+          *
+          *         <p id="inputDescription2">Without $rollbackViewValue()</p>
+          *         <input name="myInput2" aria-describedby="inputDescription2" ng-model="myValue"
+          *                ng-keydown="resetWithoutCancel($event)"><br/>
+          *         myValue: "{{ myValue }}"
+          *       </form>
+          *     </div>
+          *   </file>
+          * </example>
+          */
+         this.$rollbackViewValue = function() {
+           $timeout.cancel(pendingDebounce);
+           ctrl.$viewValue = ctrl.$$lastCommittedViewValue;
+           ctrl.$render();
+         };
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$validate
+          *
+          * @description
+          * Runs each of the registered validators (first synchronous validators and then
+          * asynchronous validators).
+          * If the validity changes to invalid, the model will be set to `undefined`,
+          * unless {@link ngModelOptions `ngModelOptions.allowInvalid`} is `true`.
+          * If the validity changes to valid, it will set the model to the last available valid
+          * `$modelValue`, i.e. either the last parsed value or the last value set from the scope.
+          */
+         this.$validate = function() {
+           // ignore $validate before model is initialized
+           if (isNumber(ctrl.$modelValue) && isNaN(ctrl.$modelValue)) {
+             return;
+           }
+
+           var viewValue = ctrl.$$lastCommittedViewValue;
+           // Note: we use the $$rawModelValue as $modelValue might have been
+           // set to undefined during a view -> model update that found validation
+           // errors. We can't parse the view here, since that could change
+           // the model although neither viewValue nor the model on the scope changed
+           var modelValue = ctrl.$$rawModelValue;
+
+           var prevValid = ctrl.$valid;
+           var prevModelValue = ctrl.$modelValue;
+
+           var allowInvalid = ctrl.$options && ctrl.$options.allowInvalid;
+
+           ctrl.$$runValidators(modelValue, viewValue, function(allValid) {
+             // If there was no change in validity, don't update the model
+             // This prevents changing an invalid modelValue to undefined
+             if (!allowInvalid && prevValid !== allValid) {
+               // Note: Don't check ctrl.$valid here, as we could have
+               // external validators (e.g. calculated on the server),
+               // that just call $setValidity and need the model value
+               // to calculate their validity.
+               ctrl.$modelValue = allValid ? modelValue : undefined;
+
+               if (ctrl.$modelValue !== prevModelValue) {
+                 ctrl.$$writeModelToScope();
+               }
+             }
+           });
+
+         };
+
+         this.$$runValidators = function(modelValue, viewValue, doneCallback) {
+           currentValidationRunId++;
+           var localValidationRunId = currentValidationRunId;
+
+           // check parser error
+           if (!processParseErrors()) {
+             validationDone(false);
+             return;
+           }
+           if (!processSyncValidators()) {
+             validationDone(false);
+             return;
+           }
+           processAsyncValidators();
+
+           function processParseErrors() {
+             var errorKey = ctrl.$$parserName || 'parse';
+             if (isUndefined(parserValid)) {
+               setValidity(errorKey, null);
+             } else {
+               if (!parserValid) {
+                 forEach(ctrl.$validators, function(v, name) {
+                   setValidity(name, null);
+                 });
+                 forEach(ctrl.$asyncValidators, function(v, name) {
+                   setValidity(name, null);
+                 });
+               }
+               // Set the parse error last, to prevent unsetting it, should a $validators key == parserName
+               setValidity(errorKey, parserValid);
+               return parserValid;
+             }
+             return true;
+           }
+
+           function processSyncValidators() {
+             var syncValidatorsValid = true;
+             forEach(ctrl.$validators, function(validator, name) {
+               var result = validator(modelValue, viewValue);
+               syncValidatorsValid = syncValidatorsValid && result;
+               setValidity(name, result);
+             });
+             if (!syncValidatorsValid) {
+               forEach(ctrl.$asyncValidators, function(v, name) {
+                 setValidity(name, null);
+               });
+               return false;
+             }
+             return true;
+           }
+
+           function processAsyncValidators() {
+             var validatorPromises = [];
+             var allValid = true;
+             forEach(ctrl.$asyncValidators, function(validator, name) {
+               var promise = validator(modelValue, viewValue);
+               if (!isPromiseLike(promise)) {
+                 throw ngModelMinErr("$asyncValidators",
+                   "Expected asynchronous validator to return a promise but got '{0}' instead.", promise);
+               }
+               setValidity(name, undefined);
+               validatorPromises.push(promise.then(function() {
+                 setValidity(name, true);
+               }, function(error) {
+                 allValid = false;
+                 setValidity(name, false);
+               }));
+             });
+             if (!validatorPromises.length) {
+               validationDone(true);
+             } else {
+               $q.all(validatorPromises).then(function() {
+                 validationDone(allValid);
+               }, noop);
+             }
+           }
+
+           function setValidity(name, isValid) {
+             if (localValidationRunId === currentValidationRunId) {
+               ctrl.$setValidity(name, isValid);
+             }
+           }
+
+           function validationDone(allValid) {
+             if (localValidationRunId === currentValidationRunId) {
+
+               doneCallback(allValid);
+             }
+           }
+         };
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$commitViewValue
+          *
+          * @description
+          * Commit a pending update to the `$modelValue`.
+          *
+          * Updates may be pending by a debounced event or because the input is waiting for a some future
+          * event defined in `ng-model-options`. this method is rarely needed as `NgModelController`
+          * usually handles calling this in response to input events.
+          */
+         this.$commitViewValue = function() {
+           var viewValue = ctrl.$viewValue;
+
+           $timeout.cancel(pendingDebounce);
+
+           // If the view value has not changed then we should just exit, except in the case where there is
+           // a native validator on the element. In this case the validation state may have changed even though
+           // the viewValue has stayed empty.
+           if (ctrl.$$lastCommittedViewValue === viewValue && (viewValue !== '' || !ctrl.$$hasNativeValidators)) {
+             return;
+           }
+           ctrl.$$lastCommittedViewValue = viewValue;
+
+           // change to dirty
+           if (ctrl.$pristine) {
+             this.$setDirty();
+           }
+           this.$$parseAndValidate();
+         };
+
+         this.$$parseAndValidate = function() {
+           var viewValue = ctrl.$$lastCommittedViewValue;
+           var modelValue = viewValue;
+           parserValid = isUndefined(modelValue) ? undefined : true;
+
+           if (parserValid) {
+             for (var i = 0; i < ctrl.$parsers.length; i++) {
+               modelValue = ctrl.$parsers[i](modelValue);
+               if (isUndefined(modelValue)) {
+                 parserValid = false;
+                 break;
+               }
+             }
+           }
+           if (isNumber(ctrl.$modelValue) && isNaN(ctrl.$modelValue)) {
+             // ctrl.$modelValue has not been touched yet...
+             ctrl.$modelValue = ngModelGet($scope);
+           }
+           var prevModelValue = ctrl.$modelValue;
+           var allowInvalid = ctrl.$options && ctrl.$options.allowInvalid;
+           ctrl.$$rawModelValue = modelValue;
+
+           if (allowInvalid) {
+             ctrl.$modelValue = modelValue;
+             writeToModelIfNeeded();
+           }
+
+           // Pass the $$lastCommittedViewValue here, because the cached viewValue might be out of date.
+           // This can happen if e.g. $setViewValue is called from inside a parser
+           ctrl.$$runValidators(modelValue, ctrl.$$lastCommittedViewValue, function(allValid) {
+             if (!allowInvalid) {
+               // Note: Don't check ctrl.$valid here, as we could have
+               // external validators (e.g. calculated on the server),
+               // that just call $setValidity and need the model value
+               // to calculate their validity.
+               ctrl.$modelValue = allValid ? modelValue : undefined;
+               writeToModelIfNeeded();
+             }
+           });
+
+           function writeToModelIfNeeded() {
+             if (ctrl.$modelValue !== prevModelValue) {
+               ctrl.$$writeModelToScope();
+             }
+           }
+         };
+
+         this.$$writeModelToScope = function() {
+           ngModelSet($scope, ctrl.$modelValue);
+           forEach(ctrl.$viewChangeListeners, function(listener) {
+             try {
+               listener();
+             } catch (e) {
+               $exceptionHandler(e);
+             }
+           });
+         };
+
+         /**
+          * @ngdoc method
+          * @name ngModel.NgModelController#$setViewValue
+          *
+          * @description
+          * Update the view value.
+          *
+          * This method should be called when a control wants to change the view value; typically,
+          * this is done from within a DOM event handler. For example, the {@link ng.directive:input input}
+          * directive calls it when the value of the input changes and {@link ng.directive:select select}
+          * calls it when an option is selected.
+          *
+          * When `$setViewValue` is called, the new `value` will be staged for committing through the `$parsers`
+          * and `$validators` pipelines. If there are no special {@link ngModelOptions} specified then the staged
+          * value sent directly for processing, finally to be applied to `$modelValue` and then the
+          * **expression** specified in the `ng-model` attribute. Lastly, all the registered change listeners,
+          * in the `$viewChangeListeners` list, are called.
+          *
+          * In case the {@link ng.directive:ngModelOptions ngModelOptions} directive is used with `updateOn`
+          * and the `default` trigger is not listed, all those actions will remain pending until one of the
+          * `updateOn` events is triggered on the DOM element.
+          * All these actions will be debounced if the {@link ng.directive:ngModelOptions ngModelOptions}
+          * directive is used with a custom debounce for this particular event.
+          * Note that a `$digest` is only triggered once the `updateOn` events are fired, or if `debounce`
+          * is specified, once the timer runs out.
+          *
+          * When used with standard inputs, the view value will always be a string (which is in some cases
+          * parsed into another type, such as a `Date` object for `input[date]`.)
+          * However, custom controls might also pass objects to this method. In this case, we should make
+          * a copy of the object before passing it to `$setViewValue`. This is because `ngModel` does not
+          * perform a deep watch of objects, it only looks for a change of identity. If you only change
+          * the property of the object then ngModel will not realise that the object has changed and
+          * will not invoke the `$parsers` and `$validators` pipelines. For this reason, you should
+          * not change properties of the copy once it has been passed to `$setViewValue`.
+          * Otherwise you may cause the model value on the scope to change incorrectly.
+          *
+          * <div class="alert alert-info">
+          * In any case, the value passed to the method should always reflect the current value
+          * of the control. For example, if you are calling `$setViewValue` for an input element,
+          * you should pass the input DOM value. Otherwise, the control and the scope model become
+          * out of sync. It's also important to note that `$setViewValue` does not call `$render` or change
+          * the control's DOM value in any way. If we want to change the control's DOM value
+          * programmatically, we should update the `ngModel` scope expression. Its new value will be
+          * picked up by the model controller, which will run it through the `$formatters`, `$render` it
+          * to update the DOM, and finally call `$validate` on it.
+          * </div>
+          *
+          * @param {*} value value from the view.
+          * @param {string} trigger Event that triggered the update.
+          */
+         this.$setViewValue = function(value, trigger) {
+           ctrl.$viewValue = value;
+           if (!ctrl.$options || ctrl.$options.updateOnDefault) {
+             ctrl.$$debounceViewValueCommit(trigger);
+           }
+         };
+
+         this.$$debounceViewValueCommit = function(trigger) {
+           var debounceDelay = 0,
+               options = ctrl.$options,
+               debounce;
+
+           if (options && isDefined(options.debounce)) {
+             debounce = options.debounce;
+             if (isNumber(debounce)) {
+               debounceDelay = debounce;
+             } else if (isNumber(debounce[trigger])) {
+               debounceDelay = debounce[trigger];
+             } else if (isNumber(debounce['default'])) {
+               debounceDelay = debounce['default'];
+             }
+           }
+
+           $timeout.cancel(pendingDebounce);
+           if (debounceDelay) {
+             pendingDebounce = $timeout(function() {
+               ctrl.$commitViewValue();
+             }, debounceDelay);
+           } else if ($rootScope.$$phase) {
+             ctrl.$commitViewValue();
+           } else {
+             $scope.$apply(function() {
+               ctrl.$commitViewValue();
+             });
+           }
+         };
+
+         // model -> value
+         // Note: we cannot use a normal scope.$watch as we want to detect the following:
+         // 1. scope value is 'a'
+         // 2. user enters 'b'
+         // 3. ng-change kicks in and reverts scope value to 'a'
+         //    -> scope value did not change since the last digest as
+         //       ng-change executes in apply phase
+         // 4. view should be changed back to 'a'
+         $scope.$watch(function ngModelWatch() {
+           var modelValue = ngModelGet($scope);
+
+           // if scope model value and ngModel value are out of sync
+           // TODO(perf): why not move this to the action fn?
+           if (modelValue !== ctrl.$modelValue &&
+              // checks for NaN is needed to allow setting the model to NaN when there's an asyncValidator
+              (ctrl.$modelValue === ctrl.$modelValue || modelValue === modelValue)
+           ) {
+             ctrl.$modelValue = ctrl.$$rawModelValue = modelValue;
+             parserValid = undefined;
+
+             var formatters = ctrl.$formatters,
+                 idx = formatters.length;
+
+             var viewValue = modelValue;
+             while (idx--) {
+               viewValue = formatters[idx](viewValue);
+             }
+             if (ctrl.$viewValue !== viewValue) {
+               ctrl.$viewValue = ctrl.$$lastCommittedViewValue = viewValue;
+               ctrl.$render();
+
+               ctrl.$$runValidators(modelValue, viewValue, noop);
+             }
+           }
+
+           return modelValue;
+         });
+       }];
+
+
+       /**
+        * @ngdoc directive
+        * @name ngModel
+        *
+        * @element input
+        * @priority 1
+        *
+        * @description
+        * The `ngModel` directive binds an `input`,`select`, `textarea` (or custom form control) to a
+        * property on the scope using {@link ngModel.NgModelController NgModelController},
+        * which is created and exposed by this directive.
+        *
+        * `ngModel` is responsible for:
+        *
+        * - Binding the view into the model, which other directives such as `input`, `textarea` or `select`
+        *   require.
+        * - Providing validation behavior (i.e. required, number, email, url).
+        * - Keeping the state of the control (valid/invalid, dirty/pristine, touched/untouched, validation errors).
+        * - Setting related css classes on the element (`ng-valid`, `ng-invalid`, `ng-dirty`, `ng-pristine`, `ng-touched`, `ng-untouched`) including animations.
+        * - Registering the control with its parent {@link ng.directive:form form}.
+        *
+        * Note: `ngModel` will try to bind to the property given by evaluating the expression on the
+        * current scope. If the property doesn't already exist on this scope, it will be created
+        * implicitly and added to the scope.
+        *
+        * For best practices on using `ngModel`, see:
+        *
+        *  - [Understanding Scopes](https://github.com/angular/angular.js/wiki/Understanding-Scopes)
+        *
+        * For basic examples, how to use `ngModel`, see:
+        *
+        *  - {@link ng.directive:input input}
+        *    - {@link input[text] text}
+        *    - {@link input[checkbox] checkbox}
+        *    - {@link input[radio] radio}
+        *    - {@link input[number] number}
+        *    - {@link input[email] email}
+        *    - {@link input[url] url}
+        *    - {@link input[date] date}
+        *    - {@link input[datetime-local] datetime-local}
+        *    - {@link input[time] time}
+        *    - {@link input[month] month}
+        *    - {@link input[week] week}
+        *  - {@link ng.directive:select select}
+        *  - {@link ng.directive:textarea textarea}
+        *
+        * # CSS classes
+        * The following CSS classes are added and removed on the associated input/select/textarea element
+        * depending on the validity of the model.
+        *
+        *  - `ng-valid`: the model is valid
+        *  - `ng-invalid`: the model is invalid
+        *  - `ng-valid-[key]`: for each valid key added by `$setValidity`
+        *  - `ng-invalid-[key]`: for each invalid key added by `$setValidity`
+        *  - `ng-pristine`: the control hasn't been interacted with yet
+        *  - `ng-dirty`: the control has been interacted with
+        *  - `ng-touched`: the control has been blurred
+        *  - `ng-untouched`: the control hasn't been blurred
+        *  - `ng-pending`: any `$asyncValidators` are unfulfilled
+        *
+        * Keep in mind that ngAnimate can detect each of these classes when added and removed.
+        *
+        * ## Animation Hooks
+        *
+        * Animations within models are triggered when any of the associated CSS classes are added and removed
+        * on the input element which is attached to the model. These classes are: `.ng-pristine`, `.ng-dirty`,
+        * `.ng-invalid` and `.ng-valid` as well as any other validations that are performed on the model itself.
+        * The animations that are triggered within ngModel are similar to how they work in ngClass and
+        * animations can be hooked into using CSS transitions, keyframes as well as JS animations.
+        *
+        * The following example shows a simple way to utilize CSS transitions to style an input element
+        * that has been rendered as invalid after it has been validated:
+        *
+        * <pre>
+        * //be sure to include ngAnimate as a module to hook into more
+        * //advanced animations
+        * .my-input {
+        *   transition:0.5s linear all;
+        *   background: white;
+        * }
+        * .my-input.ng-invalid {
+        *   background: red;
+        *   color:white;
+        * }
+        * </pre>
+        *
+        * @example
+        * <example deps="angular-animate.js" animations="true" fixBase="true" module="inputExample">
+            <file name="index.html">
+              <script>
+               angular.module('inputExample', [])
+                 .controller('ExampleController', ['$scope', function($scope) {
+                   $scope.val = '1';
+                 }]);
+              </script>
+              <style>
+                .my-input {
+                  transition:all linear 0.5s;
+                  background: transparent;
+                }
+                .my-input.ng-invalid {
+                  color:white;
+                  background: red;
+                }
+              </style>
+              <p id="inputDescription">
+               Update input to see transitions when valid/invalid.
+               Integer is a valid value.
+              </p>
+              <form name="testForm" ng-controller="ExampleController">
+                <input ng-model="val" ng-pattern="/^\d+$/" name="anim" class="my-input"
+                       aria-describedby="inputDescription" />
+              </form>
+            </file>
+        * </example>
+        *
+        * ## Binding to a getter/setter
+        *
+        * Sometimes it's helpful to bind `ngModel` to a getter/setter function.  A getter/setter is a
+        * function that returns a representation of the model when called with zero arguments, and sets
+        * the internal state of a model when called with an argument. It's sometimes useful to use this
+        * for models that have an internal representation that's different from what the model exposes
+        * to the view.
+        *
+        * <div class="alert alert-success">
+        * **Best Practice:** It's best to keep getters fast because Angular is likely to call them more
+        * frequently than other parts of your code.
+        * </div>
+        *
+        * You use this behavior by adding `ng-model-options="{ getterSetter: true }"` to an element that
+        * has `ng-model` attached to it. You can also add `ng-model-options="{ getterSetter: true }"` to
+        * a `<form>`, which will enable this behavior for all `<input>`s within it. See
+        * {@link ng.directive:ngModelOptions `ngModelOptions`} for more.
+        *
+        * The following example shows how to use `ngModel` with a getter/setter:
+        *
+        * @example
+        * <example name="ngModel-getter-setter" module="getterSetterExample">
+            <file name="index.html">
+              <div ng-controller="ExampleController">
+                <form name="userForm">
+                  <label>Name:
+                    <input type="text" name="userName"
+                           ng-model="user.name"
+                           ng-model-options="{ getterSetter: true }" />
+                  </label>
+                </form>
+                <pre>user.name = <span ng-bind="user.name()"></span></pre>
+              </div>
+            </file>
+            <file name="app.js">
+              angular.module('getterSetterExample', [])
+                .controller('ExampleController', ['$scope', function($scope) {
+                  var _name = 'Brian';
+                  $scope.user = {
+                    name: function(newName) {
+                     // Note that newName can be undefined for two reasons:
+                     // 1. Because it is called as a getter and thus called with no arguments
+                     // 2. Because the property should actually be set to undefined. This happens e.g. if the
+                     //    input is invalid
+                     return arguments.length ? (_name = newName) : _name;
+                    }
+                  };
+                }]);
+            </file>
+        * </example>
+        */
+       var ngModelDirective = ['$rootScope', function($rootScope) {
+         return {
+           restrict: 'A',
+           require: ['ngModel', '^?form', '^?ngModelOptions'],
+           controller: NgModelController,
+           // Prelink needs to run before any input directive
+           // so that we can set the NgModelOptions in NgModelController
+           // before anyone else uses it.
+           priority: 1,
+           compile: function ngModelCompile(element) {
+             // Setup initial state of the control
+             element.addClass(PRISTINE_CLASS).addClass(UNTOUCHED_CLASS).addClass(VALID_CLASS);
+
+             return {
+               pre: function ngModelPreLink(scope, element, attr, ctrls) {
+                 var modelCtrl = ctrls[0],
+                     formCtrl = ctrls[1] || modelCtrl.$$parentForm;
+
+                 modelCtrl.$$setOptions(ctrls[2] && ctrls[2].$options);
+
+                 // notify others, especially parent forms
+                 formCtrl.$addControl(modelCtrl);
+
+                 attr.$observe('name', function(newValue) {
+                   if (modelCtrl.$name !== newValue) {
+                     modelCtrl.$$parentForm.$$renameControl(modelCtrl, newValue);
+                   }
+                 });
+
+                 scope.$on('$destroy', function() {
+                   modelCtrl.$$parentForm.$removeControl(modelCtrl);
+                 });
+               },
+               post: function ngModelPostLink(scope, element, attr, ctrls) {
+                 var modelCtrl = ctrls[0];
+                 if (modelCtrl.$options && modelCtrl.$options.updateOn) {
+                   element.on(modelCtrl.$options.updateOn, function(ev) {
+                     modelCtrl.$$debounceViewValueCommit(ev && ev.type);
+                   });
+                 }
+
+                 element.on('blur', function(ev) {
+                   if (modelCtrl.$touched) return;
+
+                   if ($rootScope.$$phase) {
+                     scope.$evalAsync(modelCtrl.$setTouched);
+                   } else {
+                     scope.$apply(modelCtrl.$setTouched);
+                   }
+                 });
+               }
+             };
+           }
+         };
+       }];
+
+       var DEFAULT_REGEXP = /(\s+|^)default(\s+|$)/;
+
+       /**
+        * @ngdoc directive
+        * @name ngModelOptions
+        *
+        * @description
+        * Allows tuning how model updates are done. Using `ngModelOptions` you can specify a custom list of
+        * events that will trigger a model update and/or a debouncing delay so that the actual update only
+        * takes place when a timer expires; this timer will be reset after another change takes place.
+        *
+        * Given the nature of `ngModelOptions`, the value displayed inside input fields in the view might
+        * be different from the value in the actual model. This means that if you update the model you
+        * should also invoke {@link ngModel.NgModelController `$rollbackViewValue`} on the relevant input field in
+        * order to make sure it is synchronized with the model and that any debounced action is canceled.
+        *
+        * The easiest way to reference the control's {@link ngModel.NgModelController `$rollbackViewValue`}
+        * method is by making sure the input is placed inside a form that has a `name` attribute. This is
+        * important because `form` controllers are published to the related scope under the name in their
+        * `name` attribute.
+        *
+        * Any pending changes will take place immediately when an enclosing form is submitted via the
+        * `submit` event. Note that `ngClick` events will occur before the model is updated. Use `ngSubmit`
+        * to have access to the updated model.
+        *
+        * `ngModelOptions` has an effect on the element it's declared on and its descendants.
+        *
+        * @param {Object} ngModelOptions options to apply to the current model. Valid keys are:
+        *   - `updateOn`: string specifying which event should the input be bound to. You can set several
+        *     events using an space delimited list. There is a special event called `default` that
+        *     matches the default events belonging of the control.
+        *   - `debounce`: integer value which contains the debounce model update value in milliseconds. A
+        *     value of 0 triggers an immediate update. If an object is supplied instead, you can specify a
+        *     custom value for each event. For example:
+        *     `ng-model-options="{ updateOn: 'default blur', debounce: { 'default': 500, 'blur': 0 } }"`
+        *   - `allowInvalid`: boolean value which indicates that the model can be set with values that did
+        *     not validate correctly instead of the default behavior of setting the model to undefined.
+        *   - `getterSetter`: boolean value which determines whether or not to treat functions bound to
+              `ngModel` as getters/setters.
+        *   - `timezone`: Defines the timezone to be used to read/write the `Date` instance in the model for
+        *     `<input type="date">`, `<input type="time">`, ... . It understands UTC/GMT and the
+        *     continental US time zone abbreviations, but for general use, use a time zone offset, for
+        *     example, `'+0430'` (4 hours, 30 minutes east of the Greenwich meridian)
+        *     If not specified, the timezone of the browser will be used.
+        *
+        * @example
+
+         The following example shows how to override immediate updates. Changes on the inputs within the
+         form will update the model only when the control loses focus (blur event). If `escape` key is
+         pressed while the input field is focused, the value is reset to the value in the current model.
+
+         <example name="ngModelOptions-directive-blur" module="optionsExample">
+           <file name="index.html">
+             <div ng-controller="ExampleController">
+               <form name="userForm">
+                 <label>Name:
+                   <input type="text" name="userName"
+                          ng-model="user.name"
+                          ng-model-options="{ updateOn: 'blur' }"
+                          ng-keyup="cancel($event)" />
+                 </label><br />
+                 <label>Other data:
+                   <input type="text" ng-model="user.data" />
+                 </label><br />
+               </form>
+               <pre>user.name = <span ng-bind="user.name"></span></pre>
+               <pre>user.data = <span ng-bind="user.data"></span></pre>
+             </div>
+           </file>
+           <file name="app.js">
+             angular.module('optionsExample', [])
+               .controller('ExampleController', ['$scope', function($scope) {
+                 $scope.user = { name: 'John', data: '' };
+
+                 $scope.cancel = function(e) {
+                   if (e.keyCode == 27) {
+                     $scope.userForm.userName.$rollbackViewValue();
+                   }
+                 };
+               }]);
+           </file>
+           <file name="protractor.js" type="protractor">
+             var model = element(by.binding('user.name'));
+             var input = element(by.model('user.name'));
+             var other = element(by.model('user.data'));
+
+             it('should allow custom events', function() {
+               input.sendKeys(' Doe');
+               input.click();
+               expect(model.getText()).toEqual('John');
+               other.click();
+               expect(model.getText()).toEqual('John Doe');
+             });
+
+             it('should $rollbackViewValue when model changes', function() {
+               input.sendKeys(' Doe');
+               expect(input.getAttribute('value')).toEqual('John Doe');
+               input.sendKeys(protractor.Key.ESCAPE);
+               expect(input.getAttribute('value')).toEqual('John');
+               other.click();
+               expect(model.getText()).toEqual('John');
+             });
+           </file>
+         </example>
+
+         This one shows how to debounce model changes. Model will be updated only 1 sec after last change.
+         If the `Clear` button is pressed, any debounced action is canceled and the value becomes empty.
+
+         <example name="ngModelOptions-directive-debounce" module="optionsExample">
+           <file name="index.html">
+             <div ng-controller="ExampleController">
+               <form name="userForm">
+                 <label>Name:
+                   <input type="text" name="userName"
+                          ng-model="user.name"
+                          ng-model-options="{ debounce: 1000 }" />
+                 </label>
+                 <button ng-click="userForm.userName.$rollbackViewValue(); user.name=''">Clear</button>
+                 <br />
+               </form>
+               <pre>user.name = <span ng-bind="user.name"></span></pre>
+             </div>
+           </file>
+           <file name="app.js">
+             angular.module('optionsExample', [])
+               .controller('ExampleController', ['$scope', function($scope) {
+                 $scope.user = { name: 'Igor' };
+               }]);
+           </file>
+         </example>
+
+         This one shows how to bind to getter/setters:
+
+         <example name="ngModelOptions-directive-getter-setter" module="getterSetterExample">
+           <file name="index.html">
+             <div ng-controller="ExampleController">
+               <form name="userForm">
+                 <label>Name:
+                   <input type="text" name="userName"
+                          ng-model="user.name"
+                          ng-model-options="{ getterSetter: true }" />
+                 </label>
+               </form>
+               <pre>user.name = <span ng-bind="user.name()"></span></pre>
+             </div>
+           </file>
+           <file name="app.js">
+             angular.module('getterSetterExample', [])
+               .controller('ExampleController', ['$scope', function($scope) {
+                 var _name = 'Brian';
+                 $scope.user = {
+                   name: function(newName) {
+                     // Note that newName can be undefined for two reasons:
+                     // 1. Because it is called as a getter and thus called with no arguments
+                     // 2. Because the property should actually be set to undefined. This happens e.g. if the
+                     //    input is invalid
+                     return arguments.length ? (_name = newName) : _name;
+                   }
+                 };
+               }]);
+           </file>
+         </example>
+        */
+       var ngModelOptionsDirective = function() {
+         return {
+           restrict: 'A',
+           controller: ['$scope', '$attrs', function($scope, $attrs) {
+             var that = this;
+             this.$options = copy($scope.$eval($attrs.ngModelOptions));
+             // Allow adding/overriding bound events
+             if (isDefined(this.$options.updateOn)) {
+               this.$options.updateOnDefault = false;
+               // extract "default" pseudo-event from list of events that can trigger a model update
+               this.$options.updateOn = trim(this.$options.updateOn.replace(DEFAULT_REGEXP, function() {
+                 that.$options.updateOnDefault = true;
+                 return ' ';
+               }));
+             } else {
+               this.$options.updateOnDefault = true;
+             }
+           }]
+         };
+       };
+
+
+
+       // helper methods
+       function addSetValidityMethod(context) {
+         var ctrl = context.ctrl,
+             $element = context.$element,
+             classCache = {},
+             set = context.set,
+             unset = context.unset,
+             $animate = context.$animate;
+
+         classCache[INVALID_CLASS] = !(classCache[VALID_CLASS] = $element.hasClass(VALID_CLASS));
+
+         ctrl.$setValidity = setValidity;
+
+         function setValidity(validationErrorKey, state, controller) {
+           if (isUndefined(state)) {
+             createAndSet('$pending', validationErrorKey, controller);
+           } else {
+             unsetAndCleanup('$pending', validationErrorKey, controller);
+           }
+           if (!isBoolean(state)) {
+             unset(ctrl.$error, validationErrorKey, controller);
+             unset(ctrl.$$success, validationErrorKey, controller);
+           } else {
+             if (state) {
+               unset(ctrl.$error, validationErrorKey, controller);
+               set(ctrl.$$success, validationErrorKey, controller);
+             } else {
+               set(ctrl.$error, validationErrorKey, controller);
+               unset(ctrl.$$success, validationErrorKey, controller);
+             }
+           }
+           if (ctrl.$pending) {
+             cachedToggleClass(PENDING_CLASS, true);
+             ctrl.$valid = ctrl.$invalid = undefined;
+             toggleValidationCss('', null);
+           } else {
+             cachedToggleClass(PENDING_CLASS, false);
+             ctrl.$valid = isObjectEmpty(ctrl.$error);
+             ctrl.$invalid = !ctrl.$valid;
+             toggleValidationCss('', ctrl.$valid);
+           }
+
+           // re-read the state as the set/unset methods could have
+           // combined state in ctrl.$error[validationError] (used for forms),
+           // where setting/unsetting only increments/decrements the value,
+           // and does not replace it.
+           var combinedState;
+           if (ctrl.$pending && ctrl.$pending[validationErrorKey]) {
+             combinedState = undefined;
+           } else if (ctrl.$error[validationErrorKey]) {
+             combinedState = false;
+           } else if (ctrl.$$success[validationErrorKey]) {
+             combinedState = true;
+           } else {
+             combinedState = null;
+           }
+
+           toggleValidationCss(validationErrorKey, combinedState);
+           ctrl.$$parentForm.$setValidity(validationErrorKey, combinedState, ctrl);
+         }
+
+         function createAndSet(name, value, controller) {
+           if (!ctrl[name]) {
+             ctrl[name] = {};
+           }
+           set(ctrl[name], value, controller);
+         }
+
+         function unsetAndCleanup(name, value, controller) {
+           if (ctrl[name]) {
+             unset(ctrl[name], value, controller);
+           }
+           if (isObjectEmpty(ctrl[name])) {
+             ctrl[name] = undefined;
+           }
+         }
+
+         function cachedToggleClass(className, switchValue) {
+           if (switchValue && !classCache[className]) {
+             $animate.addClass($element, className);
+             classCache[className] = true;
+           } else if (!switchValue && classCache[className]) {
+             $animate.removeClass($element, className);
+             classCache[className] = false;
+           }
+         }
+
+         function toggleValidationCss(validationErrorKey, isValid) {
+           validationErrorKey = validationErrorKey ? '-' + snake_case(validationErrorKey, '-') : '';
+
+           cachedToggleClass(VALID_CLASS + validationErrorKey, isValid === true);
+           cachedToggleClass(INVALID_CLASS + validationErrorKey, isValid === false);
+         }
+       }
+
+       function isObjectEmpty(obj) {
+         if (obj) {
+           for (var prop in obj) {
+             if (obj.hasOwnProperty(prop)) {
+               return false;
+             }
+           }
+         }
+         return true;
+       }
+
+       /**
+        * @ngdoc directive
+        * @name ngNonBindable
+        * @restrict AC
+        * @priority 1000
+        *
+        * @description
+        * The `ngNonBindable` directive tells Angular not to compile or bind the contents of the current
+        * DOM element. This is useful if the element contains what appears to be Angular directives and
+        * bindings but which should be ignored by Angular. This could be the case if you have a site that
+        * displays snippets of code, for instance.
+        *
+        * @element ANY
+        *
+        * @example
+        * In this example there are two locations where a simple interpolation binding (`{{}}`) is present,
+        * but the one wrapped in `ngNonBindable` is left alone.
+        *
+        * @example
+           <example>
+             <file name="index.html">
+               <div>Normal: {{1 + 2}}</div>
+               <div ng-non-bindable>Ignored: {{1 + 2}}</div>
+             </file>
+             <file name="protractor.js" type="protractor">
+              it('should check ng-non-bindable', function() {
+                expect(element(by.binding('1 + 2')).getText()).toContain('3');
+                expect(element.all(by.css('div')).last().getText()).toMatch(/1 \+ 2/);
+              });
+             </file>
+           </example>
+        */
+       var ngNonBindableDirective = ngDirective({ terminal: true, priority: 1000 });
+
+       /* global jqLiteRemove */
+
+       var ngOptionsMinErr = minErr('ngOptions');
+
+       /**
+        * @ngdoc directive
+        * @name ngOptions
+        * @restrict A
+        *
+        * @description
+        *
+        * The `ngOptions` attribute can be used to dynamically generate a list of `<option>`
+        * elements for the `<select>` element using the array or object obtained by evaluating the
+        * `ngOptions` comprehension expression.
+        *
+        * In many cases, `ngRepeat` can be used on `<option>` elements instead of `ngOptions` to achieve a
+        * similar result. However, `ngOptions` provides some benefits such as reducing memory and
+        * increasing speed by not creating a new scope for each repeated instance, as well as providing
+        * more flexibility in how the `<select>`'s model is assigned via the `select` **`as`** part of the
+        * comprehension expression. `ngOptions` should be used when the `<select>` model needs to be bound
+        *  to a non-string value. This is because an option element can only be bound to string values at
+        * present.
+        *
+        * When an item in the `<select>` menu is selected, the array element or object property
+        * represented by the selected option will be bound to the model identified by the `ngModel`
+        * directive.
+        *
+        * Optionally, a single hard-coded `<option>` element, with the value set to an empty string, can
+        * be nested into the `<select>` element. This element will then represent the `null` or "not selected"
+        * option. See example below for demonstration.
+        *
+        * ## Complex Models (objects or collections)
+        *
+        * By default, `ngModel` watches the model by reference, not value. This is important to know when
+        * binding the select to a model that is an object or a collection.
+        *
+        * One issue occurs if you want to preselect an option. For example, if you set
+        * the model to an object that is equal to an object in your collection, `ngOptions` won't be able to set the selection,
+        * because the objects are not identical. So by default, you should always reference the item in your collection
+        * for preselections, e.g.: `$scope.selected = $scope.collection[3]`.
+        *
+        * Another solution is to use a `track by` clause, because then `ngOptions` will track the identity
+        * of the item not by reference, but by the result of the `track by` expression. For example, if your
+        * collection items have an id property, you would `track by item.id`.
+        *
+        * A different issue with objects or collections is that ngModel won't detect if an object property or
+        * a collection item changes. For that reason, `ngOptions` additionally watches the model using
+        * `$watchCollection`, when the expression contains a `track by` clause or the the select has the `multiple` attribute.
+        * This allows ngOptions to trigger a re-rendering of the options even if the actual object/collection
+        * has not changed identity, but only a property on the object or an item in the collection changes.
+        *
+        * Note that `$watchCollection` does a shallow comparison of the properties of the object (or the items in the collection
+        * if the model is an array). This means that changing a property deeper than the first level inside the
+        * object/collection will not trigger a re-rendering.
+        *
+        * ## `select` **`as`**
+        *
+        * Using `select` **`as`** will bind the result of the `select` expression to the model, but
+        * the value of the `<select>` and `<option>` html elements will be either the index (for array data sources)
+        * or property name (for object data sources) of the value within the collection. If a **`track by`** expression
+        * is used, the result of that expression will be set as the value of the `option` and `select` elements.
+        *
+        *
+        * ### `select` **`as`** and **`track by`**
+        *
+        * <div class="alert alert-warning">
+        * Be careful when using `select` **`as`** and **`track by`** in the same expression.
+        * </div>
+        *
+        * Given this array of items on the $scope:
+        *
+        * ```js
+        * $scope.items = [{
+        *   id: 1,
+        *   label: 'aLabel',
+        *   subItem: { name: 'aSubItem' }
+        * }, {
+        *   id: 2,
+        *   label: 'bLabel',
+        *   subItem: { name: 'bSubItem' }
+        * }];
+        * ```
+        *
+        * This will work:
+        *
+        * ```html
+        * <select ng-options="item as item.label for item in items track by item.id" ng-model="selected"></select>
+        * ```
+        * ```js
+        * $scope.selected = $scope.items[0];
+        * ```
+        *
+        * but this will not work:
+        *
+        * ```html
+        * <select ng-options="item.subItem as item.label for item in items track by item.id" ng-model="selected"></select>
+        * ```
+        * ```js
+        * $scope.selected = $scope.items[0].subItem;
+        * ```
+        *
+        * In both examples, the **`track by`** expression is applied successfully to each `item` in the
+        * `items` array. Because the selected option has been set programmatically in the controller, the
+        * **`track by`** expression is also applied to the `ngModel` value. In the first example, the
+        * `ngModel` value is `items[0]` and the **`track by`** expression evaluates to `items[0].id` with
+        * no issue. In the second example, the `ngModel` value is `items[0].subItem` and the **`track by`**
+        * expression evaluates to `items[0].subItem.id` (which is undefined). As a result, the model value
+        * is not matched against any `<option>` and the `<select>` appears as having no selected value.
+        *
+        *
+        * @param {string} ngModel Assignable angular expression to data-bind to.
+        * @param {string=} name Property name of the form under which the control is published.
+        * @param {string=} required The control is considered valid only if value is entered.
+        * @param {string=} ngRequired Adds `required` attribute and `required` validation constraint to
+        *    the element when the ngRequired expression evaluates to true. Use `ngRequired` instead of
+        *    `required` when you want to data-bind to the `required` attribute.
+        * @param {comprehension_expression=} ngOptions in one of the following forms:
+        *
+        *   * for array data sources:
+        *     * `label` **`for`** `value` **`in`** `array`
+        *     * `select` **`as`** `label` **`for`** `value` **`in`** `array`
+        *     * `label` **`group by`** `group` **`for`** `value` **`in`** `array`
+        *     * `label` **`disable when`** `disable` **`for`** `value` **`in`** `array`
+        *     * `label` **`group by`** `group` **`for`** `value` **`in`** `array` **`track by`** `trackexpr`
+        *     * `label` **`disable when`** `disable` **`for`** `value` **`in`** `array` **`track by`** `trackexpr`
+        *     * `label` **`for`** `value` **`in`** `array` | orderBy:`orderexpr` **`track by`** `trackexpr`
+        *        (for including a filter with `track by`)
+        *   * for object data sources:
+        *     * `label` **`for (`**`key` **`,`** `value`**`) in`** `object`
+        *     * `select` **`as`** `label` **`for (`**`key` **`,`** `value`**`) in`** `object`
+        *     * `label` **`group by`** `group` **`for (`**`key`**`,`** `value`**`) in`** `object`
+        *     * `label` **`disable when`** `disable` **`for (`**`key`**`,`** `value`**`) in`** `object`
+        *     * `select` **`as`** `label` **`group by`** `group`
+        *         **`for` `(`**`key`**`,`** `value`**`) in`** `object`
+        *     * `select` **`as`** `label` **`disable when`** `disable`
+        *         **`for` `(`**`key`**`,`** `value`**`) in`** `object`
+        *
+        * Where:
+        *
+        *   * `array` / `object`: an expression which evaluates to an array / object to iterate over.
+        *   * `value`: local variable which will refer to each item in the `array` or each property value
+        *      of `object` during iteration.
+        *   * `key`: local variable which will refer to a property name in `object` during iteration.
+        *   * `label`: The result of this expression will be the label for `<option>` element. The
+        *     `expression` will most likely refer to the `value` variable (e.g. `value.propertyName`).
+        *   * `select`: The result of this expression will be bound to the model of the parent `<select>`
+        *      element. If not specified, `select` expression will default to `value`.
+        *   * `group`: The result of this expression will be used to group options using the `<optgroup>`
+        *      DOM element.
+        *   * `disable`: The result of this expression will be used to disable the rendered `<option>`
+        *      element. Return `true` to disable.
+        *   * `trackexpr`: Used when working with an array of objects. The result of this expression will be
+        *      used to identify the objects in the array. The `trackexpr` will most likely refer to the
+        *     `value` variable (e.g. `value.propertyName`). With this the selection is preserved
+        *      even when the options are recreated (e.g. reloaded from the server).
+        *
+        * @example
+           <example module="selectExample">
+             <file name="index.html">
+               <script>
+               angular.module('selectExample', [])
+                 .controller('ExampleController', ['$scope', function($scope) {
+                   $scope.colors = [
+                     {name:'black', shade:'dark'},
+                     {name:'white', shade:'light', notAnOption: true},
+                     {name:'red', shade:'dark'},
+                     {name:'blue', shade:'dark', notAnOption: true},
+                     {name:'yellow', shade:'light', notAnOption: false}
+                   ];
+                   $scope.myColor = $scope.colors[2]; // red
+                 }]);
+               </script>
+               <div ng-controller="ExampleController">
+                 <ul>
+                   <li ng-repeat="color in colors">
+                     <label>Name: <input ng-model="color.name"></label>
+                     <label><input type="checkbox" ng-model="color.notAnOption"> Disabled?</label>
+                     <button ng-click="colors.splice($index, 1)" aria-label="Remove">X</button>
+                   </li>
+                   <li>
+                     <button ng-click="colors.push({})">add</button>
+                   </li>
+                 </ul>
+                 <hr/>
+                 <label>Color (null not allowed):
+                   <select ng-model="myColor" ng-options="color.name for color in colors"></select>
+                 </label><br/>
+                 <label>Color (null allowed):
+                 <span  class="nullable">
+                   <select ng-model="myColor" ng-options="color.name for color in colors">
+                     <option value="">-- choose color --</option>
+                   </select>
+                 </span></label><br/>
+
+                 <label>Color grouped by shade:
+                   <select ng-model="myColor" ng-options="color.name group by color.shade for color in colors">
+                   </select>
+                 </label><br/>
+
+                 <label>Color grouped by shade, with some disabled:
+                   <select ng-model="myColor"
+                         ng-options="color.name group by color.shade disable when color.notAnOption for color in colors">
+                   </select>
+                 </label><br/>
+
+
+
+                 Select <button ng-click="myColor = { name:'not in list', shade: 'other' }">bogus</button>.
+                 <br/>
+                 <hr/>
+                 Currently selected: {{ {selected_color:myColor} }}
+                 <div style="border:solid 1px black; height:20px"
+                      ng-style="{'background-color':myColor.name}">
+                 </div>
+               </div>
+             </file>
+             <file name="protractor.js" type="protractor">
+                it('should check ng-options', function() {
+                  expect(element(by.binding('{selected_color:myColor}')).getText()).toMatch('red');
+                  element.all(by.model('myColor')).first().click();
+                  element.all(by.css('select[ng-model="myColor"] option')).first().click();
+                  expect(element(by.binding('{selected_color:myColor}')).getText()).toMatch('black');
+                  element(by.css('.nullable select[ng-model="myColor"]')).click();
+                  element.all(by.css('.nullable select[ng-model="myColor"] option')).first().click();
+                  expect(element(by.binding('{selected_color:myColor}')).getText()).toMatch('null');
+                });
+             </file>
+           </example>
+        */
+
+       // jshint maxlen: false
+       //                     //00001111111111000000000002222222222000000000000000000000333333333300000000000000000000000004444444444400000000000005555555555555550000000006666666666666660000000777777777777777000000000000000888888888800000000000000000009999999999
+       var NG_OPTIONS_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+group\s+by\s+([\s\S]+?))?(?:\s+disable\s+when\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+([\s\S]+?)(?:\s+track\s+by\s+([\s\S]+?))?$/;
+                               // 1: value expression (valueFn)
+                               // 2: label expression (displayFn)
+                               // 3: group by expression (groupByFn)
+                               // 4: disable when expression (disableWhenFn)
+                               // 5: array item variable name
+                               // 6: object item key variable name
+                               // 7: object item value variable name
+                               // 8: collection expression
+                               // 9: track by expression
+       // jshint maxlen: 100
+
+
+       var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) {
+
+         function parseOptionsExpression(optionsExp, selectElement, scope) {
+
+           var match = optionsExp.match(NG_OPTIONS_REGEXP);
+           if (!(match)) {
+             throw ngOptionsMinErr('iexp',
+               "Expected expression in form of " +
+               "'_select_ (as _label_)? for (_key_,)?_value_ in _collection_'" +
+               " but got '{0}'. Element: {1}",
+               optionsExp, startingTag(selectElement));
+           }
+
+           // Extract the parts from the ngOptions expression
+
+           // The variable name for the value of the item in the collection
+           var valueName = match[5] || match[7];
+           // The variable name for the key of the item in the collection
+           var keyName = match[6];
+
+           // An expression that generates the viewValue for an option if there is a label expression
+           var selectAs = / as /.test(match[0]) && match[1];
+           // An expression that is used to track the id of each object in the options collection
+           var trackBy = match[9];
+           // An expression that generates the viewValue for an option if there is no label expression
+           var valueFn = $parse(match[2] ? match[1] : valueName);
+           var selectAsFn = selectAs && $parse(selectAs);
+           var viewValueFn = selectAsFn || valueFn;
+           var trackByFn = trackBy && $parse(trackBy);
+
+           // Get the value by which we are going to track the option
+           // if we have a trackFn then use that (passing scope and locals)
+           // otherwise just hash the given viewValue
+           var getTrackByValueFn = trackBy ?
+                                     function(value, locals) { return trackByFn(scope, locals); } :
+                                     function getHashOfValue(value) { return hashKey(value); };
+           var getTrackByValue = function(value, key) {
+             return getTrackByValueFn(value, getLocals(value, key));
+           };
+
+           var displayFn = $parse(match[2] || match[1]);
+           var groupByFn = $parse(match[3] || '');
+           var disableWhenFn = $parse(match[4] || '');
+           var valuesFn = $parse(match[8]);
+
+           var locals = {};
+           var getLocals = keyName ? function(value, key) {
+             locals[keyName] = key;
+             locals[valueName] = value;
+             return locals;
+           } : function(value) {
+             locals[valueName] = value;
+             return locals;
+           };
+
+
+           function Option(selectValue, viewValue, label, group, disabled) {
+             this.selectValue = selectValue;
+             this.viewValue = viewValue;
+             this.label = label;
+             this.group = group;
+             this.disabled = disabled;
+           }
+
+           function getOptionValuesKeys(optionValues) {
+             var optionValuesKeys;
+
+             if (!keyName && isArrayLike(optionValues)) {
+               optionValuesKeys = optionValues;
+             } else {
+               // if object, extract keys, in enumeration order, unsorted
+               optionValuesKeys = [];
+               for (var itemKey in optionValues) {
+                 if (optionValues.hasOwnProperty(itemKey) && itemKey.charAt(0) !== '$') {
+                   optionValuesKeys.push(itemKey);
+                 }
+               }
+             }
+             return optionValuesKeys;
+           }
+
+           return {
+             trackBy: trackBy,
+             getTrackByValue: getTrackByValue,
+             getWatchables: $parse(valuesFn, function(optionValues) {
+               // Create a collection of things that we would like to watch (watchedArray)
+               // so that they can all be watched using a single $watchCollection
+               // that only runs the handler once if anything changes
+               var watchedArray = [];
+               optionValues = optionValues || [];
+
+               var optionValuesKeys = getOptionValuesKeys(optionValues);
+               var optionValuesLength = optionValuesKeys.length;
+               for (var index = 0; index < optionValuesLength; index++) {
+                 var key = (optionValues === optionValuesKeys) ? index : optionValuesKeys[index];
+                 var value = optionValues[key];
+
+                 var locals = getLocals(optionValues[key], key);
+                 var selectValue = getTrackByValueFn(optionValues[key], locals);
+                 watchedArray.push(selectValue);
+
+                 // Only need to watch the displayFn if there is a specific label expression
+                 if (match[2] || match[1]) {
+                   var label = displayFn(scope, locals);
+                   watchedArray.push(label);
+                 }
+
+                 // Only need to watch the disableWhenFn if there is a specific disable expression
+                 if (match[4]) {
+                   var disableWhen = disableWhenFn(scope, locals);
+                   watchedArray.push(disableWhen);
+                 }
+               }
+               return watchedArray;
+             }),
+
+             getOptions: function() {
+
+               var optionItems = [];
+               var selectValueMap = {};
+
+               // The option values were already computed in the `getWatchables` fn,
+               // which must have been called to trigger `getOptions`
+               var optionValues = valuesFn(scope) || [];
+               var optionValuesKeys = getOptionValuesKeys(optionValues);
+               var optionValuesLength = optionValuesKeys.length;
+
+               for (var index = 0; index < optionValuesLength; index++) {
+                 var key = (optionValues === optionValuesKeys) ? index : optionValuesKeys[index];
+                 var value = optionValues[key];
+                 var locals = getLocals(value, key);
+                 var viewValue = viewValueFn(scope, locals);
+                 var selectValue = getTrackByValueFn(viewValue, locals);
+                 var label = displayFn(scope, locals);
+                 var group = groupByFn(scope, locals);
+                 var disabled = disableWhenFn(scope, locals);
+                 var optionItem = new Option(selectValue, viewValue, label, group, disabled);
+
+                 optionItems.push(optionItem);
+                 selectValueMap[selectValue] = optionItem;
+               }
+
+               return {
+                 items: optionItems,
+                 selectValueMap: selectValueMap,
+                 getOptionFromViewValue: function(value) {
+                   return selectValueMap[getTrackByValue(value)];
+                 },
+                 getViewValueFromOption: function(option) {
+                   // If the viewValue could be an object that may be mutated by the application,
+                   // we need to make a copy and not return the reference to the value on the option.
+                   return trackBy ? angular.copy(option.viewValue) : option.viewValue;
+                 }
+               };
+             }
+           };
+         }
+
+
+         // we can't just jqLite('<option>') since jqLite is not smart enough
+         // to create it in <select> and IE barfs otherwise.
+         var optionTemplate = document.createElement('option'),
+             optGroupTemplate = document.createElement('optgroup');
+
+
+           function ngOptionsPostLink(scope, selectElement, attr, ctrls) {
+
+             // if ngModel is not defined, we don't need to do anything
+             var ngModelCtrl = ctrls[1];
+             if (!ngModelCtrl) return;
+
+             var selectCtrl = ctrls[0];
+             var multiple = attr.multiple;
+
+             // The emptyOption allows the application developer to provide their own custom "empty"
+             // option when the viewValue does not match any of the option values.
+             var emptyOption;
+             for (var i = 0, children = selectElement.children(), ii = children.length; i < ii; i++) {
+               if (children[i].value === '') {
+                 emptyOption = children.eq(i);
+                 break;
+               }
+             }
+
+             var providedEmptyOption = !!emptyOption;
+
+             var unknownOption = jqLite(optionTemplate.cloneNode(false));
+             unknownOption.val('?');
+
+             var options;
+             var ngOptions = parseOptionsExpression(attr.ngOptions, selectElement, scope);
+
+
+             var renderEmptyOption = function() {
+               if (!providedEmptyOption) {
+                 selectElement.prepend(emptyOption);
+               }
+               selectElement.val('');
+               emptyOption.prop('selected', true); // needed for IE
+               emptyOption.attr('selected', true);
+             };
+
+             var removeEmptyOption = function() {
+               if (!providedEmptyOption) {
+                 emptyOption.remove();
+               }
+             };
+
+
+             var renderUnknownOption = function() {
+               selectElement.prepend(unknownOption);
+               selectElement.val('?');
+               unknownOption.prop('selected', true); // needed for IE
+               unknownOption.attr('selected', true);
+             };
+
+             var removeUnknownOption = function() {
+               unknownOption.remove();
+             };
+
+             // Update the controller methods for multiple selectable options
+             if (!multiple) {
+
+               selectCtrl.writeValue = function writeNgOptionsValue(value) {
+                 var option = options.getOptionFromViewValue(value);
+
+                 if (option && !option.disabled) {
+                   if (selectElement[0].value !== option.selectValue) {
+                     removeUnknownOption();
+                     removeEmptyOption();
+
+                     selectElement[0].value = option.selectValue;
+                     option.element.selected = true;
+                     option.element.setAttribute('selected', 'selected');
+                   }
+                 } else {
+                   if (value === null || providedEmptyOption) {
+                     removeUnknownOption();
+                     renderEmptyOption();
+                   } else {
+                     removeEmptyOption();
+                     renderUnknownOption();
+                   }
+                 }
+               };
+
+               selectCtrl.readValue = function readNgOptionsValue() {
+
+                 var selectedOption = options.selectValueMap[selectElement.val()];
+
+                 if (selectedOption && !selectedOption.disabled) {
+                   removeEmptyOption();
+                   removeUnknownOption();
+                   return options.getViewValueFromOption(selectedOption);
+                 }
+                 return null;
+               };
+
+               // If we are using `track by` then we must watch the tracked value on the model
+               // since ngModel only watches for object identity change
+               if (ngOptions.trackBy) {
+                 scope.$watch(
+                   function() { return ngOptions.getTrackByValue(ngModelCtrl.$viewValue); },
+                   function() { ngModelCtrl.$render(); }
+                 );
+               }
+
+             } else {
+
+               ngModelCtrl.$isEmpty = function(value) {
+                 return !value || value.length === 0;
+               };
+
+
+               selectCtrl.writeValue = function writeNgOptionsMultiple(value) {
+                 options.items.forEach(function(option) {
+                   option.element.selected = false;
+                 });
+
+                 if (value) {
+                   value.forEach(function(item) {
+                     var option = options.getOptionFromViewValue(item);
+                     if (option && !option.disabled) option.element.selected = true;
+                   });
+                 }
+               };
+
+
+               selectCtrl.readValue = function readNgOptionsMultiple() {
+                 var selectedValues = selectElement.val() || [],
+                     selections = [];
+
+                 forEach(selectedValues, function(value) {
+                   var option = options.selectValueMap[value];
+                   if (option && !option.disabled) selections.push(options.getViewValueFromOption(option));
+                 });
+
+                 return selections;
+               };
+
+               // If we are using `track by` then we must watch these tracked values on the model
+               // since ngModel only watches for object identity change
+               if (ngOptions.trackBy) {
+
+                 scope.$watchCollection(function() {
+                   if (isArray(ngModelCtrl.$viewValue)) {
+                     return ngModelCtrl.$viewValue.map(function(value) {
+                       return ngOptions.getTrackByValue(value);
+                     });
+                   }
+                 }, function() {
+                   ngModelCtrl.$render();
+                 });
+
+               }
+             }
+
+
+             if (providedEmptyOption) {
+
+               // we need to remove it before calling selectElement.empty() because otherwise IE will
+               // remove the label from the element. wtf?
+               emptyOption.remove();
+
+               // compile the element since there might be bindings in it
+               $compile(emptyOption)(scope);
+
+               // remove the class, which is added automatically because we recompile the element and it
+               // becomes the compilation root
+               emptyOption.removeClass('ng-scope');
+             } else {
+               emptyOption = jqLite(optionTemplate.cloneNode(false));
+             }
+
+             // We need to do this here to ensure that the options object is defined
+             // when we first hit it in writeNgOptionsValue
+             updateOptions();
+
+             // We will re-render the option elements if the option values or labels change
+             scope.$watchCollection(ngOptions.getWatchables, updateOptions);
+
+             // ------------------------------------------------------------------ //
+
+
+             function updateOptionElement(option, element) {
+               option.element = element;
+               element.disabled = option.disabled;
+               // NOTE: The label must be set before the value, otherwise IE10/11/EDGE create unresponsive
+               // selects in certain circumstances when multiple selects are next to each other and display
+               // the option list in listbox style, i.e. the select is [multiple], or specifies a [size].
+               // See https://github.com/angular/angular.js/issues/11314 for more info.
+               // This is unfortunately untestable with unit / e2e tests
+               if (option.label !== element.label) {
+                 element.label = option.label;
+                 element.textContent = option.label;
+               }
+               if (option.value !== element.value) element.value = option.selectValue;
+             }
+
+             function addOrReuseElement(parent, current, type, templateElement) {
+               var element;
+               // Check whether we can reuse the next element
+               if (current && lowercase(current.nodeName) === type) {
+                 // The next element is the right type so reuse it
+                 element = current;
+               } else {
+                 // The next element is not the right type so create a new one
+                 element = templateElement.cloneNode(false);
+                 if (!current) {
+                   // There are no more elements so just append it to the select
+                   parent.appendChild(element);
+                 } else {
+                   // The next element is not a group so insert the new one
+                   parent.insertBefore(element, current);
+                 }
+               }
+               return element;
+             }
+
+
+             function removeExcessElements(current) {
+               var next;
+               while (current) {
+                 next = current.nextSibling;
+                 jqLiteRemove(current);
+                 current = next;
+               }
+             }
+
+
+             function skipEmptyAndUnknownOptions(current) {
+               var emptyOption_ = emptyOption && emptyOption[0];
+               var unknownOption_ = unknownOption && unknownOption[0];
+
+               // We cannot rely on the extracted empty option being the same as the compiled empty option,
+               // because the compiled empty option might have been replaced by a comment because
+               // it had an "element" transclusion directive on it (such as ngIf)
+               if (emptyOption_ || unknownOption_) {
+                 while (current &&
+                       (current === emptyOption_ ||
+                       current === unknownOption_ ||
+                       current.nodeType === NODE_TYPE_COMMENT ||
+                       current.value === '')) {
+                   current = current.nextSibling;
+                 }
+               }
+               return current;
+             }
+
+
+             function updateOptions() {
+
+               var previousValue = options && selectCtrl.readValue();
+
+               options = ngOptions.getOptions();
+
+               var groupMap = {};
+               var currentElement = selectElement[0].firstChild;
+
+               // Ensure that the empty option is always there if it was explicitly provided
+               if (providedEmptyOption) {
+                 selectElement.prepend(emptyOption);
+               }
+
+               currentElement = skipEmptyAndUnknownOptions(currentElement);
+
+               options.items.forEach(function updateOption(option) {
+                 var group;
+                 var groupElement;
+                 var optionElement;
+
+                 if (option.group) {
+
+                   // This option is to live in a group
+                   // See if we have already created this group
+                   group = groupMap[option.group];
+
+                   if (!group) {
+
+                     // We have not already created this group
+                     groupElement = addOrReuseElement(selectElement[0],
+                                                      currentElement,
+                                                      'optgroup',
+                                                      optGroupTemplate);
+                     // Move to the next element
+                     currentElement = groupElement.nextSibling;
+
+                     // Update the label on the group element
+                     groupElement.label = option.group;
+
+                     // Store it for use later
+                     group = groupMap[option.group] = {
+                       groupElement: groupElement,
+                       currentOptionElement: groupElement.firstChild
+                     };
+
+                   }
+
+                   // So now we have a group for this option we add the option to the group
+                   optionElement = addOrReuseElement(group.groupElement,
+                                                     group.currentOptionElement,
+                                                     'option',
+                                                     optionTemplate);
+                   updateOptionElement(option, optionElement);
+                   // Move to the next element
+                   group.currentOptionElement = optionElement.nextSibling;
+
+                 } else {
+
+                   // This option is not in a group
+                   optionElement = addOrReuseElement(selectElement[0],
+                                                     currentElement,
+                                                     'option',
+                                                     optionTemplate);
+                   updateOptionElement(option, optionElement);
+                   // Move to the next element
+                   currentElement = optionElement.nextSibling;
+                 }
+               });
+
+
+               // Now remove all excess options and group
+               Object.keys(groupMap).forEach(function(key) {
+                 removeExcessElements(groupMap[key].currentOptionElement);
+               });
+               removeExcessElements(currentElement);
+
+               ngModelCtrl.$render();
+
+               // Check to see if the value has changed due to the update to the options
+               if (!ngModelCtrl.$isEmpty(previousValue)) {
+                 var nextValue = selectCtrl.readValue();
+                 if (ngOptions.trackBy ? !equals(previousValue, nextValue) : previousValue !== nextValue) {
+                   ngModelCtrl.$setViewValue(nextValue);
+                   ngModelCtrl.$render();
+                 }
+               }
+
+             }
+         }
+
+         return {
+           restrict: 'A',
+           terminal: true,
+           require: ['select', '?ngModel'],
+           link: {
+             pre: function ngOptionsPreLink(scope, selectElement, attr, ctrls) {
+               // Deactivate the SelectController.register method to prevent
+               // option directives from accidentally registering themselves
+               // (and unwanted $destroy handlers etc.)
+               ctrls[0].registerOption = noop;
+             },
+             post: ngOptionsPostLink
+           }
+         };
+       }];
+
+       /**
+        * @ngdoc directive
+        * @name ngPluralize
+        * @restrict EA
+        *
+        * @description
+        * `ngPluralize` is a directive that displays messages according to en-US localization rules.
+        * These rules are bundled with angular.js, but can be overridden
+        * (see {@link guide/i18n Angular i18n} dev guide). You configure ngPluralize directive
+        * by specifying the mappings between
+        * [plural categories](http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html)
+        * and the strings to be displayed.
+        *
+        * # Plural categories and explicit number rules
+        * There are two
+        * [plural categories](http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html)
+        * in Angular's default en-US locale: "one" and "other".
+        *
+        * While a plural category may match many numbers (for example, in en-US locale, "other" can match
+        * any number that is not 1), an explicit number rule can only match one number. For example, the
+        * explicit number rule for "3" matches the number 3. There are examples of plural categories
+        * and explicit number rules throughout the rest of this documentation.
+        *
+        * # Configuring ngPluralize
+        * You configure ngPluralize by providing 2 attributes: `count` and `when`.
+        * You can also provide an optional attribute, `offset`.
+        *
+        * The value of the `count` attribute can be either a string or an {@link guide/expression
+        * Angular expression}; these are evaluated on the current scope for its bound value.
+        *
+        * The `when` attribute specifies the mappings between plural categories and the actual
+        * string to be displayed. The value of the attribute should be a JSON object.
+        *
+        * The following example shows how to configure ngPluralize:
+        *
+        * ```html
+        * <ng-pluralize count="personCount"
+                        when="{'0': 'Nobody is viewing.',
+        *                      'one': '1 person is viewing.',
+        *                      'other': '{} people are viewing.'}">
+        * </ng-pluralize>
+        *```
+        *
+        * In the example, `"0: Nobody is viewing."` is an explicit number rule. If you did not
+        * specify this rule, 0 would be matched to the "other" category and "0 people are viewing"
+        * would be shown instead of "Nobody is viewing". You can specify an explicit number rule for
+        * other numbers, for example 12, so that instead of showing "12 people are viewing", you can
+        * show "a dozen people are viewing".
+        *
+        * You can use a set of closed braces (`{}`) as a placeholder for the number that you want substituted
+        * into pluralized strings. In the previous example, Angular will replace `{}` with
+        * <span ng-non-bindable>`{{personCount}}`</span>. The closed braces `{}` is a placeholder
+        * for <span ng-non-bindable>{{numberExpression}}</span>.
+        *
+        * If no rule is defined for a category, then an empty string is displayed and a warning is generated.
+        * Note that some locales define more categories than `one` and `other`. For example, fr-fr defines `few` and `many`.
+        *
+        * # Configuring ngPluralize with offset
+        * The `offset` attribute allows further customization of pluralized text, which can result in
+        * a better user experience. For example, instead of the message "4 people are viewing this document",
+        * you might display "John, Kate and 2 others are viewing this document".
+        * The offset attribute allows you to offset a number by any desired value.
+        * Let's take a look at an example:
+        *
+        * ```html
+        * <ng-pluralize count="personCount" offset=2
+        *               when="{'0': 'Nobody is viewing.',
+        *                      '1': '{{person1}} is viewing.',
+        *                      '2': '{{person1}} and {{person2}} are viewing.',
+        *                      'one': '{{person1}}, {{person2}} and one other person are viewing.',
+        *                      'other': '{{person1}}, {{person2}} and {} other people are viewing.'}">
+        * </ng-pluralize>
+        * ```
+        *
+        * Notice that we are still using two plural categories(one, other), but we added
+        * three explicit number rules 0, 1 and 2.
+        * When one person, perhaps John, views the document, "John is viewing" will be shown.
+        * When three people view the document, no explicit number rule is found, so
+        * an offset of 2 is taken off 3, and Angular uses 1 to decide the plural category.
+        * In this case, plural category 'one' is matched and "John, Mary and one other person are viewing"
+        * is shown.
+        *
+        * Note that when you specify offsets, you must provide explicit number rules for
+        * numbers from 0 up to and including the offset. If you use an offset of 3, for example,
+        * you must provide explicit number rules for 0, 1, 2 and 3. You must also provide plural strings for
+        * plural categories "one" and "other".
+        *
+        * @param {string|expression} count The variable to be bound to.
+        * @param {string} when The mapping between plural category to its corresponding strings.
+        * @param {number=} offset Offset to deduct from the total number.
+        *
+        * @example
+           <example module="pluralizeExample">
+             <file name="index.html">
+               <script>
+                 angular.module('pluralizeExample', [])
+                   .controller('ExampleController', ['$scope', function($scope) {
+                     $scope.person1 = 'Igor';
+                     $scope.person2 = 'Misko';
+                     $scope.personCount = 1;
+                   }]);
+               </script>
+               <div ng-controller="ExampleController">
+                 <label>Person 1:<input type="text" ng-model="person1" value="Igor" /></label><br/>
+                 <label>Person 2:<input type="text" ng-model="person2" value="Misko" /></label><br/>
+                 <label>Number of People:<input type="text" ng-model="personCount" value="1" /></label><br/>
+
+                 <!--- Example with simple pluralization rules for en locale --->
+                 Without Offset:
+                 <ng-pluralize count="personCount"
+                               when="{'0': 'Nobody is viewing.',
+                                      'one': '1 person is viewing.',
+                                      'other': '{} people are viewing.'}">
+                 </ng-pluralize><br>
+
+                 <!--- Example with offset --->
+                 With Offset(2):
+                 <ng-pluralize count="personCount" offset=2
+                               when="{'0': 'Nobody is viewing.',
+                                      '1': '{{person1}} is viewing.',
+                                      '2': '{{person1}} and {{person2}} are viewing.',
+                                      'one': '{{person1}}, {{person2}} and one other person are viewing.',
+                                      'other': '{{person1}}, {{person2}} and {} other people are viewing.'}">
+                 </ng-pluralize>
+               </div>
+             </file>
+             <file name="protractor.js" type="protractor">
+               it('should show correct pluralized string', function() {
+                 var withoutOffset = element.all(by.css('ng-pluralize')).get(0);
+                 var withOffset = element.all(by.css('ng-pluralize')).get(1);
+                 var countInput = element(by.model('personCount'));
+
+                 expect(withoutOffset.getText()).toEqual('1 person is viewing.');
+                 expect(withOffset.getText()).toEqual('Igor is viewing.');
+
+                 countInput.clear();
+                 countInput.sendKeys('0');
+
+                 expect(withoutOffset.getText()).toEqual('Nobody is viewing.');
+                 expect(withOffset.getText()).toEqual('Nobody is viewing.');
+
+                 countInput.clear();
+                 countInput.sendKeys('2');
+
+                 expect(withoutOffset.getText()).toEqual('2 people are viewing.');
+                 expect(withOffset.getText()).toEqual('Igor and Misko are viewing.');
+
+                 countInput.clear();
+                 countInput.sendKeys('3');
+
+                 expect(withoutOffset.getText()).toEqual('3 people are viewing.');
+                 expect(withOffset.getText()).toEqual('Igor, Misko and one other person are viewing.');
+
+                 countInput.clear();
+                 countInput.sendKeys('4');
+
+                 expect(withoutOffset.getText()).toEqual('4 people are viewing.');
+                 expect(withOffset.getText()).toEqual('Igor, Misko and 2 other people are viewing.');
+               });
+               it('should show data-bound names', function() {
+                 var withOffset = element.all(by.css('ng-pluralize')).get(1);
+                 var personCount = element(by.model('personCount'));
+                 var person1 = element(by.model('person1'));
+                 var person2 = element(by.model('person2'));
+                 personCount.clear();
+                 personCount.sendKeys('4');
+                 person1.clear();
+                 person1.sendKeys('Di');
+                 person2.clear();
+                 person2.sendKeys('Vojta');
+                 expect(withOffset.getText()).toEqual('Di, Vojta and 2 other people are viewing.');
+               });
+             </file>
+           </example>
+        */
+       var ngPluralizeDirective = ['$locale', '$interpolate', '$log', function($locale, $interpolate, $log) {
+         var BRACE = /{}/g,
+             IS_WHEN = /^when(Minus)?(.+)$/;
+
+         return {
+           link: function(scope, element, attr) {
+             var numberExp = attr.count,
+                 whenExp = attr.$attr.when && element.attr(attr.$attr.when), // we have {{}} in attrs
+                 offset = attr.offset || 0,
+                 whens = scope.$eval(whenExp) || {},
+                 whensExpFns = {},
+                 startSymbol = $interpolate.startSymbol(),
+                 endSymbol = $interpolate.endSymbol(),
+                 braceReplacement = startSymbol + numberExp + '-' + offset + endSymbol,
+                 watchRemover = angular.noop,
+                 lastCount;
+
+             forEach(attr, function(expression, attributeName) {
+               var tmpMatch = IS_WHEN.exec(attributeName);
+               if (tmpMatch) {
+                 var whenKey = (tmpMatch[1] ? '-' : '') + lowercase(tmpMatch[2]);
+                 whens[whenKey] = element.attr(attr.$attr[attributeName]);
+               }
+             });
+             forEach(whens, function(expression, key) {
+               whensExpFns[key] = $interpolate(expression.replace(BRACE, braceReplacement));
+
+             });
+
+             scope.$watch(numberExp, function ngPluralizeWatchAction(newVal) {
+               var count = parseFloat(newVal);
+               var countIsNaN = isNaN(count);
+
+               if (!countIsNaN && !(count in whens)) {
+                 // If an explicit number rule such as 1, 2, 3... is defined, just use it.
+                 // Otherwise, check it against pluralization rules in $locale service.
+                 count = $locale.pluralCat(count - offset);
+               }
+
+               // If both `count` and `lastCount` are NaN, we don't need to re-register a watch.
+               // In JS `NaN !== NaN`, so we have to exlicitly check.
+               if ((count !== lastCount) && !(countIsNaN && isNumber(lastCount) && isNaN(lastCount))) {
+                 watchRemover();
+                 var whenExpFn = whensExpFns[count];
+                 if (isUndefined(whenExpFn)) {
+                   if (newVal != null) {
+                     $log.debug("ngPluralize: no rule defined for '" + count + "' in " + whenExp);
+                   }
+                   watchRemover = noop;
+                   updateElementText();
+                 } else {
+                   watchRemover = scope.$watch(whenExpFn, updateElementText);
+                 }
+                 lastCount = count;
+               }
+             });
+
+             function updateElementText(newText) {
+               element.text(newText || '');
+             }
+           }
+         };
+       }];
+
+       /**
+        * @ngdoc directive
+        * @name ngRepeat
+        * @multiElement
+        *
+        * @description
+        * The `ngRepeat` directive instantiates a template once per item from a collection. Each template
+        * instance gets its own scope, where the given loop variable is set to the current collection item,
+        * and `$index` is set to the item index or key.
+        *
+        * Special properties are exposed on the local scope of each template instance, including:
+        *
+        * | Variable  | Type            | Details                                                                     |
+        * |-----------|-----------------|-----------------------------------------------------------------------------|
+        * | `$index`  | {@type number}  | iterator offset of the repeated element (0..length-1)                       |
+        * | `$first`  | {@type boolean} | true if the repeated element is first in the iterator.                      |
+        * | `$middle` | {@type boolean} | true if the repeated element is between the first and last in the iterator. |
+        * | `$last`   | {@type boolean} | true if the repeated element is last in the iterator.                       |
+        * | `$even`   | {@type boolean} | true if the iterator position `$index` is even (otherwise false).           |
+        * | `$odd`    | {@type boolean} | true if the iterator position `$index` is odd (otherwise false).            |
+        *
+        * <div class="alert alert-info">
+        *   Creating aliases for these properties is possible with {@link ng.directive:ngInit `ngInit`}.
+        *   This may be useful when, for instance, nesting ngRepeats.
+        * </div>
+        *
+        *
+        * # Iterating over object properties
+        *
+        * It is possible to get `ngRepeat` to iterate over the properties of an object using the following
+        * syntax:
+        *
+        * ```js
+        * <div ng-repeat="(key, value) in myObj"> ... </div>
+        * ```
+        *
+        * You need to be aware that the JavaScript specification does not define the order of keys
+        * returned for an object. (To mitigate this in Angular 1.3 the `ngRepeat` directive
+        * used to sort the keys alphabetically.)
+        *
+        * Version 1.4 removed the alphabetic sorting. We now rely on the order returned by the browser
+        * when running `for key in myObj`. It seems that browsers generally follow the strategy of providing
+        * keys in the order in which they were defined, although there are exceptions when keys are deleted
+        * and reinstated. See the [MDN page on `delete` for more info](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/delete#Cross-browser_notes).
+        *
+        * If this is not desired, the recommended workaround is to convert your object into an array
+        * that is sorted into the order that you prefer before providing it to `ngRepeat`.  You could
+        * do this with a filter such as [toArrayFilter](http://ngmodules.org/modules/angular-toArrayFilter)
+        * or implement a `$watch` on the object yourself.
+        *
+        *
+        * # Tracking and Duplicates
+        *
+        * `ngRepeat` uses {@link $rootScope.Scope#$watchCollection $watchCollection} to detect changes in
+        * the collection. When a change happens, ngRepeat then makes the corresponding changes to the DOM:
+        *
+        * * When an item is added, a new instance of the template is added to the DOM.
+        * * When an item is removed, its template instance is removed from the DOM.
+        * * When items are reordered, their respective templates are reordered in the DOM.
+        *
+        * To minimize creation of DOM elements, `ngRepeat` uses a function
+        * to "keep track" of all items in the collection and their corresponding DOM elements.
+        * For example, if an item is added to the collection, ngRepeat will know that all other items
+        * already have DOM elements, and will not re-render them.
+        *
+        * The default tracking function (which tracks items by their identity) does not allow
+        * duplicate items in arrays. This is because when there are duplicates, it is not possible
+        * to maintain a one-to-one mapping between collection items and DOM elements.
+        *
+        * If you do need to repeat duplicate items, you can substitute the default tracking behavior
+        * with your own using the `track by` expression.
+        *
+        * For example, you may track items by the index of each item in the collection, using the
+        * special scope property `$index`:
+        * ```html
+        *    <div ng-repeat="n in [42, 42, 43, 43] track by $index">
+        *      {{n}}
+        *    </div>
+        * ```
+        *
+        * You may also use arbitrary expressions in `track by`, including references to custom functions
+        * on the scope:
+        * ```html
+        *    <div ng-repeat="n in [42, 42, 43, 43] track by myTrackingFunction(n)">
+        *      {{n}}
+        *    </div>
+        * ```
+        *
+        * <div class="alert alert-success">
+        * If you are working with objects that have an identifier property, you should track
+        * by the identifier instead of the whole object. Should you reload your data later, `ngRepeat`
+        * will not have to rebuild the DOM elements for items it has already rendered, even if the
+        * JavaScript objects in the collection have been substituted for new ones. For large collections,
+        * this signifincantly improves rendering performance. If you don't have a unique identifier,
+        * `track by $index` can also provide a performance boost.
+        * </div>
+        * ```html
+        *    <div ng-repeat="model in collection track by model.id">
+        *      {{model.name}}
+        *    </div>
+        * ```
+        *
+        * When no `track by` expression is provided, it is equivalent to tracking by the built-in
+        * `$id` function, which tracks items by their identity:
+        * ```html
+        *    <div ng-repeat="obj in collection track by $id(obj)">
+        *      {{obj.prop}}
+        *    </div>
+        * ```
+        *
+        * <div class="alert alert-warning">
+        * **Note:** `track by` must always be the last expression:
+        * </div>
+        * ```
+        * <div ng-repeat="model in collection | orderBy: 'id' as filtered_result track by model.id">
+        *     {{model.name}}
+        * </div>
+        * ```
+        *
+        * # Special repeat start and end points
+        * To repeat a series of elements instead of just one parent element, ngRepeat (as well as other ng directives) supports extending
+        * the range of the repeater by defining explicit start and end points by using **ng-repeat-start** and **ng-repeat-end** respectively.
+        * The **ng-repeat-start** directive works the same as **ng-repeat**, but will repeat all the HTML code (including the tag it's defined on)
+        * up to and including the ending HTML tag where **ng-repeat-end** is placed.
+        *
+        * The example below makes use of this feature:
+        * ```html
+        *   <header ng-repeat-start="item in items">
+        *     Header {{ item }}
+        *   </header>
+        *   <div class="body">
+        *     Body {{ item }}
+        *   </div>
+        *   <footer ng-repeat-end>
+        *     Footer {{ item }}
+        *   </footer>
+        * ```
+        *
+        * And with an input of {@type ['A','B']} for the items variable in the example above, the output will evaluate to:
+        * ```html
+        *   <header>
+        *     Header A
+        *   </header>
+        *   <div class="body">
+        *     Body A
+        *   </div>
+        *   <footer>
+        *     Footer A
+        *   </footer>
+        *   <header>
+        *     Header B
+        *   </header>
+        *   <div class="body">
+        *     Body B
+        *   </div>
+        *   <footer>
+        *     Footer B
+        *   </footer>
+        * ```
+        *
+        * The custom start and end points for ngRepeat also support all other HTML directive syntax flavors provided in AngularJS (such
+        * as **data-ng-repeat-start**, **x-ng-repeat-start** and **ng:repeat-start**).
+        *
+        * @animations
+        * **.enter** - when a new item is added to the list or when an item is revealed after a filter
+        *
+        * **.leave** - when an item is removed from the list or when an item is filtered out
+        *
+        * **.move** - when an adjacent item is filtered out causing a reorder or when the item contents are reordered
+        *
+        * @element ANY
+        * @scope
+        * @priority 1000
+        * @param {repeat_expression} ngRepeat The expression indicating how to enumerate a collection. These
+        *   formats are currently supported:
+        *
+        *   * `variable in expression` – where variable is the user defined loop variable and `expression`
+        *     is a scope expression giving the collection to enumerate.
+        *
+        *     For example: `album in artist.albums`.
+        *
+        *   * `(key, value) in expression` – where `key` and `value` can be any user defined identifiers,
+        *     and `expression` is the scope expression giving the collection to enumerate.
+        *
+        *     For example: `(name, age) in {'adam':10, 'amalie':12}`.
+        *
+        *   * `variable in expression track by tracking_expression` – You can also provide an optional tracking expression
+        *     which can be used to associate the objects in the collection with the DOM elements. If no tracking expression
+        *     is specified, ng-repeat associates elements by identity. It is an error to have
+        *     more than one tracking expression value resolve to the same key. (This would mean that two distinct objects are
+        *     mapped to the same DOM element, which is not possible.)
+        *
+        *     Note that the tracking expression must come last, after any filters, and the alias expression.
+        *
+        *     For example: `item in items` is equivalent to `item in items track by $id(item)`. This implies that the DOM elements
+        *     will be associated by item identity in the array.
+        *
+        *     For example: `item in items track by $id(item)`. A built in `$id()` function can be used to assign a unique
+        *     `$$hashKey` property to each item in the array. This property is then used as a key to associated DOM elements
+        *     with the corresponding item in the array by identity. Moving the same object in array would move the DOM
+        *     element in the same way in the DOM.
+        *
+        *     For example: `item in items track by item.id` is a typical pattern when the items come from the database. In this
+        *     case the object identity does not matter. Two objects are considered equivalent as long as their `id`
+        *     property is same.
+        *
+        *     For example: `item in items | filter:searchText track by item.id` is a pattern that might be used to apply a filter
+        *     to items in conjunction with a tracking expression.
+        *
+        *   * `variable in expression as alias_expression` – You can also provide an optional alias expression which will then store the
+        *     intermediate results of the repeater after the filters have been applied. Typically this is used to render a special message
+        *     when a filter is active on the repeater, but the filtered result set is empty.
+        *
+        *     For example: `item in items | filter:x as results` will store the fragment of the repeated items as `results`, but only after
+        *     the items have been processed through the filter.
+        *
+        *     Please note that `as [variable name] is not an operator but rather a part of ngRepeat micro-syntax so it can be used only at the end
+        *     (and not as operator, inside an expression).
+        *
+        *     For example: `item in items | filter : x | orderBy : order | limitTo : limit as results` .
+        *
+        * @example
+        * This example initializes the scope to a list of names and
+        * then uses `ngRepeat` to display every person:
+         <example module="ngAnimate" deps="angular-animate.js" animations="true">
+           <file name="index.html">
+             <div ng-init="friends = [
+               {name:'John', age:25, gender:'boy'},
+               {name:'Jessie', age:30, gender:'girl'},
+               {name:'Johanna', age:28, gender:'girl'},
+               {name:'Joy', age:15, gender:'girl'},
+               {name:'Mary', age:28, gender:'girl'},
+               {name:'Peter', age:95, gender:'boy'},
+               {name:'Sebastian', age:50, gender:'boy'},
+               {name:'Erika', age:27, gender:'girl'},
+               {name:'Patrick', age:40, gender:'boy'},
+               {name:'Samantha', age:60, gender:'girl'}
+             ]">
+               I have {{friends.length}} friends. They are:
+               <input type="search" ng-model="q" placeholder="filter friends..." aria-label="filter friends" />
+               <ul class="example-animate-container">
+                 <li class="animate-repeat" ng-repeat="friend in friends | filter:q as results">
+                   [{{$index + 1}}] {{friend.name}} who is {{friend.age}} years old.
+                 </li>
+                 <li class="animate-repeat" ng-if="results.length == 0">
+                   <strong>No results found...</strong>
+                 </li>
+               </ul>
+             </div>
+           </file>
+           <file name="animations.css">
+             .example-animate-container {
+               background:white;
+               border:1px solid black;
+               list-style:none;
+               margin:0;
+               padding:0 10px;
+             }
+
+             .animate-repeat {
+               line-height:40px;
+               list-style:none;
+               box-sizing:border-box;
+             }
+
+             .animate-repeat.ng-move,
+             .animate-repeat.ng-enter,
+             .animate-repeat.ng-leave {
+               transition:all linear 0.5s;
+             }
+
+             .animate-repeat.ng-leave.ng-leave-active,
+             .animate-repeat.ng-move,
+             .animate-repeat.ng-enter {
+               opacity:0;
+               max-height:0;
+             }
+
+             .animate-repeat.ng-leave,
+             .animate-repeat.ng-move.ng-move-active,
+             .animate-repeat.ng-enter.ng-enter-active {
+               opacity:1;
+               max-height:40px;
+             }
+           </file>
+           <file name="protractor.js" type="protractor">
+             var friends = element.all(by.repeater('friend in friends'));
+
+             it('should render initial data set', function() {
+               expect(friends.count()).toBe(10);
+               expect(friends.get(0).getText()).toEqual('[1] John who is 25 years old.');
+               expect(friends.get(1).getText()).toEqual('[2] Jessie who is 30 years old.');
+               expect(friends.last().getText()).toEqual('[10] Samantha who is 60 years old.');
+               expect(element(by.binding('friends.length')).getText())
+                   .toMatch("I have 10 friends. They are:");
+             });
+
+              it('should update repeater when filter predicate changes', function() {
+                expect(friends.count()).toBe(10);
+
+                element(by.model('q')).sendKeys('ma');
+
+                expect(friends.count()).toBe(2);
+                expect(friends.get(0).getText()).toEqual('[1] Mary who is 28 years old.');
+                expect(friends.last().getText()).toEqual('[2] Samantha who is 60 years old.');
+              });
+             </file>
+           </example>
+        */
+       var ngRepeatDirective = ['$parse', '$animate', function($parse, $animate) {
+         var NG_REMOVED = '$$NG_REMOVED';
+         var ngRepeatMinErr = minErr('ngRepeat');
+
+         var updateScope = function(scope, index, valueIdentifier, value, keyIdentifier, key, arrayLength) {
+           // TODO(perf): generate setters to shave off ~40ms or 1-1.5%
+           scope[valueIdentifier] = value;
+           if (keyIdentifier) scope[keyIdentifier] = key;
+           scope.$index = index;
+           scope.$first = (index === 0);
+           scope.$last = (index === (arrayLength - 1));
+           scope.$middle = !(scope.$first || scope.$last);
+           // jshint bitwise: false
+           scope.$odd = !(scope.$even = (index&1) === 0);
+           // jshint bitwise: true
+         };
+
+         var getBlockStart = function(block) {
+           return block.clone[0];
+         };
+
+         var getBlockEnd = function(block) {
+           return block.clone[block.clone.length - 1];
+         };
+
+
+         return {
+           restrict: 'A',
+           multiElement: true,
+           transclude: 'element',
+           priority: 1000,
+           terminal: true,
+           $$tlb: true,
+           compile: function ngRepeatCompile($element, $attr) {
+             var expression = $attr.ngRepeat;
+             var ngRepeatEndComment = document.createComment(' end ngRepeat: ' + expression + ' ');
+
+             var match = expression.match(/^\s*([\s\S]+?)\s+in\s+([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+track\s+by\s+([\s\S]+?))?\s*$/);
+
+             if (!match) {
+               throw ngRepeatMinErr('iexp', "Expected expression in form of '_item_ in _collection_[ track by _id_]' but got '{0}'.",
+                   expression);
+             }
+
+             var lhs = match[1];
+             var rhs = match[2];
+             var aliasAs = match[3];
+             var trackByExp = match[4];
+
+             match = lhs.match(/^(?:(\s*[\$\w]+)|\(\s*([\$\w]+)\s*,\s*([\$\w]+)\s*\))$/);
+
+             if (!match) {
+               throw ngRepeatMinErr('iidexp', "'_item_' in '_item_ in _collection_' should be an identifier or '(_key_, _value_)' expression, but got '{0}'.",
+                   lhs);
+             }
+             var valueIdentifier = match[3] || match[1];
+             var keyIdentifier = match[2];
+
+             if (aliasAs && (!/^[$a-zA-Z_][$a-zA-Z0-9_]*$/.test(aliasAs) ||
+                 /^(null|undefined|this|\$index|\$first|\$middle|\$last|\$even|\$odd|\$parent|\$root|\$id)$/.test(aliasAs))) {
+               throw ngRepeatMinErr('badident', "alias '{0}' is invalid --- must be a valid JS identifier which is not a reserved name.",
+                 aliasAs);
+             }
+
+             var trackByExpGetter, trackByIdExpFn, trackByIdArrayFn, trackByIdObjFn;
+             var hashFnLocals = {$id: hashKey};
+
+             if (trackByExp) {
+               trackByExpGetter = $parse(trackByExp);
+             } else {
+               trackByIdArrayFn = function(key, value) {
+                 return hashKey(value);
+               };
+               trackByIdObjFn = function(key) {
+                 return key;
+               };
+             }
+
+             return function ngRepeatLink($scope, $element, $attr, ctrl, $transclude) {
+
+               if (trackByExpGetter) {
+                 trackByIdExpFn = function(key, value, index) {
+                   // assign key, value, and $index to the locals so that they can be used in hash functions
+                   if (keyIdentifier) hashFnLocals[keyIdentifier] = key;
+                   hashFnLocals[valueIdentifier] = value;
+                   hashFnLocals.$index = index;
+                   return trackByExpGetter($scope, hashFnLocals);
+                 };
+               }
+
+               // Store a list of elements from previous run. This is a hash where key is the item from the
+               // iterator, and the value is objects with following properties.
+               //   - scope: bound scope
+               //   - element: previous element.
+               //   - index: position
+               //
+               // We are using no-proto object so that we don't need to guard against inherited props via
+               // hasOwnProperty.
+               var lastBlockMap = createMap();
+
+               //watch props
+               $scope.$watchCollection(rhs, function ngRepeatAction(collection) {
+                 var index, length,
+                     previousNode = $element[0],     // node that cloned nodes should be inserted after
+                                                     // initialized to the comment node anchor
+                     nextNode,
+                     // Same as lastBlockMap but it has the current state. It will become the
+                     // lastBlockMap on the next iteration.
+                     nextBlockMap = createMap(),
+                     collectionLength,
+                     key, value, // key/value of iteration
+                     trackById,
+                     trackByIdFn,
+                     collectionKeys,
+                     block,       // last object information {scope, element, id}
+                     nextBlockOrder,
+                     elementsToRemove;
+
+                 if (aliasAs) {
+                   $scope[aliasAs] = collection;
+                 }
+
+                 if (isArrayLike(collection)) {
+                   collectionKeys = collection;
+                   trackByIdFn = trackByIdExpFn || trackByIdArrayFn;
+                 } else {
+                   trackByIdFn = trackByIdExpFn || trackByIdObjFn;
+                   // if object, extract keys, in enumeration order, unsorted
+                   collectionKeys = [];
+                   for (var itemKey in collection) {
+                     if (hasOwnProperty.call(collection, itemKey) && itemKey.charAt(0) !== '$') {
+                       collectionKeys.push(itemKey);
+                     }
+                   }
+                 }
+
+                 collectionLength = collectionKeys.length;
+                 nextBlockOrder = new Array(collectionLength);
+
+                 // locate existing items
+                 for (index = 0; index < collectionLength; index++) {
+                   key = (collection === collectionKeys) ? index : collectionKeys[index];
+                   value = collection[key];
+                   trackById = trackByIdFn(key, value, index);
+                   if (lastBlockMap[trackById]) {
+                     // found previously seen block
+                     block = lastBlockMap[trackById];
+                     delete lastBlockMap[trackById];
+                     nextBlockMap[trackById] = block;
+                     nextBlockOrder[index] = block;
+                   } else if (nextBlockMap[trackById]) {
+                     // if collision detected. restore lastBlockMap and throw an error
+                     forEach(nextBlockOrder, function(block) {
+                       if (block && block.scope) lastBlockMap[block.id] = block;
+                     });
+                     throw ngRepeatMinErr('dupes',
+                         "Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: {0}, Duplicate key: {1}, Duplicate value: {2}",
+                         expression, trackById, value);
+                   } else {
+                     // new never before seen block
+                     nextBlockOrder[index] = {id: trackById, scope: undefined, clone: undefined};
+                     nextBlockMap[trackById] = true;
+                   }
+                 }
+
+                 // remove leftover items
+                 for (var blockKey in lastBlockMap) {
+                   block = lastBlockMap[blockKey];
+                   elementsToRemove = getBlockNodes(block.clone);
+                   $animate.leave(elementsToRemove);
+                   if (elementsToRemove[0].parentNode) {
+                     // if the element was not removed yet because of pending animation, mark it as deleted
+                     // so that we can ignore it later
+                     for (index = 0, length = elementsToRemove.length; index < length; index++) {
+                       elementsToRemove[index][NG_REMOVED] = true;
+                     }
+                   }
+                   block.scope.$destroy();
+                 }
+
+                 // we are not using forEach for perf reasons (trying to avoid #call)
+                 for (index = 0; index < collectionLength; index++) {
+                   key = (collection === collectionKeys) ? index : collectionKeys[index];
+                   value = collection[key];
+                   block = nextBlockOrder[index];
+
+                   if (block.scope) {
+                     // if we have already seen this object, then we need to reuse the
+                     // associated scope/element
+
+                     nextNode = previousNode;
+
+                     // skip nodes that are already pending removal via leave animation
+                     do {
+                       nextNode = nextNode.nextSibling;
+                     } while (nextNode && nextNode[NG_REMOVED]);
+
+                     if (getBlockStart(block) != nextNode) {
+                       // existing item which got moved
+                       $animate.move(getBlockNodes(block.clone), null, jqLite(previousNode));
+                     }
+                     previousNode = getBlockEnd(block);
+                     updateScope(block.scope, index, valueIdentifier, value, keyIdentifier, key, collectionLength);
+                   } else {
+                     // new item which we don't know about
+                     $transclude(function ngRepeatTransclude(clone, scope) {
+                       block.scope = scope;
+                       // http://jsperf.com/clone-vs-createcomment
+                       var endNode = ngRepeatEndComment.cloneNode(false);
+                       clone[clone.length++] = endNode;
+
+                       // TODO(perf): support naked previousNode in `enter` to avoid creation of jqLite wrapper?
+                       $animate.enter(clone, null, jqLite(previousNode));
+                       previousNode = endNode;
+                       // Note: We only need the first/last node of the cloned nodes.
+                       // However, we need to keep the reference to the jqlite wrapper as it might be changed later
+                       // by a directive with templateUrl when its template arrives.
+                       block.clone = clone;
+                       nextBlockMap[block.id] = block;
+                       updateScope(block.scope, index, valueIdentifier, value, keyIdentifier, key, collectionLength);
+                     });
+                   }
+                 }
+                 lastBlockMap = nextBlockMap;
+               });
+             };
+           }
+         };
+       }];
+
+       var NG_HIDE_CLASS = 'ng-hide';
+       var NG_HIDE_IN_PROGRESS_CLASS = 'ng-hide-animate';
+       /**
+        * @ngdoc directive
+        * @name ngShow
+        * @multiElement
+        *
+        * @description
+        * The `ngShow` directive shows or hides the given HTML element based on the expression
+        * provided to the `ngShow` attribute. The element is shown or hidden by removing or adding
+        * the `.ng-hide` CSS class onto the element. The `.ng-hide` CSS class is predefined
+        * in AngularJS and sets the display style to none (using an !important flag).
+        * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}).
+        *
+        * ```html
+        * <!-- when $scope.myValue is truthy (element is visible) -->
+        * <div ng-show="myValue"></div>
+        *
+        * <!-- when $scope.myValue is falsy (element is hidden) -->
+        * <div ng-show="myValue" class="ng-hide"></div>
+        * ```
+        *
+        * When the `ngShow` expression evaluates to a falsy value then the `.ng-hide` CSS class is added to the class
+        * attribute on the element causing it to become hidden. When truthy, the `.ng-hide` CSS class is removed
+        * from the element causing the element not to appear hidden.
+        *
+        * ## Why is !important used?
+        *
+        * You may be wondering why !important is used for the `.ng-hide` CSS class. This is because the `.ng-hide` selector
+        * can be easily overridden by heavier selectors. For example, something as simple
+        * as changing the display style on a HTML list item would make hidden elements appear visible.
+        * This also becomes a bigger issue when dealing with CSS frameworks.
+        *
+        * By using !important, the show and hide behavior will work as expected despite any clash between CSS selector
+        * specificity (when !important isn't used with any conflicting styles). If a developer chooses to override the
+        * styling to change how to hide an element then it is just a matter of using !important in their own CSS code.
+        *
+        * ### Overriding `.ng-hide`
+        *
+        * By default, the `.ng-hide` class will style the element with `display: none!important`. If you wish to change
+        * the hide behavior with ngShow/ngHide then this can be achieved by restating the styles for the `.ng-hide`
+        * class CSS. Note that the selector that needs to be used is actually `.ng-hide:not(.ng-hide-animate)` to cope
+        * with extra animation classes that can be added.
+        *
+        * ```css
+        * .ng-hide:not(.ng-hide-animate) {
+        *   /&#42; this is just another form of hiding an element &#42;/
+        *   display: block!important;
+        *   position: absolute;
+        *   top: -9999px;
+        *   left: -9999px;
+        * }
+        * ```
+        *
+        * By default you don't need to override in CSS anything and the animations will work around the display style.
+        *
+        * ## A note about animations with `ngShow`
+        *
+        * Animations in ngShow/ngHide work with the show and hide events that are triggered when the directive expression
+        * is true and false. This system works like the animation system present with ngClass except that
+        * you must also include the !important flag to override the display property
+        * so that you can perform an animation when the element is hidden during the time of the animation.
+        *
+        * ```css
+        * //
+        * //a working example can be found at the bottom of this page
+        * //
+        * .my-element.ng-hide-add, .my-element.ng-hide-remove {
+        *   /&#42; this is required as of 1.3x to properly
+        *      apply all styling in a show/hide animation &#42;/
+        *   transition: 0s linear all;
+        * }
+        *
+        * .my-element.ng-hide-add-active,
+        * .my-element.ng-hide-remove-active {
+        *   /&#42; the transition is defined in the active class &#42;/
+        *   transition: 1s linear all;
+        * }
+        *
+        * .my-element.ng-hide-add { ... }
+        * .my-element.ng-hide-add.ng-hide-add-active { ... }
+        * .my-element.ng-hide-remove { ... }
+        * .my-element.ng-hide-remove.ng-hide-remove-active { ... }
+        * ```
+        *
+        * Keep in mind that, as of AngularJS version 1.3.0-beta.11, there is no need to change the display
+        * property to block during animation states--ngAnimate will handle the style toggling automatically for you.
+        *
+        * @animations
+        * addClass: `.ng-hide` - happens after the `ngShow` expression evaluates to a truthy value and the just before contents are set to visible
+        * removeClass: `.ng-hide` - happens after the `ngShow` expression evaluates to a non truthy value and just before the contents are set to hidden
+        *
+        * @element ANY
+        * @param {expression} ngShow If the {@link guide/expression expression} is truthy
+        *     then the element is shown or hidden respectively.
+        *
+        * @example
+         <example module="ngAnimate" deps="angular-animate.js" animations="true">
+           <file name="index.html">
+             Click me: <input type="checkbox" ng-model="checked" aria-label="Toggle ngHide"><br/>
+             <div>
+               Show:
+               <div class="check-element animate-show" ng-show="checked">
+                 <span class="glyphicon glyphicon-thumbs-up"></span> I show up when your checkbox is checked.
+               </div>
+             </div>
+             <div>
+               Hide:
+               <div class="check-element animate-show" ng-hide="checked">
+                 <span class="glyphicon glyphicon-thumbs-down"></span> I hide when your checkbox is checked.
+               </div>
+             </div>
+           </file>
+           <file name="glyphicons.css">
+             @import url(../../components/bootstrap-3.1.1/css/bootstrap.css);
+           </file>
+           <file name="animations.css">
+             .animate-show {
+               line-height: 20px;
+               opacity: 1;
+               padding: 10px;
+               border: 1px solid black;
+               background: white;
+             }
+
+             .animate-show.ng-hide-add, .animate-show.ng-hide-remove {
+               transition: all linear 0.5s;
+             }
+
+             .animate-show.ng-hide {
+               line-height: 0;
+               opacity: 0;
+               padding: 0 10px;
+             }
+
+             .check-element {
+               padding: 10px;
+               border: 1px solid black;
+               background: white;
+             }
+           </file>
+           <file name="protractor.js" type="protractor">
+             var thumbsUp = element(by.css('span.glyphicon-thumbs-up'));
+             var thumbsDown = element(by.css('span.glyphicon-thumbs-down'));
+
+             it('should check ng-show / ng-hide', function() {
+               expect(thumbsUp.isDisplayed()).toBeFalsy();
+               expect(thumbsDown.isDisplayed()).toBeTruthy();
+
+               element(by.model('checked')).click();
+
+               expect(thumbsUp.isDisplayed()).toBeTruthy();
+               expect(thumbsDown.isDisplayed()).toBeFalsy();
+             });
+           </file>
+         </example>
+        */
+       var ngShowDirective = ['$animate', function($animate) {
+         return {
+           restrict: 'A',
+           multiElement: true,
+           link: function(scope, element, attr) {
+             scope.$watch(attr.ngShow, function ngShowWatchAction(value) {
+               // we're adding a temporary, animation-specific class for ng-hide since this way
+               // we can control when the element is actually displayed on screen without having
+               // to have a global/greedy CSS selector that breaks when other animations are run.
+               // Read: https://github.com/angular/angular.js/issues/9103#issuecomment-58335845
+               $animate[value ? 'removeClass' : 'addClass'](element, NG_HIDE_CLASS, {
+                 tempClasses: NG_HIDE_IN_PROGRESS_CLASS
+               });
+             });
+           }
+         };
+       }];
+
+
+       /**
+        * @ngdoc directive
+        * @name ngHide
+        * @multiElement
+        *
+        * @description
+        * The `ngHide` directive shows or hides the given HTML element based on the expression
+        * provided to the `ngHide` attribute. The element is shown or hidden by removing or adding
+        * the `ng-hide` CSS class onto the element. The `.ng-hide` CSS class is predefined
+        * in AngularJS and sets the display style to none (using an !important flag).
+        * For CSP mode please add `angular-csp.css` to your html file (see {@link ng.directive:ngCsp ngCsp}).
+        *
+        * ```html
+        * <!-- when $scope.myValue is truthy (element is hidden) -->
+        * <div ng-hide="myValue" class="ng-hide"></div>
+        *
+        * <!-- when $scope.myValue is falsy (element is visible) -->
+        * <div ng-hide="myValue"></div>
+        * ```
+        *
+        * When the `ngHide` expression evaluates to a truthy value then the `.ng-hide` CSS class is added to the class
+        * attribute on the element causing it to become hidden. When falsy, the `.ng-hide` CSS class is removed
+        * from the element causing the element not to appear hidden.
+        *
+        * ## Why is !important used?
+        *
+        * You may be wondering why !important is used for the `.ng-hide` CSS class. This is because the `.ng-hide` selector
+        * can be easily overridden by heavier selectors. For example, something as simple
+        * as changing the display style on a HTML list item would make hidden elements appear visible.
+        * This also becomes a bigger issue when dealing with CSS frameworks.
+        *
+        * By using !important, the show and hide behavior will work as expected despite any clash between CSS selector
+        * specificity (when !important isn't used with any conflicting styles). If a developer chooses to override the
+        * styling to change how to hide an element then it is just a matter of using !important in their own CSS code.
+        *
+        * ### Overriding `.ng-hide`
+        *
+        * By default, the `.ng-hide` class will style the element with `display: none!important`. If you wish to change
+        * the hide behavior with ngShow/ngHide then this can be achieved by restating the styles for the `.ng-hide`
+        * class in CSS:
+        *
+        * ```css
+        * .ng-hide {
+        *   /&#42; this is just another form of hiding an element &#42;/
+        *   display: block!important;
+        *   position: absolute;
+        *   top: -9999px;
+        *   left: -9999px;
+        * }
+        * ```
+        *
+        * By default you don't need to override in CSS anything and the animations will work around the display style.
+        *
+        * ## A note about animations with `ngHide`
+        *
+        * Animations in ngShow/ngHide work with the show and hide events that are triggered when the directive expression
+        * is true and false. This system works like the animation system present with ngClass, except that the `.ng-hide`
+        * CSS class is added and removed for you instead of your own CSS class.
+        *
+        * ```css
+        * //
+        * //a working example can be found at the bottom of this page
+        * //
+        * .my-element.ng-hide-add, .my-element.ng-hide-remove {
+        *   transition: 0.5s linear all;
+        * }
+        *
+        * .my-element.ng-hide-add { ... }
+        * .my-element.ng-hide-add.ng-hide-add-active { ... }
+        * .my-element.ng-hide-remove { ... }
+        * .my-element.ng-hide-remove.ng-hide-remove-active { ... }
+        * ```
+        *
+        * Keep in mind that, as of AngularJS version 1.3.0-beta.11, there is no need to change the display
+        * property to block during animation states--ngAnimate will handle the style toggling automatically for you.
+        *
+        * @animations
+        * removeClass: `.ng-hide` - happens after the `ngHide` expression evaluates to a truthy value and just before the contents are set to hidden
+        * addClass: `.ng-hide` - happens after the `ngHide` expression evaluates to a non truthy value and just before the contents are set to visible
+        *
+        * @element ANY
+        * @param {expression} ngHide If the {@link guide/expression expression} is truthy then
+        *     the element is shown or hidden respectively.
+        *
+        * @example
+         <example module="ngAnimate" deps="angular-animate.js" animations="true">
+           <file name="index.html">
+             Click me: <input type="checkbox" ng-model="checked" aria-label="Toggle ngShow"><br/>
+             <div>
+               Show:
+               <div class="check-element animate-hide" ng-show="checked">
+                 <span class="glyphicon glyphicon-thumbs-up"></span> I show up when your checkbox is checked.
+               </div>
+             </div>
+             <div>
+               Hide:
+               <div class="check-element animate-hide" ng-hide="checked">
+                 <span class="glyphicon glyphicon-thumbs-down"></span> I hide when your checkbox is checked.
+               </div>
+             </div>
+           </file>
+           <file name="glyphicons.css">
+             @import url(../../components/bootstrap-3.1.1/css/bootstrap.css);
+           </file>
+           <file name="animations.css">
+             .animate-hide {
+               transition: all linear 0.5s;
+               line-height: 20px;
+               opacity: 1;
+               padding: 10px;
+               border: 1px solid black;
+               background: white;
+             }
+
+             .animate-hide.ng-hide {
+               line-height: 0;
+               opacity: 0;
+               padding: 0 10px;
+             }
+
+             .check-element {
+               padding: 10px;
+               border: 1px solid black;
+               background: white;
+             }
+           </file>
+           <file name="protractor.js" type="protractor">
+             var thumbsUp = element(by.css('span.glyphicon-thumbs-up'));
+             var thumbsDown = element(by.css('span.glyphicon-thumbs-down'));
+
+             it('should check ng-show / ng-hide', function() {
+               expect(thumbsUp.isDisplayed()).toBeFalsy();
+               expect(thumbsDown.isDisplayed()).toBeTruthy();
+
+               element(by.model('checked')).click();
+
+               expect(thumbsUp.isDisplayed()).toBeTruthy();
+               expect(thumbsDown.isDisplayed()).toBeFalsy();
+             });
+           </file>
+         </example>
+        */
+       var ngHideDirective = ['$animate', function($animate) {
+         return {
+           restrict: 'A',
+           multiElement: true,
+           link: function(scope, element, attr) {
+             scope.$watch(attr.ngHide, function ngHideWatchAction(value) {
+               // The comment inside of the ngShowDirective explains why we add and
+               // remove a temporary class for the show/hide animation
+               $animate[value ? 'addClass' : 'removeClass'](element,NG_HIDE_CLASS, {
+                 tempClasses: NG_HIDE_IN_PROGRESS_CLASS
+               });
+             });
+           }
+         };
+       }];
+
+       /**
+        * @ngdoc directive
+        * @name ngStyle
+        * @restrict AC
+        *
+        * @description
+        * The `ngStyle` directive allows you to set CSS style on an HTML element conditionally.
+        *
+        * @element ANY
+        * @param {expression} ngStyle
+        *
+        * {@link guide/expression Expression} which evals to an
+        * object whose keys are CSS style names and values are corresponding values for those CSS
+        * keys.
+        *
+        * Since some CSS style names are not valid keys for an object, they must be quoted.
+        * See the 'background-color' style in the example below.
+        *
+        * @example
+          <example>
+            <file name="index.html">
+               <input type="button" value="set color" ng-click="myStyle={color:'red'}">
+               <input type="button" value="set background" ng-click="myStyle={'background-color':'blue'}">
+               <input type="button" value="clear" ng-click="myStyle={}">
+               <br/>
+               <span ng-style="myStyle">Sample Text</span>
+               <pre>myStyle={{myStyle}}</pre>
+            </file>
+            <file name="style.css">
+              span {
+                color: black;
+              }
+            </file>
+            <file name="protractor.js" type="protractor">
+              var colorSpan = element(by.css('span'));
+
+              it('should check ng-style', function() {
+                expect(colorSpan.getCssValue('color')).toBe('rgba(0, 0, 0, 1)');
+                element(by.css('input[value=\'set color\']')).click();
+                expect(colorSpan.getCssValue('color')).toBe('rgba(255, 0, 0, 1)');
+                element(by.css('input[value=clear]')).click();
+                expect(colorSpan.getCssValue('color')).toBe('rgba(0, 0, 0, 1)');
+              });
+            </file>
+          </example>
+        */
+       var ngStyleDirective = ngDirective(function(scope, element, attr) {
+         scope.$watch(attr.ngStyle, function ngStyleWatchAction(newStyles, oldStyles) {
+           if (oldStyles && (newStyles !== oldStyles)) {
+             forEach(oldStyles, function(val, style) { element.css(style, '');});
+           }
+           if (newStyles) element.css(newStyles);
+         }, true);
+       });
+
+       /**
+        * @ngdoc directive
+        * @name ngSwitch
+        * @restrict EA
+        *
+        * @description
+        * The `ngSwitch` directive is used to conditionally swap DOM structure on your template based on a scope expression.
+        * Elements within `ngSwitch` but without `ngSwitchWhen` or `ngSwitchDefault` directives will be preserved at the location
+        * as specified in the template.
+        *
+        * The directive itself works similar to ngInclude, however, instead of downloading template code (or loading it
+        * from the template cache), `ngSwitch` simply chooses one of the nested elements and makes it visible based on which element
+        * matches the value obtained from the evaluated expression. In other words, you define a container element
+        * (where you place the directive), place an expression on the **`on="..."` attribute**
+        * (or the **`ng-switch="..."` attribute**), define any inner elements inside of the directive and place
+        * a when attribute per element. The when attribute is used to inform ngSwitch which element to display when the on
+        * expression is evaluated. If a matching expression is not found via a when attribute then an element with the default
+        * attribute is displayed.
+        *
+        * <div class="alert alert-info">
+        * Be aware that the attribute values to match against cannot be expressions. They are interpreted
+        * as literal string values to match against.
+        * For example, **`ng-switch-when="someVal"`** will match against the string `"someVal"` not against the
+        * value of the expression `$scope.someVal`.
+        * </div>
+
+        * @animations
+        * enter - happens after the ngSwitch contents change and the matched child element is placed inside the container
+        * leave - happens just after the ngSwitch contents change and just before the former contents are removed from the DOM
+        *
+        * @usage
+        *
+        * ```
+        * <ANY ng-switch="expression">
+        *   <ANY ng-switch-when="matchValue1">...</ANY>
+        *   <ANY ng-switch-when="matchValue2">...</ANY>
+        *   <ANY ng-switch-default>...</ANY>
+        * </ANY>
+        * ```
+        *
+        *
+        * @scope
+        * @priority 1200
+        * @param {*} ngSwitch|on expression to match against <code>ng-switch-when</code>.
+        * On child elements add:
+        *
+        * * `ngSwitchWhen`: the case statement to match against. If match then this
+        *   case will be displayed. If the same match appears multiple times, all the
+        *   elements will be displayed.
+        * * `ngSwitchDefault`: the default case when no other case match. If there
+        *   are multiple default cases, all of them will be displayed when no other
+        *   case match.
+        *
+        *
+        * @example
+         <example module="switchExample" deps="angular-animate.js" animations="true">
+           <file name="index.html">
+             <div ng-controller="ExampleController">
+               <select ng-model="selection" ng-options="item for item in items">
+               </select>
+               <code>selection={{selection}}</code>
+               <hr/>
+               <div class="animate-switch-container"
+                 ng-switch on="selection">
+                   <div class="animate-switch" ng-switch-when="settings">Settings Div</div>
+                   <div class="animate-switch" ng-switch-when="home">Home Span</div>
+                   <div class="animate-switch" ng-switch-default>default</div>
+               </div>
+             </div>
+           </file>
+           <file name="script.js">
+             angular.module('switchExample', ['ngAnimate'])
+               .controller('ExampleController', ['$scope', function($scope) {
+                 $scope.items = ['settings', 'home', 'other'];
+                 $scope.selection = $scope.items[0];
+               }]);
+           </file>
+           <file name="animations.css">
+             .animate-switch-container {
+               position:relative;
+               background:white;
+               border:1px solid black;
+               height:40px;
+               overflow:hidden;
+             }
+
+             .animate-switch {
+               padding:10px;
+             }
+
+             .animate-switch.ng-animate {
+               transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;
+
+               position:absolute;
+               top:0;
+               left:0;
+               right:0;
+               bottom:0;
+             }
+
+             .animate-switch.ng-leave.ng-leave-active,
+             .animate-switch.ng-enter {
+               top:-50px;
+             }
+             .animate-switch.ng-leave,
+             .animate-switch.ng-enter.ng-enter-active {
+               top:0;
+             }
+           </file>
+           <file name="protractor.js" type="protractor">
+             var switchElem = element(by.css('[ng-switch]'));
+             var select = element(by.model('selection'));
+
+             it('should start in settings', function() {
+               expect(switchElem.getText()).toMatch(/Settings Div/);
+             });
+             it('should change to home', function() {
+               select.all(by.css('option')).get(1).click();
+               expect(switchElem.getText()).toMatch(/Home Span/);
+             });
+             it('should select default', function() {
+               select.all(by.css('option')).get(2).click();
+               expect(switchElem.getText()).toMatch(/default/);
+             });
+           </file>
+         </example>
+        */
+       var ngSwitchDirective = ['$animate', function($animate) {
+         return {
+           require: 'ngSwitch',
+
+           // asks for $scope to fool the BC controller module
+           controller: ['$scope', function ngSwitchController() {
+            this.cases = {};
+           }],
+           link: function(scope, element, attr, ngSwitchController) {
+             var watchExpr = attr.ngSwitch || attr.on,
+                 selectedTranscludes = [],
+                 selectedElements = [],
+                 previousLeaveAnimations = [],
+                 selectedScopes = [];
+
+             var spliceFactory = function(array, index) {
+                 return function() { array.splice(index, 1); };
+             };
+
+             scope.$watch(watchExpr, function ngSwitchWatchAction(value) {
+               var i, ii;
+               for (i = 0, ii = previousLeaveAnimations.length; i < ii; ++i) {
+                 $animate.cancel(previousLeaveAnimations[i]);
+               }
+               previousLeaveAnimations.length = 0;
+
+               for (i = 0, ii = selectedScopes.length; i < ii; ++i) {
+                 var selected = getBlockNodes(selectedElements[i].clone);
+                 selectedScopes[i].$destroy();
+                 var promise = previousLeaveAnimations[i] = $animate.leave(selected);
+                 promise.then(spliceFactory(previousLeaveAnimations, i));
+               }
+
+               selectedElements.length = 0;
+               selectedScopes.length = 0;
+
+               if ((selectedTranscludes = ngSwitchController.cases['!' + value] || ngSwitchController.cases['?'])) {
+                 forEach(selectedTranscludes, function(selectedTransclude) {
+                   selectedTransclude.transclude(function(caseElement, selectedScope) {
+                     selectedScopes.push(selectedScope);
+                     var anchor = selectedTransclude.element;
+                     caseElement[caseElement.length++] = document.createComment(' end ngSwitchWhen: ');
+                     var block = { clone: caseElement };
+
+                     selectedElements.push(block);
+                     $animate.enter(caseElement, anchor.parent(), anchor);
+                   });
+                 });
+               }
+             });
+           }
+         };
+       }];
+
+       var ngSwitchWhenDirective = ngDirective({
+         transclude: 'element',
+         priority: 1200,
+         require: '^ngSwitch',
+         multiElement: true,
+         link: function(scope, element, attrs, ctrl, $transclude) {
+           ctrl.cases['!' + attrs.ngSwitchWhen] = (ctrl.cases['!' + attrs.ngSwitchWhen] || []);
+           ctrl.cases['!' + attrs.ngSwitchWhen].push({ transclude: $transclude, element: element });
+         }
+       });
+
+       var ngSwitchDefaultDirective = ngDirective({
+         transclude: 'element',
+         priority: 1200,
+         require: '^ngSwitch',
+         multiElement: true,
+         link: function(scope, element, attr, ctrl, $transclude) {
+           ctrl.cases['?'] = (ctrl.cases['?'] || []);
+           ctrl.cases['?'].push({ transclude: $transclude, element: element });
+          }
+       });
+
+       /**
+        * @ngdoc directive
+        * @name ngTransclude
+        * @restrict EAC
+        *
+        * @description
+        * Directive that marks the insertion point for the transcluded DOM of the nearest parent directive that uses transclusion.
+        *
+        * Any existing content of the element that this directive is placed on will be removed before the transcluded content is inserted.
+        *
+        * @element ANY
+        *
+        * @example
+          <example module="transcludeExample">
+            <file name="index.html">
+              <script>
+                angular.module('transcludeExample', [])
+                 .directive('pane', function(){
+                    return {
+                      restrict: 'E',
+                      transclude: true,
+                      scope: { title:'@' },
+                      template: '<div style="border: 1px solid black;">' +
+                                  '<div style="background-color: gray">{{title}}</div>' +
+                                  '<ng-transclude></ng-transclude>' +
+                                '</div>'
+                    };
+                })
+                .controller('ExampleController', ['$scope', function($scope) {
+                  $scope.title = 'Lorem Ipsum';
+                  $scope.text = 'Neque porro quisquam est qui dolorem ipsum quia dolor...';
+                }]);
+              </script>
+              <div ng-controller="ExampleController">
+                <input ng-model="title" aria-label="title"> <br/>
+                <textarea ng-model="text" aria-label="text"></textarea> <br/>
+                <pane title="{{title}}">{{text}}</pane>
+              </div>
+            </file>
+            <file name="protractor.js" type="protractor">
+               it('should have transcluded', function() {
+                 var titleElement = element(by.model('title'));
+                 titleElement.clear();
+                 titleElement.sendKeys('TITLE');
+                 var textElement = element(by.model('text'));
+                 textElement.clear();
+                 textElement.sendKeys('TEXT');
+                 expect(element(by.binding('title')).getText()).toEqual('TITLE');
+                 expect(element(by.binding('text')).getText()).toEqual('TEXT');
+               });
+            </file>
+          </example>
+        *
+        */
+       var ngTranscludeDirective = ngDirective({
+         restrict: 'EAC',
+         link: function($scope, $element, $attrs, controller, $transclude) {
+           if (!$transclude) {
+             throw minErr('ngTransclude')('orphan',
+              'Illegal use of ngTransclude directive in the template! ' +
+              'No parent directive that requires a transclusion found. ' +
+              'Element: {0}',
+              startingTag($element));
+           }
+
+           $transclude(function(clone) {
+             $element.empty();
+             $element.append(clone);
+           });
+         }
+       });
+
+       /**
+        * @ngdoc directive
+        * @name script
+        * @restrict E
+        *
+        * @description
+        * Load the content of a `<script>` element into {@link ng.$templateCache `$templateCache`}, so that the
+        * template can be used by {@link ng.directive:ngInclude `ngInclude`},
+        * {@link ngRoute.directive:ngView `ngView`}, or {@link guide/directive directives}. The type of the
+        * `<script>` element must be specified as `text/ng-template`, and a cache name for the template must be
+        * assigned through the element's `id`, which can then be used as a directive's `templateUrl`.
+        *
+        * @param {string} type Must be set to `'text/ng-template'`.
+        * @param {string} id Cache name of the template.
+        *
+        * @example
+         <example>
+           <file name="index.html">
+             <script type="text/ng-template" id="/tpl.html">
+               Content of the template.
+             </script>
+
+             <a ng-click="currentTpl='/tpl.html'" id="tpl-link">Load inlined template</a>
+             <div id="tpl-content" ng-include src="currentTpl"></div>
+           </file>
+           <file name="protractor.js" type="protractor">
+             it('should load template defined inside script tag', function() {
+               element(by.css('#tpl-link')).click();
+               expect(element(by.css('#tpl-content')).getText()).toMatch(/Content of the template/);
+             });
+           </file>
+         </example>
+        */
+       var scriptDirective = ['$templateCache', function($templateCache) {
+         return {
+           restrict: 'E',
+           terminal: true,
+           compile: function(element, attr) {
+             if (attr.type == 'text/ng-template') {
+               var templateUrl = attr.id,
+                   text = element[0].text;
+
+               $templateCache.put(templateUrl, text);
+             }
+           }
+         };
+       }];
+
+       var noopNgModelController = { $setViewValue: noop, $render: noop };
+
+       function chromeHack(optionElement) {
+         // Workaround for https://code.google.com/p/chromium/issues/detail?id=381459
+         // Adding an <option selected="selected"> element to a <select required="required"> should
+         // automatically select the new element
+         if (optionElement[0].hasAttribute('selected')) {
+           optionElement[0].selected = true;
+         }
+       }
+
+       /**
+        * @ngdoc type
+        * @name  select.SelectController
+        * @description
+        * The controller for the `<select>` directive. This provides support for reading
+        * and writing the selected value(s) of the control and also coordinates dynamically
+        * added `<option>` elements, perhaps by an `ngRepeat` directive.
+        */
+       var SelectController =
+               ['$element', '$scope', '$attrs', function($element, $scope, $attrs) {
+
+         var self = this,
+             optionsMap = new HashMap();
+
+         // If the ngModel doesn't get provided then provide a dummy noop version to prevent errors
+         self.ngModelCtrl = noopNgModelController;
+
+         // The "unknown" option is one that is prepended to the list if the viewValue
+         // does not match any of the options. When it is rendered the value of the unknown
+         // option is '? XXX ?' where XXX is the hashKey of the value that is not known.
+         //
+         // We can't just jqLite('<option>') since jqLite is not smart enough
+         // to create it in <select> and IE barfs otherwise.
+         self.unknownOption = jqLite(document.createElement('option'));
+         self.renderUnknownOption = function(val) {
+           var unknownVal = '? ' + hashKey(val) + ' ?';
+           self.unknownOption.val(unknownVal);
+           $element.prepend(self.unknownOption);
+           $element.val(unknownVal);
+         };
+
+         $scope.$on('$destroy', function() {
+           // disable unknown option so that we don't do work when the whole select is being destroyed
+           self.renderUnknownOption = noop;
+         });
+
+         self.removeUnknownOption = function() {
+           if (self.unknownOption.parent()) self.unknownOption.remove();
+         };
+
+
+         // Read the value of the select control, the implementation of this changes depending
+         // upon whether the select can have multiple values and whether ngOptions is at work.
+         self.readValue = function readSingleValue() {
+           self.removeUnknownOption();
+           return $element.val();
+         };
+
+
+         // Write the value to the select control, the implementation of this changes depending
+         // upon whether the select can have multiple values and whether ngOptions is at work.
+         self.writeValue = function writeSingleValue(value) {
+           if (self.hasOption(value)) {
+             self.removeUnknownOption();
+             $element.val(value);
+             if (value === '') self.emptyOption.prop('selected', true); // to make IE9 happy
+           } else {
+             if (value == null && self.emptyOption) {
+               self.removeUnknownOption();
+               $element.val('');
+             } else {
+               self.renderUnknownOption(value);
+             }
+           }
+         };
+
+
+         // Tell the select control that an option, with the given value, has been added
+         self.addOption = function(value, element) {
+           assertNotHasOwnProperty(value, '"option value"');
+           if (value === '') {
+             self.emptyOption = element;
+           }
+           var count = optionsMap.get(value) || 0;
+           optionsMap.put(value, count + 1);
+           self.ngModelCtrl.$render();
+           chromeHack(element);
+         };
+
+         // Tell the select control that an option, with the given value, has been removed
+         self.removeOption = function(value) {
+           var count = optionsMap.get(value);
+           if (count) {
+             if (count === 1) {
+               optionsMap.remove(value);
+               if (value === '') {
+                 self.emptyOption = undefined;
+               }
+             } else {
+               optionsMap.put(value, count - 1);
+             }
+           }
+         };
+
+         // Check whether the select control has an option matching the given value
+         self.hasOption = function(value) {
+           return !!optionsMap.get(value);
+         };
+
+
+         self.registerOption = function(optionScope, optionElement, optionAttrs, interpolateValueFn, interpolateTextFn) {
+
+           if (interpolateValueFn) {
+             // The value attribute is interpolated
+             var oldVal;
+             optionAttrs.$observe('value', function valueAttributeObserveAction(newVal) {
+               if (isDefined(oldVal)) {
+                 self.removeOption(oldVal);
+               }
+               oldVal = newVal;
+               self.addOption(newVal, optionElement);
+             });
+           } else if (interpolateTextFn) {
+             // The text content is interpolated
+             optionScope.$watch(interpolateTextFn, function interpolateWatchAction(newVal, oldVal) {
+               optionAttrs.$set('value', newVal);
+               if (oldVal !== newVal) {
+                 self.removeOption(oldVal);
+               }
+               self.addOption(newVal, optionElement);
+             });
+           } else {
+             // The value attribute is static
+             self.addOption(optionAttrs.value, optionElement);
+           }
+
+           optionElement.on('$destroy', function() {
+             self.removeOption(optionAttrs.value);
+             self.ngModelCtrl.$render();
+           });
+         };
+       }];
+
+       /**
+        * @ngdoc directive
+        * @name select
+        * @restrict E
+        *
+        * @description
+        * HTML `SELECT` element with angular data-binding.
+        *
+        * The `select` directive is used together with {@link ngModel `ngModel`} to provide data-binding
+        * between the scope and the `<select>` control (including setting default values).
+        * Ìt also handles dynamic `<option>` elements, which can be added using the {@link ngRepeat `ngRepeat}` or
+        * {@link ngOptions `ngOptions`} directives.
+        *
+        * When an item in the `<select>` menu is selected, the value of the selected option will be bound
+        * to the model identified by the `ngModel` directive. With static or repeated options, this is
+        * the content of the `value` attribute or the textContent of the `<option>`, if the value attribute is missing.
+        * If you want dynamic value attributes, you can use interpolation inside the value attribute.
+        *
+        * <div class="alert alert-warning">
+        * Note that the value of a `select` directive used without `ngOptions` is always a string.
+        * When the model needs to be bound to a non-string value, you must either explictly convert it
+        * using a directive (see example below) or use `ngOptions` to specify the set of options.
+        * This is because an option element can only be bound to string values at present.
+        * </div>
+        *
+        * If the viewValue of `ngModel` does not match any of the options, then the control
+        * will automatically add an "unknown" option, which it then removes when the mismatch is resolved.
+        *
+        * Optionally, a single hard-coded `<option>` element, with the value set to an empty string, can
+        * be nested into the `<select>` element. This element will then represent the `null` or "not selected"
+        * option. See example below for demonstration.
+        *
+        * <div class="alert alert-info">
+        * In many cases, `ngRepeat` can be used on `<option>` elements instead of {@link ng.directive:ngOptions
+        * ngOptions} to achieve a similar result. However, `ngOptions` provides some benefits, such as
+        * more flexibility in how the `<select>`'s model is assigned via the `select` **`as`** part of the
+        * comprehension expression, and additionally in reducing memory and increasing speed by not creating
+        * a new scope for each repeated instance.
+        * </div>
+        *
+        *
+        * @param {string} ngModel Assignable angular expression to data-bind to.
+        * @param {string=} name Property name of the form under which the control is published.
+        * @param {string=} multiple Allows multiple options to be selected. The selected values will be
+        *     bound to the model as an array.
+        * @param {string=} required Sets `required` validation error key if the value is not entered.
+        * @param {string=} ngRequired Adds required attribute and required validation constraint to
+        * the element when the ngRequired expression evaluates to true. Use ngRequired instead of required
+        * when you want to data-bind to the required attribute.
+        * @param {string=} ngChange Angular expression to be executed when selected option(s) changes due to user
+        *    interaction with the select element.
+        * @param {string=} ngOptions sets the options that the select is populated with and defines what is
+        * set on the model on selection. See {@link ngOptions `ngOptions`}.
+        *
+        * @example
+        * ### Simple `select` elements with static options
+        *
+        * <example name="static-select" module="staticSelect">
+        * <file name="index.html">
+        * <div ng-controller="ExampleController">
+        *   <form name="myForm">
+        *     <label for="singleSelect"> Single select: </label><br>
+        *     <select name="singleSelect" ng-model="data.singleSelect">
+        *       <option value="option-1">Option 1</option>
+        *       <option value="option-2">Option 2</option>
+        *     </select><br>
+        *
+        *     <label for="singleSelect"> Single select with "not selected" option and dynamic option values: </label><br>
+        *     <select name="singleSelect" id="singleSelect" ng-model="data.singleSelect">
+        *       <option value="">---Please select---</option> <!-- not selected / blank option -->
+        *       <option value="{{data.option1}}">Option 1</option> <!-- interpolation -->
+        *       <option value="option-2">Option 2</option>
+        *     </select><br>
+        *     <button ng-click="forceUnknownOption()">Force unknown option</button><br>
+        *     <tt>singleSelect = {{data.singleSelect}}</tt>
+        *
+        *     <hr>
+        *     <label for="multipleSelect"> Multiple select: </label><br>
+        *     <select name="multipleSelect" id="multipleSelect" ng-model="data.multipleSelect" multiple>
+        *       <option value="option-1">Option 1</option>
+        *       <option value="option-2">Option 2</option>
+        *       <option value="option-3">Option 3</option>
+        *     </select><br>
+        *     <tt>multipleSelect = {{data.multipleSelect}}</tt><br/>
+        *   </form>
+        * </div>
+        * </file>
+        * <file name="app.js">
+        *  angular.module('staticSelect', [])
+        *    .controller('ExampleController', ['$scope', function($scope) {
+        *      $scope.data = {
+        *       singleSelect: null,
+        *       multipleSelect: [],
+        *       option1: 'option-1',
+        *      };
+        *
+        *      $scope.forceUnknownOption = function() {
+        *        $scope.data.singleSelect = 'nonsense';
+        *      };
+        *   }]);
+        * </file>
+        *</example>
+        *
+        * ### Using `ngRepeat` to generate `select` options
+        * <example name="ngrepeat-select" module="ngrepeatSelect">
+        * <file name="index.html">
+        * <div ng-controller="ExampleController">
+        *   <form name="myForm">
+        *     <label for="repeatSelect"> Repeat select: </label>
+        *     <select name="repeatSelect" id="repeatSelect" ng-model="data.repeatSelect">
+        *       <option ng-repeat="option in data.availableOptions" value="{{option.id}}">{{option.name}}</option>
+        *     </select>
+        *   </form>
+        *   <hr>
+        *   <tt>repeatSelect = {{data.repeatSelect}}</tt><br/>
+        * </div>
+        * </file>
+        * <file name="app.js">
+        *  angular.module('ngrepeatSelect', [])
+        *    .controller('ExampleController', ['$scope', function($scope) {
+        *      $scope.data = {
+        *       repeatSelect: null,
+        *       availableOptions: [
+        *         {id: '1', name: 'Option A'},
+        *         {id: '2', name: 'Option B'},
+        *         {id: '3', name: 'Option C'}
+        *       ],
+        *      };
+        *   }]);
+        * </file>
+        *</example>
+        *
+        *
+        * ### Using `select` with `ngOptions` and setting a default value
+        * See the {@link ngOptions ngOptions documentation} for more `ngOptions` usage examples.
+        *
+        * <example name="select-with-default-values" module="defaultValueSelect">
+        * <file name="index.html">
+        * <div ng-controller="ExampleController">
+        *   <form name="myForm">
+        *     <label for="mySelect">Make a choice:</label>
+        *     <select name="mySelect" id="mySelect"
+        *       ng-options="option.name for option in data.availableOptions track by option.id"
+        *       ng-model="data.selectedOption"></select>
+        *   </form>
+        *   <hr>
+        *   <tt>option = {{data.selectedOption}}</tt><br/>
+        * </div>
+        * </file>
+        * <file name="app.js">
+        *  angular.module('defaultValueSelect', [])
+        *    .controller('ExampleController', ['$scope', function($scope) {
+        *      $scope.data = {
+        *       availableOptions: [
+        *         {id: '1', name: 'Option A'},
+        *         {id: '2', name: 'Option B'},
+        *         {id: '3', name: 'Option C'}
+        *       ],
+        *       selectedOption: {id: '3', name: 'Option C'} //This sets the default value of the select in the ui
+        *       };
+        *   }]);
+        * </file>
+        *</example>
+        *
+        *
+        * ### Binding `select` to a non-string value via `ngModel` parsing / formatting
+        *
+        * <example name="select-with-non-string-options" module="nonStringSelect">
+        *   <file name="index.html">
+        *     <select ng-model="model.id" convert-to-number>
+        *       <option value="0">Zero</option>
+        *       <option value="1">One</option>
+        *       <option value="2">Two</option>
+        *     </select>
+        *     {{ model }}
+        *   </file>
+        *   <file name="app.js">
+        *     angular.module('nonStringSelect', [])
+        *       .run(function($rootScope) {
+        *         $rootScope.model = { id: 2 };
+        *       })
+        *       .directive('convertToNumber', function() {
+        *         return {
+        *           require: 'ngModel',
+        *           link: function(scope, element, attrs, ngModel) {
+        *             ngModel.$parsers.push(function(val) {
+        *               return parseInt(val, 10);
+        *             });
+        *             ngModel.$formatters.push(function(val) {
+        *               return '' + val;
+        *             });
+        *           }
+        *         };
+        *       });
+        *   </file>
+        *   <file name="protractor.js" type="protractor">
+        *     it('should initialize to model', function() {
+        *       var select = element(by.css('select'));
+        *       expect(element(by.model('model.id')).$('option:checked').getText()).toEqual('Two');
+        *     });
+        *   </file>
+        * </example>
+        *
+        */
+       var selectDirective = function() {
+
+         return {
+           restrict: 'E',
+           require: ['select', '?ngModel'],
+           controller: SelectController,
+           priority: 1,
+           link: {
+             pre: selectPreLink
+           }
+         };
+
+         function selectPreLink(scope, element, attr, ctrls) {
+
+             // if ngModel is not defined, we don't need to do anything
+             var ngModelCtrl = ctrls[1];
+             if (!ngModelCtrl) return;
+
+             var selectCtrl = ctrls[0];
+
+             selectCtrl.ngModelCtrl = ngModelCtrl;
+
+             // We delegate rendering to the `writeValue` method, which can be changed
+             // if the select can have multiple selected values or if the options are being
+             // generated by `ngOptions`
+             ngModelCtrl.$render = function() {
+               selectCtrl.writeValue(ngModelCtrl.$viewValue);
+             };
+
+             // When the selected item(s) changes we delegate getting the value of the select control
+             // to the `readValue` method, which can be changed if the select can have multiple
+             // selected values or if the options are being generated by `ngOptions`
+             element.on('change', function() {
+               scope.$apply(function() {
+                 ngModelCtrl.$setViewValue(selectCtrl.readValue());
+               });
+             });
+
+             // If the select allows multiple values then we need to modify how we read and write
+             // values from and to the control; also what it means for the value to be empty and
+             // we have to add an extra watch since ngModel doesn't work well with arrays - it
+             // doesn't trigger rendering if only an item in the array changes.
+             if (attr.multiple) {
+
+               // Read value now needs to check each option to see if it is selected
+               selectCtrl.readValue = function readMultipleValue() {
+                 var array = [];
+                 forEach(element.find('option'), function(option) {
+                   if (option.selected) {
+                     array.push(option.value);
+                   }
+                 });
+                 return array;
+               };
+
+               // Write value now needs to set the selected property of each matching option
+               selectCtrl.writeValue = function writeMultipleValue(value) {
+                 var items = new HashMap(value);
+                 forEach(element.find('option'), function(option) {
+                   option.selected = isDefined(items.get(option.value));
+                 });
+               };
+
+               // we have to do it on each watch since ngModel watches reference, but
+               // we need to work of an array, so we need to see if anything was inserted/removed
+               var lastView, lastViewRef = NaN;
+               scope.$watch(function selectMultipleWatch() {
+                 if (lastViewRef === ngModelCtrl.$viewValue && !equals(lastView, ngModelCtrl.$viewValue)) {
+                   lastView = shallowCopy(ngModelCtrl.$viewValue);
+                   ngModelCtrl.$render();
+                 }
+                 lastViewRef = ngModelCtrl.$viewValue;
+               });
+
+               // If we are a multiple select then value is now a collection
+               // so the meaning of $isEmpty changes
+               ngModelCtrl.$isEmpty = function(value) {
+                 return !value || value.length === 0;
+               };
+
+             }
+           }
+       };
+
+
+       // The option directive is purely designed to communicate the existence (or lack of)
+       // of dynamically created (and destroyed) option elements to their containing select
+       // directive via its controller.
+       var optionDirective = ['$interpolate', function($interpolate) {
+         return {
+           restrict: 'E',
+           priority: 100,
+           compile: function(element, attr) {
+
+             if (isDefined(attr.value)) {
+               // If the value attribute is defined, check if it contains an interpolation
+               var interpolateValueFn = $interpolate(attr.value, true);
+             } else {
+               // If the value attribute is not defined then we fall back to the
+               // text content of the option element, which may be interpolated
+               var interpolateTextFn = $interpolate(element.text(), true);
+               if (!interpolateTextFn) {
+                 attr.$set('value', element.text());
+               }
+             }
+
+             return function(scope, element, attr) {
+
+               // This is an optimization over using ^^ since we don't want to have to search
+               // all the way to the root of the DOM for every single option element
+               var selectCtrlName = '$selectController',
+                   parent = element.parent(),
+                   selectCtrl = parent.data(selectCtrlName) ||
+                     parent.parent().data(selectCtrlName); // in case we are in optgroup
+
+               if (selectCtrl) {
+                 selectCtrl.registerOption(scope, element, attr, interpolateValueFn, interpolateTextFn);
+               }
+             };
+           }
+         };
+       }];
+
+       var styleDirective = valueFn({
+         restrict: 'E',
+         terminal: false
+       });
+
+       var requiredDirective = function() {
+         return {
+           restrict: 'A',
+           require: '?ngModel',
+           link: function(scope, elm, attr, ctrl) {
+             if (!ctrl) return;
+             attr.required = true; // force truthy in case we are on non input element
+
+             ctrl.$validators.required = function(modelValue, viewValue) {
+               return !attr.required || !ctrl.$isEmpty(viewValue);
+             };
+
+             attr.$observe('required', function() {
+               ctrl.$validate();
+             });
+           }
+         };
+       };
+
+
+       var patternDirective = function() {
+         return {
+           restrict: 'A',
+           require: '?ngModel',
+           link: function(scope, elm, attr, ctrl) {
+             if (!ctrl) return;
+
+             var regexp, patternExp = attr.ngPattern || attr.pattern;
+             attr.$observe('pattern', function(regex) {
+               if (isString(regex) && regex.length > 0) {
+                 regex = new RegExp('^' + regex + '$');
+               }
+
+               if (regex && !regex.test) {
+                 throw minErr('ngPattern')('noregexp',
+                   'Expected {0} to be a RegExp but was {1}. Element: {2}', patternExp,
+                   regex, startingTag(elm));
+               }
+
+               regexp = regex || undefined;
+               ctrl.$validate();
+             });
+
+             ctrl.$validators.pattern = function(modelValue, viewValue) {
+               // HTML5 pattern constraint validates the input value, so we validate the viewValue
+               return ctrl.$isEmpty(viewValue) || isUndefined(regexp) || regexp.test(viewValue);
+             };
+           }
+         };
+       };
+
+
+       var maxlengthDirective = function() {
+         return {
+           restrict: 'A',
+           require: '?ngModel',
+           link: function(scope, elm, attr, ctrl) {
+             if (!ctrl) return;
+
+             var maxlength = -1;
+             attr.$observe('maxlength', function(value) {
+               var intVal = toInt(value);
+               maxlength = isNaN(intVal) ? -1 : intVal;
+               ctrl.$validate();
+             });
+             ctrl.$validators.maxlength = function(modelValue, viewValue) {
+               return (maxlength < 0) || ctrl.$isEmpty(viewValue) || (viewValue.length <= maxlength);
+             };
+           }
+         };
+       };
+
+       var minlengthDirective = function() {
+         return {
+           restrict: 'A',
+           require: '?ngModel',
+           link: function(scope, elm, attr, ctrl) {
+             if (!ctrl) return;
+
+             var minlength = 0;
+             attr.$observe('minlength', function(value) {
+               minlength = toInt(value) || 0;
+               ctrl.$validate();
+             });
+             ctrl.$validators.minlength = function(modelValue, viewValue) {
+               return ctrl.$isEmpty(viewValue) || viewValue.length >= minlength;
+             };
+           }
+         };
+       };
+
+       if (window.angular.bootstrap) {
+         //AngularJS is already loaded, so we can return here...
+         console.log('WARNING: Tried to load angular more than once.');
+         return;
+       }
+
+       //try to bind to jquery now so that one can write jqLite(document).ready()
+       //but we will rebind on bootstrap again.
+       bindJQuery();
+
+       publishExternalAPI(angular);
+
+       angular.module("ngLocale", [], ["$provide", function($provide) {
+       var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+       function getDecimals(n) {
+         n = n + '';
+         var i = n.indexOf('.');
+         return (i == -1) ? 0 : n.length - i - 1;
+       }
+
+       function getVF(n, opt_precision) {
+         var v = opt_precision;
+
+         if (undefined === v) {
+           v = Math.min(getDecimals(n), 3);
+         }
+
+         var base = Math.pow(10, v);
+         var f = ((n * base) | 0) % base;
+         return {v: v, f: f};
+       }
+
+       $provide.value("$locale", {
+         "DATETIME_FORMATS": {
+           "AMPMS": [
+             "AM",
+             "PM"
+           ],
+           "DAY": [
+             "Sunday",
+             "Monday",
+             "Tuesday",
+             "Wednesday",
+             "Thursday",
+             "Friday",
+             "Saturday"
+           ],
+           "ERANAMES": [
+             "Before Christ",
+             "Anno Domini"
+           ],
+           "ERAS": [
+             "BC",
+             "AD"
+           ],
+           "FIRSTDAYOFWEEK": 6,
+           "MONTH": [
+             "January",
+             "February",
+             "March",
+             "April",
+             "May",
+             "June",
+             "July",
+             "August",
+             "September",
+             "October",
+             "November",
+             "December"
+           ],
+           "SHORTDAY": [
+             "Sun",
+             "Mon",
+             "Tue",
+             "Wed",
+             "Thu",
+             "Fri",
+             "Sat"
+           ],
+           "SHORTMONTH": [
+             "Jan",
+             "Feb",
+             "Mar",
+             "Apr",
+             "May",
+             "Jun",
+             "Jul",
+             "Aug",
+             "Sep",
+             "Oct",
+             "Nov",
+             "Dec"
+           ],
+           "WEEKENDRANGE": [
+             5,
+             6
+           ],
+           "fullDate": "EEEE, MMMM d, y",
+           "longDate": "MMMM d, y",
+           "medium": "MMM d, y h:mm:ss a",
+           "mediumDate": "MMM d, y",
+           "mediumTime": "h:mm:ss a",
+           "short": "M/d/yy h:mm a",
+           "shortDate": "M/d/yy",
+           "shortTime": "h:mm a"
+         },
+         "NUMBER_FORMATS": {
+           "CURRENCY_SYM": "$",
+           "DECIMAL_SEP": ".",
+           "GROUP_SEP": ",",
+           "PATTERNS": [
+             {
+               "gSize": 3,
+               "lgSize": 3,
+               "maxFrac": 3,
+               "minFrac": 0,
+               "minInt": 1,
+               "negPre": "-",
+               "negSuf": "",
+               "posPre": "",
+               "posSuf": ""
+             },
+             {
+               "gSize": 3,
+               "lgSize": 3,
+               "maxFrac": 2,
+               "minFrac": 2,
+               "minInt": 1,
+               "negPre": "-\u00a4",
+               "negSuf": "",
+               "posPre": "\u00a4",
+               "posSuf": ""
+             }
+           ]
+         },
+         "id": "en-us",
+         "pluralCat": function(n, opt_precision) {  var i = n | 0;  var vf = getVF(n, opt_precision);  if (i == 1 && vf.v == 0) {    return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
+       });
+       }]);
+
+         jqLite(document).ready(function() {
+           angularInit(document, bootstrap);
+         });
+
+       })(window, document);
+
+       !window.angular.$$csp().noInlineStyle && window.angular.element(document.head).prepend('<style type="text/css">@charset "UTF-8";[ng\\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\\:form{display:block;}.ng-animate-shim{visibility:hidden;}.ng-anchor{position:absolute;}</style>');
+
+/***/ },
+/* 3 */
+/***/ function(module, exports) {
+
+       /**
+        * State-based routing for AngularJS
+        * @version v0.2.18
+        * @link http://angular-ui.github.com/
+        * @license MIT License, http://www.opensource.org/licenses/MIT
+        */
+
+       /* commonjs package manager support (eg componentjs) */
+       if (typeof module !== "undefined" && typeof exports !== "undefined" && module.exports === exports){
+         module.exports = 'ui.router';
+       }
+
+       (function (window, angular, undefined) {
+       /*jshint globalstrict:true*/
+       /*global angular:false*/
+       'use strict';
+
+       var isDefined = angular.isDefined,
+           isFunction = angular.isFunction,
+           isString = angular.isString,
+           isObject = angular.isObject,
+           isArray = angular.isArray,
+           forEach = angular.forEach,
+           extend = angular.extend,
+           copy = angular.copy,
+           toJson = angular.toJson;
+
+       function inherit(parent, extra) {
+         return extend(new (extend(function() {}, { prototype: parent }))(), extra);
+       }
+
+       function merge(dst) {
+         forEach(arguments, function(obj) {
+           if (obj !== dst) {
+             forEach(obj, function(value, key) {
+               if (!dst.hasOwnProperty(key)) dst[key] = value;
+             });
+           }
+         });
+         return dst;
+       }
+
+       /**
+        * Finds the common ancestor path between two states.
+        *
+        * @param {Object} first The first state.
+        * @param {Object} second The second state.
+        * @return {Array} Returns an array of state names in descending order, not including the root.
+        */
+       function ancestors(first, second) {
+         var path = [];
+
+         for (var n in first.path) {
+           if (first.path[n] !== second.path[n]) break;
+           path.push(first.path[n]);
+         }
+         return path;
+       }
+
+       /**
+        * IE8-safe wrapper for `Object.keys()`.
+        *
+        * @param {Object} object A JavaScript object.
+        * @return {Array} Returns the keys of the object as an array.
+        */
+       function objectKeys(object) {
+         if (Object.keys) {
+           return Object.keys(object);
+         }
+         var result = [];
+
+         forEach(object, function(val, key) {
+           result.push(key);
+         });
+         return result;
+       }
+
+       /**
+        * IE8-safe wrapper for `Array.prototype.indexOf()`.
+        *
+        * @param {Array} array A JavaScript array.
+        * @param {*} value A value to search the array for.
+        * @return {Number} Returns the array index value of `value`, or `-1` if not present.
+        */
+       function indexOf(array, value) {
+         if (Array.prototype.indexOf) {
+           return array.indexOf(value, Number(arguments[2]) || 0);
+         }
+         var len = array.length >>> 0, from = Number(arguments[2]) || 0;
+         from = (from < 0) ? Math.ceil(from) : Math.floor(from);
+
+         if (from < 0) from += len;
+
+         for (; from < len; from++) {
+           if (from in array && array[from] === value) return from;
+         }
+         return -1;
+       }
+
+       /**
+        * Merges a set of parameters with all parameters inherited between the common parents of the
+        * current state and a given destination state.
+        *
+        * @param {Object} currentParams The value of the current state parameters ($stateParams).
+        * @param {Object} newParams The set of parameters which will be composited with inherited params.
+        * @param {Object} $current Internal definition of object representing the current state.
+        * @param {Object} $to Internal definition of object representing state to transition to.
+        */
+       function inheritParams(currentParams, newParams, $current, $to) {
+         var parents = ancestors($current, $to), parentParams, inherited = {}, inheritList = [];
+
+         for (var i in parents) {
+           if (!parents[i] || !parents[i].params) continue;
+           parentParams = objectKeys(parents[i].params);
+           if (!parentParams.length) continue;
+
+           for (var j in parentParams) {
+             if (indexOf(inheritList, parentParams[j]) >= 0) continue;
+             inheritList.push(parentParams[j]);
+             inherited[parentParams[j]] = currentParams[parentParams[j]];
+           }
+         }
+         return extend({}, inherited, newParams);
+       }
+
+       /**
+        * Performs a non-strict comparison of the subset of two objects, defined by a list of keys.
+        *
+        * @param {Object} a The first object.
+        * @param {Object} b The second object.
+        * @param {Array} keys The list of keys within each object to compare. If the list is empty or not specified,
+        *                     it defaults to the list of keys in `a`.
+        * @return {Boolean} Returns `true` if the keys match, otherwise `false`.
+        */
+       function equalForKeys(a, b, keys) {
+         if (!keys) {
+           keys = [];
+           for (var n in a) keys.push(n); // Used instead of Object.keys() for IE8 compatibility
+         }
+
+         for (var i=0; i<keys.length; i++) {
+           var k = keys[i];
+           if (a[k] != b[k]) return false; // Not '===', values aren't necessarily normalized
+         }
+         return true;
+       }
+
+       /**
+        * Returns the subset of an object, based on a list of keys.
+        *
+        * @param {Array} keys
+        * @param {Object} values
+        * @return {Boolean} Returns a subset of `values`.
+        */
+       function filterByKeys(keys, values) {
+         var filtered = {};
+
+         forEach(keys, function (name) {
+           filtered[name] = values[name];
+         });
+         return filtered;
+       }
+
+       // like _.indexBy
+       // when you know that your index values will be unique, or you want last-one-in to win
+       function indexBy(array, propName) {
+         var result = {};
+         forEach(array, function(item) {
+           result[item[propName]] = item;
+         });
+         return result;
+       }
+
+       // extracted from underscore.js
+       // Return a copy of the object only containing the whitelisted properties.
+       function pick(obj) {
+         var copy = {};
+         var keys = Array.prototype.concat.apply(Array.prototype, Array.prototype.slice.call(arguments, 1));
+         forEach(keys, function(key) {
+           if (key in obj) copy[key] = obj[key];
+         });
+         return copy;
+       }
+
+       // extracted from underscore.js
+       // Return a copy of the object omitting the blacklisted properties.
+       function omit(obj) {
+         var copy = {};
+         var keys = Array.prototype.concat.apply(Array.prototype, Array.prototype.slice.call(arguments, 1));
+         for (var key in obj) {
+           if (indexOf(keys, key) == -1) copy[key] = obj[key];
+         }
+         return copy;
+       }
+
+       function pluck(collection, key) {
+         var result = isArray(collection) ? [] : {};
+
+         forEach(collection, function(val, i) {
+           result[i] = isFunction(key) ? key(val) : val[key];
+         });
+         return result;
+       }
+
+       function filter(collection, callback) {
+         var array = isArray(collection);
+         var result = array ? [] : {};
+         forEach(collection, function(val, i) {
+           if (callback(val, i)) {
+             result[array ? result.length : i] = val;
+           }
+         });
+         return result;
+       }
+
+       function map(collection, callback) {
+         var result = isArray(collection) ? [] : {};
+
+         forEach(collection, function(val, i) {
+           result[i] = callback(val, i);
+         });
+         return result;
+       }
+
+       /**
+        * @ngdoc overview
+        * @name ui.router.util
+        *
+        * @description
+        * # ui.router.util sub-module
+        *
+        * This module is a dependency of other sub-modules. Do not include this module as a dependency
+        * in your angular app (use {@link ui.router} module instead).
+        *
+        */
+       angular.module('ui.router.util', ['ng']);
+
+       /**
+        * @ngdoc overview
+        * @name ui.router.router
+        * 
+        * @requires ui.router.util
+        *
+        * @description
+        * # ui.router.router sub-module
+        *
+        * This module is a dependency of other sub-modules. Do not include this module as a dependency
+        * in your angular app (use {@link ui.router} module instead).
+        */
+       angular.module('ui.router.router', ['ui.router.util']);
+
+       /**
+        * @ngdoc overview
+        * @name ui.router.state
+        * 
+        * @requires ui.router.router
+        * @requires ui.router.util
+        *
+        * @description
+        * # ui.router.state sub-module
+        *
+        * This module is a dependency of the main ui.router module. Do not include this module as a dependency
+        * in your angular app (use {@link ui.router} module instead).
+        * 
+        */
+       angular.module('ui.router.state', ['ui.router.router', 'ui.router.util']);
+
+       /**
+        * @ngdoc overview
+        * @name ui.router
+        *
+        * @requires ui.router.state
+        *
+        * @description
+        * # ui.router
+        * 
+        * ## The main module for ui.router 
+        * There are several sub-modules included with the ui.router module, however only this module is needed
+        * as a dependency within your angular app. The other modules are for organization purposes. 
+        *
+        * The modules are:
+        * * ui.router - the main "umbrella" module
+        * * ui.router.router - 
+        * 
+        * *You'll need to include **only** this module as the dependency within your angular app.*
+        * 
+        * <pre>
+        * <!doctype html>
+        * <html ng-app="myApp">
+        * <head>
+        *   <script src="js/angular.js"></script>
+        *   <!-- Include the ui-router script -->
+        *   <script src="js/angular-ui-router.min.js"></script>
+        *   <script>
+        *     // ...and add 'ui.router' as a dependency
+        *     var myApp = angular.module('myApp', ['ui.router']);
+        *   </script>
+        * </head>
+        * <body>
+        * </body>
+        * </html>
+        * </pre>
+        */
+       angular.module('ui.router', ['ui.router.state']);
+
+       angular.module('ui.router.compat', ['ui.router']);
+
+       /**
+        * @ngdoc object
+        * @name ui.router.util.$resolve
+        *
+        * @requires $q
+        * @requires $injector
+        *
+        * @description
+        * Manages resolution of (acyclic) graphs of promises.
+        */
+       $Resolve.$inject = ['$q', '$injector'];
+       function $Resolve(  $q,    $injector) {
+         
+         var VISIT_IN_PROGRESS = 1,
+             VISIT_DONE = 2,
+             NOTHING = {},
+             NO_DEPENDENCIES = [],
+             NO_LOCALS = NOTHING,
+             NO_PARENT = extend($q.when(NOTHING), { $$promises: NOTHING, $$values: NOTHING });
+         
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$resolve#study
+          * @methodOf ui.router.util.$resolve
+          *
+          * @description
+          * Studies a set of invocables that are likely to be used multiple times.
+          * <pre>
+          * $resolve.study(invocables)(locals, parent, self)
+          * </pre>
+          * is equivalent to
+          * <pre>
+          * $resolve.resolve(invocables, locals, parent, self)
+          * </pre>
+          * but the former is more efficient (in fact `resolve` just calls `study` 
+          * internally).
+          *
+          * @param {object} invocables Invocable objects
+          * @return {function} a function to pass in locals, parent and self
+          */
+         this.study = function (invocables) {
+           if (!isObject(invocables)) throw new Error("'invocables' must be an object");
+           var invocableKeys = objectKeys(invocables || {});
+           
+           // Perform a topological sort of invocables to build an ordered plan
+           var plan = [], cycle = [], visited = {};
+           function visit(value, key) {
+             if (visited[key] === VISIT_DONE) return;
+             
+             cycle.push(key);
+             if (visited[key] === VISIT_IN_PROGRESS) {
+               cycle.splice(0, indexOf(cycle, key));
+               throw new Error("Cyclic dependency: " + cycle.join(" -> "));
+             }
+             visited[key] = VISIT_IN_PROGRESS;
+             
+             if (isString(value)) {
+               plan.push(key, [ function() { return $injector.get(value); }], NO_DEPENDENCIES);
+             } else {
+               var params = $injector.annotate(value);
+               forEach(params, function (param) {
+                 if (param !== key && invocables.hasOwnProperty(param)) visit(invocables[param], param);
+               });
+               plan.push(key, value, params);
+             }
+             
+             cycle.pop();
+             visited[key] = VISIT_DONE;
+           }
+           forEach(invocables, visit);
+           invocables = cycle = visited = null; // plan is all that's required
+           
+           function isResolve(value) {
+             return isObject(value) && value.then && value.$$promises;
+           }
+           
+           return function (locals, parent, self) {
+             if (isResolve(locals) && self === undefined) {
+               self = parent; parent = locals; locals = null;
+             }
+             if (!locals) locals = NO_LOCALS;
+             else if (!isObject(locals)) {
+               throw new Error("'locals' must be an object");
+             }       
+             if (!parent) parent = NO_PARENT;
+             else if (!isResolve(parent)) {
+               throw new Error("'parent' must be a promise returned by $resolve.resolve()");
+             }
+             
+             // To complete the overall resolution, we have to wait for the parent
+             // promise and for the promise for each invokable in our plan.
+             var resolution = $q.defer(),
+                 result = resolution.promise,
+                 promises = result.$$promises = {},
+                 values = extend({}, locals),
+                 wait = 1 + plan.length/3,
+                 merged = false;
+                 
+             function done() {
+               // Merge parent values we haven't got yet and publish our own $$values
+               if (!--wait) {
+                 if (!merged) merge(values, parent.$$values); 
+                 result.$$values = values;
+                 result.$$promises = result.$$promises || true; // keep for isResolve()
+                 delete result.$$inheritedValues;
+                 resolution.resolve(values);
+               }
+             }
+             
+             function fail(reason) {
+               result.$$failure = reason;
+               resolution.reject(reason);
+             }
+
+             // Short-circuit if parent has already failed
+             if (isDefined(parent.$$failure)) {
+               fail(parent.$$failure);
+               return result;
+             }
+             
+             if (parent.$$inheritedValues) {
+               merge(values, omit(parent.$$inheritedValues, invocableKeys));
+             }
+
+             // Merge parent values if the parent has already resolved, or merge
+             // parent promises and wait if the parent resolve is still in progress.
+             extend(promises, parent.$$promises);
+             if (parent.$$values) {
+               merged = merge(values, omit(parent.$$values, invocableKeys));
+               result.$$inheritedValues = omit(parent.$$values, invocableKeys);
+               done();
+             } else {
+               if (parent.$$inheritedValues) {
+                 result.$$inheritedValues = omit(parent.$$inheritedValues, invocableKeys);
+               }        
+               parent.then(done, fail);
+             }
+             
+             // Process each invocable in the plan, but ignore any where a local of the same name exists.
+             for (var i=0, ii=plan.length; i<ii; i+=3) {
+               if (locals.hasOwnProperty(plan[i])) done();
+               else invoke(plan[i], plan[i+1], plan[i+2]);
+             }
+             
+             function invoke(key, invocable, params) {
+               // Create a deferred for this invocation. Failures will propagate to the resolution as well.
+               var invocation = $q.defer(), waitParams = 0;
+               function onfailure(reason) {
+                 invocation.reject(reason);
+                 fail(reason);
+               }
+               // Wait for any parameter that we have a promise for (either from parent or from this
+               // resolve; in that case study() will have made sure it's ordered before us in the plan).
+               forEach(params, function (dep) {
+                 if (promises.hasOwnProperty(dep) && !locals.hasOwnProperty(dep)) {
+                   waitParams++;
+                   promises[dep].then(function (result) {
+                     values[dep] = result;
+                     if (!(--waitParams)) proceed();
+                   }, onfailure);
+                 }
+               });
+               if (!waitParams) proceed();
+               function proceed() {
+                 if (isDefined(result.$$failure)) return;
+                 try {
+                   invocation.resolve($injector.invoke(invocable, self, values));
+                   invocation.promise.then(function (result) {
+                     values[key] = result;
+                     done();
+                   }, onfailure);
+                 } catch (e) {
+                   onfailure(e);
+                 }
+               }
+               // Publish promise synchronously; invocations further down in the plan may depend on it.
+               promises[key] = invocation.promise;
+             }
+             
+             return result;
+           };
+         };
+         
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$resolve#resolve
+          * @methodOf ui.router.util.$resolve
+          *
+          * @description
+          * Resolves a set of invocables. An invocable is a function to be invoked via 
+          * `$injector.invoke()`, and can have an arbitrary number of dependencies. 
+          * An invocable can either return a value directly,
+          * or a `$q` promise. If a promise is returned it will be resolved and the 
+          * resulting value will be used instead. Dependencies of invocables are resolved 
+          * (in this order of precedence)
+          *
+          * - from the specified `locals`
+          * - from another invocable that is part of this `$resolve` call
+          * - from an invocable that is inherited from a `parent` call to `$resolve` 
+          *   (or recursively
+          * - from any ancestor `$resolve` of that parent).
+          *
+          * The return value of `$resolve` is a promise for an object that contains 
+          * (in this order of precedence)
+          *
+          * - any `locals` (if specified)
+          * - the resolved return values of all injectables
+          * - any values inherited from a `parent` call to `$resolve` (if specified)
+          *
+          * The promise will resolve after the `parent` promise (if any) and all promises 
+          * returned by injectables have been resolved. If any invocable 
+          * (or `$injector.invoke`) throws an exception, or if a promise returned by an 
+          * invocable is rejected, the `$resolve` promise is immediately rejected with the 
+          * same error. A rejection of a `parent` promise (if specified) will likewise be 
+          * propagated immediately. Once the `$resolve` promise has been rejected, no 
+          * further invocables will be called.
+          * 
+          * Cyclic dependencies between invocables are not permitted and will cause `$resolve`
+          * to throw an error. As a special case, an injectable can depend on a parameter 
+          * with the same name as the injectable, which will be fulfilled from the `parent` 
+          * injectable of the same name. This allows inherited values to be decorated. 
+          * Note that in this case any other injectable in the same `$resolve` with the same
+          * dependency would see the decorated value, not the inherited value.
+          *
+          * Note that missing dependencies -- unlike cyclic dependencies -- will cause an 
+          * (asynchronous) rejection of the `$resolve` promise rather than a (synchronous) 
+          * exception.
+          *
+          * Invocables are invoked eagerly as soon as all dependencies are available. 
+          * This is true even for dependencies inherited from a `parent` call to `$resolve`.
+          *
+          * As a special case, an invocable can be a string, in which case it is taken to 
+          * be a service name to be passed to `$injector.get()`. This is supported primarily 
+          * for backwards-compatibility with the `resolve` property of `$routeProvider` 
+          * routes.
+          *
+          * @param {object} invocables functions to invoke or 
+          * `$injector` services to fetch.
+          * @param {object} locals  values to make available to the injectables
+          * @param {object} parent  a promise returned by another call to `$resolve`.
+          * @param {object} self  the `this` for the invoked methods
+          * @return {object} Promise for an object that contains the resolved return value
+          * of all invocables, as well as any inherited and local values.
+          */
+         this.resolve = function (invocables, locals, parent, self) {
+           return this.study(invocables)(locals, parent, self);
+         };
+       }
+
+       angular.module('ui.router.util').service('$resolve', $Resolve);
+
+
+       /**
+        * @ngdoc object
+        * @name ui.router.util.$templateFactory
+        *
+        * @requires $http
+        * @requires $templateCache
+        * @requires $injector
+        *
+        * @description
+        * Service. Manages loading of templates.
+        */
+       $TemplateFactory.$inject = ['$http', '$templateCache', '$injector'];
+       function $TemplateFactory(  $http,   $templateCache,   $injector) {
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$templateFactory#fromConfig
+          * @methodOf ui.router.util.$templateFactory
+          *
+          * @description
+          * Creates a template from a configuration object. 
+          *
+          * @param {object} config Configuration object for which to load a template. 
+          * The following properties are search in the specified order, and the first one 
+          * that is defined is used to create the template:
+          *
+          * @param {string|object} config.template html string template or function to 
+          * load via {@link ui.router.util.$templateFactory#fromString fromString}.
+          * @param {string|object} config.templateUrl url to load or a function returning 
+          * the url to load via {@link ui.router.util.$templateFactory#fromUrl fromUrl}.
+          * @param {Function} config.templateProvider function to invoke via 
+          * {@link ui.router.util.$templateFactory#fromProvider fromProvider}.
+          * @param {object} params  Parameters to pass to the template function.
+          * @param {object} locals Locals to pass to `invoke` if the template is loaded 
+          * via a `templateProvider`. Defaults to `{ params: params }`.
+          *
+          * @return {string|object}  The template html as a string, or a promise for 
+          * that string,or `null` if no template is configured.
+          */
+         this.fromConfig = function (config, params, locals) {
+           return (
+             isDefined(config.template) ? this.fromString(config.template, params) :
+             isDefined(config.templateUrl) ? this.fromUrl(config.templateUrl, params) :
+             isDefined(config.templateProvider) ? this.fromProvider(config.templateProvider, params, locals) :
+             null
+           );
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$templateFactory#fromString
+          * @methodOf ui.router.util.$templateFactory
+          *
+          * @description
+          * Creates a template from a string or a function returning a string.
+          *
+          * @param {string|object} template html template as a string or function that 
+          * returns an html template as a string.
+          * @param {object} params Parameters to pass to the template function.
+          *
+          * @return {string|object} The template html as a string, or a promise for that 
+          * string.
+          */
+         this.fromString = function (template, params) {
+           return isFunction(template) ? template(params) : template;
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$templateFactory#fromUrl
+          * @methodOf ui.router.util.$templateFactory
+          * 
+          * @description
+          * Loads a template from the a URL via `$http` and `$templateCache`.
+          *
+          * @param {string|Function} url url of the template to load, or a function 
+          * that returns a url.
+          * @param {Object} params Parameters to pass to the url function.
+          * @return {string|Promise.<string>} The template html as a string, or a promise 
+          * for that string.
+          */
+         this.fromUrl = function (url, params) {
+           if (isFunction(url)) url = url(params);
+           if (url == null) return null;
+           else return $http
+               .get(url, { cache: $templateCache, headers: { Accept: 'text/html' }})
+               .then(function(response) { return response.data; });
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$templateFactory#fromProvider
+          * @methodOf ui.router.util.$templateFactory
+          *
+          * @description
+          * Creates a template by invoking an injectable provider function.
+          *
+          * @param {Function} provider Function to invoke via `$injector.invoke`
+          * @param {Object} params Parameters for the template.
+          * @param {Object} locals Locals to pass to `invoke`. Defaults to 
+          * `{ params: params }`.
+          * @return {string|Promise.<string>} The template html as a string, or a promise 
+          * for that string.
+          */
+         this.fromProvider = function (provider, params, locals) {
+           return $injector.invoke(provider, null, locals || { params: params });
+         };
+       }
+
+       angular.module('ui.router.util').service('$templateFactory', $TemplateFactory);
+
+       var $$UMFP; // reference to $UrlMatcherFactoryProvider
+
+       /**
+        * @ngdoc object
+        * @name ui.router.util.type:UrlMatcher
+        *
+        * @description
+        * Matches URLs against patterns and extracts named parameters from the path or the search
+        * part of the URL. A URL pattern consists of a path pattern, optionally followed by '?' and a list
+        * of search parameters. Multiple search parameter names are separated by '&'. Search parameters
+        * do not influence whether or not a URL is matched, but their values are passed through into
+        * the matched parameters returned by {@link ui.router.util.type:UrlMatcher#methods_exec exec}.
+        *
+        * Path parameter placeholders can be specified using simple colon/catch-all syntax or curly brace
+        * syntax, which optionally allows a regular expression for the parameter to be specified:
+        *
+        * * `':'` name - colon placeholder
+        * * `'*'` name - catch-all placeholder
+        * * `'{' name '}'` - curly placeholder
+        * * `'{' name ':' regexp|type '}'` - curly placeholder with regexp or type name. Should the
+        *   regexp itself contain curly braces, they must be in matched pairs or escaped with a backslash.
+        *
+        * Parameter names may contain only word characters (latin letters, digits, and underscore) and
+        * must be unique within the pattern (across both path and search parameters). For colon
+        * placeholders or curly placeholders without an explicit regexp, a path parameter matches any
+        * number of characters other than '/'. For catch-all placeholders the path parameter matches
+        * any number of characters.
+        *
+        * Examples:
+        *
+        * * `'/hello/'` - Matches only if the path is exactly '/hello/'. There is no special treatment for
+        *   trailing slashes, and patterns have to match the entire path, not just a prefix.
+        * * `'/user/:id'` - Matches '/user/bob' or '/user/1234!!!' or even '/user/' but not '/user' or
+        *   '/user/bob/details'. The second path segment will be captured as the parameter 'id'.
+        * * `'/user/{id}'` - Same as the previous example, but using curly brace syntax.
+        * * `'/user/{id:[^/]*}'` - Same as the previous example.
+        * * `'/user/{id:[0-9a-fA-F]{1,8}}'` - Similar to the previous example, but only matches if the id
+        *   parameter consists of 1 to 8 hex digits.
+        * * `'/files/{path:.*}'` - Matches any URL starting with '/files/' and captures the rest of the
+        *   path into the parameter 'path'.
+        * * `'/files/*path'` - ditto.
+        * * `'/calendar/{start:date}'` - Matches "/calendar/2014-11-12" (because the pattern defined
+        *   in the built-in  `date` Type matches `2014-11-12`) and provides a Date object in $stateParams.start
+        *
+        * @param {string} pattern  The pattern to compile into a matcher.
+        * @param {Object} config  A configuration object hash:
+        * @param {Object=} parentMatcher Used to concatenate the pattern/config onto
+        *   an existing UrlMatcher
+        *
+        * * `caseInsensitive` - `true` if URL matching should be case insensitive, otherwise `false`, the default value (for backward compatibility) is `false`.
+        * * `strict` - `false` if matching against a URL with a trailing slash should be treated as equivalent to a URL without a trailing slash, the default value is `true`.
+        *
+        * @property {string} prefix  A static prefix of this pattern. The matcher guarantees that any
+        *   URL matching this matcher (i.e. any string for which {@link ui.router.util.type:UrlMatcher#methods_exec exec()} returns
+        *   non-null) will start with this prefix.
+        *
+        * @property {string} source  The pattern that was passed into the constructor
+        *
+        * @property {string} sourcePath  The path portion of the source property
+        *
+        * @property {string} sourceSearch  The search portion of the source property
+        *
+        * @property {string} regex  The constructed regex that will be used to match against the url when
+        *   it is time to determine which url will match.
+        *
+        * @returns {Object}  New `UrlMatcher` object
+        */
+       function UrlMatcher(pattern, config, parentMatcher) {
+         config = extend({ params: {} }, isObject(config) ? config : {});
+
+         // Find all placeholders and create a compiled pattern, using either classic or curly syntax:
+         //   '*' name
+         //   ':' name
+         //   '{' name '}'
+         //   '{' name ':' regexp '}'
+         // The regular expression is somewhat complicated due to the need to allow curly braces
+         // inside the regular expression. The placeholder regexp breaks down as follows:
+         //    ([:*])([\w\[\]]+)              - classic placeholder ($1 / $2) (search version has - for snake-case)
+         //    \{([\w\[\]]+)(?:\:\s*( ... ))?\}  - curly brace placeholder ($3) with optional regexp/type ... ($4) (search version has - for snake-case
+         //    (?: ... | ... | ... )+         - the regexp consists of any number of atoms, an atom being either
+         //    [^{}\\]+                       - anything other than curly braces or backslash
+         //    \\.                            - a backslash escape
+         //    \{(?:[^{}\\]+|\\.)*\}          - a matched set of curly braces containing other atoms
+         var placeholder       = /([:*])([\w\[\]]+)|\{([\w\[\]]+)(?:\:\s*((?:[^{}\\]+|\\.|\{(?:[^{}\\]+|\\.)*\})+))?\}/g,
+             searchPlaceholder = /([:]?)([\w\[\].-]+)|\{([\w\[\].-]+)(?:\:\s*((?:[^{}\\]+|\\.|\{(?:[^{}\\]+|\\.)*\})+))?\}/g,
+             compiled = '^', last = 0, m,
+             segments = this.segments = [],
+             parentParams = parentMatcher ? parentMatcher.params : {},
+             params = this.params = parentMatcher ? parentMatcher.params.$$new() : new $$UMFP.ParamSet(),
+             paramNames = [];
+
+         function addParameter(id, type, config, location) {
+           paramNames.push(id);
+           if (parentParams[id]) return parentParams[id];
+           if (!/^\w+([-.]+\w+)*(?:\[\])?$/.test(id)) throw new Error("Invalid parameter name '" + id + "' in pattern '" + pattern + "'");
+           if (params[id]) throw new Error("Duplicate parameter name '" + id + "' in pattern '" + pattern + "'");
+           params[id] = new $$UMFP.Param(id, type, config, location);
+           return params[id];
+         }
+
+         function quoteRegExp(string, pattern, squash, optional) {
+           var surroundPattern = ['',''], result = string.replace(/[\\\[\]\^$*+?.()|{}]/g, "\\$&");
+           if (!pattern) return result;
+           switch(squash) {
+             case false: surroundPattern = ['(', ')' + (optional ? "?" : "")]; break;
+             case true:
+               result = result.replace(/\/$/, '');
+               surroundPattern = ['(?:\/(', ')|\/)?'];
+             break;
+             default:    surroundPattern = ['(' + squash + "|", ')?']; break;
+           }
+           return result + surroundPattern[0] + pattern + surroundPattern[1];
+         }
+
+         this.source = pattern;
+
+         // Split into static segments separated by path parameter placeholders.
+         // The number of segments is always 1 more than the number of parameters.
+         function matchDetails(m, isSearch) {
+           var id, regexp, segment, type, cfg, arrayMode;
+           id          = m[2] || m[3]; // IE[78] returns '' for unmatched groups instead of null
+           cfg         = config.params[id];
+           segment     = pattern.substring(last, m.index);
+           regexp      = isSearch ? m[4] : m[4] || (m[1] == '*' ? '.*' : null);
+
+           if (regexp) {
+             type      = $$UMFP.type(regexp) || inherit($$UMFP.type("string"), { pattern: new RegExp(regexp, config.caseInsensitive ? 'i' : undefined) });
+           }
+
+           return {
+             id: id, regexp: regexp, segment: segment, type: type, cfg: cfg
+           };
+         }
+
+         var p, param, segment;
+         while ((m = placeholder.exec(pattern))) {
+           p = matchDetails(m, false);
+           if (p.segment.indexOf('?') >= 0) break; // we're into the search part
+
+           param = addParameter(p.id, p.type, p.cfg, "path");
+           compiled += quoteRegExp(p.segment, param.type.pattern.source, param.squash, param.isOptional);
+           segments.push(p.segment);
+           last = placeholder.lastIndex;
+         }
+         segment = pattern.substring(last);
+
+         // Find any search parameter names and remove them from the last segment
+         var i = segment.indexOf('?');
+
+         if (i >= 0) {
+           var search = this.sourceSearch = segment.substring(i);
+           segment = segment.substring(0, i);
+           this.sourcePath = pattern.substring(0, last + i);
+
+           if (search.length > 0) {
+             last = 0;
+             while ((m = searchPlaceholder.exec(search))) {
+               p = matchDetails(m, true);
+               param = addParameter(p.id, p.type, p.cfg, "search");
+               last = placeholder.lastIndex;
+               // check if ?&
+             }
+           }
+         } else {
+           this.sourcePath = pattern;
+           this.sourceSearch = '';
+         }
+
+         compiled += quoteRegExp(segment) + (config.strict === false ? '\/?' : '') + '$';
+         segments.push(segment);
+
+         this.regexp = new RegExp(compiled, config.caseInsensitive ? 'i' : undefined);
+         this.prefix = segments[0];
+         this.$$paramNames = paramNames;
+       }
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:UrlMatcher#concat
+        * @methodOf ui.router.util.type:UrlMatcher
+        *
+        * @description
+        * Returns a new matcher for a pattern constructed by appending the path part and adding the
+        * search parameters of the specified pattern to this pattern. The current pattern is not
+        * modified. This can be understood as creating a pattern for URLs that are relative to (or
+        * suffixes of) the current pattern.
+        *
+        * @example
+        * The following two matchers are equivalent:
+        * <pre>
+        * new UrlMatcher('/user/{id}?q').concat('/details?date');
+        * new UrlMatcher('/user/{id}/details?q&date');
+        * </pre>
+        *
+        * @param {string} pattern  The pattern to append.
+        * @param {Object} config  An object hash of the configuration for the matcher.
+        * @returns {UrlMatcher}  A matcher for the concatenated pattern.
+        */
+       UrlMatcher.prototype.concat = function (pattern, config) {
+         // Because order of search parameters is irrelevant, we can add our own search
+         // parameters to the end of the new pattern. Parse the new pattern by itself
+         // and then join the bits together, but it's much easier to do this on a string level.
+         var defaultConfig = {
+           caseInsensitive: $$UMFP.caseInsensitive(),
+           strict: $$UMFP.strictMode(),
+           squash: $$UMFP.defaultSquashPolicy()
+         };
+         return new UrlMatcher(this.sourcePath + pattern + this.sourceSearch, extend(defaultConfig, config), this);
+       };
+
+       UrlMatcher.prototype.toString = function () {
+         return this.source;
+       };
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:UrlMatcher#exec
+        * @methodOf ui.router.util.type:UrlMatcher
+        *
+        * @description
+        * Tests the specified path against this matcher, and returns an object containing the captured
+        * parameter values, or null if the path does not match. The returned object contains the values
+        * of any search parameters that are mentioned in the pattern, but their value may be null if
+        * they are not present in `searchParams`. This means that search parameters are always treated
+        * as optional.
+        *
+        * @example
+        * <pre>
+        * new UrlMatcher('/user/{id}?q&r').exec('/user/bob', {
+        *   x: '1', q: 'hello'
+        * });
+        * // returns { id: 'bob', q: 'hello', r: null }
+        * </pre>
+        *
+        * @param {string} path  The URL path to match, e.g. `$location.path()`.
+        * @param {Object} searchParams  URL search parameters, e.g. `$location.search()`.
+        * @returns {Object}  The captured parameter values.
+        */
+       UrlMatcher.prototype.exec = function (path, searchParams) {
+         var m = this.regexp.exec(path);
+         if (!m) return null;
+         searchParams = searchParams || {};
+
+         var paramNames = this.parameters(), nTotal = paramNames.length,
+           nPath = this.segments.length - 1,
+           values = {}, i, j, cfg, paramName;
+
+         if (nPath !== m.length - 1) throw new Error("Unbalanced capture group in route '" + this.source + "'");
+
+         function decodePathArray(string) {
+           function reverseString(str) { return str.split("").reverse().join(""); }
+           function unquoteDashes(str) { return str.replace(/\\-/g, "-"); }
+
+           var split = reverseString(string).split(/-(?!\\)/);
+           var allReversed = map(split, reverseString);
+           return map(allReversed, unquoteDashes).reverse();
+         }
+
+         var param, paramVal;
+         for (i = 0; i < nPath; i++) {
+           paramName = paramNames[i];
+           param = this.params[paramName];
+           paramVal = m[i+1];
+           // if the param value matches a pre-replace pair, replace the value before decoding.
+           for (j = 0; j < param.replace.length; j++) {
+             if (param.replace[j].from === paramVal) paramVal = param.replace[j].to;
+           }
+           if (paramVal && param.array === true) paramVal = decodePathArray(paramVal);
+           if (isDefined(paramVal)) paramVal = param.type.decode(paramVal);
+           values[paramName] = param.value(paramVal);
+         }
+         for (/**/; i < nTotal; i++) {
+           paramName = paramNames[i];
+           values[paramName] = this.params[paramName].value(searchParams[paramName]);
+           param = this.params[paramName];
+           paramVal = searchParams[paramName];
+           for (j = 0; j < param.replace.length; j++) {
+             if (param.replace[j].from === paramVal) paramVal = param.replace[j].to;
+           }
+           if (isDefined(paramVal)) paramVal = param.type.decode(paramVal);
+           values[paramName] = param.value(paramVal);
+         }
+
+         return values;
+       };
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:UrlMatcher#parameters
+        * @methodOf ui.router.util.type:UrlMatcher
+        *
+        * @description
+        * Returns the names of all path and search parameters of this pattern in an unspecified order.
+        *
+        * @returns {Array.<string>}  An array of parameter names. Must be treated as read-only. If the
+        *    pattern has no parameters, an empty array is returned.
+        */
+       UrlMatcher.prototype.parameters = function (param) {
+         if (!isDefined(param)) return this.$$paramNames;
+         return this.params[param] || null;
+       };
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:UrlMatcher#validates
+        * @methodOf ui.router.util.type:UrlMatcher
+        *
+        * @description
+        * Checks an object hash of parameters to validate their correctness according to the parameter
+        * types of this `UrlMatcher`.
+        *
+        * @param {Object} params The object hash of parameters to validate.
+        * @returns {boolean} Returns `true` if `params` validates, otherwise `false`.
+        */
+       UrlMatcher.prototype.validates = function (params) {
+         return this.params.$$validates(params);
+       };
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:UrlMatcher#format
+        * @methodOf ui.router.util.type:UrlMatcher
+        *
+        * @description
+        * Creates a URL that matches this pattern by substituting the specified values
+        * for the path and search parameters. Null values for path parameters are
+        * treated as empty strings.
+        *
+        * @example
+        * <pre>
+        * new UrlMatcher('/user/{id}?q').format({ id:'bob', q:'yes' });
+        * // returns '/user/bob?q=yes'
+        * </pre>
+        *
+        * @param {Object} values  the values to substitute for the parameters in this pattern.
+        * @returns {string}  the formatted URL (path and optionally search part).
+        */
+       UrlMatcher.prototype.format = function (values) {
+         values = values || {};
+         var segments = this.segments, params = this.parameters(), paramset = this.params;
+         if (!this.validates(values)) return null;
+
+         var i, search = false, nPath = segments.length - 1, nTotal = params.length, result = segments[0];
+
+         function encodeDashes(str) { // Replace dashes with encoded "\-"
+           return encodeURIComponent(str).replace(/-/g, function(c) { return '%5C%' + c.charCodeAt(0).toString(16).toUpperCase(); });
+         }
+
+         for (i = 0; i < nTotal; i++) {
+           var isPathParam = i < nPath;
+           var name = params[i], param = paramset[name], value = param.value(values[name]);
+           var isDefaultValue = param.isOptional && param.type.equals(param.value(), value);
+           var squash = isDefaultValue ? param.squash : false;
+           var encoded = param.type.encode(value);
+
+           if (isPathParam) {
+             var nextSegment = segments[i + 1];
+             var isFinalPathParam = i + 1 === nPath;
+
+             if (squash === false) {
+               if (encoded != null) {
+                 if (isArray(encoded)) {
+                   result += map(encoded, encodeDashes).join("-");
+                 } else {
+                   result += encodeURIComponent(encoded);
+                 }
+               }
+               result += nextSegment;
+             } else if (squash === true) {
+               var capture = result.match(/\/$/) ? /\/?(.*)/ : /(.*)/;
+               result += nextSegment.match(capture)[1];
+             } else if (isString(squash)) {
+               result += squash + nextSegment;
+             }
+
+             if (isFinalPathParam && param.squash === true && result.slice(-1) === '/') result = result.slice(0, -1);
+           } else {
+             if (encoded == null || (isDefaultValue && squash !== false)) continue;
+             if (!isArray(encoded)) encoded = [ encoded ];
+             if (encoded.length === 0) continue;
+             encoded = map(encoded, encodeURIComponent).join('&' + name + '=');
+             result += (search ? '&' : '?') + (name + '=' + encoded);
+             search = true;
+           }
+         }
+
+         return result;
+       };
+
+       /**
+        * @ngdoc object
+        * @name ui.router.util.type:Type
+        *
+        * @description
+        * Implements an interface to define custom parameter types that can be decoded from and encoded to
+        * string parameters matched in a URL. Used by {@link ui.router.util.type:UrlMatcher `UrlMatcher`}
+        * objects when matching or formatting URLs, or comparing or validating parameter values.
+        *
+        * See {@link ui.router.util.$urlMatcherFactory#methods_type `$urlMatcherFactory#type()`} for more
+        * information on registering custom types.
+        *
+        * @param {Object} config  A configuration object which contains the custom type definition.  The object's
+        *        properties will override the default methods and/or pattern in `Type`'s public interface.
+        * @example
+        * <pre>
+        * {
+        *   decode: function(val) { return parseInt(val, 10); },
+        *   encode: function(val) { return val && val.toString(); },
+        *   equals: function(a, b) { return this.is(a) && a === b; },
+        *   is: function(val) { return angular.isNumber(val) isFinite(val) && val % 1 === 0; },
+        *   pattern: /\d+/
+        * }
+        * </pre>
+        *
+        * @property {RegExp} pattern The regular expression pattern used to match values of this type when
+        *           coming from a substring of a URL.
+        *
+        * @returns {Object}  Returns a new `Type` object.
+        */
+       function Type(config) {
+         extend(this, config);
+       }
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:Type#is
+        * @methodOf ui.router.util.type:Type
+        *
+        * @description
+        * Detects whether a value is of a particular type. Accepts a native (decoded) value
+        * and determines whether it matches the current `Type` object.
+        *
+        * @param {*} val  The value to check.
+        * @param {string} key  Optional. If the type check is happening in the context of a specific
+        *        {@link ui.router.util.type:UrlMatcher `UrlMatcher`} object, this is the name of the
+        *        parameter in which `val` is stored. Can be used for meta-programming of `Type` objects.
+        * @returns {Boolean}  Returns `true` if the value matches the type, otherwise `false`.
+        */
+       Type.prototype.is = function(val, key) {
+         return true;
+       };
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:Type#encode
+        * @methodOf ui.router.util.type:Type
+        *
+        * @description
+        * Encodes a custom/native type value to a string that can be embedded in a URL. Note that the
+        * return value does *not* need to be URL-safe (i.e. passed through `encodeURIComponent()`), it
+        * only needs to be a representation of `val` that has been coerced to a string.
+        *
+        * @param {*} val  The value to encode.
+        * @param {string} key  The name of the parameter in which `val` is stored. Can be used for
+        *        meta-programming of `Type` objects.
+        * @returns {string}  Returns a string representation of `val` that can be encoded in a URL.
+        */
+       Type.prototype.encode = function(val, key) {
+         return val;
+       };
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:Type#decode
+        * @methodOf ui.router.util.type:Type
+        *
+        * @description
+        * Converts a parameter value (from URL string or transition param) to a custom/native value.
+        *
+        * @param {string} val  The URL parameter value to decode.
+        * @param {string} key  The name of the parameter in which `val` is stored. Can be used for
+        *        meta-programming of `Type` objects.
+        * @returns {*}  Returns a custom representation of the URL parameter value.
+        */
+       Type.prototype.decode = function(val, key) {
+         return val;
+       };
+
+       /**
+        * @ngdoc function
+        * @name ui.router.util.type:Type#equals
+        * @methodOf ui.router.util.type:Type
+        *
+        * @description
+        * Determines whether two decoded values are equivalent.
+        *
+        * @param {*} a  A value to compare against.
+        * @param {*} b  A value to compare against.
+        * @returns {Boolean}  Returns `true` if the values are equivalent/equal, otherwise `false`.
+        */
+       Type.prototype.equals = function(a, b) {
+         return a == b;
+       };
+
+       Type.prototype.$subPattern = function() {
+         var sub = this.pattern.toString();
+         return sub.substr(1, sub.length - 2);
+       };
+
+       Type.prototype.pattern = /.*/;
+
+       Type.prototype.toString = function() { return "{Type:" + this.name + "}"; };
+
+       /** Given an encoded string, or a decoded object, returns a decoded object */
+       Type.prototype.$normalize = function(val) {
+         return this.is(val) ? val : this.decode(val);
+       };
+
+       /*
+        * Wraps an existing custom Type as an array of Type, depending on 'mode'.
+        * e.g.:
+        * - urlmatcher pattern "/path?{queryParam[]:int}"
+        * - url: "/path?queryParam=1&queryParam=2
+        * - $stateParams.queryParam will be [1, 2]
+        * if `mode` is "auto", then
+        * - url: "/path?queryParam=1 will create $stateParams.queryParam: 1
+        * - url: "/path?queryParam=1&queryParam=2 will create $stateParams.queryParam: [1, 2]
+        */
+       Type.prototype.$asArray = function(mode, isSearch) {
+         if (!mode) return this;
+         if (mode === "auto" && !isSearch) throw new Error("'auto' array mode is for query parameters only");
+
+         function ArrayType(type, mode) {
+           function bindTo(type, callbackName) {
+             return function() {
+               return type[callbackName].apply(type, arguments);
+             };
+           }
+
+           // Wrap non-array value as array
+           function arrayWrap(val) { return isArray(val) ? val : (isDefined(val) ? [ val ] : []); }
+           // Unwrap array value for "auto" mode. Return undefined for empty array.
+           function arrayUnwrap(val) {
+             switch(val.length) {
+               case 0: return undefined;
+               case 1: return mode === "auto" ? val[0] : val;
+               default: return val;
+             }
+           }
+           function falsey(val) { return !val; }
+
+           // Wraps type (.is/.encode/.decode) functions to operate on each value of an array
+           function arrayHandler(callback, allTruthyMode) {
+             return function handleArray(val) {
+               if (isArray(val) && val.length === 0) return val;
+               val = arrayWrap(val);
+               var result = map(val, callback);
+               if (allTruthyMode === true)
+                 return filter(result, falsey).length === 0;
+               return arrayUnwrap(result);
+             };
+           }
+
+           // Wraps type (.equals) functions to operate on each value of an array
+           function arrayEqualsHandler(callback) {
+             return function handleArray(val1, val2) {
+               var left = arrayWrap(val1), right = arrayWrap(val2);
+               if (left.length !== right.length) return false;
+               for (var i = 0; i < left.length; i++) {
+                 if (!callback(left[i], right[i])) return false;
+               }
+               return true;
+             };
+           }
+
+           this.encode = arrayHandler(bindTo(type, 'encode'));
+           this.decode = arrayHandler(bindTo(type, 'decode'));
+           this.is     = arrayHandler(bindTo(type, 'is'), true);
+           this.equals = arrayEqualsHandler(bindTo(type, 'equals'));
+           this.pattern = type.pattern;
+           this.$normalize = arrayHandler(bindTo(type, '$normalize'));
+           this.name = type.name;
+           this.$arrayMode = mode;
+         }
+
+         return new ArrayType(this, mode);
+       };
+
+
+
+       /**
+        * @ngdoc object
+        * @name ui.router.util.$urlMatcherFactory
+        *
+        * @description
+        * Factory for {@link ui.router.util.type:UrlMatcher `UrlMatcher`} instances. The factory
+        * is also available to providers under the name `$urlMatcherFactoryProvider`.
+        */
+       function $UrlMatcherFactory() {
+         $$UMFP = this;
+
+         var isCaseInsensitive = false, isStrictMode = true, defaultSquashPolicy = false;
+
+         // Use tildes to pre-encode slashes.
+         // If the slashes are simply URLEncoded, the browser can choose to pre-decode them,
+         // and bidirectional encoding/decoding fails.
+         // Tilde was chosen because it's not a RFC 3986 section 2.2 Reserved Character
+         function valToString(val) { return val != null ? val.toString().replace(/~/g, "~~").replace(/\//g, "~2F") : val; }
+         function valFromString(val) { return val != null ? val.toString().replace(/~2F/g, "/").replace(/~~/g, "~") : val; }
+
+         var $types = {}, enqueue = true, typeQueue = [], injector, defaultTypes = {
+           "string": {
+             encode: valToString,
+             decode: valFromString,
+             // TODO: in 1.0, make string .is() return false if value is undefined/null by default.
+             // In 0.2.x, string params are optional by default for backwards compat
+             is: function(val) { return val == null || !isDefined(val) || typeof val === "string"; },
+             pattern: /[^/]*/
+           },
+           "int": {
+             encode: valToString,
+             decode: function(val) { return parseInt(val, 10); },
+             is: function(val) { return isDefined(val) && this.decode(val.toString()) === val; },
+             pattern: /\d+/
+           },
+           "bool": {
+             encode: function(val) { return val ? 1 : 0; },
+             decode: function(val) { return parseInt(val, 10) !== 0; },
+             is: function(val) { return val === true || val === false; },
+             pattern: /0|1/
+           },
+           "date": {
+             encode: function (val) {
+               if (!this.is(val))
+                 return undefined;
+               return [ val.getFullYear(),
+                 ('0' + (val.getMonth() + 1)).slice(-2),
+                 ('0' + val.getDate()).slice(-2)
+               ].join("-");
+             },
+             decode: function (val) {
+               if (this.is(val)) return val;
+               var match = this.capture.exec(val);
+               return match ? new Date(match[1], match[2] - 1, match[3]) : undefined;
+             },
+             is: function(val) { return val instanceof Date && !isNaN(val.valueOf()); },
+             equals: function (a, b) { return this.is(a) && this.is(b) && a.toISOString() === b.toISOString(); },
+             pattern: /[0-9]{4}-(?:0[1-9]|1[0-2])-(?:0[1-9]|[1-2][0-9]|3[0-1])/,
+             capture: /([0-9]{4})-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])/
+           },
+           "json": {
+             encode: angular.toJson,
+             decode: angular.fromJson,
+             is: angular.isObject,
+             equals: angular.equals,
+             pattern: /[^/]*/
+           },
+           "any": { // does not encode/decode
+             encode: angular.identity,
+             decode: angular.identity,
+             equals: angular.equals,
+             pattern: /.*/
+           }
+         };
+
+         function getDefaultConfig() {
+           return {
+             strict: isStrictMode,
+             caseInsensitive: isCaseInsensitive
+           };
+         }
+
+         function isInjectable(value) {
+           return (isFunction(value) || (isArray(value) && isFunction(value[value.length - 1])));
+         }
+
+         /**
+          * [Internal] Get the default value of a parameter, which may be an injectable function.
+          */
+         $UrlMatcherFactory.$$getDefaultValue = function(config) {
+           if (!isInjectable(config.value)) return config.value;
+           if (!injector) throw new Error("Injectable functions cannot be called at configuration time");
+           return injector.invoke(config.value);
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$urlMatcherFactory#caseInsensitive
+          * @methodOf ui.router.util.$urlMatcherFactory
+          *
+          * @description
+          * Defines whether URL matching should be case sensitive (the default behavior), or not.
+          *
+          * @param {boolean} value `false` to match URL in a case sensitive manner; otherwise `true`;
+          * @returns {boolean} the current value of caseInsensitive
+          */
+         this.caseInsensitive = function(value) {
+           if (isDefined(value))
+             isCaseInsensitive = value;
+           return isCaseInsensitive;
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$urlMatcherFactory#strictMode
+          * @methodOf ui.router.util.$urlMatcherFactory
+          *
+          * @description
+          * Defines whether URLs should match trailing slashes, or not (the default behavior).
+          *
+          * @param {boolean=} value `false` to match trailing slashes in URLs, otherwise `true`.
+          * @returns {boolean} the current value of strictMode
+          */
+         this.strictMode = function(value) {
+           if (isDefined(value))
+             isStrictMode = value;
+           return isStrictMode;
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$urlMatcherFactory#defaultSquashPolicy
+          * @methodOf ui.router.util.$urlMatcherFactory
+          *
+          * @description
+          * Sets the default behavior when generating or matching URLs with default parameter values.
+          *
+          * @param {string} value A string that defines the default parameter URL squashing behavior.
+          *    `nosquash`: When generating an href with a default parameter value, do not squash the parameter value from the URL
+          *    `slash`: When generating an href with a default parameter value, squash (remove) the parameter value, and, if the
+          *             parameter is surrounded by slashes, squash (remove) one slash from the URL
+          *    any other string, e.g. "~": When generating an href with a default parameter value, squash (remove)
+          *             the parameter value from the URL and replace it with this string.
+          */
+         this.defaultSquashPolicy = function(value) {
+           if (!isDefined(value)) return defaultSquashPolicy;
+           if (value !== true && value !== false && !isString(value))
+             throw new Error("Invalid squash policy: " + value + ". Valid policies: false, true, arbitrary-string");
+           defaultSquashPolicy = value;
+           return value;
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$urlMatcherFactory#compile
+          * @methodOf ui.router.util.$urlMatcherFactory
+          *
+          * @description
+          * Creates a {@link ui.router.util.type:UrlMatcher `UrlMatcher`} for the specified pattern.
+          *
+          * @param {string} pattern  The URL pattern.
+          * @param {Object} config  The config object hash.
+          * @returns {UrlMatcher}  The UrlMatcher.
+          */
+         this.compile = function (pattern, config) {
+           return new UrlMatcher(pattern, extend(getDefaultConfig(), config));
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$urlMatcherFactory#isMatcher
+          * @methodOf ui.router.util.$urlMatcherFactory
+          *
+          * @description
+          * Returns true if the specified object is a `UrlMatcher`, or false otherwise.
+          *
+          * @param {Object} object  The object to perform the type check against.
+          * @returns {Boolean}  Returns `true` if the object matches the `UrlMatcher` interface, by
+          *          implementing all the same methods.
+          */
+         this.isMatcher = function (o) {
+           if (!isObject(o)) return false;
+           var result = true;
+
+           forEach(UrlMatcher.prototype, function(val, name) {
+             if (isFunction(val)) {
+               result = result && (isDefined(o[name]) && isFunction(o[name]));
+             }
+           });
+           return result;
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.util.$urlMatcherFactory#type
+          * @methodOf ui.router.util.$urlMatcherFactory
+          *
+          * @description
+          * Registers a custom {@link ui.router.util.type:Type `Type`} object that can be used to
+          * generate URLs with typed parameters.
+          *
+          * @param {string} name  The type name.
+          * @param {Object|Function} definition   The type definition. See
+          *        {@link ui.router.util.type:Type `Type`} for information on the values accepted.
+          * @param {Object|Function} definitionFn (optional) A function that is injected before the app
+          *        runtime starts.  The result of this function is merged into the existing `definition`.
+          *        See {@link ui.router.util.type:Type `Type`} for information on the values accepted.
+          *
+          * @returns {Object}  Returns `$urlMatcherFactoryProvider`.
+          *
+          * @example
+          * This is a simple example of a custom type that encodes and decodes items from an
+          * array, using the array index as the URL-encoded value:
+          *
+          * <pre>
+          * var list = ['John', 'Paul', 'George', 'Ringo'];
+          *
+          * $urlMatcherFactoryProvider.type('listItem', {
+          *   encode: function(item) {
+          *     // Represent the list item in the URL using its corresponding index
+          *     return list.indexOf(item);
+          *   },
+          *   decode: function(item) {
+          *     // Look up the list item by index
+          *     return list[parseInt(item, 10)];
+          *   },
+          *   is: function(item) {
+          *     // Ensure the item is valid by checking to see that it appears
+          *     // in the list
+          *     return list.indexOf(item) > -1;
+          *   }
+          * });
+          *
+          * $stateProvider.state('list', {
+          *   url: "/list/{item:listItem}",
+          *   controller: function($scope, $stateParams) {
+          *     console.log($stateParams.item);
+          *   }
+          * });
+          *
+          * // ...
+          *
+          * // Changes URL to '/list/3', logs "Ringo" to the console
+          * $state.go('list', { item: "Ringo" });
+          * </pre>
+          *
+          * This is a more complex example of a type that relies on dependency injection to
+          * interact with services, and uses the parameter name from the URL to infer how to
+          * handle encoding and decoding parameter values:
+          *
+          * <pre>
+          * // Defines a custom type that gets a value from a service,
+          * // where each service gets different types of values from
+          * // a backend API:
+          * $urlMatcherFactoryProvider.type('dbObject', {}, function(Users, Posts) {
+          *
+          *   // Matches up services to URL parameter names
+          *   var services = {
+          *     user: Users,
+          *     post: Posts
+          *   };
+          *
+          *   return {
+          *     encode: function(object) {
+          *       // Represent the object in the URL using its unique ID
+          *       return object.id;
+          *     },
+          *     decode: function(value, key) {
+          *       // Look up the object by ID, using the parameter
+          *       // name (key) to call the correct service
+          *       return services[key].findById(value);
+          *     },
+          *     is: function(object, key) {
+          *       // Check that object is a valid dbObject
+          *       return angular.isObject(object) && object.id && services[key];
+          *     }
+          *     equals: function(a, b) {
+          *       // Check the equality of decoded objects by comparing
+          *       // their unique IDs
+          *       return a.id === b.id;
+          *     }
+          *   };
+          * });
+          *
+          * // In a config() block, you can then attach URLs with
+          * // type-annotated parameters:
+          * $stateProvider.state('users', {
+          *   url: "/users",
+          *   // ...
+          * }).state('users.item', {
+          *   url: "/{user:dbObject}",
+          *   controller: function($scope, $stateParams) {
+          *     // $stateParams.user will now be an object returned from
+          *     // the Users service
+          *   },
+          *   // ...
+          * });
+          * </pre>
+          */
+         this.type = function (name, definition, definitionFn) {
+           if (!isDefined(definition)) return $types[name];
+           if ($types.hasOwnProperty(name)) throw new Error("A type named '" + name + "' has already been defined.");
+
+           $types[name] = new Type(extend({ name: name }, definition));
+           if (definitionFn) {
+             typeQueue.push({ name: name, def: definitionFn });
+             if (!enqueue) flushTypeQueue();
+           }
+           return this;
+         };
+
+         // `flushTypeQueue()` waits until `$urlMatcherFactory` is injected before invoking the queued `definitionFn`s
+         function flushTypeQueue() {
+           while(typeQueue.length) {
+             var type = typeQueue.shift();
+             if (type.pattern) throw new Error("You cannot override a type's .pattern at runtime.");
+             angular.extend($types[type.name], injector.invoke(type.def));
+           }
+         }
+
+         // Register default types. Store them in the prototype of $types.
+         forEach(defaultTypes, function(type, name) { $types[name] = new Type(extend({name: name}, type)); });
+         $types = inherit($types, {});
+
+         /* No need to document $get, since it returns this */
+         this.$get = ['$injector', function ($injector) {
+           injector = $injector;
+           enqueue = false;
+           flushTypeQueue();
+
+           forEach(defaultTypes, function(type, name) {
+             if (!$types[name]) $types[name] = new Type(type);
+           });
+           return this;
+         }];
+
+         this.Param = function Param(id, type, config, location) {
+           var self = this;
+           config = unwrapShorthand(config);
+           type = getType(config, type, location);
+           var arrayMode = getArrayMode();
+           type = arrayMode ? type.$asArray(arrayMode, location === "search") : type;
+           if (type.name === "string" && !arrayMode && location === "path" && config.value === undefined)
+             config.value = ""; // for 0.2.x; in 0.3.0+ do not automatically default to ""
+           var isOptional = config.value !== undefined;
+           var squash = getSquashPolicy(config, isOptional);
+           var replace = getReplace(config, arrayMode, isOptional, squash);
+
+           function unwrapShorthand(config) {
+             var keys = isObject(config) ? objectKeys(config) : [];
+             var isShorthand = indexOf(keys, "value") === -1 && indexOf(keys, "type") === -1 &&
+                               indexOf(keys, "squash") === -1 && indexOf(keys, "array") === -1;
+             if (isShorthand) config = { value: config };
+             config.$$fn = isInjectable(config.value) ? config.value : function () { return config.value; };
+             return config;
+           }
+
+           function getType(config, urlType, location) {
+             if (config.type && urlType) throw new Error("Param '"+id+"' has two type configurations.");
+             if (urlType) return urlType;
+             if (!config.type) return (location === "config" ? $types.any : $types.string);
+
+             if (angular.isString(config.type))
+               return $types[config.type];
+             if (config.type instanceof Type)
+               return config.type;
+             return new Type(config.type);
+           }
+
+           // array config: param name (param[]) overrides default settings.  explicit config overrides param name.
+           function getArrayMode() {
+             var arrayDefaults = { array: (location === "search" ? "auto" : false) };
+             var arrayParamNomenclature = id.match(/\[\]$/) ? { array: true } : {};
+             return extend(arrayDefaults, arrayParamNomenclature, config).array;
+           }
+
+           /**
+            * returns false, true, or the squash value to indicate the "default parameter url squash policy".
+            */
+           function getSquashPolicy(config, isOptional) {
+             var squash = config.squash;
+             if (!isOptional || squash === false) return false;
+             if (!isDefined(squash) || squash == null) return defaultSquashPolicy;
+             if (squash === true || isString(squash)) return squash;
+             throw new Error("Invalid squash policy: '" + squash + "'. Valid policies: false, true, or arbitrary string");
+           }
+
+           function getReplace(config, arrayMode, isOptional, squash) {
+             var replace, configuredKeys, defaultPolicy = [
+               { from: "",   to: (isOptional || arrayMode ? undefined : "") },
+               { from: null, to: (isOptional || arrayMode ? undefined : "") }
+             ];
+             replace = isArray(config.replace) ? config.replace : [];
+             if (isString(squash))
+               replace.push({ from: squash, to: undefined });
+             configuredKeys = map(replace, function(item) { return item.from; } );
+             return filter(defaultPolicy, function(item) { return indexOf(configuredKeys, item.from) === -1; }).concat(replace);
+           }
+
+           /**
+            * [Internal] Get the default value of a parameter, which may be an injectable function.
+            */
+           function $$getDefaultValue() {
+             if (!injector) throw new Error("Injectable functions cannot be called at configuration time");
+             var defaultValue = injector.invoke(config.$$fn);
+             if (defaultValue !== null && defaultValue !== undefined && !self.type.is(defaultValue))
+               throw new Error("Default value (" + defaultValue + ") for parameter '" + self.id + "' is not an instance of Type (" + self.type.name + ")");
+             return defaultValue;
+           }
+
+           /**
+            * [Internal] Gets the decoded representation of a value if the value is defined, otherwise, returns the
+            * default value, which may be the result of an injectable function.
+            */
+           function $value(value) {
+             function hasReplaceVal(val) { return function(obj) { return obj.from === val; }; }
+             function $replace(value) {
+               var replacement = map(filter(self.replace, hasReplaceVal(value)), function(obj) { return obj.to; });
+               return replacement.length ? replacement[0] : value;
+             }
+             value = $replace(value);
+             return !isDefined(value) ? $$getDefaultValue() : self.type.$normalize(value);
+           }
+
+           function toString() { return "{Param:" + id + " " + type + " squash: '" + squash + "' optional: " + isOptional + "}"; }
+
+           extend(this, {
+             id: id,
+             type: type,
+             location: location,
+             array: arrayMode,
+             squash: squash,
+             replace: replace,
+             isOptional: isOptional,
+             value: $value,
+             dynamic: undefined,
+             config: config,
+             toString: toString
+           });
+         };
+
+         function ParamSet(params) {
+           extend(this, params || {});
+         }
+
+         ParamSet.prototype = {
+           $$new: function() {
+             return inherit(this, extend(new ParamSet(), { $$parent: this}));
+           },
+           $$keys: function () {
+             var keys = [], chain = [], parent = this,
+               ignore = objectKeys(ParamSet.prototype);
+             while (parent) { chain.push(parent); parent = parent.$$parent; }
+             chain.reverse();
+             forEach(chain, function(paramset) {
+               forEach(objectKeys(paramset), function(key) {
+                   if (indexOf(keys, key) === -1 && indexOf(ignore, key) === -1) keys.push(key);
+               });
+             });
+             return keys;
+           },
+           $$values: function(paramValues) {
+             var values = {}, self = this;
+             forEach(self.$$keys(), function(key) {
+               values[key] = self[key].value(paramValues && paramValues[key]);
+             });
+             return values;
+           },
+           $$equals: function(paramValues1, paramValues2) {
+             var equal = true, self = this;
+             forEach(self.$$keys(), function(key) {
+               var left = paramValues1 && paramValues1[key], right = paramValues2 && paramValues2[key];
+               if (!self[key].type.equals(left, right)) equal = false;
+             });
+             return equal;
+           },
+           $$validates: function $$validate(paramValues) {
+             var keys = this.$$keys(), i, param, rawVal, normalized, encoded;
+             for (i = 0; i < keys.length; i++) {
+               param = this[keys[i]];
+               rawVal = paramValues[keys[i]];
+               if ((rawVal === undefined || rawVal === null) && param.isOptional)
+                 break; // There was no parameter value, but the param is optional
+               normalized = param.type.$normalize(rawVal);
+               if (!param.type.is(normalized))
+                 return false; // The value was not of the correct Type, and could not be decoded to the correct Type
+               encoded = param.type.encode(normalized);
+               if (angular.isString(encoded) && !param.type.pattern.exec(encoded))
+                 return false; // The value was of the correct type, but when encoded, did not match the Type's regexp
+             }
+             return true;
+           },
+           $$parent: undefined
+         };
+
+         this.ParamSet = ParamSet;
+       }
+
+       // Register as a provider so it's available to other providers
+       angular.module('ui.router.util').provider('$urlMatcherFactory', $UrlMatcherFactory);
+       angular.module('ui.router.util').run(['$urlMatcherFactory', function($urlMatcherFactory) { }]);
+
+       /**
+        * @ngdoc object
+        * @name ui.router.router.$urlRouterProvider
+        *
+        * @requires ui.router.util.$urlMatcherFactoryProvider
+        * @requires $locationProvider
+        *
+        * @description
+        * `$urlRouterProvider` has the responsibility of watching `$location`. 
+        * When `$location` changes it runs through a list of rules one by one until a 
+        * match is found. `$urlRouterProvider` is used behind the scenes anytime you specify 
+        * a url in a state configuration. All urls are compiled into a UrlMatcher object.
+        *
+        * There are several methods on `$urlRouterProvider` that make it useful to use directly
+        * in your module config.
+        */
+       $UrlRouterProvider.$inject = ['$locationProvider', '$urlMatcherFactoryProvider'];
+       function $UrlRouterProvider(   $locationProvider,   $urlMatcherFactory) {
+         var rules = [], otherwise = null, interceptDeferred = false, listener;
+
+         // Returns a string that is a prefix of all strings matching the RegExp
+         function regExpPrefix(re) {
+           var prefix = /^\^((?:\\[^a-zA-Z0-9]|[^\\\[\]\^$*+?.()|{}]+)*)/.exec(re.source);
+           return (prefix != null) ? prefix[1].replace(/\\(.)/g, "$1") : '';
+         }
+
+         // Interpolates matched values into a String.replace()-style pattern
+         function interpolate(pattern, match) {
+           return pattern.replace(/\$(\$|\d{1,2})/, function (m, what) {
+             return match[what === '$' ? 0 : Number(what)];
+           });
+         }
+
+         /**
+          * @ngdoc function
+          * @name ui.router.router.$urlRouterProvider#rule
+          * @methodOf ui.router.router.$urlRouterProvider
+          *
+          * @description
+          * Defines rules that are used by `$urlRouterProvider` to find matches for
+          * specific URLs.
+          *
+          * @example
+          * <pre>
+          * var app = angular.module('app', ['ui.router.router']);
+          *
+          * app.config(function ($urlRouterProvider) {
+          *   // Here's an example of how you might allow case insensitive urls
+          *   $urlRouterProvider.rule(function ($injector, $location) {
+          *     var path = $location.path(),
+          *         normalized = path.toLowerCase();
+          *
+          *     if (path !== normalized) {
+          *       return normalized;
+          *     }
+          *   });
+          * });
+          * </pre>
+          *
+          * @param {function} rule Handler function that takes `$injector` and `$location`
+          * services as arguments. You can use them to return a valid path as a string.
+          *
+          * @return {object} `$urlRouterProvider` - `$urlRouterProvider` instance
+          */
+         this.rule = function (rule) {
+           if (!isFunction(rule)) throw new Error("'rule' must be a function");
+           rules.push(rule);
+           return this;
+         };
+
+         /**
+          * @ngdoc object
+          * @name ui.router.router.$urlRouterProvider#otherwise
+          * @methodOf ui.router.router.$urlRouterProvider
+          *
+          * @description
+          * Defines a path that is used when an invalid route is requested.
+          *
+          * @example
+          * <pre>
+          * var app = angular.module('app', ['ui.router.router']);
+          *
+          * app.config(function ($urlRouterProvider) {
+          *   // if the path doesn't match any of the urls you configured
+          *   // otherwise will take care of routing the user to the
+          *   // specified url
+          *   $urlRouterProvider.otherwise('/index');
+          *
+          *   // Example of using function rule as param
+          *   $urlRouterProvider.otherwise(function ($injector, $location) {
+          *     return '/a/valid/url';
+          *   });
+          * });
+          * </pre>
+          *
+          * @param {string|function} rule The url path you want to redirect to or a function 
+          * rule that returns the url path. The function version is passed two params: 
+          * `$injector` and `$location` services, and must return a url string.
+          *
+          * @return {object} `$urlRouterProvider` - `$urlRouterProvider` instance
+          */
+         this.otherwise = function (rule) {
+           if (isString(rule)) {
+             var redirect = rule;
+             rule = function () { return redirect; };
+           }
+           else if (!isFunction(rule)) throw new Error("'rule' must be a function");
+           otherwise = rule;
+           return this;
+         };
+
+
+         function handleIfMatch($injector, handler, match) {
+           if (!match) return false;
+           var result = $injector.invoke(handler, handler, { $match: match });
+           return isDefined(result) ? result : true;
+         }
+
+         /**
+          * @ngdoc function
+          * @name ui.router.router.$urlRouterProvider#when
+          * @methodOf ui.router.router.$urlRouterProvider
+          *
+          * @description
+          * Registers a handler for a given url matching. 
+          * 
+          * If the handler is a string, it is
+          * treated as a redirect, and is interpolated according to the syntax of match
+          * (i.e. like `String.replace()` for `RegExp`, or like a `UrlMatcher` pattern otherwise).
+          *
+          * If the handler is a function, it is injectable. It gets invoked if `$location`
+          * matches. You have the option of inject the match object as `$match`.
+          *
+          * The handler can return
+          *
+          * - **falsy** to indicate that the rule didn't match after all, then `$urlRouter`
+          *   will continue trying to find another one that matches.
+          * - **string** which is treated as a redirect and passed to `$location.url()`
+          * - **void** or any **truthy** value tells `$urlRouter` that the url was handled.
+          *
+          * @example
+          * <pre>
+          * var app = angular.module('app', ['ui.router.router']);
+          *
+          * app.config(function ($urlRouterProvider) {
+          *   $urlRouterProvider.when($state.url, function ($match, $stateParams) {
+          *     if ($state.$current.navigable !== state ||
+          *         !equalForKeys($match, $stateParams) {
+          *      $state.transitionTo(state, $match, false);
+          *     }
+          *   });
+          * });
+          * </pre>
+          *
+          * @param {string|object} what The incoming path that you want to redirect.
+          * @param {string|function} handler The path you want to redirect your user to.
+          */
+         this.when = function (what, handler) {
+           var redirect, handlerIsString = isString(handler);
+           if (isString(what)) what = $urlMatcherFactory.compile(what);
+
+           if (!handlerIsString && !isFunction(handler) && !isArray(handler))
+             throw new Error("invalid 'handler' in when()");
+
+           var strategies = {
+             matcher: function (what, handler) {
+               if (handlerIsString) {
+                 redirect = $urlMatcherFactory.compile(handler);
+                 handler = ['$match', function ($match) { return redirect.format($match); }];
+               }
+               return extend(function ($injector, $location) {
+                 return handleIfMatch($injector, handler, what.exec($location.path(), $location.search()));
+               }, {
+                 prefix: isString(what.prefix) ? what.prefix : ''
+               });
+             },
+             regex: function (what, handler) {
+               if (what.global || what.sticky) throw new Error("when() RegExp must not be global or sticky");
+
+               if (handlerIsString) {
+                 redirect = handler;
+                 handler = ['$match', function ($match) { return interpolate(redirect, $match); }];
+               }
+               return extend(function ($injector, $location) {
+                 return handleIfMatch($injector, handler, what.exec($location.path()));
+               }, {
+                 prefix: regExpPrefix(what)
+               });
+             }
+           };
+
+           var check = { matcher: $urlMatcherFactory.isMatcher(what), regex: what instanceof RegExp };
+
+           for (var n in check) {
+             if (check[n]) return this.rule(strategies[n](what, handler));
+           }
+
+           throw new Error("invalid 'what' in when()");
+         };
+
+         /**
+          * @ngdoc function
+          * @name ui.router.router.$urlRouterProvider#deferIntercept
+          * @methodOf ui.router.router.$urlRouterProvider
+          *
+          * @description
+          * Disables (or enables) deferring location change interception.
+          *
+          * If you wish to customize the behavior of syncing the URL (for example, if you wish to
+          * defer a transition but maintain the current URL), call this method at configuration time.
+          * Then, at run time, call `$urlRouter.listen()` after you have configured your own
+          * `$locationChangeSuccess` event handler.
+          *
+          * @example
+          * <pre>
+          * var app = angular.module('app', ['ui.router.router']);
+          *
+          * app.config(function ($urlRouterProvider) {
+          *
+          *   // Prevent $urlRouter from automatically intercepting URL changes;
+          *   // this allows you to configure custom behavior in between
+          *   // location changes and route synchronization:
+          *   $urlRouterProvider.deferIntercept();
+          *
+          * }).run(function ($rootScope, $urlRouter, UserService) {
+          *
+          *   $rootScope.$on('$locationChangeSuccess', function(e) {
+          *     // UserService is an example service for managing user state
+          *     if (UserService.isLoggedIn()) return;
+          *
+          *     // Prevent $urlRouter's default handler from firing
+          *     e.preventDefault();
+          *
+          *     UserService.handleLogin().then(function() {
+          *       // Once the user has logged in, sync the current URL
+          *       // to the router:
+          *       $urlRouter.sync();
+          *     });
+          *   });
+          *
+          *   // Configures $urlRouter's listener *after* your custom listener
+          *   $urlRouter.listen();
+          * });
+          * </pre>
+          *
+          * @param {boolean} defer Indicates whether to defer location change interception. Passing
+                   no parameter is equivalent to `true`.
+          */
+         this.deferIntercept = function (defer) {
+           if (defer === undefined) defer = true;
+           interceptDeferred = defer;
+         };
+
+         /**
+          * @ngdoc object
+          * @name ui.router.router.$urlRouter
+          *
+          * @requires $location
+          * @requires $rootScope
+          * @requires $injector
+          * @requires $browser
+          *
+          * @description
+          *
+          */
+         this.$get = $get;
+         $get.$inject = ['$location', '$rootScope', '$injector', '$browser', '$sniffer'];
+         function $get(   $location,   $rootScope,   $injector,   $browser,   $sniffer) {
+
+           var baseHref = $browser.baseHref(), location = $location.url(), lastPushedUrl;
+
+           function appendBasePath(url, isHtml5, absolute) {
+             if (baseHref === '/') return url;
+             if (isHtml5) return baseHref.slice(0, -1) + url;
+             if (absolute) return baseHref.slice(1) + url;
+             return url;
+           }
+
+           // TODO: Optimize groups of rules with non-empty prefix into some sort of decision tree
+           function update(evt) {
+             if (evt && evt.defaultPrevented) return;
+             var ignoreUpdate = lastPushedUrl && $location.url() === lastPushedUrl;
+             lastPushedUrl = undefined;
+             // TODO: Re-implement this in 1.0 for https://github.com/angular-ui/ui-router/issues/1573
+             //if (ignoreUpdate) return true;
+
+             function check(rule) {
+               var handled = rule($injector, $location);
+
+               if (!handled) return false;
+               if (isString(handled)) $location.replace().url(handled);
+               return true;
+             }
+             var n = rules.length, i;
+
+             for (i = 0; i < n; i++) {
+               if (check(rules[i])) return;
+             }
+             // always check otherwise last to allow dynamic updates to the set of rules
+             if (otherwise) check(otherwise);
+           }
+
+           function listen() {
+             listener = listener || $rootScope.$on('$locationChangeSuccess', update);
+             return listener;
+           }
+
+           if (!interceptDeferred) listen();
+
+           return {
+             /**
+              * @ngdoc function
+              * @name ui.router.router.$urlRouter#sync
+              * @methodOf ui.router.router.$urlRouter
+              *
+              * @description
+              * Triggers an update; the same update that happens when the address bar url changes, aka `$locationChangeSuccess`.
+              * This method is useful when you need to use `preventDefault()` on the `$locationChangeSuccess` event,
+              * perform some custom logic (route protection, auth, config, redirection, etc) and then finally proceed
+              * with the transition by calling `$urlRouter.sync()`.
+              *
+              * @example
+              * <pre>
+              * angular.module('app', ['ui.router'])
+              *   .run(function($rootScope, $urlRouter) {
+              *     $rootScope.$on('$locationChangeSuccess', function(evt) {
+              *       // Halt state change from even starting
+              *       evt.preventDefault();
+              *       // Perform custom logic
+              *       var meetsRequirement = ...
+              *       // Continue with the update and state transition if logic allows
+              *       if (meetsRequirement) $urlRouter.sync();
+              *     });
+              * });
+              * </pre>
+              */
+             sync: function() {
+               update();
+             },
+
+             listen: function() {
+               return listen();
+             },
+
+             update: function(read) {
+               if (read) {
+                 location = $location.url();
+                 return;
+               }
+               if ($location.url() === location) return;
+
+               $location.url(location);
+               $location.replace();
+             },
+
+             push: function(urlMatcher, params, options) {
+                var url = urlMatcher.format(params || {});
+
+               // Handle the special hash param, if needed
+               if (url !== null && params && params['#']) {
+                   url += '#' + params['#'];
+               }
+
+               $location.url(url);
+               lastPushedUrl = options && options.$$avoidResync ? $location.url() : undefined;
+               if (options && options.replace) $location.replace();
+             },
+
+             /**
+              * @ngdoc function
+              * @name ui.router.router.$urlRouter#href
+              * @methodOf ui.router.router.$urlRouter
+              *
+              * @description
+              * A URL generation method that returns the compiled URL for a given
+              * {@link ui.router.util.type:UrlMatcher `UrlMatcher`}, populated with the provided parameters.
+              *
+              * @example
+              * <pre>
+              * $bob = $urlRouter.href(new UrlMatcher("/about/:person"), {
+              *   person: "bob"
+              * });
+              * // $bob == "/about/bob";
+              * </pre>
+              *
+              * @param {UrlMatcher} urlMatcher The `UrlMatcher` object which is used as the template of the URL to generate.
+              * @param {object=} params An object of parameter values to fill the matcher's required parameters.
+              * @param {object=} options Options object. The options are:
+              *
+              * - **`absolute`** - {boolean=false},  If true will generate an absolute url, e.g. "http://www.example.com/fullurl".
+              *
+              * @returns {string} Returns the fully compiled URL, or `null` if `params` fail validation against `urlMatcher`
+              */
+             href: function(urlMatcher, params, options) {
+               if (!urlMatcher.validates(params)) return null;
+
+               var isHtml5 = $locationProvider.html5Mode();
+               if (angular.isObject(isHtml5)) {
+                 isHtml5 = isHtml5.enabled;
+               }
+
+               isHtml5 = isHtml5 && $sniffer.history;
+               
+               var url = urlMatcher.format(params);
+               options = options || {};
+
+               if (!isHtml5 && url !== null) {
+                 url = "#" + $locationProvider.hashPrefix() + url;
+               }
+
+               // Handle special hash param, if needed
+               if (url !== null && params && params['#']) {
+                 url += '#' + params['#'];
+               }
+
+               url = appendBasePath(url, isHtml5, options.absolute);
+
+               if (!options.absolute || !url) {
+                 return url;
+               }
+
+               var slash = (!isHtml5 && url ? '/' : ''), port = $location.port();
+               port = (port === 80 || port === 443 ? '' : ':' + port);
+
+               return [$location.protocol(), '://', $location.host(), port, slash, url].join('');
+             }
+           };
+         }
+       }
+
+       angular.module('ui.router.router').provider('$urlRouter', $UrlRouterProvider);
+
+       /**
+        * @ngdoc object
+        * @name ui.router.state.$stateProvider
+        *
+        * @requires ui.router.router.$urlRouterProvider
+        * @requires ui.router.util.$urlMatcherFactoryProvider
+        *
+        * @description
+        * The new `$stateProvider` works similar to Angular's v1 router, but it focuses purely
+        * on state.
+        *
+        * A state corresponds to a "place" in the application in terms of the overall UI and
+        * navigation. A state describes (via the controller / template / view properties) what
+        * the UI looks like and does at that place.
+        *
+        * States often have things in common, and the primary way of factoring out these
+        * commonalities in this model is via the state hierarchy, i.e. parent/child states aka
+        * nested states.
+        *
+        * The `$stateProvider` provides interfaces to declare these states for your app.
+        */
+       $StateProvider.$inject = ['$urlRouterProvider', '$urlMatcherFactoryProvider'];
+       function $StateProvider(   $urlRouterProvider,   $urlMatcherFactory) {
+
+         var root, states = {}, $state, queue = {}, abstractKey = 'abstract';
+
+         // Builds state properties from definition passed to registerState()
+         var stateBuilder = {
+
+           // Derive parent state from a hierarchical name only if 'parent' is not explicitly defined.
+           // state.children = [];
+           // if (parent) parent.children.push(state);
+           parent: function(state) {
+             if (isDefined(state.parent) && state.parent) return findState(state.parent);
+             // regex matches any valid composite state name
+             // would match "contact.list" but not "contacts"
+             var compositeName = /^(.+)\.[^.]+$/.exec(state.name);
+             return compositeName ? findState(compositeName[1]) : root;
+           },
+
+           // inherit 'data' from parent and override by own values (if any)
+           data: function(state) {
+             if (state.parent && state.parent.data) {
+               state.data = state.self.data = inherit(state.parent.data, state.data);
+             }
+             return state.data;
+           },
+
+           // Build a URLMatcher if necessary, either via a relative or absolute URL
+           url: function(state) {
+             var url = state.url, config = { params: state.params || {} };
+
+             if (isString(url)) {
+               if (url.charAt(0) == '^') return $urlMatcherFactory.compile(url.substring(1), config);
+               return (state.parent.navigable || root).url.concat(url, config);
+             }
+
+             if (!url || $urlMatcherFactory.isMatcher(url)) return url;
+             throw new Error("Invalid url '" + url + "' in state '" + state + "'");
+           },
+
+           // Keep track of the closest ancestor state that has a URL (i.e. is navigable)
+           navigable: function(state) {
+             return state.url ? state : (state.parent ? state.parent.navigable : null);
+           },
+
+           // Own parameters for this state. state.url.params is already built at this point. Create and add non-url params
+           ownParams: function(state) {
+             var params = state.url && state.url.params || new $$UMFP.ParamSet();
+             forEach(state.params || {}, function(config, id) {
+               if (!params[id]) params[id] = new $$UMFP.Param(id, null, config, "config");
+             });
+             return params;
+           },
+
+           // Derive parameters for this state and ensure they're a super-set of parent's parameters
+           params: function(state) {
+             var ownParams = pick(state.ownParams, state.ownParams.$$keys());
+             return state.parent && state.parent.params ? extend(state.parent.params.$$new(), ownParams) : new $$UMFP.ParamSet();
+           },
+
+           // If there is no explicit multi-view configuration, make one up so we don't have
+           // to handle both cases in the view directive later. Note that having an explicit
+           // 'views' property will mean the default unnamed view properties are ignored. This
+           // is also a good time to resolve view names to absolute names, so everything is a
+           // straight lookup at link time.
+           views: function(state) {
+             var views = {};
+
+             forEach(isDefined(state.views) ? state.views : { '': state }, function (view, name) {
+               if (name.indexOf('@') < 0) name += '@' + state.parent.name;
+               views[name] = view;
+             });
+             return views;
+           },
+
+           // Keep a full path from the root down to this state as this is needed for state activation.
+           path: function(state) {
+             return state.parent ? state.parent.path.concat(state) : []; // exclude root from path
+           },
+
+           // Speed up $state.contains() as it's used a lot
+           includes: function(state) {
+             var includes = state.parent ? extend({}, state.parent.includes) : {};
+             includes[state.name] = true;
+             return includes;
+           },
+
+           $delegates: {}
+         };
+
+         function isRelative(stateName) {
+           return stateName.indexOf(".") === 0 || stateName.indexOf("^") === 0;
+         }
+
+         function findState(stateOrName, base) {
+           if (!stateOrName) return undefined;
+
+           var isStr = isString(stateOrName),
+               name  = isStr ? stateOrName : stateOrName.name,
+               path  = isRelative(name);
+
+           if (path) {
+             if (!base) throw new Error("No reference point given for path '"  + name + "'");
+             base = findState(base);
+             
+             var rel = name.split("."), i = 0, pathLength = rel.length, current = base;
+
+             for (; i < pathLength; i++) {
+               if (rel[i] === "" && i === 0) {
+                 current = base;
+                 continue;
+               }
+               if (rel[i] === "^") {
+                 if (!current.parent) throw new Error("Path '" + name + "' not valid for state '" + base.name + "'");
+                 current = current.parent;
+                 continue;
+               }
+               break;
+             }
+             rel = rel.slice(i).join(".");
+             name = current.name + (current.name && rel ? "." : "") + rel;
+           }
+           var state = states[name];
+
+           if (state && (isStr || (!isStr && (state === stateOrName || state.self === stateOrName)))) {
+             return state;
+           }
+           return undefined;
+         }
+
+         function queueState(parentName, state) {
+           if (!queue[parentName]) {
+             queue[parentName] = [];
+           }
+           queue[parentName].push(state);
+         }
+
+         function flushQueuedChildren(parentName) {
+           var queued = queue[parentName] || [];
+           while(queued.length) {
+             registerState(queued.shift());
+           }
+         }
+
+         function registerState(state) {
+           // Wrap a new object around the state so we can store our private details easily.
+           state = inherit(state, {
+             self: state,
+             resolve: state.resolve || {},
+             toString: function() { return this.name; }
+           });
+
+           var name = state.name;
+           if (!isString(name) || name.indexOf('@') >= 0) throw new Error("State must have a valid name");
+           if (states.hasOwnProperty(name)) throw new Error("State '" + name + "' is already defined");
+
+           // Get parent name
+           var parentName = (name.indexOf('.') !== -1) ? name.substring(0, name.lastIndexOf('.'))
+               : (isString(state.parent)) ? state.parent
+               : (isObject(state.parent) && isString(state.parent.name)) ? state.parent.name
+               : '';
+
+           // If parent is not registered yet, add state to queue and register later
+           if (parentName && !states[parentName]) {
+             return queueState(parentName, state.self);
+           }
+
+           for (var key in stateBuilder) {
+             if (isFunction(stateBuilder[key])) state[key] = stateBuilder[key](state, stateBuilder.$delegates[key]);
+           }
+           states[name] = state;
+
+           // Register the state in the global state list and with $urlRouter if necessary.
+           if (!state[abstractKey] && state.url) {
+             $urlRouterProvider.when(state.url, ['$match', '$stateParams', function ($match, $stateParams) {
+               if ($state.$current.navigable != state || !equalForKeys($match, $stateParams)) {
+                 $state.transitionTo(state, $match, { inherit: true, location: false });
+               }
+             }]);
+           }
+
+           // Register any queued children
+           flushQueuedChildren(name);
+
+           return state;
+         }
+
+         // Checks text to see if it looks like a glob.
+         function isGlob (text) {
+           return text.indexOf('*') > -1;
+         }
+
+         // Returns true if glob matches current $state name.
+         function doesStateMatchGlob (glob) {
+           var globSegments = glob.split('.'),
+               segments = $state.$current.name.split('.');
+
+           //match single stars
+           for (var i = 0, l = globSegments.length; i < l; i++) {
+             if (globSegments[i] === '*') {
+               segments[i] = '*';
+             }
+           }
+
+           //match greedy starts
+           if (globSegments[0] === '**') {
+              segments = segments.slice(indexOf(segments, globSegments[1]));
+              segments.unshift('**');
+           }
+           //match greedy ends
+           if (globSegments[globSegments.length - 1] === '**') {
+              segments.splice(indexOf(segments, globSegments[globSegments.length - 2]) + 1, Number.MAX_VALUE);
+              segments.push('**');
+           }
+
+           if (globSegments.length != segments.length) {
+             return false;
+           }
+
+           return segments.join('') === globSegments.join('');
+         }
+
+
+         // Implicit root state that is always active
+         root = registerState({
+           name: '',
+           url: '^',
+           views: null,
+           'abstract': true
+         });
+         root.navigable = null;
+
+
+         /**
+          * @ngdoc function
+          * @name ui.router.state.$stateProvider#decorator
+          * @methodOf ui.router.state.$stateProvider
+          *
+          * @description
+          * Allows you to extend (carefully) or override (at your own peril) the 
+          * `stateBuilder` object used internally by `$stateProvider`. This can be used 
+          * to add custom functionality to ui-router, for example inferring templateUrl 
+          * based on the state name.
+          *
+          * When passing only a name, it returns the current (original or decorated) builder
+          * function that matches `name`.
+          *
+          * The builder functions that can be decorated are listed below. Though not all
+          * necessarily have a good use case for decoration, that is up to you to decide.
+          *
+          * In addition, users can attach custom decorators, which will generate new 
+          * properties within the state's internal definition. There is currently no clear 
+          * use-case for this beyond accessing internal states (i.e. $state.$current), 
+          * however, expect this to become increasingly relevant as we introduce additional 
+          * meta-programming features.
+          *
+          * **Warning**: Decorators should not be interdependent because the order of 
+          * execution of the builder functions in non-deterministic. Builder functions 
+          * should only be dependent on the state definition object and super function.
+          *
+          *
+          * Existing builder functions and current return values:
+          *
+          * - **parent** `{object}` - returns the parent state object.
+          * - **data** `{object}` - returns state data, including any inherited data that is not
+          *   overridden by own values (if any).
+          * - **url** `{object}` - returns a {@link ui.router.util.type:UrlMatcher UrlMatcher}
+          *   or `null`.
+          * - **navigable** `{object}` - returns closest ancestor state that has a URL (aka is 
+          *   navigable).
+          * - **params** `{object}` - returns an array of state params that are ensured to 
+          *   be a super-set of parent's params.
+          * - **views** `{object}` - returns a views object where each key is an absolute view 
+          *   name (i.e. "viewName@stateName") and each value is the config object 
+          *   (template, controller) for the view. Even when you don't use the views object 
+          *   explicitly on a state config, one is still created for you internally.
+          *   So by decorating this builder function you have access to decorating template 
+          *   and controller properties.
+          * - **ownParams** `{object}` - returns an array of params that belong to the state, 
+          *   not including any params defined by ancestor states.
+          * - **path** `{string}` - returns the full path from the root down to this state. 
+          *   Needed for state activation.
+          * - **includes** `{object}` - returns an object that includes every state that 
+          *   would pass a `$state.includes()` test.
+          *
+          * @example
+          * <pre>
+          * // Override the internal 'views' builder with a function that takes the state
+          * // definition, and a reference to the internal function being overridden:
+          * $stateProvider.decorator('views', function (state, parent) {
+          *   var result = {},
+          *       views = parent(state);
+          *
+          *   angular.forEach(views, function (config, name) {
+          *     var autoName = (state.name + '.' + name).replace('.', '/');
+          *     config.templateUrl = config.templateUrl || '/partials/' + autoName + '.html';
+          *     result[name] = config;
+          *   });
+          *   return result;
+          * });
+          *
+          * $stateProvider.state('home', {
+          *   views: {
+          *     'contact.list': { controller: 'ListController' },
+          *     'contact.item': { controller: 'ItemController' }
+          *   }
+          * });
+          *
+          * // ...
+          *
+          * $state.go('home');
+          * // Auto-populates list and item views with /partials/home/contact/list.html,
+          * // and /partials/home/contact/item.html, respectively.
+          * </pre>
+          *
+          * @param {string} name The name of the builder function to decorate. 
+          * @param {object} func A function that is responsible for decorating the original 
+          * builder function. The function receives two parameters:
+          *
+          *   - `{object}` - state - The state config object.
+          *   - `{object}` - super - The original builder function.
+          *
+          * @return {object} $stateProvider - $stateProvider instance
+          */
+         this.decorator = decorator;
+         function decorator(name, func) {
+           /*jshint validthis: true */
+           if (isString(name) && !isDefined(func)) {
+             return stateBuilder[name];
+           }
+           if (!isFunction(func) || !isString(name)) {
+             return this;
+           }
+           if (stateBuilder[name] && !stateBuilder.$delegates[name]) {
+             stateBuilder.$delegates[name] = stateBuilder[name];
+           }
+           stateBuilder[name] = func;
+           return this;
+         }
+
+         /**
+          * @ngdoc function
+          * @name ui.router.state.$stateProvider#state
+          * @methodOf ui.router.state.$stateProvider
+          *
+          * @description
+          * Registers a state configuration under a given state name. The stateConfig object
+          * has the following acceptable properties.
+          *
+          * @param {string} name A unique state name, e.g. "home", "about", "contacts".
+          * To create a parent/child state use a dot, e.g. "about.sales", "home.newest".
+          * @param {object} stateConfig State configuration object.
+          * @param {string|function=} stateConfig.template
+          * <a id='template'></a>
+          *   html template as a string or a function that returns
+          *   an html template as a string which should be used by the uiView directives. This property 
+          *   takes precedence over templateUrl.
+          *   
+          *   If `template` is a function, it will be called with the following parameters:
+          *
+          *   - {array.&lt;object&gt;} - state parameters extracted from the current $location.path() by
+          *     applying the current state
+          *
+          * <pre>template:
+          *   "<h1>inline template definition</h1>" +
+          *   "<div ui-view></div>"</pre>
+          * <pre>template: function(params) {
+          *       return "<h1>generated template</h1>"; }</pre>
+          * </div>
+          *
+          * @param {string|function=} stateConfig.templateUrl
+          * <a id='templateUrl'></a>
+          *
+          *   path or function that returns a path to an html
+          *   template that should be used by uiView.
+          *   
+          *   If `templateUrl` is a function, it will be called with the following parameters:
+          *
+          *   - {array.&lt;object&gt;} - state parameters extracted from the current $location.path() by 
+          *     applying the current state
+          *
+          * <pre>templateUrl: "home.html"</pre>
+          * <pre>templateUrl: function(params) {
+          *     return myTemplates[params.pageId]; }</pre>
+          *
+          * @param {function=} stateConfig.templateProvider
+          * <a id='templateProvider'></a>
+          *    Provider function that returns HTML content string.
+          * <pre> templateProvider:
+          *       function(MyTemplateService, params) {
+          *         return MyTemplateService.getTemplate(params.pageId);
+          *       }</pre>
+          *
+          * @param {string|function=} stateConfig.controller
+          * <a id='controller'></a>
+          *
+          *  Controller fn that should be associated with newly
+          *   related scope or the name of a registered controller if passed as a string.
+          *   Optionally, the ControllerAs may be declared here.
+          * <pre>controller: "MyRegisteredController"</pre>
+          * <pre>controller:
+          *     "MyRegisteredController as fooCtrl"}</pre>
+          * <pre>controller: function($scope, MyService) {
+          *     $scope.data = MyService.getData(); }</pre>
+          *
+          * @param {function=} stateConfig.controllerProvider
+          * <a id='controllerProvider'></a>
+          *
+          * Injectable provider function that returns the actual controller or string.
+          * <pre>controllerProvider:
+          *   function(MyResolveData) {
+          *     if (MyResolveData.foo)
+          *       return "FooCtrl"
+          *     else if (MyResolveData.bar)
+          *       return "BarCtrl";
+          *     else return function($scope) {
+          *       $scope.baz = "Qux";
+          *     }
+          *   }</pre>
+          *
+          * @param {string=} stateConfig.controllerAs
+          * <a id='controllerAs'></a>
+          * 
+          * A controller alias name. If present the controller will be
+          *   published to scope under the controllerAs name.
+          * <pre>controllerAs: "myCtrl"</pre>
+          *
+          * @param {string|object=} stateConfig.parent
+          * <a id='parent'></a>
+          * Optionally specifies the parent state of this state.
+          *
+          * <pre>parent: 'parentState'</pre>
+          * <pre>parent: parentState // JS variable</pre>
+          *
+          * @param {object=} stateConfig.resolve
+          * <a id='resolve'></a>
+          *
+          * An optional map&lt;string, function&gt; of dependencies which
+          *   should be injected into the controller. If any of these dependencies are promises, 
+          *   the router will wait for them all to be resolved before the controller is instantiated.
+          *   If all the promises are resolved successfully, the $stateChangeSuccess event is fired
+          *   and the values of the resolved promises are injected into any controllers that reference them.
+          *   If any  of the promises are rejected the $stateChangeError event is fired.
+          *
+          *   The map object is:
+          *   
+          *   - key - {string}: name of dependency to be injected into controller
+          *   - factory - {string|function}: If string then it is alias for service. Otherwise if function, 
+          *     it is injected and return value it treated as dependency. If result is a promise, it is 
+          *     resolved before its value is injected into controller.
+          *
+          * <pre>resolve: {
+          *     myResolve1:
+          *       function($http, $stateParams) {
+          *         return $http.get("/api/foos/"+stateParams.fooID);
+          *       }
+          *     }</pre>
+          *
+          * @param {string=} stateConfig.url
+          * <a id='url'></a>
+          *
+          *   A url fragment with optional parameters. When a state is navigated or
+          *   transitioned to, the `$stateParams` service will be populated with any 
+          *   parameters that were passed.
+          *
+          *   (See {@link ui.router.util.type:UrlMatcher UrlMatcher} `UrlMatcher`} for
+          *   more details on acceptable patterns )
+          *
+          * examples:
+          * <pre>url: "/home"
+          * url: "/users/:userid"
+          * url: "/books/{bookid:[a-zA-Z_-]}"
+          * url: "/books/{categoryid:int}"
+          * url: "/books/{publishername:string}/{categoryid:int}"
+          * url: "/messages?before&after"
+          * url: "/messages?{before:date}&{after:date}"
+          * url: "/messages/:mailboxid?{before:date}&{after:date}"
+          * </pre>
+          *
+          * @param {object=} stateConfig.views
+          * <a id='views'></a>
+          * an optional map&lt;string, object&gt; which defined multiple views, or targets views
+          * manually/explicitly.
+          *
+          * Examples:
+          *
+          * Targets three named `ui-view`s in the parent state's template
+          * <pre>views: {
+          *     header: {
+          *       controller: "headerCtrl",
+          *       templateUrl: "header.html"
+          *     }, body: {
+          *       controller: "bodyCtrl",
+          *       templateUrl: "body.html"
+          *     }, footer: {
+          *       controller: "footCtrl",
+          *       templateUrl: "footer.html"
+          *     }
+          *   }</pre>
+          *
+          * Targets named `ui-view="header"` from grandparent state 'top''s template, and named `ui-view="body" from parent state's template.
+          * <pre>views: {
+          *     'header@top': {
+          *       controller: "msgHeaderCtrl",
+          *       templateUrl: "msgHeader.html"
+          *     }, 'body': {
+          *       controller: "messagesCtrl",
+          *       templateUrl: "messages.html"
+          *     }
+          *   }</pre>
+          *
+          * @param {boolean=} [stateConfig.abstract=false]
+          * <a id='abstract'></a>
+          * An abstract state will never be directly activated,
+          *   but can provide inherited properties to its common children states.
+          * <pre>abstract: true</pre>
+          *
+          * @param {function=} stateConfig.onEnter
+          * <a id='onEnter'></a>
+          *
+          * Callback function for when a state is entered. Good way
+          *   to trigger an action or dispatch an event, such as opening a dialog.
+          * If minifying your scripts, make sure to explicitly annotate this function,
+          * because it won't be automatically annotated by your build tools.
+          *
+          * <pre>onEnter: function(MyService, $stateParams) {
+          *     MyService.foo($stateParams.myParam);
+          * }</pre>
+          *
+          * @param {function=} stateConfig.onExit
+          * <a id='onExit'></a>
+          *
+          * Callback function for when a state is exited. Good way to
+          *   trigger an action or dispatch an event, such as opening a dialog.
+          * If minifying your scripts, make sure to explicitly annotate this function,
+          * because it won't be automatically annotated by your build tools.
+          *
+          * <pre>onExit: function(MyService, $stateParams) {
+          *     MyService.cleanup($stateParams.myParam);
+          * }</pre>
+          *
+          * @param {boolean=} [stateConfig.reloadOnSearch=true]
+          * <a id='reloadOnSearch'></a>
+          *
+          * If `false`, will not retrigger the same state
+          *   just because a search/query parameter has changed (via $location.search() or $location.hash()). 
+          *   Useful for when you'd like to modify $location.search() without triggering a reload.
+          * <pre>reloadOnSearch: false</pre>
+          *
+          * @param {object=} stateConfig.data
+          * <a id='data'></a>
+          *
+          * Arbitrary data object, useful for custom configuration.  The parent state's `data` is
+          *   prototypally inherited.  In other words, adding a data property to a state adds it to
+          *   the entire subtree via prototypal inheritance.
+          *
+          * <pre>data: {
+          *     requiredRole: 'foo'
+          * } </pre>
+          *
+          * @param {object=} stateConfig.params
+          * <a id='params'></a>
+          *
+          * A map which optionally configures parameters declared in the `url`, or
+          *   defines additional non-url parameters.  For each parameter being
+          *   configured, add a configuration object keyed to the name of the parameter.
+          *
+          *   Each parameter configuration object may contain the following properties:
+          *
+          *   - ** value ** - {object|function=}: specifies the default value for this
+          *     parameter.  This implicitly sets this parameter as optional.
+          *
+          *     When UI-Router routes to a state and no value is
+          *     specified for this parameter in the URL or transition, the
+          *     default value will be used instead.  If `value` is a function,
+          *     it will be injected and invoked, and the return value used.
+          *
+          *     *Note*: `undefined` is treated as "no default value" while `null`
+          *     is treated as "the default value is `null`".
+          *
+          *     *Shorthand*: If you only need to configure the default value of the
+          *     parameter, you may use a shorthand syntax.   In the **`params`**
+          *     map, instead mapping the param name to a full parameter configuration
+          *     object, simply set map it to the default parameter value, e.g.:
+          *
+          * <pre>// define a parameter's default value
+          * params: {
+          *     param1: { value: "defaultValue" }
+          * }
+          * // shorthand default values
+          * params: {
+          *     param1: "defaultValue",
+          *     param2: "param2Default"
+          * }</pre>
+          *
+          *   - ** array ** - {boolean=}: *(default: false)* If true, the param value will be
+          *     treated as an array of values.  If you specified a Type, the value will be
+          *     treated as an array of the specified Type.  Note: query parameter values
+          *     default to a special `"auto"` mode.
+          *
+          *     For query parameters in `"auto"` mode, if multiple  values for a single parameter
+          *     are present in the URL (e.g.: `/foo?bar=1&bar=2&bar=3`) then the values
+          *     are mapped to an array (e.g.: `{ foo: [ '1', '2', '3' ] }`).  However, if
+          *     only one value is present (e.g.: `/foo?bar=1`) then the value is treated as single
+          *     value (e.g.: `{ foo: '1' }`).
+          *
+          * <pre>params: {
+          *     param1: { array: true }
+          * }</pre>
+          *
+          *   - ** squash ** - {bool|string=}: `squash` configures how a default parameter value is represented in the URL when
+          *     the current parameter value is the same as the default value. If `squash` is not set, it uses the
+          *     configured default squash policy.
+          *     (See {@link ui.router.util.$urlMatcherFactory#methods_defaultSquashPolicy `defaultSquashPolicy()`})
+          *
+          *   There are three squash settings:
+          *
+          *     - false: The parameter's default value is not squashed.  It is encoded and included in the URL
+          *     - true: The parameter's default value is omitted from the URL.  If the parameter is preceeded and followed
+          *       by slashes in the state's `url` declaration, then one of those slashes are omitted.
+          *       This can allow for cleaner looking URLs.
+          *     - `"<arbitrary string>"`: The parameter's default value is replaced with an arbitrary placeholder of  your choice.
+          *
+          * <pre>params: {
+          *     param1: {
+          *       value: "defaultId",
+          *       squash: true
+          * } }
+          * // squash "defaultValue" to "~"
+          * params: {
+          *     param1: {
+          *       value: "defaultValue",
+          *       squash: "~"
+          * } }
+          * </pre>
+          *
+          *
+          * @example
+          * <pre>
+          * // Some state name examples
+          *
+          * // stateName can be a single top-level name (must be unique).
+          * $stateProvider.state("home", {});
+          *
+          * // Or it can be a nested state name. This state is a child of the
+          * // above "home" state.
+          * $stateProvider.state("home.newest", {});
+          *
+          * // Nest states as deeply as needed.
+          * $stateProvider.state("home.newest.abc.xyz.inception", {});
+          *
+          * // state() returns $stateProvider, so you can chain state declarations.
+          * $stateProvider
+          *   .state("home", {})
+          *   .state("about", {})
+          *   .state("contacts", {});
+          * </pre>
+          *
+          */
+         this.state = state;
+         function state(name, definition) {
+           /*jshint validthis: true */
+           if (isObject(name)) definition = name;
+           else definition.name = name;
+           registerState(definition);
+           return this;
+         }
+
+         /**
+          * @ngdoc object
+          * @name ui.router.state.$state
+          *
+          * @requires $rootScope
+          * @requires $q
+          * @requires ui.router.state.$view
+          * @requires $injector
+          * @requires ui.router.util.$resolve
+          * @requires ui.router.state.$stateParams
+          * @requires ui.router.router.$urlRouter
+          *
+          * @property {object} params A param object, e.g. {sectionId: section.id)}, that 
+          * you'd like to test against the current active state.
+          * @property {object} current A reference to the state's config object. However 
+          * you passed it in. Useful for accessing custom data.
+          * @property {object} transition Currently pending transition. A promise that'll 
+          * resolve or reject.
+          *
+          * @description
+          * `$state` service is responsible for representing states as well as transitioning
+          * between them. It also provides interfaces to ask for current state or even states
+          * you're coming from.
+          */
+         this.$get = $get;
+         $get.$inject = ['$rootScope', '$q', '$view', '$injector', '$resolve', '$stateParams', '$urlRouter', '$location', '$urlMatcherFactory'];
+         function $get(   $rootScope,   $q,   $view,   $injector,   $resolve,   $stateParams,   $urlRouter,   $location,   $urlMatcherFactory) {
+
+           var TransitionSuperseded = $q.reject(new Error('transition superseded'));
+           var TransitionPrevented = $q.reject(new Error('transition prevented'));
+           var TransitionAborted = $q.reject(new Error('transition aborted'));
+           var TransitionFailed = $q.reject(new Error('transition failed'));
+
+           // Handles the case where a state which is the target of a transition is not found, and the user
+           // can optionally retry or defer the transition
+           function handleRedirect(redirect, state, params, options) {
+             /**
+              * @ngdoc event
+              * @name ui.router.state.$state#$stateNotFound
+              * @eventOf ui.router.state.$state
+              * @eventType broadcast on root scope
+              * @description
+              * Fired when a requested state **cannot be found** using the provided state name during transition.
+              * The event is broadcast allowing any handlers a single chance to deal with the error (usually by
+              * lazy-loading the unfound state). A special `unfoundState` object is passed to the listener handler,
+              * you can see its three properties in the example. You can use `event.preventDefault()` to abort the
+              * transition and the promise returned from `go` will be rejected with a `'transition aborted'` value.
+              *
+              * @param {Object} event Event object.
+              * @param {Object} unfoundState Unfound State information. Contains: `to, toParams, options` properties.
+              * @param {State} fromState Current state object.
+              * @param {Object} fromParams Current state params.
+              *
+              * @example
+              *
+              * <pre>
+              * // somewhere, assume lazy.state has not been defined
+              * $state.go("lazy.state", {a:1, b:2}, {inherit:false});
+              *
+              * // somewhere else
+              * $scope.$on('$stateNotFound',
+              * function(event, unfoundState, fromState, fromParams){
+              *     console.log(unfoundState.to); // "lazy.state"
+              *     console.log(unfoundState.toParams); // {a:1, b:2}
+              *     console.log(unfoundState.options); // {inherit:false} + default options
+              * })
+              * </pre>
+              */
+             var evt = $rootScope.$broadcast('$stateNotFound', redirect, state, params);
+
+             if (evt.defaultPrevented) {
+               $urlRouter.update();
+               return TransitionAborted;
+             }
+
+             if (!evt.retry) {
+               return null;
+             }
+
+             // Allow the handler to return a promise to defer state lookup retry
+             if (options.$retry) {
+               $urlRouter.update();
+               return TransitionFailed;
+             }
+             var retryTransition = $state.transition = $q.when(evt.retry);
+
+             retryTransition.then(function() {
+               if (retryTransition !== $state.transition) return TransitionSuperseded;
+               redirect.options.$retry = true;
+               return $state.transitionTo(redirect.to, redirect.toParams, redirect.options);
+             }, function() {
+               return TransitionAborted;
+             });
+             $urlRouter.update();
+
+             return retryTransition;
+           }
+
+           root.locals = { resolve: null, globals: { $stateParams: {} } };
+
+           $state = {
+             params: {},
+             current: root.self,
+             $current: root,
+             transition: null
+           };
+
+           /**
+            * @ngdoc function
+            * @name ui.router.state.$state#reload
+            * @methodOf ui.router.state.$state
+            *
+            * @description
+            * A method that force reloads the current state. All resolves are re-resolved,
+            * controllers reinstantiated, and events re-fired.
+            *
+            * @example
+            * <pre>
+            * var app angular.module('app', ['ui.router']);
+            *
+            * app.controller('ctrl', function ($scope, $state) {
+            *   $scope.reload = function(){
+            *     $state.reload();
+            *   }
+            * });
+            * </pre>
+            *
+            * `reload()` is just an alias for:
+            * <pre>
+            * $state.transitionTo($state.current, $stateParams, { 
+            *   reload: true, inherit: false, notify: true
+            * });
+            * </pre>
+            *
+            * @param {string=|object=} state - A state name or a state object, which is the root of the resolves to be re-resolved.
+            * @example
+            * <pre>
+            * //assuming app application consists of 3 states: 'contacts', 'contacts.detail', 'contacts.detail.item' 
+            * //and current state is 'contacts.detail.item'
+            * var app angular.module('app', ['ui.router']);
+            *
+            * app.controller('ctrl', function ($scope, $state) {
+            *   $scope.reload = function(){
+            *     //will reload 'contact.detail' and 'contact.detail.item' states
+            *     $state.reload('contact.detail');
+            *   }
+            * });
+            * </pre>
+            *
+            * `reload()` is just an alias for:
+            * <pre>
+            * $state.transitionTo($state.current, $stateParams, { 
+            *   reload: true, inherit: false, notify: true
+            * });
+            * </pre>
+
+            * @returns {promise} A promise representing the state of the new transition. See
+            * {@link ui.router.state.$state#methods_go $state.go}.
+            */
+           $state.reload = function reload(state) {
+             return $state.transitionTo($state.current, $stateParams, { reload: state || true, inherit: false, notify: true});
+           };
+
+           /**
+            * @ngdoc function
+            * @name ui.router.state.$state#go
+            * @methodOf ui.router.state.$state
+            *
+            * @description
+            * Convenience method for transitioning to a new state. `$state.go` calls 
+            * `$state.transitionTo` internally but automatically sets options to 
+            * `{ location: true, inherit: true, relative: $state.$current, notify: true }`. 
+            * This allows you to easily use an absolute or relative to path and specify 
+            * only the parameters you'd like to update (while letting unspecified parameters 
+            * inherit from the currently active ancestor states).
+            *
+            * @example
+            * <pre>
+            * var app = angular.module('app', ['ui.router']);
+            *
+            * app.controller('ctrl', function ($scope, $state) {
+            *   $scope.changeState = function () {
+            *     $state.go('contact.detail');
+            *   };
+            * });
+            * </pre>
+            * <img src='../ngdoc_assets/StateGoExamples.png'/>
+            *
+            * @param {string} to Absolute state name or relative state path. Some examples:
+            *
+            * - `$state.go('contact.detail')` - will go to the `contact.detail` state
+            * - `$state.go('^')` - will go to a parent state
+            * - `$state.go('^.sibling')` - will go to a sibling state
+            * - `$state.go('.child.grandchild')` - will go to grandchild state
+            *
+            * @param {object=} params A map of the parameters that will be sent to the state, 
+            * will populate $stateParams. Any parameters that are not specified will be inherited from currently 
+            * defined parameters. Only parameters specified in the state definition can be overridden, new 
+            * parameters will be ignored. This allows, for example, going to a sibling state that shares parameters
+            * specified in a parent state. Parameter inheritance only works between common ancestor states, I.e.
+            * transitioning to a sibling will get you the parameters for all parents, transitioning to a child
+            * will get you all current parameters, etc.
+            * @param {object=} options Options object. The options are:
+            *
+            * - **`location`** - {boolean=true|string=} - If `true` will update the url in the location bar, if `false`
+            *    will not. If string, must be `"replace"`, which will update url and also replace last history record.
+            * - **`inherit`** - {boolean=true}, If `true` will inherit url parameters from current url.
+            * - **`relative`** - {object=$state.$current}, When transitioning with relative path (e.g '^'), 
+            *    defines which state to be relative from.
+            * - **`notify`** - {boolean=true}, If `true` will broadcast $stateChangeStart and $stateChangeSuccess events.
+            * - **`reload`** (v0.2.5) - {boolean=false|string|object}, If `true` will force transition even if no state or params
+            *    have changed.  It will reload the resolves and views of the current state and parent states.
+            *    If `reload` is a string (or state object), the state object is fetched (by name, or object reference); and \
+            *    the transition reloads the resolves and views for that matched state, and all its children states.
+            *
+            * @returns {promise} A promise representing the state of the new transition.
+            *
+            * Possible success values:
+            *
+            * - $state.current
+            *
+            * <br/>Possible rejection values:
+            *
+            * - 'transition superseded' - when a newer transition has been started after this one
+            * - 'transition prevented' - when `event.preventDefault()` has been called in a `$stateChangeStart` listener
+            * - 'transition aborted' - when `event.preventDefault()` has been called in a `$stateNotFound` listener or
+            *   when a `$stateNotFound` `event.retry` promise errors.
+            * - 'transition failed' - when a state has been unsuccessfully found after 2 tries.
+            * - *resolve error* - when an error has occurred with a `resolve`
+            *
+            */
+           $state.go = function go(to, params, options) {
+             return $state.transitionTo(to, params, extend({ inherit: true, relative: $state.$current }, options));
+           };
+
+           /**
+            * @ngdoc function
+            * @name ui.router.state.$state#transitionTo
+            * @methodOf ui.router.state.$state
+            *
+            * @description
+            * Low-level method for transitioning to a new state. {@link ui.router.state.$state#methods_go $state.go}
+            * uses `transitionTo` internally. `$state.go` is recommended in most situations.
+            *
+            * @example
+            * <pre>
+            * var app = angular.module('app', ['ui.router']);
+            *
+            * app.controller('ctrl', function ($scope, $state) {
+            *   $scope.changeState = function () {
+            *     $state.transitionTo('contact.detail');
+            *   };
+            * });
+            * </pre>
+            *
+            * @param {string} to State name.
+            * @param {object=} toParams A map of the parameters that will be sent to the state,
+            * will populate $stateParams.
+            * @param {object=} options Options object. The options are:
+            *
+            * - **`location`** - {boolean=true|string=} - If `true` will update the url in the location bar, if `false`
+            *    will not. If string, must be `"replace"`, which will update url and also replace last history record.
+            * - **`inherit`** - {boolean=false}, If `true` will inherit url parameters from current url.
+            * - **`relative`** - {object=}, When transitioning with relative path (e.g '^'), 
+            *    defines which state to be relative from.
+            * - **`notify`** - {boolean=true}, If `true` will broadcast $stateChangeStart and $stateChangeSuccess events.
+            * - **`reload`** (v0.2.5) - {boolean=false|string=|object=}, If `true` will force transition even if the state or params 
+            *    have not changed, aka a reload of the same state. It differs from reloadOnSearch because you'd
+            *    use this when you want to force a reload when *everything* is the same, including search params.
+            *    if String, then will reload the state with the name given in reload, and any children.
+            *    if Object, then a stateObj is expected, will reload the state found in stateObj, and any children.
+            *
+            * @returns {promise} A promise representing the state of the new transition. See
+            * {@link ui.router.state.$state#methods_go $state.go}.
+            */
+           $state.transitionTo = function transitionTo(to, toParams, options) {
+             toParams = toParams || {};
+             options = extend({
+               location: true, inherit: false, relative: null, notify: true, reload: false, $retry: false
+             }, options || {});
+
+             var from = $state.$current, fromParams = $state.params, fromPath = from.path;
+             var evt, toState = findState(to, options.relative);
+
+             // Store the hash param for later (since it will be stripped out by various methods)
+             var hash = toParams['#'];
+
+             if (!isDefined(toState)) {
+               var redirect = { to: to, toParams: toParams, options: options };
+               var redirectResult = handleRedirect(redirect, from.self, fromParams, options);
+
+               if (redirectResult) {
+                 return redirectResult;
+               }
+
+               // Always retry once if the $stateNotFound was not prevented
+               // (handles either redirect changed or state lazy-definition)
+               to = redirect.to;
+               toParams = redirect.toParams;
+               options = redirect.options;
+               toState = findState(to, options.relative);
+
+               if (!isDefined(toState)) {
+                 if (!options.relative) throw new Error("No such state '" + to + "'");
+                 throw new Error("Could not resolve '" + to + "' from state '" + options.relative + "'");
+               }
+             }
+             if (toState[abstractKey]) throw new Error("Cannot transition to abstract state '" + to + "'");
+             if (options.inherit) toParams = inheritParams($stateParams, toParams || {}, $state.$current, toState);
+             if (!toState.params.$$validates(toParams)) return TransitionFailed;
+
+             toParams = toState.params.$$values(toParams);
+             to = toState;
+
+             var toPath = to.path;
+
+             // Starting from the root of the path, keep all levels that haven't changed
+             var keep = 0, state = toPath[keep], locals = root.locals, toLocals = [];
+
+             if (!options.reload) {
+               while (state && state === fromPath[keep] && state.ownParams.$$equals(toParams, fromParams)) {
+                 locals = toLocals[keep] = state.locals;
+                 keep++;
+                 state = toPath[keep];
+               }
+             } else if (isString(options.reload) || isObject(options.reload)) {
+               if (isObject(options.reload) && !options.reload.name) {
+                 throw new Error('Invalid reload state object');
+               }
+               
+               var reloadState = options.reload === true ? fromPath[0] : findState(options.reload);
+               if (options.reload && !reloadState) {
+                 throw new Error("No such reload state '" + (isString(options.reload) ? options.reload : options.reload.name) + "'");
+               }
+
+               while (state && state === fromPath[keep] && state !== reloadState) {
+                 locals = toLocals[keep] = state.locals;
+                 keep++;
+                 state = toPath[keep];
+               }
+             }
+
+             // If we're going to the same state and all locals are kept, we've got nothing to do.
+             // But clear 'transition', as we still want to cancel any other pending transitions.
+             // TODO: We may not want to bump 'transition' if we're called from a location change
+             // that we've initiated ourselves, because we might accidentally abort a legitimate
+             // transition initiated from code?
+             if (shouldSkipReload(to, toParams, from, fromParams, locals, options)) {
+               if (hash) toParams['#'] = hash;
+               $state.params = toParams;
+               copy($state.params, $stateParams);
+               copy(filterByKeys(to.params.$$keys(), $stateParams), to.locals.globals.$stateParams);
+               if (options.location && to.navigable && to.navigable.url) {
+                 $urlRouter.push(to.navigable.url, toParams, {
+                   $$avoidResync: true, replace: options.location === 'replace'
+                 });
+                 $urlRouter.update(true);
+               }
+               $state.transition = null;
+               return $q.when($state.current);
+             }
+
+             // Filter parameters before we pass them to event handlers etc.
+             toParams = filterByKeys(to.params.$$keys(), toParams || {});
+             
+             // Re-add the saved hash before we start returning things or broadcasting $stateChangeStart
+             if (hash) toParams['#'] = hash;
+             
+             // Broadcast start event and cancel the transition if requested
+             if (options.notify) {
+               /**
+                * @ngdoc event
+                * @name ui.router.state.$state#$stateChangeStart
+                * @eventOf ui.router.state.$state
+                * @eventType broadcast on root scope
+                * @description
+                * Fired when the state transition **begins**. You can use `event.preventDefault()`
+                * to prevent the transition from happening and then the transition promise will be
+                * rejected with a `'transition prevented'` value.
+                *
+                * @param {Object} event Event object.
+                * @param {State} toState The state being transitioned to.
+                * @param {Object} toParams The params supplied to the `toState`.
+                * @param {State} fromState The current state, pre-transition.
+                * @param {Object} fromParams The params supplied to the `fromState`.
+                *
+                * @example
+                *
+                * <pre>
+                * $rootScope.$on('$stateChangeStart',
+                * function(event, toState, toParams, fromState, fromParams){
+                *     event.preventDefault();
+                *     // transitionTo() promise will be rejected with
+                *     // a 'transition prevented' error
+                * })
+                * </pre>
+                */
+               if ($rootScope.$broadcast('$stateChangeStart', to.self, toParams, from.self, fromParams, options).defaultPrevented) {
+                 $rootScope.$broadcast('$stateChangeCancel', to.self, toParams, from.self, fromParams);
+                 //Don't update and resync url if there's been a new transition started. see issue #2238, #600
+                 if ($state.transition == null) $urlRouter.update();
+                 return TransitionPrevented;
+               }
+             }
+
+             // Resolve locals for the remaining states, but don't update any global state just
+             // yet -- if anything fails to resolve the current state needs to remain untouched.
+             // We also set up an inheritance chain for the locals here. This allows the view directive
+             // to quickly look up the correct definition for each view in the current state. Even
+             // though we create the locals object itself outside resolveState(), it is initially
+             // empty and gets filled asynchronously. We need to keep track of the promise for the
+             // (fully resolved) current locals, and pass this down the chain.
+             var resolved = $q.when(locals);
+
+             for (var l = keep; l < toPath.length; l++, state = toPath[l]) {
+               locals = toLocals[l] = inherit(locals);
+               resolved = resolveState(state, toParams, state === to, resolved, locals, options);
+             }
+
+             // Once everything is resolved, we are ready to perform the actual transition
+             // and return a promise for the new state. We also keep track of what the
+             // current promise is, so that we can detect overlapping transitions and
+             // keep only the outcome of the last transition.
+             var transition = $state.transition = resolved.then(function () {
+               var l, entering, exiting;
+
+               if ($state.transition !== transition) return TransitionSuperseded;
+
+               // Exit 'from' states not kept
+               for (l = fromPath.length - 1; l >= keep; l--) {
+                 exiting = fromPath[l];
+                 if (exiting.self.onExit) {
+                   $injector.invoke(exiting.self.onExit, exiting.self, exiting.locals.globals);
+                 }
+                 exiting.locals = null;
+               }
+
+               // Enter 'to' states not kept
+               for (l = keep; l < toPath.length; l++) {
+                 entering = toPath[l];
+                 entering.locals = toLocals[l];
+                 if (entering.self.onEnter) {
+                   $injector.invoke(entering.self.onEnter, entering.self, entering.locals.globals);
+                 }
+               }
+
+               // Run it again, to catch any transitions in callbacks
+               if ($state.transition !== transition) return TransitionSuperseded;
+
+               // Update globals in $state
+               $state.$current = to;
+               $state.current = to.self;
+               $state.params = toParams;
+               copy($state.params, $stateParams);
+               $state.transition = null;
+
+               if (options.location && to.navigable) {
+                 $urlRouter.push(to.navigable.url, to.navigable.locals.globals.$stateParams, {
+                   $$avoidResync: true, replace: options.location === 'replace'
+                 });
+               }
+
+               if (options.notify) {
+               /**
+                * @ngdoc event
+                * @name ui.router.state.$state#$stateChangeSuccess
+                * @eventOf ui.router.state.$state
+                * @eventType broadcast on root scope
+                * @description
+                * Fired once the state transition is **complete**.
+                *
+                * @param {Object} event Event object.
+                * @param {State} toState The state being transitioned to.
+                * @param {Object} toParams The params supplied to the `toState`.
+                * @param {State} fromState The current state, pre-transition.
+                * @param {Object} fromParams The params supplied to the `fromState`.
+                */
+                 $rootScope.$broadcast('$stateChangeSuccess', to.self, toParams, from.self, fromParams);
+               }
+               $urlRouter.update(true);
+
+               return $state.current;
+             }, function (error) {
+               if ($state.transition !== transition) return TransitionSuperseded;
+
+               $state.transition = null;
+               /**
+                * @ngdoc event
+                * @name ui.router.state.$state#$stateChangeError
+                * @eventOf ui.router.state.$state
+                * @eventType broadcast on root scope
+                * @description
+                * Fired when an **error occurs** during transition. It's important to note that if you
+                * have any errors in your resolve functions (javascript errors, non-existent services, etc)
+                * they will not throw traditionally. You must listen for this $stateChangeError event to
+                * catch **ALL** errors.
+                *
+                * @param {Object} event Event object.
+                * @param {State} toState The state being transitioned to.
+                * @param {Object} toParams The params supplied to the `toState`.
+                * @param {State} fromState The current state, pre-transition.
+                * @param {Object} fromParams The params supplied to the `fromState`.
+                * @param {Error} error The resolve error object.
+                */
+               evt = $rootScope.$broadcast('$stateChangeError', to.self, toParams, from.self, fromParams, error);
+
+               if (!evt.defaultPrevented) {
+                   $urlRouter.update();
+               }
+
+               return $q.reject(error);
+             });
+
+             return transition;
+           };
+
+           /**
+            * @ngdoc function
+            * @name ui.router.state.$state#is
+            * @methodOf ui.router.state.$state
+            *
+            * @description
+            * Similar to {@link ui.router.state.$state#methods_includes $state.includes},
+            * but only checks for the full state name. If params is supplied then it will be
+            * tested for strict equality against the current active params object, so all params
+            * must match with none missing and no extras.
+            *
+            * @example
+            * <pre>
+            * $state.$current.name = 'contacts.details.item';
+            *
+            * // absolute name
+            * $state.is('contact.details.item'); // returns true
+            * $state.is(contactDetailItemStateObject); // returns true
+            *
+            * // relative name (. and ^), typically from a template
+            * // E.g. from the 'contacts.details' template
+            * <div ng-class="{highlighted: $state.is('.item')}">Item</div>
+            * </pre>
+            *
+            * @param {string|object} stateOrName The state name (absolute or relative) or state object you'd like to check.
+            * @param {object=} params A param object, e.g. `{sectionId: section.id}`, that you'd like
+            * to test against the current active state.
+            * @param {object=} options An options object.  The options are:
+            *
+            * - **`relative`** - {string|object} -  If `stateOrName` is a relative state name and `options.relative` is set, .is will
+            * test relative to `options.relative` state (or name).
+            *
+            * @returns {boolean} Returns true if it is the state.
+            */
+           $state.is = function is(stateOrName, params, options) {
+             options = extend({ relative: $state.$current }, options || {});
+             var state = findState(stateOrName, options.relative);
+
+             if (!isDefined(state)) { return undefined; }
+             if ($state.$current !== state) { return false; }
+             return params ? equalForKeys(state.params.$$values(params), $stateParams) : true;
+           };
+
+           /**
+            * @ngdoc function
+            * @name ui.router.state.$state#includes
+            * @methodOf ui.router.state.$state
+            *
+            * @description
+            * A method to determine if the current active state is equal to or is the child of the
+            * state stateName. If any params are passed then they will be tested for a match as well.
+            * Not all the parameters need to be passed, just the ones you'd like to test for equality.
+            *
+            * @example
+            * Partial and relative names
+            * <pre>
+            * $state.$current.name = 'contacts.details.item';
+            *
+            * // Using partial names
+            * $state.includes("contacts"); // returns true
+            * $state.includes("contacts.details"); // returns true
+            * $state.includes("contacts.details.item"); // returns true
+            * $state.includes("contacts.list"); // returns false
+            * $state.includes("about"); // returns false
+            *
+            * // Using relative names (. and ^), typically from a template
+            * // E.g. from the 'contacts.details' template
+            * <div ng-class="{highlighted: $state.includes('.item')}">Item</div>
+            * </pre>
+            *
+            * Basic globbing patterns
+            * <pre>
+            * $state.$current.name = 'contacts.details.item.url';
+            *
+            * $state.includes("*.details.*.*"); // returns true
+            * $state.includes("*.details.**"); // returns true
+            * $state.includes("**.item.**"); // returns true
+            * $state.includes("*.details.item.url"); // returns true
+            * $state.includes("*.details.*.url"); // returns true
+            * $state.includes("*.details.*"); // returns false
+            * $state.includes("item.**"); // returns false
+            * </pre>
+            *
+            * @param {string} stateOrName A partial name, relative name, or glob pattern
+            * to be searched for within the current state name.
+            * @param {object=} params A param object, e.g. `{sectionId: section.id}`,
+            * that you'd like to test against the current active state.
+            * @param {object=} options An options object.  The options are:
+            *
+            * - **`relative`** - {string|object=} -  If `stateOrName` is a relative state reference and `options.relative` is set,
+            * .includes will test relative to `options.relative` state (or name).
+            *
+            * @returns {boolean} Returns true if it does include the state
+            */
+           $state.includes = function includes(stateOrName, params, options) {
+             options = extend({ relative: $state.$current }, options || {});
+             if (isString(stateOrName) && isGlob(stateOrName)) {
+               if (!doesStateMatchGlob(stateOrName)) {
+                 return false;
+               }
+               stateOrName = $state.$current.name;
+             }
+
+             var state = findState(stateOrName, options.relative);
+             if (!isDefined(state)) { return undefined; }
+             if (!isDefined($state.$current.includes[state.name])) { return false; }
+             return params ? equalForKeys(state.params.$$values(params), $stateParams, objectKeys(params)) : true;
+           };
+
+
+           /**
+            * @ngdoc function
+            * @name ui.router.state.$state#href
+            * @methodOf ui.router.state.$state
+            *
+            * @description
+            * A url generation method that returns the compiled url for the given state populated with the given params.
+            *
+            * @example
+            * <pre>
+            * expect($state.href("about.person", { person: "bob" })).toEqual("/about/bob");
+            * </pre>
+            *
+            * @param {string|object} stateOrName The state name or state object you'd like to generate a url from.
+            * @param {object=} params An object of parameter values to fill the state's required parameters.
+            * @param {object=} options Options object. The options are:
+            *
+            * - **`lossy`** - {boolean=true} -  If true, and if there is no url associated with the state provided in the
+            *    first parameter, then the constructed href url will be built from the first navigable ancestor (aka
+            *    ancestor with a valid url).
+            * - **`inherit`** - {boolean=true}, If `true` will inherit url parameters from current url.
+            * - **`relative`** - {object=$state.$current}, When transitioning with relative path (e.g '^'), 
+            *    defines which state to be relative from.
+            * - **`absolute`** - {boolean=false},  If true will generate an absolute url, e.g. "http://www.example.com/fullurl".
+            * 
+            * @returns {string} compiled state url
+            */
+           $state.href = function href(stateOrName, params, options) {
+             options = extend({
+               lossy:    true,
+               inherit:  true,
+               absolute: false,
+               relative: $state.$current
+             }, options || {});
+
+             var state = findState(stateOrName, options.relative);
+
+             if (!isDefined(state)) return null;
+             if (options.inherit) params = inheritParams($stateParams, params || {}, $state.$current, state);
+             
+             var nav = (state && options.lossy) ? state.navigable : state;
+
+             if (!nav || nav.url === undefined || nav.url === null) {
+               return null;
+             }
+             return $urlRouter.href(nav.url, filterByKeys(state.params.$$keys().concat('#'), params || {}), {
+               absolute: options.absolute
+             });
+           };
+
+           /**
+            * @ngdoc function
+            * @name ui.router.state.$state#get
+            * @methodOf ui.router.state.$state
+            *
+            * @description
+            * Returns the state configuration object for any specific state or all states.
+            *
+            * @param {string|object=} stateOrName (absolute or relative) If provided, will only get the config for
+            * the requested state. If not provided, returns an array of ALL state configs.
+            * @param {string|object=} context When stateOrName is a relative state reference, the state will be retrieved relative to context.
+            * @returns {Object|Array} State configuration object or array of all objects.
+            */
+           $state.get = function (stateOrName, context) {
+             if (arguments.length === 0) return map(objectKeys(states), function(name) { return states[name].self; });
+             var state = findState(stateOrName, context || $state.$current);
+             return (state && state.self) ? state.self : null;
+           };
+
+           function resolveState(state, params, paramsAreFiltered, inherited, dst, options) {
+             // Make a restricted $stateParams with only the parameters that apply to this state if
+             // necessary. In addition to being available to the controller and onEnter/onExit callbacks,
+             // we also need $stateParams to be available for any $injector calls we make during the
+             // dependency resolution process.
+             var $stateParams = (paramsAreFiltered) ? params : filterByKeys(state.params.$$keys(), params);
+             var locals = { $stateParams: $stateParams };
+
+             // Resolve 'global' dependencies for the state, i.e. those not specific to a view.
+             // We're also including $stateParams in this; that way the parameters are restricted
+             // to the set that should be visible to the state, and are independent of when we update
+             // the global $state and $stateParams values.
+             dst.resolve = $resolve.resolve(state.resolve, locals, dst.resolve, state);
+             var promises = [dst.resolve.then(function (globals) {
+               dst.globals = globals;
+             })];
+             if (inherited) promises.push(inherited);
+
+             function resolveViews() {
+               var viewsPromises = [];
+
+               // Resolve template and dependencies for all views.
+               forEach(state.views, function (view, name) {
+                 var injectables = (view.resolve && view.resolve !== state.resolve ? view.resolve : {});
+                 injectables.$template = [ function () {
+                   return $view.load(name, { view: view, locals: dst.globals, params: $stateParams, notify: options.notify }) || '';
+                 }];
+
+                 viewsPromises.push($resolve.resolve(injectables, dst.globals, dst.resolve, state).then(function (result) {
+                   // References to the controller (only instantiated at link time)
+                   if (isFunction(view.controllerProvider) || isArray(view.controllerProvider)) {
+                     var injectLocals = angular.extend({}, injectables, dst.globals);
+                     result.$$controller = $injector.invoke(view.controllerProvider, null, injectLocals);
+                   } else {
+                     result.$$controller = view.controller;
+                   }
+                   // Provide access to the state itself for internal use
+                   result.$$state = state;
+                   result.$$controllerAs = view.controllerAs;
+                   dst[name] = result;
+                 }));
+               });
+
+               return $q.all(viewsPromises).then(function(){
+                 return dst.globals;
+               });
+             }
+
+             // Wait for all the promises and then return the activation object
+             return $q.all(promises).then(resolveViews).then(function (values) {
+               return dst;
+             });
+           }
+
+           return $state;
+         }
+
+         function shouldSkipReload(to, toParams, from, fromParams, locals, options) {
+           // Return true if there are no differences in non-search (path/object) params, false if there are differences
+           function nonSearchParamsEqual(fromAndToState, fromParams, toParams) {
+             // Identify whether all the parameters that differ between `fromParams` and `toParams` were search params.
+             function notSearchParam(key) {
+               return fromAndToState.params[key].location != "search";
+             }
+             var nonQueryParamKeys = fromAndToState.params.$$keys().filter(notSearchParam);
+             var nonQueryParams = pick.apply({}, [fromAndToState.params].concat(nonQueryParamKeys));
+             var nonQueryParamSet = new $$UMFP.ParamSet(nonQueryParams);
+             return nonQueryParamSet.$$equals(fromParams, toParams);
+           }
+
+           // If reload was not explicitly requested
+           // and we're transitioning to the same state we're already in
+           // and    the locals didn't change
+           //     or they changed in a way that doesn't merit reloading
+           //        (reloadOnParams:false, or reloadOnSearch.false and only search params changed)
+           // Then return true.
+           if (!options.reload && to === from &&
+             (locals === from.locals || (to.self.reloadOnSearch === false && nonSearchParamsEqual(from, fromParams, toParams)))) {
+             return true;
+           }
+         }
+       }
+
+       angular.module('ui.router.state')
+         .factory('$stateParams', function () { return {}; })
+         .provider('$state', $StateProvider);
+
+
+       $ViewProvider.$inject = [];
+       function $ViewProvider() {
+
+         this.$get = $get;
+         /**
+          * @ngdoc object
+          * @name ui.router.state.$view
+          *
+          * @requires ui.router.util.$templateFactory
+          * @requires $rootScope
+          *
+          * @description
+          *
+          */
+         $get.$inject = ['$rootScope', '$templateFactory'];
+         function $get(   $rootScope,   $templateFactory) {
+           return {
+             // $view.load('full.viewName', { template: ..., controller: ..., resolve: ..., async: false, params: ... })
+             /**
+              * @ngdoc function
+              * @name ui.router.state.$view#load
+              * @methodOf ui.router.state.$view
+              *
+              * @description
+              *
+              * @param {string} name name
+              * @param {object} options option object.
+              */
+             load: function load(name, options) {
+               var result, defaults = {
+                 template: null, controller: null, view: null, locals: null, notify: true, async: true, params: {}
+               };
+               options = extend(defaults, options);
+
+               if (options.view) {
+                 result = $templateFactory.fromConfig(options.view, options.params, options.locals);
+               }
+               return result;
+             }
+           };
+         }
+       }
+
+       angular.module('ui.router.state').provider('$view', $ViewProvider);
+
+       /**
+        * @ngdoc object
+        * @name ui.router.state.$uiViewScrollProvider
+        *
+        * @description
+        * Provider that returns the {@link ui.router.state.$uiViewScroll} service function.
+        */
+       function $ViewScrollProvider() {
+
+         var useAnchorScroll = false;
+
+         /**
+          * @ngdoc function
+          * @name ui.router.state.$uiViewScrollProvider#useAnchorScroll
+          * @methodOf ui.router.state.$uiViewScrollProvider
+          *
+          * @description
+          * Reverts back to using the core [`$anchorScroll`](http://docs.angularjs.org/api/ng.$anchorScroll) service for
+          * scrolling based on the url anchor.
+          */
+         this.useAnchorScroll = function () {
+           useAnchorScroll = true;
+         };
+
+         /**
+          * @ngdoc object
+          * @name ui.router.state.$uiViewScroll
+          *
+          * @requires $anchorScroll
+          * @requires $timeout
+          *
+          * @description
+          * When called with a jqLite element, it scrolls the element into view (after a
+          * `$timeout` so the DOM has time to refresh).
+          *
+          * If you prefer to rely on `$anchorScroll` to scroll the view to the anchor,
+          * this can be enabled by calling {@link ui.router.state.$uiViewScrollProvider#methods_useAnchorScroll `$uiViewScrollProvider.useAnchorScroll()`}.
+          */
+         this.$get = ['$anchorScroll', '$timeout', function ($anchorScroll, $timeout) {
+           if (useAnchorScroll) {
+             return $anchorScroll;
+           }
+
+           return function ($element) {
+             return $timeout(function () {
+               $element[0].scrollIntoView();
+             }, 0, false);
+           };
+         }];
+       }
+
+       angular.module('ui.router.state').provider('$uiViewScroll', $ViewScrollProvider);
+
+       var ngMajorVer = angular.version.major;
+       var ngMinorVer = angular.version.minor;
+       /**
+        * @ngdoc directive
+        * @name ui.router.state.directive:ui-view
+        *
+        * @requires ui.router.state.$state
+        * @requires $compile
+        * @requires $controller
+        * @requires $injector
+        * @requires ui.router.state.$uiViewScroll
+        * @requires $document
+        *
+        * @restrict ECA
+        *
+        * @description
+        * The ui-view directive tells $state where to place your templates.
+        *
+        * @param {string=} name A view name. The name should be unique amongst the other views in the
+        * same state. You can have views of the same name that live in different states.
+        *
+        * @param {string=} autoscroll It allows you to set the scroll behavior of the browser window
+        * when a view is populated. By default, $anchorScroll is overridden by ui-router's custom scroll
+        * service, {@link ui.router.state.$uiViewScroll}. This custom service let's you
+        * scroll ui-view elements into view when they are populated during a state activation.
+        *
+        * @param {string=} noanimation If truthy, the non-animated renderer will be selected (no animations
+        * will be applied to the ui-view)
+        *
+        * *Note: To revert back to old [`$anchorScroll`](http://docs.angularjs.org/api/ng.$anchorScroll)
+        * functionality, call `$uiViewScrollProvider.useAnchorScroll()`.*
+        *
+        * @param {string=} onload Expression to evaluate whenever the view updates.
+        * 
+        * @example
+        * A view can be unnamed or named. 
+        * <pre>
+        * <!-- Unnamed -->
+        * <div ui-view></div> 
+        * 
+        * <!-- Named -->
+        * <div ui-view="viewName"></div>
+        * </pre>
+        *
+        * You can only have one unnamed view within any template (or root html). If you are only using a 
+        * single view and it is unnamed then you can populate it like so:
+        * <pre>
+        * <div ui-view></div> 
+        * $stateProvider.state("home", {
+        *   template: "<h1>HELLO!</h1>"
+        * })
+        * </pre>
+        * 
+        * The above is a convenient shortcut equivalent to specifying your view explicitly with the {@link ui.router.state.$stateProvider#views `views`}
+        * config property, by name, in this case an empty name:
+        * <pre>
+        * $stateProvider.state("home", {
+        *   views: {
+        *     "": {
+        *       template: "<h1>HELLO!</h1>"
+        *     }
+        *   }    
+        * })
+        * </pre>
+        * 
+        * But typically you'll only use the views property if you name your view or have more than one view 
+        * in the same template. There's not really a compelling reason to name a view if its the only one, 
+        * but you could if you wanted, like so:
+        * <pre>
+        * <div ui-view="main"></div>
+        * </pre> 
+        * <pre>
+        * $stateProvider.state("home", {
+        *   views: {
+        *     "main": {
+        *       template: "<h1>HELLO!</h1>"
+        *     }
+        *   }    
+        * })
+        * </pre>
+        * 
+        * Really though, you'll use views to set up multiple views:
+        * <pre>
+        * <div ui-view></div>
+        * <div ui-view="chart"></div> 
+        * <div ui-view="data"></div> 
+        * </pre>
+        * 
+        * <pre>
+        * $stateProvider.state("home", {
+        *   views: {
+        *     "": {
+        *       template: "<h1>HELLO!</h1>"
+        *     },
+        *     "chart": {
+        *       template: "<chart_thing/>"
+        *     },
+        *     "data": {
+        *       template: "<data_thing/>"
+        *     }
+        *   }    
+        * })
+        * </pre>
+        *
+        * Examples for `autoscroll`:
+        *
+        * <pre>
+        * <!-- If autoscroll present with no expression,
+        *      then scroll ui-view into view -->
+        * <ui-view autoscroll/>
+        *
+        * <!-- If autoscroll present with valid expression,
+        *      then scroll ui-view into view if expression evaluates to true -->
+        * <ui-view autoscroll='true'/>
+        * <ui-view autoscroll='false'/>
+        * <ui-view autoscroll='scopeVariable'/>
+        * </pre>
+        */
+       $ViewDirective.$inject = ['$state', '$injector', '$uiViewScroll', '$interpolate'];
+       function $ViewDirective(   $state,   $injector,   $uiViewScroll,   $interpolate) {
+
+         function getService() {
+           return ($injector.has) ? function(service) {
+             return $injector.has(service) ? $injector.get(service) : null;
+           } : function(service) {
+             try {
+               return $injector.get(service);
+             } catch (e) {
+               return null;
+             }
+           };
+         }
+
+         var service = getService(),
+             $animator = service('$animator'),
+             $animate = service('$animate');
+
+         // Returns a set of DOM manipulation functions based on which Angular version
+         // it should use
+         function getRenderer(attrs, scope) {
+           var statics = {
+             enter: function (element, target, cb) { target.after(element); cb(); },
+             leave: function (element, cb) { element.remove(); cb(); }
+           };
+
+           if (!!attrs.noanimation) return statics;
+
+           function animEnabled(element) {
+             if (ngMajorVer === 1 && ngMinorVer >= 4) return !!$animate.enabled(element);
+             if (ngMajorVer === 1 && ngMinorVer >= 2) return !!$animate.enabled();
+             return (!!$animator);
+           }
+
+           // ng 1.2+
+           if ($animate) {
+             return {
+               enter: function(element, target, cb) {
+                 if (!animEnabled(element)) {
+                   statics.enter(element, target, cb);
+                 } else if (angular.version.minor > 2) {
+                   $animate.enter(element, null, target).then(cb);
+                 } else {
+                   $animate.enter(element, null, target, cb);
+                 }
+               },
+               leave: function(element, cb) {
+                 if (!animEnabled(element)) {
+                   statics.leave(element, cb);
+                 } else if (angular.version.minor > 2) {
+                   $animate.leave(element).then(cb);
+                 } else {
+                   $animate.leave(element, cb);
+                 }
+               }
+             };
+           }
+
+           // ng 1.1.5
+           if ($animator) {
+             var animate = $animator && $animator(scope, attrs);
+
+             return {
+               enter: function(element, target, cb) {animate.enter(element, null, target); cb(); },
+               leave: function(element, cb) { animate.leave(element); cb(); }
+             };
+           }
+
+           return statics;
+         }
+
+         var directive = {
+           restrict: 'ECA',
+           terminal: true,
+           priority: 400,
+           transclude: 'element',
+           compile: function (tElement, tAttrs, $transclude) {
+             return function (scope, $element, attrs) {
+               var previousEl, currentEl, currentScope, latestLocals,
+                   onloadExp     = attrs.onload || '',
+                   autoScrollExp = attrs.autoscroll,
+                   renderer      = getRenderer(attrs, scope);
+
+               scope.$on('$stateChangeSuccess', function() {
+                 updateView(false);
+               });
+
+               updateView(true);
+
+               function cleanupLastView() {
+                 var _previousEl = previousEl;
+                 var _currentScope = currentScope;
+
+                 if (_currentScope) {
+                   _currentScope._willBeDestroyed = true;
+                 }
+
+                 function cleanOld() {
+                   if (_previousEl) {
+                     _previousEl.remove();
+                   }
+
+                   if (_currentScope) {
+                     _currentScope.$destroy();
+                   }
+                 }
+
+                 if (currentEl) {
+                   renderer.leave(currentEl, function() {
+                     cleanOld();
+                     previousEl = null;
+                   });
+
+                   previousEl = currentEl;
+                 } else {
+                   cleanOld();
+                   previousEl = null;
+                 }
+
+                 currentEl = null;
+                 currentScope = null;
+               }
+
+               function updateView(firstTime) {
+                 var newScope,
+                     name            = getUiViewName(scope, attrs, $element, $interpolate),
+                     previousLocals  = name && $state.$current && $state.$current.locals[name];
+
+                 if (!firstTime && previousLocals === latestLocals || scope._willBeDestroyed) return; // nothing to do
+                 newScope = scope.$new();
+                 latestLocals = $state.$current.locals[name];
+
+                 /**
+                  * @ngdoc event
+                  * @name ui.router.state.directive:ui-view#$viewContentLoading
+                  * @eventOf ui.router.state.directive:ui-view
+                  * @eventType emits on ui-view directive scope
+                  * @description
+                  *
+                  * Fired once the view **begins loading**, *before* the DOM is rendered.
+                  *
+                  * @param {Object} event Event object.
+                  * @param {string} viewName Name of the view.
+                  */
+                 newScope.$emit('$viewContentLoading', name);
+
+                 var clone = $transclude(newScope, function(clone) {
+                   renderer.enter(clone, $element, function onUiViewEnter() {
+                     if(currentScope) {
+                       currentScope.$emit('$viewContentAnimationEnded');
+                     }
+
+                     if (angular.isDefined(autoScrollExp) && !autoScrollExp || scope.$eval(autoScrollExp)) {
+                       $uiViewScroll(clone);
+                     }
+                   });
+                   cleanupLastView();
+                 });
+
+                 currentEl = clone;
+                 currentScope = newScope;
+                 /**
+                  * @ngdoc event
+                  * @name ui.router.state.directive:ui-view#$viewContentLoaded
+                  * @eventOf ui.router.state.directive:ui-view
+                  * @eventType emits on ui-view directive scope
+                  * @description
+                  * Fired once the view is **loaded**, *after* the DOM is rendered.
+                  *
+                  * @param {Object} event Event object.
+                  * @param {string} viewName Name of the view.
+                  */
+                 currentScope.$emit('$viewContentLoaded', name);
+                 currentScope.$eval(onloadExp);
+               }
+             };
+           }
+         };
+
+         return directive;
+       }
+
+       $ViewDirectiveFill.$inject = ['$compile', '$controller', '$state', '$interpolate'];
+       function $ViewDirectiveFill (  $compile,   $controller,   $state,   $interpolate) {
+         return {
+           restrict: 'ECA',
+           priority: -400,
+           compile: function (tElement) {
+             var initial = tElement.html();
+             return function (scope, $element, attrs) {
+               var current = $state.$current,
+                   name = getUiViewName(scope, attrs, $element, $interpolate),
+                   locals  = current && current.locals[name];
+
+               if (! locals) {
+                 return;
+               }
+
+               $element.data('$uiView', { name: name, state: locals.$$state });
+               $element.html(locals.$template ? locals.$template : initial);
+
+               var link = $compile($element.contents());
+
+               if (locals.$$controller) {
+                 locals.$scope = scope;
+                 locals.$element = $element;
+                 var controller = $controller(locals.$$controller, locals);
+                 if (locals.$$controllerAs) {
+                   scope[locals.$$controllerAs] = controller;
+                 }
+                 $element.data('$ngControllerController', controller);
+                 $element.children().data('$ngControllerController', controller);
+               }
+
+               link(scope);
+             };
+           }
+         };
+       }
+
+       /**
+        * Shared ui-view code for both directives:
+        * Given scope, element, and its attributes, return the view's name
+        */
+       function getUiViewName(scope, attrs, element, $interpolate) {
+         var name = $interpolate(attrs.uiView || attrs.name || '')(scope);
+         var inherited = element.inheritedData('$uiView');
+         return name.indexOf('@') >= 0 ?  name :  (name + '@' + (inherited ? inherited.state.name : ''));
+       }
+
+       angular.module('ui.router.state').directive('uiView', $ViewDirective);
+       angular.module('ui.router.state').directive('uiView', $ViewDirectiveFill);
+
+       function parseStateRef(ref, current) {
+         var preparsed = ref.match(/^\s*({[^}]*})\s*$/), parsed;
+         if (preparsed) ref = current + '(' + preparsed[1] + ')';
+         parsed = ref.replace(/\n/g, " ").match(/^([^(]+?)\s*(\((.*)\))?$/);
+         if (!parsed || parsed.length !== 4) throw new Error("Invalid state ref '" + ref + "'");
+         return { state: parsed[1], paramExpr: parsed[3] || null };
+       }
+
+       function stateContext(el) {
+         var stateData = el.parent().inheritedData('$uiView');
+
+         if (stateData && stateData.state && stateData.state.name) {
+           return stateData.state;
+         }
+       }
+
+       function getTypeInfo(el) {
+         // SVGAElement does not use the href attribute, but rather the 'xlinkHref' attribute.
+         var isSvg = Object.prototype.toString.call(el.prop('href')) === '[object SVGAnimatedString]';
+         var isForm = el[0].nodeName === "FORM";
+
+         return {
+           attr: isForm ? "action" : (isSvg ? 'xlink:href' : 'href'),
+           isAnchor: el.prop("tagName").toUpperCase() === "A",
+           clickable: !isForm
+         };
+       }
+
+       function clickHook(el, $state, $timeout, type, current) {
+         return function(e) {
+           var button = e.which || e.button, target = current();
+
+           if (!(button > 1 || e.ctrlKey || e.metaKey || e.shiftKey || el.attr('target'))) {
+             // HACK: This is to allow ng-clicks to be processed before the transition is initiated:
+             var transition = $timeout(function() {
+               $state.go(target.state, target.params, target.options);
+             });
+             e.preventDefault();
+
+             // if the state has no URL, ignore one preventDefault from the <a> directive.
+             var ignorePreventDefaultCount = type.isAnchor && !target.href ? 1: 0;
+
+             e.preventDefault = function() {
+               if (ignorePreventDefaultCount-- <= 0) $timeout.cancel(transition);
+             };
+           }
+         };
+       }
+
+       function defaultOpts(el, $state) {
+         return { relative: stateContext(el) || $state.$current, inherit: true };
+       }
+
+       /**
+        * @ngdoc directive
+        * @name ui.router.state.directive:ui-sref
+        *
+        * @requires ui.router.state.$state
+        * @requires $timeout
+        *
+        * @restrict A
+        *
+        * @description
+        * A directive that binds a link (`<a>` tag) to a state. If the state has an associated
+        * URL, the directive will automatically generate & update the `href` attribute via
+        * the {@link ui.router.state.$state#methods_href $state.href()} method. Clicking
+        * the link will trigger a state transition with optional parameters.
+        *
+        * Also middle-clicking, right-clicking, and ctrl-clicking on the link will be
+        * handled natively by the browser.
+        *
+        * You can also use relative state paths within ui-sref, just like the relative
+        * paths passed to `$state.go()`. You just need to be aware that the path is relative
+        * to the state that the link lives in, in other words the state that loaded the
+        * template containing the link.
+        *
+        * You can specify options to pass to {@link ui.router.state.$state#go $state.go()}
+        * using the `ui-sref-opts` attribute. Options are restricted to `location`, `inherit`,
+        * and `reload`.
+        *
+        * @example
+        * Here's an example of how you'd use ui-sref and how it would compile. If you have the
+        * following template:
+        * <pre>
+        * <a ui-sref="home">Home</a> | <a ui-sref="about">About</a> | <a ui-sref="{page: 2}">Next page</a>
+        *
+        * <ul>
+        *     <li ng-repeat="contact in contacts">
+        *         <a ui-sref="contacts.detail({ id: contact.id })">{{ contact.name }}</a>
+        *     </li>
+        * </ul>
+        * </pre>
+        *
+        * Then the compiled html would be (assuming Html5Mode is off and current state is contacts):
+        * <pre>
+        * <a href="#/home" ui-sref="home">Home</a> | <a href="#/about" ui-sref="about">About</a> | <a href="#/contacts?page=2" ui-sref="{page: 2}">Next page</a>
+        *
+        * <ul>
+        *     <li ng-repeat="contact in contacts">
+        *         <a href="#/contacts/1" ui-sref="contacts.detail({ id: contact.id })">Joe</a>
+        *     </li>
+        *     <li ng-repeat="contact in contacts">
+        *         <a href="#/contacts/2" ui-sref="contacts.detail({ id: contact.id })">Alice</a>
+        *     </li>
+        *     <li ng-repeat="contact in contacts">
+        *         <a href="#/contacts/3" ui-sref="contacts.detail({ id: contact.id })">Bob</a>
+        *     </li>
+        * </ul>
+        *
+        * <a ui-sref="home" ui-sref-opts="{reload: true}">Home</a>
+        * </pre>
+        *
+        * @param {string} ui-sref 'stateName' can be any valid absolute or relative state
+        * @param {Object} ui-sref-opts options to pass to {@link ui.router.state.$state#go $state.go()}
+        */
+       $StateRefDirective.$inject = ['$state', '$timeout'];
+       function $StateRefDirective($state, $timeout) {
+         return {
+           restrict: 'A',
+           require: ['?^uiSrefActive', '?^uiSrefActiveEq'],
+           link: function(scope, element, attrs, uiSrefActive) {
+             var ref    = parseStateRef(attrs.uiSref, $state.current.name);
+             var def    = { state: ref.state, href: null, params: null };
+             var type   = getTypeInfo(element);
+             var active = uiSrefActive[1] || uiSrefActive[0];
+
+             def.options = extend(defaultOpts(element, $state), attrs.uiSrefOpts ? scope.$eval(attrs.uiSrefOpts) : {});
+
+             var update = function(val) {
+               if (val) def.params = angular.copy(val);
+               def.href = $state.href(ref.state, def.params, def.options);
+
+               if (active) active.$$addStateInfo(ref.state, def.params);
+               if (def.href !== null) attrs.$set(type.attr, def.href);
+             };
+
+             if (ref.paramExpr) {
+               scope.$watch(ref.paramExpr, function(val) { if (val !== def.params) update(val); }, true);
+               def.params = angular.copy(scope.$eval(ref.paramExpr));
+             }
+             update();
+
+             if (!type.clickable) return;
+             element.bind("click", clickHook(element, $state, $timeout, type, function() { return def; }));
+           }
+         };
+       }
+
+       /**
+        * @ngdoc directive
+        * @name ui.router.state.directive:ui-state
+        *
+        * @requires ui.router.state.uiSref
+        *
+        * @restrict A
+        *
+        * @description
+        * Much like ui-sref, but will accept named $scope properties to evaluate for a state definition,
+        * params and override options.
+        *
+        * @param {string} ui-state 'stateName' can be any valid absolute or relative state
+        * @param {Object} ui-state-params params to pass to {@link ui.router.state.$state#href $state.href()}
+        * @param {Object} ui-state-opts options to pass to {@link ui.router.state.$state#go $state.go()}
+        */
+       $StateRefDynamicDirective.$inject = ['$state', '$timeout'];
+       function $StateRefDynamicDirective($state, $timeout) {
+         return {
+           restrict: 'A',
+           require: ['?^uiSrefActive', '?^uiSrefActiveEq'],
+           link: function(scope, element, attrs, uiSrefActive) {
+             var type   = getTypeInfo(element);
+             var active = uiSrefActive[1] || uiSrefActive[0];
+             var group  = [attrs.uiState, attrs.uiStateParams || null, attrs.uiStateOpts || null];
+             var watch  = '[' + group.map(function(val) { return val || 'null'; }).join(', ') + ']';
+             var def    = { state: null, params: null, options: null, href: null };
+
+             function runStateRefLink (group) {
+               def.state = group[0]; def.params = group[1]; def.options = group[2];
+               def.href = $state.href(def.state, def.params, def.options);
+
+               if (active) active.$$addStateInfo(def.state, def.params);
+               if (def.href) attrs.$set(type.attr, def.href);
+             }
+
+             scope.$watch(watch, runStateRefLink, true);
+             runStateRefLink(scope.$eval(watch));
+
+             if (!type.clickable) return;
+             element.bind("click", clickHook(element, $state, $timeout, type, function() { return def; }));
+           }
+         };
+       }
+
+
+       /**
+        * @ngdoc directive
+        * @name ui.router.state.directive:ui-sref-active
+        *
+        * @requires ui.router.state.$state
+        * @requires ui.router.state.$stateParams
+        * @requires $interpolate
+        *
+        * @restrict A
+        *
+        * @description
+        * A directive working alongside ui-sref to add classes to an element when the
+        * related ui-sref directive's state is active, and removing them when it is inactive.
+        * The primary use-case is to simplify the special appearance of navigation menus
+        * relying on `ui-sref`, by having the "active" state's menu button appear different,
+        * distinguishing it from the inactive menu items.
+        *
+        * ui-sref-active can live on the same element as ui-sref or on a parent element. The first
+        * ui-sref-active found at the same level or above the ui-sref will be used.
+        *
+        * Will activate when the ui-sref's target state or any child state is active. If you
+        * need to activate only when the ui-sref target state is active and *not* any of
+        * it's children, then you will use
+        * {@link ui.router.state.directive:ui-sref-active-eq ui-sref-active-eq}
+        *
+        * @example
+        * Given the following template:
+        * <pre>
+        * <ul>
+        *   <li ui-sref-active="active" class="item">
+        *     <a href ui-sref="app.user({user: 'bilbobaggins'})">@bilbobaggins</a>
+        *   </li>
+        * </ul>
+        * </pre>
+        *
+        *
+        * When the app state is "app.user" (or any children states), and contains the state parameter "user" with value "bilbobaggins",
+        * the resulting HTML will appear as (note the 'active' class):
+        * <pre>
+        * <ul>
+        *   <li ui-sref-active="active" class="item active">
+        *     <a ui-sref="app.user({user: 'bilbobaggins'})" href="/users/bilbobaggins">@bilbobaggins</a>
+        *   </li>
+        * </ul>
+        * </pre>
+        *
+        * The class name is interpolated **once** during the directives link time (any further changes to the
+        * interpolated value are ignored).
+        *
+        * Multiple classes may be specified in a space-separated format:
+        * <pre>
+        * <ul>
+        *   <li ui-sref-active='class1 class2 class3'>
+        *     <a ui-sref="app.user">link</a>
+        *   </li>
+        * </ul>
+        * </pre>
+        *
+        * It is also possible to pass ui-sref-active an expression that evaluates
+        * to an object hash, whose keys represent active class names and whose
+        * values represent the respective state names/globs.
+        * ui-sref-active will match if the current active state **includes** any of
+        * the specified state names/globs, even the abstract ones.
+        *
+        * @Example
+        * Given the following template, with "admin" being an abstract state:
+        * <pre>
+        * <div ui-sref-active="{'active': 'admin.*'}">
+        *   <a ui-sref-active="active" ui-sref="admin.roles">Roles</a>
+        * </div>
+        * </pre>
+        *
+        * When the current state is "admin.roles" the "active" class will be applied
+        * to both the <div> and <a> elements. It is important to note that the state
+        * names/globs passed to ui-sref-active shadow the state provided by ui-sref.
+        */
+
+       /**
+        * @ngdoc directive
+        * @name ui.router.state.directive:ui-sref-active-eq
+        *
+        * @requires ui.router.state.$state
+        * @requires ui.router.state.$stateParams
+        * @requires $interpolate
+        *
+        * @restrict A
+        *
+        * @description
+        * The same as {@link ui.router.state.directive:ui-sref-active ui-sref-active} but will only activate
+        * when the exact target state used in the `ui-sref` is active; no child states.
+        *
+        */
+       $StateRefActiveDirective.$inject = ['$state', '$stateParams', '$interpolate'];
+       function $StateRefActiveDirective($state, $stateParams, $interpolate) {
+         return  {
+           restrict: "A",
+           controller: ['$scope', '$element', '$attrs', '$timeout', function ($scope, $element, $attrs, $timeout) {
+             var states = [], activeClasses = {}, activeEqClass, uiSrefActive;
+
+             // There probably isn't much point in $observing this
+             // uiSrefActive and uiSrefActiveEq share the same directive object with some
+             // slight difference in logic routing
+             activeEqClass = $interpolate($attrs.uiSrefActiveEq || '', false)($scope);
+
+             try {
+               uiSrefActive = $scope.$eval($attrs.uiSrefActive);
+             } catch (e) {
+               // Do nothing. uiSrefActive is not a valid expression.
+               // Fall back to using $interpolate below
+             }
+             uiSrefActive = uiSrefActive || $interpolate($attrs.uiSrefActive || '', false)($scope);
+             if (isObject(uiSrefActive)) {
+               forEach(uiSrefActive, function(stateOrName, activeClass) {
+                 if (isString(stateOrName)) {
+                   var ref = parseStateRef(stateOrName, $state.current.name);
+                   addState(ref.state, $scope.$eval(ref.paramExpr), activeClass);
+                 }
+               });
+             }
+
+             // Allow uiSref to communicate with uiSrefActive[Equals]
+             this.$$addStateInfo = function (newState, newParams) {
+               // we already got an explicit state provided by ui-sref-active, so we
+               // shadow the one that comes from ui-sref
+               if (isObject(uiSrefActive) && states.length > 0) {
+                 return;
+               }
+               addState(newState, newParams, uiSrefActive);
+               update();
+             };
+
+             $scope.$on('$stateChangeSuccess', update);
+
+             function addState(stateName, stateParams, activeClass) {
+               var state = $state.get(stateName, stateContext($element));
+               var stateHash = createStateHash(stateName, stateParams);
+
+               states.push({
+                 state: state || { name: stateName },
+                 params: stateParams,
+                 hash: stateHash
+               });
+
+               activeClasses[stateHash] = activeClass;
+             }
+
+             /**
+              * @param {string} state
+              * @param {Object|string} [params]
+              * @return {string}
+              */
+             function createStateHash(state, params) {
+               if (!isString(state)) {
+                 throw new Error('state should be a string');
+               }
+               if (isObject(params)) {
+                 return state + toJson(params);
+               }
+               params = $scope.$eval(params);
+               if (isObject(params)) {
+                 return state + toJson(params);
+               }
+               return state;
+             }
+
+             // Update route state
+             function update() {
+               for (var i = 0; i < states.length; i++) {
+                 if (anyMatch(states[i].state, states[i].params)) {
+                   addClass($element, activeClasses[states[i].hash]);
+                 } else {
+                   removeClass($element, activeClasses[states[i].hash]);
+                 }
+
+                 if (exactMatch(states[i].state, states[i].params)) {
+                   addClass($element, activeEqClass);
+                 } else {
+                   removeClass($element, activeEqClass);
+                 }
+               }
+             }
+
+             function addClass(el, className) { $timeout(function () { el.addClass(className); }); }
+             function removeClass(el, className) { el.removeClass(className); }
+             function anyMatch(state, params) { return $state.includes(state.name, params); }
+             function exactMatch(state, params) { return $state.is(state.name, params); }
+
+             update();
+           }]
+         };
+       }
+
+       angular.module('ui.router.state')
+         .directive('uiSref', $StateRefDirective)
+         .directive('uiSrefActive', $StateRefActiveDirective)
+         .directive('uiSrefActiveEq', $StateRefActiveDirective)
+         .directive('uiState', $StateRefDynamicDirective);
+
+       /**
+        * @ngdoc filter
+        * @name ui.router.state.filter:isState
+        *
+        * @requires ui.router.state.$state
+        *
+        * @description
+        * Translates to {@link ui.router.state.$state#methods_is $state.is("stateName")}.
+        */
+       $IsStateFilter.$inject = ['$state'];
+       function $IsStateFilter($state) {
+         var isFilter = function (state, params) {
+           return $state.is(state, params);
+         };
+         isFilter.$stateful = true;
+         return isFilter;
+       }
+
+       /**
+        * @ngdoc filter
+        * @name ui.router.state.filter:includedByState
+        *
+        * @requires ui.router.state.$state
+        *
+        * @description
+        * Translates to {@link ui.router.state.$state#methods_includes $state.includes('fullOrPartialStateName')}.
+        */
+       $IncludedByStateFilter.$inject = ['$state'];
+       function $IncludedByStateFilter($state) {
+         var includesFilter = function (state, params, options) {
+           return $state.includes(state, params, options);
+         };
+         includesFilter.$stateful = true;
+         return  includesFilter;
+       }
+
+       angular.module('ui.router.state')
+         .filter('isState', $IsStateFilter)
+         .filter('includedByState', $IncludedByStateFilter);
+       })(window, window.angular);
+
+/***/ },
+/* 4 */
+/***/ function(module, exports, __webpack_require__) {
+
+       __webpack_require__(5);
+       module.exports = 'ngResource';
+
+
+/***/ },
+/* 5 */
+/***/ function(module, exports) {
+
+       /**
+        * @license AngularJS v1.6.2
+        * (c) 2010-2017 Google, Inc. http://angularjs.org
+        * License: MIT
+        */
+       (function(window, angular) {'use strict';
+
+       var $resourceMinErr = angular.$$minErr('$resource');
+
+       // Helper functions and regex to lookup a dotted path on an object
+       // stopping at undefined/null.  The path must be composed of ASCII
+       // identifiers (just like $parse)
+       var MEMBER_NAME_REGEX = /^(\.[a-zA-Z_$@][0-9a-zA-Z_$@]*)+$/;
+
+       function isValidDottedPath(path) {
+         return (path != null && path !== '' && path !== 'hasOwnProperty' &&
+             MEMBER_NAME_REGEX.test('.' + path));
+       }
+
+       function lookupDottedPath(obj, path) {
+         if (!isValidDottedPath(path)) {
+           throw $resourceMinErr('badmember', 'Dotted member path "@{0}" is invalid.', path);
+         }
+         var keys = path.split('.');
+         for (var i = 0, ii = keys.length; i < ii && angular.isDefined(obj); i++) {
+           var key = keys[i];
+           obj = (obj !== null) ? obj[key] : undefined;
+         }
+         return obj;
+       }
+
+       /**
+        * Create a shallow copy of an object and clear other fields from the destination
+        */
+       function shallowClearAndCopy(src, dst) {
+         dst = dst || {};
+
+         angular.forEach(dst, function(value, key) {
+           delete dst[key];
+         });
+
+         for (var key in src) {
+           if (src.hasOwnProperty(key) && !(key.charAt(0) === '$' && key.charAt(1) === '$')) {
+             dst[key] = src[key];
+           }
+         }
+
+         return dst;
+       }
+
+       /**
+        * @ngdoc module
+        * @name ngResource
+        * @description
+        *
+        * # ngResource
+        *
+        * The `ngResource` module provides interaction support with RESTful services
+        * via the $resource service.
+        *
+        *
+        * <div doc-module-components="ngResource"></div>
+        *
+        * See {@link ngResource.$resourceProvider} and {@link ngResource.$resource} for usage.
+        */
+
+       /**
+        * @ngdoc provider
+        * @name $resourceProvider
+        *
+        * @description
+        *
+        * Use `$resourceProvider` to change the default behavior of the {@link ngResource.$resource}
+        * service.
+        *
+        * ## Dependencies
+        * Requires the {@link ngResource } module to be installed.
+        *
+        */
+
+       /**
+        * @ngdoc service
+        * @name $resource
+        * @requires $http
+        * @requires ng.$log
+        * @requires $q
+        * @requires ng.$timeout
+        *
+        * @description
+        * A factory which creates a resource object that lets you interact with
+        * [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) server-side data sources.
+        *
+        * The returned resource object has action methods which provide high-level behaviors without
+        * the need to interact with the low level {@link ng.$http $http} service.
+        *
+        * Requires the {@link ngResource `ngResource`} module to be installed.
+        *
+        * By default, trailing slashes will be stripped from the calculated URLs,
+        * which can pose problems with server backends that do not expect that
+        * behavior.  This can be disabled by configuring the `$resourceProvider` like
+        * this:
+        *
+        * ```js
+            app.config(['$resourceProvider', function($resourceProvider) {
+              // Don't strip trailing slashes from calculated URLs
+              $resourceProvider.defaults.stripTrailingSlashes = false;
+            }]);
+        * ```
+        *
+        * @param {string} url A parameterized URL template with parameters prefixed by `:` as in
+        *   `/user/:username`. If you are using a URL with a port number (e.g.
+        *   `http://example.com:8080/api`), it will be respected.
+        *
+        *   If you are using a url with a suffix, just add the suffix, like this:
+        *   `$resource('http://example.com/resource.json')` or `$resource('http://example.com/:id.json')`
+        *   or even `$resource('http://example.com/resource/:resource_id.:format')`
+        *   If the parameter before the suffix is empty, :resource_id in this case, then the `/.` will be
+        *   collapsed down to a single `.`.  If you need this sequence to appear and not collapse then you
+        *   can escape it with `/\.`.
+        *
+        * @param {Object=} paramDefaults Default values for `url` parameters. These can be overridden in
+        *   `actions` methods. If a parameter value is a function, it will be called every time
+        *   a param value needs to be obtained for a request (unless the param was overridden). The function
+        *   will be passed the current data value as an argument.
+        *
+        *   Each key value in the parameter object is first bound to url template if present and then any
+        *   excess keys are appended to the url search query after the `?`.
+        *
+        *   Given a template `/path/:verb` and parameter `{verb:'greet', salutation:'Hello'}` results in
+        *   URL `/path/greet?salutation=Hello`.
+        *
+        *   If the parameter value is prefixed with `@`, then the value for that parameter will be
+        *   extracted from the corresponding property on the `data` object (provided when calling a
+        *   "non-GET" action method).
+        *   For example, if the `defaultParam` object is `{someParam: '@someProp'}` then the value of
+        *   `someParam` will be `data.someProp`.
+        *   Note that the parameter will be ignored, when calling a "GET" action method (i.e. an action
+        *   method that does not accept a request body)
+        *
+        * @param {Object.<Object>=} actions Hash with declaration of custom actions that will be available
+        *   in addition to the default set of resource actions (see below). If a custom action has the same
+        *   key as a default action (e.g. `save`), then the default action will be *overwritten*, and not
+        *   extended.
+        *
+        *   The declaration should be created in the format of {@link ng.$http#usage $http.config}:
+        *
+        *       {action1: {method:?, params:?, isArray:?, headers:?, ...},
+        *        action2: {method:?, params:?, isArray:?, headers:?, ...},
+        *        ...}
+        *
+        *   Where:
+        *
+        *   - **`action`** – {string} – The name of action. This name becomes the name of the method on
+        *     your resource object.
+        *   - **`method`** – {string} – Case insensitive HTTP method (e.g. `GET`, `POST`, `PUT`,
+        *     `DELETE`, `JSONP`, etc).
+        *   - **`params`** – {Object=} – Optional set of pre-bound parameters for this action. If any of
+        *     the parameter value is a function, it will be called every time when a param value needs to
+        *     be obtained for a request (unless the param was overridden). The function will be passed the
+        *     current data value as an argument.
+        *   - **`url`** – {string} – action specific `url` override. The url templating is supported just
+        *     like for the resource-level urls.
+        *   - **`isArray`** – {boolean=} – If true then the returned object for this action is an array,
+        *     see `returns` section.
+        *   - **`transformRequest`** –
+        *     `{function(data, headersGetter)|Array.<function(data, headersGetter)>}` –
+        *     transform function or an array of such functions. The transform function takes the http
+        *     request body and headers and returns its transformed (typically serialized) version.
+        *     By default, transformRequest will contain one function that checks if the request data is
+        *     an object and serializes it using `angular.toJson`. To prevent this behavior, set
+        *     `transformRequest` to an empty array: `transformRequest: []`
+        *   - **`transformResponse`** –
+        *     `{function(data, headersGetter, status)|Array.<function(data, headersGetter, status)>}` –
+        *     transform function or an array of such functions. The transform function takes the http
+        *     response body, headers and status and returns its transformed (typically deserialized)
+        *     version.
+        *     By default, transformResponse will contain one function that checks if the response looks
+        *     like a JSON string and deserializes it using `angular.fromJson`. To prevent this behavior,
+        *     set `transformResponse` to an empty array: `transformResponse: []`
+        *   - **`cache`** – `{boolean|Cache}` – If true, a default $http cache will be used to cache the
+        *     GET request, otherwise if a cache instance built with
+        *     {@link ng.$cacheFactory $cacheFactory}, this cache will be used for
+        *     caching.
+        *   - **`timeout`** – `{number}` – timeout in milliseconds.<br />
+        *     **Note:** In contrast to {@link ng.$http#usage $http.config}, {@link ng.$q promises} are
+        *     **not** supported in $resource, because the same value would be used for multiple requests.
+        *     If you are looking for a way to cancel requests, you should use the `cancellable` option.
+        *   - **`cancellable`** – `{boolean}` – if set to true, the request made by a "non-instance" call
+        *     will be cancelled (if not already completed) by calling `$cancelRequest()` on the call's
+        *     return value. Calling `$cancelRequest()` for a non-cancellable or an already
+        *     completed/cancelled request will have no effect.<br />
+        *   - **`withCredentials`** - `{boolean}` - whether to set the `withCredentials` flag on the
+        *     XHR object. See
+        *     [requests with credentials](https://developer.mozilla.org/en/http_access_control#section_5)
+        *     for more information.
+        *   - **`responseType`** - `{string}` - see
+        *     [requestType](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#responseType).
+        *   - **`interceptor`** - `{Object=}` - The interceptor object has two optional methods -
+        *     `response` and `responseError`. Both `response` and `responseError` interceptors get called
+        *     with `http response` object. See {@link ng.$http $http interceptors}.
+        *
+        * @param {Object} options Hash with custom settings that should extend the
+        *   default `$resourceProvider` behavior.  The supported options are:
+        *
+        *   - **`stripTrailingSlashes`** – {boolean} – If true then the trailing
+        *   slashes from any calculated URL will be stripped. (Defaults to true.)
+        *   - **`cancellable`** – {boolean} – If true, the request made by a "non-instance" call will be
+        *   cancelled (if not already completed) by calling `$cancelRequest()` on the call's return value.
+        *   This can be overwritten per action. (Defaults to false.)
+        *
+        * @returns {Object} A resource "class" object with methods for the default set of resource actions
+        *   optionally extended with custom `actions`. The default set contains these actions:
+        *   ```js
+        *   { 'get':    {method:'GET'},
+        *     'save':   {method:'POST'},
+        *     'query':  {method:'GET', isArray:true},
+        *     'remove': {method:'DELETE'},
+        *     'delete': {method:'DELETE'} };
+        *   ```
+        *
+        *   Calling these methods invoke an {@link ng.$http} with the specified http method,
+        *   destination and parameters. When the data is returned from the server then the object is an
+        *   instance of the resource class. The actions `save`, `remove` and `delete` are available on it
+        *   as  methods with the `$` prefix. This allows you to easily perform CRUD operations (create,
+        *   read, update, delete) on server-side data like this:
+        *   ```js
+        *   var User = $resource('/user/:userId', {userId:'@id'});
+        *   var user = User.get({userId:123}, function() {
+        *     user.abc = true;
+        *     user.$save();
+        *   });
+        *   ```
+        *
+        *   It is important to realize that invoking a $resource object method immediately returns an
+        *   empty reference (object or array depending on `isArray`). Once the data is returned from the
+        *   server the existing reference is populated with the actual data. This is a useful trick since
+        *   usually the resource is assigned to a model which is then rendered by the view. Having an empty
+        *   object results in no rendering, once the data arrives from the server then the object is
+        *   populated with the data and the view automatically re-renders itself showing the new data. This
+        *   means that in most cases one never has to write a callback function for the action methods.
+        *
+        *   The action methods on the class object or instance object can be invoked with the following
+        *   parameters:
+        *
+        *   - HTTP GET "class" actions: `Resource.action([parameters], [success], [error])`
+        *   - non-GET "class" actions: `Resource.action([parameters], postData, [success], [error])`
+        *   - non-GET instance actions:  `instance.$action([parameters], [success], [error])`
+        *
+        *
+        *   Success callback is called with (value (Object|Array), responseHeaders (Function),
+        *   status (number), statusText (string)) arguments, where the value is the populated resource
+        *   instance or collection object. The error callback is called with (httpResponse) argument.
+        *
+        *   Class actions return empty instance (with additional properties below).
+        *   Instance actions return promise of the action.
+        *
+        *   The Resource instances and collections have these additional properties:
+        *
+        *   - `$promise`: the {@link ng.$q promise} of the original server interaction that created this
+        *     instance or collection.
+        *
+        *     On success, the promise is resolved with the same resource instance or collection object,
+        *     updated with data from server. This makes it easy to use in
+        *     {@link ngRoute.$routeProvider resolve section of $routeProvider.when()} to defer view
+        *     rendering until the resource(s) are loaded.
+        *
+        *     On failure, the promise is rejected with the {@link ng.$http http response} object, without
+        *     the `resource` property.
+        *
+        *     If an interceptor object was provided, the promise will instead be resolved with the value
+        *     returned by the interceptor.
+        *
+        *   - `$resolved`: `true` after first server interaction is completed (either with success or
+        *      rejection), `false` before that. Knowing if the Resource has been resolved is useful in
+        *      data-binding.
+        *
+        *   The Resource instances and collections have these additional methods:
+        *
+        *   - `$cancelRequest`: If there is a cancellable, pending request related to the instance or
+        *      collection, calling this method will abort the request.
+        *
+        *   The Resource instances have these additional methods:
+        *
+        *   - `toJSON`: It returns a simple object without any of the extra properties added as part of
+        *     the Resource API. This object can be serialized through {@link angular.toJson} safely
+        *     without attaching Angular-specific fields. Notice that `JSON.stringify` (and
+        *     `angular.toJson`) automatically use this method when serializing a Resource instance
+        *     (see [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON()_behavior)).
+        *
+        * @example
+        *
+        * # Credit card resource
+        *
+        * ```js
+            // Define CreditCard class
+            var CreditCard = $resource('/user/:userId/card/:cardId',
+             {userId:123, cardId:'@id'}, {
+              charge: {method:'POST', params:{charge:true}}
+             });
+
+            // We can retrieve a collection from the server
+            var cards = CreditCard.query(function() {
+              // GET: /user/123/card
+              // server returns: [ {id:456, number:'1234', name:'Smith'} ];
+
+              var card = cards[0];
+              // each item is an instance of CreditCard
+              expect(card instanceof CreditCard).toEqual(true);
+              card.name = "J. Smith";
+              // non GET methods are mapped onto the instances
+              card.$save();
+              // POST: /user/123/card/456 {id:456, number:'1234', name:'J. Smith'}
+              // server returns: {id:456, number:'1234', name: 'J. Smith'};
+
+              // our custom method is mapped as well.
+              card.$charge({amount:9.99});
+              // POST: /user/123/card/456?amount=9.99&charge=true {id:456, number:'1234', name:'J. Smith'}
+            });
+
+            // we can create an instance as well
+            var newCard = new CreditCard({number:'0123'});
+            newCard.name = "Mike Smith";
+            newCard.$save();
+            // POST: /user/123/card {number:'0123', name:'Mike Smith'}
+            // server returns: {id:789, number:'0123', name: 'Mike Smith'};
+            expect(newCard.id).toEqual(789);
+        * ```
+        *
+        * The object returned from this function execution is a resource "class" which has "static" method
+        * for each action in the definition.
+        *
+        * Calling these methods invoke `$http` on the `url` template with the given `method`, `params` and
+        * `headers`.
+        *
+        * @example
+        *
+        * # User resource
+        *
+        * When the data is returned from the server then the object is an instance of the resource type and
+        * all of the non-GET methods are available with `$` prefix. This allows you to easily support CRUD
+        * operations (create, read, update, delete) on server-side data.
+
+          ```js
+            var User = $resource('/user/:userId', {userId:'@id'});
+            User.get({userId:123}, function(user) {
+              user.abc = true;
+              user.$save();
+            });
+          ```
+        *
+        * It's worth noting that the success callback for `get`, `query` and other methods gets passed
+        * in the response that came from the server as well as $http header getter function, so one
+        * could rewrite the above example and get access to http headers as:
+        *
+          ```js
+            var User = $resource('/user/:userId', {userId:'@id'});
+            User.get({userId:123}, function(user, getResponseHeaders){
+              user.abc = true;
+              user.$save(function(user, putResponseHeaders) {
+                //user => saved user object
+                //putResponseHeaders => $http header getter
+              });
+            });
+          ```
+        *
+        * You can also access the raw `$http` promise via the `$promise` property on the object returned
+        *
+          ```
+            var User = $resource('/user/:userId', {userId:'@id'});
+            User.get({userId:123})
+                .$promise.then(function(user) {
+                  $scope.user = user;
+                });
+          ```
+        *
+        * @example
+        *
+        * # Creating a custom 'PUT' request
+        *
+        * In this example we create a custom method on our resource to make a PUT request
+        * ```js
+        *    var app = angular.module('app', ['ngResource', 'ngRoute']);
+        *
+        *    // Some APIs expect a PUT request in the format URL/object/ID
+        *    // Here we are creating an 'update' method
+        *    app.factory('Notes', ['$resource', function($resource) {
+        *    return $resource('/notes/:id', null,
+        *        {
+        *            'update': { method:'PUT' }
+        *        });
+        *    }]);
+        *
+        *    // In our controller we get the ID from the URL using ngRoute and $routeParams
+        *    // We pass in $routeParams and our Notes factory along with $scope
+        *    app.controller('NotesCtrl', ['$scope', '$routeParams', 'Notes',
+                                             function($scope, $routeParams, Notes) {
+        *    // First get a note object from the factory
+        *    var note = Notes.get({ id:$routeParams.id });
+        *    $id = note.id;
+        *
+        *    // Now call update passing in the ID first then the object you are updating
+        *    Notes.update({ id:$id }, note);
+        *
+        *    // This will PUT /notes/ID with the note object in the request payload
+        *    }]);
+        * ```
+        *
+        * @example
+        *
+        * # Cancelling requests
+        *
+        * If an action's configuration specifies that it is cancellable, you can cancel the request related
+        * to an instance or collection (as long as it is a result of a "non-instance" call):
+        *
+          ```js
+            // ...defining the `Hotel` resource...
+            var Hotel = $resource('/api/hotel/:id', {id: '@id'}, {
+              // Let's make the `query()` method cancellable
+              query: {method: 'get', isArray: true, cancellable: true}
+            });
+
+            // ...somewhere in the PlanVacationController...
+            ...
+            this.onDestinationChanged = function onDestinationChanged(destination) {
+              // We don't care about any pending request for hotels
+              // in a different destination any more
+              this.availableHotels.$cancelRequest();
+
+              // Let's query for hotels in '<destination>'
+              // (calls: /api/hotel?location=<destination>)
+              this.availableHotels = Hotel.query({location: destination});
+            };
+          ```
+        *
+        */
+       angular.module('ngResource', ['ng']).
+         provider('$resource', function ResourceProvider() {
+           var PROTOCOL_AND_IPV6_REGEX = /^https?:\/\/\[[^\]]*][^/]*/;
+
+           var provider = this;
+
+           /**
+            * @ngdoc property
+            * @name $resourceProvider#defaults
+            * @description
+            * Object containing default options used when creating `$resource` instances.
+            *
+            * The default values satisfy a wide range of usecases, but you may choose to overwrite any of
+            * them to further customize your instances. The available properties are:
+            *
+            * - **stripTrailingSlashes** – `{boolean}` – If true, then the trailing slashes from any
+            *   calculated URL will be stripped.<br />
+            *   (Defaults to true.)
+            * - **cancellable** – `{boolean}` – If true, the request made by a "non-instance" call will be
+            *   cancelled (if not already completed) by calling `$cancelRequest()` on the call's return
+            *   value. For more details, see {@link ngResource.$resource}. This can be overwritten per
+            *   resource class or action.<br />
+            *   (Defaults to false.)
+            * - **actions** - `{Object.<Object>}` - A hash with default actions declarations. Actions are
+            *   high-level methods corresponding to RESTful actions/methods on resources. An action may
+            *   specify what HTTP method to use, what URL to hit, if the return value will be a single
+            *   object or a collection (array) of objects etc. For more details, see
+            *   {@link ngResource.$resource}. The actions can also be enhanced or overwritten per resource
+            *   class.<br />
+            *   The default actions are:
+            *   ```js
+            *   {
+            *     get: {method: 'GET'},
+            *     save: {method: 'POST'},
+            *     query: {method: 'GET', isArray: true},
+            *     remove: {method: 'DELETE'},
+            *     delete: {method: 'DELETE'}
+            *   }
+            *   ```
+            *
+            * #### Example
+            *
+            * For example, you can specify a new `update` action that uses the `PUT` HTTP verb:
+            *
+            * ```js
+            *   angular.
+            *     module('myApp').
+            *     config(['$resourceProvider', function ($resourceProvider) {
+            *       $resourceProvider.defaults.actions.update = {
+            *         method: 'PUT'
+            *       };
+            *     });
+            * ```
+            *
+            * Or you can even overwrite the whole `actions` list and specify your own:
+            *
+            * ```js
+            *   angular.
+            *     module('myApp').
+            *     config(['$resourceProvider', function ($resourceProvider) {
+            *       $resourceProvider.defaults.actions = {
+            *         create: {method: 'POST'},
+            *         get:    {method: 'GET'},
+            *         getAll: {method: 'GET', isArray:true},
+            *         update: {method: 'PUT'},
+            *         delete: {method: 'DELETE'}
+            *       };
+            *     });
+            * ```
+            *
+            */
+           this.defaults = {
+             // Strip slashes by default
+             stripTrailingSlashes: true,
+
+             // Make non-instance requests cancellable (via `$cancelRequest()`)
+             cancellable: false,
+
+             // Default actions configuration
+             actions: {
+               'get': {method: 'GET'},
+               'save': {method: 'POST'},
+               'query': {method: 'GET', isArray: true},
+               'remove': {method: 'DELETE'},
+               'delete': {method: 'DELETE'}
+             }
+           };
+
+           this.$get = ['$http', '$log', '$q', '$timeout', function($http, $log, $q, $timeout) {
+
+             var noop = angular.noop,
+                 forEach = angular.forEach,
+                 extend = angular.extend,
+                 copy = angular.copy,
+                 isArray = angular.isArray,
+                 isDefined = angular.isDefined,
+                 isFunction = angular.isFunction,
+                 isNumber = angular.isNumber,
+                 encodeUriQuery = angular.$$encodeUriQuery,
+                 encodeUriSegment = angular.$$encodeUriSegment;
+
+             function Route(template, defaults) {
+               this.template = template;
+               this.defaults = extend({}, provider.defaults, defaults);
+               this.urlParams = {};
+             }
+
+             Route.prototype = {
+               setUrlParams: function(config, params, actionUrl) {
+                 var self = this,
+                   url = actionUrl || self.template,
+                   val,
+                   encodedVal,
+                   protocolAndIpv6 = '';
+
+                 var urlParams = self.urlParams = Object.create(null);
+                 forEach(url.split(/\W/), function(param) {
+                   if (param === 'hasOwnProperty') {
+                     throw $resourceMinErr('badname', 'hasOwnProperty is not a valid parameter name.');
+                   }
+                   if (!(new RegExp('^\\d+$').test(param)) && param &&
+                     (new RegExp('(^|[^\\\\]):' + param + '(\\W|$)').test(url))) {
+                     urlParams[param] = {
+                       isQueryParamValue: (new RegExp('\\?.*=:' + param + '(?:\\W|$)')).test(url)
+                     };
+                   }
+                 });
+                 url = url.replace(/\\:/g, ':');
+                 url = url.replace(PROTOCOL_AND_IPV6_REGEX, function(match) {
+                   protocolAndIpv6 = match;
+                   return '';
+                 });
+
+                 params = params || {};
+                 forEach(self.urlParams, function(paramInfo, urlParam) {
+                   val = params.hasOwnProperty(urlParam) ? params[urlParam] : self.defaults[urlParam];
+                   if (isDefined(val) && val !== null) {
+                     if (paramInfo.isQueryParamValue) {
+                       encodedVal = encodeUriQuery(val, true);
+                     } else {
+                       encodedVal = encodeUriSegment(val);
+                     }
+                     url = url.replace(new RegExp(':' + urlParam + '(\\W|$)', 'g'), function(match, p1) {
+                       return encodedVal + p1;
+                     });
+                   } else {
+                     url = url.replace(new RegExp('(/?):' + urlParam + '(\\W|$)', 'g'), function(match,
+                         leadingSlashes, tail) {
+                       if (tail.charAt(0) === '/') {
+                         return tail;
+                       } else {
+                         return leadingSlashes + tail;
+                       }
+                     });
+                   }
+                 });
+
+                 // strip trailing slashes and set the url (unless this behavior is specifically disabled)
+                 if (self.defaults.stripTrailingSlashes) {
+                   url = url.replace(/\/+$/, '') || '/';
+                 }
+
+                 // Collapse `/.` if found in the last URL path segment before the query.
+                 // E.g. `http://url.com/id/.format?q=x` becomes `http://url.com/id.format?q=x`.
+                 url = url.replace(/\/\.(?=\w+($|\?))/, '.');
+                 // Replace escaped `/\.` with `/.`.
+                 // (If `\.` comes from a param value, it will be encoded as `%5C.`.)
+                 config.url = protocolAndIpv6 + url.replace(/\/(\\|%5C)\./, '/.');
+
+
+                 // set params - delegate param encoding to $http
+                 forEach(params, function(value, key) {
+                   if (!self.urlParams[key]) {
+                     config.params = config.params || {};
+                     config.params[key] = value;
+                   }
+                 });
+               }
+             };
+
+
+             function resourceFactory(url, paramDefaults, actions, options) {
+               var route = new Route(url, options);
+
+               actions = extend({}, provider.defaults.actions, actions);
+
+               function extractParams(data, actionParams) {
+                 var ids = {};
+                 actionParams = extend({}, paramDefaults, actionParams);
+                 forEach(actionParams, function(value, key) {
+                   if (isFunction(value)) { value = value(data); }
+                   ids[key] = value && value.charAt && value.charAt(0) === '@' ?
+                     lookupDottedPath(data, value.substr(1)) : value;
+                 });
+                 return ids;
+               }
+
+               function defaultResponseInterceptor(response) {
+                 return response.resource;
+               }
+
+               function Resource(value) {
+                 shallowClearAndCopy(value || {}, this);
+               }
+
+               Resource.prototype.toJSON = function() {
+                 var data = extend({}, this);
+                 delete data.$promise;
+                 delete data.$resolved;
+                 delete data.$cancelRequest;
+                 return data;
+               };
+
+               forEach(actions, function(action, name) {
+                 var hasBody = /^(POST|PUT|PATCH)$/i.test(action.method);
+                 var numericTimeout = action.timeout;
+                 var cancellable = isDefined(action.cancellable) ?
+                     action.cancellable : route.defaults.cancellable;
+
+                 if (numericTimeout && !isNumber(numericTimeout)) {
+                   $log.debug('ngResource:\n' +
+                              '  Only numeric values are allowed as `timeout`.\n' +
+                              '  Promises are not supported in $resource, because the same value would ' +
+                              'be used for multiple requests. If you are looking for a way to cancel ' +
+                              'requests, you should use the `cancellable` option.');
+                   delete action.timeout;
+                   numericTimeout = null;
+                 }
+
+                 Resource[name] = function(a1, a2, a3, a4) {
+                   var params = {}, data, success, error;
+
+                   switch (arguments.length) {
+                     case 4:
+                       error = a4;
+                       success = a3;
+                       // falls through
+                     case 3:
+                     case 2:
+                       if (isFunction(a2)) {
+                         if (isFunction(a1)) {
+                           success = a1;
+                           error = a2;
+                           break;
+                         }
+
+                         success = a2;
+                         error = a3;
+                         // falls through
+                       } else {
+                         params = a1;
+                         data = a2;
+                         success = a3;
+                         break;
+                       }
+                       // falls through
+                     case 1:
+                       if (isFunction(a1)) success = a1;
+                       else if (hasBody) data = a1;
+                       else params = a1;
+                       break;
+                     case 0: break;
+                     default:
+                       throw $resourceMinErr('badargs',
+                         'Expected up to 4 arguments [params, data, success, error], got {0} arguments',
+                         arguments.length);
+                   }
+
+                   var isInstanceCall = this instanceof Resource;
+                   var value = isInstanceCall ? data : (action.isArray ? [] : new Resource(data));
+                   var httpConfig = {};
+                   var responseInterceptor = action.interceptor && action.interceptor.response ||
+                     defaultResponseInterceptor;
+                   var responseErrorInterceptor = action.interceptor && action.interceptor.responseError ||
+                     undefined;
+                   var hasError = !!error;
+                   var hasResponseErrorInterceptor = !!responseErrorInterceptor;
+                   var timeoutDeferred;
+                   var numericTimeoutPromise;
+
+                   forEach(action, function(value, key) {
+                     switch (key) {
+                       default:
+                         httpConfig[key] = copy(value);
+                         break;
+                       case 'params':
+                       case 'isArray':
+                       case 'interceptor':
+                       case 'cancellable':
+                         break;
+                     }
+                   });
+
+                   if (!isInstanceCall && cancellable) {
+                     timeoutDeferred = $q.defer();
+                     httpConfig.timeout = timeoutDeferred.promise;
+
+                     if (numericTimeout) {
+                       numericTimeoutPromise = $timeout(timeoutDeferred.resolve, numericTimeout);
+                     }
+                   }
+
+                   if (hasBody) httpConfig.data = data;
+                   route.setUrlParams(httpConfig,
+                     extend({}, extractParams(data, action.params || {}), params),
+                     action.url);
+
+                   var promise = $http(httpConfig).then(function(response) {
+                     var data = response.data;
+
+                     if (data) {
+                       // Need to convert action.isArray to boolean in case it is undefined
+                       if (isArray(data) !== (!!action.isArray)) {
+                         throw $resourceMinErr('badcfg',
+                             'Error in resource configuration for action `{0}`. Expected response to ' +
+                             'contain an {1} but got an {2} (Request: {3} {4})', name, action.isArray ? 'array' : 'object',
+                           isArray(data) ? 'array' : 'object', httpConfig.method, httpConfig.url);
+                       }
+                       if (action.isArray) {
+                         value.length = 0;
+                         forEach(data, function(item) {
+                           if (typeof item === 'object') {
+                             value.push(new Resource(item));
+                           } else {
+                             // Valid JSON values may be string literals, and these should not be converted
+                             // into objects. These items will not have access to the Resource prototype
+                             // methods, but unfortunately there
+                             value.push(item);
+                           }
+                         });
+                       } else {
+                         var promise = value.$promise;     // Save the promise
+                         shallowClearAndCopy(data, value);
+                         value.$promise = promise;         // Restore the promise
+                       }
+                     }
+                     response.resource = value;
+
+                     return response;
+                   });
+
+                   promise = promise['finally'](function() {
+                     value.$resolved = true;
+                     if (!isInstanceCall && cancellable) {
+                       value.$cancelRequest = noop;
+                       $timeout.cancel(numericTimeoutPromise);
+                       timeoutDeferred = numericTimeoutPromise = httpConfig.timeout = null;
+                     }
+                   });
+
+                   promise = promise.then(
+                     function(response) {
+                       var value = responseInterceptor(response);
+                       (success || noop)(value, response.headers, response.status, response.statusText);
+                       return value;
+                     },
+                     (hasError || hasResponseErrorInterceptor) ?
+                       function(response) {
+                         if (hasError && !hasResponseErrorInterceptor) {
+                           // Avoid `Possibly Unhandled Rejection` error,
+                           // but still fulfill the returned promise with a rejection
+                           promise.catch(noop);
+                         }
+                         if (hasError) error(response);
+                         return hasResponseErrorInterceptor ?
+                           responseErrorInterceptor(response) :
+                           $q.reject(response);
+                       } :
+                       undefined);
+
+                   if (!isInstanceCall) {
+                     // we are creating instance / collection
+                     // - set the initial promise
+                     // - return the instance / collection
+                     value.$promise = promise;
+                     value.$resolved = false;
+                     if (cancellable) value.$cancelRequest = cancelRequest;
+
+                     return value;
+                   }
+
+                   // instance call
+                   return promise;
+
+                   function cancelRequest(value) {
+                     promise.catch(noop);
+                     timeoutDeferred.resolve(value);
+                   }
+                 };
+
+
+                 Resource.prototype['$' + name] = function(params, success, error) {
+                   if (isFunction(params)) {
+                     error = success; success = params; params = {};
+                   }
+                   var result = Resource[name].call(this, params, this, success, error);
+                   return result.$promise || result;
+                 };
+               });
+
+               Resource.bind = function(additionalParamDefaults) {
+                 var extendedParamDefaults = extend({}, paramDefaults, additionalParamDefaults);
+                 return resourceFactory(url, extendedParamDefaults, actions, options);
+               };
+
+               return Resource;
+             }
+
+             return resourceFactory;
+           }];
+         });
+
+
+       })(window, window.angular);
+
+
+/***/ },
+/* 6 */
+/***/ function(module, exports, __webpack_require__) {
+
+       __webpack_require__(7);
+
+       module.exports = 'ui.bootstrap';
+
+
+/***/ },
+/* 7 */
+/***/ function(module, exports) {
+
+       /*
+        * angular-ui-bootstrap
+        * http://angular-ui.github.io/bootstrap/
+
+        * Version: 1.3.3 - 2016-05-22
+        * License: MIT
+        */angular.module("ui.bootstrap", ["ui.bootstrap.tpls", "ui.bootstrap.collapse","ui.bootstrap.accordion","ui.bootstrap.alert","ui.bootstrap.buttons","ui.bootstrap.carousel","ui.bootstrap.dateparser","ui.bootstrap.isClass","ui.bootstrap.datepicker","ui.bootstrap.position","ui.bootstrap.datepickerPopup","ui.bootstrap.debounce","ui.bootstrap.dropdown","ui.bootstrap.stackedMap","ui.bootstrap.modal","ui.bootstrap.paging","ui.bootstrap.pager","ui.bootstrap.pagination","ui.bootstrap.tooltip","ui.bootstrap.popover","ui.bootstrap.progressbar","ui.bootstrap.rating","ui.bootstrap.tabs","ui.bootstrap.timepicker","ui.bootstrap.typeahead"]);
+       angular.module("ui.bootstrap.tpls", ["uib/template/accordion/accordion-group.html","uib/template/accordion/accordion.html","uib/template/alert/alert.html","uib/template/carousel/carousel.html","uib/template/carousel/slide.html","uib/template/datepicker/datepicker.html","uib/template/datepicker/day.html","uib/template/datepicker/month.html","uib/template/datepicker/year.html","uib/template/datepickerPopup/popup.html","uib/template/modal/backdrop.html","uib/template/modal/window.html","uib/template/pager/pager.html","uib/template/pagination/pagination.html","uib/template/tooltip/tooltip-html-popup.html","uib/template/tooltip/tooltip-popup.html","uib/template/tooltip/tooltip-template-popup.html","uib/template/popover/popover-html.html","uib/template/popover/popover-template.html","uib/template/popover/popover.html","uib/template/progressbar/bar.html","uib/template/progressbar/progress.html","uib/template/progressbar/progressbar.html","uib/template/rating/rating.html","uib/template/tabs/tab.html","uib/template/tabs/tabset.html","uib/template/timepicker/timepicker.html","uib/template/typeahead/typeahead-match.html","uib/template/typeahead/typeahead-popup.html"]);
+       angular.module('ui.bootstrap.collapse', [])
+
+         .directive('uibCollapse', ['$animate', '$q', '$parse', '$injector', function($animate, $q, $parse, $injector) {
+           var $animateCss = $injector.has('$animateCss') ? $injector.get('$animateCss') : null;
+           return {
+             link: function(scope, element, attrs) {
+               var expandingExpr = $parse(attrs.expanding),
+                   expandedExpr = $parse(attrs.expanded),
+                   collapsingExpr = $parse(attrs.collapsing),
+                   collapsedExpr = $parse(attrs.collapsed);
+
+               if (!scope.$eval(attrs.uibCollapse)) {
+                 element.addClass('in')
+                   .addClass('collapse')
+                   .attr('aria-expanded', true)
+                   .attr('aria-hidden', false)
+                   .css({height: 'auto'});
+               }
+
+               function expand() {
+                 if (element.hasClass('collapse') && element.hasClass('in')) {
+                   return;
+                 }
+
+                 $q.resolve(expandingExpr(scope))
+                   .then(function() {
+                     element.removeClass('collapse')
+                       .addClass('collapsing')
+                       .attr('aria-expanded', true)
+                       .attr('aria-hidden', false);
+
+                     if ($animateCss) {
+                       $animateCss(element, {
+                         addClass: 'in',
+                         easing: 'ease',
+                         to: { height: element[0].scrollHeight + 'px' }
+                       }).start()['finally'](expandDone);
+                     } else {
+                       $animate.addClass(element, 'in', {
+                         to: { height: element[0].scrollHeight + 'px' }
+                       }).then(expandDone);
+                     }
+                   });
+               }
+
+               function expandDone() {
+                 element.removeClass('collapsing')
+                   .addClass('collapse')
+                   .css({height: 'auto'});
+                 expandedExpr(scope);
+               }
+
+               function collapse() {
+                 if (!element.hasClass('collapse') && !element.hasClass('in')) {
+                   return collapseDone();
+                 }
+
+                 $q.resolve(collapsingExpr(scope))
+                   .then(function() {
+                     element
+                       // IMPORTANT: The height must be set before adding "collapsing" class.
+                       // Otherwise, the browser attempts to animate from height 0 (in
+                       // collapsing class) to the given height here.
+                       .css({height: element[0].scrollHeight + 'px'})
+                       // initially all panel collapse have the collapse class, this removal
+                       // prevents the animation from jumping to collapsed state
+                       .removeClass('collapse')
+                       .addClass('collapsing')
+                       .attr('aria-expanded', false)
+                       .attr('aria-hidden', true);
+
+                     if ($animateCss) {
+                       $animateCss(element, {
+                         removeClass: 'in',
+                         to: {height: '0'}
+                       }).start()['finally'](collapseDone);
+                     } else {
+                       $animate.removeClass(element, 'in', {
+                         to: {height: '0'}
+                       }).then(collapseDone);
+                     }
+                   });
+               }
+
+               function collapseDone() {
+                 element.css({height: '0'}); // Required so that collapse works when animation is disabled
+                 element.removeClass('collapsing')
+                   .addClass('collapse');
+                 collapsedExpr(scope);
+               }
+
+               scope.$watch(attrs.uibCollapse, function(shouldCollapse) {
+                 if (shouldCollapse) {
+                   collapse();
+                 } else {
+                   expand();
+                 }
+               });
+             }
+           };
+         }]);
+
+       angular.module('ui.bootstrap.accordion', ['ui.bootstrap.collapse'])
+
+       .constant('uibAccordionConfig', {
+         closeOthers: true
+       })
+
+       .controller('UibAccordionController', ['$scope', '$attrs', 'uibAccordionConfig', function($scope, $attrs, accordionConfig) {
+         // This array keeps track of the accordion groups
+         this.groups = [];
+
+         // Ensure that all the groups in this accordion are closed, unless close-others explicitly says not to
+         this.closeOthers = function(openGroup) {
+           var closeOthers = angular.isDefined($attrs.closeOthers) ?
+             $scope.$eval($attrs.closeOthers) : accordionConfig.closeOthers;
+           if (closeOthers) {
+             angular.forEach(this.groups, function(group) {
+               if (group !== openGroup) {
+                 group.isOpen = false;
+               }
+             });
+           }
+         };
+
+         // This is called from the accordion-group directive to add itself to the accordion
+         this.addGroup = function(groupScope) {
+           var that = this;
+           this.groups.push(groupScope);
+
+           groupScope.$on('$destroy', function(event) {
+             that.removeGroup(groupScope);
+           });
+         };
+
+         // This is called from the accordion-group directive when to remove itself
+         this.removeGroup = function(group) {
+           var index = this.groups.indexOf(group);
+           if (index !== -1) {
+             this.groups.splice(index, 1);
+           }
+         };
+       }])
+
+       // The accordion directive simply sets up the directive controller
+       // and adds an accordion CSS class to itself element.
+       .directive('uibAccordion', function() {
+         return {
+           controller: 'UibAccordionController',
+           controllerAs: 'accordion',
+           transclude: true,
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/accordion/accordion.html';
+           }
+         };
+       })
+
+       // The accordion-group directive indicates a block of html that will expand and collapse in an accordion
+       .directive('uibAccordionGroup', function() {
+         return {
+           require: '^uibAccordion',         // We need this directive to be inside an accordion
+           transclude: true,              // It transcludes the contents of the directive into the template
+           replace: true,                // The element containing the directive will be replaced with the template
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/accordion/accordion-group.html';
+           },
+           scope: {
+             heading: '@',               // Interpolate the heading attribute onto this scope
+             panelClass: '@?',           // Ditto with panelClass
+             isOpen: '=?',
+             isDisabled: '=?'
+           },
+           controller: function() {
+             this.setHeading = function(element) {
+               this.heading = element;
+             };
+           },
+           link: function(scope, element, attrs, accordionCtrl) {
+             accordionCtrl.addGroup(scope);
+
+             scope.openClass = attrs.openClass || 'panel-open';
+             scope.panelClass = attrs.panelClass || 'panel-default';
+             scope.$watch('isOpen', function(value) {
+               element.toggleClass(scope.openClass, !!value);
+               if (value) {
+                 accordionCtrl.closeOthers(scope);
+               }
+             });
+
+             scope.toggleOpen = function($event) {
+               if (!scope.isDisabled) {
+                 if (!$event || $event.which === 32) {
+                   scope.isOpen = !scope.isOpen;
+                 }
+               }
+             };
+
+             var id = 'accordiongroup-' + scope.$id + '-' + Math.floor(Math.random() * 10000);
+             scope.headingId = id + '-tab';
+             scope.panelId = id + '-panel';
+           }
+         };
+       })
+
+       // Use accordion-heading below an accordion-group to provide a heading containing HTML
+       .directive('uibAccordionHeading', function() {
+         return {
+           transclude: true,   // Grab the contents to be used as the heading
+           template: '',       // In effect remove this element!
+           replace: true,
+           require: '^uibAccordionGroup',
+           link: function(scope, element, attrs, accordionGroupCtrl, transclude) {
+             // Pass the heading to the accordion-group controller
+             // so that it can be transcluded into the right place in the template
+             // [The second parameter to transclude causes the elements to be cloned so that they work in ng-repeat]
+             accordionGroupCtrl.setHeading(transclude(scope, angular.noop));
+           }
+         };
+       })
+
+       // Use in the accordion-group template to indicate where you want the heading to be transcluded
+       // You must provide the property on the accordion-group controller that will hold the transcluded element
+       .directive('uibAccordionTransclude', function() {
+         return {
+           require: '^uibAccordionGroup',
+           link: function(scope, element, attrs, controller) {
+             scope.$watch(function() { return controller[attrs.uibAccordionTransclude]; }, function(heading) {
+               if (heading) {
+                 var elem = angular.element(element[0].querySelector(getHeaderSelectors()));
+                 elem.html('');
+                 elem.append(heading);
+               }
+             });
+           }
+         };
+
+         function getHeaderSelectors() {
+             return 'uib-accordion-header,' +
+                 'data-uib-accordion-header,' +
+                 'x-uib-accordion-header,' +
+                 'uib\\:accordion-header,' +
+                 '[uib-accordion-header],' +
+                 '[data-uib-accordion-header],' +
+                 '[x-uib-accordion-header]';
+         }
+       });
+
+       angular.module('ui.bootstrap.alert', [])
+
+       .controller('UibAlertController', ['$scope', '$attrs', '$interpolate', '$timeout', function($scope, $attrs, $interpolate, $timeout) {
+         $scope.closeable = !!$attrs.close;
+
+         var dismissOnTimeout = angular.isDefined($attrs.dismissOnTimeout) ?
+           $interpolate($attrs.dismissOnTimeout)($scope.$parent) : null;
+
+         if (dismissOnTimeout) {
+           $timeout(function() {
+             $scope.close();
+           }, parseInt(dismissOnTimeout, 10));
+         }
+       }])
+
+       .directive('uibAlert', function() {
+         return {
+           controller: 'UibAlertController',
+           controllerAs: 'alert',
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/alert/alert.html';
+           },
+           transclude: true,
+           replace: true,
+           scope: {
+             type: '@',
+             close: '&'
+           }
+         };
+       });
+
+       angular.module('ui.bootstrap.buttons', [])
+
+       .constant('uibButtonConfig', {
+         activeClass: 'active',
+         toggleEvent: 'click'
+       })
+
+       .controller('UibButtonsController', ['uibButtonConfig', function(buttonConfig) {
+         this.activeClass = buttonConfig.activeClass || 'active';
+         this.toggleEvent = buttonConfig.toggleEvent || 'click';
+       }])
+
+       .directive('uibBtnRadio', ['$parse', function($parse) {
+         return {
+           require: ['uibBtnRadio', 'ngModel'],
+           controller: 'UibButtonsController',
+           controllerAs: 'buttons',
+           link: function(scope, element, attrs, ctrls) {
+             var buttonsCtrl = ctrls[0], ngModelCtrl = ctrls[1];
+             var uncheckableExpr = $parse(attrs.uibUncheckable);
+
+             element.find('input').css({display: 'none'});
+
+             //model -> UI
+             ngModelCtrl.$render = function() {
+               element.toggleClass(buttonsCtrl.activeClass, angular.equals(ngModelCtrl.$modelValue, scope.$eval(attrs.uibBtnRadio)));
+             };
+
+             //ui->model
+             element.on(buttonsCtrl.toggleEvent, function() {
+               if (attrs.disabled) {
+                 return;
+               }
+
+               var isActive = element.hasClass(buttonsCtrl.activeClass);
+
+               if (!isActive || angular.isDefined(attrs.uncheckable)) {
+                 scope.$apply(function() {
+                   ngModelCtrl.$setViewValue(isActive ? null : scope.$eval(attrs.uibBtnRadio));
+                   ngModelCtrl.$render();
+                 });
+               }
+             });
+
+             if (attrs.uibUncheckable) {
+               scope.$watch(uncheckableExpr, function(uncheckable) {
+                 attrs.$set('uncheckable', uncheckable ? '' : undefined);
+               });
+             }
+           }
+         };
+       }])
+
+       .directive('uibBtnCheckbox', function() {
+         return {
+           require: ['uibBtnCheckbox', 'ngModel'],
+           controller: 'UibButtonsController',
+           controllerAs: 'button',
+           link: function(scope, element, attrs, ctrls) {
+             var buttonsCtrl = ctrls[0], ngModelCtrl = ctrls[1];
+
+             element.find('input').css({display: 'none'});
+
+             function getTrueValue() {
+               return getCheckboxValue(attrs.btnCheckboxTrue, true);
+             }
+
+             function getFalseValue() {
+               return getCheckboxValue(attrs.btnCheckboxFalse, false);
+             }
+
+             function getCheckboxValue(attribute, defaultValue) {
+               return angular.isDefined(attribute) ? scope.$eval(attribute) : defaultValue;
+             }
+
+             //model -> UI
+             ngModelCtrl.$render = function() {
+               element.toggleClass(buttonsCtrl.activeClass, angular.equals(ngModelCtrl.$modelValue, getTrueValue()));
+             };
+
+             //ui->model
+             element.on(buttonsCtrl.toggleEvent, function() {
+               if (attrs.disabled) {
+                 return;
+               }
+
+               scope.$apply(function() {
+                 ngModelCtrl.$setViewValue(element.hasClass(buttonsCtrl.activeClass) ? getFalseValue() : getTrueValue());
+                 ngModelCtrl.$render();
+               });
+             });
+           }
+         };
+       });
+
+       angular.module('ui.bootstrap.carousel', [])
+
+       .controller('UibCarouselController', ['$scope', '$element', '$interval', '$timeout', '$animate', function($scope, $element, $interval, $timeout, $animate) {
+         var self = this,
+           slides = self.slides = $scope.slides = [],
+           SLIDE_DIRECTION = 'uib-slideDirection',
+           currentIndex = $scope.active,
+           currentInterval, isPlaying, bufferedTransitions = [];
+
+         var destroyed = false;
+
+         self.addSlide = function(slide, element) {
+           slides.push({
+             slide: slide,
+             element: element
+           });
+           slides.sort(function(a, b) {
+             return +a.slide.index - +b.slide.index;
+           });
+           //if this is the first slide or the slide is set to active, select it
+           if (slide.index === $scope.active || slides.length === 1 && !angular.isNumber($scope.active)) {
+             if ($scope.$currentTransition) {
+               $scope.$currentTransition = null;
+             }
+
+             currentIndex = slide.index;
+             $scope.active = slide.index;
+             setActive(currentIndex);
+             self.select(slides[findSlideIndex(slide)]);
+             if (slides.length === 1) {
+               $scope.play();
+             }
+           }
+         };
+
+         self.getCurrentIndex = function() {
+           for (var i = 0; i < slides.length; i++) {
+             if (slides[i].slide.index === currentIndex) {
+               return i;
+             }
+           }
+         };
+
+         self.next = $scope.next = function() {
+           var newIndex = (self.getCurrentIndex() + 1) % slides.length;
+
+           if (newIndex === 0 && $scope.noWrap()) {
+             $scope.pause();
+             return;
+           }
+
+           return self.select(slides[newIndex], 'next');
+         };
+
+         self.prev = $scope.prev = function() {
+           var newIndex = self.getCurrentIndex() - 1 < 0 ? slides.length - 1 : self.getCurrentIndex() - 1;
+
+           if ($scope.noWrap() && newIndex === slides.length - 1) {
+             $scope.pause();
+             return;
+           }
+
+           return self.select(slides[newIndex], 'prev');
+         };
+
+         self.removeSlide = function(slide) {
+           var index = findSlideIndex(slide);
+
+           var bufferedIndex = bufferedTransitions.indexOf(slides[index]);
+           if (bufferedIndex !== -1) {
+             bufferedTransitions.splice(bufferedIndex, 1);
+           }
+
+           //get the index of the slide inside the carousel
+           slides.splice(index, 1);
+           if (slides.length > 0 && currentIndex === index) {
+             if (index >= slides.length) {
+               currentIndex = slides.length - 1;
+               $scope.active = currentIndex;
+               setActive(currentIndex);
+               self.select(slides[slides.length - 1]);
+             } else {
+               currentIndex = index;
+               $scope.active = currentIndex;
+               setActive(currentIndex);
+               self.select(slides[index]);
+             }
+           } else if (currentIndex > index) {
+             currentIndex--;
+             $scope.active = currentIndex;
+           }
+
+           //clean the active value when no more slide
+           if (slides.length === 0) {
+             currentIndex = null;
+             $scope.active = null;
+             clearBufferedTransitions();
+           }
+         };
+
+         /* direction: "prev" or "next" */
+         self.select = $scope.select = function(nextSlide, direction) {
+           var nextIndex = findSlideIndex(nextSlide.slide);
+           //Decide direction if it's not given
+           if (direction === undefined) {
+             direction = nextIndex > self.getCurrentIndex() ? 'next' : 'prev';
+           }
+           //Prevent this user-triggered transition from occurring if there is already one in progress
+           if (nextSlide.slide.index !== currentIndex &&
+             !$scope.$currentTransition) {
+             goNext(nextSlide.slide, nextIndex, direction);
+           } else if (nextSlide && nextSlide.slide.index !== currentIndex && $scope.$currentTransition) {
+             bufferedTransitions.push(slides[nextIndex]);
+           }
+         };
+
+         /* Allow outside people to call indexOf on slides array */
+         $scope.indexOfSlide = function(slide) {
+           return +slide.slide.index;
+         };
+
+         $scope.isActive = function(slide) {
+           return $scope.active === slide.slide.index;
+         };
+
+         $scope.isPrevDisabled = function() {
+           return $scope.active === 0 && $scope.noWrap();
+         };
+
+         $scope.isNextDisabled = function() {
+           return $scope.active === slides.length - 1 && $scope.noWrap();
+         };
+
+         $scope.pause = function() {
+           if (!$scope.noPause) {
+             isPlaying = false;
+             resetTimer();
+           }
+         };
+
+         $scope.play = function() {
+           if (!isPlaying) {
+             isPlaying = true;
+             restartTimer();
+           }
+         };
+
+         $scope.$on('$destroy', function() {
+           destroyed = true;
+           resetTimer();
+         });
+
+         $scope.$watch('noTransition', function(noTransition) {
+           $animate.enabled($element, !noTransition);
+         });
+
+         $scope.$watch('interval', restartTimer);
+
+         $scope.$watchCollection('slides', resetTransition);
+
+         $scope.$watch('active', function(index) {
+           if (angular.isNumber(index) && currentIndex !== index) {
+             for (var i = 0; i < slides.length; i++) {
+               if (slides[i].slide.index === index) {
+                 index = i;
+                 break;
+               }
+             }
+
+             var slide = slides[index];
+             if (slide) {
+               setActive(index);
+               self.select(slides[index]);
+               currentIndex = index;
+             }
+           }
+         });
+
+         function clearBufferedTransitions() {
+           while (bufferedTransitions.length) {
+             bufferedTransitions.shift();
+           }
+         }
+
+         function getSlideByIndex(index) {
+           for (var i = 0, l = slides.length; i < l; ++i) {
+             if (slides[i].index === index) {
+               return slides[i];
+             }
+           }
+         }
+
+         function setActive(index) {
+           for (var i = 0; i < slides.length; i++) {
+             slides[i].slide.active = i === index;
+           }
+         }
+
+         function goNext(slide, index, direction) {
+           if (destroyed) {
+             return;
+           }
+
+           angular.extend(slide, {direction: direction});
+           angular.extend(slides[currentIndex].slide || {}, {direction: direction});
+           if ($animate.enabled($element) && !$scope.$currentTransition &&
+             slides[index].element && self.slides.length > 1) {
+             slides[index].element.data(SLIDE_DIRECTION, slide.direction);
+             var currentIdx = self.getCurrentIndex();
+
+             if (angular.isNumber(currentIdx) && slides[currentIdx].element) {
+               slides[currentIdx].element.data(SLIDE_DIRECTION, slide.direction);
+             }
+
+             $scope.$currentTransition = true;
+             $animate.on('addClass', slides[index].element, function(element, phase) {
+               if (phase === 'close') {
+                 $scope.$currentTransition = null;
+                 $animate.off('addClass', element);
+                 if (bufferedTransitions.length) {
+                   var nextSlide = bufferedTransitions.pop().slide;
+                   var nextIndex = nextSlide.index;
+                   var nextDirection = nextIndex > self.getCurrentIndex() ? 'next' : 'prev';
+                   clearBufferedTransitions();
+
+                   goNext(nextSlide, nextIndex, nextDirection);
+                 }
+               }
+             });
+           }
+
+           $scope.active = slide.index;
+           currentIndex = slide.index;
+           setActive(index);
+
+           //every time you change slides, reset the timer
+           restartTimer();
+         }
+
+         function findSlideIndex(slide) {
+           for (var i = 0; i < slides.length; i++) {
+             if (slides[i].slide === slide) {
+               return i;
+             }
+           }
+         }
+
+         function resetTimer() {
+           if (currentInterval) {
+             $interval.cancel(currentInterval);
+             currentInterval = null;
+           }
+         }
+
+         function resetTransition(slides) {
+           if (!slides.length) {
+             $scope.$currentTransition = null;
+             clearBufferedTransitions();
+           }
+         }
+
+         function restartTimer() {
+           resetTimer();
+           var interval = +$scope.interval;
+           if (!isNaN(interval) && interval > 0) {
+             currentInterval = $interval(timerFn, interval);
+           }
+         }
+
+         function timerFn() {
+           var interval = +$scope.interval;
+           if (isPlaying && !isNaN(interval) && interval > 0 && slides.length) {
+             $scope.next();
+           } else {
+             $scope.pause();
+           }
+         }
+       }])
+
+       .directive('uibCarousel', function() {
+         return {
+           transclude: true,
+           replace: true,
+           controller: 'UibCarouselController',
+           controllerAs: 'carousel',
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/carousel/carousel.html';
+           },
+           scope: {
+             active: '=',
+             interval: '=',
+             noTransition: '=',
+             noPause: '=',
+             noWrap: '&'
+           }
+         };
+       })
+
+       .directive('uibSlide', function() {
+         return {
+           require: '^uibCarousel',
+           transclude: true,
+           replace: true,
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/carousel/slide.html';
+           },
+           scope: {
+             actual: '=?',
+             index: '=?'
+           },
+           link: function (scope, element, attrs, carouselCtrl) {
+             carouselCtrl.addSlide(scope, element);
+             //when the scope is destroyed then remove the slide from the current slides array
+             scope.$on('$destroy', function() {
+               carouselCtrl.removeSlide(scope);
+             });
+           }
+         };
+       })
+
+       .animation('.item', ['$animateCss',
+       function($animateCss) {
+         var SLIDE_DIRECTION = 'uib-slideDirection';
+
+         function removeClass(element, className, callback) {
+           element.removeClass(className);
+           if (callback) {
+             callback();
+           }
+         }
+
+         return {
+           beforeAddClass: function(element, className, done) {
+             if (className === 'active') {
+               var stopped = false;
+               var direction = element.data(SLIDE_DIRECTION);
+               var directionClass = direction === 'next' ? 'left' : 'right';
+               var removeClassFn = removeClass.bind(this, element,
+                 directionClass + ' ' + direction, done);
+               element.addClass(direction);
+
+               $animateCss(element, {addClass: directionClass})
+                 .start()
+                 .done(removeClassFn);
+
+               return function() {
+                 stopped = true;
+               };
+             }
+             done();
+           },
+           beforeRemoveClass: function (element, className, done) {
+             if (className === 'active') {
+               var stopped = false;
+               var direction = element.data(SLIDE_DIRECTION);
+               var directionClass = direction === 'next' ? 'left' : 'right';
+               var removeClassFn = removeClass.bind(this, element, directionClass, done);
+
+               $animateCss(element, {addClass: directionClass})
+                 .start()
+                 .done(removeClassFn);
+
+               return function() {
+                 stopped = true;
+               };
+             }
+             done();
+           }
+         };
+       }]);
+
+       angular.module('ui.bootstrap.dateparser', [])
+
+       .service('uibDateParser', ['$log', '$locale', 'dateFilter', 'orderByFilter', function($log, $locale, dateFilter, orderByFilter) {
+         // Pulled from https://github.com/mbostock/d3/blob/master/src/format/requote.js
+         var SPECIAL_CHARACTERS_REGEXP = /[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g;
+
+         var localeId;
+         var formatCodeToRegex;
+
+         this.init = function() {
+           localeId = $locale.id;
+
+           this.parsers = {};
+           this.formatters = {};
+
+           formatCodeToRegex = [
+             {
+               key: 'yyyy',
+               regex: '\\d{4}',
+               apply: function(value) { this.year = +value; },
+               formatter: function(date) {
+                 var _date = new Date();
+                 _date.setFullYear(Math.abs(date.getFullYear()));
+                 return dateFilter(_date, 'yyyy');
+               }
+             },
+             {
+               key: 'yy',
+               regex: '\\d{2}',
+               apply: function(value) { value = +value; this.year = value < 69 ? value + 2000 : value + 1900; },
+               formatter: function(date) {
+                 var _date = new Date();
+                 _date.setFullYear(Math.abs(date.getFullYear()));
+                 return dateFilter(_date, 'yy');
+               }
+             },
+             {
+               key: 'y',
+               regex: '\\d{1,4}',
+               apply: function(value) { this.year = +value; },
+               formatter: function(date) {
+                 var _date = new Date();
+                 _date.setFullYear(Math.abs(date.getFullYear()));
+                 return dateFilter(_date, 'y');
+               }
+             },
+             {
+               key: 'M!',
+               regex: '0?[1-9]|1[0-2]',
+               apply: function(value) { this.month = value - 1; },
+               formatter: function(date) {
+                 var value = date.getMonth();
+                 if (/^[0-9]$/.test(value)) {
+                   return dateFilter(date, 'MM');
+                 }
+
+                 return dateFilter(date, 'M');
+               }
+             },
+             {
+               key: 'MMMM',
+               regex: $locale.DATETIME_FORMATS.MONTH.join('|'),
+               apply: function(value) { this.month = $locale.DATETIME_FORMATS.MONTH.indexOf(value); },
+               formatter: function(date) { return dateFilter(date, 'MMMM'); }
+             },
+             {
+               key: 'MMM',
+               regex: $locale.DATETIME_FORMATS.SHORTMONTH.join('|'),
+               apply: function(value) { this.month = $locale.DATETIME_FORMATS.SHORTMONTH.indexOf(value); },
+               formatter: function(date) { return dateFilter(date, 'MMM'); }
+             },
+             {
+               key: 'MM',
+               regex: '0[1-9]|1[0-2]',
+               apply: function(value) { this.month = value - 1; },
+               formatter: function(date) { return dateFilter(date, 'MM'); }
+             },
+             {
+               key: 'M',
+               regex: '[1-9]|1[0-2]',
+               apply: function(value) { this.month = value - 1; },
+               formatter: function(date) { return dateFilter(date, 'M'); }
+             },
+             {
+               key: 'd!',
+               regex: '[0-2]?[0-9]{1}|3[0-1]{1}',
+               apply: function(value) { this.date = +value; },
+               formatter: function(date) {
+                 var value = date.getDate();
+                 if (/^[1-9]$/.test(value)) {
+                   return dateFilter(date, 'dd');
+                 }
+
+                 return dateFilter(date, 'd');
+               }
+             },
+             {
+               key: 'dd',
+               regex: '[0-2][0-9]{1}|3[0-1]{1}',
+               apply: function(value) { this.date = +value; },
+               formatter: function(date) { return dateFilter(date, 'dd'); }
+             },
+             {
+               key: 'd',
+               regex: '[1-2]?[0-9]{1}|3[0-1]{1}',
+               apply: function(value) { this.date = +value; },
+               formatter: function(date) { return dateFilter(date, 'd'); }
+             },
+             {
+               key: 'EEEE',
+               regex: $locale.DATETIME_FORMATS.DAY.join('|'),
+               formatter: function(date) { return dateFilter(date, 'EEEE'); }
+             },
+             {
+               key: 'EEE',
+               regex: $locale.DATETIME_FORMATS.SHORTDAY.join('|'),
+               formatter: function(date) { return dateFilter(date, 'EEE'); }
+             },
+             {
+               key: 'HH',
+               regex: '(?:0|1)[0-9]|2[0-3]',
+               apply: function(value) { this.hours = +value; },
+               formatter: function(date) { return dateFilter(date, 'HH'); }
+             },
+             {
+               key: 'hh',
+               regex: '0[0-9]|1[0-2]',
+               apply: function(value) { this.hours = +value; },
+               formatter: function(date) { return dateFilter(date, 'hh'); }
+             },
+             {
+               key: 'H',
+               regex: '1?[0-9]|2[0-3]',
+               apply: function(value) { this.hours = +value; },
+               formatter: function(date) { return dateFilter(date, 'H'); }
+             },
+             {
+               key: 'h',
+               regex: '[0-9]|1[0-2]',
+               apply: function(value) { this.hours = +value; },
+               formatter: function(date) { return dateFilter(date, 'h'); }
+             },
+             {
+               key: 'mm',
+               regex: '[0-5][0-9]',
+               apply: function(value) { this.minutes = +value; },
+               formatter: function(date) { return dateFilter(date, 'mm'); }
+             },
+             {
+               key: 'm',
+               regex: '[0-9]|[1-5][0-9]',
+               apply: function(value) { this.minutes = +value; },
+               formatter: function(date) { return dateFilter(date, 'm'); }
+             },
+             {
+               key: 'sss',
+               regex: '[0-9][0-9][0-9]',
+               apply: function(value) { this.milliseconds = +value; },
+               formatter: function(date) { return dateFilter(date, 'sss'); }
+             },
+             {
+               key: 'ss',
+               regex: '[0-5][0-9]',
+               apply: function(value) { this.seconds = +value; },
+               formatter: function(date) { return dateFilter(date, 'ss'); }
+             },
+             {
+               key: 's',
+               regex: '[0-9]|[1-5][0-9]',
+               apply: function(value) { this.seconds = +value; },
+               formatter: function(date) { return dateFilter(date, 's'); }
+             },
+             {
+               key: 'a',
+               regex: $locale.DATETIME_FORMATS.AMPMS.join('|'),
+               apply: function(value) {
+                 if (this.hours === 12) {
+                   this.hours = 0;
+                 }
+
+                 if (value === 'PM') {
+                   this.hours += 12;
+                 }
+               },
+               formatter: function(date) { return dateFilter(date, 'a'); }
+             },
+             {
+               key: 'Z',
+               regex: '[+-]\\d{4}',
+               apply: function(value) {
+                 var matches = value.match(/([+-])(\d{2})(\d{2})/),
+                   sign = matches[1],
+                   hours = matches[2],
+                   minutes = matches[3];
+                 this.hours += toInt(sign + hours);
+                 this.minutes += toInt(sign + minutes);
+               },
+               formatter: function(date) {
+                 return dateFilter(date, 'Z');
+               }
+             },
+             {
+               key: 'ww',
+               regex: '[0-4][0-9]|5[0-3]',
+               formatter: function(date) { return dateFilter(date, 'ww'); }
+             },
+             {
+               key: 'w',
+               regex: '[0-9]|[1-4][0-9]|5[0-3]',
+               formatter: function(date) { return dateFilter(date, 'w'); }
+             },
+             {
+               key: 'GGGG',
+               regex: $locale.DATETIME_FORMATS.ERANAMES.join('|').replace(/\s/g, '\\s'),
+               formatter: function(date) { return dateFilter(date, 'GGGG'); }
+             },
+             {
+               key: 'GGG',
+               regex: $locale.DATETIME_FORMATS.ERAS.join('|'),
+               formatter: function(date) { return dateFilter(date, 'GGG'); }
+             },
+             {
+               key: 'GG',
+               regex: $locale.DATETIME_FORMATS.ERAS.join('|'),
+               formatter: function(date) { return dateFilter(date, 'GG'); }
+             },
+             {
+               key: 'G',
+               regex: $locale.DATETIME_FORMATS.ERAS.join('|'),
+               formatter: function(date) { return dateFilter(date, 'G'); }
+             }
+           ];
+         };
+
+         this.init();
+
+         function createParser(format, func) {
+           var map = [], regex = format.split('');
+
+           // check for literal values
+           var quoteIndex = format.indexOf('\'');
+           if (quoteIndex > -1) {
+             var inLiteral = false;
+             format = format.split('');
+             for (var i = quoteIndex; i < format.length; i++) {
+               if (inLiteral) {
+                 if (format[i] === '\'') {
+                   if (i + 1 < format.length && format[i+1] === '\'') { // escaped single quote
+                     format[i+1] = '$';
+                     regex[i+1] = '';
+                   } else { // end of literal
+                     regex[i] = '';
+                     inLiteral = false;
+                   }
+                 }
+                 format[i] = '$';
+               } else {
+                 if (format[i] === '\'') { // start of literal
+                   format[i] = '$';
+                   regex[i] = '';
+                   inLiteral = true;
+                 }
+               }
+             }
+
+             format = format.join('');
+           }
+
+           angular.forEach(formatCodeToRegex, function(data) {
+             var index = format.indexOf(data.key);
+
+             if (index > -1) {
+               format = format.split('');
+
+               regex[index] = '(' + data.regex + ')';
+               format[index] = '$'; // Custom symbol to define consumed part of format
+               for (var i = index + 1, n = index + data.key.length; i < n; i++) {
+                 regex[i] = '';
+                 format[i] = '$';
+               }
+               format = format.join('');
+
+               map.push({
+                 index: index,
+                 key: data.key,
+                 apply: data[func],
+                 matcher: data.regex
+               });
+             }
+           });
+
+           return {
+             regex: new RegExp('^' + regex.join('') + '$'),
+             map: orderByFilter(map, 'index')
+           };
+         }
+
+         this.filter = function(date, format) {
+           if (!angular.isDate(date) || isNaN(date) || !format) {
+             return '';
+           }
+
+           format = $locale.DATETIME_FORMATS[format] || format;
+
+           if ($locale.id !== localeId) {
+             this.init();
+           }
+
+           if (!this.formatters[format]) {
+             this.formatters[format] = createParser(format, 'formatter');
+           }
+
+           var parser = this.formatters[format],
+             map = parser.map;
+
+           var _format = format;
+
+           return map.reduce(function(str, mapper, i) {
+             var match = _format.match(new RegExp('(.*)' + mapper.key));
+             if (match && angular.isString(match[1])) {
+               str += match[1];
+               _format = _format.replace(match[1] + mapper.key, '');
+             }
+
+             var endStr = i === map.length - 1 ? _format : '';
+
+             if (mapper.apply) {
+               return str + mapper.apply.call(null, date) + endStr;
+             }
+
+             return str + endStr;
+           }, '');
+         };
+
+         this.parse = function(input, format, baseDate) {
+           if (!angular.isString(input) || !format) {
+             return input;
+           }
+
+           format = $locale.DATETIME_FORMATS[format] || format;
+           format = format.replace(SPECIAL_CHARACTERS_REGEXP, '\\$&');
+
+           if ($locale.id !== localeId) {
+             this.init();
+           }
+
+           if (!this.parsers[format]) {
+             this.parsers[format] = createParser(format, 'apply');
+           }
+
+           var parser = this.parsers[format],
+               regex = parser.regex,
+               map = parser.map,
+               results = input.match(regex),
+               tzOffset = false;
+           if (results && results.length) {
+             var fields, dt;
+             if (angular.isDate(baseDate) && !isNaN(baseDate.getTime())) {
+               fields = {
+                 year: baseDate.getFullYear(),
+                 month: baseDate.getMonth(),
+                 date: baseDate.getDate(),
+                 hours: baseDate.getHours(),
+                 minutes: baseDate.getMinutes(),
+                 seconds: baseDate.getSeconds(),
+                 milliseconds: baseDate.getMilliseconds()
+               };
+             } else {
+               if (baseDate) {
+                 $log.warn('dateparser:', 'baseDate is not a valid date');
+               }
+               fields = { year: 1900, month: 0, date: 1, hours: 0, minutes: 0, seconds: 0, milliseconds: 0 };
+             }
+
+             for (var i = 1, n = results.length; i < n; i++) {
+               var mapper = map[i - 1];
+               if (mapper.matcher === 'Z') {
+                 tzOffset = true;
+               }
+
+               if (mapper.apply) {
+                 mapper.apply.call(fields, results[i]);
+               }
+             }
+
+             var datesetter = tzOffset ? Date.prototype.setUTCFullYear :
+               Date.prototype.setFullYear;
+             var timesetter = tzOffset ? Date.prototype.setUTCHours :
+               Date.prototype.setHours;
+
+             if (isValid(fields.year, fields.month, fields.date)) {
+               if (angular.isDate(baseDate) && !isNaN(baseDate.getTime()) && !tzOffset) {
+                 dt = new Date(baseDate);
+                 datesetter.call(dt, fields.year, fields.month, fields.date);
+                 timesetter.call(dt, fields.hours, fields.minutes,
+                   fields.seconds, fields.milliseconds);
+               } else {
+                 dt = new Date(0);
+                 datesetter.call(dt, fields.year, fields.month, fields.date);
+                 timesetter.call(dt, fields.hours || 0, fields.minutes || 0,
+                   fields.seconds || 0, fields.milliseconds || 0);
+               }
+             }
+
+             return dt;
+           }
+         };
+
+         // Check if date is valid for specific month (and year for February).
+         // Month: 0 = Jan, 1 = Feb, etc
+         function isValid(year, month, date) {
+           if (date < 1) {
+             return false;
+           }
+
+           if (month === 1 && date > 28) {
+             return date === 29 && (year % 4 === 0 && year % 100 !== 0 || year % 400 === 0);
+           }
+
+           if (month === 3 || month === 5 || month === 8 || month === 10) {
+             return date < 31;
+           }
+
+           return true;
+         }
+
+         function toInt(str) {
+           return parseInt(str, 10);
+         }
+
+         this.toTimezone = toTimezone;
+         this.fromTimezone = fromTimezone;
+         this.timezoneToOffset = timezoneToOffset;
+         this.addDateMinutes = addDateMinutes;
+         this.convertTimezoneToLocal = convertTimezoneToLocal;
+
+         function toTimezone(date, timezone) {
+           return date && timezone ? convertTimezoneToLocal(date, timezone) : date;
+         }
+
+         function fromTimezone(date, timezone) {
+           return date && timezone ? convertTimezoneToLocal(date, timezone, true) : date;
+         }
+
+         //https://github.com/angular/angular.js/blob/622c42169699ec07fc6daaa19fe6d224e5d2f70e/src/Angular.js#L1207
+         function timezoneToOffset(timezone, fallback) {
+           timezone = timezone.replace(/:/g, '');
+           var requestedTimezoneOffset = Date.parse('Jan 01, 1970 00:00:00 ' + timezone) / 60000;
+           return isNaN(requestedTimezoneOffset) ? fallback : requestedTimezoneOffset;
+         }
+
+         function addDateMinutes(date, minutes) {
+           date = new Date(date.getTime());
+           date.setMinutes(date.getMinutes() + minutes);
+           return date;
+         }
+
+         function convertTimezoneToLocal(date, timezone, reverse) {
+           reverse = reverse ? -1 : 1;
+           var dateTimezoneOffset = date.getTimezoneOffset();
+           var timezoneOffset = timezoneToOffset(timezone, dateTimezoneOffset);
+           return addDateMinutes(date, reverse * (timezoneOffset - dateTimezoneOffset));
+         }
+       }]);
+
+       // Avoiding use of ng-class as it creates a lot of watchers when a class is to be applied to
+       // at most one element.
+       angular.module('ui.bootstrap.isClass', [])
+       .directive('uibIsClass', [
+                '$animate',
+       function ($animate) {
+         //                    11111111          22222222
+         var ON_REGEXP = /^\s*([\s\S]+?)\s+on\s+([\s\S]+?)\s*$/;
+         //                    11111111           22222222
+         var IS_REGEXP = /^\s*([\s\S]+?)\s+for\s+([\s\S]+?)\s*$/;
+
+         var dataPerTracked = {};
+
+         return {
+           restrict: 'A',
+           compile: function(tElement, tAttrs) {
+             var linkedScopes = [];
+             var instances = [];
+             var expToData = {};
+             var lastActivated = null;
+             var onExpMatches = tAttrs.uibIsClass.match(ON_REGEXP);
+             var onExp = onExpMatches[2];
+             var expsStr = onExpMatches[1];
+             var exps = expsStr.split(',');
+
+             return linkFn;
+
+             function linkFn(scope, element, attrs) {
+               linkedScopes.push(scope);
+               instances.push({
+                 scope: scope,
+                 element: element
+               });
+
+               exps.forEach(function(exp, k) {
+                 addForExp(exp, scope);
+               });
+
+               scope.$on('$destroy', removeScope);
+             }
+
+             function addForExp(exp, scope) {
+               var matches = exp.match(IS_REGEXP);
+               var clazz = scope.$eval(matches[1]);
+               var compareWithExp = matches[2];
+               var data = expToData[exp];
+               if (!data) {
+                 var watchFn = function(compareWithVal) {
+                   var newActivated = null;
+                   instances.some(function(instance) {
+                     var thisVal = instance.scope.$eval(onExp);
+                     if (thisVal === compareWithVal) {
+                       newActivated = instance;
+                       return true;
+                     }
+                   });
+                   if (data.lastActivated !== newActivated) {
+                     if (data.lastActivated) {
+                       $animate.removeClass(data.lastActivated.element, clazz);
+                     }
+                     if (newActivated) {
+                       $animate.addClass(newActivated.element, clazz);
+                     }
+                     data.lastActivated = newActivated;
+                   }
+                 };
+                 expToData[exp] = data = {
+                   lastActivated: null,
+                   scope: scope,
+                   watchFn: watchFn,
+                   compareWithExp: compareWithExp,
+                   watcher: scope.$watch(compareWithExp, watchFn)
+                 };
+               }
+               data.watchFn(scope.$eval(compareWithExp));
+             }
+
+             function removeScope(e) {
+               var removedScope = e.targetScope;
+               var index = linkedScopes.indexOf(removedScope);
+               linkedScopes.splice(index, 1);
+               instances.splice(index, 1);
+               if (linkedScopes.length) {
+                 var newWatchScope = linkedScopes[0];
+                 angular.forEach(expToData, function(data) {
+                   if (data.scope === removedScope) {
+                     data.watcher = newWatchScope.$watch(data.compareWithExp, data.watchFn);
+                     data.scope = newWatchScope;
+                   }
+                 });
+               } else {
+                 expToData = {};
+               }
+             }
+           }
+         };
+       }]);
+       angular.module('ui.bootstrap.datepicker', ['ui.bootstrap.dateparser', 'ui.bootstrap.isClass'])
+
+       .value('$datepickerSuppressError', false)
+
+       .value('$datepickerLiteralWarning', true)
+
+       .constant('uibDatepickerConfig', {
+         datepickerMode: 'day',
+         formatDay: 'dd',
+         formatMonth: 'MMMM',
+         formatYear: 'yyyy',
+         formatDayHeader: 'EEE',
+         formatDayTitle: 'MMMM yyyy',
+         formatMonthTitle: 'yyyy',
+         maxDate: null,
+         maxMode: 'year',
+         minDate: null,
+         minMode: 'day',
+         ngModelOptions: {},
+         shortcutPropagation: false,
+         showWeeks: true,
+         yearColumns: 5,
+         yearRows: 4
+       })
+
+       .controller('UibDatepickerController', ['$scope', '$attrs', '$parse', '$interpolate', '$locale', '$log', 'dateFilter', 'uibDatepickerConfig', '$datepickerLiteralWarning', '$datepickerSuppressError', 'uibDateParser',
+         function($scope, $attrs, $parse, $interpolate, $locale, $log, dateFilter, datepickerConfig, $datepickerLiteralWarning, $datepickerSuppressError, dateParser) {
+         var self = this,
+             ngModelCtrl = { $setViewValue: angular.noop }, // nullModelCtrl;
+             ngModelOptions = {},
+             watchListeners = [],
+             optionsUsed = !!$attrs.datepickerOptions;
+
+         if (!$scope.datepickerOptions) {
+           $scope.datepickerOptions = {};
+         }
+
+         // Modes chain
+         this.modes = ['day', 'month', 'year'];
+
+         [
+           'customClass',
+           'dateDisabled',
+           'datepickerMode',
+           'formatDay',
+           'formatDayHeader',
+           'formatDayTitle',
+           'formatMonth',
+           'formatMonthTitle',
+           'formatYear',
+           'maxDate',
+           'maxMode',
+           'minDate',
+           'minMode',
+           'showWeeks',
+           'shortcutPropagation',
+           'startingDay',
+           'yearColumns',
+           'yearRows'
+         ].forEach(function(key) {
+           switch (key) {
+             case 'customClass':
+             case 'dateDisabled':
+               $scope[key] = $scope.datepickerOptions[key] || angular.noop;
+               break;
+             case 'datepickerMode':
+               $scope.datepickerMode = angular.isDefined($scope.datepickerOptions.datepickerMode) ?
+                 $scope.datepickerOptions.datepickerMode : datepickerConfig.datepickerMode;
+               break;
+             case 'formatDay':
+             case 'formatDayHeader':
+             case 'formatDayTitle':
+             case 'formatMonth':
+             case 'formatMonthTitle':
+             case 'formatYear':
+               self[key] = angular.isDefined($scope.datepickerOptions[key]) ?
+                 $interpolate($scope.datepickerOptions[key])($scope.$parent) :
+                 datepickerConfig[key];
+               break;
+             case 'showWeeks':
+             case 'shortcutPropagation':
+             case 'yearColumns':
+             case 'yearRows':
+               self[key] = angular.isDefined($scope.datepickerOptions[key]) ?
+                 $scope.datepickerOptions[key] : datepickerConfig[key];
+               break;
+             case 'startingDay':
+               if (angular.isDefined($scope.datepickerOptions.startingDay)) {
+                 self.startingDay = $scope.datepickerOptions.startingDay;
+               } else if (angular.isNumber(datepickerConfig.startingDay)) {
+                 self.startingDay = datepickerConfig.startingDay;
+               } else {
+                 self.startingDay = ($locale.DATETIME_FORMATS.FIRSTDAYOFWEEK + 8) % 7;
+               }
+
+               break;
+             case 'maxDate':
+             case 'minDate':
+               $scope.$watch('datepickerOptions.' + key, function(value) {
+                 if (value) {
+                   if (angular.isDate(value)) {
+                     self[key] = dateParser.fromTimezone(new Date(value), ngModelOptions.timezone);
+                   } else {
+                     if ($datepickerLiteralWarning) {
+                       $log.warn('Literal date support has been deprecated, please switch to date object usage');
+                     }
+
+                     self[key] = new Date(dateFilter(value, 'medium'));
+                   }
+                 } else {
+                   self[key] = datepickerConfig[key] ?
+                     dateParser.fromTimezone(new Date(datepickerConfig[key]), ngModelOptions.timezone) :
+                     null;
+                 }
+
+                 self.refreshView();
+               });
+
+               break;
+             case 'maxMode':
+             case 'minMode':
+               if ($scope.datepickerOptions[key]) {
+                 $scope.$watch(function() { return $scope.datepickerOptions[key]; }, function(value) {
+                   self[key] = $scope[key] = angular.isDefined(value) ? value : datepickerOptions[key];
+                   if (key === 'minMode' && self.modes.indexOf($scope.datepickerOptions.datepickerMode) < self.modes.indexOf(self[key]) ||
+                     key === 'maxMode' && self.modes.indexOf($scope.datepickerOptions.datepickerMode) > self.modes.indexOf(self[key])) {
+                     $scope.datepickerMode = self[key];
+                     $scope.datepickerOptions.datepickerMode = self[key];
+                   }
+                 });
+               } else {
+                 self[key] = $scope[key] = datepickerConfig[key] || null;
+               }
+
+               break;
+           }
+         });
+
+         $scope.uniqueId = 'datepicker-' + $scope.$id + '-' + Math.floor(Math.random() * 10000);
+
+         $scope.disabled = angular.isDefined($attrs.disabled) || false;
+         if (angular.isDefined($attrs.ngDisabled)) {
+           watchListeners.push($scope.$parent.$watch($attrs.ngDisabled, function(disabled) {
+             $scope.disabled = disabled;
+             self.refreshView();
+           }));
+         }
+
+         $scope.isActive = function(dateObject) {
+           if (self.compare(dateObject.date, self.activeDate) === 0) {
+             $scope.activeDateId = dateObject.uid;
+             return true;
+           }
+           return false;
+         };
+
+         this.init = function(ngModelCtrl_) {
+           ngModelCtrl = ngModelCtrl_;
+           ngModelOptions = ngModelCtrl_.$options || datepickerConfig.ngModelOptions;
+           if ($scope.datepickerOptions.initDate) {
+             self.activeDate = dateParser.fromTimezone($scope.datepickerOptions.initDate, ngModelOptions.timezone) || new Date();
+             $scope.$watch('datepickerOptions.initDate', function(initDate) {
+               if (initDate && (ngModelCtrl.$isEmpty(ngModelCtrl.$modelValue) || ngModelCtrl.$invalid)) {
+                 self.activeDate = dateParser.fromTimezone(initDate, ngModelOptions.timezone);
+                 self.refreshView();
+               }
+             });
+           } else {
+             self.activeDate = new Date();
+           }
+
+           var date = ngModelCtrl.$modelValue ? new Date(ngModelCtrl.$modelValue) : new Date();
+           this.activeDate = !isNaN(date) ?
+             dateParser.fromTimezone(date, ngModelOptions.timezone) :
+             dateParser.fromTimezone(new Date(), ngModelOptions.timezone);
+
+           ngModelCtrl.$render = function() {
+             self.render();
+           };
+         };
+
+         this.render = function() {
+           if (ngModelCtrl.$viewValue) {
+             var date = new Date(ngModelCtrl.$viewValue),
+                 isValid = !isNaN(date);
+
+             if (isValid) {
+               this.activeDate = dateParser.fromTimezone(date, ngModelOptions.timezone);
+             } else if (!$datepickerSuppressError) {
+               $log.error('Datepicker directive: "ng-model" value must be a Date object');
+             }
+           }
+           this.refreshView();
+         };
+
+         this.refreshView = function() {
+           if (this.element) {
+             $scope.selectedDt = null;
+             this._refreshView();
+             if ($scope.activeDt) {
+               $scope.activeDateId = $scope.activeDt.uid;
+             }
+
+             var date = ngModelCtrl.$viewValue ? new Date(ngModelCtrl.$viewValue) : null;
+             date = dateParser.fromTimezone(date, ngModelOptions.timezone);
+             ngModelCtrl.$setValidity('dateDisabled', !date ||
+               this.element && !this.isDisabled(date));
+           }
+         };
+
+         this.createDateObject = function(date, format) {
+           var model = ngModelCtrl.$viewValue ? new Date(ngModelCtrl.$viewValue) : null;
+           model = dateParser.fromTimezone(model, ngModelOptions.timezone);
+           var today = new Date();
+           today = dateParser.fromTimezone(today, ngModelOptions.timezone);
+           var time = this.compare(date, today);
+           var dt = {
+             date: date,
+             label: dateParser.filter(date, format),
+             selected: model && this.compare(date, model) === 0,
+             disabled: this.isDisabled(date),
+             past: time < 0,
+             current: time === 0,
+             future: time > 0,
+             customClass: this.customClass(date) || null
+           };
+
+           if (model && this.compare(date, model) === 0) {
+             $scope.selectedDt = dt;
+           }
+
+           if (self.activeDate && this.compare(dt.date, self.activeDate) === 0) {
+             $scope.activeDt = dt;
+           }
+
+           return dt;
+         };
+
+         this.isDisabled = function(date) {
+           return $scope.disabled ||
+             this.minDate && this.compare(date, this.minDate) < 0 ||
+             this.maxDate && this.compare(date, this.maxDate) > 0 ||
+             $scope.dateDisabled && $scope.dateDisabled({date: date, mode: $scope.datepickerMode});
+         };
+
+         this.customClass = function(date) {
+           return $scope.customClass({date: date, mode: $scope.datepickerMode});
+         };
+
+         // Split array into smaller arrays
+         this.split = function(arr, size) {
+           var arrays = [];
+           while (arr.length > 0) {
+             arrays.push(arr.splice(0, size));
+           }
+           return arrays;
+         };
+
+         $scope.select = function(date) {
+           if ($scope.datepickerMode === self.minMode) {
+             var dt = ngModelCtrl.$viewValue ? dateParser.fromTimezone(new Date(ngModelCtrl.$viewValue), ngModelOptions.timezone) : new Date(0, 0, 0, 0, 0, 0, 0);
+             dt.setFullYear(date.getFullYear(), date.getMonth(), date.getDate());
+             dt = dateParser.toTimezone(dt, ngModelOptions.timezone);
+             ngModelCtrl.$setViewValue(dt);
+             ngModelCtrl.$render();
+           } else {
+             self.activeDate = date;
+             setMode(self.modes[self.modes.indexOf($scope.datepickerMode) - 1]);
+
+             $scope.$emit('uib:datepicker.mode');
+           }
+
+           $scope.$broadcast('uib:datepicker.focus');
+         };
+
+         $scope.move = function(direction) {
+           var year = self.activeDate.getFullYear() + direction * (self.step.years || 0),
+               month = self.activeDate.getMonth() + direction * (self.step.months || 0);
+           self.activeDate.setFullYear(year, month, 1);
+           self.refreshView();
+         };
+
+         $scope.toggleMode = function(direction) {
+           direction = direction || 1;
+
+           if ($scope.datepickerMode === self.maxMode && direction === 1 ||
+             $scope.datepickerMode === self.minMode && direction === -1) {
+             return;
+           }
+
+           setMode(self.modes[self.modes.indexOf($scope.datepickerMode) + direction]);
+
+           $scope.$emit('uib:datepicker.mode');
+         };
+
+         // Key event mapper
+         $scope.keys = { 13: 'enter', 32: 'space', 33: 'pageup', 34: 'pagedown', 35: 'end', 36: 'home', 37: 'left', 38: 'up', 39: 'right', 40: 'down' };
+
+         var focusElement = function() {
+           self.element[0].focus();
+         };
+
+         // Listen for focus requests from popup directive
+         $scope.$on('uib:datepicker.focus', focusElement);
+
+         $scope.keydown = function(evt) {
+           var key = $scope.keys[evt.which];
+
+           if (!key || evt.shiftKey || evt.altKey || $scope.disabled) {
+             return;
+           }
+
+           evt.preventDefault();
+           if (!self.shortcutPropagation) {
+             evt.stopPropagation();
+           }
+
+           if (key === 'enter' || key === 'space') {
+             if (self.isDisabled(self.activeDate)) {
+               return; // do nothing
+             }
+             $scope.select(self.activeDate);
+           } else if (evt.ctrlKey && (key === 'up' || key === 'down')) {
+             $scope.toggleMode(key === 'up' ? 1 : -1);
+           } else {
+             self.handleKeyDown(key, evt);
+             self.refreshView();
+           }
+         };
+
+         $scope.$on('$destroy', function() {
+           //Clear all watch listeners on destroy
+           while (watchListeners.length) {
+             watchListeners.shift()();
+           }
+         });
+
+         function setMode(mode) {
+           $scope.datepickerMode = mode;
+           $scope.datepickerOptions.datepickerMode = mode;
+         }
+       }])
+
+       .controller('UibDaypickerController', ['$scope', '$element', 'dateFilter', function(scope, $element, dateFilter) {
+         var DAYS_IN_MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
+
+         this.step = { months: 1 };
+         this.element = $element;
+         function getDaysInMonth(year, month) {
+           return month === 1 && year % 4 === 0 &&
+             (year % 100 !== 0 || year % 400 === 0) ? 29 : DAYS_IN_MONTH[month];
+         }
+
+         this.init = function(ctrl) {
+           angular.extend(ctrl, this);
+           scope.showWeeks = ctrl.showWeeks;
+           ctrl.refreshView();
+         };
+
+         this.getDates = function(startDate, n) {
+           var dates = new Array(n), current = new Date(startDate), i = 0, date;
+           while (i < n) {
+             date = new Date(current);
+             dates[i++] = date;
+             current.setDate(current.getDate() + 1);
+           }
+           return dates;
+         };
+
+         this._refreshView = function() {
+           var year = this.activeDate.getFullYear(),
+             month = this.activeDate.getMonth(),
+             firstDayOfMonth = new Date(this.activeDate);
+
+           firstDayOfMonth.setFullYear(year, month, 1);
+
+           var difference = this.startingDay - firstDayOfMonth.getDay(),
+             numDisplayedFromPreviousMonth = difference > 0 ?
+               7 - difference : - difference,
+             firstDate = new Date(firstDayOfMonth);
+
+           if (numDisplayedFromPreviousMonth > 0) {
+             firstDate.setDate(-numDisplayedFromPreviousMonth + 1);
+           }
+
+           // 42 is the number of days on a six-week calendar
+           var days = this.getDates(firstDate, 42);
+           for (var i = 0; i < 42; i ++) {
+             days[i] = angular.extend(this.createDateObject(days[i], this.formatDay), {
+               secondary: days[i].getMonth() !== month,
+               uid: scope.uniqueId + '-' + i
+             });
+           }
+
+           scope.labels = new Array(7);
+           for (var j = 0; j < 7; j++) {
+             scope.labels[j] = {
+               abbr: dateFilter(days[j].date, this.formatDayHeader),
+               full: dateFilter(days[j].date, 'EEEE')
+             };
+           }
+
+           scope.title = dateFilter(this.activeDate, this.formatDayTitle);
+           scope.rows = this.split(days, 7);
+
+           if (scope.showWeeks) {
+             scope.weekNumbers = [];
+             var thursdayIndex = (4 + 7 - this.startingDay) % 7,
+                 numWeeks = scope.rows.length;
+             for (var curWeek = 0; curWeek < numWeeks; curWeek++) {
+               scope.weekNumbers.push(
+                 getISO8601WeekNumber(scope.rows[curWeek][thursdayIndex].date));
+             }
+           }
+         };
+
+         this.compare = function(date1, date2) {
+           var _date1 = new Date(date1.getFullYear(), date1.getMonth(), date1.getDate());
+           var _date2 = new Date(date2.getFullYear(), date2.getMonth(), date2.getDate());
+           _date1.setFullYear(date1.getFullYear());
+           _date2.setFullYear(date2.getFullYear());
+           return _date1 - _date2;
+         };
+
+         function getISO8601WeekNumber(date) {
+           var checkDate = new Date(date);
+           checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7)); // Thursday
+           var time = checkDate.getTime();
+           checkDate.setMonth(0); // Compare with Jan 1
+           checkDate.setDate(1);
+           return Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1;
+         }
+
+         this.handleKeyDown = function(key, evt) {
+           var date = this.activeDate.getDate();
+
+           if (key === 'left') {
+             date = date - 1;
+           } else if (key === 'up') {
+             date = date - 7;
+           } else if (key === 'right') {
+             date = date + 1;
+           } else if (key === 'down') {
+             date = date + 7;
+           } else if (key === 'pageup' || key === 'pagedown') {
+             var month = this.activeDate.getMonth() + (key === 'pageup' ? - 1 : 1);
+             this.activeDate.setMonth(month, 1);
+             date = Math.min(getDaysInMonth(this.activeDate.getFullYear(), this.activeDate.getMonth()), date);
+           } else if (key === 'home') {
+             date = 1;
+           } else if (key === 'end') {
+             date = getDaysInMonth(this.activeDate.getFullYear(), this.activeDate.getMonth());
+           }
+           this.activeDate.setDate(date);
+         };
+       }])
+
+       .controller('UibMonthpickerController', ['$scope', '$element', 'dateFilter', function(scope, $element, dateFilter) {
+         this.step = { years: 1 };
+         this.element = $element;
+
+         this.init = function(ctrl) {
+           angular.extend(ctrl, this);
+           ctrl.refreshView();
+         };
+
+         this._refreshView = function() {
+           var months = new Array(12),
+               year = this.activeDate.getFullYear(),
+               date;
+
+           for (var i = 0; i < 12; i++) {
+             date = new Date(this.activeDate);
+             date.setFullYear(year, i, 1);
+             months[i] = angular.extend(this.createDateObject(date, this.formatMonth), {
+               uid: scope.uniqueId + '-' + i
+             });
+           }
+
+           scope.title = dateFilter(this.activeDate, this.formatMonthTitle);
+           scope.rows = this.split(months, 3);
+         };
+
+         this.compare = function(date1, date2) {
+           var _date1 = new Date(date1.getFullYear(), date1.getMonth());
+           var _date2 = new Date(date2.getFullYear(), date2.getMonth());
+           _date1.setFullYear(date1.getFullYear());
+           _date2.setFullYear(date2.getFullYear());
+           return _date1 - _date2;
+         };
+
+         this.handleKeyDown = function(key, evt) {
+           var date = this.activeDate.getMonth();
+
+           if (key === 'left') {
+             date = date - 1;
+           } else if (key === 'up') {
+             date = date - 3;
+           } else if (key === 'right') {
+             date = date + 1;
+           } else if (key === 'down') {
+             date = date + 3;
+           } else if (key === 'pageup' || key === 'pagedown') {
+             var year = this.activeDate.getFullYear() + (key === 'pageup' ? - 1 : 1);
+             this.activeDate.setFullYear(year);
+           } else if (key === 'home') {
+             date = 0;
+           } else if (key === 'end') {
+             date = 11;
+           }
+           this.activeDate.setMonth(date);
+         };
+       }])
+
+       .controller('UibYearpickerController', ['$scope', '$element', 'dateFilter', function(scope, $element, dateFilter) {
+         var columns, range;
+         this.element = $element;
+
+         function getStartingYear(year) {
+           return parseInt((year - 1) / range, 10) * range + 1;
+         }
+
+         this.yearpickerInit = function() {
+           columns = this.yearColumns;
+           range = this.yearRows * columns;
+           this.step = { years: range };
+         };
+
+         this._refreshView = function() {
+           var years = new Array(range), date;
+
+           for (var i = 0, start = getStartingYear(this.activeDate.getFullYear()); i < range; i++) {
+             date = new Date(this.activeDate);
+             date.setFullYear(start + i, 0, 1);
+             years[i] = angular.extend(this.createDateObject(date, this.formatYear), {
+               uid: scope.uniqueId + '-' + i
+             });
+           }
+
+           scope.title = [years[0].label, years[range - 1].label].join(' - ');
+           scope.rows = this.split(years, columns);
+           scope.columns = columns;
+         };
+
+         this.compare = function(date1, date2) {
+           return date1.getFullYear() - date2.getFullYear();
+         };
+
+         this.handleKeyDown = function(key, evt) {
+           var date = this.activeDate.getFullYear();
+
+           if (key === 'left') {
+             date = date - 1;
+           } else if (key === 'up') {
+             date = date - columns;
+           } else if (key === 'right') {
+             date = date + 1;
+           } else if (key === 'down') {
+             date = date + columns;
+           } else if (key === 'pageup' || key === 'pagedown') {
+             date += (key === 'pageup' ? - 1 : 1) * range;
+           } else if (key === 'home') {
+             date = getStartingYear(this.activeDate.getFullYear());
+           } else if (key === 'end') {
+             date = getStartingYear(this.activeDate.getFullYear()) + range - 1;
+           }
+           this.activeDate.setFullYear(date);
+         };
+       }])
+
+       .directive('uibDatepicker', function() {
+         return {
+           replace: true,
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/datepicker/datepicker.html';
+           },
+           scope: {
+             datepickerOptions: '=?'
+           },
+           require: ['uibDatepicker', '^ngModel'],
+           controller: 'UibDatepickerController',
+           controllerAs: 'datepicker',
+           link: function(scope, element, attrs, ctrls) {
+             var datepickerCtrl = ctrls[0], ngModelCtrl = ctrls[1];
+
+             datepickerCtrl.init(ngModelCtrl);
+           }
+         };
+       })
+
+       .directive('uibDaypicker', function() {
+         return {
+           replace: true,
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/datepicker/day.html';
+           },
+           require: ['^uibDatepicker', 'uibDaypicker'],
+           controller: 'UibDaypickerController',
+           link: function(scope, element, attrs, ctrls) {
+             var datepickerCtrl = ctrls[0],
+               daypickerCtrl = ctrls[1];
+
+             daypickerCtrl.init(datepickerCtrl);
+           }
+         };
+       })
+
+       .directive('uibMonthpicker', function() {
+         return {
+           replace: true,
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/datepicker/month.html';
+           },
+           require: ['^uibDatepicker', 'uibMonthpicker'],
+           controller: 'UibMonthpickerController',
+           link: function(scope, element, attrs, ctrls) {
+             var datepickerCtrl = ctrls[0],
+               monthpickerCtrl = ctrls[1];
+
+             monthpickerCtrl.init(datepickerCtrl);
+           }
+         };
+       })
+
+       .directive('uibYearpicker', function() {
+         return {
+           replace: true,
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/datepicker/year.html';
+           },
+           require: ['^uibDatepicker', 'uibYearpicker'],
+           controller: 'UibYearpickerController',
+           link: function(scope, element, attrs, ctrls) {
+             var ctrl = ctrls[0];
+             angular.extend(ctrl, ctrls[1]);
+             ctrl.yearpickerInit();
+
+             ctrl.refreshView();
+           }
+         };
+       });
+
+       angular.module('ui.bootstrap.position', [])
+
+       /**
+        * A set of utility methods for working with the DOM.
+        * It is meant to be used where we need to absolute-position elements in
+        * relation to another element (this is the case for tooltips, popovers,
+        * typeahead suggestions etc.).
+        */
+         .factory('$uibPosition', ['$document', '$window', function($document, $window) {
+           /**
+            * Used by scrollbarWidth() function to cache scrollbar's width.
+            * Do not access this variable directly, use scrollbarWidth() instead.
+            */
+           var SCROLLBAR_WIDTH;
+           /**
+            * scrollbar on body and html element in IE and Edge overlay
+            * content and should be considered 0 width.
+            */
+           var BODY_SCROLLBAR_WIDTH;
+           var OVERFLOW_REGEX = {
+             normal: /(auto|scroll)/,
+             hidden: /(auto|scroll|hidden)/
+           };
+           var PLACEMENT_REGEX = {
+             auto: /\s?auto?\s?/i,
+             primary: /^(top|bottom|left|right)$/,
+             secondary: /^(top|bottom|left|right|center)$/,
+             vertical: /^(top|bottom)$/
+           };
+           var BODY_REGEX = /(HTML|BODY)/;
+
+           return {
+
+             /**
+              * Provides a raw DOM element from a jQuery/jQLite element.
+              *
+              * @param {element} elem - The element to convert.
+              *
+              * @returns {element} A HTML element.
+              */
+             getRawNode: function(elem) {
+               return elem.nodeName ? elem : elem[0] || elem;
+             },
+
+             /**
+              * Provides a parsed number for a style property.  Strips
+              * units and casts invalid numbers to 0.
+              *
+              * @param {string} value - The style value to parse.
+              *
+              * @returns {number} A valid number.
+              */
+             parseStyle: function(value) {
+               value = parseFloat(value);
+               return isFinite(value) ? value : 0;
+             },
+
+             /**
+              * Provides the closest positioned ancestor.
+              *
+              * @param {element} element - The element to get the offest parent for.
+              *
+              * @returns {element} The closest positioned ancestor.
+              */
+             offsetParent: function(elem) {
+               elem = this.getRawNode(elem);
+
+               var offsetParent = elem.offsetParent || $document[0].documentElement;
+
+               function isStaticPositioned(el) {
+                 return ($window.getComputedStyle(el).position || 'static') === 'static';
+               }
+
+               while (offsetParent && offsetParent !== $document[0].documentElement && isStaticPositioned(offsetParent)) {
+                 offsetParent = offsetParent.offsetParent;
+               }
+
+               return offsetParent || $document[0].documentElement;
+             },
+
+             /**
+              * Provides the scrollbar width, concept from TWBS measureScrollbar()
+              * function in https://github.com/twbs/bootstrap/blob/master/js/modal.js
+              * In IE and Edge, scollbar on body and html element overlay and should
+              * return a width of 0.
+              *
+              * @returns {number} The width of the browser scollbar.
+              */
+             scrollbarWidth: function(isBody) {
+               if (isBody) {
+                 if (angular.isUndefined(BODY_SCROLLBAR_WIDTH)) {
+                   var bodyElem = $document.find('body');
+                   bodyElem.addClass('uib-position-body-scrollbar-measure');
+                   BODY_SCROLLBAR_WIDTH = $window.innerWidth - bodyElem[0].clientWidth;
+                   BODY_SCROLLBAR_WIDTH = isFinite(BODY_SCROLLBAR_WIDTH) ? BODY_SCROLLBAR_WIDTH : 0;
+                   bodyElem.removeClass('uib-position-body-scrollbar-measure');
+                 }
+                 return BODY_SCROLLBAR_WIDTH;
+               }
+
+               if (angular.isUndefined(SCROLLBAR_WIDTH)) {
+                 var scrollElem = angular.element('<div class="uib-position-scrollbar-measure"></div>');
+                 $document.find('body').append(scrollElem);
+                 SCROLLBAR_WIDTH = scrollElem[0].offsetWidth - scrollElem[0].clientWidth;
+                 SCROLLBAR_WIDTH = isFinite(SCROLLBAR_WIDTH) ? SCROLLBAR_WIDTH : 0;
+                 scrollElem.remove();
+               }
+
+               return SCROLLBAR_WIDTH;
+             },
+
+             /**
+              * Provides the padding required on an element to replace the scrollbar.
+              *
+              * @returns {object} An object with the following properties:
+              *   <ul>
+              *     <li>**scrollbarWidth**: the width of the scrollbar</li>
+              *     <li>**widthOverflow**: whether the the width is overflowing</li>
+              *     <li>**right**: the amount of right padding on the element needed to replace the scrollbar</li>
+              *     <li>**rightOriginal**: the amount of right padding currently on the element</li>
+              *     <li>**heightOverflow**: whether the the height is overflowing</li>
+              *     <li>**bottom**: the amount of bottom padding on the element needed to replace the scrollbar</li>
+              *     <li>**bottomOriginal**: the amount of bottom padding currently on the element</li>
+              *   </ul>
+              */
+             scrollbarPadding: function(elem) {
+               elem = this.getRawNode(elem);
+
+               var elemStyle = $window.getComputedStyle(elem);
+               var paddingRight = this.parseStyle(elemStyle.paddingRight);
+               var paddingBottom = this.parseStyle(elemStyle.paddingBottom);
+               var scrollParent = this.scrollParent(elem, false, true);
+               var scrollbarWidth = this.scrollbarWidth(scrollParent, BODY_REGEX.test(scrollParent.tagName));
+
+               return {
+                 scrollbarWidth: scrollbarWidth,
+                 widthOverflow: scrollParent.scrollWidth > scrollParent.clientWidth,
+                 right: paddingRight + scrollbarWidth,
+                 originalRight: paddingRight,
+                 heightOverflow: scrollParent.scrollHeight > scrollParent.clientHeight,
+                 bottom: paddingBottom + scrollbarWidth,
+                 originalBottom: paddingBottom
+                };
+             },
+
+             /**
+              * Checks to see if the element is scrollable.
+              *
+              * @param {element} elem - The element to check.
+              * @param {boolean=} [includeHidden=false] - Should scroll style of 'hidden' be considered,
+              *   default is false.
+              *
+              * @returns {boolean} Whether the element is scrollable.
+              */
+             isScrollable: function(elem, includeHidden) {
+               elem = this.getRawNode(elem);
+
+               var overflowRegex = includeHidden ? OVERFLOW_REGEX.hidden : OVERFLOW_REGEX.normal;
+               var elemStyle = $window.getComputedStyle(elem);
+               return overflowRegex.test(elemStyle.overflow + elemStyle.overflowY + elemStyle.overflowX);
+             },
+
+             /**
+              * Provides the closest scrollable ancestor.
+              * A port of the jQuery UI scrollParent method:
+              * https://github.com/jquery/jquery-ui/blob/master/ui/scroll-parent.js
+              *
+              * @param {element} elem - The element to find the scroll parent of.
+              * @param {boolean=} [includeHidden=false] - Should scroll style of 'hidden' be considered,
+              *   default is false.
+              * @param {boolean=} [includeSelf=false] - Should the element being passed be
+              * included in the scrollable llokup.
+              *
+              * @returns {element} A HTML element.
+              */
+             scrollParent: function(elem, includeHidden, includeSelf) {
+               elem = this.getRawNode(elem);
+
+               var overflowRegex = includeHidden ? OVERFLOW_REGEX.hidden : OVERFLOW_REGEX.normal;
+               var documentEl = $document[0].documentElement;
+               var elemStyle = $window.getComputedStyle(elem);
+               if (includeSelf && overflowRegex.test(elemStyle.overflow + elemStyle.overflowY + elemStyle.overflowX)) {
+                 return elem;
+               }
+               var excludeStatic = elemStyle.position === 'absolute';
+               var scrollParent = elem.parentElement || documentEl;
+
+               if (scrollParent === documentEl || elemStyle.position === 'fixed') {
+                 return documentEl;
+               }
+
+               while (scrollParent.parentElement && scrollParent !== documentEl) {
+                 var spStyle = $window.getComputedStyle(scrollParent);
+                 if (excludeStatic && spStyle.position !== 'static') {
+                   excludeStatic = false;
+                 }
+
+                 if (!excludeStatic && overflowRegex.test(spStyle.overflow + spStyle.overflowY + spStyle.overflowX)) {
+                   break;
+                 }
+                 scrollParent = scrollParent.parentElement;
+               }
+
+               return scrollParent;
+             },
+
+             /**
+              * Provides read-only equivalent of jQuery's position function:
+              * http://api.jquery.com/position/ - distance to closest positioned
+              * ancestor.  Does not account for margins by default like jQuery position.
+              *
+              * @param {element} elem - The element to caclulate the position on.
+              * @param {boolean=} [includeMargins=false] - Should margins be accounted
+              * for, default is false.
+              *
+              * @returns {object} An object with the following properties:
+              *   <ul>
+              *     <li>**width**: the width of the element</li>
+              *     <li>**height**: the height of the element</li>
+              *     <li>**top**: distance to top edge of offset parent</li>
+              *     <li>**left**: distance to left edge of offset parent</li>
+              *   </ul>
+              */
+             position: function(elem, includeMagins) {
+               elem = this.getRawNode(elem);
+
+               var elemOffset = this.offset(elem);
+               if (includeMagins) {
+                 var elemStyle = $window.getComputedStyle(elem);
+                 elemOffset.top -= this.parseStyle(elemStyle.marginTop);
+                 elemOffset.left -= this.parseStyle(elemStyle.marginLeft);
+               }
+               var parent = this.offsetParent(elem);
+               var parentOffset = {top: 0, left: 0};
+
+               if (parent !== $document[0].documentElement) {
+                 parentOffset = this.offset(parent);
+                 parentOffset.top += parent.clientTop - parent.scrollTop;
+                 parentOffset.left += parent.clientLeft - parent.scrollLeft;
+               }
+
+               return {
+                 width: Math.round(angular.isNumber(elemOffset.width) ? elemOffset.width : elem.offsetWidth),
+                 height: Math.round(angular.isNumber(elemOffset.height) ? elemOffset.height : elem.offsetHeight),
+                 top: Math.round(elemOffset.top - parentOffset.top),
+                 left: Math.round(elemOffset.left - parentOffset.left)
+               };
+             },
+
+             /**
+              * Provides read-only equivalent of jQuery's offset function:
+              * http://api.jquery.com/offset/ - distance to viewport.  Does
+              * not account for borders, margins, or padding on the body
+              * element.
+              *
+              * @param {element} elem - The element to calculate the offset on.
+              *
+              * @returns {object} An object with the following properties:
+              *   <ul>
+              *     <li>**width**: the width of the element</li>
+              *     <li>**height**: the height of the element</li>
+              *     <li>**top**: distance to top edge of viewport</li>
+              *     <li>**right**: distance to bottom edge of viewport</li>
+              *   </ul>
+              */
+             offset: function(elem) {
+               elem = this.getRawNode(elem);
+
+               var elemBCR = elem.getBoundingClientRect();
+               return {
+                 width: Math.round(angular.isNumber(elemBCR.width) ? elemBCR.width : elem.offsetWidth),
+                 height: Math.round(angular.isNumber(elemBCR.height) ? elemBCR.height : elem.offsetHeight),
+                 top: Math.round(elemBCR.top + ($window.pageYOffset || $document[0].documentElement.scrollTop)),
+                 left: Math.round(elemBCR.left + ($window.pageXOffset || $document[0].documentElement.scrollLeft))
+               };
+             },
+
+             /**
+              * Provides offset distance to the closest scrollable ancestor
+              * or viewport.  Accounts for border and scrollbar width.
+              *
+              * Right and bottom dimensions represent the distance to the
+              * respective edge of the viewport element.  If the element
+              * edge extends beyond the viewport, a negative value will be
+              * reported.
+              *
+              * @param {element} elem - The element to get the viewport offset for.
+              * @param {boolean=} [useDocument=false] - Should the viewport be the document element instead
+              * of the first scrollable element, default is false.
+              * @param {boolean=} [includePadding=true] - Should the padding on the offset parent element
+              * be accounted for, default is true.
+              *
+              * @returns {object} An object with the following properties:
+              *   <ul>
+              *     <li>**top**: distance to the top content edge of viewport element</li>
+              *     <li>**bottom**: distance to the bottom content edge of viewport element</li>
+              *     <li>**left**: distance to the left content edge of viewport element</li>
+              *     <li>**right**: distance to the right content edge of viewport element</li>
+              *   </ul>
+              */
+             viewportOffset: function(elem, useDocument, includePadding) {
+               elem = this.getRawNode(elem);
+               includePadding = includePadding !== false ? true : false;
+
+               var elemBCR = elem.getBoundingClientRect();
+               var offsetBCR = {top: 0, left: 0, bottom: 0, right: 0};
+
+               var offsetParent = useDocument ? $document[0].documentElement : this.scrollParent(elem);
+               var offsetParentBCR = offsetParent.getBoundingClientRect();
+
+               offsetBCR.top = offsetParentBCR.top + offsetParent.clientTop;
+               offsetBCR.left = offsetParentBCR.left + offsetParent.clientLeft;
+               if (offsetParent === $document[0].documentElement) {
+                 offsetBCR.top += $window.pageYOffset;
+                 offsetBCR.left += $window.pageXOffset;
+               }
+               offsetBCR.bottom = offsetBCR.top + offsetParent.clientHeight;
+               offsetBCR.right = offsetBCR.left + offsetParent.clientWidth;
+
+               if (includePadding) {
+                 var offsetParentStyle = $window.getComputedStyle(offsetParent);
+                 offsetBCR.top += this.parseStyle(offsetParentStyle.paddingTop);
+                 offsetBCR.bottom -= this.parseStyle(offsetParentStyle.paddingBottom);
+                 offsetBCR.left += this.parseStyle(offsetParentStyle.paddingLeft);
+                 offsetBCR.right -= this.parseStyle(offsetParentStyle.paddingRight);
+               }
+
+               return {
+                 top: Math.round(elemBCR.top - offsetBCR.top),
+                 bottom: Math.round(offsetBCR.bottom - elemBCR.bottom),
+                 left: Math.round(elemBCR.left - offsetBCR.left),
+                 right: Math.round(offsetBCR.right - elemBCR.right)
+               };
+             },
+
+             /**
+              * Provides an array of placement values parsed from a placement string.
+              * Along with the 'auto' indicator, supported placement strings are:
+              *   <ul>
+              *     <li>top: element on top, horizontally centered on host element.</li>
+              *     <li>top-left: element on top, left edge aligned with host element left edge.</li>
+              *     <li>top-right: element on top, lerightft edge aligned with host element right edge.</li>
+              *     <li>bottom: element on bottom, horizontally centered on host element.</li>
+              *     <li>bottom-left: element on bottom, left edge aligned with host element left edge.</li>
+              *     <li>bottom-right: element on bottom, right edge aligned with host element right edge.</li>
+              *     <li>left: element on left, vertically centered on host element.</li>
+              *     <li>left-top: element on left, top edge aligned with host element top edge.</li>
+              *     <li>left-bottom: element on left, bottom edge aligned with host element bottom edge.</li>
+              *     <li>right: element on right, vertically centered on host element.</li>
+              *     <li>right-top: element on right, top edge aligned with host element top edge.</li>
+              *     <li>right-bottom: element on right, bottom edge aligned with host element bottom edge.</li>
+              *   </ul>
+              * A placement string with an 'auto' indicator is expected to be
+              * space separated from the placement, i.e: 'auto bottom-left'  If
+              * the primary and secondary placement values do not match 'top,
+              * bottom, left, right' then 'top' will be the primary placement and
+              * 'center' will be the secondary placement.  If 'auto' is passed, true
+              * will be returned as the 3rd value of the array.
+              *
+              * @param {string} placement - The placement string to parse.
+              *
+              * @returns {array} An array with the following values
+              * <ul>
+              *   <li>**[0]**: The primary placement.</li>
+              *   <li>**[1]**: The secondary placement.</li>
+              *   <li>**[2]**: If auto is passed: true, else undefined.</li>
+              * </ul>
+              */
+             parsePlacement: function(placement) {
+               var autoPlace = PLACEMENT_REGEX.auto.test(placement);
+               if (autoPlace) {
+                 placement = placement.replace(PLACEMENT_REGEX.auto, '');
+               }
+
+               placement = placement.split('-');
+
+               placement[0] = placement[0] || 'top';
+               if (!PLACEMENT_REGEX.primary.test(placement[0])) {
+                 placement[0] = 'top';
+               }
+
+               placement[1] = placement[1] || 'center';
+               if (!PLACEMENT_REGEX.secondary.test(placement[1])) {
+                 placement[1] = 'center';
+               }
+
+               if (autoPlace) {
+                 placement[2] = true;
+               } else {
+                 placement[2] = false;
+               }
+
+               return placement;
+             },
+
+             /**
+              * Provides coordinates for an element to be positioned relative to
+              * another element.  Passing 'auto' as part of the placement parameter
+              * will enable smart placement - where the element fits. i.e:
+              * 'auto left-top' will check to see if there is enough space to the left
+              * of the hostElem to fit the targetElem, if not place right (same for secondary
+              * top placement).  Available space is calculated using the viewportOffset
+              * function.
+              *
+              * @param {element} hostElem - The element to position against.
+              * @param {element} targetElem - The element to position.
+              * @param {string=} [placement=top] - The placement for the targetElem,
+              *   default is 'top'. 'center' is assumed as secondary placement for
+              *   'top', 'left', 'right', and 'bottom' placements.  Available placements are:
+              *   <ul>
+              *     <li>top</li>
+              *     <li>top-right</li>
+              *     <li>top-left</li>
+              *     <li>bottom</li>
+              *     <li>bottom-left</li>
+              *     <li>bottom-right</li>
+              *     <li>left</li>
+              *     <li>left-top</li>
+              *     <li>left-bottom</li>
+              *     <li>right</li>
+              *     <li>right-top</li>
+              *     <li>right-bottom</li>
+              *   </ul>
+              * @param {boolean=} [appendToBody=false] - Should the top and left values returned
+              *   be calculated from the body element, default is false.
+              *
+              * @returns {object} An object with the following properties:
+              *   <ul>
+              *     <li>**top**: Value for targetElem top.</li>
+              *     <li>**left**: Value for targetElem left.</li>
+              *     <li>**placement**: The resolved placement.</li>
+              *   </ul>
+              */
+             positionElements: function(hostElem, targetElem, placement, appendToBody) {
+               hostElem = this.getRawNode(hostElem);
+               targetElem = this.getRawNode(targetElem);
+
+               // need to read from prop to support tests.
+               var targetWidth = angular.isDefined(targetElem.offsetWidth) ? targetElem.offsetWidth : targetElem.prop('offsetWidth');
+               var targetHeight = angular.isDefined(targetElem.offsetHeight) ? targetElem.offsetHeight : targetElem.prop('offsetHeight');
+
+               placement = this.parsePlacement(placement);
+
+               var hostElemPos = appendToBody ? this.offset(hostElem) : this.position(hostElem);
+               var targetElemPos = {top: 0, left: 0, placement: ''};
+
+               if (placement[2]) {
+                 var viewportOffset = this.viewportOffset(hostElem, appendToBody);
+
+                 var targetElemStyle = $window.getComputedStyle(targetElem);
+                 var adjustedSize = {
+                   width: targetWidth + Math.round(Math.abs(this.parseStyle(targetElemStyle.marginLeft) + this.parseStyle(targetElemStyle.marginRight))),
+                   height: targetHeight + Math.round(Math.abs(this.parseStyle(targetElemStyle.marginTop) + this.parseStyle(targetElemStyle.marginBottom)))
+                 };
+
+                 placement[0] = placement[0] === 'top' && adjustedSize.height > viewportOffset.top && adjustedSize.height <= viewportOffset.bottom ? 'bottom' :
+                                placement[0] === 'bottom' && adjustedSize.height > viewportOffset.bottom && adjustedSize.height <= viewportOffset.top ? 'top' :
+                                placement[0] === 'left' && adjustedSize.width > viewportOffset.left && adjustedSize.width <= viewportOffset.right ? 'right' :
+                                placement[0] === 'right' && adjustedSize.width > viewportOffset.right && adjustedSize.width <= viewportOffset.left ? 'left' :
+                                placement[0];
+
+                 placement[1] = placement[1] === 'top' && adjustedSize.height - hostElemPos.height > viewportOffset.bottom && adjustedSize.height - hostElemPos.height <= viewportOffset.top ? 'bottom' :
+                                placement[1] === 'bottom' && adjustedSize.height - hostElemPos.height > viewportOffset.top && adjustedSize.height - hostElemPos.height <= viewportOffset.bottom ? 'top' :
+                                placement[1] === 'left' && adjustedSize.width - hostElemPos.width > viewportOffset.right && adjustedSize.width - hostElemPos.width <= viewportOffset.left ? 'right' :
+                                placement[1] === 'right' && adjustedSize.width - hostElemPos.width > viewportOffset.left && adjustedSize.width - hostElemPos.width <= viewportOffset.right ? 'left' :
+                                placement[1];
+
+                 if (placement[1] === 'center') {
+                   if (PLACEMENT_REGEX.vertical.test(placement[0])) {
+                     var xOverflow = hostElemPos.width / 2 - targetWidth / 2;
+                     if (viewportOffset.left + xOverflow < 0 && adjustedSize.width - hostElemPos.width <= viewportOffset.right) {
+                       placement[1] = 'left';
+                     } else if (viewportOffset.right + xOverflow < 0 && adjustedSize.width - hostElemPos.width <= viewportOffset.left) {
+                       placement[1] = 'right';
+                     }
+                   } else {
+                     var yOverflow = hostElemPos.height / 2 - adjustedSize.height / 2;
+                     if (viewportOffset.top + yOverflow < 0 && adjustedSize.height - hostElemPos.height <= viewportOffset.bottom) {
+                       placement[1] = 'top';
+                     } else if (viewportOffset.bottom + yOverflow < 0 && adjustedSize.height - hostElemPos.height <= viewportOffset.top) {
+                       placement[1] = 'bottom';
+                     }
+                   }
+                 }
+               }
+
+               switch (placement[0]) {
+                 case 'top':
+                   targetElemPos.top = hostElemPos.top - targetHeight;
+                   break;
+                 case 'bottom':
+                   targetElemPos.top = hostElemPos.top + hostElemPos.height;
+                   break;
+                 case 'left':
+                   targetElemPos.left = hostElemPos.left - targetWidth;
+                   break;
+                 case 'right':
+                   targetElemPos.left = hostElemPos.left + hostElemPos.width;
+                   break;
+               }
+
+               switch (placement[1]) {
+                 case 'top':
+                   targetElemPos.top = hostElemPos.top;
+                   break;
+                 case 'bottom':
+                   targetElemPos.top = hostElemPos.top + hostElemPos.height - targetHeight;
+                   break;
+                 case 'left':
+                   targetElemPos.left = hostElemPos.left;
+                   break;
+                 case 'right':
+                   targetElemPos.left = hostElemPos.left + hostElemPos.width - targetWidth;
+                   break;
+                 case 'center':
+                   if (PLACEMENT_REGEX.vertical.test(placement[0])) {
+                     targetElemPos.left = hostElemPos.left + hostElemPos.width / 2 - targetWidth / 2;
+                   } else {
+                     targetElemPos.top = hostElemPos.top + hostElemPos.height / 2 - targetHeight / 2;
+                   }
+                   break;
+               }
+
+               targetElemPos.top = Math.round(targetElemPos.top);
+               targetElemPos.left = Math.round(targetElemPos.left);
+               targetElemPos.placement = placement[1] === 'center' ? placement[0] : placement[0] + '-' + placement[1];
+
+               return targetElemPos;
+             },
+
+             /**
+             * Provides a way for positioning tooltip & dropdown
+             * arrows when using placement options beyond the standard
+             * left, right, top, or bottom.
+             *
+             * @param {element} elem - The tooltip/dropdown element.
+             * @param {string} placement - The placement for the elem.
+             */
+             positionArrow: function(elem, placement) {
+               elem = this.getRawNode(elem);
+
+               var innerElem = elem.querySelector('.tooltip-inner, .popover-inner');
+               if (!innerElem) {
+                 return;
+               }
+
+               var isTooltip = angular.element(innerElem).hasClass('tooltip-inner');
+
+               var arrowElem = isTooltip ? elem.querySelector('.tooltip-arrow') : elem.querySelector('.arrow');
+               if (!arrowElem) {
+                 return;
+               }
+
+               var arrowCss = {
+                 top: '',
+                 bottom: '',
+                 left: '',
+                 right: ''
+               };
+
+               placement = this.parsePlacement(placement);
+               if (placement[1] === 'center') {
+                 // no adjustment necessary - just reset styles
+                 angular.element(arrowElem).css(arrowCss);
+                 return;
+               }
+
+               var borderProp = 'border-' + placement[0] + '-width';
+               var borderWidth = $window.getComputedStyle(arrowElem)[borderProp];
+
+               var borderRadiusProp = 'border-';
+               if (PLACEMENT_REGEX.vertical.test(placement[0])) {
+                 borderRadiusProp += placement[0] + '-' + placement[1];
+               } else {
+                 borderRadiusProp += placement[1] + '-' + placement[0];
+               }
+               borderRadiusProp += '-radius';
+               var borderRadius = $window.getComputedStyle(isTooltip ? innerElem : elem)[borderRadiusProp];
+
+               switch (placement[0]) {
+                 case 'top':
+                   arrowCss.bottom = isTooltip ? '0' : '-' + borderWidth;
+                   break;
+                 case 'bottom':
+                   arrowCss.top = isTooltip ? '0' : '-' + borderWidth;
+                   break;
+                 case 'left':
+                   arrowCss.right = isTooltip ? '0' : '-' + borderWidth;
+                   break;
+                 case 'right':
+                   arrowCss.left = isTooltip ? '0' : '-' + borderWidth;
+                   break;
+               }
+
+               arrowCss[placement[1]] = borderRadius;
+
+               angular.element(arrowElem).css(arrowCss);
+             }
+           };
+         }]);
+
+       angular.module('ui.bootstrap.datepickerPopup', ['ui.bootstrap.datepicker', 'ui.bootstrap.position'])
+
+       .value('$datepickerPopupLiteralWarning', true)
+
+       .constant('uibDatepickerPopupConfig', {
+         altInputFormats: [],
+         appendToBody: false,
+         clearText: 'Clear',
+         closeOnDateSelection: true,
+         closeText: 'Done',
+         currentText: 'Today',
+         datepickerPopup: 'yyyy-MM-dd',
+         datepickerPopupTemplateUrl: 'uib/template/datepickerPopup/popup.html',
+         datepickerTemplateUrl: 'uib/template/datepicker/datepicker.html',
+         html5Types: {
+           date: 'yyyy-MM-dd',
+           'datetime-local': 'yyyy-MM-ddTHH:mm:ss.sss',
+           'month': 'yyyy-MM'
+         },
+         onOpenFocus: true,
+         showButtonBar: true,
+         placement: 'auto bottom-left'
+       })
+
+       .controller('UibDatepickerPopupController', ['$scope', '$element', '$attrs', '$compile', '$log', '$parse', '$window', '$document', '$rootScope', '$uibPosition', 'dateFilter', 'uibDateParser', 'uibDatepickerPopupConfig', '$timeout', 'uibDatepickerConfig', '$datepickerPopupLiteralWarning',
+       function($scope, $element, $attrs, $compile, $log, $parse, $window, $document, $rootScope, $position, dateFilter, dateParser, datepickerPopupConfig, $timeout, datepickerConfig, $datepickerPopupLiteralWarning) {
+         var cache = {},
+           isHtml5DateInput = false;
+         var dateFormat, closeOnDateSelection, appendToBody, onOpenFocus,
+           datepickerPopupTemplateUrl, datepickerTemplateUrl, popupEl, datepickerEl, scrollParentEl,
+           ngModel, ngModelOptions, $popup, altInputFormats, watchListeners = [],
+           timezone;
+
+         this.init = function(_ngModel_) {
+           ngModel = _ngModel_;
+           ngModelOptions = _ngModel_.$options;
+           closeOnDateSelection = angular.isDefined($attrs.closeOnDateSelection) ?
+             $scope.$parent.$eval($attrs.closeOnDateSelection) :
+             datepickerPopupConfig.closeOnDateSelection;
+           appendToBody = angular.isDefined($attrs.datepickerAppendToBody) ?
+             $scope.$parent.$eval($attrs.datepickerAppendToBody) :
+             datepickerPopupConfig.appendToBody;
+           onOpenFocus = angular.isDefined($attrs.onOpenFocus) ?
+             $scope.$parent.$eval($attrs.onOpenFocus) : datepickerPopupConfig.onOpenFocus;
+           datepickerPopupTemplateUrl = angular.isDefined($attrs.datepickerPopupTemplateUrl) ?
+             $attrs.datepickerPopupTemplateUrl :
+             datepickerPopupConfig.datepickerPopupTemplateUrl;
+           datepickerTemplateUrl = angular.isDefined($attrs.datepickerTemplateUrl) ?
+             $attrs.datepickerTemplateUrl : datepickerPopupConfig.datepickerTemplateUrl;
+           altInputFormats = angular.isDefined($attrs.altInputFormats) ?
+             $scope.$parent.$eval($attrs.altInputFormats) :
+             datepickerPopupConfig.altInputFormats;
+
+           $scope.showButtonBar = angular.isDefined($attrs.showButtonBar) ?
+             $scope.$parent.$eval($attrs.showButtonBar) :
+             datepickerPopupConfig.showButtonBar;
+
+           if (datepickerPopupConfig.html5Types[$attrs.type]) {
+             dateFormat = datepickerPopupConfig.html5Types[$attrs.type];
+             isHtml5DateInput = true;
+           } else {
+             dateFormat = $attrs.uibDatepickerPopup || datepickerPopupConfig.datepickerPopup;
+             $attrs.$observe('uibDatepickerPopup', function(value, oldValue) {
+               var newDateFormat = value || datepickerPopupConfig.datepickerPopup;
+               // Invalidate the $modelValue to ensure that formatters re-run
+               // FIXME: Refactor when PR is merged: https://github.com/angular/angular.js/pull/10764
+               if (newDateFormat !== dateFormat) {
+                 dateFormat = newDateFormat;
+                 ngModel.$modelValue = null;
+
+                 if (!dateFormat) {
+                   throw new Error('uibDatepickerPopup must have a date format specified.');
+                 }
+               }
+             });
+           }
+
+           if (!dateFormat) {
+             throw new Error('uibDatepickerPopup must have a date format specified.');
+           }
+
+           if (isHtml5DateInput && $attrs.uibDatepickerPopup) {
+             throw new Error('HTML5 date input types do not support custom formats.');
+           }
+
+           // popup element used to display calendar
+           popupEl = angular.element('<div uib-datepicker-popup-wrap><div uib-datepicker></div></div>');
+           if (ngModelOptions) {
+             timezone = ngModelOptions.timezone;
+             $scope.ngModelOptions = angular.copy(ngModelOptions);
+             $scope.ngModelOptions.timezone = null;
+             if ($scope.ngModelOptions.updateOnDefault === true) {
+               $scope.ngModelOptions.updateOn = $scope.ngModelOptions.updateOn ?
+                 $scope.ngModelOptions.updateOn + ' default' : 'default';
+             }
+
+             popupEl.attr('ng-model-options', 'ngModelOptions');
+           } else {
+             timezone = null;
+           }
+
+           popupEl.attr({
+             'ng-model': 'date',
+             'ng-change': 'dateSelection(date)',
+             'template-url': datepickerPopupTemplateUrl
+           });
+
+           // datepicker element
+           datepickerEl = angular.element(popupEl.children()[0]);
+           datepickerEl.attr('template-url', datepickerTemplateUrl);
+
+           if (!$scope.datepickerOptions) {
+             $scope.datepickerOptions = {};
+           }
+
+           if (isHtml5DateInput) {
+             if ($attrs.type === 'month') {
+               $scope.datepickerOptions.datepickerMode = 'month';
+               $scope.datepickerOptions.minMode = 'month';
+             }
+           }
+
+           datepickerEl.attr('datepicker-options', 'datepickerOptions');
+
+           if (!isHtml5DateInput) {
+             // Internal API to maintain the correct ng-invalid-[key] class
+             ngModel.$$parserName = 'date';
+             ngModel.$validators.date = validator;
+             ngModel.$parsers.unshift(parseDate);
+             ngModel.$formatters.push(function(value) {
+               if (ngModel.$isEmpty(value)) {
+                 $scope.date = value;
+                 return value;
+               }
+
+               if (angular.isNumber(value)) {
+                 value = new Date(value);
+               }
+
+               $scope.date = dateParser.fromTimezone(value, timezone);
+
+               return dateParser.filter($scope.date, dateFormat);
+             });
+           } else {
+             ngModel.$formatters.push(function(value) {
+               $scope.date = dateParser.fromTimezone(value, timezone);
+               return value;
+             });
+           }
+
+           // Detect changes in the view from the text box
+           ngModel.$viewChangeListeners.push(function() {
+             $scope.date = parseDateString(ngModel.$viewValue);
+           });
+
+           $element.on('keydown', inputKeydownBind);
+
+           $popup = $compile(popupEl)($scope);
+           // Prevent jQuery cache memory leak (template is now redundant after linking)
+           popupEl.remove();
+
+           if (appendToBody) {
+             $document.find('body').append($popup);
+           } else {
+             $element.after($popup);
+           }
+
+           $scope.$on('$destroy', function() {
+             if ($scope.isOpen === true) {
+               if (!$rootScope.$$phase) {
+                 $scope.$apply(function() {
+                   $scope.isOpen = false;
+                 });
+               }
+             }
+
+             $popup.remove();
+             $element.off('keydown', inputKeydownBind);
+             $document.off('click', documentClickBind);
+             if (scrollParentEl) {
+               scrollParentEl.off('scroll', positionPopup);
+             }
+             angular.element($window).off('resize', positionPopup);
+
+             //Clear all watch listeners on destroy
+             while (watchListeners.length) {
+               watchListeners.shift()();
+             }
+           });
+         };
+
+         $scope.getText = function(key) {
+           return $scope[key + 'Text'] || datepickerPopupConfig[key + 'Text'];
+         };
+
+         $scope.isDisabled = function(date) {
+           if (date === 'today') {
+             date = dateParser.fromTimezone(new Date(), timezone);
+           }
+
+           var dates = {};
+           angular.forEach(['minDate', 'maxDate'], function(key) {
+             if (!$scope.datepickerOptions[key]) {
+               dates[key] = null;
+             } else if (angular.isDate($scope.datepickerOptions[key])) {
+               dates[key] = dateParser.fromTimezone(new Date($scope.datepickerOptions[key]), timezone);
+             } else {
+               if ($datepickerPopupLiteralWarning) {
+                 $log.warn('Literal date support has been deprecated, please switch to date object usage');
+               }
+
+               dates[key] = new Date(dateFilter($scope.datepickerOptions[key], 'medium'));
+             }
+           });
+
+           return $scope.datepickerOptions &&
+             dates.minDate && $scope.compare(date, dates.minDate) < 0 ||
+             dates.maxDate && $scope.compare(date, dates.maxDate) > 0;
+         };
+
+         $scope.compare = function(date1, date2) {
+           return new Date(date1.getFullYear(), date1.getMonth(), date1.getDate()) - new Date(date2.getFullYear(), date2.getMonth(), date2.getDate());
+         };
+
+         // Inner change
+         $scope.dateSelection = function(dt) {
+           if (angular.isDefined(dt)) {
+             $scope.date = dt;
+           }
+           var date = $scope.date ? dateParser.filter($scope.date, dateFormat) : null; // Setting to NULL is necessary for form validators to function
+           $element.val(date);
+           ngModel.$setViewValue(date);
+
+           if (closeOnDateSelection) {
+             $scope.isOpen = false;
+             $element[0].focus();
+           }
+         };
+
+         $scope.keydown = function(evt) {
+           if (evt.which === 27) {
+             evt.stopPropagation();
+             $scope.isOpen = false;
+             $element[0].focus();
+           }
+         };
+
+         $scope.select = function(date, evt) {
+           evt.stopPropagation();
+
+           if (date === 'today') {
+             var today = new Date();
+             if (angular.isDate($scope.date)) {
+               date = new Date($scope.date);
+               date.setFullYear(today.getFullYear(), today.getMonth(), today.getDate());
+             } else {
+               date = new Date(today.setHours(0, 0, 0, 0));
+             }
+           }
+           $scope.dateSelection(date);
+         };
+
+         $scope.close = function(evt) {
+           evt.stopPropagation();
+
+           $scope.isOpen = false;
+           $element[0].focus();
+         };
+
+         $scope.disabled = angular.isDefined($attrs.disabled) || false;
+         if ($attrs.ngDisabled) {
+           watchListeners.push($scope.$parent.$watch($parse($attrs.ngDisabled), function(disabled) {
+             $scope.disabled = disabled;
+           }));
+         }
+
+         $scope.$watch('isOpen', function(value) {
+           if (value) {
+             if (!$scope.disabled) {
+               $timeout(function() {
+                 positionPopup();
+
+                 if (onOpenFocus) {
+                   $scope.$broadcast('uib:datepicker.focus');
+                 }
+
+                 $document.on('click', documentClickBind);
+
+                 var placement = $attrs.popupPlacement ? $attrs.popupPlacement : datepickerPopupConfig.placement;
+                 if (appendToBody || $position.parsePlacement(placement)[2]) {
+                   scrollParentEl = scrollParentEl || angular.element($position.scrollParent($element));
+                   if (scrollParentEl) {
+                     scrollParentEl.on('scroll', positionPopup);
+                   }
+                 } else {
+                   scrollParentEl = null;
+                 }
+
+                 angular.element($window).on('resize', positionPopup);
+               }, 0, false);
+             } else {
+               $scope.isOpen = false;
+             }
+           } else {
+             $document.off('click', documentClickBind);
+             if (scrollParentEl) {
+               scrollParentEl.off('scroll', positionPopup);
+             }
+             angular.element($window).off('resize', positionPopup);
+           }
+         });
+
+         function cameltoDash(string) {
+           return string.replace(/([A-Z])/g, function($1) { return '-' + $1.toLowerCase(); });
+         }
+
+         function parseDateString(viewValue) {
+           var date = dateParser.parse(viewValue, dateFormat, $scope.date);
+           if (isNaN(date)) {
+             for (var i = 0; i < altInputFormats.length; i++) {
+               date = dateParser.parse(viewValue, altInputFormats[i], $scope.date);
+               if (!isNaN(date)) {
+                 return date;
+               }
+             }
+           }
+           return date;
+         }
+
+         function parseDate(viewValue) {
+           if (angular.isNumber(viewValue)) {
+             // presumably timestamp to date object
+             viewValue = new Date(viewValue);
+           }
+
+           if (!viewValue) {
+             return null;
+           }
+
+           if (angular.isDate(viewValue) && !isNaN(viewValue)) {
+             return viewValue;
+           }
+
+           if (angular.isString(viewValue)) {
+             var date = parseDateString(viewValue);
+             if (!isNaN(date)) {
+               return dateParser.toTimezone(date, timezone);
+             }
+           }
+
+           return ngModel.$options && ngModel.$options.allowInvalid ? viewValue : undefined;
+         }
+
+         function validator(modelValue, viewValue) {
+           var value = modelValue || viewValue;
+
+           if (!$attrs.ngRequired && !value) {
+             return true;
+           }
+
+           if (angular.isNumber(value)) {
+             value = new Date(value);
+           }
+
+           if (!value) {
+             return true;
+           }
+
+           if (angular.isDate(value) && !isNaN(value)) {
+             return true;
+           }
+
+           if (angular.isString(value)) {
+             return !isNaN(parseDateString(viewValue));
+           }
+
+           return false;
+         }
+
+         function documentClickBind(event) {
+           if (!$scope.isOpen && $scope.disabled) {
+             return;
+           }
+
+           var popup = $popup[0];
+           var dpContainsTarget = $element[0].contains(event.target);
+           // The popup node may not be an element node
+           // In some browsers (IE) only element nodes have the 'contains' function
+           var popupContainsTarget = popup.contains !== undefined && popup.contains(event.target);
+           if ($scope.isOpen && !(dpContainsTarget || popupContainsTarget)) {
+             $scope.$apply(function() {
+               $scope.isOpen = false;
+             });
+           }
+         }
+
+         function inputKeydownBind(evt) {
+           if (evt.which === 27 && $scope.isOpen) {
+             evt.preventDefault();
+             evt.stopPropagation();
+             $scope.$apply(function() {
+               $scope.isOpen = false;
+             });
+             $element[0].focus();
+           } else if (evt.which === 40 && !$scope.isOpen) {
+             evt.preventDefault();
+             evt.stopPropagation();
+             $scope.$apply(function() {
+               $scope.isOpen = true;
+             });
+           }
+         }
+
+         function positionPopup() {
+           if ($scope.isOpen) {
+             var dpElement = angular.element($popup[0].querySelector('.uib-datepicker-popup'));
+             var placement = $attrs.popupPlacement ? $attrs.popupPlacement : datepickerPopupConfig.placement;
+             var position = $position.positionElements($element, dpElement, placement, appendToBody);
+             dpElement.css({top: position.top + 'px', left: position.left + 'px'});
+             if (dpElement.hasClass('uib-position-measure')) {
+               dpElement.removeClass('uib-position-measure');
+             }
+           }
+         }
+
+         $scope.$on('uib:datepicker.mode', function() {
+           $timeout(positionPopup, 0, false);
+         });
+       }])
+
+       .directive('uibDatepickerPopup', function() {
+         return {
+           require: ['ngModel', 'uibDatepickerPopup'],
+           controller: 'UibDatepickerPopupController',
+           scope: {
+             datepickerOptions: '=?',
+             isOpen: '=?',
+             currentText: '@',
+             clearText: '@',
+             closeText: '@'
+           },
+           link: function(scope, element, attrs, ctrls) {
+             var ngModel = ctrls[0],
+               ctrl = ctrls[1];
+
+             ctrl.init(ngModel);
+           }
+         };
+       })
+
+       .directive('uibDatepickerPopupWrap', function() {
+         return {
+           replace: true,
+           transclude: true,
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/datepickerPopup/popup.html';
+           }
+         };
+       });
+
+       angular.module('ui.bootstrap.debounce', [])
+       /**
+        * A helper, internal service that debounces a function
+        */
+         .factory('$$debounce', ['$timeout', function($timeout) {
+           return function(callback, debounceTime) {
+             var timeoutPromise;
+
+             return function() {
+               var self = this;
+               var args = Array.prototype.slice.call(arguments);
+               if (timeoutPromise) {
+                 $timeout.cancel(timeoutPromise);
+               }
+
+               timeoutPromise = $timeout(function() {
+                 callback.apply(self, args);
+               }, debounceTime);
+             };
+           };
+         }]);
+
+       angular.module('ui.bootstrap.dropdown', ['ui.bootstrap.position'])
+
+       .constant('uibDropdownConfig', {
+         appendToOpenClass: 'uib-dropdown-open',
+         openClass: 'open'
+       })
+
+       .service('uibDropdownService', ['$document', '$rootScope', function($document, $rootScope) {
+         var openScope = null;
+
+         this.open = function(dropdownScope, element) {
+           if (!openScope) {
+             $document.on('click', closeDropdown);
+             element.on('keydown', keybindFilter);
+           }
+
+           if (openScope && openScope !== dropdownScope) {
+             openScope.isOpen = false;
+           }
+
+           openScope = dropdownScope;
+         };
+
+         this.close = function(dropdownScope, element) {
+           if (openScope === dropdownScope) {
+             openScope = null;
+             $document.off('click', closeDropdown);
+             element.off('keydown', keybindFilter);
+           }
+         };
+
+         var closeDropdown = function(evt) {
+           // This method may still be called during the same mouse event that
+           // unbound this event handler. So check openScope before proceeding.
+           if (!openScope) { return; }
+
+           if (evt && openScope.getAutoClose() === 'disabled') { return; }
+
+           if (evt && evt.which === 3) { return; }
+
+           var toggleElement = openScope.getToggleElement();
+           if (evt && toggleElement && toggleElement[0].contains(evt.target)) {
+             return;
+           }
+
+           var dropdownElement = openScope.getDropdownElement();
+           if (evt && openScope.getAutoClose() === 'outsideClick' &&
+             dropdownElement && dropdownElement[0].contains(evt.target)) {
+             return;
+           }
+
+           openScope.isOpen = false;
+
+           if (!$rootScope.$$phase) {
+             openScope.$apply();
+           }
+         };
+
+         var keybindFilter = function(evt) {
+           if (evt.which === 27) {
+             evt.stopPropagation();
+             openScope.focusToggleElement();
+             closeDropdown();
+           } else if (openScope.isKeynavEnabled() && [38, 40].indexOf(evt.which) !== -1 && openScope.isOpen) {
+             evt.preventDefault();
+             evt.stopPropagation();
+             openScope.focusDropdownEntry(evt.which);
+           }
+         };
+       }])
+
+       .controller('UibDropdownController', ['$scope', '$element', '$attrs', '$parse', 'uibDropdownConfig', 'uibDropdownService', '$animate', '$uibPosition', '$document', '$compile', '$templateRequest', function($scope, $element, $attrs, $parse, dropdownConfig, uibDropdownService, $animate, $position, $document, $compile, $templateRequest) {
+         var self = this,
+           scope = $scope.$new(), // create a child scope so we are not polluting original one
+           templateScope,
+           appendToOpenClass = dropdownConfig.appendToOpenClass,
+           openClass = dropdownConfig.openClass,
+           getIsOpen,
+           setIsOpen = angular.noop,
+           toggleInvoker = $attrs.onToggle ? $parse($attrs.onToggle) : angular.noop,
+           appendToBody = false,
+           appendTo = null,
+           keynavEnabled = false,
+           selectedOption = null,
+           body = $document.find('body');
+
+         $element.addClass('dropdown');
+
+         this.init = function() {
+           if ($attrs.isOpen) {
+             getIsOpen = $parse($attrs.isOpen);
+             setIsOpen = getIsOpen.assign;
+
+             $scope.$watch(getIsOpen, function(value) {
+               scope.isOpen = !!value;
+             });
+           }
+
+           if (angular.isDefined($attrs.dropdownAppendTo)) {
+             var appendToEl = $parse($attrs.dropdownAppendTo)(scope);
+             if (appendToEl) {
+               appendTo = angular.element(appendToEl);
+             }
+           }
+
+           appendToBody = angular.isDefined($attrs.dropdownAppendToBody);
+           keynavEnabled = angular.isDefined($attrs.keyboardNav);
+
+           if (appendToBody && !appendTo) {
+             appendTo = body;
+           }
+
+           if (appendTo && self.dropdownMenu) {
+             appendTo.append(self.dropdownMenu);
+             $element.on('$destroy', function handleDestroyEvent() {
+               self.dropdownMenu.remove();
+             });
+           }
+         };
+
+         this.toggle = function(open) {
+           scope.isOpen = arguments.length ? !!open : !scope.isOpen;
+           if (angular.isFunction(setIsOpen)) {
+             setIsOpen(scope, scope.isOpen);
+           }
+
+           return scope.isOpen;
+         };
+
+         // Allow other directives to watch status
+         this.isOpen = function() {
+           return scope.isOpen;
+         };
+
+         scope.getToggleElement = function() {
+           return self.toggleElement;
+         };
+
+         scope.getAutoClose = function() {
+           return $attrs.autoClose || 'always'; //or 'outsideClick' or 'disabled'
+         };
+
+         scope.getElement = function() {
+           return $element;
+         };
+
+         scope.isKeynavEnabled = function() {
+           return keynavEnabled;
+         };
+
+         scope.focusDropdownEntry = function(keyCode) {
+           var elems = self.dropdownMenu ? //If append to body is used.
+             angular.element(self.dropdownMenu).find('a') :
+             $element.find('ul').eq(0).find('a');
+
+           switch (keyCode) {
+             case 40: {
+               if (!angular.isNumber(self.selectedOption)) {
+                 self.selectedOption = 0;
+               } else {
+                 self.selectedOption = self.selectedOption === elems.length - 1 ?
+                   self.selectedOption :
+                   self.selectedOption + 1;
+               }
+               break;
+             }
+             case 38: {
+               if (!angular.isNumber(self.selectedOption)) {
+                 self.selectedOption = elems.length - 1;
+               } else {
+                 self.selectedOption = self.selectedOption === 0 ?
+                   0 : self.selectedOption - 1;
+               }
+               break;
+             }
+           }
+           elems[self.selectedOption].focus();
+         };
+
+         scope.getDropdownElement = function() {
+           return self.dropdownMenu;
+         };
+
+         scope.focusToggleElement = function() {
+           if (self.toggleElement) {
+             self.toggleElement[0].focus();
+           }
+         };
+
+         scope.$watch('isOpen', function(isOpen, wasOpen) {
+           if (appendTo && self.dropdownMenu) {
+             var pos = $position.positionElements($element, self.dropdownMenu, 'bottom-left', true),
+               css,
+               rightalign,
+               scrollbarWidth;
+
+             css = {
+               top: pos.top + 'px',
+               display: isOpen ? 'block' : 'none'
+             };
+
+             rightalign = self.dropdownMenu.hasClass('dropdown-menu-right');
+             if (!rightalign) {
+               css.left = pos.left + 'px';
+               css.right = 'auto';
+             } else {
+               css.left = 'auto';
+               scrollbarWidth = $position.scrollbarWidth(true);
+               css.right = window.innerWidth - scrollbarWidth -
+                 (pos.left + $element.prop('offsetWidth')) + 'px';
+             }
+
+             // Need to adjust our positioning to be relative to the appendTo container
+             // if it's not the body element
+             if (!appendToBody) {
+               var appendOffset = $position.offset(appendTo);
+
+               css.top = pos.top - appendOffset.top + 'px';
+
+               if (!rightalign) {
+                 css.left = pos.left - appendOffset.left + 'px';
+               } else {
+                 css.right = window.innerWidth -
+                   (pos.left - appendOffset.left + $element.prop('offsetWidth')) + 'px';
+               }
+             }
+
+             self.dropdownMenu.css(css);
+           }
+
+           var openContainer = appendTo ? appendTo : $element;
+           var hasOpenClass = openContainer.hasClass(appendTo ? appendToOpenClass : openClass);
+
+           if (hasOpenClass === !isOpen) {
+             $animate[isOpen ? 'addClass' : 'removeClass'](openContainer, appendTo ? appendToOpenClass : openClass).then(function() {
+               if (angular.isDefined(isOpen) && isOpen !== wasOpen) {
+                 toggleInvoker($scope, { open: !!isOpen });
+               }
+             });
+           }
+
+           if (isOpen) {
+             if (self.dropdownMenuTemplateUrl) {
+               $templateRequest(self.dropdownMenuTemplateUrl).then(function(tplContent) {
+                 templateScope = scope.$new();
+                 $compile(tplContent.trim())(templateScope, function(dropdownElement) {
+                   var newEl = dropdownElement;
+                   self.dropdownMenu.replaceWith(newEl);
+                   self.dropdownMenu = newEl;
+                 });
+               });
+             }
+
+             scope.focusToggleElement();
+             uibDropdownService.open(scope, $element);
+           } else {
+             if (self.dropdownMenuTemplateUrl) {
+               if (templateScope) {
+                 templateScope.$destroy();
+               }
+               var newEl = angular.element('<ul class="dropdown-menu"></ul>');
+               self.dropdownMenu.replaceWith(newEl);
+               self.dropdownMenu = newEl;
+             }
+
+             uibDropdownService.close(scope, $element);
+             self.selectedOption = null;
+           }
+
+           if (angular.isFunction(setIsOpen)) {
+             setIsOpen($scope, isOpen);
+           }
+         });
+       }])
+
+       .directive('uibDropdown', function() {
+         return {
+           controller: 'UibDropdownController',
+           link: function(scope, element, attrs, dropdownCtrl) {
+             dropdownCtrl.init();
+           }
+         };
+       })
+
+       .directive('uibDropdownMenu', function() {
+         return {
+           restrict: 'A',
+           require: '?^uibDropdown',
+           link: function(scope, element, attrs, dropdownCtrl) {
+             if (!dropdownCtrl || angular.isDefined(attrs.dropdownNested)) {
+               return;
+             }
+
+             element.addClass('dropdown-menu');
+
+             var tplUrl = attrs.templateUrl;
+             if (tplUrl) {
+               dropdownCtrl.dropdownMenuTemplateUrl = tplUrl;
+             }
+
+             if (!dropdownCtrl.dropdownMenu) {
+               dropdownCtrl.dropdownMenu = element;
+             }
+           }
+         };
+       })
+
+       .directive('uibDropdownToggle', function() {
+         return {
+           require: '?^uibDropdown',
+           link: function(scope, element, attrs, dropdownCtrl) {
+             if (!dropdownCtrl) {
+               return;
+             }
+
+             element.addClass('dropdown-toggle');
+
+             dropdownCtrl.toggleElement = element;
+
+             var toggleDropdown = function(event) {
+               event.preventDefault();
+
+               if (!element.hasClass('disabled') && !attrs.disabled) {
+                 scope.$apply(function() {
+                   dropdownCtrl.toggle();
+                 });
+               }
+             };
+
+             element.bind('click', toggleDropdown);
+
+             // WAI-ARIA
+             element.attr({ 'aria-haspopup': true, 'aria-expanded': false });
+             scope.$watch(dropdownCtrl.isOpen, function(isOpen) {
+               element.attr('aria-expanded', !!isOpen);
+             });
+
+             scope.$on('$destroy', function() {
+               element.unbind('click', toggleDropdown);
+             });
+           }
+         };
+       });
+
+       angular.module('ui.bootstrap.stackedMap', [])
+       /**
+        * A helper, internal data structure that acts as a map but also allows getting / removing
+        * elements in the LIFO order
+        */
+         .factory('$$stackedMap', function() {
+           return {
+             createNew: function() {
+               var stack = [];
+
+               return {
+                 add: function(key, value) {
+                   stack.push({
+                     key: key,
+                     value: value
+                   });
+                 },
+                 get: function(key) {
+                   for (var i = 0; i < stack.length; i++) {
+                     if (key === stack[i].key) {
+                       return stack[i];
+                     }
+                   }
+                 },
+                 keys: function() {
+                   var keys = [];
+                   for (var i = 0; i < stack.length; i++) {
+                     keys.push(stack[i].key);
+                   }
+                   return keys;
+                 },
+                 top: function() {
+                   return stack[stack.length - 1];
+                 },
+                 remove: function(key) {
+                   var idx = -1;
+                   for (var i = 0; i < stack.length; i++) {
+                     if (key === stack[i].key) {
+                       idx = i;
+                       break;
+                     }
+                   }
+                   return stack.splice(idx, 1)[0];
+                 },
+                 removeTop: function() {
+                   return stack.splice(stack.length - 1, 1)[0];
+                 },
+                 length: function() {
+                   return stack.length;
+                 }
+               };
+             }
+           };
+         });
+       angular.module('ui.bootstrap.modal', ['ui.bootstrap.stackedMap', 'ui.bootstrap.position'])
+       /**
+        * A helper, internal data structure that stores all references attached to key
+        */
+         .factory('$$multiMap', function() {
+           return {
+             createNew: function() {
+               var map = {};
+
+               return {
+                 entries: function() {
+                   return Object.keys(map).map(function(key) {
+                     return {
+                       key: key,
+                       value: map[key]
+                     };
+                   });
+                 },
+                 get: function(key) {
+                   return map[key];
+                 },
+                 hasKey: function(key) {
+                   return !!map[key];
+                 },
+                 keys: function() {
+                   return Object.keys(map);
+                 },
+                 put: function(key, value) {
+                   if (!map[key]) {
+                     map[key] = [];
+                   }
+
+                   map[key].push(value);
+                 },
+                 remove: function(key, value) {
+                   var values = map[key];
+
+                   if (!values) {
+                     return;
+                   }
+
+                   var idx = values.indexOf(value);
+
+                   if (idx !== -1) {
+                     values.splice(idx, 1);
+                   }
+
+                   if (!values.length) {
+                     delete map[key];
+                   }
+                 }
+               };
+             }
+           };
+         })
+
+       /**
+        * Pluggable resolve mechanism for the modal resolve resolution
+        * Supports UI Router's $resolve service
+        */
+         .provider('$uibResolve', function() {
+           var resolve = this;
+           this.resolver = null;
+
+           this.setResolver = function(resolver) {
+             this.resolver = resolver;
+           };
+
+           this.$get = ['$injector', '$q', function($injector, $q) {
+             var resolver = resolve.resolver ? $injector.get(resolve.resolver) : null;
+             return {
+               resolve: function(invocables, locals, parent, self) {
+                 if (resolver) {
+                   return resolver.resolve(invocables, locals, parent, self);
+                 }
+
+                 var promises = [];
+
+                 angular.forEach(invocables, function(value) {
+                   if (angular.isFunction(value) || angular.isArray(value)) {
+                     promises.push($q.resolve($injector.invoke(value)));
+                   } else if (angular.isString(value)) {
+                     promises.push($q.resolve($injector.get(value)));
+                   } else {
+                     promises.push($q.resolve(value));
+                   }
+                 });
+
+                 return $q.all(promises).then(function(resolves) {
+                   var resolveObj = {};
+                   var resolveIter = 0;
+                   angular.forEach(invocables, function(value, key) {
+                     resolveObj[key] = resolves[resolveIter++];
+                   });
+
+                   return resolveObj;
+                 });
+               }
+             };
+           }];
+         })
+
+       /**
+        * A helper directive for the $modal service. It creates a backdrop element.
+        */
+         .directive('uibModalBackdrop', ['$animate', '$injector', '$uibModalStack',
+         function($animate, $injector, $modalStack) {
+           return {
+             replace: true,
+             templateUrl: 'uib/template/modal/backdrop.html',
+             compile: function(tElement, tAttrs) {
+               tElement.addClass(tAttrs.backdropClass);
+               return linkFn;
+             }
+           };
+
+           function linkFn(scope, element, attrs) {
+             if (attrs.modalInClass) {
+               $animate.addClass(element, attrs.modalInClass);
+
+               scope.$on($modalStack.NOW_CLOSING_EVENT, function(e, setIsAsync) {
+                 var done = setIsAsync();
+                 if (scope.modalOptions.animation) {
+                   $animate.removeClass(element, attrs.modalInClass).then(done);
+                 } else {
+                   done();
+                 }
+               });
+             }
+           }
+         }])
+
+         .directive('uibModalWindow', ['$uibModalStack', '$q', '$animateCss', '$document',
+         function($modalStack, $q, $animateCss, $document) {
+           return {
+             scope: {
+               index: '@'
+             },
+             replace: true,
+             transclude: true,
+             templateUrl: function(tElement, tAttrs) {
+               return tAttrs.templateUrl || 'uib/template/modal/window.html';
+             },
+             link: function(scope, element, attrs) {
+               element.addClass(attrs.windowClass || '');
+               element.addClass(attrs.windowTopClass || '');
+               scope.size = attrs.size;
+
+               scope.close = function(evt) {
+                 var modal = $modalStack.getTop();
+                 if (modal && modal.value.backdrop &&
+                   modal.value.backdrop !== 'static' &&
+                   evt.target === evt.currentTarget) {
+                   evt.preventDefault();
+                   evt.stopPropagation();
+                   $modalStack.dismiss(modal.key, 'backdrop click');
+                 }
+               };
+
+               // moved from template to fix issue #2280
+               element.on('click', scope.close);
+
+               // This property is only added to the scope for the purpose of detecting when this directive is rendered.
+               // We can detect that by using this property in the template associated with this directive and then use
+               // {@link Attribute#$observe} on it. For more details please see {@link TableColumnResize}.
+               scope.$isRendered = true;
+
+               // Deferred object that will be resolved when this modal is render.
+               var modalRenderDeferObj = $q.defer();
+               // Observe function will be called on next digest cycle after compilation, ensuring that the DOM is ready.
+               // In order to use this way of finding whether DOM is ready, we need to observe a scope property used in modal's template.
+               attrs.$observe('modalRender', function(value) {
+                 if (value === 'true') {
+                   modalRenderDeferObj.resolve();
+                 }
+               });
+
+               modalRenderDeferObj.promise.then(function() {
+                 var animationPromise = null;
+
+                 if (attrs.modalInClass) {
+                   animationPromise = $animateCss(element, {
+                     addClass: attrs.modalInClass
+                   }).start();
+
+                   scope.$on($modalStack.NOW_CLOSING_EVENT, function(e, setIsAsync) {
+                     var done = setIsAsync();
+                     $animateCss(element, {
+                       removeClass: attrs.modalInClass
+                     }).start().then(done);
+                   });
+                 }
+
+
+                 $q.when(animationPromise).then(function() {
+                   // Notify {@link $modalStack} that modal is rendered.
+                   var modal = $modalStack.getTop();
+                   if (modal) {
+                     $modalStack.modalRendered(modal.key);
+                   }
+
+                   /**
+                    * If something within the freshly-opened modal already has focus (perhaps via a
+                    * directive that causes focus). then no need to try and focus anything.
+                    */
+                   if (!($document[0].activeElement && element[0].contains($document[0].activeElement))) {
+                     var inputWithAutofocus = element[0].querySelector('[autofocus]');
+                     /**
+                      * Auto-focusing of a freshly-opened modal element causes any child elements
+                      * with the autofocus attribute to lose focus. This is an issue on touch
+                      * based devices which will show and then hide the onscreen keyboard.
+                      * Attempts to refocus the autofocus element via JavaScript will not reopen
+                      * the onscreen keyboard. Fixed by updated the focusing logic to only autofocus
+                      * the modal element if the modal does not contain an autofocus element.
+                      */
+                     if (inputWithAutofocus) {
+                       inputWithAutofocus.focus();
+                     } else {
+                       element[0].focus();
+                     }
+                   }
+                 });
+               });
+             }
+           };
+         }])
+
+         .directive('uibModalAnimationClass', function() {
+           return {
+             compile: function(tElement, tAttrs) {
+               if (tAttrs.modalAnimation) {
+                 tElement.addClass(tAttrs.uibModalAnimationClass);
+               }
+             }
+           };
+         })
+
+         .directive('uibModalTransclude', function() {
+           return {
+             link: function(scope, element, attrs, controller, transclude) {
+               transclude(scope.$parent, function(clone) {
+                 element.empty();
+                 element.append(clone);
+               });
+             }
+           };
+         })
+
+         .factory('$uibModalStack', ['$animate', '$animateCss', '$document',
+           '$compile', '$rootScope', '$q', '$$multiMap', '$$stackedMap', '$uibPosition',
+           function($animate, $animateCss, $document, $compile, $rootScope, $q, $$multiMap, $$stackedMap, $uibPosition) {
+             var OPENED_MODAL_CLASS = 'modal-open';
+
+             var backdropDomEl, backdropScope;
+             var openedWindows = $$stackedMap.createNew();
+             var openedClasses = $$multiMap.createNew();
+             var $modalStack = {
+               NOW_CLOSING_EVENT: 'modal.stack.now-closing'
+             };
+             var topModalIndex = 0;
+             var previousTopOpenedModal = null;
+
+             //Modal focus behavior
+             var tabableSelector = 'a[href], area[href], input:not([disabled]), ' +
+               'button:not([disabled]),select:not([disabled]), textarea:not([disabled]), ' +
+               'iframe, object, embed, *[tabindex], *[contenteditable=true]';
+             var scrollbarPadding;
+
+             function isVisible(element) {
+               return !!(element.offsetWidth ||
+                 element.offsetHeight ||
+                 element.getClientRects().length);
+             }
+
+             function backdropIndex() {
+               var topBackdropIndex = -1;
+               var opened = openedWindows.keys();
+               for (var i = 0; i < opened.length; i++) {
+                 if (openedWindows.get(opened[i]).value.backdrop) {
+                   topBackdropIndex = i;
+                 }
+               }
+
+               // If any backdrop exist, ensure that it's index is always
+               // right below the top modal
+               if (topBackdropIndex > -1 && topBackdropIndex < topModalIndex) {
+                 topBackdropIndex = topModalIndex;
+               }
+               return topBackdropIndex;
+             }
+
+             $rootScope.$watch(backdropIndex, function(newBackdropIndex) {
+               if (backdropScope) {
+                 backdropScope.index = newBackdropIndex;
+               }
+             });
+
+             function removeModalWindow(modalInstance, elementToReceiveFocus) {
+               var modalWindow = openedWindows.get(modalInstance).value;
+               var appendToElement = modalWindow.appendTo;
+
+               //clean up the stack
+               openedWindows.remove(modalInstance);
+               previousTopOpenedModal = openedWindows.top();
+               if (previousTopOpenedModal) {
+                 topModalIndex = parseInt(previousTopOpenedModal.value.modalDomEl.attr('index'), 10);
+               }
+
+               removeAfterAnimate(modalWindow.modalDomEl, modalWindow.modalScope, function() {
+                 var modalBodyClass = modalWindow.openedClass || OPENED_MODAL_CLASS;
+                 openedClasses.remove(modalBodyClass, modalInstance);
+                 var areAnyOpen = openedClasses.hasKey(modalBodyClass);
+                 appendToElement.toggleClass(modalBodyClass, areAnyOpen);
+                 if (!areAnyOpen && scrollbarPadding && scrollbarPadding.heightOverflow && scrollbarPadding.scrollbarWidth) {
+                   if (scrollbarPadding.originalRight) {
+                     appendToElement.css({paddingRight: scrollbarPadding.originalRight + 'px'});
+                   } else {
+                     appendToElement.css({paddingRight: ''});
+                   }
+                   scrollbarPadding = null;
+                 }
+                 toggleTopWindowClass(true);
+               }, modalWindow.closedDeferred);
+               checkRemoveBackdrop();
+
+               //move focus to specified element if available, or else to body
+               if (elementToReceiveFocus && elementToReceiveFocus.focus) {
+                 elementToReceiveFocus.focus();
+               } else if (appendToElement.focus) {
+                 appendToElement.focus();
+               }
+             }
+
+             // Add or remove "windowTopClass" from the top window in the stack
+             function toggleTopWindowClass(toggleSwitch) {
+               var modalWindow;
+
+               if (openedWindows.length() > 0) {
+                 modalWindow = openedWindows.top().value;
+                 modalWindow.modalDomEl.toggleClass(modalWindow.windowTopClass || '', toggleSwitch);
+               }
+             }
+
+             function checkRemoveBackdrop() {
+               //remove backdrop if no longer needed
+               if (backdropDomEl && backdropIndex() === -1) {
+                 var backdropScopeRef = backdropScope;
+                 removeAfterAnimate(backdropDomEl, backdropScope, function() {
+                   backdropScopeRef = null;
+                 });
+                 backdropDomEl = undefined;
+                 backdropScope = undefined;
+               }
+             }
+
+             function removeAfterAnimate(domEl, scope, done, closedDeferred) {
+               var asyncDeferred;
+               var asyncPromise = null;
+               var setIsAsync = function() {
+                 if (!asyncDeferred) {
+                   asyncDeferred = $q.defer();
+                   asyncPromise = asyncDeferred.promise;
+                 }
+
+                 return function asyncDone() {
+                   asyncDeferred.resolve();
+                 };
+               };
+               scope.$broadcast($modalStack.NOW_CLOSING_EVENT, setIsAsync);
+
+               // Note that it's intentional that asyncPromise might be null.
+               // That's when setIsAsync has not been called during the
+               // NOW_CLOSING_EVENT broadcast.
+               return $q.when(asyncPromise).then(afterAnimating);
+
+               function afterAnimating() {
+                 if (afterAnimating.done) {
+                   return;
+                 }
+                 afterAnimating.done = true;
+
+                 $animate.leave(domEl).then(function() {
+                   domEl.remove();
+                   if (closedDeferred) {
+                     closedDeferred.resolve();
+                   }
+                 });
+
+                 scope.$destroy();
+                 if (done) {
+                   done();
+                 }
+               }
+             }
+
+             $document.on('keydown', keydownListener);
+
+             $rootScope.$on('$destroy', function() {
+               $document.off('keydown', keydownListener);
+             });
+
+             function keydownListener(evt) {
+               if (evt.isDefaultPrevented()) {
+                 return evt;
+               }
+
+               var modal = openedWindows.top();
+               if (modal) {
+                 switch (evt.which) {
+                   case 27: {
+                     if (modal.value.keyboard) {
+                       evt.preventDefault();
+                       $rootScope.$apply(function() {
+                         $modalStack.dismiss(modal.key, 'escape key press');
+                       });
+                     }
+                     break;
+                   }
+                   case 9: {
+                     var list = $modalStack.loadFocusElementList(modal);
+                     var focusChanged = false;
+                     if (evt.shiftKey) {
+                       if ($modalStack.isFocusInFirstItem(evt, list) || $modalStack.isModalFocused(evt, modal)) {
+                         focusChanged = $modalStack.focusLastFocusableElement(list);
+                       }
+                     } else {
+                       if ($modalStack.isFocusInLastItem(evt, list)) {
+                         focusChanged = $modalStack.focusFirstFocusableElement(list);
+                       }
+                     }
+
+                     if (focusChanged) {
+                       evt.preventDefault();
+                       evt.stopPropagation();
+                     }
+
+                     break;
+                   }
+                 }
+               }
+             }
+
+             $modalStack.open = function(modalInstance, modal) {
+               var modalOpener = $document[0].activeElement,
+                 modalBodyClass = modal.openedClass || OPENED_MODAL_CLASS;
+
+               toggleTopWindowClass(false);
+
+               // Store the current top first, to determine what index we ought to use
+               // for the current top modal
+               previousTopOpenedModal = openedWindows.top();
+
+               openedWindows.add(modalInstance, {
+                 deferred: modal.deferred,
+                 renderDeferred: modal.renderDeferred,
+                 closedDeferred: modal.closedDeferred,
+                 modalScope: modal.scope,
+                 backdrop: modal.backdrop,
+                 keyboard: modal.keyboard,
+                 openedClass: modal.openedClass,
+                 windowTopClass: modal.windowTopClass,
+                 animation: modal.animation,
+                 appendTo: modal.appendTo
+               });
+
+               openedClasses.put(modalBodyClass, modalInstance);
+
+               var appendToElement = modal.appendTo,
+                   currBackdropIndex = backdropIndex();
+
+               if (!appendToElement.length) {
+                 throw new Error('appendTo element not found. Make sure that the element passed is in DOM.');
+               }
+
+               if (currBackdropIndex >= 0 && !backdropDomEl) {
+                 backdropScope = $rootScope.$new(true);
+                 backdropScope.modalOptions = modal;
+                 backdropScope.index = currBackdropIndex;
+                 backdropDomEl = angular.element('<div uib-modal-backdrop="modal-backdrop"></div>');
+                 backdropDomEl.attr('backdrop-class', modal.backdropClass);
+                 if (modal.animation) {
+                   backdropDomEl.attr('modal-animation', 'true');
+                 }
+                 $compile(backdropDomEl)(backdropScope);
+                 $animate.enter(backdropDomEl, appendToElement);
+                 scrollbarPadding = $uibPosition.scrollbarPadding(appendToElement);
+                 if (scrollbarPadding.heightOverflow && scrollbarPadding.scrollbarWidth) {
+                   appendToElement.css({paddingRight: scrollbarPadding.right + 'px'});
+                 }
+               }
+
+               // Set the top modal index based on the index of the previous top modal
+               topModalIndex = previousTopOpenedModal ? parseInt(previousTopOpenedModal.value.modalDomEl.attr('index'), 10) + 1 : 0;
+               var angularDomEl = angular.element('<div uib-modal-window="modal-window"></div>');
+               angularDomEl.attr({
+                 'template-url': modal.windowTemplateUrl,
+                 'window-class': modal.windowClass,
+                 'window-top-class': modal.windowTopClass,
+                 'size': modal.size,
+                 'index': topModalIndex,
+                 'animate': 'animate'
+               }).html(modal.content);
+               if (modal.animation) {
+                 angularDomEl.attr('modal-animation', 'true');
+               }
+
+               appendToElement.addClass(modalBodyClass);
+               $animate.enter($compile(angularDomEl)(modal.scope), appendToElement);
+
+               openedWindows.top().value.modalDomEl = angularDomEl;
+               openedWindows.top().value.modalOpener = modalOpener;
+             };
+
+             function broadcastClosing(modalWindow, resultOrReason, closing) {
+               return !modalWindow.value.modalScope.$broadcast('modal.closing', resultOrReason, closing).defaultPrevented;
+             }
+
+             $modalStack.close = function(modalInstance, result) {
+               var modalWindow = openedWindows.get(modalInstance);
+               if (modalWindow && broadcastClosing(modalWindow, result, true)) {
+                 modalWindow.value.modalScope.$$uibDestructionScheduled = true;
+                 modalWindow.value.deferred.resolve(result);
+                 removeModalWindow(modalInstance, modalWindow.value.modalOpener);
+                 return true;
+               }
+               return !modalWindow;
+             };
+
+             $modalStack.dismiss = function(modalInstance, reason) {
+               var modalWindow = openedWindows.get(modalInstance);
+               if (modalWindow && broadcastClosing(modalWindow, reason, false)) {
+                 modalWindow.value.modalScope.$$uibDestructionScheduled = true;
+                 modalWindow.value.deferred.reject(reason);
+                 removeModalWindow(modalInstance, modalWindow.value.modalOpener);
+                 return true;
+               }
+               return !modalWindow;
+             };
+
+             $modalStack.dismissAll = function(reason) {
+               var topModal = this.getTop();
+               while (topModal && this.dismiss(topModal.key, reason)) {
+                 topModal = this.getTop();
+               }
+             };
+
+             $modalStack.getTop = function() {
+               return openedWindows.top();
+             };
+
+             $modalStack.modalRendered = function(modalInstance) {
+               var modalWindow = openedWindows.get(modalInstance);
+               if (modalWindow) {
+                 modalWindow.value.renderDeferred.resolve();
+               }
+             };
+
+             $modalStack.focusFirstFocusableElement = function(list) {
+               if (list.length > 0) {
+                 list[0].focus();
+                 return true;
+               }
+               return false;
+             };
+
+             $modalStack.focusLastFocusableElement = function(list) {
+               if (list.length > 0) {
+                 list[list.length - 1].focus();
+                 return true;
+               }
+               return false;
+             };
+
+             $modalStack.isModalFocused = function(evt, modalWindow) {
+               if (evt && modalWindow) {
+                 var modalDomEl = modalWindow.value.modalDomEl;
+                 if (modalDomEl && modalDomEl.length) {
+                   return (evt.target || evt.srcElement) === modalDomEl[0];
+                 }
+               }
+               return false;
+             };
+
+             $modalStack.isFocusInFirstItem = function(evt, list) {
+               if (list.length > 0) {
+                 return (evt.target || evt.srcElement) === list[0];
+               }
+               return false;
+             };
+
+             $modalStack.isFocusInLastItem = function(evt, list) {
+               if (list.length > 0) {
+                 return (evt.target || evt.srcElement) === list[list.length - 1];
+               }
+               return false;
+             };
+
+             $modalStack.loadFocusElementList = function(modalWindow) {
+               if (modalWindow) {
+                 var modalDomE1 = modalWindow.value.modalDomEl;
+                 if (modalDomE1 && modalDomE1.length) {
+                   var elements = modalDomE1[0].querySelectorAll(tabableSelector);
+                   return elements ?
+                     Array.prototype.filter.call(elements, function(element) {
+                       return isVisible(element);
+                     }) : elements;
+                 }
+               }
+             };
+
+             return $modalStack;
+           }])
+
+         .provider('$uibModal', function() {
+           var $modalProvider = {
+             options: {
+               animation: true,
+               backdrop: true, //can also be false or 'static'
+               keyboard: true
+             },
+             $get: ['$rootScope', '$q', '$document', '$templateRequest', '$controller', '$uibResolve', '$uibModalStack',
+               function ($rootScope, $q, $document, $templateRequest, $controller, $uibResolve, $modalStack) {
+                 var $modal = {};
+
+                 function getTemplatePromise(options) {
+                   return options.template ? $q.when(options.template) :
+                     $templateRequest(angular.isFunction(options.templateUrl) ?
+                       options.templateUrl() : options.templateUrl);
+                 }
+
+                 var promiseChain = null;
+                 $modal.getPromiseChain = function() {
+                   return promiseChain;
+                 };
+
+                 $modal.open = function(modalOptions) {
+                   var modalResultDeferred = $q.defer();
+                   var modalOpenedDeferred = $q.defer();
+                   var modalClosedDeferred = $q.defer();
+                   var modalRenderDeferred = $q.defer();
+
+                   //prepare an instance of a modal to be injected into controllers and returned to a caller
+                   var modalInstance = {
+                     result: modalResultDeferred.promise,
+                     opened: modalOpenedDeferred.promise,
+                     closed: modalClosedDeferred.promise,
+                     rendered: modalRenderDeferred.promise,
+                     close: function (result) {
+                       return $modalStack.close(modalInstance, result);
+                     },
+                     dismiss: function (reason) {
+                       return $modalStack.dismiss(modalInstance, reason);
+                     }
+                   };
+
+                   //merge and clean up options
+                   modalOptions = angular.extend({}, $modalProvider.options, modalOptions);
+                   modalOptions.resolve = modalOptions.resolve || {};
+                   modalOptions.appendTo = modalOptions.appendTo || $document.find('body').eq(0);
+
+                   //verify options
+                   if (!modalOptions.template && !modalOptions.templateUrl) {
+                     throw new Error('One of template or templateUrl options is required.');
+                   }
+
+                   var templateAndResolvePromise =
+                     $q.all([getTemplatePromise(modalOptions), $uibResolve.resolve(modalOptions.resolve, {}, null, null)]);
+
+                   function resolveWithTemplate() {
+                     return templateAndResolvePromise;
+                   }
+
+                   // Wait for the resolution of the existing promise chain.
+                   // Then switch to our own combined promise dependency (regardless of how the previous modal fared).
+                   // Then add to $modalStack and resolve opened.
+                   // Finally clean up the chain variable if no subsequent modal has overwritten it.
+                   var samePromise;
+                   samePromise = promiseChain = $q.all([promiseChain])
+                     .then(resolveWithTemplate, resolveWithTemplate)
+                     .then(function resolveSuccess(tplAndVars) {
+                       var providedScope = modalOptions.scope || $rootScope;
+
+                       var modalScope = providedScope.$new();
+                       modalScope.$close = modalInstance.close;
+                       modalScope.$dismiss = modalInstance.dismiss;
+
+                       modalScope.$on('$destroy', function() {
+                         if (!modalScope.$$uibDestructionScheduled) {
+                           modalScope.$dismiss('$uibUnscheduledDestruction');
+                         }
+                       });
+
+                       var ctrlInstance, ctrlInstantiate, ctrlLocals = {};
+
+                       //controllers
+                       if (modalOptions.controller) {
+                         ctrlLocals.$scope = modalScope;
+                         ctrlLocals.$scope.$resolve = {};
+                         ctrlLocals.$uibModalInstance = modalInstance;
+                         angular.forEach(tplAndVars[1], function(value, key) {
+                           ctrlLocals[key] = value;
+                           ctrlLocals.$scope.$resolve[key] = value;
+                         });
+
+                         // the third param will make the controller instantiate later,private api
+                         // @see https://github.com/angular/angular.js/blob/master/src/ng/controller.js#L126
+                         ctrlInstantiate = $controller(modalOptions.controller, ctrlLocals, true, modalOptions.controllerAs);
+                         if (modalOptions.controllerAs && modalOptions.bindToController) {
+                           ctrlInstance = ctrlInstantiate.instance;
+                           ctrlInstance.$close = modalScope.$close;
+                           ctrlInstance.$dismiss = modalScope.$dismiss;
+                           angular.extend(ctrlInstance, {
+                             $resolve: ctrlLocals.$scope.$resolve
+                           }, providedScope);
+                         }
+
+                         ctrlInstance = ctrlInstantiate();
+
+                         if (angular.isFunction(ctrlInstance.$onInit)) {
+                           ctrlInstance.$onInit();
+                         }
+                       }
+
+                       $modalStack.open(modalInstance, {
+                         scope: modalScope,
+                         deferred: modalResultDeferred,
+                         renderDeferred: modalRenderDeferred,
+                         closedDeferred: modalClosedDeferred,
+                         content: tplAndVars[0],
+                         animation: modalOptions.animation,
+                         backdrop: modalOptions.backdrop,
+                         keyboard: modalOptions.keyboard,
+                         backdropClass: modalOptions.backdropClass,
+                         windowTopClass: modalOptions.windowTopClass,
+                         windowClass: modalOptions.windowClass,
+                         windowTemplateUrl: modalOptions.windowTemplateUrl,
+                         size: modalOptions.size,
+                         openedClass: modalOptions.openedClass,
+                         appendTo: modalOptions.appendTo
+                       });
+                       modalOpenedDeferred.resolve(true);
+
+                   }, function resolveError(reason) {
+                     modalOpenedDeferred.reject(reason);
+                     modalResultDeferred.reject(reason);
+                   })['finally'](function() {
+                     if (promiseChain === samePromise) {
+                       promiseChain = null;
+                     }
+                   });
+
+                   return modalInstance;
+                 };
+
+                 return $modal;
+               }
+             ]
+           };
+
+           return $modalProvider;
+         });
+
+       angular.module('ui.bootstrap.paging', [])
+       /**
+        * Helper internal service for generating common controller code between the
+        * pager and pagination components
+        */
+       .factory('uibPaging', ['$parse', function($parse) {
+         return {
+           create: function(ctrl, $scope, $attrs) {
+             ctrl.setNumPages = $attrs.numPages ? $parse($attrs.numPages).assign : angular.noop;
+             ctrl.ngModelCtrl = { $setViewValue: angular.noop }; // nullModelCtrl
+             ctrl._watchers = [];
+
+             ctrl.init = function(ngModelCtrl, config) {
+               ctrl.ngModelCtrl = ngModelCtrl;
+               ctrl.config = config;
+
+               ngModelCtrl.$render = function() {
+                 ctrl.render();
+               };
+
+               if ($attrs.itemsPerPage) {
+                 ctrl._watchers.push($scope.$parent.$watch($attrs.itemsPerPage, function(value) {
+                   ctrl.itemsPerPage = parseInt(value, 10);
+                   $scope.totalPages = ctrl.calculateTotalPages();
+                   ctrl.updatePage();
+                 }));
+               } else {
+                 ctrl.itemsPerPage = config.itemsPerPage;
+               }
+
+               $scope.$watch('totalItems', function(newTotal, oldTotal) {
+                 if (angular.isDefined(newTotal) || newTotal !== oldTotal) {
+                   $scope.totalPages = ctrl.calculateTotalPages();
+                   ctrl.updatePage();
+                 }
+               });
+             };
+
+             ctrl.calculateTotalPages = function() {
+               var totalPages = ctrl.itemsPerPage < 1 ? 1 : Math.ceil($scope.totalItems / ctrl.itemsPerPage);
+               return Math.max(totalPages || 0, 1);
+             };
+
+             ctrl.render = function() {
+               $scope.page = parseInt(ctrl.ngModelCtrl.$viewValue, 10) || 1;
+             };
+
+             $scope.selectPage = function(page, evt) {
+               if (evt) {
+                 evt.preventDefault();
+               }
+
+               var clickAllowed = !$scope.ngDisabled || !evt;
+               if (clickAllowed && $scope.page !== page && page > 0 && page <= $scope.totalPages) {
+                 if (evt && evt.target) {
+                   evt.target.blur();
+                 }
+                 ctrl.ngModelCtrl.$setViewValue(page);
+                 ctrl.ngModelCtrl.$render();
+               }
+             };
+
+             $scope.getText = function(key) {
+               return $scope[key + 'Text'] || ctrl.config[key + 'Text'];
+             };
+
+             $scope.noPrevious = function() {
+               return $scope.page === 1;
+             };
+
+             $scope.noNext = function() {
+               return $scope.page === $scope.totalPages;
+             };
+
+             ctrl.updatePage = function() {
+               ctrl.setNumPages($scope.$parent, $scope.totalPages); // Readonly variable
+
+               if ($scope.page > $scope.totalPages) {
+                 $scope.selectPage($scope.totalPages);
+               } else {
+                 ctrl.ngModelCtrl.$render();
+               }
+             };
+
+             $scope.$on('$destroy', function() {
+               while (ctrl._watchers.length) {
+                 ctrl._watchers.shift()();
+               }
+             });
+           }
+         };
+       }]);
+
+       angular.module('ui.bootstrap.pager', ['ui.bootstrap.paging'])
+
+       .controller('UibPagerController', ['$scope', '$attrs', 'uibPaging', 'uibPagerConfig', function($scope, $attrs, uibPaging, uibPagerConfig) {
+         $scope.align = angular.isDefined($attrs.align) ? $scope.$parent.$eval($attrs.align) : uibPagerConfig.align;
+
+         uibPaging.create(this, $scope, $attrs);
+       }])
+
+       .constant('uibPagerConfig', {
+         itemsPerPage: 10,
+         previousText: '« Previous',
+         nextText: 'Next »',
+         align: true
+       })
+
+       .directive('uibPager', ['uibPagerConfig', function(uibPagerConfig) {
+         return {
+           scope: {
+             totalItems: '=',
+             previousText: '@',
+             nextText: '@',
+             ngDisabled: '='
+           },
+           require: ['uibPager', '?ngModel'],
+           controller: 'UibPagerController',
+           controllerAs: 'pager',
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/pager/pager.html';
+           },
+           replace: true,
+           link: function(scope, element, attrs, ctrls) {
+             var paginationCtrl = ctrls[0], ngModelCtrl = ctrls[1];
+
+             if (!ngModelCtrl) {
+               return; // do nothing if no ng-model
+             }
+
+             paginationCtrl.init(ngModelCtrl, uibPagerConfig);
+           }
+         };
+       }]);
+
+       angular.module('ui.bootstrap.pagination', ['ui.bootstrap.paging'])
+       .controller('UibPaginationController', ['$scope', '$attrs', '$parse', 'uibPaging', 'uibPaginationConfig', function($scope, $attrs, $parse, uibPaging, uibPaginationConfig) {
+         var ctrl = this;
+         // Setup configuration parameters
+         var maxSize = angular.isDefined($attrs.maxSize) ? $scope.$parent.$eval($attrs.maxSize) : uibPaginationConfig.maxSize,
+           rotate = angular.isDefined($attrs.rotate) ? $scope.$parent.$eval($attrs.rotate) : uibPaginationConfig.rotate,
+           forceEllipses = angular.isDefined($attrs.forceEllipses) ? $scope.$parent.$eval($attrs.forceEllipses) : uibPaginationConfig.forceEllipses,
+           boundaryLinkNumbers = angular.isDefined($attrs.boundaryLinkNumbers) ? $scope.$parent.$eval($attrs.boundaryLinkNumbers) : uibPaginationConfig.boundaryLinkNumbers,
+           pageLabel = angular.isDefined($attrs.pageLabel) ? function(idx) { return $scope.$parent.$eval($attrs.pageLabel, {$page: idx}); } : angular.identity;
+         $scope.boundaryLinks = angular.isDefined($attrs.boundaryLinks) ? $scope.$parent.$eval($attrs.boundaryLinks) : uibPaginationConfig.boundaryLinks;
+         $scope.directionLinks = angular.isDefined($attrs.directionLinks) ? $scope.$parent.$eval($attrs.directionLinks) : uibPaginationConfig.directionLinks;
+
+         uibPaging.create(this, $scope, $attrs);
+
+         if ($attrs.maxSize) {
+           ctrl._watchers.push($scope.$parent.$watch($parse($attrs.maxSize), function(value) {
+             maxSize = parseInt(value, 10);
+             ctrl.render();
+           }));
+         }
+
+         // Create page object used in template
+         function makePage(number, text, isActive) {
+           return {
+             number: number,
+             text: text,
+             active: isActive
+           };
+         }
+
+         function getPages(currentPage, totalPages) {
+           var pages = [];
+
+           // Default page limits
+           var startPage = 1, endPage = totalPages;
+           var isMaxSized = angular.isDefined(maxSize) && maxSize < totalPages;
+
+           // recompute if maxSize
+           if (isMaxSized) {
+             if (rotate) {
+               // Current page is displayed in the middle of the visible ones
+               startPage = Math.max(currentPage - Math.floor(maxSize / 2), 1);
+               endPage = startPage + maxSize - 1;
+
+               // Adjust if limit is exceeded
+               if (endPage > totalPages) {
+                 endPage = totalPages;
+                 startPage = endPage - maxSize + 1;
+               }
+             } else {
+               // Visible pages are paginated with maxSize
+               startPage = (Math.ceil(currentPage / maxSize) - 1) * maxSize + 1;
+
+               // Adjust last page if limit is exceeded
+               endPage = Math.min(startPage + maxSize - 1, totalPages);
+             }
+           }
+
+           // Add page number links
+           for (var number = startPage; number <= endPage; number++) {
+             var page = makePage(number, pageLabel(number), number === currentPage);
+             pages.push(page);
+           }
+
+           // Add links to move between page sets
+           if (isMaxSized && maxSize > 0 && (!rotate || forceEllipses || boundaryLinkNumbers)) {
+             if (startPage > 1) {
+               if (!boundaryLinkNumbers || startPage > 3) { //need ellipsis for all options unless range is too close to beginning
+               var previousPageSet = makePage(startPage - 1, '...', false);
+               pages.unshift(previousPageSet);
+             }
+               if (boundaryLinkNumbers) {
+                 if (startPage === 3) { //need to replace ellipsis when the buttons would be sequential
+                   var secondPageLink = makePage(2, '2', false);
+                   pages.unshift(secondPageLink);
+                 }
+                 //add the first page
+                 var firstPageLink = makePage(1, '1', false);
+                 pages.unshift(firstPageLink);
+               }
+             }
+
+             if (endPage < totalPages) {
+               if (!boundaryLinkNumbers || endPage < totalPages - 2) { //need ellipsis for all options unless range is too close to end
+               var nextPageSet = makePage(endPage + 1, '...', false);
+               pages.push(nextPageSet);
+             }
+               if (boundaryLinkNumbers) {
+                 if (endPage === totalPages - 2) { //need to replace ellipsis when the buttons would be sequential
+                   var secondToLastPageLink = makePage(totalPages - 1, totalPages - 1, false);
+                   pages.push(secondToLastPageLink);
+                 }
+                 //add the last page
+                 var lastPageLink = makePage(totalPages, totalPages, false);
+                 pages.push(lastPageLink);
+               }
+             }
+           }
+           return pages;
+         }
+
+         var originalRender = this.render;
+         this.render = function() {
+           originalRender();
+           if ($scope.page > 0 && $scope.page <= $scope.totalPages) {
+             $scope.pages = getPages($scope.page, $scope.totalPages);
+           }
+         };
+       }])
+
+       .constant('uibPaginationConfig', {
+         itemsPerPage: 10,
+         boundaryLinks: false,
+         boundaryLinkNumbers: false,
+         directionLinks: true,
+         firstText: 'First',
+         previousText: 'Previous',
+         nextText: 'Next',
+         lastText: 'Last',
+         rotate: true,
+         forceEllipses: false
+       })
+
+       .directive('uibPagination', ['$parse', 'uibPaginationConfig', function($parse, uibPaginationConfig) {
+         return {
+           scope: {
+             totalItems: '=',
+             firstText: '@',
+             previousText: '@',
+             nextText: '@',
+             lastText: '@',
+             ngDisabled:'='
+           },
+           require: ['uibPagination', '?ngModel'],
+           controller: 'UibPaginationController',
+           controllerAs: 'pagination',
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/pagination/pagination.html';
+           },
+           replace: true,
+           link: function(scope, element, attrs, ctrls) {
+             var paginationCtrl = ctrls[0], ngModelCtrl = ctrls[1];
+
+             if (!ngModelCtrl) {
+                return; // do nothing if no ng-model
+             }
+
+             paginationCtrl.init(ngModelCtrl, uibPaginationConfig);
+           }
+         };
+       }]);
+
+       /**
+        * The following features are still outstanding: animation as a
+        * function, placement as a function, inside, support for more triggers than
+        * just mouse enter/leave, html tooltips, and selector delegation.
+        */
+       angular.module('ui.bootstrap.tooltip', ['ui.bootstrap.position', 'ui.bootstrap.stackedMap'])
+
+       /**
+        * The $tooltip service creates tooltip- and popover-like directives as well as
+        * houses global options for them.
+        */
+       .provider('$uibTooltip', function() {
+         // The default options tooltip and popover.
+         var defaultOptions = {
+           placement: 'top',
+           placementClassPrefix: '',
+           animation: true,
+           popupDelay: 0,
+           popupCloseDelay: 0,
+           useContentExp: false
+         };
+
+         // Default hide triggers for each show trigger
+         var triggerMap = {
+           'mouseenter': 'mouseleave',
+           'click': 'click',
+           'outsideClick': 'outsideClick',
+           'focus': 'blur',
+           'none': ''
+         };
+
+         // The options specified to the provider globally.
+         var globalOptions = {};
+
+         /**
+          * `options({})` allows global configuration of all tooltips in the
+          * application.
+          *
+          *   var app = angular.module( 'App', ['ui.bootstrap.tooltip'], function( $tooltipProvider ) {
+          *     // place tooltips left instead of top by default
+          *     $tooltipProvider.options( { placement: 'left' } );
+          *   });
+          */
+               this.options = function(value) {
+                       angular.extend(globalOptions, value);
+               };
+
+         /**
+          * This allows you to extend the set of trigger mappings available. E.g.:
+          *
+          *   $tooltipProvider.setTriggers( { 'openTrigger': 'closeTrigger' } );
+          */
+         this.setTriggers = function setTriggers(triggers) {
+           angular.extend(triggerMap, triggers);
+         };
+
+         /**
+          * This is a helper function for translating camel-case to snake_case.
+          */
+         function snake_case(name) {
+           var regexp = /[A-Z]/g;
+           var separator = '-';
+           return name.replace(regexp, function(letter, pos) {
+             return (pos ? separator : '') + letter.toLowerCase();
+           });
+         }
+
+         /**
+          * Returns the actual instance of the $tooltip service.
+          * TODO support multiple triggers
+          */
+         this.$get = ['$window', '$compile', '$timeout', '$document', '$uibPosition', '$interpolate', '$rootScope', '$parse', '$$stackedMap', function($window, $compile, $timeout, $document, $position, $interpolate, $rootScope, $parse, $$stackedMap) {
+           var openedTooltips = $$stackedMap.createNew();
+           $document.on('keypress', keypressListener);
+
+           $rootScope.$on('$destroy', function() {
+             $document.off('keypress', keypressListener);
+           });
+
+           function keypressListener(e) {
+             if (e.which === 27) {
+               var last = openedTooltips.top();
+               if (last) {
+                 last.value.close();
+                 openedTooltips.removeTop();
+                 last = null;
+               }
+             }
+           }
+
+           return function $tooltip(ttType, prefix, defaultTriggerShow, options) {
+             options = angular.extend({}, defaultOptions, globalOptions, options);
+
+             /**
+              * Returns an object of show and hide triggers.
+              *
+              * If a trigger is supplied,
+              * it is used to show the tooltip; otherwise, it will use the `trigger`
+              * option passed to the `$tooltipProvider.options` method; else it will
+              * default to the trigger supplied to this directive factory.
+              *
+              * The hide trigger is based on the show trigger. If the `trigger` option
+              * was passed to the `$tooltipProvider.options` method, it will use the
+              * mapped trigger from `triggerMap` or the passed trigger if the map is
+              * undefined; otherwise, it uses the `triggerMap` value of the show
+              * trigger; else it will just use the show trigger.
+              */
+             function getTriggers(trigger) {
+               var show = (trigger || options.trigger || defaultTriggerShow).split(' ');
+               var hide = show.map(function(trigger) {
+                 return triggerMap[trigger] || trigger;
+               });
+               return {
+                 show: show,
+                 hide: hide
+               };
+             }
+
+             var directiveName = snake_case(ttType);
+
+             var startSym = $interpolate.startSymbol();
+             var endSym = $interpolate.endSymbol();
+             var template =
+               '<div '+ directiveName + '-popup ' +
+                 'uib-title="' + startSym + 'title' + endSym + '" ' +
+                 (options.useContentExp ?
+                   'content-exp="contentExp()" ' :
+                   'content="' + startSym + 'content' + endSym + '" ') +
+                 'placement="' + startSym + 'placement' + endSym + '" ' +
+                 'popup-class="' + startSym + 'popupClass' + endSym + '" ' +
+                 'animation="animation" ' +
+                 'is-open="isOpen" ' +
+                 'origin-scope="origScope" ' +
+                 'class="uib-position-measure"' +
+                 '>' +
+               '</div>';
+
+             return {
+               compile: function(tElem, tAttrs) {
+                 var tooltipLinker = $compile(template);
+
+                 return function link(scope, element, attrs, tooltipCtrl) {
+                   var tooltip;
+                   var tooltipLinkedScope;
+                   var transitionTimeout;
+                   var showTimeout;
+                   var hideTimeout;
+                   var positionTimeout;
+                   var appendToBody = angular.isDefined(options.appendToBody) ? options.appendToBody : false;
+                   var triggers = getTriggers(undefined);
+                   var hasEnableExp = angular.isDefined(attrs[prefix + 'Enable']);
+                   var ttScope = scope.$new(true);
+                   var repositionScheduled = false;
+                   var isOpenParse = angular.isDefined(attrs[prefix + 'IsOpen']) ? $parse(attrs[prefix + 'IsOpen']) : false;
+                   var contentParse = options.useContentExp ? $parse(attrs[ttType]) : false;
+                   var observers = [];
+                   var lastPlacement;
+
+                   var positionTooltip = function() {
+                     // check if tooltip exists and is not empty
+                     if (!tooltip || !tooltip.html()) { return; }
+
+                     if (!positionTimeout) {
+                       positionTimeout = $timeout(function() {
+                         var ttPosition = $position.positionElements(element, tooltip, ttScope.placement, appendToBody);
+                         tooltip.css({ top: ttPosition.top + 'px', left: ttPosition.left + 'px' });
+
+                         if (!tooltip.hasClass(ttPosition.placement.split('-')[0])) {
+                           tooltip.removeClass(lastPlacement.split('-')[0]);
+                           tooltip.addClass(ttPosition.placement.split('-')[0]);
+                         }
+
+                         if (!tooltip.hasClass(options.placementClassPrefix + ttPosition.placement)) {
+                           tooltip.removeClass(options.placementClassPrefix + lastPlacement);
+                           tooltip.addClass(options.placementClassPrefix + ttPosition.placement);
+                         }
+
+                         // first time through tt element will have the
+                         // uib-position-measure class or if the placement
+                         // has changed we need to position the arrow.
+                         if (tooltip.hasClass('uib-position-measure')) {
+                           $position.positionArrow(tooltip, ttPosition.placement);
+                           tooltip.removeClass('uib-position-measure');
+                         } else if (lastPlacement !== ttPosition.placement) {
+                           $position.positionArrow(tooltip, ttPosition.placement);
+                         }
+                         lastPlacement = ttPosition.placement;
+
+                         positionTimeout = null;
+                       }, 0, false);
+                     }
+                   };
+
+                   // Set up the correct scope to allow transclusion later
+                   ttScope.origScope = scope;
+
+                   // By default, the tooltip is not open.
+                   // TODO add ability to start tooltip opened
+                   ttScope.isOpen = false;
+                   openedTooltips.add(ttScope, {
+                     close: hide
+                   });
+
+                   function toggleTooltipBind() {
+                     if (!ttScope.isOpen) {
+                       showTooltipBind();
+                     } else {
+                       hideTooltipBind();
+                     }
+                   }
+
+                   // Show the tooltip with delay if specified, otherwise show it immediately
+                   function showTooltipBind() {
+                     if (hasEnableExp && !scope.$eval(attrs[prefix + 'Enable'])) {
+                       return;
+                     }
+
+                     cancelHide();
+                     prepareTooltip();
+
+                     if (ttScope.popupDelay) {
+                       // Do nothing if the tooltip was already scheduled to pop-up.
+                       // This happens if show is triggered multiple times before any hide is triggered.
+                       if (!showTimeout) {
+                         showTimeout = $timeout(show, ttScope.popupDelay, false);
+                       }
+                     } else {
+                       show();
+                     }
+                   }
+
+                   function hideTooltipBind() {
+                     cancelShow();
+
+                     if (ttScope.popupCloseDelay) {
+                       if (!hideTimeout) {
+                         hideTimeout = $timeout(hide, ttScope.popupCloseDelay, false);
+                       }
+                     } else {
+                       hide();
+                     }
+                   }
+
+                   // Show the tooltip popup element.
+                   function show() {
+                     cancelShow();
+                     cancelHide();
+
+                     // Don't show empty tooltips.
+                     if (!ttScope.content) {
+                       return angular.noop;
+                     }
+
+                     createTooltip();
+
+                     // And show the tooltip.
+                     ttScope.$evalAsync(function() {
+                       ttScope.isOpen = true;
+                       assignIsOpen(true);
+                       positionTooltip();
+                     });
+                   }
+
+                   function cancelShow() {
+                     if (showTimeout) {
+                       $timeout.cancel(showTimeout);
+                       showTimeout = null;
+                     }
+
+                     if (positionTimeout) {
+                       $timeout.cancel(positionTimeout);
+                       positionTimeout = null;
+                     }
+                   }
+
+                   // Hide the tooltip popup element.
+                   function hide() {
+                     if (!ttScope) {
+                       return;
+                     }
+
+                     // First things first: we don't show it anymore.
+                     ttScope.$evalAsync(function() {
+                       if (ttScope) {
+                         ttScope.isOpen = false;
+                         assignIsOpen(false);
+                         // And now we remove it from the DOM. However, if we have animation, we
+                         // need to wait for it to expire beforehand.
+                         // FIXME: this is a placeholder for a port of the transitions library.
+                         // The fade transition in TWBS is 150ms.
+                         if (ttScope.animation) {
+                           if (!transitionTimeout) {
+                             transitionTimeout = $timeout(removeTooltip, 150, false);
+                           }
+                         } else {
+                           removeTooltip();
+                         }
+                       }
+                     });
+                   }
+
+                   function cancelHide() {
+                     if (hideTimeout) {
+                       $timeout.cancel(hideTimeout);
+                       hideTimeout = null;
+                     }
+
+                     if (transitionTimeout) {
+                       $timeout.cancel(transitionTimeout);
+                       transitionTimeout = null;
+                     }
+                   }
+
+                   function createTooltip() {
+                     // There can only be one tooltip element per directive shown at once.
+                     if (tooltip) {
+                       return;
+                     }
+
+                     tooltipLinkedScope = ttScope.$new();
+                     tooltip = tooltipLinker(tooltipLinkedScope, function(tooltip) {
+                       if (appendToBody) {
+                         $document.find('body').append(tooltip);
+                       } else {
+                         element.after(tooltip);
+                       }
+                     });
+
+                     prepObservers();
+                   }
+
+                   function removeTooltip() {
+                     cancelShow();
+                     cancelHide();
+                     unregisterObservers();
+
+                     if (tooltip) {
+                       tooltip.remove();
+                       tooltip = null;
+                     }
+                     if (tooltipLinkedScope) {
+                       tooltipLinkedScope.$destroy();
+                       tooltipLinkedScope = null;
+                     }
+                   }
+
+                   /**
+                    * Set the initial scope values. Once
+                    * the tooltip is created, the observers
+                    * will be added to keep things in sync.
+                    */
+                   function prepareTooltip() {
+                     ttScope.title = attrs[prefix + 'Title'];
+                     if (contentParse) {
+                       ttScope.content = contentParse(scope);
+                     } else {
+                       ttScope.content = attrs[ttType];
+                     }
+
+                     ttScope.popupClass = attrs[prefix + 'Class'];
+                     ttScope.placement = angular.isDefined(attrs[prefix + 'Placement']) ? attrs[prefix + 'Placement'] : options.placement;
+                     var placement = $position.parsePlacement(ttScope.placement);
+                     lastPlacement = placement[1] ? placement[0] + '-' + placement[1] : placement[0];
+
+                     var delay = parseInt(attrs[prefix + 'PopupDelay'], 10);
+                     var closeDelay = parseInt(attrs[prefix + 'PopupCloseDelay'], 10);
+                     ttScope.popupDelay = !isNaN(delay) ? delay : options.popupDelay;
+                     ttScope.popupCloseDelay = !isNaN(closeDelay) ? closeDelay : options.popupCloseDelay;
+                   }
+
+                   function assignIsOpen(isOpen) {
+                     if (isOpenParse && angular.isFunction(isOpenParse.assign)) {
+                       isOpenParse.assign(scope, isOpen);
+                     }
+                   }
+
+                   ttScope.contentExp = function() {
+                     return ttScope.content;
+                   };
+
+                   /**
+                    * Observe the relevant attributes.
+                    */
+                   attrs.$observe('disabled', function(val) {
+                     if (val) {
+                       cancelShow();
+                     }
+
+                     if (val && ttScope.isOpen) {
+                       hide();
+                     }
+                   });
+
+                   if (isOpenParse) {
+                     scope.$watch(isOpenParse, function(val) {
+                       if (ttScope && !val === ttScope.isOpen) {
+                         toggleTooltipBind();
+                       }
+                     });
+                   }
+
+                   function prepObservers() {
+                     observers.length = 0;
+
+                     if (contentParse) {
+                       observers.push(
+                         scope.$watch(contentParse, function(val) {
+                           ttScope.content = val;
+                           if (!val && ttScope.isOpen) {
+                             hide();
+                           }
+                         })
+                       );
+
+                       observers.push(
+                         tooltipLinkedScope.$watch(function() {
+                           if (!repositionScheduled) {
+                             repositionScheduled = true;
+                             tooltipLinkedScope.$$postDigest(function() {
+                               repositionScheduled = false;
+                               if (ttScope && ttScope.isOpen) {
+                                 positionTooltip();
+                               }
+                             });
+                           }
+                         })
+                       );
+                     } else {
+                       observers.push(
+                         attrs.$observe(ttType, function(val) {
+                           ttScope.content = val;
+                           if (!val && ttScope.isOpen) {
+                             hide();
+                           } else {
+                             positionTooltip();
+                           }
+                         })
+                       );
+                     }
+
+                     observers.push(
+                       attrs.$observe(prefix + 'Title', function(val) {
+                         ttScope.title = val;
+                         if (ttScope.isOpen) {
+                           positionTooltip();
+                         }
+                       })
+                     );
+
+                     observers.push(
+                       attrs.$observe(prefix + 'Placement', function(val) {
+                         ttScope.placement = val ? val : options.placement;
+                         if (ttScope.isOpen) {
+                           positionTooltip();
+                         }
+                       })
+                     );
+                   }
+
+                   function unregisterObservers() {
+                     if (observers.length) {
+                       angular.forEach(observers, function(observer) {
+                         observer();
+                       });
+                       observers.length = 0;
+                     }
+                   }
+
+                   // hide tooltips/popovers for outsideClick trigger
+                   function bodyHideTooltipBind(e) {
+                     if (!ttScope || !ttScope.isOpen || !tooltip) {
+                       return;
+                     }
+                     // make sure the tooltip/popover link or tool tooltip/popover itself were not clicked
+                     if (!element[0].contains(e.target) && !tooltip[0].contains(e.target)) {
+                       hideTooltipBind();
+                     }
+                   }
+
+                   var unregisterTriggers = function() {
+                     triggers.show.forEach(function(trigger) {
+                       if (trigger === 'outsideClick') {
+                         element.off('click', toggleTooltipBind);
+                       } else {
+                         element.off(trigger, showTooltipBind);
+                         element.off(trigger, toggleTooltipBind);
+                       }
+                     });
+                     triggers.hide.forEach(function(trigger) {
+                       if (trigger === 'outsideClick') {
+                         $document.off('click', bodyHideTooltipBind);
+                       } else {
+                         element.off(trigger, hideTooltipBind);
+                       }
+                     });
+                   };
+
+                   function prepTriggers() {
+                     var val = attrs[prefix + 'Trigger'];
+                     unregisterTriggers();
+
+                     triggers = getTriggers(val);
+
+                     if (triggers.show !== 'none') {
+                       triggers.show.forEach(function(trigger, idx) {
+                         if (trigger === 'outsideClick') {
+                           element.on('click', toggleTooltipBind);
+                           $document.on('click', bodyHideTooltipBind);
+                         } else if (trigger === triggers.hide[idx]) {
+                           element.on(trigger, toggleTooltipBind);
+                         } else if (trigger) {
+                           element.on(trigger, showTooltipBind);
+                           element.on(triggers.hide[idx], hideTooltipBind);
+                         }
+
+                         element.on('keypress', function(e) {
+                           if (e.which === 27) {
+                             hideTooltipBind();
+                           }
+                         });
+                       });
+                     }
+                   }
+
+                   prepTriggers();
+
+                   var animation = scope.$eval(attrs[prefix + 'Animation']);
+                   ttScope.animation = angular.isDefined(animation) ? !!animation : options.animation;
+
+                   var appendToBodyVal;
+                   var appendKey = prefix + 'AppendToBody';
+                   if (appendKey in attrs && attrs[appendKey] === undefined) {
+                     appendToBodyVal = true;
+                   } else {
+                     appendToBodyVal = scope.$eval(attrs[appendKey]);
+                   }
+
+                   appendToBody = angular.isDefined(appendToBodyVal) ? appendToBodyVal : appendToBody;
+
+                   // Make sure tooltip is destroyed and removed.
+                   scope.$on('$destroy', function onDestroyTooltip() {
+                     unregisterTriggers();
+                     removeTooltip();
+                     openedTooltips.remove(ttScope);
+                     ttScope = null;
+                   });
+                 };
+               }
+             };
+           };
+         }];
+       })
+
+       // This is mostly ngInclude code but with a custom scope
+       .directive('uibTooltipTemplateTransclude', [
+                '$animate', '$sce', '$compile', '$templateRequest',
+       function ($animate, $sce, $compile, $templateRequest) {
+         return {
+           link: function(scope, elem, attrs) {
+             var origScope = scope.$eval(attrs.tooltipTemplateTranscludeScope);
+
+             var changeCounter = 0,
+               currentScope,
+               previousElement,
+               currentElement;
+
+             var cleanupLastIncludeContent = function() {
+               if (previousElement) {
+                 previousElement.remove();
+                 previousElement = null;
+               }
+
+               if (currentScope) {
+                 currentScope.$destroy();
+                 currentScope = null;
+               }
+
+               if (currentElement) {
+                 $animate.leave(currentElement).then(function() {
+                   previousElement = null;
+                 });
+                 previousElement = currentElement;
+                 currentElement = null;
+               }
+             };
+
+             scope.$watch($sce.parseAsResourceUrl(attrs.uibTooltipTemplateTransclude), function(src) {
+               var thisChangeId = ++changeCounter;
+
+               if (src) {
+                 //set the 2nd param to true to ignore the template request error so that the inner
+                 //contents and scope can be cleaned up.
+                 $templateRequest(src, true).then(function(response) {
+                   if (thisChangeId !== changeCounter) { return; }
+                   var newScope = origScope.$new();
+                   var template = response;
+
+                   var clone = $compile(template)(newScope, function(clone) {
+                     cleanupLastIncludeContent();
+                     $animate.enter(clone, elem);
+                   });
+
+                   currentScope = newScope;
+                   currentElement = clone;
+
+                   currentScope.$emit('$includeContentLoaded', src);
+                 }, function() {
+                   if (thisChangeId === changeCounter) {
+                     cleanupLastIncludeContent();
+                     scope.$emit('$includeContentError', src);
+                   }
+                 });
+                 scope.$emit('$includeContentRequested', src);
+               } else {
+                 cleanupLastIncludeContent();
+               }
+             });
+
+             scope.$on('$destroy', cleanupLastIncludeContent);
+           }
+         };
+       }])
+
+       /**
+        * Note that it's intentional that these classes are *not* applied through $animate.
+        * They must not be animated as they're expected to be present on the tooltip on
+        * initialization.
+        */
+       .directive('uibTooltipClasses', ['$uibPosition', function($uibPosition) {
+         return {
+           restrict: 'A',
+           link: function(scope, element, attrs) {
+             // need to set the primary position so the
+             // arrow has space during position measure.
+             // tooltip.positionTooltip()
+             if (scope.placement) {
+               // // There are no top-left etc... classes
+               // // in TWBS, so we need the primary position.
+               var position = $uibPosition.parsePlacement(scope.placement);
+               element.addClass(position[0]);
+             }
+
+             if (scope.popupClass) {
+               element.addClass(scope.popupClass);
+             }
+
+             if (scope.animation()) {
+               element.addClass(attrs.tooltipAnimationClass);
+             }
+           }
+         };
+       }])
+
+       .directive('uibTooltipPopup', function() {
+         return {
+           replace: true,
+           scope: { content: '@', placement: '@', popupClass: '@', animation: '&', isOpen: '&' },
+           templateUrl: 'uib/template/tooltip/tooltip-popup.html'
+         };
+       })
+
+       .directive('uibTooltip', [ '$uibTooltip', function($uibTooltip) {
+         return $uibTooltip('uibTooltip', 'tooltip', 'mouseenter');
+       }])
+
+       .directive('uibTooltipTemplatePopup', function() {
+         return {
+           replace: true,
+           scope: { contentExp: '&', placement: '@', popupClass: '@', animation: '&', isOpen: '&',
+             originScope: '&' },
+           templateUrl: 'uib/template/tooltip/tooltip-template-popup.html'
+         };
+       })
+
+       .directive('uibTooltipTemplate', ['$uibTooltip', function($uibTooltip) {
+         return $uibTooltip('uibTooltipTemplate', 'tooltip', 'mouseenter', {
+           useContentExp: true
+         });
+       }])
+
+       .directive('uibTooltipHtmlPopup', function() {
+         return {
+           replace: true,
+           scope: { contentExp: '&', placement: '@', popupClass: '@', animation: '&', isOpen: '&' },
+           templateUrl: 'uib/template/tooltip/tooltip-html-popup.html'
+         };
+       })
+
+       .directive('uibTooltipHtml', ['$uibTooltip', function($uibTooltip) {
+         return $uibTooltip('uibTooltipHtml', 'tooltip', 'mouseenter', {
+           useContentExp: true
+         });
+       }]);
+
+       /**
+        * The following features are still outstanding: popup delay, animation as a
+        * function, placement as a function, inside, support for more triggers than
+        * just mouse enter/leave, and selector delegatation.
+        */
+       angular.module('ui.bootstrap.popover', ['ui.bootstrap.tooltip'])
+
+       .directive('uibPopoverTemplatePopup', function() {
+         return {
+           replace: true,
+           scope: { uibTitle: '@', contentExp: '&', placement: '@', popupClass: '@', animation: '&', isOpen: '&',
+             originScope: '&' },
+           templateUrl: 'uib/template/popover/popover-template.html'
+         };
+       })
+
+       .directive('uibPopoverTemplate', ['$uibTooltip', function($uibTooltip) {
+         return $uibTooltip('uibPopoverTemplate', 'popover', 'click', {
+           useContentExp: true
+         });
+       }])
+
+       .directive('uibPopoverHtmlPopup', function() {
+         return {
+           replace: true,
+           scope: { contentExp: '&', uibTitle: '@', placement: '@', popupClass: '@', animation: '&', isOpen: '&' },
+           templateUrl: 'uib/template/popover/popover-html.html'
+         };
+       })
+
+       .directive('uibPopoverHtml', ['$uibTooltip', function($uibTooltip) {
+         return $uibTooltip('uibPopoverHtml', 'popover', 'click', {
+           useContentExp: true
+         });
+       }])
+
+       .directive('uibPopoverPopup', function() {
+         return {
+           replace: true,
+           scope: { uibTitle: '@', content: '@', placement: '@', popupClass: '@', animation: '&', isOpen: '&' },
+           templateUrl: 'uib/template/popover/popover.html'
+         };
+       })
+
+       .directive('uibPopover', ['$uibTooltip', function($uibTooltip) {
+         return $uibTooltip('uibPopover', 'popover', 'click');
+       }]);
+
+       angular.module('ui.bootstrap.progressbar', [])
+
+       .constant('uibProgressConfig', {
+         animate: true,
+         max: 100
+       })
+
+       .controller('UibProgressController', ['$scope', '$attrs', 'uibProgressConfig', function($scope, $attrs, progressConfig) {
+         var self = this,
+             animate = angular.isDefined($attrs.animate) ? $scope.$parent.$eval($attrs.animate) : progressConfig.animate;
+
+         this.bars = [];
+         $scope.max = getMaxOrDefault();
+
+         this.addBar = function(bar, element, attrs) {
+           if (!animate) {
+             element.css({'transition': 'none'});
+           }
+
+           this.bars.push(bar);
+
+           bar.max = getMaxOrDefault();
+           bar.title = attrs && angular.isDefined(attrs.title) ? attrs.title : 'progressbar';
+
+           bar.$watch('value', function(value) {
+             bar.recalculatePercentage();
+           });
+
+           bar.recalculatePercentage = function() {
+             var totalPercentage = self.bars.reduce(function(total, bar) {
+               bar.percent = +(100 * bar.value / bar.max).toFixed(2);
+               return total + bar.percent;
+             }, 0);
+
+             if (totalPercentage > 100) {
+               bar.percent -= totalPercentage - 100;
+             }
+           };
+
+           bar.$on('$destroy', function() {
+             element = null;
+             self.removeBar(bar);
+           });
+         };
+
+         this.removeBar = function(bar) {
+           this.bars.splice(this.bars.indexOf(bar), 1);
+           this.bars.forEach(function (bar) {
+             bar.recalculatePercentage();
+           });
+         };
+
+         //$attrs.$observe('maxParam', function(maxParam) {
+         $scope.$watch('maxParam', function(maxParam) {
+           self.bars.forEach(function(bar) {
+             bar.max = getMaxOrDefault();
+             bar.recalculatePercentage();
+           });
+         });
+
+         function getMaxOrDefault () {
+           return angular.isDefined($scope.maxParam) ? $scope.maxParam : progressConfig.max;
+         }
+       }])
+
+       .directive('uibProgress', function() {
+         return {
+           replace: true,
+           transclude: true,
+           controller: 'UibProgressController',
+           require: 'uibProgress',
+           scope: {
+             maxParam: '=?max'
+           },
+           templateUrl: 'uib/template/progressbar/progress.html'
+         };
+       })
+
+       .directive('uibBar', function() {
+         return {
+           replace: true,
+           transclude: true,
+           require: '^uibProgress',
+           scope: {
+             value: '=',
+             type: '@'
+           },
+           templateUrl: 'uib/template/progressbar/bar.html',
+           link: function(scope, element, attrs, progressCtrl) {
+             progressCtrl.addBar(scope, element, attrs);
+           }
+         };
+       })
+
+       .directive('uibProgressbar', function() {
+         return {
+           replace: true,
+           transclude: true,
+           controller: 'UibProgressController',
+           scope: {
+             value: '=',
+             maxParam: '=?max',
+             type: '@'
+           },
+           templateUrl: 'uib/template/progressbar/progressbar.html',
+           link: function(scope, element, attrs, progressCtrl) {
+             progressCtrl.addBar(scope, angular.element(element.children()[0]), {title: attrs.title});
+           }
+         };
+       });
+
+       angular.module('ui.bootstrap.rating', [])
+
+       .constant('uibRatingConfig', {
+         max: 5,
+         stateOn: null,
+         stateOff: null,
+         enableReset: true,
+         titles : ['one', 'two', 'three', 'four', 'five']
+       })
+
+       .controller('UibRatingController', ['$scope', '$attrs', 'uibRatingConfig', function($scope, $attrs, ratingConfig) {
+         var ngModelCtrl = { $setViewValue: angular.noop },
+           self = this;
+
+         this.init = function(ngModelCtrl_) {
+           ngModelCtrl = ngModelCtrl_;
+           ngModelCtrl.$render = this.render;
+
+           ngModelCtrl.$formatters.push(function(value) {
+             if (angular.isNumber(value) && value << 0 !== value) {
+               value = Math.round(value);
+             }
+
+             return value;
+           });
+
+           this.stateOn = angular.isDefined($attrs.stateOn) ? $scope.$parent.$eval($attrs.stateOn) : ratingConfig.stateOn;
+           this.stateOff = angular.isDefined($attrs.stateOff) ? $scope.$parent.$eval($attrs.stateOff) : ratingConfig.stateOff;
+           this.enableReset = angular.isDefined($attrs.enableReset) ?
+             $scope.$parent.$eval($attrs.enableReset) : ratingConfig.enableReset;
+           var tmpTitles = angular.isDefined($attrs.titles) ? $scope.$parent.$eval($attrs.titles) : ratingConfig.titles;
+           this.titles = angular.isArray(tmpTitles) && tmpTitles.length > 0 ?
+             tmpTitles : ratingConfig.titles;
+
+           var ratingStates = angular.isDefined($attrs.ratingStates) ?
+             $scope.$parent.$eval($attrs.ratingStates) :
+             new Array(angular.isDefined($attrs.max) ? $scope.$parent.$eval($attrs.max) : ratingConfig.max);
+           $scope.range = this.buildTemplateObjects(ratingStates);
+         };
+
+         this.buildTemplateObjects = function(states) {
+           for (var i = 0, n = states.length; i < n; i++) {
+             states[i] = angular.extend({ index: i }, { stateOn: this.stateOn, stateOff: this.stateOff, title: this.getTitle(i) }, states[i]);
+           }
+           return states;
+         };
+
+         this.getTitle = function(index) {
+           if (index >= this.titles.length) {
+             return index + 1;
+           }
+
+           return this.titles[index];
+         };
+
+         $scope.rate = function(value) {
+           if (!$scope.readonly && value >= 0 && value <= $scope.range.length) {
+             var newViewValue = self.enableReset && ngModelCtrl.$viewValue === value ? 0 : value;
+             ngModelCtrl.$setViewValue(newViewValue);
+             ngModelCtrl.$render();
+           }
+         };
+
+         $scope.enter = function(value) {
+           if (!$scope.readonly) {
+             $scope.value = value;
+           }
+           $scope.onHover({value: value});
+         };
+
+         $scope.reset = function() {
+           $scope.value = ngModelCtrl.$viewValue;
+           $scope.onLeave();
+         };
+
+         $scope.onKeydown = function(evt) {
+           if (/(37|38|39|40)/.test(evt.which)) {
+             evt.preventDefault();
+             evt.stopPropagation();
+             $scope.rate($scope.value + (evt.which === 38 || evt.which === 39 ? 1 : -1));
+           }
+         };
+
+         this.render = function() {
+           $scope.value = ngModelCtrl.$viewValue;
+           $scope.title = self.getTitle($scope.value - 1);
+         };
+       }])
+
+       .directive('uibRating', function() {
+         return {
+           require: ['uibRating', 'ngModel'],
+           scope: {
+             readonly: '=?readOnly',
+             onHover: '&',
+             onLeave: '&'
+           },
+           controller: 'UibRatingController',
+           templateUrl: 'uib/template/rating/rating.html',
+           replace: true,
+           link: function(scope, element, attrs, ctrls) {
+             var ratingCtrl = ctrls[0], ngModelCtrl = ctrls[1];
+             ratingCtrl.init(ngModelCtrl);
+           }
+         };
+       });
+
+       angular.module('ui.bootstrap.tabs', [])
+
+       .controller('UibTabsetController', ['$scope', function ($scope) {
+         var ctrl = this,
+           oldIndex;
+         ctrl.tabs = [];
+
+         ctrl.select = function(index, evt) {
+           if (!destroyed) {
+             var previousIndex = findTabIndex(oldIndex);
+             var previousSelected = ctrl.tabs[previousIndex];
+             if (previousSelected) {
+               previousSelected.tab.onDeselect({
+                 $event: evt,
+                 $selectedIndex: index
+               });
+               if (evt && evt.isDefaultPrevented()) {
+                 return;
+               }
+               previousSelected.tab.active = false;
+             }
+
+             var selected = ctrl.tabs[index];
+             if (selected) {
+               selected.tab.onSelect({
+                 $event: evt
+               });
+               selected.tab.active = true;
+               ctrl.active = selected.index;
+               oldIndex = selected.index;
+             } else if (!selected && angular.isDefined(oldIndex)) {
+               ctrl.active = null;
+               oldIndex = null;
+             }
+           }
+         };
+
+         ctrl.addTab = function addTab(tab) {
+           ctrl.tabs.push({
+             tab: tab,
+             index: tab.index
+           });
+           ctrl.tabs.sort(function(t1, t2) {
+             if (t1.index > t2.index) {
+               return 1;
+             }
+
+             if (t1.index < t2.index) {
+               return -1;
+             }
+
+             return 0;
+           });
+
+           if (tab.index === ctrl.active || !angular.isDefined(ctrl.active) && ctrl.tabs.length === 1) {
+             var newActiveIndex = findTabIndex(tab.index);
+             ctrl.select(newActiveIndex);
+           }
+         };
+
+         ctrl.removeTab = function removeTab(tab) {
+           var index;
+           for (var i = 0; i < ctrl.tabs.length; i++) {
+             if (ctrl.tabs[i].tab === tab) {
+               index = i;
+               break;
+             }
+           }
+
+           if (ctrl.tabs[index].index === ctrl.active) {
+             var newActiveTabIndex = index === ctrl.tabs.length - 1 ?
+               index - 1 : index + 1 % ctrl.tabs.length;
+             ctrl.select(newActiveTabIndex);
+           }
+
+           ctrl.tabs.splice(index, 1);
+         };
+
+         $scope.$watch('tabset.active', function(val) {
+           if (angular.isDefined(val) && val !== oldIndex) {
+             ctrl.select(findTabIndex(val));
+           }
+         });
+
+         var destroyed;
+         $scope.$on('$destroy', function() {
+           destroyed = true;
+         });
+
+         function findTabIndex(index) {
+           for (var i = 0; i < ctrl.tabs.length; i++) {
+             if (ctrl.tabs[i].index === index) {
+               return i;
+             }
+           }
+         }
+       }])
+
+       .directive('uibTabset', function() {
+         return {
+           transclude: true,
+           replace: true,
+           scope: {},
+           bindToController: {
+             active: '=?',
+             type: '@'
+           },
+           controller: 'UibTabsetController',
+           controllerAs: 'tabset',
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/tabs/tabset.html';
+           },
+           link: function(scope, element, attrs) {
+             scope.vertical = angular.isDefined(attrs.vertical) ?
+               scope.$parent.$eval(attrs.vertical) : false;
+             scope.justified = angular.isDefined(attrs.justified) ?
+               scope.$parent.$eval(attrs.justified) : false;
+           }
+         };
+       })
+
+       .directive('uibTab', ['$parse', function($parse) {
+         return {
+           require: '^uibTabset',
+           replace: true,
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || 'uib/template/tabs/tab.html';
+           },
+           transclude: true,
+           scope: {
+             heading: '@',
+             index: '=?',
+             classes: '@?',
+             onSelect: '&select', //This callback is called in contentHeadingTransclude
+                                 //once it inserts the tab's content into the dom
+             onDeselect: '&deselect'
+           },
+           controller: function() {
+             //Empty controller so other directives can require being 'under' a tab
+           },
+           controllerAs: 'tab',
+           link: function(scope, elm, attrs, tabsetCtrl, transclude) {
+             scope.disabled = false;
+             if (attrs.disable) {
+               scope.$parent.$watch($parse(attrs.disable), function(value) {
+                 scope.disabled = !! value;
+               });
+             }
+
+             if (angular.isUndefined(attrs.index)) {
+               if (tabsetCtrl.tabs && tabsetCtrl.tabs.length) {
+                 scope.index = Math.max.apply(null, tabsetCtrl.tabs.map(function(t) { return t.index; })) + 1;
+               } else {
+                 scope.index = 0;
+               }
+             }
+
+             if (angular.isUndefined(attrs.classes)) {
+               scope.classes = '';
+             }
+
+             scope.select = function(evt) {
+               if (!scope.disabled) {
+                 var index;
+                 for (var i = 0; i < tabsetCtrl.tabs.length; i++) {
+                   if (tabsetCtrl.tabs[i].tab === scope) {
+                     index = i;
+                     break;
+                   }
+                 }
+
+                 tabsetCtrl.select(index, evt);
+               }
+             };
+
+             tabsetCtrl.addTab(scope);
+             scope.$on('$destroy', function() {
+               tabsetCtrl.removeTab(scope);
+             });
+
+             //We need to transclude later, once the content container is ready.
+             //when this link happens, we're inside a tab heading.
+             scope.$transcludeFn = transclude;
+           }
+         };
+       }])
+
+       .directive('uibTabHeadingTransclude', function() {
+         return {
+           restrict: 'A',
+           require: '^uibTab',
+           link: function(scope, elm) {
+             scope.$watch('headingElement', function updateHeadingElement(heading) {
+               if (heading) {
+                 elm.html('');
+                 elm.append(heading);
+               }
+             });
+           }
+         };
+       })
+
+       .directive('uibTabContentTransclude', function() {
+         return {
+           restrict: 'A',
+           require: '^uibTabset',
+           link: function(scope, elm, attrs) {
+             var tab = scope.$eval(attrs.uibTabContentTransclude).tab;
+
+             //Now our tab is ready to be transcluded: both the tab heading area
+             //and the tab content area are loaded.  Transclude 'em both.
+             tab.$transcludeFn(tab.$parent, function(contents) {
+               angular.forEach(contents, function(node) {
+                 if (isTabHeading(node)) {
+                   //Let tabHeadingTransclude know.
+                   tab.headingElement = node;
+                 } else {
+                   elm.append(node);
+                 }
+               });
+             });
+           }
+         };
+
+         function isTabHeading(node) {
+           return node.tagName && (
+             node.hasAttribute('uib-tab-heading') ||
+             node.hasAttribute('data-uib-tab-heading') ||
+             node.hasAttribute('x-uib-tab-heading') ||
+             node.tagName.toLowerCase() === 'uib-tab-heading' ||
+             node.tagName.toLowerCase() === 'data-uib-tab-heading' ||
+             node.tagName.toLowerCase() === 'x-uib-tab-heading' ||
+             node.tagName.toLowerCase() === 'uib:tab-heading'
+           );
+         }
+       });
+
+       angular.module('ui.bootstrap.timepicker', [])
+
+       .constant('uibTimepickerConfig', {
+         hourStep: 1,
+         minuteStep: 1,
+         secondStep: 1,
+         showMeridian: true,
+         showSeconds: false,
+         meridians: null,
+         readonlyInput: false,
+         mousewheel: true,
+         arrowkeys: true,
+         showSpinners: true,
+         templateUrl: 'uib/template/timepicker/timepicker.html'
+       })
+
+       .controller('UibTimepickerController', ['$scope', '$element', '$attrs', '$parse', '$log', '$locale', 'uibTimepickerConfig', function($scope, $element, $attrs, $parse, $log, $locale, timepickerConfig) {
+         var selected = new Date(),
+           watchers = [],
+           ngModelCtrl = { $setViewValue: angular.noop }, // nullModelCtrl
+           meridians = angular.isDefined($attrs.meridians) ? $scope.$parent.$eval($attrs.meridians) : timepickerConfig.meridians || $locale.DATETIME_FORMATS.AMPMS,
+           padHours = angular.isDefined($attrs.padHours) ? $scope.$parent.$eval($attrs.padHours) : true;
+
+         $scope.tabindex = angular.isDefined($attrs.tabindex) ? $attrs.tabindex : 0;
+         $element.removeAttr('tabindex');
+
+         this.init = function(ngModelCtrl_, inputs) {
+           ngModelCtrl = ngModelCtrl_;
+           ngModelCtrl.$render = this.render;
+
+           ngModelCtrl.$formatters.unshift(function(modelValue) {
+             return modelValue ? new Date(modelValue) : null;
+           });
+
+           var hoursInputEl = inputs.eq(0),
+               minutesInputEl = inputs.eq(1),
+               secondsInputEl = inputs.eq(2);
+
+           var mousewheel = angular.isDefined($attrs.mousewheel) ? $scope.$parent.$eval($attrs.mousewheel) : timepickerConfig.mousewheel;
+
+           if (mousewheel) {
+             this.setupMousewheelEvents(hoursInputEl, minutesInputEl, secondsInputEl);
+           }
+
+           var arrowkeys = angular.isDefined($attrs.arrowkeys) ? $scope.$parent.$eval($attrs.arrowkeys) : timepickerConfig.arrowkeys;
+           if (arrowkeys) {
+             this.setupArrowkeyEvents(hoursInputEl, minutesInputEl, secondsInputEl);
+           }
+
+           $scope.readonlyInput = angular.isDefined($attrs.readonlyInput) ? $scope.$parent.$eval($attrs.readonlyInput) : timepickerConfig.readonlyInput;
+           this.setupInputEvents(hoursInputEl, minutesInputEl, secondsInputEl);
+         };
+
+         var hourStep = timepickerConfig.hourStep;
+         if ($attrs.hourStep) {
+           watchers.push($scope.$parent.$watch($parse($attrs.hourStep), function(value) {
+             hourStep = +value;
+           }));
+         }
+
+         var minuteStep = timepickerConfig.minuteStep;
+         if ($attrs.minuteStep) {
+           watchers.push($scope.$parent.$watch($parse($attrs.minuteStep), function(value) {
+             minuteStep = +value;
+           }));
+         }
+
+         var min;
+         watchers.push($scope.$parent.$watch($parse($attrs.min), function(value) {
+           var dt = new Date(value);
+           min = isNaN(dt) ? undefined : dt;
+         }));
+
+         var max;
+         watchers.push($scope.$parent.$watch($parse($attrs.max), function(value) {
+           var dt = new Date(value);
+           max = isNaN(dt) ? undefined : dt;
+         }));
+
+         var disabled = false;
+         if ($attrs.ngDisabled) {
+           watchers.push($scope.$parent.$watch($parse($attrs.ngDisabled), function(value) {
+             disabled = value;
+           }));
+         }
+
+         $scope.noIncrementHours = function() {
+           var incrementedSelected = addMinutes(selected, hourStep * 60);
+           return disabled || incrementedSelected > max ||
+             incrementedSelected < selected && incrementedSelected < min;
+         };
+
+         $scope.noDecrementHours = function() {
+           var decrementedSelected = addMinutes(selected, -hourStep * 60);
+           return disabled || decrementedSelected < min ||
+             decrementedSelected > selected && decrementedSelected > max;
+         };
+
+         $scope.noIncrementMinutes = function() {
+           var incrementedSelected = addMinutes(selected, minuteStep);
+           return disabled || incrementedSelected > max ||
+             incrementedSelected < selected && incrementedSelected < min;
+         };
+
+         $scope.noDecrementMinutes = function() {
+           var decrementedSelected = addMinutes(selected, -minuteStep);
+           return disabled || decrementedSelected < min ||
+             decrementedSelected > selected && decrementedSelected > max;
+         };
+
+         $scope.noIncrementSeconds = function() {
+           var incrementedSelected = addSeconds(selected, secondStep);
+           return disabled || incrementedSelected > max ||
+             incrementedSelected < selected && incrementedSelected < min;
+         };
+
+         $scope.noDecrementSeconds = function() {
+           var decrementedSelected = addSeconds(selected, -secondStep);
+           return disabled || decrementedSelected < min ||
+             decrementedSelected > selected && decrementedSelected > max;
+         };
+
+         $scope.noToggleMeridian = function() {
+           if (selected.getHours() < 12) {
+             return disabled || addMinutes(selected, 12 * 60) > max;
+           }
+
+           return disabled || addMinutes(selected, -12 * 60) < min;
+         };
+
+         var secondStep = timepickerConfig.secondStep;
+         if ($attrs.secondStep) {
+           watchers.push($scope.$parent.$watch($parse($attrs.secondStep), function(value) {
+             secondStep = +value;
+           }));
+         }
+
+         $scope.showSeconds = timepickerConfig.showSeconds;
+         if ($attrs.showSeconds) {
+           watchers.push($scope.$parent.$watch($parse($attrs.showSeconds), function(value) {
+             $scope.showSeconds = !!value;
+           }));
+         }
+
+         // 12H / 24H mode
+         $scope.showMeridian = timepickerConfig.showMeridian;
+         if ($attrs.showMeridian) {
+           watchers.push($scope.$parent.$watch($parse($attrs.showMeridian), function(value) {
+             $scope.showMeridian = !!value;
+
+             if (ngModelCtrl.$error.time) {
+               // Evaluate from template
+               var hours = getHoursFromTemplate(), minutes = getMinutesFromTemplate();
+               if (angular.isDefined(hours) && angular.isDefined(minutes)) {
+                 selected.setHours(hours);
+                 refresh();
+               }
+             } else {
+               updateTemplate();
+             }
+           }));
+         }
+
+         // Get $scope.hours in 24H mode if valid
+         function getHoursFromTemplate() {
+           var hours = +$scope.hours;
+           var valid = $scope.showMeridian ? hours > 0 && hours < 13 :
+             hours >= 0 && hours < 24;
+           if (!valid || $scope.hours === '') {
+             return undefined;
+           }
+
+           if ($scope.showMeridian) {
+             if (hours === 12) {
+               hours = 0;
+             }
+             if ($scope.meridian === meridians[1]) {
+               hours = hours + 12;
+             }
+           }
+           return hours;
+         }
+
+         function getMinutesFromTemplate() {
+           var minutes = +$scope.minutes;
+           var valid = minutes >= 0 && minutes < 60;
+           if (!valid || $scope.minutes === '') {
+             return undefined;
+           }
+           return minutes;
+         }
+
+         function getSecondsFromTemplate() {
+           var seconds = +$scope.seconds;
+           return seconds >= 0 && seconds < 60 ? seconds : undefined;
+         }
+
+         function pad(value, noPad) {
+           if (value === null) {
+             return '';
+           }
+
+           return angular.isDefined(value) && value.toString().length < 2 && !noPad ?
+             '0' + value : value.toString();
+         }
+
+         // Respond on mousewheel spin
+         this.setupMousewheelEvents = function(hoursInputEl, minutesInputEl, secondsInputEl) {
+           var isScrollingUp = function(e) {
+             if (e.originalEvent) {
+               e = e.originalEvent;
+             }
+             //pick correct delta variable depending on event
+             var delta = e.wheelDelta ? e.wheelDelta : -e.deltaY;
+             return e.detail || delta > 0;
+           };
+
+           hoursInputEl.bind('mousewheel wheel', function(e) {
+             if (!disabled) {
+               $scope.$apply(isScrollingUp(e) ? $scope.incrementHours() : $scope.decrementHours());
+             }
+             e.preventDefault();
+           });
+
+           minutesInputEl.bind('mousewheel wheel', function(e) {
+             if (!disabled) {
+               $scope.$apply(isScrollingUp(e) ? $scope.incrementMinutes() : $scope.decrementMinutes());
+             }
+             e.preventDefault();
+           });
+
+            secondsInputEl.bind('mousewheel wheel', function(e) {
+             if (!disabled) {
+               $scope.$apply(isScrollingUp(e) ? $scope.incrementSeconds() : $scope.decrementSeconds());
+             }
+             e.preventDefault();
+           });
+         };
+
+         // Respond on up/down arrowkeys
+         this.setupArrowkeyEvents = function(hoursInputEl, minutesInputEl, secondsInputEl) {
+           hoursInputEl.bind('keydown', function(e) {
+             if (!disabled) {
+               if (e.which === 38) { // up
+                 e.preventDefault();
+                 $scope.incrementHours();
+                 $scope.$apply();
+               } else if (e.which === 40) { // down
+                 e.preventDefault();
+                 $scope.decrementHours();
+                 $scope.$apply();
+               }
+             }
+           });
+
+           minutesInputEl.bind('keydown', function(e) {
+             if (!disabled) {
+               if (e.which === 38) { // up
+                 e.preventDefault();
+                 $scope.incrementMinutes();
+                 $scope.$apply();
+               } else if (e.which === 40) { // down
+                 e.preventDefault();
+                 $scope.decrementMinutes();
+                 $scope.$apply();
+               }
+             }
+           });
+
+           secondsInputEl.bind('keydown', function(e) {
+             if (!disabled) {
+               if (e.which === 38) { // up
+                 e.preventDefault();
+                 $scope.incrementSeconds();
+                 $scope.$apply();
+               } else if (e.which === 40) { // down
+                 e.preventDefault();
+                 $scope.decrementSeconds();
+                 $scope.$apply();
+               }
+             }
+           });
+         };
+
+         this.setupInputEvents = function(hoursInputEl, minutesInputEl, secondsInputEl) {
+           if ($scope.readonlyInput) {
+             $scope.updateHours = angular.noop;
+             $scope.updateMinutes = angular.noop;
+             $scope.updateSeconds = angular.noop;
+             return;
+           }
+
+           var invalidate = function(invalidHours, invalidMinutes, invalidSeconds) {
+             ngModelCtrl.$setViewValue(null);
+             ngModelCtrl.$setValidity('time', false);
+             if (angular.isDefined(invalidHours)) {
+               $scope.invalidHours = invalidHours;
+             }
+
+             if (angular.isDefined(invalidMinutes)) {
+               $scope.invalidMinutes = invalidMinutes;
+             }
+
+             if (angular.isDefined(invalidSeconds)) {
+               $scope.invalidSeconds = invalidSeconds;
+             }
+           };
+
+           $scope.updateHours = function() {
+             var hours = getHoursFromTemplate(),
+               minutes = getMinutesFromTemplate();
+
+             ngModelCtrl.$setDirty();
+
+             if (angular.isDefined(hours) && angular.isDefined(minutes)) {
+               selected.setHours(hours);
+               selected.setMinutes(minutes);
+               if (selected < min || selected > max) {
+                 invalidate(true);
+               } else {
+                 refresh('h');
+               }
+             } else {
+               invalidate(true);
+             }
+           };
+
+           hoursInputEl.bind('blur', function(e) {
+             ngModelCtrl.$setTouched();
+             if (modelIsEmpty()) {
+               makeValid();
+             } else if ($scope.hours === null || $scope.hours === '') {
+               invalidate(true);
+             } else if (!$scope.invalidHours && $scope.hours < 10) {
+               $scope.$apply(function() {
+                 $scope.hours = pad($scope.hours, !padHours);
+               });
+             }
+           });
+
+           $scope.updateMinutes = function() {
+             var minutes = getMinutesFromTemplate(),
+               hours = getHoursFromTemplate();
+
+             ngModelCtrl.$setDirty();
+
+             if (angular.isDefined(minutes) && angular.isDefined(hours)) {
+               selected.setHours(hours);
+               selected.setMinutes(minutes);
+               if (selected < min || selected > max) {
+                 invalidate(undefined, true);
+               } else {
+                 refresh('m');
+               }
+             } else {
+               invalidate(undefined, true);
+             }
+           };
+
+           minutesInputEl.bind('blur', function(e) {
+             ngModelCtrl.$setTouched();
+             if (modelIsEmpty()) {
+               makeValid();
+             } else if ($scope.minutes === null) {
+               invalidate(undefined, true);
+             } else if (!$scope.invalidMinutes && $scope.minutes < 10) {
+               $scope.$apply(function() {
+                 $scope.minutes = pad($scope.minutes);
+               });
+             }
+           });
+
+           $scope.updateSeconds = function() {
+             var seconds = getSecondsFromTemplate();
+
+             ngModelCtrl.$setDirty();
+
+             if (angular.isDefined(seconds)) {
+               selected.setSeconds(seconds);
+               refresh('s');
+             } else {
+               invalidate(undefined, undefined, true);
+             }
+           };
+
+           secondsInputEl.bind('blur', function(e) {
+             if (modelIsEmpty()) {
+               makeValid();
+             } else if (!$scope.invalidSeconds && $scope.seconds < 10) {
+               $scope.$apply( function() {
+                 $scope.seconds = pad($scope.seconds);
+               });
+             }
+           });
+
+         };
+
+         this.render = function() {
+           var date = ngModelCtrl.$viewValue;
+
+           if (isNaN(date)) {
+             ngModelCtrl.$setValidity('time', false);
+             $log.error('Timepicker directive: "ng-model" value must be a Date object, a number of milliseconds since 01.01.1970 or a string representing an RFC2822 or ISO 8601 date.');
+           } else {
+             if (date) {
+               selected = date;
+             }
+
+             if (selected < min || selected > max) {
+               ngModelCtrl.$setValidity('time', false);
+               $scope.invalidHours = true;
+               $scope.invalidMinutes = true;
+             } else {
+               makeValid();
+             }
+             updateTemplate();
+           }
+         };
+
+         // Call internally when we know that model is valid.
+         function refresh(keyboardChange) {
+           makeValid();
+           ngModelCtrl.$setViewValue(new Date(selected));
+           updateTemplate(keyboardChange);
+         }
+
+         function makeValid() {
+           ngModelCtrl.$setValidity('time', true);
+           $scope.invalidHours = false;
+           $scope.invalidMinutes = false;
+           $scope.invalidSeconds = false;
+         }
+
+         function updateTemplate(keyboardChange) {
+           if (!ngModelCtrl.$modelValue) {
+             $scope.hours = null;
+             $scope.minutes = null;
+             $scope.seconds = null;
+             $scope.meridian = meridians[0];
+           } else {
+             var hours = selected.getHours(),
+               minutes = selected.getMinutes(),
+               seconds = selected.getSeconds();
+
+             if ($scope.showMeridian) {
+               hours = hours === 0 || hours === 12 ? 12 : hours % 12; // Convert 24 to 12 hour system
+             }
+
+             $scope.hours = keyboardChange === 'h' ? hours : pad(hours, !padHours);
+             if (keyboardChange !== 'm') {
+               $scope.minutes = pad(minutes);
+             }
+             $scope.meridian = selected.getHours() < 12 ? meridians[0] : meridians[1];
+
+             if (keyboardChange !== 's') {
+               $scope.seconds = pad(seconds);
+             }
+             $scope.meridian = selected.getHours() < 12 ? meridians[0] : meridians[1];
+           }
+         }
+
+         function addSecondsToSelected(seconds) {
+           selected = addSeconds(selected, seconds);
+           refresh();
+         }
+
+         function addMinutes(selected, minutes) {
+           return addSeconds(selected, minutes*60);
+         }
+
+         function addSeconds(date, seconds) {
+           var dt = new Date(date.getTime() + seconds * 1000);
+           var newDate = new Date(date);
+           newDate.setHours(dt.getHours(), dt.getMinutes(), dt.getSeconds());
+           return newDate;
+         }
+
+         function modelIsEmpty() {
+           return ($scope.hours === null || $scope.hours === '') &&
+             ($scope.minutes === null || $scope.minutes === '') &&
+             (!$scope.showSeconds || $scope.showSeconds && ($scope.seconds === null || $scope.seconds === ''));
+         }
+
+         $scope.showSpinners = angular.isDefined($attrs.showSpinners) ?
+           $scope.$parent.$eval($attrs.showSpinners) : timepickerConfig.showSpinners;
+
+         $scope.incrementHours = function() {
+           if (!$scope.noIncrementHours()) {
+             addSecondsToSelected(hourStep * 60 * 60);
+           }
+         };
+
+         $scope.decrementHours = function() {
+           if (!$scope.noDecrementHours()) {
+             addSecondsToSelected(-hourStep * 60 * 60);
+           }
+         };
+
+         $scope.incrementMinutes = function() {
+           if (!$scope.noIncrementMinutes()) {
+             addSecondsToSelected(minuteStep * 60);
+           }
+         };
+
+         $scope.decrementMinutes = function() {
+           if (!$scope.noDecrementMinutes()) {
+             addSecondsToSelected(-minuteStep * 60);
+           }
+         };
+
+         $scope.incrementSeconds = function() {
+           if (!$scope.noIncrementSeconds()) {
+             addSecondsToSelected(secondStep);
+           }
+         };
+
+         $scope.decrementSeconds = function() {
+           if (!$scope.noDecrementSeconds()) {
+             addSecondsToSelected(-secondStep);
+           }
+         };
+
+         $scope.toggleMeridian = function() {
+           var minutes = getMinutesFromTemplate(),
+               hours = getHoursFromTemplate();
+
+           if (!$scope.noToggleMeridian()) {
+             if (angular.isDefined(minutes) && angular.isDefined(hours)) {
+               addSecondsToSelected(12 * 60 * (selected.getHours() < 12 ? 60 : -60));
+             } else {
+               $scope.meridian = $scope.meridian === meridians[0] ? meridians[1] : meridians[0];
+             }
+           }
+         };
+
+         $scope.blur = function() {
+           ngModelCtrl.$setTouched();
+         };
+
+         $scope.$on('$destroy', function() {
+           while (watchers.length) {
+             watchers.shift()();
+           }
+         });
+       }])
+
+       .directive('uibTimepicker', ['uibTimepickerConfig', function(uibTimepickerConfig) {
+         return {
+           require: ['uibTimepicker', '?^ngModel'],
+           controller: 'UibTimepickerController',
+           controllerAs: 'timepicker',
+           replace: true,
+           scope: {},
+           templateUrl: function(element, attrs) {
+             return attrs.templateUrl || uibTimepickerConfig.templateUrl;
+           },
+           link: function(scope, element, attrs, ctrls) {
+             var timepickerCtrl = ctrls[0], ngModelCtrl = ctrls[1];
+
+             if (ngModelCtrl) {
+               timepickerCtrl.init(ngModelCtrl, element.find('input'));
+             }
+           }
+         };
+       }]);
+
+       angular.module('ui.bootstrap.typeahead', ['ui.bootstrap.debounce', 'ui.bootstrap.position'])
+
+       /**
+        * A helper service that can parse typeahead's syntax (string provided by users)
+        * Extracted to a separate service for ease of unit testing
+        */
+         .factory('uibTypeaheadParser', ['$parse', function($parse) {
+           //                      00000111000000000000022200000000000000003333333333333330000000000044000
+           var TYPEAHEAD_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w\d]*))\s+in\s+([\s\S]+?)$/;
+           return {
+             parse: function(input) {
+               var match = input.match(TYPEAHEAD_REGEXP);
+               if (!match) {
+                 throw new Error(
+                   'Expected typeahead specification in form of "_modelValue_ (as _label_)? for _item_ in _collection_"' +
+                     ' but got "' + input + '".');
+               }
+
+               return {
+                 itemName: match[3],
+                 source: $parse(match[4]),
+                 viewMapper: $parse(match[2] || match[1]),
+                 modelMapper: $parse(match[1])
+               };
+             }
+           };
+         }])
+
+         .controller('UibTypeaheadController', ['$scope', '$element', '$attrs', '$compile', '$parse', '$q', '$timeout', '$document', '$window', '$rootScope', '$$debounce', '$uibPosition', 'uibTypeaheadParser',
+           function(originalScope, element, attrs, $compile, $parse, $q, $timeout, $document, $window, $rootScope, $$debounce, $position, typeaheadParser) {
+           var HOT_KEYS = [9, 13, 27, 38, 40];
+           var eventDebounceTime = 200;
+           var modelCtrl, ngModelOptions;
+           //SUPPORTED ATTRIBUTES (OPTIONS)
+
+           //minimal no of characters that needs to be entered before typeahead kicks-in
+           var minLength = originalScope.$eval(attrs.typeaheadMinLength);
+           if (!minLength && minLength !== 0) {
+             minLength = 1;
+           }
+
+           originalScope.$watch(attrs.typeaheadMinLength, function (newVal) {
+               minLength = !newVal && newVal !== 0 ? 1 : newVal;
+           });
+
+           //minimal wait time after last character typed before typeahead kicks-in
+           var waitTime = originalScope.$eval(attrs.typeaheadWaitMs) || 0;
+
+           //should it restrict model values to the ones selected from the popup only?
+           var isEditable = originalScope.$eval(attrs.typeaheadEditable) !== false;
+           originalScope.$watch(attrs.typeaheadEditable, function (newVal) {
+             isEditable = newVal !== false;
+           });
+
+           //binding to a variable that indicates if matches are being retrieved asynchronously
+           var isLoadingSetter = $parse(attrs.typeaheadLoading).assign || angular.noop;
+
+           //a function to determine if an event should cause selection
+           var isSelectEvent = attrs.typeaheadShouldSelect ? $parse(attrs.typeaheadShouldSelect) : function(scope, vals) {
+             var evt = vals.$event;
+             return evt.which === 13 || evt.which === 9;
+           };
+
+           //a callback executed when a match is selected
+           var onSelectCallback = $parse(attrs.typeaheadOnSelect);
+
+           //should it select highlighted popup value when losing focus?
+           var isSelectOnBlur = angular.isDefined(attrs.typeaheadSelectOnBlur) ? originalScope.$eval(attrs.typeaheadSelectOnBlur) : false;
+
+           //binding to a variable that indicates if there were no results after the query is completed
+           var isNoResultsSetter = $parse(attrs.typeaheadNoResults).assign || angular.noop;
+
+           var inputFormatter = attrs.typeaheadInputFormatter ? $parse(attrs.typeaheadInputFormatter) : undefined;
+
+           var appendToBody = attrs.typeaheadAppendToBody ? originalScope.$eval(attrs.typeaheadAppendToBody) : false;
+
+           var appendTo = attrs.typeaheadAppendTo ?
+             originalScope.$eval(attrs.typeaheadAppendTo) : null;
+
+           var focusFirst = originalScope.$eval(attrs.typeaheadFocusFirst) !== false;
+
+           //If input matches an item of the list exactly, select it automatically
+           var selectOnExact = attrs.typeaheadSelectOnExact ? originalScope.$eval(attrs.typeaheadSelectOnExact) : false;
+
+           //binding to a variable that indicates if dropdown is open
+           var isOpenSetter = $parse(attrs.typeaheadIsOpen).assign || angular.noop;
+
+           var showHint = originalScope.$eval(attrs.typeaheadShowHint) || false;
+
+           //INTERNAL VARIABLES
+
+           //model setter executed upon match selection
+           var parsedModel = $parse(attrs.ngModel);
+           var invokeModelSetter = $parse(attrs.ngModel + '($$$p)');
+           var $setModelValue = function(scope, newValue) {
+             if (angular.isFunction(parsedModel(originalScope)) &&
+               ngModelOptions && ngModelOptions.$options && ngModelOptions.$options.getterSetter) {
+               return invokeModelSetter(scope, {$$$p: newValue});
+             }
+
+             return parsedModel.assign(scope, newValue);
+           };
+
+           //expressions used by typeahead
+           var parserResult = typeaheadParser.parse(attrs.uibTypeahead);
+
+           var hasFocus;
+
+           //Used to avoid bug in iOS webview where iOS keyboard does not fire
+           //mousedown & mouseup events
+           //Issue #3699
+           var selected;
+
+           //create a child scope for the typeahead directive so we are not polluting original scope
+           //with typeahead-specific data (matches, query etc.)
+           var scope = originalScope.$new();
+           var offDestroy = originalScope.$on('$destroy', function() {
+             scope.$destroy();
+           });
+           scope.$on('$destroy', offDestroy);
+
+           // WAI-ARIA
+           var popupId = 'typeahead-' + scope.$id + '-' + Math.floor(Math.random() * 10000);
+           element.attr({
+             'aria-autocomplete': 'list',
+             'aria-expanded': false,
+             'aria-owns': popupId
+           });
+
+           var inputsContainer, hintInputElem;
+           //add read-only input to show hint
+           if (showHint) {
+             inputsContainer = angular.element('<div></div>');
+             inputsContainer.css('position', 'relative');
+             element.after(inputsContainer);
+             hintInputElem = element.clone();
+             hintInputElem.attr('placeholder', '');
+             hintInputElem.attr('tabindex', '-1');
+             hintInputElem.val('');
+             hintInputElem.css({
+               'position': 'absolute',
+               'top': '0px',
+               'left': '0px',
+               'border-color': 'transparent',
+               'box-shadow': 'none',
+               'opacity': 1,
+               'background': 'none 0% 0% / auto repeat scroll padding-box border-box rgb(255, 255, 255)',
+               'color': '#999'
+             });
+             element.css({
+               'position': 'relative',
+               'vertical-align': 'top',
+               'background-color': 'transparent'
+             });
+             inputsContainer.append(hintInputElem);
+             hintInputElem.after(element);
+           }
+
+           //pop-up element used to display matches
+           var popUpEl = angular.element('<div uib-typeahead-popup></div>');
+           popUpEl.attr({
+             id: popupId,
+             matches: 'matches',
+             active: 'activeIdx',
+             select: 'select(activeIdx, evt)',
+             'move-in-progress': 'moveInProgress',
+             query: 'query',
+             position: 'position',
+             'assign-is-open': 'assignIsOpen(isOpen)',
+             debounce: 'debounceUpdate'
+           });
+           //custom item template
+           if (angular.isDefined(attrs.typeaheadTemplateUrl)) {
+             popUpEl.attr('template-url', attrs.typeaheadTemplateUrl);
+           }
+
+           if (angular.isDefined(attrs.typeaheadPopupTemplateUrl)) {
+             popUpEl.attr('popup-template-url', attrs.typeaheadPopupTemplateUrl);
+           }
+
+           var resetHint = function() {
+             if (showHint) {
+               hintInputElem.val('');
+             }
+           };
+
+           var resetMatches = function() {
+             scope.matches = [];
+             scope.activeIdx = -1;
+             element.attr('aria-expanded', false);
+             resetHint();
+           };
+
+           var getMatchId = function(index) {
+             return popupId + '-option-' + index;
+           };
+
+           // Indicate that the specified match is the active (pre-selected) item in the list owned by this typeahead.
+           // This attribute is added or removed automatically when the `activeIdx` changes.
+           scope.$watch('activeIdx', function(index) {
+             if (index < 0) {
+               element.removeAttr('aria-activedescendant');
+             } else {
+               element.attr('aria-activedescendant', getMatchId(index));
+             }
+           });
+
+           var inputIsExactMatch = function(inputValue, index) {
+             if (scope.matches.length > index && inputValue) {
+               return inputValue.toUpperCase() === scope.matches[index].label.toUpperCase();
+             }
+
+             return false;
+           };
+
+           var getMatchesAsync = function(inputValue, evt) {
+             var locals = {$viewValue: inputValue};
+             isLoadingSetter(originalScope, true);
+             isNoResultsSetter(originalScope, false);
+             $q.when(parserResult.source(originalScope, locals)).then(function(matches) {
+               //it might happen that several async queries were in progress if a user were typing fast
+               //but we are interested only in responses that correspond to the current view value
+               var onCurrentRequest = inputValue === modelCtrl.$viewValue;
+               if (onCurrentRequest && hasFocus) {
+                 if (matches && matches.length > 0) {
+                   scope.activeIdx = focusFirst ? 0 : -1;
+                   isNoResultsSetter(originalScope, false);
+                   scope.matches.length = 0;
+
+                   //transform labels
+                   for (var i = 0; i < matches.length; i++) {
+                     locals[parserResult.itemName] = matches[i];
+                     scope.matches.push({
+                       id: getMatchId(i),
+                       label: parserResult.viewMapper(scope, locals),
+                       model: matches[i]
+                     });
+                   }
+
+                   scope.query = inputValue;
+                   //position pop-up with matches - we need to re-calculate its position each time we are opening a window
+                   //with matches as a pop-up might be absolute-positioned and position of an input might have changed on a page
+                   //due to other elements being rendered
+                   recalculatePosition();
+
+                   element.attr('aria-expanded', true);
+
+                   //Select the single remaining option if user input matches
+                   if (selectOnExact && scope.matches.length === 1 && inputIsExactMatch(inputValue, 0)) {
+                     if (angular.isNumber(scope.debounceUpdate) || angular.isObject(scope.debounceUpdate)) {
+                       $$debounce(function() {
+                         scope.select(0, evt);
+                       }, angular.isNumber(scope.debounceUpdate) ? scope.debounceUpdate : scope.debounceUpdate['default']);
+                     } else {
+                       scope.select(0, evt);
+                     }
+                   }
+
+                   if (showHint) {
+                     var firstLabel = scope.matches[0].label;
+                     if (angular.isString(inputValue) &&
+                       inputValue.length > 0 &&
+                       firstLabel.slice(0, inputValue.length).toUpperCase() === inputValue.toUpperCase()) {
+                       hintInputElem.val(inputValue + firstLabel.slice(inputValue.length));
+                     } else {
+                       hintInputElem.val('');
+                     }
+                   }
+                 } else {
+                   resetMatches();
+                   isNoResultsSetter(originalScope, true);
+                 }
+               }
+               if (onCurrentRequest) {
+                 isLoadingSetter(originalScope, false);
+               }
+             }, function() {
+               resetMatches();
+               isLoadingSetter(originalScope, false);
+               isNoResultsSetter(originalScope, true);
+             });
+           };
+
+           // bind events only if appendToBody params exist - performance feature
+           if (appendToBody) {
+             angular.element($window).on('resize', fireRecalculating);
+             $document.find('body').on('scroll', fireRecalculating);
+           }
+
+           // Declare the debounced function outside recalculating for
+           // proper debouncing
+           var debouncedRecalculate = $$debounce(function() {
+             // if popup is visible
+             if (scope.matches.length) {
+               recalculatePosition();
+             }
+
+             scope.moveInProgress = false;
+           }, eventDebounceTime);
+
+           // Default progress type
+           scope.moveInProgress = false;
+
+           function fireRecalculating() {
+             if (!scope.moveInProgress) {
+               scope.moveInProgress = true;
+               scope.$digest();
+             }
+
+             debouncedRecalculate();
+           }
+
+           // recalculate actual position and set new values to scope
+           // after digest loop is popup in right position
+           function recalculatePosition() {
+             scope.position = appendToBody ? $position.offset(element) : $position.position(element);
+             scope.position.top += element.prop('offsetHeight');
+           }
+
+           //we need to propagate user's query so we can higlight matches
+           scope.query = undefined;
+
+           //Declare the timeout promise var outside the function scope so that stacked calls can be cancelled later
+           var timeoutPromise;
+
+           var scheduleSearchWithTimeout = function(inputValue) {
+             timeoutPromise = $timeout(function() {
+               getMatchesAsync(inputValue);
+             }, waitTime);
+           };
+
+           var cancelPreviousTimeout = function() {
+             if (timeoutPromise) {
+               $timeout.cancel(timeoutPromise);
+             }
+           };
+
+           resetMatches();
+
+           scope.assignIsOpen = function (isOpen) {
+             isOpenSetter(originalScope, isOpen);
+           };
+
+           scope.select = function(activeIdx, evt) {
+             //called from within the $digest() cycle
+             var locals = {};
+             var model, item;
+
+             selected = true;
+             locals[parserResult.itemName] = item = scope.matches[activeIdx].model;
+             model = parserResult.modelMapper(originalScope, locals);
+             $setModelValue(originalScope, model);
+             modelCtrl.$setValidity('editable', true);
+             modelCtrl.$setValidity('parse', true);
+
+             onSelectCallback(originalScope, {
+               $item: item,
+               $model: model,
+               $label: parserResult.viewMapper(originalScope, locals),
+               $event: evt
+             });
+
+             resetMatches();
+
+             //return focus to the input element if a match was selected via a mouse click event
+             // use timeout to avoid $rootScope:inprog error
+             if (scope.$eval(attrs.typeaheadFocusOnSelect) !== false) {
+               $timeout(function() { element[0].focus(); }, 0, false);
+             }
+           };
+
+           //bind keyboard events: arrows up(38) / down(40), enter(13) and tab(9), esc(27)
+           element.on('keydown', function(evt) {
+             //typeahead is open and an "interesting" key was pressed
+             if (scope.matches.length === 0 || HOT_KEYS.indexOf(evt.which) === -1) {
+               return;
+             }
+
+             var shouldSelect = isSelectEvent(originalScope, {$event: evt});
+
+             /**
+              * if there's nothing selected (i.e. focusFirst) and enter or tab is hit
+              * or
+              * shift + tab is pressed to bring focus to the previous element
+              * then clear the results
+              */
+             if (scope.activeIdx === -1 && shouldSelect || evt.which === 9 && !!evt.shiftKey) {
+               resetMatches();
+               scope.$digest();
+               return;
+             }
+
+             evt.preventDefault();
+             var target;
+             switch (evt.which) {
+               case 27: // escape
+                 evt.stopPropagation();
+
+                 resetMatches();
+                 originalScope.$digest();
+                 break;
+               case 38: // up arrow
+                 scope.activeIdx = (scope.activeIdx > 0 ? scope.activeIdx : scope.matches.length) - 1;
+                 scope.$digest();
+                 target = popUpEl.find('li')[scope.activeIdx];
+                 target.parentNode.scrollTop = target.offsetTop;
+                 break;
+               case 40: // down arrow
+                 scope.activeIdx = (scope.activeIdx + 1) % scope.matches.length;
+                 scope.$digest();
+                 target = popUpEl.find('li')[scope.activeIdx];
+                 target.parentNode.scrollTop = target.offsetTop;
+                 break;
+               default:
+                 if (shouldSelect) {
+                   scope.$apply(function() {
+                     if (angular.isNumber(scope.debounceUpdate) || angular.isObject(scope.debounceUpdate)) {
+                       $$debounce(function() {
+                         scope.select(scope.activeIdx, evt);
+                       }, angular.isNumber(scope.debounceUpdate) ? scope.debounceUpdate : scope.debounceUpdate['default']);
+                     } else {
+                       scope.select(scope.activeIdx, evt);
+                     }
+                   });
+                 }
+             }
+           });
+
+           element.bind('focus', function (evt) {
+             hasFocus = true;
+             if (minLength === 0 && !modelCtrl.$viewValue) {
+               $timeout(function() {
+                 getMatchesAsync(modelCtrl.$viewValue, evt);
+               }, 0);
+             }
+           });
+
+           element.bind('blur', function(evt) {
+             if (isSelectOnBlur && scope.matches.length && scope.activeIdx !== -1 && !selected) {
+               selected = true;
+               scope.$apply(function() {
+                 if (angular.isObject(scope.debounceUpdate) && angular.isNumber(scope.debounceUpdate.blur)) {
+                   $$debounce(function() {
+                     scope.select(scope.activeIdx, evt);
+                   }, scope.debounceUpdate.blur);
+                 } else {
+                   scope.select(scope.activeIdx, evt);
+                 }
+               });
+             }
+             if (!isEditable && modelCtrl.$error.editable) {
+               modelCtrl.$setViewValue();
+               // Reset validity as we are clearing
+               modelCtrl.$setValidity('editable', true);
+               modelCtrl.$setValidity('parse', true);
+               element.val('');
+             }
+             hasFocus = false;
+             selected = false;
+           });
+
+           // Keep reference to click handler to unbind it.
+           var dismissClickHandler = function(evt) {
+             // Issue #3973
+             // Firefox treats right click as a click on document
+             if (element[0] !== evt.target && evt.which !== 3 && scope.matches.length !== 0) {
+               resetMatches();
+               if (!$rootScope.$$phase) {
+                 originalScope.$digest();
+               }
+             }
+           };
+
+           $document.on('click', dismissClickHandler);
+
+           originalScope.$on('$destroy', function() {
+             $document.off('click', dismissClickHandler);
+             if (appendToBody || appendTo) {
+               $popup.remove();
+             }
+
+             if (appendToBody) {
+               angular.element($window).off('resize', fireRecalculating);
+               $document.find('body').off('scroll', fireRecalculating);
+             }
+             // Prevent jQuery cache memory leak
+             popUpEl.remove();
+
+             if (showHint) {
+                 inputsContainer.remove();
+             }
+           });
+
+           var $popup = $compile(popUpEl)(scope);
+
+           if (appendToBody) {
+             $document.find('body').append($popup);
+           } else if (appendTo) {
+             angular.element(appendTo).eq(0).append($popup);
+           } else {
+             element.after($popup);
+           }
+
+           this.init = function(_modelCtrl, _ngModelOptions) {
+             modelCtrl = _modelCtrl;
+             ngModelOptions = _ngModelOptions;
+
+             scope.debounceUpdate = modelCtrl.$options && $parse(modelCtrl.$options.debounce)(originalScope);
+
+             //plug into $parsers pipeline to open a typeahead on view changes initiated from DOM
+             //$parsers kick-in on all the changes coming from the view as well as manually triggered by $setViewValue
+             modelCtrl.$parsers.unshift(function(inputValue) {
+               hasFocus = true;
+
+               if (minLength === 0 || inputValue && inputValue.length >= minLength) {
+                 if (waitTime > 0) {
+                   cancelPreviousTimeout();
+                   scheduleSearchWithTimeout(inputValue);
+                 } else {
+                   getMatchesAsync(inputValue);
+                 }
+               } else {
+                 isLoadingSetter(originalScope, false);
+                 cancelPreviousTimeout();
+                 resetMatches();
+               }
+
+               if (isEditable) {
+                 return inputValue;
+               }
+
+               if (!inputValue) {
+                 // Reset in case user had typed something previously.
+                 modelCtrl.$setValidity('editable', true);
+                 return null;
+               }
+
+               modelCtrl.$setValidity('editable', false);
+               return undefined;
+             });
+
+             modelCtrl.$formatters.push(function(modelValue) {
+               var candidateViewValue, emptyViewValue;
+               var locals = {};
+
+               // The validity may be set to false via $parsers (see above) if
+               // the model is restricted to selected values. If the model
+               // is set manually it is considered to be valid.
+               if (!isEditable) {
+                 modelCtrl.$setValidity('editable', true);
+               }
+
+               if (inputFormatter) {
+                 locals.$model = modelValue;
+                 return inputFormatter(originalScope, locals);
+               }
+
+               //it might happen that we don't have enough info to properly render input value
+               //we need to check for this situation and simply return model value if we can't apply custom formatting
+               locals[parserResult.itemName] = modelValue;
+               candidateViewValue = parserResult.viewMapper(originalScope, locals);
+               locals[parserResult.itemName] = undefined;
+               emptyViewValue = parserResult.viewMapper(originalScope, locals);
+
+               return candidateViewValue !== emptyViewValue ? candidateViewValue : modelValue;
+             });
+           };
+         }])
+
+         .directive('uibTypeahead', function() {
+           return {
+             controller: 'UibTypeaheadController',
+             require: ['ngModel', '^?ngModelOptions', 'uibTypeahead'],
+             link: function(originalScope, element, attrs, ctrls) {
+               ctrls[2].init(ctrls[0], ctrls[1]);
+             }
+           };
+         })
+
+         .directive('uibTypeaheadPopup', ['$$debounce', function($$debounce) {
+           return {
+             scope: {
+               matches: '=',
+               query: '=',
+               active: '=',
+               position: '&',
+               moveInProgress: '=',
+               select: '&',
+               assignIsOpen: '&',
+               debounce: '&'
+             },
+             replace: true,
+             templateUrl: function(element, attrs) {
+               return attrs.popupTemplateUrl || 'uib/template/typeahead/typeahead-popup.html';
+             },
+             link: function(scope, element, attrs) {
+               scope.templateUrl = attrs.templateUrl;
+
+               scope.isOpen = function() {
+                 var isDropdownOpen = scope.matches.length > 0;
+                 scope.assignIsOpen({ isOpen: isDropdownOpen });
+                 return isDropdownOpen;
+               };
+
+               scope.isActive = function(matchIdx) {
+                 return scope.active === matchIdx;
+               };
+
+               scope.selectActive = function(matchIdx) {
+                 scope.active = matchIdx;
+               };
+
+               scope.selectMatch = function(activeIdx, evt) {
+                 var debounce = scope.debounce();
+                 if (angular.isNumber(debounce) || angular.isObject(debounce)) {
+                   $$debounce(function() {
+                     scope.select({activeIdx: activeIdx, evt: evt});
+                   }, angular.isNumber(debounce) ? debounce : debounce['default']);
+                 } else {
+                   scope.select({activeIdx: activeIdx, evt: evt});
+                 }
+               };
+             }
+           };
+         }])
+
+         .directive('uibTypeaheadMatch', ['$templateRequest', '$compile', '$parse', function($templateRequest, $compile, $parse) {
+           return {
+             scope: {
+               index: '=',
+               match: '=',
+               query: '='
+             },
+             link: function(scope, element, attrs) {
+               var tplUrl = $parse(attrs.templateUrl)(scope.$parent) || 'uib/template/typeahead/typeahead-match.html';
+               $templateRequest(tplUrl).then(function(tplContent) {
+                 var tplEl = angular.element(tplContent.trim());
+                 element.replaceWith(tplEl);
+                 $compile(tplEl)(scope);
+               });
+             }
+           };
+         }])
+
+         .filter('uibTypeaheadHighlight', ['$sce', '$injector', '$log', function($sce, $injector, $log) {
+           var isSanitizePresent;
+           isSanitizePresent = $injector.has('$sanitize');
+
+           function escapeRegexp(queryToEscape) {
+             // Regex: capture the whole query string and replace it with the string that will be used to match
+             // the results, for example if the capture is "a" the result will be \a
+             return queryToEscape.replace(/([.?*+^$[\]\\(){}|-])/g, '\\$1');
+           }
+
+           function containsHtml(matchItem) {
+             return /<.*>/g.test(matchItem);
+           }
+
+           return function(matchItem, query) {
+             if (!isSanitizePresent && containsHtml(matchItem)) {
+               $log.warn('Unsafe use of typeahead please use ngSanitize'); // Warn the user about the danger
+             }
+             matchItem = query ? ('' + matchItem).replace(new RegExp(escapeRegexp(query), 'gi'), '<strong>$&</strong>') : matchItem; // Replaces the capture string with a the same string inside of a "strong" tag
+             if (!isSanitizePresent) {
+               matchItem = $sce.trustAsHtml(matchItem); // If $sanitize is not present we pack the string in a $sce object for the ng-bind-html directive
+             }
+             return matchItem;
+           };
+         }]);
+
+       angular.module("uib/template/accordion/accordion-group.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/accordion/accordion-group.html",
+           "<div class=\"panel\" ng-class=\"panelClass || 'panel-default'\">\n" +
+           "  <div role=\"tab\" id=\"{{::headingId}}\" aria-selected=\"{{isOpen}}\" class=\"panel-heading\" ng-keypress=\"toggleOpen($event)\">\n" +
+           "    <h4 class=\"panel-title\">\n" +
+           "      <a role=\"button\" data-toggle=\"collapse\" href aria-expanded=\"{{isOpen}}\" aria-controls=\"{{::panelId}}\" tabindex=\"0\" class=\"accordion-toggle\" ng-click=\"toggleOpen()\" uib-accordion-transclude=\"heading\"><span uib-accordion-header ng-class=\"{'text-muted': isDisabled}\">{{heading}}</span></a>\n" +
+           "    </h4>\n" +
+           "  </div>\n" +
+           "  <div id=\"{{::panelId}}\" aria-labelledby=\"{{::headingId}}\" aria-hidden=\"{{!isOpen}}\" role=\"tabpanel\" class=\"panel-collapse collapse\" uib-collapse=\"!isOpen\">\n" +
+           "    <div class=\"panel-body\" ng-transclude></div>\n" +
+           "  </div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/accordion/accordion.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/accordion/accordion.html",
+           "<div role=\"tablist\" class=\"panel-group\" ng-transclude></div>");
+       }]);
+
+       angular.module("uib/template/alert/alert.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/alert/alert.html",
+           "<div class=\"alert\" ng-class=\"['alert-' + (type || 'warning'), closeable ? 'alert-dismissible' : null]\" role=\"alert\">\n" +
+           "    <button ng-show=\"closeable\" type=\"button\" class=\"close\" ng-click=\"close({$event: $event})\">\n" +
+           "        <span aria-hidden=\"true\">&times;</span>\n" +
+           "        <span class=\"sr-only\">Close</span>\n" +
+           "    </button>\n" +
+           "    <div ng-transclude></div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/carousel/carousel.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/carousel/carousel.html",
+           "<div ng-mouseenter=\"pause()\" ng-mouseleave=\"play()\" class=\"carousel\" ng-swipe-right=\"prev()\" ng-swipe-left=\"next()\">\n" +
+           "  <div class=\"carousel-inner\" ng-transclude></div>\n" +
+           "  <a role=\"button\" href class=\"left carousel-control\" ng-click=\"prev()\" ng-class=\"{ disabled: isPrevDisabled() }\" ng-show=\"slides.length > 1\">\n" +
+           "    <span aria-hidden=\"true\" class=\"glyphicon glyphicon-chevron-left\"></span>\n" +
+           "    <span class=\"sr-only\">previous</span>\n" +
+           "  </a>\n" +
+           "  <a role=\"button\" href class=\"right carousel-control\" ng-click=\"next()\" ng-class=\"{ disabled: isNextDisabled() }\" ng-show=\"slides.length > 1\">\n" +
+           "    <span aria-hidden=\"true\" class=\"glyphicon glyphicon-chevron-right\"></span>\n" +
+           "    <span class=\"sr-only\">next</span>\n" +
+           "  </a>\n" +
+           "  <ol class=\"carousel-indicators\" ng-show=\"slides.length > 1\">\n" +
+           "    <li ng-repeat=\"slide in slides | orderBy:indexOfSlide track by $index\" ng-class=\"{ active: isActive(slide) }\" ng-click=\"select(slide)\">\n" +
+           "      <span class=\"sr-only\">slide {{ $index + 1 }} of {{ slides.length }}<span ng-if=\"isActive(slide)\">, currently active</span></span>\n" +
+           "    </li>\n" +
+           "  </ol>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/carousel/slide.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/carousel/slide.html",
+           "<div ng-class=\"{\n" +
+           "    'active': active\n" +
+           "  }\" class=\"item text-center\" ng-transclude></div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/datepicker/datepicker.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/datepicker/datepicker.html",
+           "<div class=\"uib-datepicker\" ng-switch=\"datepickerMode\" role=\"application\" ng-keydown=\"keydown($event)\">\n" +
+           "  <uib-daypicker ng-switch-when=\"day\" tabindex=\"0\"></uib-daypicker>\n" +
+           "  <uib-monthpicker ng-switch-when=\"month\" tabindex=\"0\"></uib-monthpicker>\n" +
+           "  <uib-yearpicker ng-switch-when=\"year\" tabindex=\"0\"></uib-yearpicker>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/datepicker/day.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/datepicker/day.html",
+           "<table class=\"uib-daypicker\" role=\"grid\" aria-labelledby=\"{{::uniqueId}}-title\" aria-activedescendant=\"{{activeDateId}}\">\n" +
+           "  <thead>\n" +
+           "    <tr>\n" +
+           "      <th><button type=\"button\" class=\"btn btn-default btn-sm pull-left uib-left\" ng-click=\"move(-1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-left\"></i></button></th>\n" +
+           "      <th colspan=\"{{::5 + showWeeks}}\"><button id=\"{{::uniqueId}}-title\" role=\"heading\" aria-live=\"assertive\" aria-atomic=\"true\" type=\"button\" class=\"btn btn-default btn-sm uib-title\" ng-click=\"toggleMode()\" ng-disabled=\"datepickerMode === maxMode\" tabindex=\"-1\"><strong>{{title}}</strong></button></th>\n" +
+           "      <th><button type=\"button\" class=\"btn btn-default btn-sm pull-right uib-right\" ng-click=\"move(1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-right\"></i></button></th>\n" +
+           "    </tr>\n" +
+           "    <tr>\n" +
+           "      <th ng-if=\"showWeeks\" class=\"text-center\"></th>\n" +
+           "      <th ng-repeat=\"label in ::labels track by $index\" class=\"text-center\"><small aria-label=\"{{::label.full}}\">{{::label.abbr}}</small></th>\n" +
+           "    </tr>\n" +
+           "  </thead>\n" +
+           "  <tbody>\n" +
+           "    <tr class=\"uib-weeks\" ng-repeat=\"row in rows track by $index\">\n" +
+           "      <td ng-if=\"showWeeks\" class=\"text-center h6\"><em>{{ weekNumbers[$index] }}</em></td>\n" +
+           "      <td ng-repeat=\"dt in row\" class=\"uib-day text-center\" role=\"gridcell\"\n" +
+           "        id=\"{{::dt.uid}}\"\n" +
+           "        ng-class=\"::dt.customClass\">\n" +
+           "        <button type=\"button\" class=\"btn btn-default btn-sm\"\n" +
+           "          uib-is-class=\"\n" +
+           "            'btn-info' for selectedDt,\n" +
+           "            'active' for activeDt\n" +
+           "            on dt\"\n" +
+           "          ng-click=\"select(dt.date)\"\n" +
+           "          ng-disabled=\"::dt.disabled\"\n" +
+           "          tabindex=\"-1\"><span ng-class=\"::{'text-muted': dt.secondary, 'text-info': dt.current}\">{{::dt.label}}</span></button>\n" +
+           "      </td>\n" +
+           "    </tr>\n" +
+           "  </tbody>\n" +
+           "</table>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/datepicker/month.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/datepicker/month.html",
+           "<table class=\"uib-monthpicker\" role=\"grid\" aria-labelledby=\"{{::uniqueId}}-title\" aria-activedescendant=\"{{activeDateId}}\">\n" +
+           "  <thead>\n" +
+           "    <tr>\n" +
+           "      <th><button type=\"button\" class=\"btn btn-default btn-sm pull-left uib-left\" ng-click=\"move(-1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-left\"></i></button></th>\n" +
+           "      <th><button id=\"{{::uniqueId}}-title\" role=\"heading\" aria-live=\"assertive\" aria-atomic=\"true\" type=\"button\" class=\"btn btn-default btn-sm uib-title\" ng-click=\"toggleMode()\" ng-disabled=\"datepickerMode === maxMode\" tabindex=\"-1\"><strong>{{title}}</strong></button></th>\n" +
+           "      <th><button type=\"button\" class=\"btn btn-default btn-sm pull-right uib-right\" ng-click=\"move(1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-right\"></i></button></th>\n" +
+           "    </tr>\n" +
+           "  </thead>\n" +
+           "  <tbody>\n" +
+           "    <tr class=\"uib-months\" ng-repeat=\"row in rows track by $index\">\n" +
+           "      <td ng-repeat=\"dt in row\" class=\"uib-month text-center\" role=\"gridcell\"\n" +
+           "        id=\"{{::dt.uid}}\"\n" +
+           "        ng-class=\"::dt.customClass\">\n" +
+           "        <button type=\"button\" class=\"btn btn-default\"\n" +
+           "          uib-is-class=\"\n" +
+           "            'btn-info' for selectedDt,\n" +
+           "            'active' for activeDt\n" +
+           "            on dt\"\n" +
+           "          ng-click=\"select(dt.date)\"\n" +
+           "          ng-disabled=\"::dt.disabled\"\n" +
+           "          tabindex=\"-1\"><span ng-class=\"::{'text-info': dt.current}\">{{::dt.label}}</span></button>\n" +
+           "      </td>\n" +
+           "    </tr>\n" +
+           "  </tbody>\n" +
+           "</table>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/datepicker/year.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/datepicker/year.html",
+           "<table class=\"uib-yearpicker\" role=\"grid\" aria-labelledby=\"{{::uniqueId}}-title\" aria-activedescendant=\"{{activeDateId}}\">\n" +
+           "  <thead>\n" +
+           "    <tr>\n" +
+           "      <th><button type=\"button\" class=\"btn btn-default btn-sm pull-left uib-left\" ng-click=\"move(-1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-left\"></i></button></th>\n" +
+           "      <th colspan=\"{{::columns - 2}}\"><button id=\"{{::uniqueId}}-title\" role=\"heading\" aria-live=\"assertive\" aria-atomic=\"true\" type=\"button\" class=\"btn btn-default btn-sm uib-title\" ng-click=\"toggleMode()\" ng-disabled=\"datepickerMode === maxMode\" tabindex=\"-1\"><strong>{{title}}</strong></button></th>\n" +
+           "      <th><button type=\"button\" class=\"btn btn-default btn-sm pull-right uib-right\" ng-click=\"move(1)\" tabindex=\"-1\"><i class=\"glyphicon glyphicon-chevron-right\"></i></button></th>\n" +
+           "    </tr>\n" +
+           "  </thead>\n" +
+           "  <tbody>\n" +
+           "    <tr class=\"uib-years\" ng-repeat=\"row in rows track by $index\">\n" +
+           "      <td ng-repeat=\"dt in row\" class=\"uib-year text-center\" role=\"gridcell\"\n" +
+           "        id=\"{{::dt.uid}}\"\n" +
+           "        ng-class=\"::dt.customClass\">\n" +
+           "        <button type=\"button\" class=\"btn btn-default\"\n" +
+           "          uib-is-class=\"\n" +
+           "            'btn-info' for selectedDt,\n" +
+           "            'active' for activeDt\n" +
+           "            on dt\"\n" +
+           "          ng-click=\"select(dt.date)\"\n" +
+           "          ng-disabled=\"::dt.disabled\"\n" +
+           "          tabindex=\"-1\"><span ng-class=\"::{'text-info': dt.current}\">{{::dt.label}}</span></button>\n" +
+           "      </td>\n" +
+           "    </tr>\n" +
+           "  </tbody>\n" +
+           "</table>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/datepickerPopup/popup.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/datepickerPopup/popup.html",
+           "<div>\n" +
+           "  <ul class=\"uib-datepicker-popup dropdown-menu uib-position-measure\" dropdown-nested ng-if=\"isOpen\" ng-keydown=\"keydown($event)\" ng-click=\"$event.stopPropagation()\">\n" +
+           "    <li ng-transclude></li>\n" +
+           "    <li ng-if=\"showButtonBar\" class=\"uib-button-bar\">\n" +
+           "      <span class=\"btn-group pull-left\">\n" +
+           "        <button type=\"button\" class=\"btn btn-sm btn-info uib-datepicker-current\" ng-click=\"select('today', $event)\" ng-disabled=\"isDisabled('today')\">{{ getText('current') }}</button>\n" +
+           "        <button type=\"button\" class=\"btn btn-sm btn-danger uib-clear\" ng-click=\"select(null, $event)\">{{ getText('clear') }}</button>\n" +
+           "      </span>\n" +
+           "      <button type=\"button\" class=\"btn btn-sm btn-success pull-right uib-close\" ng-click=\"close($event)\">{{ getText('close') }}</button>\n" +
+           "    </li>\n" +
+           "  </ul>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/modal/backdrop.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/modal/backdrop.html",
+           "<div class=\"modal-backdrop\"\n" +
+           "     uib-modal-animation-class=\"fade\"\n" +
+           "     modal-in-class=\"in\"\n" +
+           "     ng-style=\"{'z-index': 1040 + (index && 1 || 0) + index*10}\"\n" +
+           "></div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/modal/window.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/modal/window.html",
+           "<div modal-render=\"{{$isRendered}}\" tabindex=\"-1\" role=\"dialog\" class=\"modal\"\n" +
+           "    uib-modal-animation-class=\"fade\"\n" +
+           "    modal-in-class=\"in\"\n" +
+           "    ng-style=\"{'z-index': 1050 + index*10, display: 'block'}\">\n" +
+           "    <div class=\"modal-dialog {{size ? 'modal-' + size : ''}}\"><div class=\"modal-content\" uib-modal-transclude></div></div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/pager/pager.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/pager/pager.html",
+           "<ul class=\"pager\">\n" +
+           "  <li ng-class=\"{disabled: noPrevious()||ngDisabled, previous: align}\"><a href ng-click=\"selectPage(page - 1, $event)\">{{::getText('previous')}}</a></li>\n" +
+           "  <li ng-class=\"{disabled: noNext()||ngDisabled, next: align}\"><a href ng-click=\"selectPage(page + 1, $event)\">{{::getText('next')}}</a></li>\n" +
+           "</ul>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/pagination/pagination.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/pagination/pagination.html",
+           "<ul class=\"pagination\">\n" +
+           "  <li ng-if=\"::boundaryLinks\" ng-class=\"{disabled: noPrevious()||ngDisabled}\" class=\"pagination-first\"><a href ng-click=\"selectPage(1, $event)\">{{::getText('first')}}</a></li>\n" +
+           "  <li ng-if=\"::directionLinks\" ng-class=\"{disabled: noPrevious()||ngDisabled}\" class=\"pagination-prev\"><a href ng-click=\"selectPage(page - 1, $event)\">{{::getText('previous')}}</a></li>\n" +
+           "  <li ng-repeat=\"page in pages track by $index\" ng-class=\"{active: page.active,disabled: ngDisabled&&!page.active}\" class=\"pagination-page\"><a href ng-click=\"selectPage(page.number, $event)\">{{page.text}}</a></li>\n" +
+           "  <li ng-if=\"::directionLinks\" ng-class=\"{disabled: noNext()||ngDisabled}\" class=\"pagination-next\"><a href ng-click=\"selectPage(page + 1, $event)\">{{::getText('next')}}</a></li>\n" +
+           "  <li ng-if=\"::boundaryLinks\" ng-class=\"{disabled: noNext()||ngDisabled}\" class=\"pagination-last\"><a href ng-click=\"selectPage(totalPages, $event)\">{{::getText('last')}}</a></li>\n" +
+           "</ul>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/tooltip/tooltip-html-popup.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/tooltip/tooltip-html-popup.html",
+           "<div class=\"tooltip\"\n" +
+           "  tooltip-animation-class=\"fade\"\n" +
+           "  uib-tooltip-classes\n" +
+           "  ng-class=\"{ in: isOpen() }\">\n" +
+           "  <div class=\"tooltip-arrow\"></div>\n" +
+           "  <div class=\"tooltip-inner\" ng-bind-html=\"contentExp()\"></div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/tooltip/tooltip-popup.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/tooltip/tooltip-popup.html",
+           "<div class=\"tooltip\"\n" +
+           "  tooltip-animation-class=\"fade\"\n" +
+           "  uib-tooltip-classes\n" +
+           "  ng-class=\"{ in: isOpen() }\">\n" +
+           "  <div class=\"tooltip-arrow\"></div>\n" +
+           "  <div class=\"tooltip-inner\" ng-bind=\"content\"></div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/tooltip/tooltip-template-popup.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/tooltip/tooltip-template-popup.html",
+           "<div class=\"tooltip\"\n" +
+           "  tooltip-animation-class=\"fade\"\n" +
+           "  uib-tooltip-classes\n" +
+           "  ng-class=\"{ in: isOpen() }\">\n" +
+           "  <div class=\"tooltip-arrow\"></div>\n" +
+           "  <div class=\"tooltip-inner\"\n" +
+           "    uib-tooltip-template-transclude=\"contentExp()\"\n" +
+           "    tooltip-template-transclude-scope=\"originScope()\"></div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/popover/popover-html.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/popover/popover-html.html",
+           "<div class=\"popover\"\n" +
+           "  tooltip-animation-class=\"fade\"\n" +
+           "  uib-tooltip-classes\n" +
+           "  ng-class=\"{ in: isOpen() }\">\n" +
+           "  <div class=\"arrow\"></div>\n" +
+           "\n" +
+           "  <div class=\"popover-inner\">\n" +
+           "      <h3 class=\"popover-title\" ng-bind=\"uibTitle\" ng-if=\"uibTitle\"></h3>\n" +
+           "      <div class=\"popover-content\" ng-bind-html=\"contentExp()\"></div>\n" +
+           "  </div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/popover/popover-template.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/popover/popover-template.html",
+           "<div class=\"popover\"\n" +
+           "  tooltip-animation-class=\"fade\"\n" +
+           "  uib-tooltip-classes\n" +
+           "  ng-class=\"{ in: isOpen() }\">\n" +
+           "  <div class=\"arrow\"></div>\n" +
+           "\n" +
+           "  <div class=\"popover-inner\">\n" +
+           "      <h3 class=\"popover-title\" ng-bind=\"uibTitle\" ng-if=\"uibTitle\"></h3>\n" +
+           "      <div class=\"popover-content\"\n" +
+           "        uib-tooltip-template-transclude=\"contentExp()\"\n" +
+           "        tooltip-template-transclude-scope=\"originScope()\"></div>\n" +
+           "  </div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/popover/popover.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/popover/popover.html",
+           "<div class=\"popover\"\n" +
+           "  tooltip-animation-class=\"fade\"\n" +
+           "  uib-tooltip-classes\n" +
+           "  ng-class=\"{ in: isOpen() }\">\n" +
+           "  <div class=\"arrow\"></div>\n" +
+           "\n" +
+           "  <div class=\"popover-inner\">\n" +
+           "      <h3 class=\"popover-title\" ng-bind=\"uibTitle\" ng-if=\"uibTitle\"></h3>\n" +
+           "      <div class=\"popover-content\" ng-bind=\"content\"></div>\n" +
+           "  </div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/progressbar/bar.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/progressbar/bar.html",
+           "<div class=\"progress-bar\" ng-class=\"type && 'progress-bar-' + type\" role=\"progressbar\" aria-valuenow=\"{{value}}\" aria-valuemin=\"0\" aria-valuemax=\"{{max}}\" ng-style=\"{width: (percent < 100 ? percent : 100) + '%'}\" aria-valuetext=\"{{percent | number:0}}%\" aria-labelledby=\"{{::title}}\" ng-transclude></div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/progressbar/progress.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/progressbar/progress.html",
+           "<div class=\"progress\" ng-transclude aria-labelledby=\"{{::title}}\"></div>");
+       }]);
+
+       angular.module("uib/template/progressbar/progressbar.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/progressbar/progressbar.html",
+           "<div class=\"progress\">\n" +
+           "  <div class=\"progress-bar\" ng-class=\"type && 'progress-bar-' + type\" role=\"progressbar\" aria-valuenow=\"{{value}}\" aria-valuemin=\"0\" aria-valuemax=\"{{max}}\" ng-style=\"{width: (percent < 100 ? percent : 100) + '%'}\" aria-valuetext=\"{{percent | number:0}}%\" aria-labelledby=\"{{::title}}\" ng-transclude></div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/rating/rating.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/rating/rating.html",
+           "<span ng-mouseleave=\"reset()\" ng-keydown=\"onKeydown($event)\" tabindex=\"0\" role=\"slider\" aria-valuemin=\"0\" aria-valuemax=\"{{range.length}}\" aria-valuenow=\"{{value}}\" aria-valuetext=\"{{title}}\">\n" +
+           "    <span ng-repeat-start=\"r in range track by $index\" class=\"sr-only\">({{ $index < value ? '*' : ' ' }})</span>\n" +
+           "    <i ng-repeat-end ng-mouseenter=\"enter($index + 1)\" ng-click=\"rate($index + 1)\" class=\"glyphicon\" ng-class=\"$index < value && (r.stateOn || 'glyphicon-star') || (r.stateOff || 'glyphicon-star-empty')\" ng-attr-title=\"{{r.title}}\"></i>\n" +
+           "</span>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/tabs/tab.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/tabs/tab.html",
+           "<li ng-class=\"[{active: active, disabled: disabled}, classes]\" class=\"uib-tab nav-item\">\n" +
+           "  <a href ng-click=\"select($event)\" class=\"nav-link\" uib-tab-heading-transclude>{{heading}}</a>\n" +
+           "</li>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/tabs/tabset.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/tabs/tabset.html",
+           "<div>\n" +
+           "  <ul class=\"nav nav-{{tabset.type || 'tabs'}}\" ng-class=\"{'nav-stacked': vertical, 'nav-justified': justified}\" ng-transclude></ul>\n" +
+           "  <div class=\"tab-content\">\n" +
+           "    <div class=\"tab-pane\"\n" +
+           "         ng-repeat=\"tab in tabset.tabs\"\n" +
+           "         ng-class=\"{active: tabset.active === tab.index}\"\n" +
+           "         uib-tab-content-transclude=\"tab\">\n" +
+           "    </div>\n" +
+           "  </div>\n" +
+           "</div>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/timepicker/timepicker.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/timepicker/timepicker.html",
+           "<table class=\"uib-timepicker\">\n" +
+           "  <tbody>\n" +
+           "    <tr class=\"text-center\" ng-show=\"::showSpinners\">\n" +
+           "      <td class=\"uib-increment hours\"><a ng-click=\"incrementHours()\" ng-class=\"{disabled: noIncrementHours()}\" class=\"btn btn-link\" ng-disabled=\"noIncrementHours()\" tabindex=\"{{::tabindex}}\"><span class=\"glyphicon glyphicon-chevron-up\"></span></a></td>\n" +
+           "      <td>&nbsp;</td>\n" +
+           "      <td class=\"uib-increment minutes\"><a ng-click=\"incrementMinutes()\" ng-class=\"{disabled: noIncrementMinutes()}\" class=\"btn btn-link\" ng-disabled=\"noIncrementMinutes()\" tabindex=\"{{::tabindex}}\"><span class=\"glyphicon glyphicon-chevron-up\"></span></a></td>\n" +
+           "      <td ng-show=\"showSeconds\">&nbsp;</td>\n" +
+           "      <td ng-show=\"showSeconds\" class=\"uib-increment seconds\"><a ng-click=\"incrementSeconds()\" ng-class=\"{disabled: noIncrementSeconds()}\" class=\"btn btn-link\" ng-disabled=\"noIncrementSeconds()\" tabindex=\"{{::tabindex}}\"><span class=\"glyphicon glyphicon-chevron-up\"></span></a></td>\n" +
+           "      <td ng-show=\"showMeridian\"></td>\n" +
+           "    </tr>\n" +
+           "    <tr>\n" +
+           "      <td class=\"form-group uib-time hours\" ng-class=\"{'has-error': invalidHours}\">\n" +
+           "        <input type=\"text\" placeholder=\"HH\" ng-model=\"hours\" ng-change=\"updateHours()\" class=\"form-control text-center\" ng-readonly=\"::readonlyInput\" maxlength=\"2\" tabindex=\"{{::tabindex}}\" ng-disabled=\"noIncrementHours()\" ng-blur=\"blur()\">\n" +
+           "      </td>\n" +
+           "      <td class=\"uib-separator\">:</td>\n" +
+           "      <td class=\"form-group uib-time minutes\" ng-class=\"{'has-error': invalidMinutes}\">\n" +
+           "        <input type=\"text\" placeholder=\"MM\" ng-model=\"minutes\" ng-change=\"updateMinutes()\" class=\"form-control text-center\" ng-readonly=\"::readonlyInput\" maxlength=\"2\" tabindex=\"{{::tabindex}}\" ng-disabled=\"noIncrementMinutes()\" ng-blur=\"blur()\">\n" +
+           "      </td>\n" +
+           "      <td ng-show=\"showSeconds\" class=\"uib-separator\">:</td>\n" +
+           "      <td class=\"form-group uib-time seconds\" ng-class=\"{'has-error': invalidSeconds}\" ng-show=\"showSeconds\">\n" +
+           "        <input type=\"text\" placeholder=\"SS\" ng-model=\"seconds\" ng-change=\"updateSeconds()\" class=\"form-control text-center\" ng-readonly=\"readonlyInput\" maxlength=\"2\" tabindex=\"{{::tabindex}}\" ng-disabled=\"noIncrementSeconds()\" ng-blur=\"blur()\">\n" +
+           "      </td>\n" +
+           "      <td ng-show=\"showMeridian\" class=\"uib-time am-pm\"><button type=\"button\" ng-class=\"{disabled: noToggleMeridian()}\" class=\"btn btn-default text-center\" ng-click=\"toggleMeridian()\" ng-disabled=\"noToggleMeridian()\" tabindex=\"{{::tabindex}}\">{{meridian}}</button></td>\n" +
+           "    </tr>\n" +
+           "    <tr class=\"text-center\" ng-show=\"::showSpinners\">\n" +
+           "      <td class=\"uib-decrement hours\"><a ng-click=\"decrementHours()\" ng-class=\"{disabled: noDecrementHours()}\" class=\"btn btn-link\" ng-disabled=\"noDecrementHours()\" tabindex=\"{{::tabindex}}\"><span class=\"glyphicon glyphicon-chevron-down\"></span></a></td>\n" +
+           "      <td>&nbsp;</td>\n" +
+           "      <td class=\"uib-decrement minutes\"><a ng-click=\"decrementMinutes()\" ng-class=\"{disabled: noDecrementMinutes()}\" class=\"btn btn-link\" ng-disabled=\"noDecrementMinutes()\" tabindex=\"{{::tabindex}}\"><span class=\"glyphicon glyphicon-chevron-down\"></span></a></td>\n" +
+           "      <td ng-show=\"showSeconds\">&nbsp;</td>\n" +
+           "      <td ng-show=\"showSeconds\" class=\"uib-decrement seconds\"><a ng-click=\"decrementSeconds()\" ng-class=\"{disabled: noDecrementSeconds()}\" class=\"btn btn-link\" ng-disabled=\"noDecrementSeconds()\" tabindex=\"{{::tabindex}}\"><span class=\"glyphicon glyphicon-chevron-down\"></span></a></td>\n" +
+           "      <td ng-show=\"showMeridian\"></td>\n" +
+           "    </tr>\n" +
+           "  </tbody>\n" +
+           "</table>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/typeahead/typeahead-match.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/typeahead/typeahead-match.html",
+           "<a href\n" +
+           "   tabindex=\"-1\"\n" +
+           "   ng-bind-html=\"match.label | uibTypeaheadHighlight:query\"\n" +
+           "   ng-attr-title=\"{{match.label}}\"></a>\n" +
+           "");
+       }]);
+
+       angular.module("uib/template/typeahead/typeahead-popup.html", []).run(["$templateCache", function($templateCache) {
+         $templateCache.put("uib/template/typeahead/typeahead-popup.html",
+           "<ul class=\"dropdown-menu\" ng-show=\"isOpen() && !moveInProgress\" ng-style=\"{top: position().top+'px', left: position().left+'px'}\" role=\"listbox\" aria-hidden=\"{{!isOpen()}}\">\n" +
+           "    <li ng-repeat=\"match in matches track by $index\" ng-class=\"{active: isActive($index) }\" ng-mouseenter=\"selectActive($index)\" ng-click=\"selectMatch($index, $event)\" role=\"option\" id=\"{{::match.id}}\">\n" +
+           "        <div uib-typeahead-match index=\"$index\" match=\"match\" query=\"query\" template-url=\"templateUrl\"></div>\n" +
+           "    </li>\n" +
+           "</ul>\n" +
+           "");
+       }]);
+       angular.module('ui.bootstrap.carousel').run(function() {!angular.$$csp().noInlineStyle && !angular.$$uibCarouselCss && angular.element(document).find('head').prepend('<style type="text/css">.ng-animate.item:not(.left):not(.right){-webkit-transition:0s ease-in-out left;transition:0s ease-in-out left}</style>'); angular.$$uibCarouselCss = true; });
+       angular.module('ui.bootstrap.datepicker').run(function() {!angular.$$csp().noInlineStyle && !angular.$$uibDatepickerCss && angular.element(document).find('head').prepend('<style type="text/css">.uib-datepicker .uib-title{width:100%;}.uib-day button,.uib-month button,.uib-year button{min-width:100%;}.uib-left,.uib-right{width:100%}</style>'); angular.$$uibDatepickerCss = true; });
+       angular.module('ui.bootstrap.position').run(function() {!angular.$$csp().noInlineStyle && !angular.$$uibPositionCss && angular.element(document).find('head').prepend('<style type="text/css">.uib-position-measure{display:block !important;visibility:hidden !important;position:absolute !important;top:-9999px !important;left:-9999px !important;}.uib-position-scrollbar-measure{position:absolute !important;top:-9999px !important;width:50px !important;height:50px !important;overflow:scroll !important;}.uib-position-body-scrollbar-measure{overflow:scroll !important;}</style>'); angular.$$uibPositionCss = true; });
+       angular.module('ui.bootstrap.datepickerPopup').run(function() {!angular.$$csp().noInlineStyle && !angular.$$uibDatepickerpopupCss && angular.element(document).find('head').prepend('<style type="text/css">.uib-datepicker-popup.dropdown-menu{display:block;float:none;margin:0;}.uib-button-bar{padding:10px 9px 2px;}</style>'); angular.$$uibDatepickerpopupCss = true; });
+       angular.module('ui.bootstrap.tooltip').run(function() {!angular.$$csp().noInlineStyle && !angular.$$uibTooltipCss && angular.element(document).find('head').prepend('<style type="text/css">[uib-tooltip-popup].tooltip.top-left > .tooltip-arrow,[uib-tooltip-popup].tooltip.top-right > .tooltip-arrow,[uib-tooltip-popup].tooltip.bottom-left > .tooltip-arrow,[uib-tooltip-popup].tooltip.bottom-right > .tooltip-arrow,[uib-tooltip-popup].tooltip.left-top > .tooltip-arrow,[uib-tooltip-popup].tooltip.left-bottom > .tooltip-arrow,[uib-tooltip-popup].tooltip.right-top > .tooltip-arrow,[uib-tooltip-popup].tooltip.right-bottom > .tooltip-arrow,[uib-tooltip-html-popup].tooltip.top-left > .tooltip-arrow,[uib-tooltip-html-popup].tooltip.top-right > .tooltip-arrow,[uib-tooltip-html-popup].tooltip.bottom-left > .tooltip-arrow,[uib-tooltip-html-popup].tooltip.bottom-right > .tooltip-arrow,[uib-tooltip-html-popup].tooltip.left-top > .tooltip-arrow,[uib-tooltip-html-popup].tooltip.left-bottom > .tooltip-arrow,[uib-tooltip-html-popup].tooltip.right-top > .tooltip-arrow,[uib-tooltip-html-popup].tooltip.right-bottom > .tooltip-arrow,[uib-tooltip-template-popup].tooltip.top-left > .tooltip-arrow,[uib-tooltip-template-popup].tooltip.top-right > .tooltip-arrow,[uib-tooltip-template-popup].tooltip.bottom-left > .tooltip-arrow,[uib-tooltip-template-popup].tooltip.bottom-right > .tooltip-arrow,[uib-tooltip-template-popup].tooltip.left-top > .tooltip-arrow,[uib-tooltip-template-popup].tooltip.left-bottom > .tooltip-arrow,[uib-tooltip-template-popup].tooltip.right-top > .tooltip-arrow,[uib-tooltip-template-popup].tooltip.right-bottom > .tooltip-arrow,[uib-popover-popup].popover.top-left > .arrow,[uib-popover-popup].popover.top-right > .arrow,[uib-popover-popup].popover.bottom-left > .arrow,[uib-popover-popup].popover.bottom-right > .arrow,[uib-popover-popup].popover.left-top > .arrow,[uib-popover-popup].popover.left-bottom > .arrow,[uib-popover-popup].popover.right-top > .arrow,[uib-popover-popup].popover.right-bottom > .arrow,[uib-popover-html-popup].popover.top-left > .arrow,[uib-popover-html-popup].popover.top-right > .arrow,[uib-popover-html-popup].popover.bottom-left > .arrow,[uib-popover-html-popup].popover.bottom-right > .arrow,[uib-popover-html-popup].popover.left-top > .arrow,[uib-popover-html-popup].popover.left-bottom > .arrow,[uib-popover-html-popup].popover.right-top > .arrow,[uib-popover-html-popup].popover.right-bottom > .arrow,[uib-popover-template-popup].popover.top-left > .arrow,[uib-popover-template-popup].popover.top-right > .arrow,[uib-popover-template-popup].popover.bottom-left > .arrow,[uib-popover-template-popup].popover.bottom-right > .arrow,[uib-popover-template-popup].popover.left-top > .arrow,[uib-popover-template-popup].popover.left-bottom > .arrow,[uib-popover-template-popup].popover.right-top > .arrow,[uib-popover-template-popup].popover.right-bottom > .arrow{top:auto;bottom:auto;left:auto;right:auto;margin:0;}[uib-popover-popup].popover,[uib-popover-html-popup].popover,[uib-popover-template-popup].popover{display:block !important;}</style>'); angular.$$uibTooltipCss = true; });
+       angular.module('ui.bootstrap.timepicker').run(function() {!angular.$$csp().noInlineStyle && !angular.$$uibTimepickerCss && angular.element(document).find('head').prepend('<style type="text/css">.uib-time input{width:50px;}</style>'); angular.$$uibTimepickerCss = true; });
+       angular.module('ui.bootstrap.typeahead').run(function() {!angular.$$csp().noInlineStyle && !angular.$$uibTypeaheadCss && angular.element(document).find('head').prepend('<style type="text/css">[uib-typeahead-popup].dropdown-menu{display:block;}</style>'); angular.$$uibTypeaheadCss = true; });
+
+/***/ },
+/* 8 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 9 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 10 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 11 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 12 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 13 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 14 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 15 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 16 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 17 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 18 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 19 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 20 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 21 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 22 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 23 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ },
+/* 24 */
+/***/ function(module, exports) {
+
+       var app;
+       (function (app) {
+           var declares;
+           (function (declares) {
+               var CommandInfo = (function () {
+                   function CommandInfo(name) {
+                       this.name = name;
+                   }
+                   return CommandInfo;
+               })();
+               declares.CommandInfo = CommandInfo;
+           })(declares = app.declares || (app.declares = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var APIEndPoint = (function () {
+                   function APIEndPoint($resource, $http) {
+                       this.$resource = $resource;
+                       this.$http = $http;
+                   }
+                   APIEndPoint.prototype.resource = function (endPoint, data) {
+                       var customAction = {
+                           method: 'GET',
+                           isArray: false
+                       };
+                       var execute = {
+                           method: 'POST',
+                           headers: { 'Content-Type': undefined, enctype: 'multipart/form-data' }
+                       };
+                       return this.$resource(endPoint, {}, { execute: execute });
+                   };
+                   APIEndPoint.prototype.getOptionControlFile = function (command) {
+                       var endPoint = '/api/v1/optionControlFile/' + command;
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getFiles = function (fileId) {
+                       var endPoint = '/api/v1/workspace';
+                       if (fileId) {
+                           endPoint += '/' + fileId;
+                       }
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getDirectories = function () {
+                       var endPoint = '/api/v1/all/workspace/directory';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getTags = function () {
+                       var endPoint = '/api/v1/tagList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.getCommands = function () {
+                       var endPoint = '/api/v1/commandList';
+                       return this.resource(endPoint, {}).get();
+                   };
+                   APIEndPoint.prototype.execute = function (data) {
+                       var endPoint = '/api/v1/execution';
+                       var fd = new FormData();
+                       fd.append('data', data);
+                       return this.$http.post(endPoint, fd, {
+                           headers: { 'Content-Type': undefined },
+                           transformRequest: angular.identity
+                       });
+                   };
+                   APIEndPoint.prototype.debug = function () {
+                       var endPoint = '/api/v1/debug';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.upload = function () {
+                       var endPoint = '/api/v1/upload';
+                       return this.$http.get(endPoint);
+                   };
+                   APIEndPoint.prototype.help = function (command) {
+                       var endPoint = '/api/v1/help/' + command;
+                       return this.$http.get(endPoint);
+                   };
+                   return APIEndPoint;
+               })();
+               services.APIEndPoint = APIEndPoint;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var MyModal = (function () {
+                   function MyModal($uibModal) {
+                       this.$uibModal = $uibModal;
+                       this.modalOption = {
+                           backdrop: true,
+                           controller: null,
+                           templateUrl: null,
+                           size: null
+                       };
+                   }
+                   MyModal.prototype.open = function (modalName) {
+                       if (modalName === 'SelectCommand') {
+                           this.modalOption.templateUrl = 'templates/select-command.html';
+                           this.modalOption.size = 'lg';
+                       }
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.selectCommand = function () {
+                       this.modalOption.templateUrl = 'templates/select-command.html';
+                       this.modalOption.controller = 'selectCommandController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.preview = function () {
+                       this.modalOption.templateUrl = 'templates/preview.html';
+                       this.modalOption.controller = 'previewController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.prototype.upload = function () {
+                       this.modalOption.templateUrl = 'templates/upload.html';
+                       this.modalOption.controller = 'uploadController';
+                       this.modalOption.controllerAs = 'c';
+                       this.modalOption.size = 'lg';
+                       return this.$uibModal.open(this.modalOption);
+                   };
+                   MyModal.$inject = ['$uibModal'];
+                   return MyModal;
+               })();
+               services.MyModal = MyModal;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var WebSocket = (function () {
+                   function WebSocket($rootScope) {
+                       this.$rootScope = $rootScope;
+                       this.socket = io.connect();
+                   }
+                   WebSocket.prototype.on = function (eventName, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       socket.on(eventName, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   WebSocket.prototype.emit = function (eventName, data, callback) {
+                       var socket = this.socket;
+                       var rootScope = this.$rootScope;
+                       this.socket.emit(eventName, data, function () {
+                           var args = arguments;
+                           rootScope.$apply(function () {
+                               if (callback)
+                                   callback.apply(socket, args);
+                           });
+                       });
+                   };
+                   return WebSocket;
+               })();
+               services.WebSocket = WebSocket;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var services;
+           (function (services) {
+               var Console = (function () {
+                   function Console(WebSocket, $rootScope) {
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.WebSocket = WebSocket;
+                       this.$rootScope = $rootScope;
+                       this.directiveIDs = [];
+                       var directiveIDs = this.directiveIDs;
+                       this.WebSocket.on('console', function (d) {
+                           var id = d.id;
+                           var message = d.message;
+                           if (directiveIDs.indexOf(id) > -1) {
+                               $rootScope.$emit(id, message);
+                           }
+                       });
+                   }
+                   Console.prototype.addDirective = function (id) {
+                       if (!(this.directiveIDs.indexOf(id) > -1)) {
+                           this.directiveIDs.push(id);
+                       }
+                   };
+                   Console.prototype.removeDirective = function (id) {
+                       var i = this.directiveIDs.indexOf(id);
+                       if (i > -1) {
+                           this.directiveIDs.splice(i, 1);
+                       }
+                   };
+                   Console.prototype.showIDs = function () {
+                       console.log(this.directiveIDs);
+                   };
+                   return Console;
+               })();
+               services.Console = Console;
+           })(services = app.services || (app.services = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Command = (function () {
+                   function Command() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'commandController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/command.html';
+                   }
+                   Command.Factory = function () {
+                       var directive = function () {
+                           return new Command();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Command;
+               })();
+               directives.Command = Command;
+               var CommandController = (function () {
+                   function CommandController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getOptionControlFile(this.name)
+                           .$promise
+                           .then(function (result) {
+                           controller.options = result.info;
+                       });
+                       this.APIEndPoint
+                           .getDirectories()
+                           .$promise
+                           .then(function (result) {
+                           controller.dirs = result.info;
+                       });
+                       this.heading = "[" + this.index + "]: dcdFilePrint";
+                       this.isOpen = true;
+                       this.$scope.$on('close', function () {
+                           controller.isOpen = false;
+                       });
+                       function guid() {
+                           function s4() {
+                               return Math.floor((1 + Math.random()) * 0x10000)
+                                   .toString(16)
+                                   .substring(1);
+                           }
+                           return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
+                               s4() + '-' + s4() + s4() + s4();
+                       }
+                       this.uuid = guid();
+                       this.Console.addDirective(this.uuid);
+                       this.Console.showIDs();
+                   }
+                   CommandController.prototype.submit = function () {
+                       var opt = [];
+                       angular.forEach(this.options, function (option) {
+                           var obj = {
+                               name: option.option,
+                               arguments: []
+                           };
+                           angular.forEach(option.arg, function (arg) {
+                               if (arg.input) {
+                                   if (typeof arg.input === 'object') {
+                                       obj.arguments.push(arg.input.name);
+                                   }
+                                   else {
+                                       obj.arguments.push(arg.input);
+                                   }
+                               }
+                           });
+                           if (obj.arguments.length > 0) {
+                               opt.push(obj);
+                           }
+                       });
+                       var execObj = {
+                           command: this.name,
+                           workspace: this.workspace.fileId,
+                           options: opt
+                       };
+                       this.APIEndPoint
+                           .execute(JSON.stringify(execObj))
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.prototype.removeMySelf = function (index) {
+                       this.$scope.$destroy();
+                       this.Console.removeDirective(this.uuid);
+                       this.remove()(index, this.list);
+                       this.Console.showIDs();
+                   };
+                   CommandController.prototype.reloadFiles = function () {
+                       var _this = this;
+                       var fileId = this.workspace.fileId;
+                       this.APIEndPoint
+                           .getFiles(fileId)
+                           .$promise
+                           .then(function (result) {
+                           var status = result.status;
+                           if (status === 'success') {
+                               _this.files = result.info;
+                           }
+                           else {
+                               console.log(result.message);
+                           }
+                       });
+                   };
+                   CommandController.prototype.debug = function () {
+                       var div = angular.element(this.$window.document).find("div");
+                       var consoleTag;
+                       var parametersTag;
+                       angular.forEach(div, function (v) {
+                           if (v.className === "panel-body console") {
+                               consoleTag = v;
+                           }
+                           else if (v.className === "row parameters-console") {
+                               parametersTag = v;
+                           }
+                       });
+                       var consoleHeight = parseInt(parametersTag.clientHeight.toString().replace('px', '')) - 150 + 'px';
+                       var consoleWidth = parseInt(parametersTag.clientWidth.toString().replace('px', '')) / 3 * 2 - 150 + 'px';
+                       consoleTag.style.height = consoleHeight;
+                       consoleTag.style.width = consoleWidth;
+                   };
+                   CommandController.prototype.help = function () {
+                       this.APIEndPoint
+                           .help(this.name)
+                           .then(function (result) {
+                           console.log(result);
+                       });
+                   };
+                   CommandController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return CommandController;
+               })();
+               directives.CommandController = CommandController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var HeaderMenu = (function () {
+                   function HeaderMenu() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.templateUrl = 'templates/header-menu.html';
+                       this.controller = 'HeaderMenuController';
+                       this.controllerAs = 'hmc';
+                       this.scope = true;
+                   }
+                   HeaderMenu.Factory = function () {
+                       var directive = function () {
+                           return new HeaderMenu();
+                       };
+                       return directive;
+                   };
+                   return HeaderMenu;
+               })();
+               directives.HeaderMenu = HeaderMenu;
+               var HeaderMenuController = (function () {
+                   function HeaderMenuController($state) {
+                       this.$state = $state;
+                       this.isExecution = this.$state.current.name === 'execution';
+                       this.isWorkspace = this.$state.current.name === 'workspace';
+                       this.isHistory = this.$state.current.name === 'history';
+                   }
+                   HeaderMenuController.prototype.transit = function (state) {
+                       this.$state.go(state);
+                   };
+                   HeaderMenuController.$inject = ['$state'];
+                   return HeaderMenuController;
+               })();
+               directives.HeaderMenuController = HeaderMenuController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Option = (function () {
+                   function Option() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'optionController';
+                       this.bindToController = {
+                           info: '=',
+                           files: '='
+                       };
+                       this.scope = true;
+                       this.templateUrl = 'templates/option.html';
+                       this.controllerAs = 'ctrl';
+                   }
+                   Option.Factory = function () {
+                       var directive = function () {
+                           return new Option();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Option;
+               })();
+               directives.Option = Option;
+               var OptionController = (function () {
+                   function OptionController() {
+                       var controller = this;
+                       angular.forEach(controller.info.arg, function (arg) {
+                           if (arg.initialValue) {
+                               if (arg.formType === 'number') {
+                                   arg.input = parseInt(arg.initialValue);
+                               }
+                               else {
+                                   arg.input = arg.initialValue;
+                               }
+                           }
+                       });
+                   }
+                   OptionController.$inject = [];
+                   return OptionController;
+               })();
+               directives.OptionController = OptionController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Directory = (function () {
+                   function Directory() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.controller = 'directoryController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           info: '=',
+                           add: '&',
+                           list: '=',
+                           files: '='
+                       };
+                       this.templateUrl = 'templates/directory.html';
+                   }
+                   Directory.Factory = function () {
+                       var directive = function () {
+                           return new Directory();
+                       };
+                       return directive;
+                   };
+                   return Directory;
+               })();
+               directives.Directory = Directory;
+               var DirectoryController = (function () {
+                   function DirectoryController(APIEndPoint, $scope) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getFiles(this.info.fileId)
+                           .$promise
+                           .then(function (result) {
+                           if (result.status === 'success') {
+                               controller.files = result.info;
+                               angular.forEach(result.info, function (file) {
+                                   if (file.fileType === '0') {
+                                       var o = file;
+                                       if (controller.info.path === '/') {
+                                           o.path = '/' + file.name;
+                                       }
+                                       else {
+                                           o.path = controller.info.path + '/' + file.name;
+                                       }
+                                       controller.add()(o, controller.list);
+                                   }
+                               });
+                           }
+                           ;
+                       });
+                   }
+                   DirectoryController.$inject = ['APIEndPoint', '$scope'];
+                   return DirectoryController;
+               })();
+               directives.DirectoryController = DirectoryController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var directives;
+           (function (directives) {
+               var Upload = (function () {
+                   function Upload() {
+                       this.restrict = 'E';
+                       this.replace = true;
+                       this.scope = true;
+                       this.controller = 'UploadController';
+                       this.controllerAs = 'ctrl';
+                       this.bindToController = {
+                           index: '=',
+                           name: '=',
+                           remove: '&',
+                           list: '='
+                       };
+                       this.templateUrl = 'templates/upload.html';
+                       console.log("templates/upload.html-constructor");
+                   }
+                   Upload.Factory = function () {
+                       var directive = function () {
+                           return new Upload();
+                       };
+                       directive.$inject = [];
+                       return directive;
+                   };
+                   return Upload;
+               })();
+               directives.Upload = Upload;
+               var UploadController = (function () {
+                   function UploadController(APIEndPoint, $scope, MyModal, WebSocket, $window, $rootScope, Console) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$scope = $scope;
+                       this.MyModal = MyModal;
+                       this.WebSocket = WebSocket;
+                       this.$window = $window;
+                       this.$rootScope = $rootScope;
+                       this.Console = Console;
+                       var controller = this;
+                       console.log("directive.upload-constructor");
+                   }
+                   UploadController.prototype.submit = function () {
+                       console.log("submit: function not supported¥n");
+                   };
+                   UploadController.$inject = ['APIEndPoint', '$scope', 'MyModal', 'WebSocket', '$window', '$rootScope', 'Console'];
+                   return UploadController;
+               })();
+               directives.UploadController = UploadController;
+           })(directives = app.directives || (app.directives = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Execution = (function () {
+                   function Execution(MyModal, $scope) {
+                       this.MyModal = MyModal;
+                       this.$scope = $scope;
+                       this.commandInfoList = [];
+                   }
+                   ;
+                   Execution.prototype.add = function () {
+                       this.$scope.$broadcast('close');
+                       var commandInfoList = this.commandInfoList;
+                       var commandInstance = this.MyModal.selectCommand();
+                       commandInstance
+                           .result
+                           .then(function (command) {
+                           commandInfoList.push(new app.declares.CommandInfo(command));
+                       });
+                   };
+                   Execution.prototype.open = function () {
+                       var result = this.MyModal.open('SelectCommand');
+                       console.log(result);
+                   };
+                   Execution.prototype.remove = function (index, list) {
+                       list.splice(index, 1);
+                   };
+                   Execution.prototype.close = function () {
+                       console.log("close");
+                   };
+                   Execution.$inject = ['MyModal', '$scope'];
+                   return Execution;
+               })();
+               controllers.Execution = Execution;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Workspace = (function () {
+                   function Workspace($scope, APIEndPoint, MyModal) {
+                       this.$scope = $scope;
+                       this.APIEndPoint = APIEndPoint;
+                       this.MyModal = MyModal;
+                       this.directoryList = [];
+                       var controller = this;
+                       var directoryList = this.directoryList;
+                       var o = {
+                           fileId: '1f83f620-c1ed-11e5-9657-7942989daa00',
+                           name: '',
+                           parentId: '',
+                           fileType: '',
+                           createdAt: '',
+                           updatedAt: '',
+                           path: '/'
+                       };
+                       directoryList.push(o);
+                   }
+                   Workspace.prototype.addDirectory = function (info, directoryList) {
+                       directoryList.push(info);
+                   };
+                   Workspace.prototype.upload = function () {
+                       this.MyModal.upload();
+                   };
+                   Workspace.prototype.debug = function () {
+                       this.MyModal.preview();
+                   };
+                   Workspace.$inject = ['$scope', 'APIEndPoint', 'MyModal'];
+                   return Workspace;
+               })();
+               controllers.Workspace = Workspace;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var History = (function () {
+                   function History($scope) {
+                       this.page = "History";
+                   }
+                   History.$inject = ['$scope'];
+                   return History;
+               })();
+               controllers.History = History;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var SelectCommand = (function () {
+                   function SelectCommand($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       this.APIEndPoint
+                           .getTags()
+                           .$promise.then(function (result) {
+                           controller.tags = result.info;
+                       });
+                       this.APIEndPoint
+                           .getCommands()
+                           .$promise.then(function (result) {
+                           controller.commands = result.info;
+                       });
+                       this.currentTag = 'all';
+                   }
+                   SelectCommand.prototype.changeTag = function (tag) {
+                       this.currentTag = tag;
+                   };
+                   SelectCommand.prototype.selectCommand = function (command) {
+                       this.$modalInstance.close(command);
+                   };
+                   SelectCommand.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return SelectCommand;
+               })();
+               controllers.SelectCommand = SelectCommand;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Upload = (function () {
+                   function Upload($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('controller.upload-controllers');
+                   }
+                   Upload.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Upload;
+               })();
+               controllers.Upload = Upload;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var app;
+       (function (app) {
+           var controllers;
+           (function (controllers) {
+               var Preview = (function () {
+                   function Preview($scope, APIEndPoint, $modalInstance) {
+                       this.APIEndPoint = APIEndPoint;
+                       this.$modalInstance = $modalInstance;
+                       var controller = this;
+                       console.log('preview');
+                   }
+                   Preview.$inject = ['$scope', 'APIEndPoint', '$uibModalInstance'];
+                   return Preview;
+               })();
+               controllers.Preview = Preview;
+           })(controllers = app.controllers || (app.controllers = {}));
+       })(app || (app = {}));
+       var filters;
+       (function (filters) {
+           function Tag() {
+               return function (commands, tag) {
+                   var result = [];
+                   angular.forEach(commands, function (command) {
+                       var flag = false;
+                       angular.forEach(command.tags, function (value) {
+                           if (tag === value)
+                               flag = true;
+                       });
+                       if (flag)
+                           result.push(command);
+                   });
+                   return result;
+               };
+           }
+           filters.Tag = Tag;
+       })(filters || (filters = {}));
+       var app;
+       (function (app) {
+           'use strict';
+           var appName = 'zephyr';
+           app.zephyr = angular.module(appName, ['ui.router', 'ngResource', 'ui.bootstrap']);
+           app.zephyr.config(function ($stateProvider, $urlRouterProvider, $locationProvider) {
+               $urlRouterProvider.otherwise('/execution');
+               $locationProvider.html5Mode({
+                   enabled: true,
+                   requireBase: false
+               });
+               $stateProvider
+                   .state('execution', {
+                   url: '/execution',
+                   templateUrl: 'templates/execution.html',
+                   controller: 'executionController',
+                   controllerAs: 'c'
+               })
+                   .state('workspace', {
+                   url: '/workspace',
+                   templateUrl: 'templates/workspace.html',
+                   controller: 'workspaceController',
+                   controllerAs: 'c'
+               })
+                   .state('history', {
+                   url: '/history',
+                   templateUrl: 'templates/history.html',
+                   controller: 'historyController',
+                   controllerAs: 'c'
+               });
+           });
+           app.zephyr.service('APIEndPoint', app.services.APIEndPoint);
+           app.zephyr.service('MyModal', app.services.MyModal);
+           app.zephyr.service('WebSocket', app.services.WebSocket);
+           app.zephyr.service('Console', app.services.Console);
+           app.zephyr.filter('Tag', filters.Tag);
+           app.zephyr.controller('selectCommandController', app.controllers.SelectCommand);
+           app.zephyr.controller('previewController', app.controllers.Preview);
+           app.zephyr.controller('uploadController', app.controllers.Upload);
+           app.zephyr.controller('executionController', app.controllers.Execution);
+           app.zephyr.controller('workspaceController', app.controllers.Workspace);
+           app.zephyr.controller('historyController', app.controllers.History);
+           app.zephyr.controller('commandController', app.directives.CommandController);
+           app.zephyr.controller('optionController', app.directives.OptionController);
+           app.zephyr.controller('directoryController', app.directives.DirectoryController);
+           app.zephyr.controller('HeaderMenuController', app.directives.HeaderMenuController);
+           app.zephyr.controller('uploadController', app.directives.UploadController);
+           app.zephyr.directive('headerMenu', app.directives.HeaderMenu.Factory());
+           app.zephyr.directive('command', app.directives.Command.Factory());
+           app.zephyr.directive('option', app.directives.Option.Factory());
+           app.zephyr.directive('directory', app.directives.Directory.Factory());
+       })(app || (app = {}));
+
+
+/***/ }
+/******/ ]);
\ No newline at end of file
diff --git a/front-end/dist/css/style.css b/front-end/dist/css/style.css
new file mode 100755 (executable)
index 0000000..6d9c34e
--- /dev/null
@@ -0,0 +1,5850 @@
+@charset "UTF-8";
+.accordion-toggle {
+  cursor: pointer; }
+
+.option-box {
+  width: 20%; }
+
+.console-head {
+  background-color: white; }
+
+.console {
+  background-color: white;
+  padding: 20px;
+  height: 100%; }
+
+.console p {
+  font-family: 'Open Sans'; }
+
+.command {
+  padding: 5px; }
+
+.panel-title {
+  font-family: 'Open Sans'; }
+
+.open-sans {
+  font-family: 'Open Sans'; }
+
+.btn {
+  font-family: 'Open Sans'; }
+
+label {
+  font-family: 'Open Sans'; }
+
+.page-header {
+  color: black; }
+
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+html {
+  font-family: sans-serif;
+  -ms-text-size-adjust: 100%;
+  -webkit-text-size-adjust: 100%; }
+
+body {
+  margin: 0; }
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block; }
+
+audio,
+canvas,
+progress,
+video {
+  display: inline-block;
+  vertical-align: baseline; }
+
+audio:not([controls]) {
+  display: none;
+  height: 0; }
+
+[hidden],
+template {
+  display: none; }
+
+a {
+  background-color: transparent; }
+
+a:active,
+a:hover {
+  outline: 0; }
+
+abbr[title] {
+  border-bottom: 1px dotted; }
+
+b,
+strong {
+  font-weight: bold; }
+
+dfn {
+  font-style: italic; }
+
+h1 {
+  font-size: 2em;
+  margin: 0.67em 0; }
+
+mark {
+  background: #ff0;
+  color: #000; }
+
+small {
+  font-size: 80%; }
+
+sub,
+sup {
+  font-size: 75%;
+  line-height: 0;
+  position: relative;
+  vertical-align: baseline; }
+
+sup {
+  top: -0.5em; }
+
+sub {
+  bottom: -0.25em; }
+
+img {
+  border: 0; }
+
+svg:not(:root) {
+  overflow: hidden; }
+
+figure {
+  margin: 1em 40px; }
+
+hr {
+  box-sizing: content-box;
+  height: 0; }
+
+pre {
+  overflow: auto; }
+
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em; }
+
+button,
+input,
+optgroup,
+select,
+textarea {
+  color: inherit;
+  font: inherit;
+  margin: 0; }
+
+button {
+  overflow: visible; }
+
+button,
+select {
+  text-transform: none; }
+
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button;
+  cursor: pointer; }
+
+button[disabled],
+html input[disabled] {
+  cursor: default; }
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  border: 0;
+  padding: 0; }
+
+input {
+  line-height: normal; }
+
+input[type="checkbox"],
+input[type="radio"] {
+  box-sizing: border-box;
+  padding: 0; }
+
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto; }
+
+input[type="search"] {
+  -webkit-appearance: textfield;
+  box-sizing: content-box; }
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none; }
+
+fieldset {
+  border: 1px solid #c0c0c0;
+  margin: 0 2px;
+  padding: 0.35em 0.625em 0.75em; }
+
+legend {
+  border: 0;
+  padding: 0; }
+
+textarea {
+  overflow: auto; }
+
+optgroup {
+  font-weight: bold; }
+
+table {
+  border-collapse: collapse;
+  border-spacing: 0; }
+
+td,
+th {
+  padding: 0; }
+
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+@media print {
+  *,
+  *:before,
+  *:after {
+    background: transparent !important;
+    color: #000 !important;
+    box-shadow: none !important;
+    text-shadow: none !important; }
+  a,
+  a:visited {
+    text-decoration: underline; }
+  a[href]:after {
+    content: " (" attr(href) ")"; }
+  abbr[title]:after {
+    content: " (" attr(title) ")"; }
+  a[href^="#"]:after,
+  a[href^="javascript:"]:after {
+    content: ""; }
+  pre,
+  blockquote {
+    border: 1px solid #999;
+    page-break-inside: avoid; }
+  thead {
+    display: table-header-group; }
+  tr,
+  img {
+    page-break-inside: avoid; }
+  img {
+    max-width: 100% !important; }
+  p,
+  h2,
+  h3 {
+    orphans: 3;
+    widows: 3; }
+  h2,
+  h3 {
+    page-break-after: avoid; }
+  .navbar {
+    display: none; }
+  .btn > .caret,
+  .dropup > .btn > .caret {
+    border-top-color: #000 !important; }
+  .label {
+    border: 1px solid #000; }
+  .table {
+    border-collapse: collapse !important; }
+    .table td,
+    .table th {
+      background-color: #fff !important; }
+  .table-bordered th,
+  .table-bordered td {
+    border: 1px solid #ddd !important; } }
+
+@font-face {
+  font-family: 'Glyphicons Halflings';
+  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
+  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
+
+.glyphicon {
+  position: relative;
+  top: 1px;
+  display: inline-block;
+  font-family: 'Glyphicons Halflings';
+  font-style: normal;
+  font-weight: normal;
+  line-height: 1;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale; }
+
+.glyphicon-asterisk:before {
+  content: "\002a"; }
+
+.glyphicon-plus:before {
+  content: "\002b"; }
+
+.glyphicon-euro:before,
+.glyphicon-eur:before {
+  content: "\20ac"; }
+
+.glyphicon-minus:before {
+  content: "\2212"; }
+
+.glyphicon-cloud:before {
+  content: "\2601"; }
+
+.glyphicon-envelope:before {
+  content: "\2709"; }
+
+.glyphicon-pencil:before {
+  content: "\270f"; }
+
+.glyphicon-glass:before {
+  content: "\e001"; }
+
+.glyphicon-music:before {
+  content: "\e002"; }
+
+.glyphicon-search:before {
+  content: "\e003"; }
+
+.glyphicon-heart:before {
+  content: "\e005"; }
+
+.glyphicon-star:before {
+  content: "\e006"; }
+
+.glyphicon-star-empty:before {
+  content: "\e007"; }
+
+.glyphicon-user:before {
+  content: "\e008"; }
+
+.glyphicon-film:before {
+  content: "\e009"; }
+
+.glyphicon-th-large:before {
+  content: "\e010"; }
+
+.glyphicon-th:before {
+  content: "\e011"; }
+
+.glyphicon-th-list:before {
+  content: "\e012"; }
+
+.glyphicon-ok:before {
+  content: "\e013"; }
+
+.glyphicon-remove:before {
+  content: "\e014"; }
+
+.glyphicon-zoom-in:before {
+  content: "\e015"; }
+
+.glyphicon-zoom-out:before {
+  content: "\e016"; }
+
+.glyphicon-off:before {
+  content: "\e017"; }
+
+.glyphicon-signal:before {
+  content: "\e018"; }
+
+.glyphicon-cog:before {
+  content: "\e019"; }
+
+.glyphicon-trash:before {
+  content: "\e020"; }
+
+.glyphicon-home:before {
+  content: "\e021"; }
+
+.glyphicon-file:before {
+  content: "\e022"; }
+
+.glyphicon-time:before {
+  content: "\e023"; }
+
+.glyphicon-road:before {
+  content: "\e024"; }
+
+.glyphicon-download-alt:before {
+  content: "\e025"; }
+
+.glyphicon-download:before {
+  content: "\e026"; }
+
+.glyphicon-upload:before {
+  content: "\e027"; }
+
+.glyphicon-inbox:before {
+  content: "\e028"; }
+
+.glyphicon-play-circle:before {
+  content: "\e029"; }
+
+.glyphicon-repeat:before {
+  content: "\e030"; }
+
+.glyphicon-refresh:before {
+  content: "\e031"; }
+
+.glyphicon-list-alt:before {
+  content: "\e032"; }
+
+.glyphicon-lock:before {
+  content: "\e033"; }
+
+.glyphicon-flag:before {
+  content: "\e034"; }
+
+.glyphicon-headphones:before {
+  content: "\e035"; }
+
+.glyphicon-volume-off:before {
+  content: "\e036"; }
+
+.glyphicon-volume-down:before {
+  content: "\e037"; }
+
+.glyphicon-volume-up:before {
+  content: "\e038"; }
+
+.glyphicon-qrcode:before {
+  content: "\e039"; }
+
+.glyphicon-barcode:before {
+  content: "\e040"; }
+
+.glyphicon-tag:before {
+  content: "\e041"; }
+
+.glyphicon-tags:before {
+  content: "\e042"; }
+
+.glyphicon-book:before {
+  content: "\e043"; }
+
+.glyphicon-bookmark:before {
+  content: "\e044"; }
+
+.glyphicon-print:before {
+  content: "\e045"; }
+
+.glyphicon-camera:before {
+  content: "\e046"; }
+
+.glyphicon-font:before {
+  content: "\e047"; }
+
+.glyphicon-bold:before {
+  content: "\e048"; }
+
+.glyphicon-italic:before {
+  content: "\e049"; }
+
+.glyphicon-text-height:before {
+  content: "\e050"; }
+
+.glyphicon-text-width:before {
+  content: "\e051"; }
+
+.glyphicon-align-left:before {
+  content: "\e052"; }
+
+.glyphicon-align-center:before {
+  content: "\e053"; }
+
+.glyphicon-align-right:before {
+  content: "\e054"; }
+
+.glyphicon-align-justify:before {
+  content: "\e055"; }
+
+.glyphicon-list:before {
+  content: "\e056"; }
+
+.glyphicon-indent-left:before {
+  content: "\e057"; }
+
+.glyphicon-indent-right:before {
+  content: "\e058"; }
+
+.glyphicon-facetime-video:before {
+  content: "\e059"; }
+
+.glyphicon-picture:before {
+  content: "\e060"; }
+
+.glyphicon-map-marker:before {
+  content: "\e062"; }
+
+.glyphicon-adjust:before {
+  content: "\e063"; }
+
+.glyphicon-tint:before {
+  content: "\e064"; }
+
+.glyphicon-edit:before {
+  content: "\e065"; }
+
+.glyphicon-share:before {
+  content: "\e066"; }
+
+.glyphicon-check:before {
+  content: "\e067"; }
+
+.glyphicon-move:before {
+  content: "\e068"; }
+
+.glyphicon-step-backward:before {
+  content: "\e069"; }
+
+.glyphicon-fast-backward:before {
+  content: "\e070"; }
+
+.glyphicon-backward:before {
+  content: "\e071"; }
+
+.glyphicon-play:before {
+  content: "\e072"; }
+
+.glyphicon-pause:before {
+  content: "\e073"; }
+
+.glyphicon-stop:before {
+  content: "\e074"; }
+
+.glyphicon-forward:before {
+  content: "\e075"; }
+
+.glyphicon-fast-forward:before {
+  content: "\e076"; }
+
+.glyphicon-step-forward:before {
+  content: "\e077"; }
+
+.glyphicon-eject:before {
+  content: "\e078"; }
+
+.glyphicon-chevron-left:before {
+  content: "\e079"; }
+
+.glyphicon-chevron-right:before {
+  content: "\e080"; }
+
+.glyphicon-plus-sign:before {
+  content: "\e081"; }
+
+.glyphicon-minus-sign:before {
+  content: "\e082"; }
+
+.glyphicon-remove-sign:before {
+  content: "\e083"; }
+
+.glyphicon-ok-sign:before {
+  content: "\e084"; }
+
+.glyphicon-question-sign:before {
+  content: "\e085"; }
+
+.glyphicon-info-sign:before {
+  content: "\e086"; }
+
+.glyphicon-screenshot:before {
+  content: "\e087"; }
+
+.glyphicon-remove-circle:before {
+  content: "\e088"; }
+
+.glyphicon-ok-circle:before {
+  content: "\e089"; }
+
+.glyphicon-ban-circle:before {
+  content: "\e090"; }
+
+.glyphicon-arrow-left:before {
+  content: "\e091"; }
+
+.glyphicon-arrow-right:before {
+  content: "\e092"; }
+
+.glyphicon-arrow-up:before {
+  content: "\e093"; }
+
+.glyphicon-arrow-down:before {
+  content: "\e094"; }
+
+.glyphicon-share-alt:before {
+  content: "\e095"; }
+
+.glyphicon-resize-full:before {
+  content: "\e096"; }
+
+.glyphicon-resize-small:before {
+  content: "\e097"; }
+
+.glyphicon-exclamation-sign:before {
+  content: "\e101"; }
+
+.glyphicon-gift:before {
+  content: "\e102"; }
+
+.glyphicon-leaf:before {
+  content: "\e103"; }
+
+.glyphicon-fire:before {
+  content: "\e104"; }
+
+.glyphicon-eye-open:before {
+  content: "\e105"; }
+
+.glyphicon-eye-close:before {
+  content: "\e106"; }
+
+.glyphicon-warning-sign:before {
+  content: "\e107"; }
+
+.glyphicon-plane:before {
+  content: "\e108"; }
+
+.glyphicon-calendar:before {
+  content: "\e109"; }
+
+.glyphicon-random:before {
+  content: "\e110"; }
+
+.glyphicon-comment:before {
+  content: "\e111"; }
+
+.glyphicon-magnet:before {
+  content: "\e112"; }
+
+.glyphicon-chevron-up:before {
+  content: "\e113"; }
+
+.glyphicon-chevron-down:before {
+  content: "\e114"; }
+
+.glyphicon-retweet:before {
+  content: "\e115"; }
+
+.glyphicon-shopping-cart:before {
+  content: "\e116"; }
+
+.glyphicon-folder-close:before {
+  content: "\e117"; }
+
+.glyphicon-folder-open:before {
+  content: "\e118"; }
+
+.glyphicon-resize-vertical:before {
+  content: "\e119"; }
+
+.glyphicon-resize-horizontal:before {
+  content: "\e120"; }
+
+.glyphicon-hdd:before {
+  content: "\e121"; }
+
+.glyphicon-bullhorn:before {
+  content: "\e122"; }
+
+.glyphicon-bell:before {
+  content: "\e123"; }
+
+.glyphicon-certificate:before {
+  content: "\e124"; }
+
+.glyphicon-thumbs-up:before {
+  content: "\e125"; }
+
+.glyphicon-thumbs-down:before {
+  content: "\e126"; }
+
+.glyphicon-hand-right:before {
+  content: "\e127"; }
+
+.glyphicon-hand-left:before {
+  content: "\e128"; }
+
+.glyphicon-hand-up:before {
+  content: "\e129"; }
+
+.glyphicon-hand-down:before {
+  content: "\e130"; }
+
+.glyphicon-circle-arrow-right:before {
+  content: "\e131"; }
+
+.glyphicon-circle-arrow-left:before {
+  content: "\e132"; }
+
+.glyphicon-circle-arrow-up:before {
+  content: "\e133"; }
+
+.glyphicon-circle-arrow-down:before {
+  content: "\e134"; }
+
+.glyphicon-globe:before {
+  content: "\e135"; }
+
+.glyphicon-wrench:before {
+  content: "\e136"; }
+
+.glyphicon-tasks:before {
+  content: "\e137"; }
+
+.glyphicon-filter:before {
+  content: "\e138"; }
+
+.glyphicon-briefcase:before {
+  content: "\e139"; }
+
+.glyphicon-fullscreen:before {
+  content: "\e140"; }
+
+.glyphicon-dashboard:before {
+  content: "\e141"; }
+
+.glyphicon-paperclip:before {
+  content: "\e142"; }
+
+.glyphicon-heart-empty:before {
+  content: "\e143"; }
+
+.glyphicon-link:before {
+  content: "\e144"; }
+
+.glyphicon-phone:before {
+  content: "\e145"; }
+
+.glyphicon-pushpin:before {
+  content: "\e146"; }
+
+.glyphicon-usd:before {
+  content: "\e148"; }
+
+.glyphicon-gbp:before {
+  content: "\e149"; }
+
+.glyphicon-sort:before {
+  content: "\e150"; }
+
+.glyphicon-sort-by-alphabet:before {
+  content: "\e151"; }
+
+.glyphicon-sort-by-alphabet-alt:before {
+  content: "\e152"; }
+
+.glyphicon-sort-by-order:before {
+  content: "\e153"; }
+
+.glyphicon-sort-by-order-alt:before {
+  content: "\e154"; }
+
+.glyphicon-sort-by-attributes:before {
+  content: "\e155"; }
+
+.glyphicon-sort-by-attributes-alt:before {
+  content: "\e156"; }
+
+.glyphicon-unchecked:before {
+  content: "\e157"; }
+
+.glyphicon-expand:before {
+  content: "\e158"; }
+
+.glyphicon-collapse-down:before {
+  content: "\e159"; }
+
+.glyphicon-collapse-up:before {
+  content: "\e160"; }
+
+.glyphicon-log-in:before {
+  content: "\e161"; }
+
+.glyphicon-flash:before {
+  content: "\e162"; }
+
+.glyphicon-log-out:before {
+  content: "\e163"; }
+
+.glyphicon-new-window:before {
+  content: "\e164"; }
+
+.glyphicon-record:before {
+  content: "\e165"; }
+
+.glyphicon-save:before {
+  content: "\e166"; }
+
+.glyphicon-open:before {
+  content: "\e167"; }
+
+.glyphicon-saved:before {
+  content: "\e168"; }
+
+.glyphicon-import:before {
+  content: "\e169"; }
+
+.glyphicon-export:before {
+  content: "\e170"; }
+
+.glyphicon-send:before {
+  content: "\e171"; }
+
+.glyphicon-floppy-disk:before {
+  content: "\e172"; }
+
+.glyphicon-floppy-saved:before {
+  content: "\e173"; }
+
+.glyphicon-floppy-remove:before {
+  content: "\e174"; }
+
+.glyphicon-floppy-save:before {
+  content: "\e175"; }
+
+.glyphicon-floppy-open:before {
+  content: "\e176"; }
+
+.glyphicon-credit-card:before {
+  content: "\e177"; }
+
+.glyphicon-transfer:before {
+  content: "\e178"; }
+
+.glyphicon-cutlery:before {
+  content: "\e179"; }
+
+.glyphicon-header:before {
+  content: "\e180"; }
+
+.glyphicon-compressed:before {
+  content: "\e181"; }
+
+.glyphicon-earphone:before {
+  content: "\e182"; }
+
+.glyphicon-phone-alt:before {
+  content: "\e183"; }
+
+.glyphicon-tower:before {
+  content: "\e184"; }
+
+.glyphicon-stats:before {
+  content: "\e185"; }
+
+.glyphicon-sd-video:before {
+  content: "\e186"; }
+
+.glyphicon-hd-video:before {
+  content: "\e187"; }
+
+.glyphicon-subtitles:before {
+  content: "\e188"; }
+
+.glyphicon-sound-stereo:before {
+  content: "\e189"; }
+
+.glyphicon-sound-dolby:before {
+  content: "\e190"; }
+
+.glyphicon-sound-5-1:before {
+  content: "\e191"; }
+
+.glyphicon-sound-6-1:before {
+  content: "\e192"; }
+
+.glyphicon-sound-7-1:before {
+  content: "\e193"; }
+
+.glyphicon-copyright-mark:before {
+  content: "\e194"; }
+
+.glyphicon-registration-mark:before {
+  content: "\e195"; }
+
+.glyphicon-cloud-download:before {
+  content: "\e197"; }
+
+.glyphicon-cloud-upload:before {
+  content: "\e198"; }
+
+.glyphicon-tree-conifer:before {
+  content: "\e199"; }
+
+.glyphicon-tree-deciduous:before {
+  content: "\e200"; }
+
+.glyphicon-cd:before {
+  content: "\e201"; }
+
+.glyphicon-save-file:before {
+  content: "\e202"; }
+
+.glyphicon-open-file:before {
+  content: "\e203"; }
+
+.glyphicon-level-up:before {
+  content: "\e204"; }
+
+.glyphicon-copy:before {
+  content: "\e205"; }
+
+.glyphicon-paste:before {
+  content: "\e206"; }
+
+.glyphicon-alert:before {
+  content: "\e209"; }
+
+.glyphicon-equalizer:before {
+  content: "\e210"; }
+
+.glyphicon-king:before {
+  content: "\e211"; }
+
+.glyphicon-queen:before {
+  content: "\e212"; }
+
+.glyphicon-pawn:before {
+  content: "\e213"; }
+
+.glyphicon-bishop:before {
+  content: "\e214"; }
+
+.glyphicon-knight:before {
+  content: "\e215"; }
+
+.glyphicon-baby-formula:before {
+  content: "\e216"; }
+
+.glyphicon-tent:before {
+  content: "\26fa"; }
+
+.glyphicon-blackboard:before {
+  content: "\e218"; }
+
+.glyphicon-bed:before {
+  content: "\e219"; }
+
+.glyphicon-apple:before {
+  content: "\f8ff"; }
+
+.glyphicon-erase:before {
+  content: "\e221"; }
+
+.glyphicon-hourglass:before {
+  content: "\231b"; }
+
+.glyphicon-lamp:before {
+  content: "\e223"; }
+
+.glyphicon-duplicate:before {
+  content: "\e224"; }
+
+.glyphicon-piggy-bank:before {
+  content: "\e225"; }
+
+.glyphicon-scissors:before {
+  content: "\e226"; }
+
+.glyphicon-bitcoin:before {
+  content: "\e227"; }
+
+.glyphicon-btc:before {
+  content: "\e227"; }
+
+.glyphicon-xbt:before {
+  content: "\e227"; }
+
+.glyphicon-yen:before {
+  content: "\00a5"; }
+
+.glyphicon-jpy:before {
+  content: "\00a5"; }
+
+.glyphicon-ruble:before {
+  content: "\20bd"; }
+
+.glyphicon-rub:before {
+  content: "\20bd"; }
+
+.glyphicon-scale:before {
+  content: "\e230"; }
+
+.glyphicon-ice-lolly:before {
+  content: "\e231"; }
+
+.glyphicon-ice-lolly-tasted:before {
+  content: "\e232"; }
+
+.glyphicon-education:before {
+  content: "\e233"; }
+
+.glyphicon-option-horizontal:before {
+  content: "\e234"; }
+
+.glyphicon-option-vertical:before {
+  content: "\e235"; }
+
+.glyphicon-menu-hamburger:before {
+  content: "\e236"; }
+
+.glyphicon-modal-window:before {
+  content: "\e237"; }
+
+.glyphicon-oil:before {
+  content: "\e238"; }
+
+.glyphicon-grain:before {
+  content: "\e239"; }
+
+.glyphicon-sunglasses:before {
+  content: "\e240"; }
+
+.glyphicon-text-size:before {
+  content: "\e241"; }
+
+.glyphicon-text-color:before {
+  content: "\e242"; }
+
+.glyphicon-text-background:before {
+  content: "\e243"; }
+
+.glyphicon-object-align-top:before {
+  content: "\e244"; }
+
+.glyphicon-object-align-bottom:before {
+  content: "\e245"; }
+
+.glyphicon-object-align-horizontal:before {
+  content: "\e246"; }
+
+.glyphicon-object-align-left:before {
+  content: "\e247"; }
+
+.glyphicon-object-align-vertical:before {
+  content: "\e248"; }
+
+.glyphicon-object-align-right:before {
+  content: "\e249"; }
+
+.glyphicon-triangle-right:before {
+  content: "\e250"; }
+
+.glyphicon-triangle-left:before {
+  content: "\e251"; }
+
+.glyphicon-triangle-bottom:before {
+  content: "\e252"; }
+
+.glyphicon-triangle-top:before {
+  content: "\e253"; }
+
+.glyphicon-console:before {
+  content: "\e254"; }
+
+.glyphicon-superscript:before {
+  content: "\e255"; }
+
+.glyphicon-subscript:before {
+  content: "\e256"; }
+
+.glyphicon-menu-left:before {
+  content: "\e257"; }
+
+.glyphicon-menu-right:before {
+  content: "\e258"; }
+
+.glyphicon-menu-down:before {
+  content: "\e259"; }
+
+.glyphicon-menu-up:before {
+  content: "\e260"; }
+
+* {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box; }
+
+*:before,
+*:after {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box; }
+
+html {
+  font-size: 10px;
+  -webkit-tap-highlight-color: transparent; }
+
+body {
+  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+  font-size: 14px;
+  line-height: 1.42857;
+  color: #333333;
+  background-color: #fff; }
+
+input,
+button,
+select,
+textarea {
+  font-family: inherit;
+  font-size: inherit;
+  line-height: inherit; }
+
+a {
+  color: #337ab7;
+  text-decoration: none; }
+  a:hover, a:focus {
+    color: #23527c;
+    text-decoration: underline; }
+  a:focus {
+    outline: 5px auto -webkit-focus-ring-color;
+    outline-offset: -2px; }
+
+figure {
+  margin: 0; }
+
+img {
+  vertical-align: middle; }
+
+.img-responsive {
+  display: block;
+  max-width: 100%;
+  height: auto; }
+
+.img-rounded {
+  border-radius: 6px; }
+
+.img-thumbnail {
+  padding: 4px;
+  line-height: 1.42857;
+  background-color: #fff;
+  border: 1px solid #ddd;
+  border-radius: 4px;
+  -webkit-transition: all 0.2s ease-in-out;
+  -o-transition: all 0.2s ease-in-out;
+  transition: all 0.2s ease-in-out;
+  display: inline-block;
+  max-width: 100%;
+  height: auto; }
+
+.img-circle {
+  border-radius: 50%; }
+
+hr {
+  margin-top: 20px;
+  margin-bottom: 20px;
+  border: 0;
+  border-top: 1px solid #eeeeee; }
+
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0; }
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+  position: static;
+  width: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  clip: auto; }
+
+[role="button"] {
+  cursor: pointer; }
+
+h1, h2, h3, h4, h5, h6,
+.h1, .h2, .h3, .h4, .h5, .h6 {
+  font-family: inherit;
+  font-weight: 500;
+  line-height: 1.1;
+  color: inherit; }
+  h1 small,
+  h1 .small, h2 small,
+  h2 .small, h3 small,
+  h3 .small, h4 small,
+  h4 .small, h5 small,
+  h5 .small, h6 small,
+  h6 .small,
+  .h1 small,
+  .h1 .small, .h2 small,
+  .h2 .small, .h3 small,
+  .h3 .small, .h4 small,
+  .h4 .small, .h5 small,
+  .h5 .small, .h6 small,
+  .h6 .small {
+    font-weight: normal;
+    line-height: 1;
+    color: #777777; }
+
+h1, .h1,
+h2, .h2,
+h3, .h3 {
+  margin-top: 20px;
+  margin-bottom: 10px; }
+  h1 small,
+  h1 .small, .h1 small,
+  .h1 .small,
+  h2 small,
+  h2 .small, .h2 small,
+  .h2 .small,
+  h3 small,
+  h3 .small, .h3 small,
+  .h3 .small {
+    font-size: 65%; }
+
+h4, .h4,
+h5, .h5,
+h6, .h6 {
+  margin-top: 10px;
+  margin-bottom: 10px; }
+  h4 small,
+  h4 .small, .h4 small,
+  .h4 .small,
+  h5 small,
+  h5 .small, .h5 small,
+  .h5 .small,
+  h6 small,
+  h6 .small, .h6 small,
+  .h6 .small {
+    font-size: 75%; }
+
+h1, .h1 {
+  font-size: 36px; }
+
+h2, .h2 {
+  font-size: 30px; }
+
+h3, .h3 {
+  font-size: 24px; }
+
+h4, .h4 {
+  font-size: 18px; }
+
+h5, .h5 {
+  font-size: 14px; }
+
+h6, .h6 {
+  font-size: 12px; }
+
+p {
+  margin: 0 0 10px; }
+
+.lead {
+  margin-bottom: 20px;
+  font-size: 16px;
+  font-weight: 300;
+  line-height: 1.4; }
+  @media (min-width: 768px) {
+    .lead {
+      font-size: 21px; } }
+
+small,
+.small {
+  font-size: 85%; }
+
+mark,
+.mark {
+  background-color: #fcf8e3;
+  padding: .2em; }
+
+.text-left {
+  text-align: left; }
+
+.text-right {
+  text-align: right; }
+
+.text-center {
+  text-align: center; }
+
+.text-justify {
+  text-align: justify; }
+
+.text-nowrap {
+  white-space: nowrap; }
+
+.text-lowercase {
+  text-transform: lowercase; }
+
+.text-uppercase, .initialism {
+  text-transform: uppercase; }
+
+.text-capitalize {
+  text-transform: capitalize; }
+
+.text-muted {
+  color: #777777; }
+
+.text-primary {
+  color: #337ab7; }
+
+a.text-primary:hover,
+a.text-primary:focus {
+  color: #286090; }
+
+.text-success {
+  color: #3c763d; }
+
+a.text-success:hover,
+a.text-success:focus {
+  color: #2b542c; }
+
+.text-info {
+  color: #31708f; }
+
+a.text-info:hover,
+a.text-info:focus {
+  color: #245269; }
+
+.text-warning {
+  color: #8a6d3b; }
+
+a.text-warning:hover,
+a.text-warning:focus {
+  color: #66512c; }
+
+.text-danger {
+  color: #a94442; }
+
+a.text-danger:hover,
+a.text-danger:focus {
+  color: #843534; }
+
+.bg-primary {
+  color: #fff; }
+
+.bg-primary {
+  background-color: #337ab7; }
+
+a.bg-primary:hover,
+a.bg-primary:focus {
+  background-color: #286090; }
+
+.bg-success {
+  background-color: #dff0d8; }
+
+a.bg-success:hover,
+a.bg-success:focus {
+  background-color: #c1e2b3; }
+
+.bg-info {
+  background-color: #d9edf7; }
+
+a.bg-info:hover,
+a.bg-info:focus {
+  background-color: #afd9ee; }
+
+.bg-warning {
+  background-color: #fcf8e3; }
+
+a.bg-warning:hover,
+a.bg-warning:focus {
+  background-color: #f7ecb5; }
+
+.bg-danger {
+  background-color: #f2dede; }
+
+a.bg-danger:hover,
+a.bg-danger:focus {
+  background-color: #e4b9b9; }
+
+.page-header {
+  padding-bottom: 9px;
+  margin: 40px 0 20px;
+  border-bottom: 1px solid #eeeeee; }
+
+ul,
+ol {
+  margin-top: 0;
+  margin-bottom: 10px; }
+  ul ul,
+  ul ol,
+  ol ul,
+  ol ol {
+    margin-bottom: 0; }
+
+.list-unstyled {
+  padding-left: 0;
+  list-style: none; }
+
+.list-inline {
+  padding-left: 0;
+  list-style: none;
+  margin-left: -5px; }
+  .list-inline > li {
+    display: inline-block;
+    padding-left: 5px;
+    padding-right: 5px; }
+
+dl {
+  margin-top: 0;
+  margin-bottom: 20px; }
+
+dt,
+dd {
+  line-height: 1.42857; }
+
+dt {
+  font-weight: bold; }
+
+dd {
+  margin-left: 0; }
+
+.dl-horizontal dd:before, .dl-horizontal dd:after {
+  content: " ";
+  display: table; }
+
+.dl-horizontal dd:after {
+  clear: both; }
+
+@media (min-width: 768px) {
+  .dl-horizontal dt {
+    float: left;
+    width: 160px;
+    clear: left;
+    text-align: right;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap; }
+  .dl-horizontal dd {
+    margin-left: 180px; } }
+
+abbr[title],
+abbr[data-original-title] {
+  cursor: help;
+  border-bottom: 1px dotted #777777; }
+
+.initialism {
+  font-size: 90%; }
+
+blockquote {
+  padding: 10px 20px;
+  margin: 0 0 20px;
+  font-size: 17.5px;
+  border-left: 5px solid #eeeeee; }
+  blockquote p:last-child,
+  blockquote ul:last-child,
+  blockquote ol:last-child {
+    margin-bottom: 0; }
+  blockquote footer,
+  blockquote small,
+  blockquote .small {
+    display: block;
+    font-size: 80%;
+    line-height: 1.42857;
+    color: #777777; }
+    blockquote footer:before,
+    blockquote small:before,
+    blockquote .small:before {
+      content: '\2014 \00A0'; }
+
+.blockquote-reverse,
+blockquote.pull-right {
+  padding-right: 15px;
+  padding-left: 0;
+  border-right: 5px solid #eeeeee;
+  border-left: 0;
+  text-align: right; }
+  .blockquote-reverse footer:before,
+  .blockquote-reverse small:before,
+  .blockquote-reverse .small:before,
+  blockquote.pull-right footer:before,
+  blockquote.pull-right small:before,
+  blockquote.pull-right .small:before {
+    content: ''; }
+  .blockquote-reverse footer:after,
+  .blockquote-reverse small:after,
+  .blockquote-reverse .small:after,
+  blockquote.pull-right footer:after,
+  blockquote.pull-right small:after,
+  blockquote.pull-right .small:after {
+    content: '\00A0 \2014'; }
+
+address {
+  margin-bottom: 20px;
+  font-style: normal;
+  line-height: 1.42857; }
+
+code,
+kbd,
+pre,
+samp {
+  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }
+
+code {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: #c7254e;
+  background-color: #f9f2f4;
+  border-radius: 4px; }
+
+kbd {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: #fff;
+  background-color: #333;
+  border-radius: 3px;
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
+  kbd kbd {
+    padding: 0;
+    font-size: 100%;
+    font-weight: bold;
+    box-shadow: none; }
+
+pre {
+  display: block;
+  padding: 9.5px;
+  margin: 0 0 10px;
+  font-size: 13px;
+  line-height: 1.42857;
+  word-break: break-all;
+  word-wrap: break-word;
+  color: #333333;
+  background-color: #f5f5f5;
+  border: 1px solid #ccc;
+  border-radius: 4px; }
+  pre code {
+    padding: 0;
+    font-size: inherit;
+    color: inherit;
+    white-space: pre-wrap;
+    background-color: transparent;
+    border-radius: 0; }
+
+.pre-scrollable {
+  max-height: 340px;
+  overflow-y: scroll; }
+
+.container {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left: 15px;
+  padding-right: 15px; }
+  .container:before, .container:after {
+    content: " ";
+    display: table; }
+  .container:after {
+    clear: both; }
+  @media (min-width: 768px) {
+    .container {
+      width: 750px; } }
+  @media (min-width: 992px) {
+    .container {
+      width: 970px; } }
+  @media (min-width: 1200px) {
+    .container {
+      width: 1170px; } }
+
+.container-fluid {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left: 15px;
+  padding-right: 15px; }
+  .container-fluid:before, .container-fluid:after {
+    content: " ";
+    display: table; }
+  .container-fluid:after {
+    clear: both; }
+
+.row {
+  margin-left: -15px;
+  margin-right: -15px; }
+  .row:before, .row:after {
+    content: " ";
+    display: table; }
+  .row:after {
+    clear: both; }
+
+.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
+  position: relative;
+  min-height: 1px;
+  padding-left: 15px;
+  padding-right: 15px; }
+
+.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
+  float: left; }
+
+.col-xs-1 {
+  width: 8.33333%; }
+
+.col-xs-2 {
+  width: 16.66667%; }
+
+.col-xs-3 {
+  width: 25%; }
+
+.col-xs-4 {
+  width: 33.33333%; }
+
+.col-xs-5 {
+  width: 41.66667%; }
+
+.col-xs-6 {
+  width: 50%; }
+
+.col-xs-7 {
+  width: 58.33333%; }
+
+.col-xs-8 {
+  width: 66.66667%; }
+
+.col-xs-9 {
+  width: 75%; }
+
+.col-xs-10 {
+  width: 83.33333%; }
+
+.col-xs-11 {
+  width: 91.66667%; }
+
+.col-xs-12 {
+  width: 100%; }
+
+.col-xs-pull-0 {
+  right: auto; }
+
+.col-xs-pull-1 {
+  right: 8.33333%; }
+
+.col-xs-pull-2 {
+  right: 16.66667%; }
+
+.col-xs-pull-3 {
+  right: 25%; }
+
+.col-xs-pull-4 {
+  right: 33.33333%; }
+
+.col-xs-pull-5 {
+  right: 41.66667%; }
+
+.col-xs-pull-6 {
+  right: 50%; }
+
+.col-xs-pull-7 {
+  right: 58.33333%; }
+
+.col-xs-pull-8 {
+  right: 66.66667%; }
+
+.col-xs-pull-9 {
+  right: 75%; }
+
+.col-xs-pull-10 {
+  right: 83.33333%; }
+
+.col-xs-pull-11 {
+  right: 91.66667%; }
+
+.col-xs-pull-12 {
+  right: 100%; }
+
+.col-xs-push-0 {
+  left: auto; }
+
+.col-xs-push-1 {
+  left: 8.33333%; }
+
+.col-xs-push-2 {
+  left: 16.66667%; }
+
+.col-xs-push-3 {
+  left: 25%; }
+
+.col-xs-push-4 {
+  left: 33.33333%; }
+
+.col-xs-push-5 {
+  left: 41.66667%; }
+
+.col-xs-push-6 {
+  left: 50%; }
+
+.col-xs-push-7 {
+  left: 58.33333%; }
+
+.col-xs-push-8 {
+  left: 66.66667%; }
+
+.col-xs-push-9 {
+  left: 75%; }
+
+.col-xs-push-10 {
+  left: 83.33333%; }
+
+.col-xs-push-11 {
+  left: 91.66667%; }
+
+.col-xs-push-12 {
+  left: 100%; }
+
+.col-xs-offset-0 {
+  margin-left: 0%; }
+
+.col-xs-offset-1 {
+  margin-left: 8.33333%; }
+
+.col-xs-offset-2 {
+  margin-left: 16.66667%; }
+
+.col-xs-offset-3 {
+  margin-left: 25%; }
+
+.col-xs-offset-4 {
+  margin-left: 33.33333%; }
+
+.col-xs-offset-5 {
+  margin-left: 41.66667%; }
+
+.col-xs-offset-6 {
+  margin-left: 50%; }
+
+.col-xs-offset-7 {
+  margin-left: 58.33333%; }
+
+.col-xs-offset-8 {
+  margin-left: 66.66667%; }
+
+.col-xs-offset-9 {
+  margin-left: 75%; }
+
+.col-xs-offset-10 {
+  margin-left: 83.33333%; }
+
+.col-xs-offset-11 {
+  margin-left: 91.66667%; }
+
+.col-xs-offset-12 {
+  margin-left: 100%; }
+
+@media (min-width: 768px) {
+  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
+    float: left; }
+  .col-sm-1 {
+    width: 8.33333%; }
+  .col-sm-2 {
+    width: 16.66667%; }
+  .col-sm-3 {
+    width: 25%; }
+  .col-sm-4 {
+    width: 33.33333%; }
+  .col-sm-5 {
+    width: 41.66667%; }
+  .col-sm-6 {
+    width: 50%; }
+  .col-sm-7 {
+    width: 58.33333%; }
+  .col-sm-8 {
+    width: 66.66667%; }
+  .col-sm-9 {
+    width: 75%; }
+  .col-sm-10 {
+    width: 83.33333%; }
+  .col-sm-11 {
+    width: 91.66667%; }
+  .col-sm-12 {
+    width: 100%; }
+  .col-sm-pull-0 {
+    right: auto; }
+  .col-sm-pull-1 {
+    right: 8.33333%; }
+  .col-sm-pull-2 {
+    right: 16.66667%; }
+  .col-sm-pull-3 {
+    right: 25%; }
+  .col-sm-pull-4 {
+    right: 33.33333%; }
+  .col-sm-pull-5 {
+    right: 41.66667%; }
+  .col-sm-pull-6 {
+    right: 50%; }
+  .col-sm-pull-7 {
+    right: 58.33333%; }
+  .col-sm-pull-8 {
+    right: 66.66667%; }
+  .col-sm-pull-9 {
+    right: 75%; }
+  .col-sm-pull-10 {
+    right: 83.33333%; }
+  .col-sm-pull-11 {
+    right: 91.66667%; }
+  .col-sm-pull-12 {
+    right: 100%; }
+  .col-sm-push-0 {
+    left: auto; }
+  .col-sm-push-1 {
+    left: 8.33333%; }
+  .col-sm-push-2 {
+    left: 16.66667%; }
+  .col-sm-push-3 {
+    left: 25%; }
+  .col-sm-push-4 {
+    left: 33.33333%; }
+  .col-sm-push-5 {
+    left: 41.66667%; }
+  .col-sm-push-6 {
+    left: 50%; }
+  .col-sm-push-7 {
+    left: 58.33333%; }
+  .col-sm-push-8 {
+    left: 66.66667%; }
+  .col-sm-push-9 {
+    left: 75%; }
+  .col-sm-push-10 {
+    left: 83.33333%; }
+  .col-sm-push-11 {
+    left: 91.66667%; }
+  .col-sm-push-12 {
+    left: 100%; }
+  .col-sm-offset-0 {
+    margin-left: 0%; }
+  .col-sm-offset-1 {
+    margin-left: 8.33333%; }
+  .col-sm-offset-2 {
+    margin-left: 16.66667%; }
+  .col-sm-offset-3 {
+    margin-left: 25%; }
+  .col-sm-offset-4 {
+    margin-left: 33.33333%; }
+  .col-sm-offset-5 {
+    margin-left: 41.66667%; }
+  .col-sm-offset-6 {
+    margin-left: 50%; }
+  .col-sm-offset-7 {
+    margin-left: 58.33333%; }
+  .col-sm-offset-8 {
+    margin-left: 66.66667%; }
+  .col-sm-offset-9 {
+    margin-left: 75%; }
+  .col-sm-offset-10 {
+    margin-left: 83.33333%; }
+  .col-sm-offset-11 {
+    margin-left: 91.66667%; }
+  .col-sm-offset-12 {
+    margin-left: 100%; } }
+
+@media (min-width: 992px) {
+  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
+    float: left; }
+  .col-md-1 {
+    width: 8.33333%; }
+  .col-md-2 {
+    width: 16.66667%; }
+  .col-md-3 {
+    width: 25%; }
+  .col-md-4 {
+    width: 33.33333%; }
+  .col-md-5 {
+    width: 41.66667%; }
+  .col-md-6 {
+    width: 50%; }
+  .col-md-7 {
+    width: 58.33333%; }
+  .col-md-8 {
+    width: 66.66667%; }
+  .col-md-9 {
+    width: 75%; }
+  .col-md-10 {
+    width: 83.33333%; }
+  .col-md-11 {
+    width: 91.66667%; }
+  .col-md-12 {
+    width: 100%; }
+  .col-md-pull-0 {
+    right: auto; }
+  .col-md-pull-1 {
+    right: 8.33333%; }
+  .col-md-pull-2 {
+    right: 16.66667%; }
+  .col-md-pull-3 {
+    right: 25%; }
+  .col-md-pull-4 {
+    right: 33.33333%; }
+  .col-md-pull-5 {
+    right: 41.66667%; }
+  .col-md-pull-6 {
+    right: 50%; }
+  .col-md-pull-7 {
+    right: 58.33333%; }
+  .col-md-pull-8 {
+    right: 66.66667%; }
+  .col-md-pull-9 {
+    right: 75%; }
+  .col-md-pull-10 {
+    right: 83.33333%; }
+  .col-md-pull-11 {
+    right: 91.66667%; }
+  .col-md-pull-12 {
+    right: 100%; }
+  .col-md-push-0 {
+    left: auto; }
+  .col-md-push-1 {
+    left: 8.33333%; }
+  .col-md-push-2 {
+    left: 16.66667%; }
+  .col-md-push-3 {
+    left: 25%; }
+  .col-md-push-4 {
+    left: 33.33333%; }
+  .col-md-push-5 {
+    left: 41.66667%; }
+  .col-md-push-6 {
+    left: 50%; }
+  .col-md-push-7 {
+    left: 58.33333%; }
+  .col-md-push-8 {
+    left: 66.66667%; }
+  .col-md-push-9 {
+    left: 75%; }
+  .col-md-push-10 {
+    left: 83.33333%; }
+  .col-md-push-11 {
+    left: 91.66667%; }
+  .col-md-push-12 {
+    left: 100%; }
+  .col-md-offset-0 {
+    margin-left: 0%; }
+  .col-md-offset-1 {
+    margin-left: 8.33333%; }
+  .col-md-offset-2 {
+    margin-left: 16.66667%; }
+  .col-md-offset-3 {
+    margin-left: 25%; }
+  .col-md-offset-4 {
+    margin-left: 33.33333%; }
+  .col-md-offset-5 {
+    margin-left: 41.66667%; }
+  .col-md-offset-6 {
+    margin-left: 50%; }
+  .col-md-offset-7 {
+    margin-left: 58.33333%; }
+  .col-md-offset-8 {
+    margin-left: 66.66667%; }
+  .col-md-offset-9 {
+    margin-left: 75%; }
+  .col-md-offset-10 {
+    margin-left: 83.33333%; }
+  .col-md-offset-11 {
+    margin-left: 91.66667%; }
+  .col-md-offset-12 {
+    margin-left: 100%; } }
+
+@media (min-width: 1200px) {
+  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
+    float: left; }
+  .col-lg-1 {
+    width: 8.33333%; }
+  .col-lg-2 {
+    width: 16.66667%; }
+  .col-lg-3 {
+    width: 25%; }
+  .col-lg-4 {
+    width: 33.33333%; }
+  .col-lg-5 {
+    width: 41.66667%; }
+  .col-lg-6 {
+    width: 50%; }
+  .col-lg-7 {
+    width: 58.33333%; }
+  .col-lg-8 {
+    width: 66.66667%; }
+  .col-lg-9 {
+    width: 75%; }
+  .col-lg-10 {
+    width: 83.33333%; }
+  .col-lg-11 {
+    width: 91.66667%; }
+  .col-lg-12 {
+    width: 100%; }
+  .col-lg-pull-0 {
+    right: auto; }
+  .col-lg-pull-1 {
+    right: 8.33333%; }
+  .col-lg-pull-2 {
+    right: 16.66667%; }
+  .col-lg-pull-3 {
+    right: 25%; }
+  .col-lg-pull-4 {
+    right: 33.33333%; }
+  .col-lg-pull-5 {
+    right: 41.66667%; }
+  .col-lg-pull-6 {
+    right: 50%; }
+  .col-lg-pull-7 {
+    right: 58.33333%; }
+  .col-lg-pull-8 {
+    right: 66.66667%; }
+  .col-lg-pull-9 {
+    right: 75%; }
+  .col-lg-pull-10 {
+    right: 83.33333%; }
+  .col-lg-pull-11 {
+    right: 91.66667%; }
+  .col-lg-pull-12 {
+    right: 100%; }
+  .col-lg-push-0 {
+    left: auto; }
+  .col-lg-push-1 {
+    left: 8.33333%; }
+  .col-lg-push-2 {
+    left: 16.66667%; }
+  .col-lg-push-3 {
+    left: 25%; }
+  .col-lg-push-4 {
+    left: 33.33333%; }
+  .col-lg-push-5 {
+    left: 41.66667%; }
+  .col-lg-push-6 {
+    left: 50%; }
+  .col-lg-push-7 {
+    left: 58.33333%; }
+  .col-lg-push-8 {
+    left: 66.66667%; }
+  .col-lg-push-9 {
+    left: 75%; }
+  .col-lg-push-10 {
+    left: 83.33333%; }
+  .col-lg-push-11 {
+    left: 91.66667%; }
+  .col-lg-push-12 {
+    left: 100%; }
+  .col-lg-offset-0 {
+    margin-left: 0%; }
+  .col-lg-offset-1 {
+    margin-left: 8.33333%; }
+  .col-lg-offset-2 {
+    margin-left: 16.66667%; }
+  .col-lg-offset-3 {
+    margin-left: 25%; }
+  .col-lg-offset-4 {
+    margin-left: 33.33333%; }
+  .col-lg-offset-5 {
+    margin-left: 41.66667%; }
+  .col-lg-offset-6 {
+    margin-left: 50%; }
+  .col-lg-offset-7 {
+    margin-left: 58.33333%; }
+  .col-lg-offset-8 {
+    margin-left: 66.66667%; }
+  .col-lg-offset-9 {
+    margin-left: 75%; }
+  .col-lg-offset-10 {
+    margin-left: 83.33333%; }
+  .col-lg-offset-11 {
+    margin-left: 91.66667%; }
+  .col-lg-offset-12 {
+    margin-left: 100%; } }
+
+table {
+  background-color: transparent; }
+
+caption {
+  padding-top: 8px;
+  padding-bottom: 8px;
+  color: #777777;
+  text-align: left; }
+
+th {
+  text-align: left; }
+
+.table {
+  width: 100%;
+  max-width: 100%;
+  margin-bottom: 20px; }
+  .table > thead > tr > th,
+  .table > thead > tr > td,
+  .table > tbody > tr > th,
+  .table > tbody > tr > td,
+  .table > tfoot > tr > th,
+  .table > tfoot > tr > td {
+    padding: 8px;
+    line-height: 1.42857;
+    vertical-align: top;
+    border-top: 1px solid #ddd; }
+  .table > thead > tr > th {
+    vertical-align: bottom;
+    border-bottom: 2px solid #ddd; }
+  .table > caption + thead > tr:first-child > th,
+  .table > caption + thead > tr:first-child > td,
+  .table > colgroup + thead > tr:first-child > th,
+  .table > colgroup + thead > tr:first-child > td,
+  .table > thead:first-child > tr:first-child > th,
+  .table > thead:first-child > tr:first-child > td {
+    border-top: 0; }
+  .table > tbody + tbody {
+    border-top: 2px solid #ddd; }
+  .table .table {
+    background-color: #fff; }
+
+.table-condensed > thead > tr > th,
+.table-condensed > thead > tr > td,
+.table-condensed > tbody > tr > th,
+.table-condensed > tbody > tr > td,
+.table-condensed > tfoot > tr > th,
+.table-condensed > tfoot > tr > td {
+  padding: 5px; }
+
+.table-bordered {
+  border: 1px solid #ddd; }
+  .table-bordered > thead > tr > th,
+  .table-bordered > thead > tr > td,
+  .table-bordered > tbody > tr > th,
+  .table-bordered > tbody > tr > td,
+  .table-bordered > tfoot > tr > th,
+  .table-bordered > tfoot > tr > td {
+    border: 1px solid #ddd; }
+  .table-bordered > thead > tr > th,
+  .table-bordered > thead > tr > td {
+    border-bottom-width: 2px; }
+
+.table-striped > tbody > tr:nth-of-type(odd) {
+  background-color: #f9f9f9; }
+
+.table-hover > tbody > tr:hover {
+  background-color: #f5f5f5; }
+
+table col[class*="col-"] {
+  position: static;
+  float: none;
+  display: table-column; }
+
+table td[class*="col-"],
+table th[class*="col-"] {
+  position: static;
+  float: none;
+  display: table-cell; }
+
+.table > thead > tr > td.active,
+.table > thead > tr > th.active,
+.table > thead > tr.active > td,
+.table > thead > tr.active > th,
+.table > tbody > tr > td.active,
+.table > tbody > tr > th.active,
+.table > tbody > tr.active > td,
+.table > tbody > tr.active > th,
+.table > tfoot > tr > td.active,
+.table > tfoot > tr > th.active,
+.table > tfoot > tr.active > td,
+.table > tfoot > tr.active > th {
+  background-color: #f5f5f5; }
+
+.table-hover > tbody > tr > td.active:hover,
+.table-hover > tbody > tr > th.active:hover,
+.table-hover > tbody > tr.active:hover > td,
+.table-hover > tbody > tr:hover > .active,
+.table-hover > tbody > tr.active:hover > th {
+  background-color: #e8e8e8; }
+
+.table > thead > tr > td.success,
+.table > thead > tr > th.success,
+.table > thead > tr.success > td,
+.table > thead > tr.success > th,
+.table > tbody > tr > td.success,
+.table > tbody > tr > th.success,
+.table > tbody > tr.success > td,
+.table > tbody > tr.success > th,
+.table > tfoot > tr > td.success,
+.table > tfoot > tr > th.success,
+.table > tfoot > tr.success > td,
+.table > tfoot > tr.success > th {
+  background-color: #dff0d8; }
+
+.table-hover > tbody > tr > td.success:hover,
+.table-hover > tbody > tr > th.success:hover,
+.table-hover > tbody > tr.success:hover > td,
+.table-hover > tbody > tr:hover > .success,
+.table-hover > tbody > tr.success:hover > th {
+  background-color: #d0e9c6; }
+
+.table > thead > tr > td.info,
+.table > thead > tr > th.info,
+.table > thead > tr.info > td,
+.table > thead > tr.info > th,
+.table > tbody > tr > td.info,
+.table > tbody > tr > th.info,
+.table > tbody > tr.info > td,
+.table > tbody > tr.info > th,
+.table > tfoot > tr > td.info,
+.table > tfoot > tr > th.info,
+.table > tfoot > tr.info > td,
+.table > tfoot > tr.info > th {
+  background-color: #d9edf7; }
+
+.table-hover > tbody > tr > td.info:hover,
+.table-hover > tbody > tr > th.info:hover,
+.table-hover > tbody > tr.info:hover > td,
+.table-hover > tbody > tr:hover > .info,
+.table-hover > tbody > tr.info:hover > th {
+  background-color: #c4e3f3; }
+
+.table > thead > tr > td.warning,
+.table > thead > tr > th.warning,
+.table > thead > tr.warning > td,
+.table > thead > tr.warning > th,
+.table > tbody > tr > td.warning,
+.table > tbody > tr > th.warning,
+.table > tbody > tr.warning > td,
+.table > tbody > tr.warning > th,
+.table > tfoot > tr > td.warning,
+.table > tfoot > tr > th.warning,
+.table > tfoot > tr.warning > td,
+.table > tfoot > tr.warning > th {
+  background-color: #fcf8e3; }
+
+.table-hover > tbody > tr > td.warning:hover,
+.table-hover > tbody > tr > th.warning:hover,
+.table-hover > tbody > tr.warning:hover > td,
+.table-hover > tbody > tr:hover > .warning,
+.table-hover > tbody > tr.warning:hover > th {
+  background-color: #faf2cc; }
+
+.table > thead > tr > td.danger,
+.table > thead > tr > th.danger,
+.table > thead > tr.danger > td,
+.table > thead > tr.danger > th,
+.table > tbody > tr > td.danger,
+.table > tbody > tr > th.danger,
+.table > tbody > tr.danger > td,
+.table > tbody > tr.danger > th,
+.table > tfoot > tr > td.danger,
+.table > tfoot > tr > th.danger,
+.table > tfoot > tr.danger > td,
+.table > tfoot > tr.danger > th {
+  background-color: #f2dede; }
+
+.table-hover > tbody > tr > td.danger:hover,
+.table-hover > tbody > tr > th.danger:hover,
+.table-hover > tbody > tr.danger:hover > td,
+.table-hover > tbody > tr:hover > .danger,
+.table-hover > tbody > tr.danger:hover > th {
+  background-color: #ebcccc; }
+
+.table-responsive {
+  overflow-x: auto;
+  min-height: 0.01%; }
+  @media screen and (max-width: 767px) {
+    .table-responsive {
+      width: 100%;
+      margin-bottom: 15px;
+      overflow-y: hidden;
+      -ms-overflow-style: -ms-autohiding-scrollbar;
+      border: 1px solid #ddd; }
+      .table-responsive > .table {
+        margin-bottom: 0; }
+        .table-responsive > .table > thead > tr > th,
+        .table-responsive > .table > thead > tr > td,
+        .table-responsive > .table > tbody > tr > th,
+        .table-responsive > .table > tbody > tr > td,
+        .table-responsive > .table > tfoot > tr > th,
+        .table-responsive > .table > tfoot > tr > td {
+          white-space: nowrap; }
+      .table-responsive > .table-bordered {
+        border: 0; }
+        .table-responsive > .table-bordered > thead > tr > th:first-child,
+        .table-responsive > .table-bordered > thead > tr > td:first-child,
+        .table-responsive > .table-bordered > tbody > tr > th:first-child,
+        .table-responsive > .table-bordered > tbody > tr > td:first-child,
+        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+          border-left: 0; }
+        .table-responsive > .table-bordered > thead > tr > th:last-child,
+        .table-responsive > .table-bordered > thead > tr > td:last-child,
+        .table-responsive > .table-bordered > tbody > tr > th:last-child,
+        .table-responsive > .table-bordered > tbody > tr > td:last-child,
+        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+          border-right: 0; }
+        .table-responsive > .table-bordered > tbody > tr:last-child > th,
+        .table-responsive > .table-bordered > tbody > tr:last-child > td,
+        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
+        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
+          border-bottom: 0; } }
+
+fieldset {
+  padding: 0;
+  margin: 0;
+  border: 0;
+  min-width: 0; }
+
+legend {
+  display: block;
+  width: 100%;
+  padding: 0;
+  margin-bottom: 20px;
+  font-size: 21px;
+  line-height: inherit;
+  color: #333333;
+  border: 0;
+  border-bottom: 1px solid #e5e5e5; }
+
+label {
+  display: inline-block;
+  max-width: 100%;
+  margin-bottom: 5px;
+  font-weight: bold; }
+
+input[type="search"] {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box; }
+
+input[type="radio"],
+input[type="checkbox"] {
+  margin: 4px 0 0;
+  margin-top: 1px \9;
+  line-height: normal; }
+
+input[type="file"] {
+  display: block; }
+
+input[type="range"] {
+  display: block;
+  width: 100%; }
+
+select[multiple],
+select[size] {
+  height: auto; }
+
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px; }
+
+output {
+  display: block;
+  padding-top: 7px;
+  font-size: 14px;
+  line-height: 1.42857;
+  color: #555555; }
+
+.form-control {
+  display: block;
+  width: 100%;
+  height: 34px;
+  padding: 6px 12px;
+  font-size: 14px;
+  line-height: 1.42857;
+  color: #555555;
+  background-color: #fff;
+  background-image: none;
+  border: 1px solid #ccc;
+  border-radius: 4px;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
+  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
+  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
+  .form-control:focus {
+    border-color: #66afe9;
+    outline: 0;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
+    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
+  .form-control::-moz-placeholder {
+    color: #999;
+    opacity: 1; }
+  .form-control:-ms-input-placeholder {
+    color: #999; }
+  .form-control::-webkit-input-placeholder {
+    color: #999; }
+  .form-control::-ms-expand {
+    border: 0;
+    background-color: transparent; }
+  .form-control[disabled], .form-control[readonly],
+  fieldset[disabled] .form-control {
+    background-color: #eeeeee;
+    opacity: 1; }
+  .form-control[disabled],
+  fieldset[disabled] .form-control {
+    cursor: not-allowed; }
+
+textarea.form-control {
+  height: auto; }
+
+input[type="search"] {
+  -webkit-appearance: none; }
+
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+  input[type="date"].form-control,
+  input[type="time"].form-control,
+  input[type="datetime-local"].form-control,
+  input[type="month"].form-control {
+    line-height: 34px; }
+  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
+  .input-group-sm > input[type="date"].input-group-addon,
+  .input-group-sm > .input-group-btn > input[type="date"].btn,
+  .input-group-sm input[type="date"],
+  input[type="time"].input-sm,
+  .input-group-sm > input[type="time"].form-control,
+  .input-group-sm > input[type="time"].input-group-addon,
+  .input-group-sm > .input-group-btn > input[type="time"].btn,
+  .input-group-sm
+  input[type="time"],
+  input[type="datetime-local"].input-sm,
+  .input-group-sm > input[type="datetime-local"].form-control,
+  .input-group-sm > input[type="datetime-local"].input-group-addon,
+  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
+  .input-group-sm
+  input[type="datetime-local"],
+  input[type="month"].input-sm,
+  .input-group-sm > input[type="month"].form-control,
+  .input-group-sm > input[type="month"].input-group-addon,
+  .input-group-sm > .input-group-btn > input[type="month"].btn,
+  .input-group-sm
+  input[type="month"] {
+    line-height: 30px; }
+  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
+  .input-group-lg > input[type="date"].input-group-addon,
+  .input-group-lg > .input-group-btn > input[type="date"].btn,
+  .input-group-lg input[type="date"],
+  input[type="time"].input-lg,
+  .input-group-lg > input[type="time"].form-control,
+  .input-group-lg > input[type="time"].input-group-addon,
+  .input-group-lg > .input-group-btn > input[type="time"].btn,
+  .input-group-lg
+  input[type="time"],
+  input[type="datetime-local"].input-lg,
+  .input-group-lg > input[type="datetime-local"].form-control,
+  .input-group-lg > input[type="datetime-local"].input-group-addon,
+  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
+  .input-group-lg
+  input[type="datetime-local"],
+  input[type="month"].input-lg,
+  .input-group-lg > input[type="month"].form-control,
+  .input-group-lg > input[type="month"].input-group-addon,
+  .input-group-lg > .input-group-btn > input[type="month"].btn,
+  .input-group-lg
+  input[type="month"] {
+    line-height: 46px; } }
+
+.form-group {
+  margin-bottom: 15px; }
+
+.radio,
+.checkbox {
+  position: relative;
+  display: block;
+  margin-top: 10px;
+  margin-bottom: 10px; }
+  .radio label,
+  .checkbox label {
+    min-height: 20px;
+    padding-left: 20px;
+    margin-bottom: 0;
+    font-weight: normal;
+    cursor: pointer; }
+
+.radio input[type="radio"],
+.radio-inline input[type="radio"],
+.checkbox input[type="checkbox"],
+.checkbox-inline input[type="checkbox"] {
+  position: absolute;
+  margin-left: -20px;
+  margin-top: 4px \9; }
+
+.radio + .radio,
+.checkbox + .checkbox {
+  margin-top: -5px; }
+
+.radio-inline,
+.checkbox-inline {
+  position: relative;
+  display: inline-block;
+  padding-left: 20px;
+  margin-bottom: 0;
+  vertical-align: middle;
+  font-weight: normal;
+  cursor: pointer; }
+
+.radio-inline + .radio-inline,
+.checkbox-inline + .checkbox-inline {
+  margin-top: 0;
+  margin-left: 10px; }
+
+input[type="radio"][disabled], input[type="radio"].disabled,
+fieldset[disabled] input[type="radio"],
+input[type="checkbox"][disabled],
+input[type="checkbox"].disabled,
+fieldset[disabled]
+input[type="checkbox"] {
+  cursor: not-allowed; }
+
+.radio-inline.disabled,
+fieldset[disabled] .radio-inline,
+.checkbox-inline.disabled,
+fieldset[disabled]
+.checkbox-inline {
+  cursor: not-allowed; }
+
+.radio.disabled label,
+fieldset[disabled] .radio label,
+.checkbox.disabled label,
+fieldset[disabled]
+.checkbox label {
+  cursor: not-allowed; }
+
+.form-control-static {
+  padding-top: 7px;
+  padding-bottom: 7px;
+  margin-bottom: 0;
+  min-height: 34px; }
+  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
+  .input-group-lg > .form-control-static.input-group-addon,
+  .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
+  .input-group-sm > .form-control-static.input-group-addon,
+  .input-group-sm > .input-group-btn > .form-control-static.btn {
+    padding-left: 0;
+    padding-right: 0; }
+
+.input-sm, .input-group-sm > .form-control,
+.input-group-sm > .input-group-addon,
+.input-group-sm > .input-group-btn > .btn {
+  height: 30px;
+  padding: 5px 10px;
+  font-size: 12px;
+  line-height: 1.5;
+  border-radius: 3px; }
+
+select.input-sm, .input-group-sm > select.form-control,
+.input-group-sm > select.input-group-addon,
+.input-group-sm > .input-group-btn > select.btn {
+  height: 30px;
+  line-height: 30px; }
+
+textarea.input-sm, .input-group-sm > textarea.form-control,
+.input-group-sm > textarea.input-group-addon,
+.input-group-sm > .input-group-btn > textarea.btn,
+select[multiple].input-sm,
+.input-group-sm > select[multiple].form-control,
+.input-group-sm > select[multiple].input-group-addon,
+.input-group-sm > .input-group-btn > select[multiple].btn {
+  height: auto; }
+
+.form-group-sm .form-control {
+  height: 30px;
+  padding: 5px 10px;
+  font-size: 12px;
+  line-height: 1.5;
+  border-radius: 3px; }
+
+.form-group-sm select.form-control {
+  height: 30px;
+  line-height: 30px; }
+
+.form-group-sm textarea.form-control,
+.form-group-sm select[multiple].form-control {
+  height: auto; }
+
+.form-group-sm .form-control-static {
+  height: 30px;
+  min-height: 32px;
+  padding: 6px 10px;
+  font-size: 12px;
+  line-height: 1.5; }
+
+.input-lg, .input-group-lg > .form-control,
+.input-group-lg > .input-group-addon,
+.input-group-lg > .input-group-btn > .btn {
+  height: 46px;
+  padding: 10px 16px;
+  font-size: 18px;
+  line-height: 1.33333;
+  border-radius: 6px; }
+
+select.input-lg, .input-group-lg > select.form-control,
+.input-group-lg > select.input-group-addon,
+.input-group-lg > .input-group-btn > select.btn {
+  height: 46px;
+  line-height: 46px; }
+
+textarea.input-lg, .input-group-lg > textarea.form-control,
+.input-group-lg > textarea.input-group-addon,
+.input-group-lg > .input-group-btn > textarea.btn,
+select[multiple].input-lg,
+.input-group-lg > select[multiple].form-control,
+.input-group-lg > select[multiple].input-group-addon,
+.input-group-lg > .input-group-btn > select[multiple].btn {
+  height: auto; }
+
+.form-group-lg .form-control {
+  height: 46px;
+  padding: 10px 16px;
+  font-size: 18px;
+  line-height: 1.33333;
+  border-radius: 6px; }
+
+.form-group-lg select.form-control {
+  height: 46px;
+  line-height: 46px; }
+
+.form-group-lg textarea.form-control,
+.form-group-lg select[multiple].form-control {
+  height: auto; }
+
+.form-group-lg .form-control-static {
+  height: 46px;
+  min-height: 38px;
+  padding: 11px 16px;
+  font-size: 18px;
+  line-height: 1.33333; }
+
+.has-feedback {
+  position: relative; }
+  .has-feedback .form-control {
+    padding-right: 42.5px; }
+
+.form-control-feedback {
+  position: absolute;
+  top: 0;
+  right: 0;
+  z-index: 2;
+  display: block;
+  width: 34px;
+  height: 34px;
+  line-height: 34px;
+  text-align: center;
+  pointer-events: none; }
+
+.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
+.input-group-lg > .input-group-addon + .form-control-feedback,
+.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
+.input-group-lg + .form-control-feedback,
+.form-group-lg .form-control + .form-control-feedback {
+  width: 46px;
+  height: 46px;
+  line-height: 46px; }
+
+.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
+.input-group-sm > .input-group-addon + .form-control-feedback,
+.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
+.input-group-sm + .form-control-feedback,
+.form-group-sm .form-control + .form-control-feedback {
+  width: 30px;
+  height: 30px;
+  line-height: 30px; }
+
+.has-success .help-block,
+.has-success .control-label,
+.has-success .radio,
+.has-success .checkbox,
+.has-success .radio-inline,
+.has-success .checkbox-inline,
+.has-success.radio label,
+.has-success.checkbox label,
+.has-success.radio-inline label,
+.has-success.checkbox-inline label {
+  color: #3c763d; }
+
+.has-success .form-control {
+  border-color: #3c763d;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
+  .has-success .form-control:focus {
+    border-color: #2b542c;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
+    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
+
+.has-success .input-group-addon {
+  color: #3c763d;
+  border-color: #3c763d;
+  background-color: #dff0d8; }
+
+.has-success .form-control-feedback {
+  color: #3c763d; }
+
+.has-warning .help-block,
+.has-warning .control-label,
+.has-warning .radio,
+.has-warning .checkbox,
+.has-warning .radio-inline,
+.has-warning .checkbox-inline,
+.has-warning.radio label,
+.has-warning.checkbox label,
+.has-warning.radio-inline label,
+.has-warning.checkbox-inline label {
+  color: #8a6d3b; }
+
+.has-warning .form-control {
+  border-color: #8a6d3b;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
+  .has-warning .form-control:focus {
+    border-color: #66512c;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
+    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
+
+.has-warning .input-group-addon {
+  color: #8a6d3b;
+  border-color: #8a6d3b;
+  background-color: #fcf8e3; }
+
+.has-warning .form-control-feedback {
+  color: #8a6d3b; }
+
+.has-error .help-block,
+.has-error .control-label,
+.has-error .radio,
+.has-error .checkbox,
+.has-error .radio-inline,
+.has-error .checkbox-inline,
+.has-error.radio label,
+.has-error.checkbox label,
+.has-error.radio-inline label,
+.has-error.checkbox-inline label {
+  color: #a94442; }
+
+.has-error .form-control {
+  border-color: #a94442;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
+  .has-error .form-control:focus {
+    border-color: #843534;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
+    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
+
+.has-error .input-group-addon {
+  color: #a94442;
+  border-color: #a94442;
+  background-color: #f2dede; }
+
+.has-error .form-control-feedback {
+  color: #a94442; }
+
+.has-feedback label ~ .form-control-feedback {
+  top: 25px; }
+
+.has-feedback label.sr-only ~ .form-control-feedback {
+  top: 0; }
+
+.help-block {
+  display: block;
+  margin-top: 5px;
+  margin-bottom: 10px;
+  color: #737373; }
+
+@media (min-width: 768px) {
+  .form-inline .form-group {
+    display: inline-block;
+    margin-bottom: 0;
+    vertical-align: middle; }
+  .form-inline .form-control {
+    display: inline-block;
+    width: auto;
+    vertical-align: middle; }
+  .form-inline .form-control-static {
+    display: inline-block; }
+  .form-inline .input-group {
+    display: inline-table;
+    vertical-align: middle; }
+    .form-inline .input-group .input-group-addon,
+    .form-inline .input-group .input-group-btn,
+    .form-inline .input-group .form-control {
+      width: auto; }
+  .form-inline .input-group > .form-control {
+    width: 100%; }
+  .form-inline .control-label {
+    margin-bottom: 0;
+    vertical-align: middle; }
+  .form-inline .radio,
+  .form-inline .checkbox {
+    display: inline-block;
+    margin-top: 0;
+    margin-bottom: 0;
+    vertical-align: middle; }
+    .form-inline .radio label,
+    .form-inline .checkbox label {
+      padding-left: 0; }
+  .form-inline .radio input[type="radio"],
+  .form-inline .checkbox input[type="checkbox"] {
+    position: relative;
+    margin-left: 0; }
+  .form-inline .has-feedback .form-control-feedback {
+    top: 0; } }
+
+.form-horizontal .radio,
+.form-horizontal .checkbox,
+.form-horizontal .radio-inline,
+.form-horizontal .checkbox-inline {
+  margin-top: 0;
+  margin-bottom: 0;
+  padding-top: 7px; }
+
+.form-horizontal .radio,
+.form-horizontal .checkbox {
+  min-height: 27px; }
+
+.form-horizontal .form-group {
+  margin-left: -15px;
+  margin-right: -15px; }
+  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
+    content: " ";
+    display: table; }
+  .form-horizontal .form-group:after {
+    clear: both; }
+
+@media (min-width: 768px) {
+  .form-horizontal .control-label {
+    text-align: right;
+    margin-bottom: 0;
+    padding-top: 7px; } }
+
+.form-horizontal .has-feedback .form-control-feedback {
+  right: 15px; }
+
+@media (min-width: 768px) {
+  .form-horizontal .form-group-lg .control-label {
+    padding-top: 11px;
+    font-size: 18px; } }
+
+@media (min-width: 768px) {
+  .form-horizontal .form-group-sm .control-label {
+    padding-top: 6px;
+    font-size: 12px; } }
+
+.btn {
+  display: inline-block;
+  margin-bottom: 0;
+  font-weight: normal;
+  text-align: center;
+  vertical-align: middle;
+  touch-action: manipulation;
+  cursor: pointer;
+  background-image: none;
+  border: 1px solid transparent;
+  white-space: nowrap;
+  padding: 6px 12px;
+  font-size: 14px;
+  line-height: 1.42857;
+  border-radius: 4px;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none; }
+  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
+    outline: 5px auto -webkit-focus-ring-color;
+    outline-offset: -2px; }
+  .btn:hover, .btn:focus, .btn.focus {
+    color: #333;
+    text-decoration: none; }
+  .btn:active, .btn.active {
+    outline: 0;
+    background-image: none;
+    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
+  .btn.disabled, .btn[disabled],
+  fieldset[disabled] .btn {
+    cursor: not-allowed;
+    opacity: 0.65;
+    filter: alpha(opacity=65);
+    -webkit-box-shadow: none;
+    box-shadow: none; }
+
+a.btn.disabled,
+fieldset[disabled] a.btn {
+  pointer-events: none; }
+
+.btn-default {
+  color: #333;
+  background-color: #fff;
+  border-color: #ccc; }
+  .btn-default:focus, .btn-default.focus {
+    color: #333;
+    background-color: #e6e6e6;
+    border-color: #8c8c8c; }
+  .btn-default:hover {
+    color: #333;
+    background-color: #e6e6e6;
+    border-color: #adadad; }
+  .btn-default:active, .btn-default.active,
+  .open > .btn-default.dropdown-toggle {
+    color: #333;
+    background-color: #e6e6e6;
+    border-color: #adadad; }
+    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
+    .open > .btn-default.dropdown-toggle:hover,
+    .open > .btn-default.dropdown-toggle:focus,
+    .open > .btn-default.dropdown-toggle.focus {
+      color: #333;
+      background-color: #d4d4d4;
+      border-color: #8c8c8c; }
+  .btn-default:active, .btn-default.active,
+  .open > .btn-default.dropdown-toggle {
+    background-image: none; }
+  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
+  fieldset[disabled] .btn-default:hover,
+  fieldset[disabled] .btn-default:focus,
+  fieldset[disabled] .btn-default.focus {
+    background-color: #fff;
+    border-color: #ccc; }
+  .btn-default .badge {
+    color: #fff;
+    background-color: #333; }
+
+.btn-primary {
+  color: #fff;
+  background-color: #337ab7;
+  border-color: #2e6da4; }
+  .btn-primary:focus, .btn-primary.focus {
+    color: #fff;
+    background-color: #286090;
+    border-color: #122b40; }
+  .btn-primary:hover {
+    color: #fff;
+    background-color: #286090;
+    border-color: #204d74; }
+  .btn-primary:active, .btn-primary.active,
+  .open > .btn-primary.dropdown-toggle {
+    color: #fff;
+    background-color: #286090;
+    border-color: #204d74; }
+    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
+    .open > .btn-primary.dropdown-toggle:hover,
+    .open > .btn-primary.dropdown-toggle:focus,
+    .open > .btn-primary.dropdown-toggle.focus {
+      color: #fff;
+      background-color: #204d74;
+      border-color: #122b40; }
+  .btn-primary:active, .btn-primary.active,
+  .open > .btn-primary.dropdown-toggle {
+    background-image: none; }
+  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
+  fieldset[disabled] .btn-primary:hover,
+  fieldset[disabled] .btn-primary:focus,
+  fieldset[disabled] .btn-primary.focus {
+    background-color: #337ab7;
+    border-color: #2e6da4; }
+  .btn-primary .badge {
+    color: #337ab7;
+    background-color: #fff; }
+
+.btn-success {
+  color: #fff;
+  background-color: #5cb85c;
+  border-color: #4cae4c; }
+  .btn-success:focus, .btn-success.focus {
+    color: #fff;
+    background-color: #449d44;
+    border-color: #255625; }
+  .btn-success:hover {
+    color: #fff;
+    background-color: #449d44;
+    border-color: #398439; }
+  .btn-success:active, .btn-success.active,
+  .open > .btn-success.dropdown-toggle {
+    color: #fff;
+    background-color: #449d44;
+    border-color: #398439; }
+    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
+    .open > .btn-success.dropdown-toggle:hover,
+    .open > .btn-success.dropdown-toggle:focus,
+    .open > .btn-success.dropdown-toggle.focus {
+      color: #fff;
+      background-color: #398439;
+      border-color: #255625; }
+  .btn-success:active, .btn-success.active,
+  .open > .btn-success.dropdown-toggle {
+    background-image: none; }
+  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
+  fieldset[disabled] .btn-success:hover,
+  fieldset[disabled] .btn-success:focus,
+  fieldset[disabled] .btn-success.focus {
+    background-color: #5cb85c;
+    border-color: #4cae4c; }
+  .btn-success .badge {
+    color: #5cb85c;
+    background-color: #fff; }
+
+.btn-info {
+  color: #fff;
+  background-color: #5bc0de;
+  border-color: #46b8da; }
+  .btn-info:focus, .btn-info.focus {
+    color: #fff;
+    background-color: #31b0d5;
+    border-color: #1b6d85; }
+  .btn-info:hover {
+    color: #fff;
+    background-color: #31b0d5;
+    border-color: #269abc; }
+  .btn-info:active, .btn-info.active,
+  .open > .btn-info.dropdown-toggle {
+    color: #fff;
+    background-color: #31b0d5;
+    border-color: #269abc; }
+    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
+    .open > .btn-info.dropdown-toggle:hover,
+    .open > .btn-info.dropdown-toggle:focus,
+    .open > .btn-info.dropdown-toggle.focus {
+      color: #fff;
+      background-color: #269abc;
+      border-color: #1b6d85; }
+  .btn-info:active, .btn-info.active,
+  .open > .btn-info.dropdown-toggle {
+    background-image: none; }
+  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
+  fieldset[disabled] .btn-info:hover,
+  fieldset[disabled] .btn-info:focus,
+  fieldset[disabled] .btn-info.focus {
+    background-color: #5bc0de;
+    border-color: #46b8da; }
+  .btn-info .badge {
+    color: #5bc0de;
+    background-color: #fff; }
+
+.btn-warning {
+  color: #fff;
+  background-color: #f0ad4e;
+  border-color: #eea236; }
+  .btn-warning:focus, .btn-warning.focus {
+    color: #fff;
+    background-color: #ec971f;
+    border-color: #985f0d; }
+  .btn-warning:hover {
+    color: #fff;
+    background-color: #ec971f;
+    border-color: #d58512; }
+  .btn-warning:active, .btn-warning.active,
+  .open > .btn-warning.dropdown-toggle {
+    color: #fff;
+    background-color: #ec971f;
+    border-color: #d58512; }
+    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
+    .open > .btn-warning.dropdown-toggle:hover,
+    .open > .btn-warning.dropdown-toggle:focus,
+    .open > .btn-warning.dropdown-toggle.focus {
+      color: #fff;
+      background-color: #d58512;
+      border-color: #985f0d; }
+  .btn-warning:active, .btn-warning.active,
+  .open > .btn-warning.dropdown-toggle {
+    background-image: none; }
+  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
+  fieldset[disabled] .btn-warning:hover,
+  fieldset[disabled] .btn-warning:focus,
+  fieldset[disabled] .btn-warning.focus {
+    background-color: #f0ad4e;
+    border-color: #eea236; }
+  .btn-warning .badge {
+    color: #f0ad4e;
+    background-color: #fff; }
+
+.btn-danger {
+  color: #fff;
+  background-color: #d9534f;
+  border-color: #d43f3a; }
+  .btn-danger:focus, .btn-danger.focus {
+    color: #fff;
+    background-color: #c9302c;
+    border-color: #761c19; }
+  .btn-danger:hover {
+    color: #fff;
+    background-color: #c9302c;
+    border-color: #ac2925; }
+  .btn-danger:active, .btn-danger.active,
+  .open > .btn-danger.dropdown-toggle {
+    color: #fff;
+    background-color: #c9302c;
+    border-color: #ac2925; }
+    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
+    .open > .btn-danger.dropdown-toggle:hover,
+    .open > .btn-danger.dropdown-toggle:focus,
+    .open > .btn-danger.dropdown-toggle.focus {
+      color: #fff;
+      background-color: #ac2925;
+      border-color: #761c19; }
+  .btn-danger:active, .btn-danger.active,
+  .open > .btn-danger.dropdown-toggle {
+    background-image: none; }
+  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
+  fieldset[disabled] .btn-danger:hover,
+  fieldset[disabled] .btn-danger:focus,
+  fieldset[disabled] .btn-danger.focus {
+    background-color: #d9534f;
+    border-color: #d43f3a; }
+  .btn-danger .badge {
+    color: #d9534f;
+    background-color: #fff; }
+
+.btn-link {
+  color: #337ab7;
+  font-weight: normal;
+  border-radius: 0; }
+  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
+  fieldset[disabled] .btn-link {
+    background-color: transparent;
+    -webkit-box-shadow: none;
+    box-shadow: none; }
+  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
+    border-color: transparent; }
+  .btn-link:hover, .btn-link:focus {
+    color: #23527c;
+    text-decoration: underline;
+    background-color: transparent; }
+  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
+  fieldset[disabled] .btn-link:hover,
+  fieldset[disabled] .btn-link:focus {
+    color: #777777;
+    text-decoration: none; }
+
+.btn-lg, .btn-group-lg > .btn {
+  padding: 10px 16px;
+  font-size: 18px;
+  line-height: 1.33333;
+  border-radius: 6px; }
+
+.btn-sm, .btn-group-sm > .btn {
+  padding: 5px 10px;
+  font-size: 12px;
+  line-height: 1.5;
+  border-radius: 3px; }
+
+.btn-xs, .btn-group-xs > .btn {
+  padding: 1px 5px;
+  font-size: 12px;
+  line-height: 1.5;
+  border-radius: 3px; }
+
+.btn-block {
+  display: block;
+  width: 100%; }
+
+.btn-block + .btn-block {
+  margin-top: 5px; }
+
+input[type="submit"].btn-block,
+input[type="reset"].btn-block,
+input[type="button"].btn-block {
+  width: 100%; }
+
+.fade {
+  opacity: 0;
+  -webkit-transition: opacity 0.15s linear;
+  -o-transition: opacity 0.15s linear;
+  transition: opacity 0.15s linear; }
+  .fade.in {
+    opacity: 1; }
+
+.collapse {
+  display: none; }
+  .collapse.in {
+    display: block; }
+
+tr.collapse.in {
+  display: table-row; }
+
+tbody.collapse.in {
+  display: table-row-group; }
+
+.collapsing {
+  position: relative;
+  height: 0;
+  overflow: hidden;
+  -webkit-transition-property: height, visibility;
+  transition-property: height, visibility;
+  -webkit-transition-duration: 0.35s;
+  transition-duration: 0.35s;
+  -webkit-transition-timing-function: ease;
+  transition-timing-function: ease; }
+
+.caret {
+  display: inline-block;
+  width: 0;
+  height: 0;
+  margin-left: 2px;
+  vertical-align: middle;
+  border-top: 4px dashed;
+  border-top: 4px solid \9;
+  border-right: 4px solid transparent;
+  border-left: 4px solid transparent; }
+
+.dropup,
+.dropdown {
+  position: relative; }
+
+.dropdown-toggle:focus {
+  outline: 0; }
+
+.dropdown-menu {
+  position: absolute;
+  top: 100%;
+  left: 0;
+  z-index: 1000;
+  display: none;
+  float: left;
+  min-width: 160px;
+  padding: 5px 0;
+  margin: 2px 0 0;
+  list-style: none;
+  font-size: 14px;
+  text-align: left;
+  background-color: #fff;
+  border: 1px solid #ccc;
+  border: 1px solid rgba(0, 0, 0, 0.15);
+  border-radius: 4px;
+  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+  background-clip: padding-box; }
+  .dropdown-menu.pull-right {
+    right: 0;
+    left: auto; }
+  .dropdown-menu .divider {
+    height: 1px;
+    margin: 9px 0;
+    overflow: hidden;
+    background-color: #e5e5e5; }
+  .dropdown-menu > li > a {
+    display: block;
+    padding: 3px 20px;
+    clear: both;
+    font-weight: normal;
+    line-height: 1.42857;
+    color: #333333;
+    white-space: nowrap; }
+
+.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
+  text-decoration: none;
+  color: #262626;
+  background-color: #f5f5f5; }
+
+.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
+  color: #fff;
+  text-decoration: none;
+  outline: 0;
+  background-color: #337ab7; }
+
+.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
+  color: #777777; }
+
+.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
+  text-decoration: none;
+  background-color: transparent;
+  background-image: none;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  cursor: not-allowed; }
+
+.open > .dropdown-menu {
+  display: block; }
+
+.open > a {
+  outline: 0; }
+
+.dropdown-menu-right {
+  left: auto;
+  right: 0; }
+
+.dropdown-menu-left {
+  left: 0;
+  right: auto; }
+
+.dropdown-header {
+  display: block;
+  padding: 3px 20px;
+  font-size: 12px;
+  line-height: 1.42857;
+  color: #777777;
+  white-space: nowrap; }
+
+.dropdown-backdrop {
+  position: fixed;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  top: 0;
+  z-index: 990; }
+
+.pull-right > .dropdown-menu {
+  right: 0;
+  left: auto; }
+
+.dropup .caret,
+.navbar-fixed-bottom .dropdown .caret {
+  border-top: 0;
+  border-bottom: 4px dashed;
+  border-bottom: 4px solid \9;
+  content: ""; }
+
+.dropup .dropdown-menu,
+.navbar-fixed-bottom .dropdown .dropdown-menu {
+  top: auto;
+  bottom: 100%;
+  margin-bottom: 2px; }
+
+@media (min-width: 768px) {
+  .navbar-right .dropdown-menu {
+    right: 0;
+    left: auto; }
+  .navbar-right .dropdown-menu-left {
+    left: 0;
+    right: auto; } }
+
+.btn-group,
+.btn-group-vertical {
+  position: relative;
+  display: inline-block;
+  vertical-align: middle; }
+  .btn-group > .btn,
+  .btn-group-vertical > .btn {
+    position: relative;
+    float: left; }
+    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
+    .btn-group-vertical > .btn:hover,
+    .btn-group-vertical > .btn:focus,
+    .btn-group-vertical > .btn:active,
+    .btn-group-vertical > .btn.active {
+      z-index: 2; }
+
+.btn-group .btn + .btn,
+.btn-group .btn + .btn-group,
+.btn-group .btn-group + .btn,
+.btn-group .btn-group + .btn-group {
+  margin-left: -1px; }
+
+.btn-toolbar {
+  margin-left: -5px; }
+  .btn-toolbar:before, .btn-toolbar:after {
+    content: " ";
+    display: table; }
+  .btn-toolbar:after {
+    clear: both; }
+  .btn-toolbar .btn,
+  .btn-toolbar .btn-group,
+  .btn-toolbar .input-group {
+    float: left; }
+  .btn-toolbar > .btn,
+  .btn-toolbar > .btn-group,
+  .btn-toolbar > .input-group {
+    margin-left: 5px; }
+
+.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+  border-radius: 0; }
+
+.btn-group > .btn:first-child {
+  margin-left: 0; }
+  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
+    border-bottom-right-radius: 0;
+    border-top-right-radius: 0; }
+
+.btn-group > .btn:last-child:not(:first-child),
+.btn-group > .dropdown-toggle:not(:first-child) {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0; }
+
+.btn-group > .btn-group {
+  float: left; }
+
+.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0; }
+
+.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0; }
+
+.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0; }
+
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+  outline: 0; }
+
+.btn-group > .btn + .dropdown-toggle {
+  padding-left: 8px;
+  padding-right: 8px; }
+
+.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
+  padding-left: 12px;
+  padding-right: 12px; }
+
+.btn-group.open .dropdown-toggle {
+  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
+  .btn-group.open .dropdown-toggle.btn-link {
+    -webkit-box-shadow: none;
+    box-shadow: none; }
+
+.btn .caret {
+  margin-left: 0; }
+
+.btn-lg .caret, .btn-group-lg > .btn .caret {
+  border-width: 5px 5px 0;
+  border-bottom-width: 0; }
+
+.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
+  border-width: 0 5px 5px; }
+
+.btn-group-vertical > .btn,
+.btn-group-vertical > .btn-group,
+.btn-group-vertical > .btn-group > .btn {
+  display: block;
+  float: none;
+  width: 100%;
+  max-width: 100%; }
+
+.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
+  content: " ";
+  display: table; }
+
+.btn-group-vertical > .btn-group:after {
+  clear: both; }
+
+.btn-group-vertical > .btn-group > .btn {
+  float: none; }
+
+.btn-group-vertical > .btn + .btn,
+.btn-group-vertical > .btn + .btn-group,
+.btn-group-vertical > .btn-group + .btn,
+.btn-group-vertical > .btn-group + .btn-group {
+  margin-top: -1px;
+  margin-left: 0; }
+
+.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
+  border-radius: 0; }
+
+.btn-group-vertical > .btn:first-child:not(:last-child) {
+  border-top-right-radius: 4px;
+  border-top-left-radius: 4px;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0; }
+
+.btn-group-vertical > .btn:last-child:not(:first-child) {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+  border-bottom-right-radius: 4px;
+  border-bottom-left-radius: 4px; }
+
+.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0; }
+
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0; }
+
+.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0; }
+
+.btn-group-justified {
+  display: table;
+  width: 100%;
+  table-layout: fixed;
+  border-collapse: separate; }
+  .btn-group-justified > .btn,
+  .btn-group-justified > .btn-group {
+    float: none;
+    display: table-cell;
+    width: 1%; }
+  .btn-group-justified > .btn-group .btn {
+    width: 100%; }
+  .btn-group-justified > .btn-group .dropdown-menu {
+    left: auto; }
+
+[data-toggle="buttons"] > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn input[type="checkbox"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
+  position: absolute;
+  clip: rect(0, 0, 0, 0);
+  pointer-events: none; }
+
+.input-group {
+  position: relative;
+  display: table;
+  border-collapse: separate; }
+  .input-group[class*="col-"] {
+    float: none;
+    padding-left: 0;
+    padding-right: 0; }
+  .input-group .form-control {
+    position: relative;
+    z-index: 2;
+    float: left;
+    width: 100%;
+    margin-bottom: 0; }
+    .input-group .form-control:focus {
+      z-index: 3; }
+
+.input-group-addon,
+.input-group-btn,
+.input-group .form-control {
+  display: table-cell; }
+  .input-group-addon:not(:first-child):not(:last-child),
+  .input-group-btn:not(:first-child):not(:last-child),
+  .input-group .form-control:not(:first-child):not(:last-child) {
+    border-radius: 0; }
+
+.input-group-addon,
+.input-group-btn {
+  width: 1%;
+  white-space: nowrap;
+  vertical-align: middle; }
+
+.input-group-addon {
+  padding: 6px 12px;
+  font-size: 14px;
+  font-weight: normal;
+  line-height: 1;
+  color: #555555;
+  text-align: center;
+  background-color: #eeeeee;
+  border: 1px solid #ccc;
+  border-radius: 4px; }
+  .input-group-addon.input-sm,
+  .input-group-sm > .input-group-addon,
+  .input-group-sm > .input-group-btn > .input-group-addon.btn {
+    padding: 5px 10px;
+    font-size: 12px;
+    border-radius: 3px; }
+  .input-group-addon.input-lg,
+  .input-group-lg > .input-group-addon,
+  .input-group-lg > .input-group-btn > .input-group-addon.btn {
+    padding: 10px 16px;
+    font-size: 18px;
+    border-radius: 6px; }
+  .input-group-addon input[type="radio"],
+  .input-group-addon input[type="checkbox"] {
+    margin-top: 0; }
+
+.input-group .form-control:first-child,
+.input-group-addon:first-child,
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group > .btn,
+.input-group-btn:first-child > .dropdown-toggle,
+.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0; }
+
+.input-group-addon:first-child {
+  border-right: 0; }
+
+.input-group .form-control:last-child,
+.input-group-addon:last-child,
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group > .btn,
+.input-group-btn:last-child > .dropdown-toggle,
+.input-group-btn:first-child > .btn:not(:first-child),
+.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0; }
+
+.input-group-addon:last-child {
+  border-left: 0; }
+
+.input-group-btn {
+  position: relative;
+  font-size: 0;
+  white-space: nowrap; }
+  .input-group-btn > .btn {
+    position: relative; }
+    .input-group-btn > .btn + .btn {
+      margin-left: -1px; }
+    .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
+      z-index: 2; }
+  .input-group-btn:first-child > .btn,
+  .input-group-btn:first-child > .btn-group {
+    margin-right: -1px; }
+  .input-group-btn:last-child > .btn,
+  .input-group-btn:last-child > .btn-group {
+    z-index: 2;
+    margin-left: -1px; }
+
+.nav {
+  margin-bottom: 0;
+  padding-left: 0;
+  list-style: none; }
+  .nav:before, .nav:after {
+    content: " ";
+    display: table; }
+  .nav:after {
+    clear: both; }
+  .nav > li {
+    position: relative;
+    display: block; }
+    .nav > li > a {
+      position: relative;
+      display: block;
+      padding: 10px 15px; }
+      .nav > li > a:hover, .nav > li > a:focus {
+        text-decoration: none;
+        background-color: #eeeeee; }
+    .nav > li.disabled > a {
+      color: #777777; }
+      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
+        color: #777777;
+        text-decoration: none;
+        background-color: transparent;
+        cursor: not-allowed; }
+  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
+    background-color: #eeeeee;
+    border-color: #337ab7; }
+  .nav .nav-divider {
+    height: 1px;
+    margin: 9px 0;
+    overflow: hidden;
+    background-color: #e5e5e5; }
+  .nav > li > a > img {
+    max-width: none; }
+
+.nav-tabs {
+  border-bottom: 1px solid #ddd; }
+  .nav-tabs > li {
+    float: left;
+    margin-bottom: -1px; }
+    .nav-tabs > li > a {
+      margin-right: 2px;
+      line-height: 1.42857;
+      border: 1px solid transparent;
+      border-radius: 4px 4px 0 0; }
+      .nav-tabs > li > a:hover {
+        border-color: #eeeeee #eeeeee #ddd; }
+    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
+      color: #555555;
+      background-color: #fff;
+      border: 1px solid #ddd;
+      border-bottom-color: transparent;
+      cursor: default; }
+
+.nav-pills > li {
+  float: left; }
+  .nav-pills > li > a {
+    border-radius: 4px; }
+  .nav-pills > li + li {
+    margin-left: 2px; }
+  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
+    color: #fff;
+    background-color: #337ab7; }
+
+.nav-stacked > li {
+  float: none; }
+  .nav-stacked > li + li {
+    margin-top: 2px;
+    margin-left: 0; }
+
+.nav-justified, .nav-tabs.nav-justified {
+  width: 100%; }
+  .nav-justified > li, .nav-tabs.nav-justified > li {
+    float: none; }
+    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
+      text-align: center;
+      margin-bottom: 5px; }
+  .nav-justified > .dropdown .dropdown-menu {
+    top: auto;
+    left: auto; }
+  @media (min-width: 768px) {
+    .nav-justified > li, .nav-tabs.nav-justified > li {
+      display: table-cell;
+      width: 1%; }
+      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
+        margin-bottom: 0; } }
+
+.nav-tabs-justified, .nav-tabs.nav-justified {
+  border-bottom: 0; }
+  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
+    margin-right: 0;
+    border-radius: 4px; }
+  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
+  .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
+  .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
+    border: 1px solid #ddd; }
+  @media (min-width: 768px) {
+    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
+      border-bottom: 1px solid #ddd;
+      border-radius: 4px 4px 0 0; }
+    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
+    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
+    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
+      border-bottom-color: #fff; } }
+
+.tab-content > .tab-pane {
+  display: none; }
+
+.tab-content > .active {
+  display: block; }
+
+.nav-tabs .dropdown-menu {
+  margin-top: -1px;
+  border-top-right-radius: 0;
+  border-top-left-radius: 0; }
+
+.navbar {
+  position: relative;
+  min-height: 50px;
+  margin-bottom: 20px;
+  border: 1px solid transparent; }
+  .navbar:before, .navbar:after {
+    content: " ";
+    display: table; }
+  .navbar:after {
+    clear: both; }
+  @media (min-width: 768px) {
+    .navbar {
+      border-radius: 4px; } }
+
+.navbar-header:before, .navbar-header:after {
+  content: " ";
+  display: table; }
+
+.navbar-header:after {
+  clear: both; }
+
+@media (min-width: 768px) {
+  .navbar-header {
+    float: left; } }
+
+.navbar-collapse {
+  overflow-x: visible;
+  padding-right: 15px;
+  padding-left: 15px;
+  border-top: 1px solid transparent;
+  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
+  -webkit-overflow-scrolling: touch; }
+  .navbar-collapse:before, .navbar-collapse:after {
+    content: " ";
+    display: table; }
+  .navbar-collapse:after {
+    clear: both; }
+  .navbar-collapse.in {
+    overflow-y: auto; }
+  @media (min-width: 768px) {
+    .navbar-collapse {
+      width: auto;
+      border-top: 0;
+      box-shadow: none; }
+      .navbar-collapse.collapse {
+        display: block !important;
+        height: auto !important;
+        padding-bottom: 0;
+        overflow: visible !important; }
+      .navbar-collapse.in {
+        overflow-y: visible; }
+      .navbar-fixed-top .navbar-collapse,
+      .navbar-static-top .navbar-collapse,
+      .navbar-fixed-bottom .navbar-collapse {
+        padding-left: 0;
+        padding-right: 0; } }
+
+.navbar-fixed-top .navbar-collapse,
+.navbar-fixed-bottom .navbar-collapse {
+  max-height: 340px; }
+  @media (max-device-width: 480px) and (orientation: landscape) {
+    .navbar-fixed-top .navbar-collapse,
+    .navbar-fixed-bottom .navbar-collapse {
+      max-height: 200px; } }
+
+.container > .navbar-header,
+.container > .navbar-collapse,
+.container-fluid > .navbar-header,
+.container-fluid > .navbar-collapse {
+  margin-right: -15px;
+  margin-left: -15px; }
+  @media (min-width: 768px) {
+    .container > .navbar-header,
+    .container > .navbar-collapse,
+    .container-fluid > .navbar-header,
+    .container-fluid > .navbar-collapse {
+      margin-right: 0;
+      margin-left: 0; } }
+
+.navbar-static-top {
+  z-index: 1000;
+  border-width: 0 0 1px; }
+  @media (min-width: 768px) {
+    .navbar-static-top {
+      border-radius: 0; } }
+
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  position: fixed;
+  right: 0;
+  left: 0;
+  z-index: 1030; }
+  @media (min-width: 768px) {
+    .navbar-fixed-top,
+    .navbar-fixed-bottom {
+      border-radius: 0; } }
+
+.navbar-fixed-top {
+  top: 0;
+  border-width: 0 0 1px; }
+
+.navbar-fixed-bottom {
+  bottom: 0;
+  margin-bottom: 0;
+  border-width: 1px 0 0; }
+
+.navbar-brand {
+  float: left;
+  padding: 15px 15px;
+  font-size: 18px;
+  line-height: 20px;
+  height: 50px; }
+  .navbar-brand:hover, .navbar-brand:focus {
+    text-decoration: none; }
+  .navbar-brand > img {
+    display: block; }
+  @media (min-width: 768px) {
+    .navbar > .container .navbar-brand,
+    .navbar > .container-fluid .navbar-brand {
+      margin-left: -15px; } }
+
+.navbar-toggle {
+  position: relative;
+  float: right;
+  margin-right: 15px;
+  padding: 9px 10px;
+  margin-top: 8px;
+  margin-bottom: 8px;
+  background-color: transparent;
+  background-image: none;
+  border: 1px solid transparent;
+  border-radius: 4px; }
+  .navbar-toggle:focus {
+    outline: 0; }
+  .navbar-toggle .icon-bar {
+    display: block;
+    width: 22px;
+    height: 2px;
+    border-radius: 1px; }
+  .navbar-toggle .icon-bar + .icon-bar {
+    margin-top: 4px; }
+  @media (min-width: 768px) {
+    .navbar-toggle {
+      display: none; } }
+
+.navbar-nav {
+  margin: 7.5px -15px; }
+  .navbar-nav > li > a {
+    padding-top: 10px;
+    padding-bottom: 10px;
+    line-height: 20px; }
+  @media (max-width: 767px) {
+    .navbar-nav .open .dropdown-menu {
+      position: static;
+      float: none;
+      width: auto;
+      margin-top: 0;
+      background-color: transparent;
+      border: 0;
+      box-shadow: none; }
+      .navbar-nav .open .dropdown-menu > li > a,
+      .navbar-nav .open .dropdown-menu .dropdown-header {
+        padding: 5px 15px 5px 25px; }
+      .navbar-nav .open .dropdown-menu > li > a {
+        line-height: 20px; }
+        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
+          background-image: none; } }
+  @media (min-width: 768px) {
+    .navbar-nav {
+      float: left;
+      margin: 0; }
+      .navbar-nav > li {
+        float: left; }
+        .navbar-nav > li > a {
+          padding-top: 15px;
+          padding-bottom: 15px; } }
+
+.navbar-form {
+  margin-left: -15px;
+  margin-right: -15px;
+  padding: 10px 15px;
+  border-top: 1px solid transparent;
+  border-bottom: 1px solid transparent;
+  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+  margin-top: 8px;
+  margin-bottom: 8px; }
+  @media (min-width: 768px) {
+    .navbar-form .form-group {
+      display: inline-block;
+      margin-bottom: 0;
+      vertical-align: middle; }
+    .navbar-form .form-control {
+      display: inline-block;
+      width: auto;
+      vertical-align: middle; }
+    .navbar-form .form-control-static {
+      display: inline-block; }
+    .navbar-form .input-group {
+      display: inline-table;
+      vertical-align: middle; }
+      .navbar-form .input-group .input-group-addon,
+      .navbar-form .input-group .input-group-btn,
+      .navbar-form .input-group .form-control {
+        width: auto; }
+    .navbar-form .input-group > .form-control {
+      width: 100%; }
+    .navbar-form .control-label {
+      margin-bottom: 0;
+      vertical-align: middle; }
+    .navbar-form .radio,
+    .navbar-form .checkbox {
+      display: inline-block;
+      margin-top: 0;
+      margin-bottom: 0;
+      vertical-align: middle; }
+      .navbar-form .radio label,
+      .navbar-form .checkbox label {
+        padding-left: 0; }
+    .navbar-form .radio input[type="radio"],
+    .navbar-form .checkbox input[type="checkbox"] {
+      position: relative;
+      margin-left: 0; }
+    .navbar-form .has-feedback .form-control-feedback {
+      top: 0; } }
+  @media (max-width: 767px) {
+    .navbar-form .form-group {
+      margin-bottom: 5px; }
+      .navbar-form .form-group:last-child {
+        margin-bottom: 0; } }
+  @media (min-width: 768px) {
+    .navbar-form {
+      width: auto;
+      border: 0;
+      margin-left: 0;
+      margin-right: 0;
+      padding-top: 0;
+      padding-bottom: 0;
+      -webkit-box-shadow: none;
+      box-shadow: none; } }
+
+.navbar-nav > li > .dropdown-menu {
+  margin-top: 0;
+  border-top-right-radius: 0;
+  border-top-left-radius: 0; }
+
+.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
+  margin-bottom: 0;
+  border-top-right-radius: 4px;
+  border-top-left-radius: 4px;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0; }
+
+.navbar-btn {
+  margin-top: 8px;
+  margin-bottom: 8px; }
+  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
+    margin-top: 10px;
+    margin-bottom: 10px; }
+  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
+    margin-top: 14px;
+    margin-bottom: 14px; }
+
+.navbar-text {
+  margin-top: 15px;
+  margin-bottom: 15px; }
+  @media (min-width: 768px) {
+    .navbar-text {
+      float: left;
+      margin-left: 15px;
+      margin-right: 15px; } }
+
+@media (min-width: 768px) {
+  .navbar-left {
+    float: left !important; }
+  .navbar-right {
+    float: right !important;
+    margin-right: -15px; }
+    .navbar-right ~ .navbar-right {
+      margin-right: 0; } }
+
+.navbar-default {
+  background-color: #f8f8f8;
+  border-color: #e7e7e7; }
+  .navbar-default .navbar-brand {
+    color: #777; }
+    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
+      color: #5e5e5e;
+      background-color: transparent; }
+  .navbar-default .navbar-text {
+    color: #777; }
+  .navbar-default .navbar-nav > li > a {
+    color: #777; }
+    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
+      color: #333;
+      background-color: transparent; }
+  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
+    color: #555;
+    background-color: #e7e7e7; }
+  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
+    color: #ccc;
+    background-color: transparent; }
+  .navbar-default .navbar-toggle {
+    border-color: #ddd; }
+    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
+      background-color: #ddd; }
+    .navbar-default .navbar-toggle .icon-bar {
+      background-color: #888; }
+  .navbar-default .navbar-collapse,
+  .navbar-default .navbar-form {
+    border-color: #e7e7e7; }
+  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
+    background-color: #e7e7e7;
+    color: #555; }
+  @media (max-width: 767px) {
+    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
+      color: #777; }
+      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
+        color: #333;
+        background-color: transparent; }
+    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
+      color: #555;
+      background-color: #e7e7e7; }
+    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+      color: #ccc;
+      background-color: transparent; } }
+  .navbar-default .navbar-link {
+    color: #777; }
+    .navbar-default .navbar-link:hover {
+      color: #333; }
+  .navbar-default .btn-link {
+    color: #777; }
+    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
+      color: #333; }
+    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
+    fieldset[disabled] .navbar-default .btn-link:hover,
+    fieldset[disabled] .navbar-default .btn-link:focus {
+      color: #ccc; }
+
+.navbar-inverse {
+  background-color: #222;
+  border-color: #090909; }
+  .navbar-inverse .navbar-brand {
+    color: #9d9d9d; }
+    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
+      color: #fff;
+      background-color: transparent; }
+  .navbar-inverse .navbar-text {
+    color: #9d9d9d; }
+  .navbar-inverse .navbar-nav > li > a {
+    color: #9d9d9d; }
+    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
+      color: #fff;
+      background-color: transparent; }
+  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
+    color: #fff;
+    background-color: #090909; }
+  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
+    color: #444;
+    background-color: transparent; }
+  .navbar-inverse .navbar-toggle {
+    border-color: #333; }
+    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
+      background-color: #333; }
+    .navbar-inverse .navbar-toggle .icon-bar {
+      background-color: #fff; }
+  .navbar-inverse .navbar-collapse,
+  .navbar-inverse .navbar-form {
+    border-color: #101010; }
+  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
+    background-color: #090909;
+    color: #fff; }
+  @media (max-width: 767px) {
+    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
+      border-color: #090909; }
+    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
+      background-color: #090909; }
+    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
+      color: #9d9d9d; }
+      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
+        color: #fff;
+        background-color: transparent; }
+    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
+      color: #fff;
+      background-color: #090909; }
+    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+      color: #444;
+      background-color: transparent; } }
+  .navbar-inverse .navbar-link {
+    color: #9d9d9d; }
+    .navbar-inverse .navbar-link:hover {
+      color: #fff; }
+  .navbar-inverse .btn-link {
+    color: #9d9d9d; }
+    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
+      color: #fff; }
+    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
+    fieldset[disabled] .navbar-inverse .btn-link:hover,
+    fieldset[disabled] .navbar-inverse .btn-link:focus {
+      color: #444; }
+
+.breadcrumb {
+  padding: 8px 15px;
+  margin-bottom: 20px;
+  list-style: none;
+  background-color: #f5f5f5;
+  border-radius: 4px; }
+  .breadcrumb > li {
+    display: inline-block; }
+    .breadcrumb > li + li:before {
+      content: "/ ";
+      padding: 0 5px;
+      color: #ccc; }
+  .breadcrumb > .active {
+    color: #777777; }
+
+.pagination {
+  display: inline-block;
+  padding-left: 0;
+  margin: 20px 0;
+  border-radius: 4px; }
+  .pagination > li {
+    display: inline; }
+    .pagination > li > a,
+    .pagination > li > span {
+      position: relative;
+      float: left;
+      padding: 6px 12px;
+      line-height: 1.42857;
+      text-decoration: none;
+      color: #337ab7;
+      background-color: #fff;
+      border: 1px solid #ddd;
+      margin-left: -1px; }
+    .pagination > li:first-child > a,
+    .pagination > li:first-child > span {
+      margin-left: 0;
+      border-bottom-left-radius: 4px;
+      border-top-left-radius: 4px; }
+    .pagination > li:last-child > a,
+    .pagination > li:last-child > span {
+      border-bottom-right-radius: 4px;
+      border-top-right-radius: 4px; }
+  .pagination > li > a:hover, .pagination > li > a:focus,
+  .pagination > li > span:hover,
+  .pagination > li > span:focus {
+    z-index: 2;
+    color: #23527c;
+    background-color: #eeeeee;
+    border-color: #ddd; }
+  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
+  .pagination > .active > span,
+  .pagination > .active > span:hover,
+  .pagination > .active > span:focus {
+    z-index: 3;
+    color: #fff;
+    background-color: #337ab7;
+    border-color: #337ab7;
+    cursor: default; }
+  .pagination > .disabled > span,
+  .pagination > .disabled > span:hover,
+  .pagination > .disabled > span:focus,
+  .pagination > .disabled > a,
+  .pagination > .disabled > a:hover,
+  .pagination > .disabled > a:focus {
+    color: #777777;
+    background-color: #fff;
+    border-color: #ddd;
+    cursor: not-allowed; }
+
+.pagination-lg > li > a,
+.pagination-lg > li > span {
+  padding: 10px 16px;
+  font-size: 18px;
+  line-height: 1.33333; }
+
+.pagination-lg > li:first-child > a,
+.pagination-lg > li:first-child > span {
+  border-bottom-left-radius: 6px;
+  border-top-left-radius: 6px; }
+
+.pagination-lg > li:last-child > a,
+.pagination-lg > li:last-child > span {
+  border-bottom-right-radius: 6px;
+  border-top-right-radius: 6px; }
+
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+  padding: 5px 10px;
+  font-size: 12px;
+  line-height: 1.5; }
+
+.pagination-sm > li:first-child > a,
+.pagination-sm > li:first-child > span {
+  border-bottom-left-radius: 3px;
+  border-top-left-radius: 3px; }
+
+.pagination-sm > li:last-child > a,
+.pagination-sm > li:last-child > span {
+  border-bottom-right-radius: 3px;
+  border-top-right-radius: 3px; }
+
+.pager {
+  padding-left: 0;
+  margin: 20px 0;
+  list-style: none;
+  text-align: center; }
+  .pager:before, .pager:after {
+    content: " ";
+    display: table; }
+  .pager:after {
+    clear: both; }
+  .pager li {
+    display: inline; }
+    .pager li > a,
+    .pager li > span {
+      display: inline-block;
+      padding: 5px 14px;
+      background-color: #fff;
+      border: 1px solid #ddd;
+      border-radius: 15px; }
+    .pager li > a:hover,
+    .pager li > a:focus {
+      text-decoration: none;
+      background-color: #eeeeee; }
+  .pager .next > a,
+  .pager .next > span {
+    float: right; }
+  .pager .previous > a,
+  .pager .previous > span {
+    float: left; }
+  .pager .disabled > a,
+  .pager .disabled > a:hover,
+  .pager .disabled > a:focus,
+  .pager .disabled > span {
+    color: #777777;
+    background-color: #fff;
+    cursor: not-allowed; }
+
+.label {
+  display: inline;
+  padding: .2em .6em .3em;
+  font-size: 75%;
+  font-weight: bold;
+  line-height: 1;
+  color: #fff;
+  text-align: center;
+  white-space: nowrap;
+  vertical-align: baseline;
+  border-radius: .25em; }
+  .label:empty {
+    display: none; }
+  .btn .label {
+    position: relative;
+    top: -1px; }
+
+a.label:hover, a.label:focus {
+  color: #fff;
+  text-decoration: none;
+  cursor: pointer; }
+
+.label-default {
+  background-color: #777777; }
+  .label-default[href]:hover, .label-default[href]:focus {
+    background-color: #5e5e5e; }
+
+.label-primary {
+  background-color: #337ab7; }
+  .label-primary[href]:hover, .label-primary[href]:focus {
+    background-color: #286090; }
+
+.label-success {
+  background-color: #5cb85c; }
+  .label-success[href]:hover, .label-success[href]:focus {
+    background-color: #449d44; }
+
+.label-info {
+  background-color: #5bc0de; }
+  .label-info[href]:hover, .label-info[href]:focus {
+    background-color: #31b0d5; }
+
+.label-warning {
+  background-color: #f0ad4e; }
+  .label-warning[href]:hover, .label-warning[href]:focus {
+    background-color: #ec971f; }
+
+.label-danger {
+  background-color: #d9534f; }
+  .label-danger[href]:hover, .label-danger[href]:focus {
+    background-color: #c9302c; }
+
+.badge {
+  display: inline-block;
+  min-width: 10px;
+  padding: 3px 7px;
+  font-size: 12px;
+  font-weight: bold;
+  color: #fff;
+  line-height: 1;
+  vertical-align: middle;
+  white-space: nowrap;
+  text-align: center;
+  background-color: #777777;
+  border-radius: 10px; }
+  .badge:empty {
+    display: none; }
+  .btn .badge {
+    position: relative;
+    top: -1px; }
+  .btn-xs .badge, .btn-group-xs > .btn .badge,
+  .btn-group-xs > .btn .badge {
+    top: 0;
+    padding: 1px 5px; }
+  .list-group-item.active > .badge,
+  .nav-pills > .active > a > .badge {
+    color: #337ab7;
+    background-color: #fff; }
+  .list-group-item > .badge {
+    float: right; }
+  .list-group-item > .badge + .badge {
+    margin-right: 5px; }
+  .nav-pills > li > a > .badge {
+    margin-left: 3px; }
+
+a.badge:hover, a.badge:focus {
+  color: #fff;
+  text-decoration: none;
+  cursor: pointer; }
+
+.jumbotron {
+  padding-top: 30px;
+  padding-bottom: 30px;
+  margin-bottom: 30px;
+  color: inherit;
+  background-color: #eeeeee; }
+  .jumbotron h1,
+  .jumbotron .h1 {
+    color: inherit; }
+  .jumbotron p {
+    margin-bottom: 15px;
+    font-size: 21px;
+    font-weight: 200; }
+  .jumbotron > hr {
+    border-top-color: #d5d5d5; }
+  .container .jumbotron,
+  .container-fluid .jumbotron {
+    border-radius: 6px;
+    padding-left: 15px;
+    padding-right: 15px; }
+  .jumbotron .container {
+    max-width: 100%; }
+  @media screen and (min-width: 768px) {
+    .jumbotron {
+      padding-top: 48px;
+      padding-bottom: 48px; }
+      .container .jumbotron,
+      .container-fluid .jumbotron {
+        padding-left: 60px;
+        padding-right: 60px; }
+      .jumbotron h1,
+      .jumbotron .h1 {
+        font-size: 63px; } }
+
+.thumbnail {
+  display: block;
+  padding: 4px;
+  margin-bottom: 20px;
+  line-height: 1.42857;
+  background-color: #fff;
+  border: 1px solid #ddd;
+  border-radius: 4px;
+  -webkit-transition: border 0.2s ease-in-out;
+  -o-transition: border 0.2s ease-in-out;
+  transition: border 0.2s ease-in-out; }
+  .thumbnail > img,
+  .thumbnail a > img {
+    display: block;
+    max-width: 100%;
+    height: auto;
+    margin-left: auto;
+    margin-right: auto; }
+  .thumbnail .caption {
+    padding: 9px;
+    color: #333333; }
+
+a.thumbnail:hover,
+a.thumbnail:focus,
+a.thumbnail.active {
+  border-color: #337ab7; }
+
+.alert {
+  padding: 15px;
+  margin-bottom: 20px;
+  border: 1px solid transparent;
+  border-radius: 4px; }
+  .alert h4 {
+    margin-top: 0;
+    color: inherit; }
+  .alert .alert-link {
+    font-weight: bold; }
+  .alert > p,
+  .alert > ul {
+    margin-bottom: 0; }
+  .alert > p + p {
+    margin-top: 5px; }
+
+.alert-dismissable,
+.alert-dismissible {
+  padding-right: 35px; }
+  .alert-dismissable .close,
+  .alert-dismissible .close {
+    position: relative;
+    top: -2px;
+    right: -21px;
+    color: inherit; }
+
+.alert-success {
+  background-color: #dff0d8;
+  border-color: #d6e9c6;
+  color: #3c763d; }
+  .alert-success hr {
+    border-top-color: #c9e2b3; }
+  .alert-success .alert-link {
+    color: #2b542c; }
+
+.alert-info {
+  background-color: #d9edf7;
+  border-color: #bce8f1;
+  color: #31708f; }
+  .alert-info hr {
+    border-top-color: #a6e1ec; }
+  .alert-info .alert-link {
+    color: #245269; }
+
+.alert-warning {
+  background-color: #fcf8e3;
+  border-color: #faebcc;
+  color: #8a6d3b; }
+  .alert-warning hr {
+    border-top-color: #f7e1b5; }
+  .alert-warning .alert-link {
+    color: #66512c; }
+
+.alert-danger {
+  background-color: #f2dede;
+  border-color: #ebccd1;
+  color: #a94442; }
+  .alert-danger hr {
+    border-top-color: #e4b9c0; }
+  .alert-danger .alert-link {
+    color: #843534; }
+
+@-webkit-keyframes progress-bar-stripes {
+  from {
+    background-position: 40px 0; }
+  to {
+    background-position: 0 0; } }
+
+@keyframes progress-bar-stripes {
+  from {
+    background-position: 40px 0; }
+  to {
+    background-position: 0 0; } }
+
+.progress {
+  overflow: hidden;
+  height: 20px;
+  margin-bottom: 20px;
+  background-color: #f5f5f5;
+  border-radius: 4px;
+  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
+
+.progress-bar {
+  float: left;
+  width: 0%;
+  height: 100%;
+  font-size: 12px;
+  line-height: 20px;
+  color: #fff;
+  text-align: center;
+  background-color: #337ab7;
+  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  -webkit-transition: width 0.6s ease;
+  -o-transition: width 0.6s ease;
+  transition: width 0.6s ease; }
+
+.progress-striped .progress-bar,
+.progress-bar-striped {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-size: 40px 40px; }
+
+.progress.active .progress-bar,
+.progress-bar.active {
+  -webkit-animation: progress-bar-stripes 2s linear infinite;
+  -o-animation: progress-bar-stripes 2s linear infinite;
+  animation: progress-bar-stripes 2s linear infinite; }
+
+.progress-bar-success {
+  background-color: #5cb85c; }
+  .progress-striped .progress-bar-success {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
+
+.progress-bar-info {
+  background-color: #5bc0de; }
+  .progress-striped .progress-bar-info {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
+
+.progress-bar-warning {
+  background-color: #f0ad4e; }
+  .progress-striped .progress-bar-warning {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
+
+.progress-bar-danger {
+  background-color: #d9534f; }
+  .progress-striped .progress-bar-danger {
+    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
+
+.media {
+  margin-top: 15px; }
+  .media:first-child {
+    margin-top: 0; }
+
+.media,
+.media-body {
+  zoom: 1;
+  overflow: hidden; }
+
+.media-body {
+  width: 10000px; }
+
+.media-object {
+  display: block; }
+  .media-object.img-thumbnail {
+    max-width: none; }
+
+.media-right,
+.media > .pull-right {
+  padding-left: 10px; }
+
+.media-left,
+.media > .pull-left {
+  padding-right: 10px; }
+
+.media-left,
+.media-right,
+.media-body {
+  display: table-cell;
+  vertical-align: top; }
+
+.media-middle {
+  vertical-align: middle; }
+
+.media-bottom {
+  vertical-align: bottom; }
+
+.media-heading {
+  margin-top: 0;
+  margin-bottom: 5px; }
+
+.media-list {
+  padding-left: 0;
+  list-style: none; }
+
+.list-group {
+  margin-bottom: 20px;
+  padding-left: 0; }
+
+.list-group-item {
+  position: relative;
+  display: block;
+  padding: 10px 15px;
+  margin-bottom: -1px;
+  background-color: #fff;
+  border: 1px solid #ddd; }
+  .list-group-item:first-child {
+    border-top-right-radius: 4px;
+    border-top-left-radius: 4px; }
+  .list-group-item:last-child {
+    margin-bottom: 0;
+    border-bottom-right-radius: 4px;
+    border-bottom-left-radius: 4px; }
+
+a.list-group-item,
+button.list-group-item {
+  color: #555; }
+  a.list-group-item .list-group-item-heading,
+  button.list-group-item .list-group-item-heading {
+    color: #333; }
+  a.list-group-item:hover, a.list-group-item:focus,
+  button.list-group-item:hover,
+  button.list-group-item:focus {
+    text-decoration: none;
+    color: #555;
+    background-color: #f5f5f5; }
+
+button.list-group-item {
+  width: 100%;
+  text-align: left; }
+
+.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
+  background-color: #eeeeee;
+  color: #777777;
+  cursor: not-allowed; }
+  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
+    color: inherit; }
+  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
+    color: #777777; }
+
+.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
+  z-index: 2;
+  color: #fff;
+  background-color: #337ab7;
+  border-color: #337ab7; }
+  .list-group-item.active .list-group-item-heading,
+  .list-group-item.active .list-group-item-heading > small,
+  .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
+  .list-group-item.active:hover .list-group-item-heading > small,
+  .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
+  .list-group-item.active:focus .list-group-item-heading > small,
+  .list-group-item.active:focus .list-group-item-heading > .small {
+    color: inherit; }
+  .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
+    color: #c7ddef; }
+
+.list-group-item-success {
+  color: #3c763d;
+  background-color: #dff0d8; }
+
+a.list-group-item-success,
+button.list-group-item-success {
+  color: #3c763d; }
+  a.list-group-item-success .list-group-item-heading,
+  button.list-group-item-success .list-group-item-heading {
+    color: inherit; }
+  a.list-group-item-success:hover, a.list-group-item-success:focus,
+  button.list-group-item-success:hover,
+  button.list-group-item-success:focus {
+    color: #3c763d;
+    background-color: #d0e9c6; }
+  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
+  button.list-group-item-success.active,
+  button.list-group-item-success.active:hover,
+  button.list-group-item-success.active:focus {
+    color: #fff;
+    background-color: #3c763d;
+    border-color: #3c763d; }
+
+.list-group-item-info {
+  color: #31708f;
+  background-color: #d9edf7; }
+
+a.list-group-item-info,
+button.list-group-item-info {
+  color: #31708f; }
+  a.list-group-item-info .list-group-item-heading,
+  button.list-group-item-info .list-group-item-heading {
+    color: inherit; }
+  a.list-group-item-info:hover, a.list-group-item-info:focus,
+  button.list-group-item-info:hover,
+  button.list-group-item-info:focus {
+    color: #31708f;
+    background-color: #c4e3f3; }
+  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
+  button.list-group-item-info.active,
+  button.list-group-item-info.active:hover,
+  button.list-group-item-info.active:focus {
+    color: #fff;
+    background-color: #31708f;
+    border-color: #31708f; }
+
+.list-group-item-warning {
+  color: #8a6d3b;
+  background-color: #fcf8e3; }
+
+a.list-group-item-warning,
+button.list-group-item-warning {
+  color: #8a6d3b; }
+  a.list-group-item-warning .list-group-item-heading,
+  button.list-group-item-warning .list-group-item-heading {
+    color: inherit; }
+  a.list-group-item-warning:hover, a.list-group-item-warning:focus,
+  button.list-group-item-warning:hover,
+  button.list-group-item-warning:focus {
+    color: #8a6d3b;
+    background-color: #faf2cc; }
+  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
+  button.list-group-item-warning.active,
+  button.list-group-item-warning.active:hover,
+  button.list-group-item-warning.active:focus {
+    color: #fff;
+    background-color: #8a6d3b;
+    border-color: #8a6d3b; }
+
+.list-group-item-danger {
+  color: #a94442;
+  background-color: #f2dede; }
+
+a.list-group-item-danger,
+button.list-group-item-danger {
+  color: #a94442; }
+  a.list-group-item-danger .list-group-item-heading,
+  button.list-group-item-danger .list-group-item-heading {
+    color: inherit; }
+  a.list-group-item-danger:hover, a.list-group-item-danger:focus,
+  button.list-group-item-danger:hover,
+  button.list-group-item-danger:focus {
+    color: #a94442;
+    background-color: #ebcccc; }
+  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
+  button.list-group-item-danger.active,
+  button.list-group-item-danger.active:hover,
+  button.list-group-item-danger.active:focus {
+    color: #fff;
+    background-color: #a94442;
+    border-color: #a94442; }
+
+.list-group-item-heading {
+  margin-top: 0;
+  margin-bottom: 5px; }
+
+.list-group-item-text {
+  margin-bottom: 0;
+  line-height: 1.3; }
+
+.panel {
+  margin-bottom: 20px;
+  background-color: #eee;
+  border: 1px solid transparent;
+  border-radius: 4px;
+  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
+
+.panel-body {
+  padding: 15px; }
+  .panel-body:before, .panel-body:after {
+    content: " ";
+    display: table; }
+  .panel-body:after {
+    clear: both; }
+
+.panel-heading {
+  padding: 10px 15px;
+  border-bottom: 1px solid transparent;
+  border-top-right-radius: 3px;
+  border-top-left-radius: 3px; }
+  .panel-heading > .dropdown .dropdown-toggle {
+    color: inherit; }
+
+.panel-title {
+  margin-top: 0;
+  margin-bottom: 0;
+  font-size: 16px;
+  color: inherit; }
+  .panel-title > a,
+  .panel-title > small,
+  .panel-title > .small,
+  .panel-title > small > a,
+  .panel-title > .small > a {
+    color: inherit; }
+
+.panel-footer {
+  padding: 10px 15px;
+  background-color: #f5f5f5;
+  border-top: 1px solid #ddd;
+  border-bottom-right-radius: 3px;
+  border-bottom-left-radius: 3px; }
+
+.panel > .list-group,
+.panel > .panel-collapse > .list-group {
+  margin-bottom: 0; }
+  .panel > .list-group .list-group-item,
+  .panel > .panel-collapse > .list-group .list-group-item {
+    border-width: 1px 0;
+    border-radius: 0; }
+  .panel > .list-group:first-child .list-group-item:first-child,
+  .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
+    border-top: 0;
+    border-top-right-radius: 3px;
+    border-top-left-radius: 3px; }
+  .panel > .list-group:last-child .list-group-item:last-child,
+  .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
+    border-bottom: 0;
+    border-bottom-right-radius: 3px;
+    border-bottom-left-radius: 3px; }
+
+.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0; }
+
+.panel-heading + .list-group .list-group-item:first-child {
+  border-top-width: 0; }
+
+.list-group + .panel-footer {
+  border-top-width: 0; }
+
+.panel > .table,
+.panel > .table-responsive > .table,
+.panel > .panel-collapse > .table {
+  margin-bottom: 0; }
+  .panel > .table caption,
+  .panel > .table-responsive > .table caption,
+  .panel > .panel-collapse > .table caption {
+    padding-left: 15px;
+    padding-right: 15px; }
+
+.panel > .table:first-child,
+.panel > .table-responsive:first-child > .table:first-child {
+  border-top-right-radius: 3px;
+  border-top-left-radius: 3px; }
+  .panel > .table:first-child > thead:first-child > tr:first-child,
+  .panel > .table:first-child > tbody:first-child > tr:first-child,
+  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
+  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
+    border-top-left-radius: 3px;
+    border-top-right-radius: 3px; }
+    .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
+    .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
+    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
+    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
+    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
+    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
+      border-top-left-radius: 3px; }
+    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
+    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
+    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
+    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
+    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
+    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
+      border-top-right-radius: 3px; }
+
+.panel > .table:last-child,
+.panel > .table-responsive:last-child > .table:last-child {
+  border-bottom-right-radius: 3px;
+  border-bottom-left-radius: 3px; }
+  .panel > .table:last-child > tbody:last-child > tr:last-child,
+  .panel > .table:last-child > tfoot:last-child > tr:last-child,
+  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
+  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
+    border-bottom-left-radius: 3px;
+    border-bottom-right-radius: 3px; }
+    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
+    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
+      border-bottom-left-radius: 3px; }
+    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
+    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
+      border-bottom-right-radius: 3px; }
+
+.panel > .panel-body + .table,
+.panel > .panel-body + .table-responsive,
+.panel > .table + .panel-body,
+.panel > .table-responsive + .panel-body {
+  border-top: 1px solid #ddd; }
+
+.panel > .table > tbody:first-child > tr:first-child th,
+.panel > .table > tbody:first-child > tr:first-child td {
+  border-top: 0; }
+
+.panel > .table-bordered,
+.panel > .table-responsive > .table-bordered {
+  border: 0; }
+  .panel > .table-bordered > thead > tr > th:first-child,
+  .panel > .table-bordered > thead > tr > td:first-child,
+  .panel > .table-bordered > tbody > tr > th:first-child,
+  .panel > .table-bordered > tbody > tr > td:first-child,
+  .panel > .table-bordered > tfoot > tr > th:first-child,
+  .panel > .table-bordered > tfoot > tr > td:first-child,
+  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
+  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
+  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
+  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
+  .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+  .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+    border-left: 0; }
+  .panel > .table-bordered > thead > tr > th:last-child,
+  .panel > .table-bordered > thead > tr > td:last-child,
+  .panel > .table-bordered > tbody > tr > th:last-child,
+  .panel > .table-bordered > tbody > tr > td:last-child,
+  .panel > .table-bordered > tfoot > tr > th:last-child,
+  .panel > .table-bordered > tfoot > tr > td:last-child,
+  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
+  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
+  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
+  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
+  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+    border-right: 0; }
+  .panel > .table-bordered > thead > tr:first-child > td,
+  .panel > .table-bordered > thead > tr:first-child > th,
+  .panel > .table-bordered > tbody > tr:first-child > td,
+  .panel > .table-bordered > tbody > tr:first-child > th,
+  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
+  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
+  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
+  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
+    border-bottom: 0; }
+  .panel > .table-bordered > tbody > tr:last-child > td,
+  .panel > .table-bordered > tbody > tr:last-child > th,
+  .panel > .table-bordered > tfoot > tr:last-child > td,
+  .panel > .table-bordered > tfoot > tr:last-child > th,
+  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
+  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
+  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
+  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
+    border-bottom: 0; }
+
+.panel > .table-responsive {
+  border: 0;
+  margin-bottom: 0; }
+
+.panel-group {
+  margin-bottom: 20px; }
+  .panel-group .panel {
+    margin-bottom: 0;
+    border-radius: 4px; }
+    .panel-group .panel + .panel {
+      margin-top: 5px; }
+  .panel-group .panel-heading {
+    border-bottom: 0; }
+    .panel-group .panel-heading + .panel-collapse > .panel-body,
+    .panel-group .panel-heading + .panel-collapse > .list-group {
+      border-top: 1px solid #ddd; }
+  .panel-group .panel-footer {
+    border-top: 0; }
+    .panel-group .panel-footer + .panel-collapse .panel-body {
+      border-bottom: 1px solid #ddd; }
+
+.panel-default {
+  border-color: #ddd; }
+  .panel-default > .panel-heading {
+    color: #333333;
+    background-color: #f5f5f5;
+    border-color: #ddd; }
+    .panel-default > .panel-heading + .panel-collapse > .panel-body {
+      border-top-color: #ddd; }
+    .panel-default > .panel-heading .badge {
+      color: #f5f5f5;
+      background-color: #333333; }
+  .panel-default > .panel-footer + .panel-collapse > .panel-body {
+    border-bottom-color: #ddd; }
+
+.panel-primary {
+  border-color: #337ab7; }
+  .panel-primary > .panel-heading {
+    color: #fff;
+    background-color: #337ab7;
+    border-color: #337ab7; }
+    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
+      border-top-color: #337ab7; }
+    .panel-primary > .panel-heading .badge {
+      color: #337ab7;
+      background-color: #fff; }
+  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
+    border-bottom-color: #337ab7; }
+
+.panel-success {
+  border-color: #d6e9c6; }
+  .panel-success > .panel-heading {
+    color: #3c763d;
+    background-color: #dff0d8;
+    border-color: #d6e9c6; }
+    .panel-success > .panel-heading + .panel-collapse > .panel-body {
+      border-top-color: #d6e9c6; }
+    .panel-success > .panel-heading .badge {
+      color: #dff0d8;
+      background-color: #3c763d; }
+  .panel-success > .panel-footer + .panel-collapse > .panel-body {
+    border-bottom-color: #d6e9c6; }
+
+.panel-info {
+  border-color: #bce8f1; }
+  .panel-info > .panel-heading {
+    color: #31708f;
+    background-color: #d9edf7;
+    border-color: #bce8f1; }
+    .panel-info > .panel-heading + .panel-collapse > .panel-body {
+      border-top-color: #bce8f1; }
+    .panel-info > .panel-heading .badge {
+      color: #d9edf7;
+      background-color: #31708f; }
+  .panel-info > .panel-footer + .panel-collapse > .panel-body {
+    border-bottom-color: #bce8f1; }
+
+.panel-warning {
+  border-color: #faebcc; }
+  .panel-warning > .panel-heading {
+    color: #8a6d3b;
+    background-color: #fcf8e3;
+    border-color: #faebcc; }
+    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
+      border-top-color: #faebcc; }
+    .panel-warning > .panel-heading .badge {
+      color: #fcf8e3;
+      background-color: #8a6d3b; }
+  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
+    border-bottom-color: #faebcc; }
+
+.panel-danger {
+  border-color: #ebccd1; }
+  .panel-danger > .panel-heading {
+    color: #a94442;
+    background-color: #f2dede;
+    border-color: #ebccd1; }
+    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
+      border-top-color: #ebccd1; }
+    .panel-danger > .panel-heading .badge {
+      color: #f2dede;
+      background-color: #a94442; }
+  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
+    border-bottom-color: #ebccd1; }
+
+.embed-responsive {
+  position: relative;
+  display: block;
+  height: 0;
+  padding: 0;
+  overflow: hidden; }
+  .embed-responsive .embed-responsive-item,
+  .embed-responsive iframe,
+  .embed-responsive embed,
+  .embed-responsive object,
+  .embed-responsive video {
+    position: absolute;
+    top: 0;
+    left: 0;
+    bottom: 0;
+    height: 100%;
+    width: 100%;
+    border: 0; }
+
+.embed-responsive-16by9 {
+  padding-bottom: 56.25%; }
+
+.embed-responsive-4by3 {
+  padding-bottom: 75%; }
+
+.well {
+  min-height: 20px;
+  padding: 19px;
+  margin-bottom: 20px;
+  background-color: #f5f5f5;
+  border: 1px solid #e3e3e3;
+  border-radius: 4px;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
+  .well blockquote {
+    border-color: #ddd;
+    border-color: rgba(0, 0, 0, 0.15); }
+
+.well-lg {
+  padding: 24px;
+  border-radius: 6px; }
+
+.well-sm {
+  padding: 9px;
+  border-radius: 3px; }
+
+.close {
+  float: right;
+  font-size: 21px;
+  font-weight: bold;
+  line-height: 1;
+  color: #000;
+  text-shadow: 0 1px 0 #fff;
+  opacity: 0.2;
+  filter: alpha(opacity=20); }
+  .close:hover, .close:focus {
+    color: #000;
+    text-decoration: none;
+    cursor: pointer;
+    opacity: 0.5;
+    filter: alpha(opacity=50); }
+
+button.close {
+  padding: 0;
+  cursor: pointer;
+  background: transparent;
+  border: 0;
+  -webkit-appearance: none; }
+
+.modal-open {
+  overflow: hidden; }
+
+.modal {
+  display: none;
+  overflow: hidden;
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1050;
+  -webkit-overflow-scrolling: touch;
+  outline: 0; }
+  .modal.fade .modal-dialog {
+    -webkit-transform: translate(0, -25%);
+    -ms-transform: translate(0, -25%);
+    -o-transform: translate(0, -25%);
+    transform: translate(0, -25%);
+    -webkit-transition: -webkit-transform 0.3s ease-out;
+    -moz-transition: -moz-transform 0.3s ease-out;
+    -o-transition: -o-transform 0.3s ease-out;
+    transition: transform 0.3s ease-out; }
+  .modal.in .modal-dialog {
+    -webkit-transform: translate(0, 0);
+    -ms-transform: translate(0, 0);
+    -o-transform: translate(0, 0);
+    transform: translate(0, 0); }
+
+.modal-open .modal {
+  overflow-x: hidden;
+  overflow-y: auto; }
+
+.modal-dialog {
+  position: relative;
+  width: auto;
+  margin: 10px; }
+
+.modal-content {
+  position: relative;
+  background-color: #fff;
+  border: 1px solid #999;
+  border: 1px solid rgba(0, 0, 0, 0.2);
+  border-radius: 6px;
+  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+  background-clip: padding-box;
+  outline: 0; }
+
+.modal-backdrop {
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1040;
+  background-color: #000; }
+  .modal-backdrop.fade {
+    opacity: 0;
+    filter: alpha(opacity=0); }
+  .modal-backdrop.in {
+    opacity: 0.5;
+    filter: alpha(opacity=50); }
+
+.modal-header {
+  padding: 15px;
+  border-bottom: 1px solid #e5e5e5; }
+  .modal-header:before, .modal-header:after {
+    content: " ";
+    display: table; }
+  .modal-header:after {
+    clear: both; }
+
+.modal-header .close {
+  margin-top: -2px; }
+
+.modal-title {
+  margin: 0;
+  line-height: 1.42857; }
+
+.modal-body {
+  position: relative;
+  padding: 15px; }
+
+.modal-footer {
+  padding: 15px;
+  text-align: right;
+  border-top: 1px solid #e5e5e5; }
+  .modal-footer:before, .modal-footer:after {
+    content: " ";
+    display: table; }
+  .modal-footer:after {
+    clear: both; }
+  .modal-footer .btn + .btn {
+    margin-left: 5px;
+    margin-bottom: 0; }
+  .modal-footer .btn-group .btn + .btn {
+    margin-left: -1px; }
+  .modal-footer .btn-block + .btn-block {
+    margin-left: 0; }
+
+.modal-scrollbar-measure {
+  position: absolute;
+  top: -9999px;
+  width: 50px;
+  height: 50px;
+  overflow: scroll; }
+
+@media (min-width: 768px) {
+  .modal-dialog {
+    width: 600px;
+    margin: 30px auto; }
+  .modal-content {
+    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
+    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
+  .modal-sm {
+    width: 300px; } }
+
+@media (min-width: 992px) {
+  .modal-lg {
+    width: 900px; } }
+
+.tooltip {
+  position: absolute;
+  z-index: 1070;
+  display: block;
+  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  font-weight: normal;
+  letter-spacing: normal;
+  line-break: auto;
+  line-height: 1.42857;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  white-space: normal;
+  word-break: normal;
+  word-spacing: normal;
+  word-wrap: normal;
+  font-size: 12px;
+  opacity: 0;
+  filter: alpha(opacity=0); }
+  .tooltip.in {
+    opacity: 0.9;
+    filter: alpha(opacity=90); }
+  .tooltip.top {
+    margin-top: -3px;
+    padding: 5px 0; }
+  .tooltip.right {
+    margin-left: 3px;
+    padding: 0 5px; }
+  .tooltip.bottom {
+    margin-top: 3px;
+    padding: 5px 0; }
+  .tooltip.left {
+    margin-left: -3px;
+    padding: 0 5px; }
+
+.tooltip-inner {
+  max-width: 200px;
+  padding: 3px 8px;
+  color: #fff;
+  text-align: center;
+  background-color: #000;
+  border-radius: 4px; }
+
+.tooltip-arrow {
+  position: absolute;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid; }
+
+.tooltip.top .tooltip-arrow {
+  bottom: 0;
+  left: 50%;
+  margin-left: -5px;
+  border-width: 5px 5px 0;
+  border-top-color: #000; }
+
+.tooltip.top-left .tooltip-arrow {
+  bottom: 0;
+  right: 5px;
+  margin-bottom: -5px;
+  border-width: 5px 5px 0;
+  border-top-color: #000; }
+
+.tooltip.top-right .tooltip-arrow {
+  bottom: 0;
+  left: 5px;
+  margin-bottom: -5px;
+  border-width: 5px 5px 0;
+  border-top-color: #000; }
+
+.tooltip.right .tooltip-arrow {
+  top: 50%;
+  left: 0;
+  margin-top: -5px;
+  border-width: 5px 5px 5px 0;
+  border-right-color: #000; }
+
+.tooltip.left .tooltip-arrow {
+  top: 50%;
+  right: 0;
+  margin-top: -5px;
+  border-width: 5px 0 5px 5px;
+  border-left-color: #000; }
+
+.tooltip.bottom .tooltip-arrow {
+  top: 0;
+  left: 50%;
+  margin-left: -5px;
+  border-width: 0 5px 5px;
+  border-bottom-color: #000; }
+
+.tooltip.bottom-left .tooltip-arrow {
+  top: 0;
+  right: 5px;
+  margin-top: -5px;
+  border-width: 0 5px 5px;
+  border-bottom-color: #000; }
+
+.tooltip.bottom-right .tooltip-arrow {
+  top: 0;
+  left: 5px;
+  margin-top: -5px;
+  border-width: 0 5px 5px;
+  border-bottom-color: #000; }
+
+.popover {
+  position: absolute;
+  top: 0;
+  left: 0;
+  z-index: 1060;
+  display: none;
+  max-width: 276px;
+  padding: 1px;
+  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  font-weight: normal;
+  letter-spacing: normal;
+  line-break: auto;
+  line-height: 1.42857;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  white-space: normal;
+  word-break: normal;
+  word-spacing: normal;
+  word-wrap: normal;
+  font-size: 14px;
+  background-color: #fff;
+  background-clip: padding-box;
+  border: 1px solid #ccc;
+  border: 1px solid rgba(0, 0, 0, 0.2);
+  border-radius: 6px;
+  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
+  .popover.top {
+    margin-top: -10px; }
+  .popover.right {
+    margin-left: 10px; }
+  .popover.bottom {
+    margin-top: 10px; }
+  .popover.left {
+    margin-left: -10px; }
+
+.popover-title {
+  margin: 0;
+  padding: 8px 14px;
+  font-size: 14px;
+  background-color: #f7f7f7;
+  border-bottom: 1px solid #ebebeb;
+  border-radius: 5px 5px 0 0; }
+
+.popover-content {
+  padding: 9px 14px; }
+
+.popover > .arrow, .popover > .arrow:after {
+  position: absolute;
+  display: block;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid; }
+
+.popover > .arrow {
+  border-width: 11px; }
+
+.popover > .arrow:after {
+  border-width: 10px;
+  content: ""; }
+
+.popover.top > .arrow {
+  left: 50%;
+  margin-left: -11px;
+  border-bottom-width: 0;
+  border-top-color: #999999;
+  border-top-color: rgba(0, 0, 0, 0.25);
+  bottom: -11px; }
+  .popover.top > .arrow:after {
+    content: " ";
+    bottom: 1px;
+    margin-left: -10px;
+    border-bottom-width: 0;
+    border-top-color: #fff; }
+
+.popover.right > .arrow {
+  top: 50%;
+  left: -11px;
+  margin-top: -11px;
+  border-left-width: 0;
+  border-right-color: #999999;
+  border-right-color: rgba(0, 0, 0, 0.25); }
+  .popover.right > .arrow:after {
+    content: " ";
+    left: 1px;
+    bottom: -10px;
+    border-left-width: 0;
+    border-right-color: #fff; }
+
+.popover.bottom > .arrow {
+  left: 50%;
+  margin-left: -11px;
+  border-top-width: 0;
+  border-bottom-color: #999999;
+  border-bottom-color: rgba(0, 0, 0, 0.25);
+  top: -11px; }
+  .popover.bottom > .arrow:after {
+    content: " ";
+    top: 1px;
+    margin-left: -10px;
+    border-top-width: 0;
+    border-bottom-color: #fff; }
+
+.popover.left > .arrow {
+  top: 50%;
+  right: -11px;
+  margin-top: -11px;
+  border-right-width: 0;
+  border-left-color: #999999;
+  border-left-color: rgba(0, 0, 0, 0.25); }
+  .popover.left > .arrow:after {
+    content: " ";
+    right: 1px;
+    border-right-width: 0;
+    border-left-color: #fff;
+    bottom: -10px; }
+
+.carousel {
+  position: relative; }
+
+.carousel-inner {
+  position: relative;
+  overflow: hidden;
+  width: 100%; }
+  .carousel-inner > .item {
+    display: none;
+    position: relative;
+    -webkit-transition: 0.6s ease-in-out left;
+    -o-transition: 0.6s ease-in-out left;
+    transition: 0.6s ease-in-out left; }
+    .carousel-inner > .item > img,
+    .carousel-inner > .item > a > img {
+      display: block;
+      max-width: 100%;
+      height: auto;
+      line-height: 1; }
+    @media all and (transform-3d), (-webkit-transform-3d) {
+      .carousel-inner > .item {
+        -webkit-transition: -webkit-transform 0.6s ease-in-out;
+        -moz-transition: -moz-transform 0.6s ease-in-out;
+        -o-transition: -o-transform 0.6s ease-in-out;
+        transition: transform 0.6s ease-in-out;
+        -webkit-backface-visibility: hidden;
+        -moz-backface-visibility: hidden;
+        backface-visibility: hidden;
+        -webkit-perspective: 1000px;
+        -moz-perspective: 1000px;
+        perspective: 1000px; }
+        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
+          -webkit-transform: translate3d(100%, 0, 0);
+          transform: translate3d(100%, 0, 0);
+          left: 0; }
+        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
+          -webkit-transform: translate3d(-100%, 0, 0);
+          transform: translate3d(-100%, 0, 0);
+          left: 0; }
+        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
+          -webkit-transform: translate3d(0, 0, 0);
+          transform: translate3d(0, 0, 0);
+          left: 0; } }
+  .carousel-inner > .active,
+  .carousel-inner > .next,
+  .carousel-inner > .prev {
+    display: block; }
+  .carousel-inner > .active {
+    left: 0; }
+  .carousel-inner > .next,
+  .carousel-inner > .prev {
+    position: absolute;
+    top: 0;
+    width: 100%; }
+  .carousel-inner > .next {
+    left: 100%; }
+  .carousel-inner > .prev {
+    left: -100%; }
+  .carousel-inner > .next.left,
+  .carousel-inner > .prev.right {
+    left: 0; }
+  .carousel-inner > .active.left {
+    left: -100%; }
+  .carousel-inner > .active.right {
+    left: 100%; }
+
+.carousel-control {
+  position: absolute;
+  top: 0;
+  left: 0;
+  bottom: 0;
+  width: 15%;
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+  font-size: 20px;
+  color: #fff;
+  text-align: center;
+  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
+  background-color: transparent; }
+  .carousel-control.left {
+    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
+  .carousel-control.right {
+    left: auto;
+    right: 0;
+    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
+  .carousel-control:hover, .carousel-control:focus {
+    outline: 0;
+    color: #fff;
+    text-decoration: none;
+    opacity: 0.9;
+    filter: alpha(opacity=90); }
+  .carousel-control .icon-prev,
+  .carousel-control .icon-next,
+  .carousel-control .glyphicon-chevron-left,
+  .carousel-control .glyphicon-chevron-right {
+    position: absolute;
+    top: 50%;
+    margin-top: -10px;
+    z-index: 5;
+    display: inline-block; }
+  .carousel-control .icon-prev,
+  .carousel-control .glyphicon-chevron-left {
+    left: 50%;
+    margin-left: -10px; }
+  .carousel-control .icon-next,
+  .carousel-control .glyphicon-chevron-right {
+    right: 50%;
+    margin-right: -10px; }
+  .carousel-control .icon-prev,
+  .carousel-control .icon-next {
+    width: 20px;
+    height: 20px;
+    line-height: 1;
+    font-family: serif; }
+  .carousel-control .icon-prev:before {
+    content: '\2039'; }
+  .carousel-control .icon-next:before {
+    content: '\203a'; }
+
+.carousel-indicators {
+  position: absolute;
+  bottom: 10px;
+  left: 50%;
+  z-index: 15;
+  width: 60%;
+  margin-left: -30%;
+  padding-left: 0;
+  list-style: none;
+  text-align: center; }
+  .carousel-indicators li {
+    display: inline-block;
+    width: 10px;
+    height: 10px;
+    margin: 1px;
+    text-indent: -999px;
+    border: 1px solid #fff;
+    border-radius: 10px;
+    cursor: pointer;
+    background-color: #000 \9;
+    background-color: transparent; }
+  .carousel-indicators .active {
+    margin: 0;
+    width: 12px;
+    height: 12px;
+    background-color: #fff; }
+
+.carousel-caption {
+  position: absolute;
+  left: 15%;
+  right: 15%;
+  bottom: 20px;
+  z-index: 10;
+  padding-top: 20px;
+  padding-bottom: 20px;
+  color: #fff;
+  text-align: center;
+  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
+  .carousel-caption .btn {
+    text-shadow: none; }
+
+@media screen and (min-width: 768px) {
+  .carousel-control .glyphicon-chevron-left,
+  .carousel-control .glyphicon-chevron-right,
+  .carousel-control .icon-prev,
+  .carousel-control .icon-next {
+    width: 30px;
+    height: 30px;
+    margin-top: -10px;
+    font-size: 30px; }
+  .carousel-control .glyphicon-chevron-left,
+  .carousel-control .icon-prev {
+    margin-left: -10px; }
+  .carousel-control .glyphicon-chevron-right,
+  .carousel-control .icon-next {
+    margin-right: -10px; }
+  .carousel-caption {
+    left: 20%;
+    right: 20%;
+    padding-bottom: 30px; }
+  .carousel-indicators {
+    bottom: 20px; } }
+
+.clearfix:before, .clearfix:after {
+  content: " ";
+  display: table; }
+
+.clearfix:after {
+  clear: both; }
+
+.center-block {
+  display: block;
+  margin-left: auto;
+  margin-right: auto; }
+
+.pull-right {
+  float: right !important; }
+
+.pull-left {
+  float: left !important; }
+
+.hide {
+  display: none !important; }
+
+.show {
+  display: block !important; }
+
+.invisible {
+  visibility: hidden; }
+
+.text-hide {
+  font: 0/0 a;
+  color: transparent;
+  text-shadow: none;
+  background-color: transparent;
+  border: 0; }
+
+.hidden {
+  display: none !important; }
+
+.affix {
+  position: fixed; }
+
+@-ms-viewport {
+  width: device-width; }
+
+.visible-xs {
+  display: none !important; }
+
+.visible-sm {
+  display: none !important; }
+
+.visible-md {
+  display: none !important; }
+
+.visible-lg {
+  display: none !important; }
+
+.visible-xs-block,
+.visible-xs-inline,
+.visible-xs-inline-block,
+.visible-sm-block,
+.visible-sm-inline,
+.visible-sm-inline-block,
+.visible-md-block,
+.visible-md-inline,
+.visible-md-inline-block,
+.visible-lg-block,
+.visible-lg-inline,
+.visible-lg-inline-block {
+  display: none !important; }
+
+@media (max-width: 767px) {
+  .visible-xs {
+    display: block !important; }
+  table.visible-xs {
+    display: table !important; }
+  tr.visible-xs {
+    display: table-row !important; }
+  th.visible-xs,
+  td.visible-xs {
+    display: table-cell !important; } }
+
+@media (max-width: 767px) {
+  .visible-xs-block {
+    display: block !important; } }
+
+@media (max-width: 767px) {
+  .visible-xs-inline {
+    display: inline !important; } }
+
+@media (max-width: 767px) {
+  .visible-xs-inline-block {
+    display: inline-block !important; } }
+
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm {
+    display: block !important; }
+  table.visible-sm {
+    display: table !important; }
+  tr.visible-sm {
+    display: table-row !important; }
+  th.visible-sm,
+  td.visible-sm {
+    display: table-cell !important; } }
+
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-block {
+    display: block !important; } }
+
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-inline {
+    display: inline !important; } }
+
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-inline-block {
+    display: inline-block !important; } }
+
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md {
+    display: block !important; }
+  table.visible-md {
+    display: table !important; }
+  tr.visible-md {
+    display: table-row !important; }
+  th.visible-md,
+  td.visible-md {
+    display: table-cell !important; } }
+
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-block {
+    display: block !important; } }
+
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-inline {
+    display: inline !important; } }
+
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-inline-block {
+    display: inline-block !important; } }
+
+@media (min-width: 1200px) {
+  .visible-lg {
+    display: block !important; }
+  table.visible-lg {
+    display: table !important; }
+  tr.visible-lg {
+    display: table-row !important; }
+  th.visible-lg,
+  td.visible-lg {
+    display: table-cell !important; } }
+
+@media (min-width: 1200px) {
+  .visible-lg-block {
+    display: block !important; } }
+
+@media (min-width: 1200px) {
+  .visible-lg-inline {
+    display: inline !important; } }
+
+@media (min-width: 1200px) {
+  .visible-lg-inline-block {
+    display: inline-block !important; } }
+
+@media (max-width: 767px) {
+  .hidden-xs {
+    display: none !important; } }
+
+@media (min-width: 768px) and (max-width: 991px) {
+  .hidden-sm {
+    display: none !important; } }
+
+@media (min-width: 992px) and (max-width: 1199px) {
+  .hidden-md {
+    display: none !important; } }
+
+@media (min-width: 1200px) {
+  .hidden-lg {
+    display: none !important; } }
+
+.visible-print {
+  display: none !important; }
+
+@media print {
+  .visible-print {
+    display: block !important; }
+  table.visible-print {
+    display: table !important; }
+  tr.visible-print {
+    display: table-row !important; }
+  th.visible-print,
+  td.visible-print {
+    display: table-cell !important; } }
+
+.visible-print-block {
+  display: none !important; }
+  @media print {
+    .visible-print-block {
+      display: block !important; } }
+
+.visible-print-inline {
+  display: none !important; }
+  @media print {
+    .visible-print-inline {
+      display: inline !important; } }
+
+.visible-print-inline-block {
+  display: none !important; }
+  @media print {
+    .visible-print-inline-block {
+      display: inline-block !important; } }
+
+@media print {
+  .hidden-print {
+    display: none !important; } }
diff --git a/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.eot b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.eot
new file mode 100755 (executable)
index 0000000..b93a495
Binary files /dev/null and b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.eot differ
diff --git a/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.svg b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.svg
new file mode 100755 (executable)
index 0000000..94fb549
--- /dev/null
@@ -0,0 +1,288 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
+<font-face units-per-em="1200" ascent="960" descent="-240" />
+<missing-glyph horiz-adv-x="500" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="400" />
+<glyph unicode=" " />
+<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
+<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa5;" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
+<glyph unicode="&#x2000;" horiz-adv-x="650" />
+<glyph unicode="&#x2001;" horiz-adv-x="1300" />
+<glyph unicode="&#x2002;" horiz-adv-x="650" />
+<glyph unicode="&#x2003;" horiz-adv-x="1300" />
+<glyph unicode="&#x2004;" horiz-adv-x="433" />
+<glyph unicode="&#x2005;" horiz-adv-x="325" />
+<glyph unicode="&#x2006;" horiz-adv-x="216" />
+<glyph unicode="&#x2007;" horiz-adv-x="216" />
+<glyph unicode="&#x2008;" horiz-adv-x="162" />
+<glyph unicode="&#x2009;" horiz-adv-x="260" />
+<glyph unicode="&#x200a;" horiz-adv-x="72" />
+<glyph unicode="&#x202f;" horiz-adv-x="260" />
+<glyph unicode="&#x205f;" horiz-adv-x="325" />
+<glyph unicode="&#x20ac;" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
+<glyph unicode="&#x20bd;" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
+<glyph unicode="&#x2212;" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#x231b;" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
+<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
+<glyph unicode="&#x2601;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
+<glyph unicode="&#x26fa;" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
+<glyph unicode="&#x2709;" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
+<glyph unicode="&#x270f;" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
+<glyph unicode="&#xe001;" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
+<glyph unicode="&#xe002;" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
+<glyph unicode="&#xe003;" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
+<glyph unicode="&#xe005;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
+<glyph unicode="&#xe006;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
+<glyph unicode="&#xe007;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
+<glyph unicode="&#xe008;" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
+<glyph unicode="&#xe009;" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
+<glyph unicode="&#xe010;" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe011;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
+<glyph unicode="&#xe012;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe013;" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
+<glyph unicode="&#xe014;" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
+<glyph unicode="&#xe015;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe016;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe017;" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
+<glyph unicode="&#xe018;" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe019;" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
+<glyph unicode="&#xe020;" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
+<glyph unicode="&#xe021;" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe022;" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
+<glyph unicode="&#xe023;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe024;" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
+<glyph unicode="&#xe025;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe026;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
+<glyph unicode="&#xe027;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
+<glyph unicode="&#xe028;" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
+<glyph unicode="&#xe029;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe030;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
+<glyph unicode="&#xe031;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
+<glyph unicode="&#xe032;" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe033;" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
+<glyph unicode="&#xe034;" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
+<glyph unicode="&#xe035;" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
+<glyph unicode="&#xe036;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
+<glyph unicode="&#xe037;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
+<glyph unicode="&#xe038;" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
+<glyph unicode="&#xe039;" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
+<glyph unicode="&#xe040;" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
+<glyph unicode="&#xe041;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe042;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe043;" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
+<glyph unicode="&#xe044;" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe045;" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
+<glyph unicode="&#xe046;" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
+<glyph unicode="&#xe047;" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
+<glyph unicode="&#xe048;" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
+<glyph unicode="&#xe049;" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
+<glyph unicode="&#xe050;" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
+<glyph unicode="&#xe051;" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
+<glyph unicode="&#xe052;" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe053;" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe054;" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="&#xe055;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe056;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe057;" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe058;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe059;" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
+<glyph unicode="&#xe060;" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
+<glyph unicode="&#xe062;" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
+<glyph unicode="&#xe063;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
+<glyph unicode="&#xe064;" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
+<glyph unicode="&#xe065;" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
+<glyph unicode="&#xe066;" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
+<glyph unicode="&#xe067;" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
+<glyph unicode="&#xe068;" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe069;" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe070;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe071;" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
+<glyph unicode="&#xe072;" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
+<glyph unicode="&#xe073;" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe074;" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe075;" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
+<glyph unicode="&#xe076;" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe077;" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe078;" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe079;" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
+<glyph unicode="&#xe080;" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
+<glyph unicode="&#xe081;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe082;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe083;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
+<glyph unicode="&#xe084;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
+<glyph unicode="&#xe085;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe086;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe087;" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
+<glyph unicode="&#xe088;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe089;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe090;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
+<glyph unicode="&#xe091;" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
+<glyph unicode="&#xe092;" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe093;" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
+<glyph unicode="&#xe094;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe095;" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe096;" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
+<glyph unicode="&#xe097;" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
+<glyph unicode="&#xe101;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe102;" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
+<glyph unicode="&#xe103;" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
+<glyph unicode="&#xe104;" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
+<glyph unicode="&#xe105;" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe106;" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe107;" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
+<glyph unicode="&#xe108;" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
+<glyph unicode="&#xe109;" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
+<glyph unicode="&#xe110;" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
+<glyph unicode="&#xe111;" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
+<glyph unicode="&#xe112;" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
+<glyph unicode="&#xe113;" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
+<glyph unicode="&#xe114;" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
+<glyph unicode="&#xe115;" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe116;" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
+<glyph unicode="&#xe117;" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
+<glyph unicode="&#xe118;" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
+<glyph unicode="&#xe119;" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe120;" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
+<glyph unicode="&#xe121;" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
+<glyph unicode="&#xe122;" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
+<glyph unicode="&#xe123;" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
+<glyph unicode="&#xe124;" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
+<glyph unicode="&#xe125;" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe126;" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
+<glyph unicode="&#xe127;" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe128;" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe129;" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe130;" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
+<glyph unicode="&#xe131;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
+<glyph unicode="&#xe132;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
+<glyph unicode="&#xe133;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
+<glyph unicode="&#xe134;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe135;" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
+<glyph unicode="&#xe136;" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
+<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
+<glyph unicode="&#xe138;" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
+<glyph unicode="&#xe139;" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
+<glyph unicode="&#xe140;" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
+<glyph unicode="&#xe141;" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
+<glyph unicode="&#xe142;" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
+<glyph unicode="&#xe143;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
+<glyph unicode="&#xe144;" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
+<glyph unicode="&#xe145;" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
+<glyph unicode="&#xe146;" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
+<glyph unicode="&#xe148;" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
+<glyph unicode="&#xe149;" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
+<glyph unicode="&#xe150;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe151;" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
+<glyph unicode="&#xe152;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
+<glyph unicode="&#xe153;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
+<glyph unicode="&#xe154;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
+<glyph unicode="&#xe155;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
+<glyph unicode="&#xe156;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
+<glyph unicode="&#xe157;" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
+<glyph unicode="&#xe158;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe159;" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
+<glyph unicode="&#xe160;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
+<glyph unicode="&#xe161;" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe162;" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
+<glyph unicode="&#xe163;" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe164;" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
+<glyph unicode="&#xe165;" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
+<glyph unicode="&#xe166;" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe167;" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe168;" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
+<glyph unicode="&#xe169;" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe170;" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe171;" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
+<glyph unicode="&#xe172;" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
+<glyph unicode="&#xe173;" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe174;" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
+<glyph unicode="&#xe175;" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe176;" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe177;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
+<glyph unicode="&#xe178;" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
+<glyph unicode="&#xe179;" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
+<glyph unicode="&#xe180;" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
+<glyph unicode="&#xe181;" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
+<glyph unicode="&#xe182;" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
+<glyph unicode="&#xe183;" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
+<glyph unicode="&#xe184;" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe185;" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
+<glyph unicode="&#xe186;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe187;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe188;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
+<glyph unicode="&#xe189;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
+<glyph unicode="&#xe190;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
+<glyph unicode="&#xe191;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe192;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe193;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
+<glyph unicode="&#xe194;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
+<glyph unicode="&#xe195;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
+<glyph unicode="&#xe197;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe198;" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
+<glyph unicode="&#xe199;" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
+<glyph unicode="&#xe200;" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
+<glyph unicode="&#xe201;" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
+<glyph unicode="&#xe202;" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
+<glyph unicode="&#xe203;" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
+<glyph unicode="&#xe204;" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
+<glyph unicode="&#xe205;" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe206;" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe209;" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
+<glyph unicode="&#xe210;" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe211;" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe212;" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe213;" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe214;" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe215;" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe216;" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
+<glyph unicode="&#xe218;" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
+<glyph unicode="&#xe219;" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
+<glyph unicode="&#xe221;" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe223;" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
+<glyph unicode="&#xe224;" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
+<glyph unicode="&#xe225;" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe226;" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
+<glyph unicode="&#xe227;" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
+<glyph unicode="&#xe230;" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
+<glyph unicode="&#xe231;" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe232;" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe233;" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
+<glyph unicode="&#xe234;" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe235;" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe236;" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe237;" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
+<glyph unicode="&#xe238;" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe239;" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
+<glyph unicode="&#xe240;" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
+<glyph unicode="&#xe241;" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
+<glyph unicode="&#xe242;" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe243;" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
+<glyph unicode="&#xe244;" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
+<glyph unicode="&#xe245;" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
+<glyph unicode="&#xe246;" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
+<glyph unicode="&#xe247;" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe248;" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
+<glyph unicode="&#xe249;" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe250;" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
+<glyph unicode="&#xe251;" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
+<glyph unicode="&#xe252;" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
+<glyph unicode="&#xe253;" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
+<glyph unicode="&#xe254;" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
+<glyph unicode="&#xe255;" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
+<glyph unicode="&#xe256;" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
+<glyph unicode="&#xe257;" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
+<glyph unicode="&#xe258;" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
+<glyph unicode="&#xe259;" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
+<glyph unicode="&#xe260;" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
+<glyph unicode="&#xf8ff;" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
+<glyph unicode="&#x1f511;" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
+<glyph unicode="&#x1f6aa;" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.ttf b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.ttf
new file mode 100755 (executable)
index 0000000..1413fc6
Binary files /dev/null and b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.ttf differ
diff --git a/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.woff b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.woff
new file mode 100755 (executable)
index 0000000..9e61285
Binary files /dev/null and b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.woff differ
diff --git a/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.woff2 b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.woff2
new file mode 100755 (executable)
index 0000000..64539b5
Binary files /dev/null and b/front-end/dist/fonts/bootstrap/glyphicons-halflings-regular.woff2 differ
diff --git a/front-end/dist/index.html b/front-end/dist/index.html
new file mode 100755 (executable)
index 0000000..83490fb
--- /dev/null
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+  <head lang="en">
+    <meta charset="UTF-8">
+    <title>Zephyr</title>
+    <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
+    <link rel="stylesheet" href="./css/style.css">
+  </head>
+  <body ng-app="zephyr">
+      <ui-view></ui-view>
+    <script src="/socket.io/socket.io.js"></script>
+    <script src="./bundle.js"></script>
+  </body>
+</html>
diff --git a/front-end/dist/templates/command.html b/front-end/dist/templates/command.html
new file mode 100755 (executable)
index 0000000..c25eb83
--- /dev/null
@@ -0,0 +1,72 @@
+<div class="command">
+<uib-accordion-group heading="{{ctrl.heading}}" is-open="ctrl.isOpen" panel-class="panel-success">
+<uib-accordion-heading>
+<h1 class="panel-title">
+    [{{ctrl.index}}]: {{ctrl.name}}
+    <button class="pull-right"
+            ng-click="ctrl.removeMySelf(ctrl.index)">
+        <span class="glyphicon glyphicon-remove"></span>
+    </button>
+    </h4>
+    </uib-accordion-heading>
+    <form class="form-horizontal" ng-submit="ctrl.submit()">
+        <div class="container">
+            <div class="row">
+                <h4 class='open-sans'>
+                    Action
+                </h4>
+                <button type="submit" class="btn btn-default">
+                    Execute
+                </button>
+                <button type="button" class="btn btn-default">
+                    Stop
+                </button>
+                <button type="button" class="btn btn-default"
+                                      ng-click="ctrl.help()">
+                    Help
+                </button>
+                <button type="button" class="btn btn-default" ng-click="ctrl.debug()">
+                    debug
+                </button>
+                <hr align="left" style="width: 90%; height: 1px; background-color:#5cb85c;" />
+            </div>
+            <div class="row parameters-console">
+                <div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
+                    <h4 class="open-sans">
+                        Parameters
+                    </h4>
+                    <code>
+                        <ul class="list-inline">
+                            <li>
+                                <label>
+                                    workspace
+                                </label>
+                                <select class="form-control"
+                                        ng-options="dir.name for dir in ctrl.dirs"
+                                        ng-model="ctrl.workspace"
+                                        ng-change="ctrl.reloadFiles()"
+                                        required>
+                                </select>
+                            </li>
+                        </ul>
+
+                        <option info="o" files="ctrl.files"  ng-repeat="o in ctrl.options"></option>
+                    </code>
+                </div>
+                <div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
+                    <h4 class="open-sans">Message from console</h4>
+                    <div class="panel pull-left">
+                        <div class="panel-body console">
+                            <p ng-repeat="msg in ctrl.messages track by $index">{{msg}}</p>
+                        </div>
+                    </div>
+                </div>
+                <hr align="left" style="width: 90%; height: 1px; background-color:#5cb85c;" />
+                <button type="submit" class="btn btn-default">
+                    Execute
+                </button>
+            </div>
+        </div>
+    </form>
+    </uib-accordion-group>
+</div>
diff --git a/front-end/dist/templates/directory.html b/front-end/dist/templates/directory.html
new file mode 100755 (executable)
index 0000000..150e1fd
--- /dev/null
@@ -0,0 +1,23 @@
+<div>
+    <h3 class="page-header">{{ctrl.info.path}}</h3>
+    <table class="table table-striped table-responsive">
+        <tr>
+            <th></th>
+            <th>name</th>
+            <th>fileId</th>
+            <th>parentId</th>
+            <th>fileType</th>
+            <th>createdAt</th>
+            <th>updatedAt</th>
+        </tr>
+        <tr ng-repeat="l in ctrl.files">
+            <td><span class="glyphicon glyphicon-folder-open" ng-show="l.fileType==='0'" aria-hidden="true"></span></td>
+            <td>{{l.name}}</td>
+            <td>{{l.fileId}}</td>
+            <td>{{l.parentId}}</td>
+            <td>{{l.fileType}}</td>
+            <td>{{l.createdAt}}</td>
+            <td>{{l.updatedAt}}</td>
+        </tr>
+    </table>
+</div>
diff --git a/front-end/dist/templates/execution.html b/front-end/dist/templates/execution.html
new file mode 100755 (executable)
index 0000000..18c20db
--- /dev/null
@@ -0,0 +1,10 @@
+<header-menu></header-menu>
+<div class="container">
+    <div class="row">
+        <uib-accordion>
+            <command index="i" name="command.name" remove="c.remove" list="c.commandInfoList" ng-repeat="(i, command) in c.commandInfoList"></command>
+        </uib-accordion>
+        <button class="btn" ng-click="c.add()">Add</button>
+        <button class="btn btn-default" ng-click="c.open()">open</button>
+    </div>
+</div>
diff --git a/front-end/dist/templates/header-menu.html b/front-end/dist/templates/header-menu.html
new file mode 100755 (executable)
index 0000000..9887b2a
--- /dev/null
@@ -0,0 +1,28 @@
+<nav class="nav navbar navbar-default navbar-static-top">
+    <div class="navbar-header">
+        <a class="navbar-brand" href="">Zephyr</a>
+    </div>
+    <div class="navbar-collapse collapse navbar-responsive-collapse">
+        <ul class="nav navbar-nav">
+            <li ng-class="{active: hmc.isExecution}"><a ng-click="hmc.transit('execution')" href="/execution">Execution</a></li>
+            <li ng-class="{active: hmc.isWorkspace}"><a ng-click="hmc.transit('workspace')" href="/workspace">Workspace</a></li>
+            <li ng-class="{active: hmc.isHistory}"><a ng-click="hmc.transit('history')" href="/history">History</a></li>
+        </ul>
+
+        <!--
+        <ul class="nav navbar-nav navbar-right">
+            <li dropdown>
+                <a href="#" class="btn-group" dropdown-toggle>
+                    {{currentRole}}<span class="caret"></span>
+                </a>
+                <ul class="dropdown-menu" role="menu" aria-labelledby="simple-btn-keyboard-nav">
+                    <li role="menuitem" ng-repeat="role in roles">
+                        <a href="#" ng-click="selectRole(role)">{{role}}</a>
+                    </li>
+                </ul>
+            </li>
+            <li><a href="#">{{email}}</a></li>
+        </ul>
+        -->
+    </div>
+</nav>
diff --git a/front-end/dist/templates/history.html b/front-end/dist/templates/history.html
new file mode 100755 (executable)
index 0000000..256ae4b
--- /dev/null
@@ -0,0 +1,3 @@
+<header-menu></header-menu>
+<div class="container">
+</div>
diff --git a/front-end/dist/templates/option.html b/front-end/dist/templates/option.html
new file mode 100755 (executable)
index 0000000..ecaf92c
--- /dev/null
@@ -0,0 +1,36 @@
+<ul class="list-inline">
+    <li class="option-box" ng-repeat="arg in ctrl.info.arg">
+        <span ng-switch="arg.formType">
+            <span ng-switch-when="number">
+                <label class="control-label">
+                    {{arg.argName}}
+                </label>
+                <input type="number"
+                       class="form-control"
+                       ng-model="arg.input"
+                       ng-required="ctrl.info.optionProperties">
+
+            </span>
+            <span ng-switch-when="select">
+                <label class="control-label">
+                    {{arg.argName}}
+                </label>
+                <select class="form-control"
+                        ng-options="file.name for file in ctrl.files"
+                        ng-model="arg.input"
+                        ng-required="ctrl.info.optionProperties">
+                </select>
+            </span>
+
+            <span ng-switch-when="text">
+                <label class="control-label">
+                    {{arg.argName}}
+                </label>
+                <input type="text"
+                       class="form-control"
+                       ng-model="arg.input"
+                       ng-required="ctrl.info.optionProperties">
+            </span>
+        </span>
+    </li>
+</ul>
diff --git a/front-end/dist/templates/preview.html b/front-end/dist/templates/preview.html
new file mode 100755 (executable)
index 0000000..bde9de3
--- /dev/null
@@ -0,0 +1,3 @@
+<div class="modal-header">
+    <h3>Preview</h3>
+</div>
diff --git a/front-end/dist/templates/select-command.html b/front-end/dist/templates/select-command.html
new file mode 100755 (executable)
index 0000000..0d32b7a
--- /dev/null
@@ -0,0 +1,39 @@
+<div class="modal-header">
+    <h3>Select Command</h3>
+</div>
+
+<div class="modal-body">
+    <div class="row">
+        <div class="col-md-8">
+            <div class="btn-group"ng-repeat="tag in c.tags">
+                <button type="button" class="btn btn-default btn-xs" ng-click="c.changeTag(tag)"><span class="glyphicon glyphicon-tag"></span>{{tag}}</button>
+            </div>
+        </div>
+        <div class="col-md-4">
+            <div class="input-group custom-search-form">
+                <input type="text" class="form-control" placeholder="Search..." ng-model="c.searchText">
+                <span class="input-group-btn">
+                    <button class="btn btn-default" type="button">
+                        <span class="glyphicon glyphicon-search"></span>
+                    </button>
+                </span>
+            </div>
+        </div>
+    </div>
+</div>
+
+<div class="modal-footer">
+    <div class="row">
+        <!--
+        <div ng-repeat="command in commands | filter:searchText | tagFilter:tag">
+            -->
+        <div ng-repeat="command in c.commands | filter:c.searchText | Tag:c.currentTag">
+            <div class="col-md-6">
+                <a class="pull-left" ng-click="c.selectCommand(command.name)" ng-if="$even">{{command.name}}</a>
+            </div>
+            <div class="col-md-6">
+                <a class="pull-left" ng-click="c.selectCommand(command.name)" ng-if="$odd">{{command.name}}</a>
+            </div>
+        </div>
+    </div>
+</div>
diff --git a/front-end/dist/templates/upload.html b/front-end/dist/templates/upload.html
new file mode 100644 (file)
index 0000000..5c1869a
--- /dev/null
@@ -0,0 +1,24 @@
+<div class="modal-header">
+    <h3>Upload file</h3>
+</div>
+
+<!--
+<div class="modal-body">
+<form class="form-horizontal" ng-submit="submit()">
+<p><input type="text" name="name" /> </p>
+<p><input type="file" name="file" /> </p>
+<button type="submit" class="btn btn-default"> Upload</button>
+
+</form>
+
+</div>
+-->
+<!--textbook-->
+<div class="modal-body">
+<form method="post" action="/api/v1/fileUpload" enctype="multipart/form-data">
+<p><input type="text" name="parentDirectory" /> </p>
+<p><input type="file" name="file" /> </p>
+<p><input type="submit" value="Upload" /></p>
+</form>
+
+</div>
diff --git a/front-end/dist/templates/workspace.html b/front-end/dist/templates/workspace.html
new file mode 100755 (executable)
index 0000000..dda1588
--- /dev/null
@@ -0,0 +1,9 @@
+<header-menu></header-menu>
+<div class="container">
+    <div class="row">
+        <button type="button" class="btn btn-info" ng-click="c.debug()">Debug</button>
+        <button type="button" class="btn btn-info" ng-click="c.upload()">Upload</button>
+        <directory index="i" info="info" list="c.directoryList" add="c.addDirectory" ng-repeat="(i, info) in c.directoryList"></directory>
+    </div>
+    <!-- <button type="button" class="btn btn-default" ng-click="c.test()">WORKSPACE</button> -->
+</div>
diff --git a/front-end/gulpfile.js b/front-end/gulpfile.js
new file mode 100755 (executable)
index 0000000..92d1430
--- /dev/null
@@ -0,0 +1,45 @@
+var gulp = require('gulp');
+var sass = require('gulp-sass');
+var webpack = require('webpack-stream');
+
+var dist = __dirname + '/dist/';
+
+gulp.task('ts', function() {
+    return gulp.src('app/scripts/entry.js')
+    .pipe(webpack( require('./webpack.config.js') ))
+    .pipe(gulp.dest(dist));
+});
+
+gulp.task('html', function() {
+    return gulp.src('./app/index.html')
+    .pipe(gulp.dest(dist));
+});
+
+gulp.task('sass', function() {
+    return gulp.src('./app/style.scss')
+    .pipe(sass())
+    .pipe(gulp.dest(dist + 'css/'));
+});
+
+gulp.task('templates', function() {
+    return gulp.src('./app/templates/*')
+    .pipe(gulp.dest(dist + 'templates/'));
+});
+
+gulp.task('watch-ts', function() {
+    gulp.watch('./app/**/*.ts', ['ts']);
+});
+
+gulp.task('watch-html', function() {
+    gulp.watch('./app/index.html', ['html']);
+});
+
+gulp.task('watch-templates', function() {
+    gulp.watch('./app/templates/*', ['templates'])
+});
+
+gulp.task('watch-sass', function() {
+    gulp.watch('./app/style.scss', ['sass'])
+});
+
+gulp.task('default', ['ts', 'html', 'sass', 'templates', 'watch-ts', 'watch-html', 'watch-templates', 'watch-sass']);
diff --git a/front-end/tsconfig.json b/front-end/tsconfig.json
new file mode 100755 (executable)
index 0000000..0c9d5c3
--- /dev/null
@@ -0,0 +1,13 @@
+{
+  "compilerOptions": {
+    "target": "es5",
+    "sourceMap": true,
+    "module": "commonjs",
+    "outFile": "./dist/bundle.js",
+    "removeComments": true
+  },
+  "files": [
+      "app/scripts/reference.ts",
+      "./app/scripts/App.ts"
+  ]
+}
diff --git a/front-end/tsd.json b/front-end/tsd.json
new file mode 100755 (executable)
index 0000000..dc78f1b
--- /dev/null
@@ -0,0 +1,24 @@
+{
+  "version": "v4",
+  "repo": "borisyankov/DefinitelyTyped",
+  "ref": "master",
+  "path": "typings",
+  "bundle": "typings/tsd.d.ts",
+  "installed": {
+    "angularjs/angular.d.ts": {
+      "commit": "ba257a9b91bc0de1bdd9091b6723194c905a902a"
+    },
+    "jquery/jquery.d.ts": {
+      "commit": "ba257a9b91bc0de1bdd9091b6723194c905a902a"
+    },
+    "angular-ui-router/angular-ui-router.d.ts": {
+      "commit": "dc9dabe74a5be62613b17a3605309783a12ff28a"
+    },
+    "angularjs/angular-resource.d.ts": {
+      "commit": "419793fb796b0e5c1ed11e018ad28475de0c3735"
+    },
+    "angular-ui-bootstrap/angular-ui-bootstrap.d.ts": {
+      "commit": "ba257a9b91bc0de1bdd9091b6723194c905a902a"
+    }
+  }
+}
diff --git a/front-end/webpack.config.js b/front-end/webpack.config.js
new file mode 100755 (executable)
index 0000000..0c81c6a
--- /dev/null
@@ -0,0 +1,17 @@
+module.exports = {
+  context: __dirname + "/app",
+  entry: __dirname + "/app/scripts/entry.ts",
+  output: {
+    path: __dirname + "/dist",
+    filename: "bundle.js",
+    sourceMapFilename: "bundle.map"
+  },
+  resolve: {
+    extensions: ['', '.webpack.js', '.web.js', '.ts', '.tsx', '.js']
+  },
+  module: {
+    loaders: [
+      { test: /\.tsx?$/, loader: 'ts-loader' }
+    ]
+  }
+}
diff --git a/package.json b/package.json
new file mode 100755 (executable)
index 0000000..8011bf2
--- /dev/null
@@ -0,0 +1,43 @@
+{
+  "name": "Zephyr",
+  "version": "1.0.0",
+  "description": "",
+  "main": "./server/app.js",
+  "scripts": {
+    "test": "NODE_ENV=test mocha test/mocha/Eos.test.js",
+    "rest": "node ./test/rest/execution.test.js"
+  },
+  "author": "",
+  "license": "ISC",
+  "dependencies": {
+    "angular": "1.4.8",
+    "angular-resource": "^1.4.8",
+    "angular-ui-bootstrap": "^1.0.0",
+    "angular-ui-router": "^0.2.15",
+    "body-parser": "^1.14.2",
+    "bootstrap-sass": "^3.3.6",
+    "chalk": "^1.1.1",
+    "co": "^4.6.0",
+    "commander": "^2.9.0",
+    "express": "^4.13.3",
+    "formidable": "^1.0.17",
+    "node-uuid": "^1.4.7",
+    "request": "^2.67.0",
+    "sequelize": "^3.18.0",
+    "socket.io": "^1.4.5",
+    "sqlite3": "^3.1.1"
+  },
+  "devDependencies": {
+    "chai": "^3.4.1",
+    "chai-as-promised": "^5.2.0",
+    "gulp": "^3.9.0",
+    "gulp-sass": "^2.1.1",
+    "mocha": "^2.3.4",
+    "ts-loader": "^0.7.2",
+    "tsd": "^0.6.5",
+    "typescript": "1.7.5",
+    "typescript-loader": "^1.1.3",
+    "webpack": "^1.12.10",
+    "webpack-stream": "^3.1.0"
+  }
+}
diff --git a/server/api/commandExecution/index.js b/server/api/commandExecution/index.js
new file mode 100755 (executable)
index 0000000..4b87045
--- /dev/null
@@ -0,0 +1,43 @@
+'use strict';
+
+var express    = require('express'),
+    router     = express.Router(),
+    path       = require('path'),
+    exec       = require('child_process').exec
+
+router.post('/', function(req, res) {
+    var params     = req.body,
+        command    = params.command,
+        inputPath  = path.normalize('workspace/'+params.inputDir),
+        outputPath = path.normalize('workspace/'+params.outputDir),
+        options    = params.options
+
+    var execLine = command
+    console.log(execLine)
+    if(options) {
+        options.forEach(function(option) {
+            if(option.isFilled) {
+                var content = option.content.toString().replace(",", " ", "g")
+                if(option.name === "-i") {
+                    execLine = execLine+' '+option.name+' '+path.normalize(inputPath+'/'+content)
+                } else if(option.name === "-o") {
+                    execLine = execLine+' '+option.name+' '+path.normalize(outputPath+'/'+content)
+                } else {
+                    execLine = execLine+' '+option.name+' '+content
+                }
+            }
+        })
+    }
+    exec(execLine, function(err, stdout, stderr) {
+        if(err) {
+            console.error(err)
+            res.send('error')
+        } else {
+            console.log(stdout)
+            console.log(stderr)
+            res.send('done')
+        }
+    })
+});
+
+module.exports = router
diff --git a/server/api/commandList/index.js b/server/api/commandList/index.js
new file mode 100755 (executable)
index 0000000..f7ad64f
--- /dev/null
@@ -0,0 +1,11 @@
+'use strict';
+
+var express = require('express');
+var router  = express.Router();
+
+router.get('/', function(req, res) {
+    var commandList = require('../../../util/json/command_list');
+    res.json(commandList);
+});
+
+module.exports = router;
diff --git a/server/api/dirCreation/index.js b/server/api/dirCreation/index.js
new file mode 100755 (executable)
index 0000000..19b907a
--- /dev/null
@@ -0,0 +1,33 @@
+'use strict';
+
+var express = require('express'),
+    router  = express.Router(),
+    path = require('path'),
+    fs = require('fs');
+
+router.post('/', function(req, res) {
+    var dir = req.body.dir,
+        email = req.body.email,
+        name = req.body.createdDirName,
+        createdDirPath = path.normalize(__dirname+'/../../../'+dir+'/'+name)
+    
+    try {
+        fs.mkdirSync(createdDirPath)
+        res.send('dirCreation success')
+    } catch(e) {
+        res.sendStatus(409)
+    }
+
+    if(dir === 'workspace') {
+      /*(
+        jb.update('user',
+                { email: email ,
+                $addToSet: { workspaces: name }
+                })
+    */
+    }
+
+
+});
+
+module.exports = router;
diff --git a/server/api/dirInfo/index.js b/server/api/dirInfo/index.js
new file mode 100755 (executable)
index 0000000..56c1bb1
--- /dev/null
@@ -0,0 +1,44 @@
+'use strict';
+
+var express = require('express'),
+    router  = express.Router(),
+    path    = require('path'),
+    fs      = require('fs');
+
+router.post('', function(req, res) {
+    var dir = req.body.dir,
+        email = req.body.email,
+        dirPath, filesInfo
+
+    if(dir === 'workspace') {
+        dirPath = path.normalize(__dirname+'/../../../workspace/')
+        /*
+        jb.findOne('user', function(err, documents) {
+            filesInfo = documents.workspaces.map(function(file) {
+                var filePath = dirPath + file
+                var stat = fs.statSync(filePath)
+                stat.name = file
+                stat.isDir = stat.isDirectory()
+                return stat
+            })
+            res.send(filesInfo)
+        })
+        */
+
+    } else {
+        dirPath = path.normalize(__dirname+'/../../../workspace/'+dir.replace('workspace/',''))
+        var files = fs.readdirSync(dirPath)
+        var filesInfo = files.filter(function(file) {
+            return file.substring(0,1) !== '.' && file !== 'preview' 
+        })
+        .map(function(file) {
+            var stat = fs.statSync(dirPath+'/'+file)
+            stat.name = file
+            stat.isDir = stat.isDirectory()
+            return stat
+        })
+        res.send(filesInfo)
+    }
+})
+
+module.exports = router;
diff --git a/server/api/fileCreation/index.js b/server/api/fileCreation/index.js
new file mode 100755 (executable)
index 0000000..52891f6
--- /dev/null
@@ -0,0 +1,10 @@
+'use strict';
+
+var express = require('express');
+var router  = express.Router();
+
+router.get('/', function() {
+
+});
+
+module.exports = router;
diff --git a/server/api/noteCreation/index.js b/server/api/noteCreation/index.js
new file mode 100755 (executable)
index 0000000..a16609f
--- /dev/null
@@ -0,0 +1,17 @@
+'use strict';
+
+var express = require('express'),
+    router  = express.Router(),
+    path    = require('path'),
+    fs      = require('fs')
+
+router.post('/', function(req, res) {
+    var data = req.body
+    var noteName = data.name
+    var content  = data.content
+    var notePath = __dirname+'/../../../notes/'+noteName+'.json'
+    fs.writeFileSync(notePath, JSON.stringify(content, null, '    '))
+    res.send('done')
+})
+
+module.exports = router
diff --git a/server/api/noteInfo/index.js b/server/api/noteInfo/index.js
new file mode 100755 (executable)
index 0000000..74872ac
--- /dev/null
@@ -0,0 +1,50 @@
+'use strict';
+
+var express = require('express'),
+    router  = express.Router(),
+    path    = require('path'),
+    fs      = require('fs');
+
+router.post('/', function(req, res) {
+    var note = req.body.note,
+        email = req.body.email,
+        dirPath
+
+    // Return file list at /note/*
+    if(note === 'root') {
+      /*
+        jb.findOne('user', function(err, documents) {
+            var filesInfo = documents.notes.map(function(note) { 
+                var notePath = path.normalize(__dirname+'/../../../notes/'+note)
+                var stat = fs.statSync(notePath)
+                stat.name = note.split('.')[0]
+
+                return stat
+            })
+            res.send(filesInfo)
+        })
+        */
+
+
+        /*
+           var filesInfo = fs.readdirSync(dirPath).filter(function(file) {
+           return file.substring(0,1) !== '.' && file !== 'preview' 
+           })
+           .map(function(file) {
+           stat.name = file
+           return stat
+           })
+           .map(function(stat) {
+           stat.name = stat.name.split('.')[0]
+           return stat
+           })
+           res.send(filesInfo)
+           */
+        // Return content of the note
+    } else {
+        var noteJSON = require(path.normalize(__dirname+'/../../../notes/'+note+'.json'))
+        res.json(noteJSON)
+    }
+})
+
+module.exports = router;
diff --git a/server/api/optionControlFile/index.js b/server/api/optionControlFile/index.js
new file mode 100755 (executable)
index 0000000..103d57d
--- /dev/null
@@ -0,0 +1,15 @@
+'use strict';
+
+var express = require('express');
+var router  = express.Router();
+
+router.get('/:commandName', function(req, res) {
+   var optionJSON = require(__dirname + '/../../../user-specific-files/OptionControlFile/commands/' + req.params.commandName);
+   var info = {
+       status: 'success',
+       info: optionJSON
+   };
+   res.send(info);
+});
+
+module.exports = router;
diff --git a/server/api/tagList/index.js b/server/api/tagList/index.js
new file mode 100755 (executable)
index 0000000..e046e7e
--- /dev/null
@@ -0,0 +1,15 @@
+'use strict';
+
+var express = require('express');
+var router  = express.Router();
+
+router.get('/', function(req, res) {
+    var tagList = require('../../../util/json/tag_list');
+    var info = {
+       status: 'success',
+       info: tagList 
+   };
+   res.send(info);
+});
+
+module.exports = router;
diff --git a/server/api/v1/all/workspace/directory/index.js b/server/api/v1/all/workspace/directory/index.js
new file mode 100755 (executable)
index 0000000..262b11d
--- /dev/null
@@ -0,0 +1,20 @@
+'use strict';
+
+var express    = require('express');
+var router     = express.Router()
+var path       = require('path')
+var formidable = require('formidable')
+var db = require(__dirname + '/../../../../../../server/class/DB').instance;
+
+router.get('/', function(req, res) {
+    db.getDirectories()
+    .then(function(dirs) {
+        var info = {
+            status: 'success',
+            info: dirs
+        }
+        res.send(info);
+    })
+});
+
+module.exports = router;
diff --git a/server/api/v1/commandList/index.js b/server/api/v1/commandList/index.js
new file mode 100755 (executable)
index 0000000..1eb846d
--- /dev/null
@@ -0,0 +1,15 @@
+'use strict';
+
+var express = require('express');
+var router  = express.Router();
+
+router.get('/', function(req, res) {
+   var commandList = require(__dirname + '/../../../../user-specific-files/OptionControlFile/command_list');
+    var info = {
+       status: 'success',
+       info: commandList 
+   };
+   res.send(info);
+});
+
+module.exports = router;
diff --git a/server/api/v1/debug/index.js b/server/api/v1/debug/index.js
new file mode 100755 (executable)
index 0000000..bc06400
--- /dev/null
@@ -0,0 +1,28 @@
+'use strict';
+
+var express    = require('express');
+var router     = express.Router()
+var path       = require('path')
+var ws = require(__dirname + '/../../../../server/class/WebSocket').instance;
+var spawn = require('child_process').spawn;
+
+var config = {
+    cwd: ''
+};
+
+router.get('/', function(req, res) {
+
+
+    var runner = spawn('tree',['-L', 2],config);
+
+    runner.stdout.on('data', (data) => {
+        ws.emit('console', data.toString());
+    });
+
+    runner.on('close', function() {
+        res.send('success');
+    });
+
+});
+
+module.exports = router;
diff --git a/server/api/v1/execution/index.js b/server/api/v1/execution/index.js
new file mode 100644 (file)
index 0000000..bc45140
--- /dev/null
@@ -0,0 +1,99 @@
+'use strict';
+
+var express    = require('express');
+var fs = require('fs')
+var router     = express.Router()
+var path       = require('path')
+var formidable = require('formidable')
+var db = require(__dirname + '/../../../../server/class/DB').instance;
+var eos = require(__dirname + '/../../../../server/class/Eos').instance;
+var ws = require(__dirname + '/../../../../server/class/WebSocket').instance;
+
+router.post('/', function(req, res) {
+
+    ws.emit();
+
+    var form = new formidable.IncomingForm();
+    var root;
+    var result;
+
+    var command;
+    var options;
+    var workspace;
+
+    var optionsArray;
+
+    if(process.env.NODE_ENV === 'debug') {
+        root = __dirname + '/../../../../user-specific-files/workspace.debug/';
+    } else {
+        root = __dirname + '/../../../../user-specific-files/workspace/';
+    }
+
+    form.parse(req, function(err, fields, files) {
+        var data = JSON.parse(fields.data);
+        command = data.command;
+        options = data.options;
+        workspace = data.workspace;
+    });
+
+    form.on('end', function() {
+        Promise.all([eos.validate(command, options, workspace), eos.toExecArray(command, options, workspace)])
+        .catch(function(r) {
+            var info = {
+                status: 'error',
+                message: r.message
+            };
+            console.log(r.message);
+            res.send(info);
+        })
+        .then(function(r) {
+            var optionsArray = r[1];
+            return eos.execute(command, optionsArray);
+        })
+        .then(function(r) {
+            var info = {
+                status: 'success',
+            };
+
+            console.log('start readdir');
+            fs.readdir(root, function(err, list) {
+                console.log('in readdir');
+                if(err) {
+                  console.log('in err');
+                  console.error(err);
+                  process.exit(1);
+                } else {
+                  console.log(list.length.tostring);
+
+                  for (var i = 0; i< list.length; i++) {
+                    //db.existFile(list[i])
+                    //if(db.existFileId(list[i])) {
+                    //  console.log('execute exist:'+list[i]);
+                    if('A'<=list[i][0] && list[i][0]<='z' ) {
+                      db.createFile(list[i], '/');
+                    }
+                  }
+
+                }
+            });
+
+            console.log('end readdir');
+            //db.createFile('test.out','/');
+            //var id = db.getDirectory('/');
+            //console.log(db.getDirectoryId('/').tostring);
+            /*
+            for( var name in db.getFiles(id)) {
+              consoiel.log(name);
+              if(db.notExistFile(name, '/')) {
+                  console.log(name);
+                  db.createFile(name, '/');
+              }
+            }
+            */
+
+            res.send(r);
+        });
+    });
+});
+
+module.exports = router;
diff --git a/server/api/v1/fileUpload/index.js b/server/api/v1/fileUpload/index.js
new file mode 100755 (executable)
index 0000000..76b4b98
--- /dev/null
@@ -0,0 +1,150 @@
+/*
+var express = require('express');
+var router = express.Router();
+var multer = require('multer');
+
+var app = express();
+
+router.post('/', multer({ dest: 'uploads/'}), function(req, res, next) {
+res.send(JSON.stringify('hoge'));
+});
+*/
+
+'use strict';
+var express    = require('express');
+var router     = express.Router();
+var path       = require('path');
+var formidable = require('formidable');
+var util = require('util');
+var db = require(__dirname + '/../../../../server/class/DB').instance;
+var uuid = require('node-uuid');
+var fs = require('fs');
+var db = require(__dirname + '/../../../../server/class/DB').instance;
+
+router.post('/', function(req, res) {
+  console.log('router post received');
+  var form = new formidable.IncomingForm();
+  var filesInfo = [];
+
+  console.log('router post received: OK formidable' );
+
+  form.uploadDir = __dirname + '/../../../../user-specific-files/tmp';
+
+  /*
+  form.on('fileBegin', function(parentDirectory, file) {
+  });
+*/
+  form.parse(req, function(err, parentDirectory, file){
+    res.writeHead(200, {'content-type': 'text/html'});
+    res.write('received upload:\n\n');
+    res.write(file+'¥n');
+    res.write(util.inspect({files: file})+'¥n');
+    res.end(util.inspect({fields: parentDirectory, files: file}));
+  });
+
+  form.on('file', function(name, file) {
+    var filepath=file.path;
+    var filebase=file.name;
+    console.log(filepath);
+    console.log(filebase);
+    console.log(process.env['WorkspacePATH']+'/'+filebase);
+    //fs.rename(db.dbPath+parentDirectory+filepath, db.dbPath+parentDirectory+filebase, function (err) {
+    fs.rename(filepath, process.env['WorkspacePATH']+'/'+filebase, function (err) {
+      if (err) throw err;
+      console.log('renamed complete');
+    });
+    //db.createFile(filebase, parentDirectory);
+    db.createFile(filebase, '/');
+  });
+
+  console.log('router post received: parse OK');
+
+  form.on('end', function(err, parentDirectory, file) {
+    console.log('end');
+  });
+
+  /*
+  form.on('field', function(field, value) {
+  console.log(field, value);
+  fields.push([field, value]);
+})
+.on('file', function(field, file) {
+console.log(field, file);
+files.push([field, file]);
+})
+.on('end', function() {
+console.log('-> upload done');
+res.writeHead(200, {'content-type': 'text/plain'});
+res.write('received fields:\n\n '+util.inspect(fields));
+res.write('\n\n');
+res.end('received files:\n\n '+util.inspect(files));
+});
+
+form.on('error', function(err) {
+console.errro(err);
+var i = {
+status: 'error',
+message: err
+}
+res.send(i);
+});
+*/
+
+/*
+form.parse(req, function(err, fields, files) {
+  var workspace;
+  var parentDirectory = fields['parentDirectory'];
+  if(process.env['NODE_ENV'] === 'debug') {
+    workspace = __dirname + '/../../../../user-specific-files/workspace.debug/';
+  } else {
+    workspace = __dirname + '/../../../../user-specific-files/workspace/';
+  }
+  var promises = [];
+  Object.keys(files).forEach(function(key) {
+    var file = files[key];
+    var fileName = file.name;
+    var tmpPath = file.path;
+    var info = {
+      parentDirectory: parentDirectory,
+      fileName: fileName,
+      tmpPath: tmpPath,
+      fileId: null
+    };
+
+    filesInfo.push(info);
+    promises.push(db.createFile(fileName, parentDirectory)); // file作成に成功したらresolve, 失敗したらreject
+  });
+
+  Promise.all(promises)
+  .catch(function(err) {
+    filesInfo.forEach(function(fileInfo) {
+      fs.unlinkSync(fileInfo.tmpPath);
+    });
+
+    var info = {
+      status: 'error',
+      messag: err.message
+    };
+
+    res.send(info);
+  })
+  .then(function(fileIds) {
+    fileIds.forEach(function(fileId, i) {
+      filesInfo[i].fileId = fileId;
+      fs.renameSync(filesInfo[i].tmpPath, workspace + fileId);
+      delete filesInfo[i].tmpPath;
+    })
+    var info = {
+      status: 'success',
+      info: filesInfo
+    };
+    res.send(info);
+  });
+});
+*/
+
+
+
+});
+
+module.exports = router;
diff --git a/server/api/v1/help/index.js b/server/api/v1/help/index.js
new file mode 100755 (executable)
index 0000000..d7d3f84
--- /dev/null
@@ -0,0 +1,27 @@
+'use strict';
+
+var express    = require('express');
+var router     = express.Router()
+var path       = require('path')
+var ws = require(__dirname + '/../../../../server/class/WebSocket').instance;
+var spawn = require('child_process').spawn;
+
+var config = {
+    cwd: ''
+};
+
+router.get('/:command', function(req, res) {
+    var command = req.params.command;
+    var runner = spawn(command,['-h'],config);
+
+    runner.stderr.on('data', (data) => {
+        ws.emit('console', data.toString());
+    });
+
+    runner.on('close', function() {
+        res.send('/api/v1/help/'+command+' success');
+    });
+
+});
+
+module.exports = router;
diff --git a/server/api/v1/optionControlFile/index.js b/server/api/v1/optionControlFile/index.js
new file mode 100755 (executable)
index 0000000..39ae2f7
--- /dev/null
@@ -0,0 +1,15 @@
+'use strict';
+
+var express = require('express');
+var router  = express.Router();
+
+router.get('/:commandName', function(req, res) {
+   var optionJSON = require(__dirname + '/../../../../user-specific-files/OptionControlFile/commands/' + req.params.commandName);
+   var info = {
+       status: 'success',
+       info: optionJSON
+   };
+   res.send(info);
+});
+
+module.exports = router;
diff --git a/server/api/v1/tagList/index.js b/server/api/v1/tagList/index.js
new file mode 100755 (executable)
index 0000000..4f57fa5
--- /dev/null
@@ -0,0 +1,16 @@
+'use strict';
+
+var express = require('express');
+var router  = express.Router();
+
+router.get('/', function(req, res) {
+   var tagList = require(__dirname + '/../../../../user-specific-files/OptionControlFile/tag_list');
+    var info = {
+       status: 'success',
+       info: tagList
+   };
+   console.log('in router.get of tagList');
+   res.send(info);
+});
+
+module.exports = router;
diff --git a/server/api/v1/workspace/index.js b/server/api/v1/workspace/index.js
new file mode 100755 (executable)
index 0000000..470be7e
--- /dev/null
@@ -0,0 +1,31 @@
+'use strict';
+
+var express    = require('express');
+var router     = express.Router()
+var path       = require('path')
+var formidable = require('formidable')
+var db = require(__dirname + '/../../../../server/class/DB').instance;
+
+router.get('/:fileId?', function(req, res) {
+    var fileId = req.param('fileId');
+    if(!fileId || fileId === '1f83f620-c1ed-11e5-9657-7942989daa00') {
+        fileId === '1f83f620-c1ed-11e5-9657-7942989daa00';
+    }
+    db.getFiles(fileId)
+    .then(function(r) {
+        var info = {
+            status: 'success',
+            info: r
+        }
+        res.send(info);
+    })
+    .catch(function(err) {
+        var info = {
+            status: 'error',
+            message: err.message
+        };
+        res.send(info);
+    })
+});
+
+module.exports = router;
diff --git a/server/app.js b/server/app.js
new file mode 100755 (executable)
index 0000000..9fb5610
--- /dev/null
@@ -0,0 +1,48 @@
+#!/usr/bin/env node --harmony
+
+'use strict';
+
+var express = require('express');
+var config  = require('./config');
+var app     = express();
+var EventEmitter = require('events').EventEmitter;
+var emitter = new EventEmitter;
+var server  = require('http').Server(app)
+var ioServer = require('socket.io');
+var ws = require('./class/WebSocket').instance;
+
+require('./express')(app);
+require('./routes')(app);
+
+// DBのコンストラクタを実行
+var DB = require('./class/DB').instance;
+DB.init()
+//.then(function() {
+//    return DB.test2();
+//})
+.then(function() {
+    if(process.env.NODE_ENV === 'debug') {
+        return DB.testRest();
+    }
+})
+.then(function() {
+    var server = app.listen(config.port, config.ip, function () {
+      /*
+      switch (req.method) {
+        case 'GET':
+        show(req, res);
+        break;
+        case 'POST':
+        upload(req, res);
+        break;
+      }
+      */
+        console.log('Zephyr listening at http://%s:%s', config.ip, config.port);
+        console.log('NODE_ENV = ' + app.get('env'))
+    });
+
+    var io = ioServer.listen(server);
+    ws.connect(io);
+});
+
+exports = module.exports = app;
diff --git a/server/class/DB.js b/server/class/DB.js
new file mode 100755 (executable)
index 0000000..722e149
--- /dev/null
@@ -0,0 +1,712 @@
+/**
+ * DBを操作するクラス
+ *
+ * @returns {object}
+ */
+'use strict';
+
+var fs = require('fs');
+var Sequelize = require('sequelize');
+var co = require('co');
+var uuid = require('node-uuid');
+
+var sequelize;
+var test = 'hello';
+var Files; // Model object of sequelize
+
+var instance = {
+    init: init,
+    sayHello: function() {
+        return test;
+    },
+    getDirectoryParentId: getDirectoryParentId,
+    getDirectoryId: getDirectoryId,
+    getDirectory: getDirectory,
+    getFiles: getFiles,
+    getDirectories: getDirectories,
+    existFile: existFile,
+    existFileId: existFileId,
+    notExistFile: notExistFile,
+    existDirectory: existDirectory,
+    notExistDirectory: notExistDirectory,
+    createFile: createFile,
+    removeFile: removeFile,
+    createDirectory: createDirectory,
+    //test1: test1,
+    //test2: test2,
+    testRest: testRest
+    /*
+    removeDirectory: removeDirectory,
+    getFilename: getFilename,
+    moveFile: moveFile,
+    moveDirectory: moveDirectory
+    */
+};
+
+/**
+ * init
+ * @constructor
+ * @returns {promise}
+ */
+
+/**
+ * productionモード時は、db.workspaceを永続化させる
+ * DEBUGモードの時は、db.debugを実行毎に作成する。
+ * DEBUGモードの時は、sync()の中で、/レコードがFilesテーブルに追加される。
+ * モードの切り替えは環境変数NODE_ENVで行っている。
+ * zephyr serveコマンドが実行されるとNODE_ENV = 'production'
+ * zephyr debugコマンドが実行されるとNODE_ENV = 'debug'
+ * となる。
+ * それぞれの設定は$ZEOHYR_HOME/cli/zephyr-serve, $ZEPHYR_HOME/zephyre_debugを参照
+ */
+
+    function init() {
+        var dbPath;
+        var dbOption = {
+            dialect: 'sqlite'
+        };
+
+        if(process.env['NODE_ENV'] === 'production') {
+            dbPath = __dirname + '/../../user-specific-files/db/db.workspace';
+            process.env['WorkspacePATH']= __dirname + '/../../user-specific-files/workspace';
+
+            // if doesn't exist workspace.db, create.
+            try {
+                fs.accessSync(dbPath, fs.R_OK | fs.W_OK);
+            } catch(e) {
+                fs.writeFileSync(dbPath, '');
+            }
+            dbOption.storage = dbPath;
+
+        } else if(process.env['NODE_ENV'] === 'debug') {
+            dbPath = __dirname + '/../../user-specific-files/db/db.debug';
+            process.env['WorkspacePATH']= __dirname + '/../../user-specific-files/workspace.debug';
+
+            try {
+                fs.accessSync(dbPath, fs.R_OK | fs.W_OK);
+                fs.unlinkSync(dbPath);
+            } catch(e) {
+            }
+
+            fs.writeFileSync(dbPath, '');
+            dbOption.storage = dbPath;
+        }
+        var workspacePath = process.env['WorkspacePATH'];
+
+        sequelize = new Sequelize('','','', dbOption);
+
+        Files = sequelize.define('file', {
+            fileId: {
+                type: Sequelize.UUID,
+                field: 'file_id',
+                primaryKey: true
+            },
+            name: {
+                type: Sequelize.STRING,
+                field: 'name',
+                allowNull: false
+            },
+            parentId: {
+                type: Sequelize.UUID,
+                field: 'parent_id',
+                allowNull: false
+            },
+            fileType: {
+                type: Sequelize.ENUM(0,1),
+                field: 'file_type',
+                allowNull: false
+            }
+        });
+
+        var force = process.env.NODE_ENV !== 'production';
+        return Files.sync({force: force})
+        .then(function() {
+            return insertRoot();
+        });
+
+
+    }
+
+
+
+/**
+ * sync
+ *
+ * @returns {promise}<DBオブジェクトの関数群のオブジェクトをresolveする>
+ */
+function insertRoot() {
+    return new Promise(function(resolve, reject) {
+        var q = {
+            where: {
+                name: '/'
+            }
+        };
+        Files.findOne(q)
+        .then(function(r) {
+            if(r === null) {
+                var root = {
+                    fileId: '1f83f620-c1ed-11e5-9657-7942989daa00', // rootのuuidは固定値
+                    name: '/',
+                    parentId: '',
+                    fileType: 0
+                };
+                return Files.create(root);
+            }
+        })
+        .then(function() {
+            resolve();
+        });
+    });
+}
+
+/**
+ * getDirectoryParentId
+ * ディレクトリのparentIdを取得する
+ * @param name
+ * @returns {promise} ディレクトリが存在すればresolve(uuid), しなければreject
+ */
+function getDirectoryParentId(name) {
+    return new Promise(function(resolve, reject) {
+        var q = {
+            where: {
+                name: name,
+                fileType: 0
+            }
+        };
+        Files.findAll(q)
+        .then(function(r) {
+            if(r.length === 0) {
+                reject(new Error('"' + name + '" directory doesn\'t exist.'));
+            } else {
+                var map = r.map(function(c) { return c.dataValues.parentId });
+                resolve(map);
+            }
+        });
+    });
+}
+
+
+/**
+ * getDirectoryId
+ * ディレクトリのfileIdを取得する
+ * @param name
+ * @returns {promise} ディレクトリが存在すればresolve(uuid), しなければreject
+ */
+
+function getDirectoryId(name) {
+    return new Promise(function(resolve, reject) {
+        var q = {
+            where: {
+                name: name,
+                fileType: 0
+            }
+        };
+        Files.findAll(q)
+        .then(function(r) {
+            if(r.length === 0) {
+                reject(new Error('"' + name + '" directory doesn\'t exist.'));
+            } else {
+                var map = r.map(function(c) { return c.dataValues.fileId });
+                resolve(map);
+            }
+        });
+    });
+}
+
+/**
+ * getDirectory
+ * ディレクトリのfileIdを取得する
+ * @param name
+ * @returns {promise} ディレクトリが存在すればresolve(name), しなければreject
+ */
+
+function getDirectory(name) {
+    return new Promise(function(resolve, reject) {
+        var q = {
+            where: {
+                name: name,
+                fileType: 0
+            }
+        };
+        Files.findAll(q)
+        .then(function(r) {
+            if(r.length === 0) {
+                reject(new Error('"' + name + '" directory doesn\'t exist.'));
+            } else {
+                var map = r.map(function(c) { return c.dataValues });
+                resolve(map);
+            }
+        });
+    });
+}
+
+/**
+ * getFiles
+ * ディレクトリのfileId一覧を取得する
+ * @param {string} fileId ディレクトリのfileId
+ * @returns {promise} resolve([Array]<string>fileId) 引数で与えられたディレクトリを直接の親に持つファイルのレコードの配列を返す。
+ *                    与えられたfileIdがディレクトリでなければresolve
+ */
+function getFiles(fileId) {
+    return new Promise(function(resolve, reject) {
+        if(!fileId) {
+            reject(new Error('"'+fileId+'" is invalid.'));
+        }
+        var q = {
+            where: {
+                parentId: fileId
+            }
+        };
+        Files.findAll(q)
+        .then(function(r) {
+            if(r.length === 0) {
+                reject(new Error('"'+fileId+'" is invalid.'));
+            }
+            var files = r.map(function(data) { return data; });
+            resolve(files);
+        });
+    });
+}
+
+/**
+ * getDirectories
+ * ディレクトリの一覧を取得する
+ * @returns {promise} resolve([Array]<Object>)
+ */
+function getDirectories() {
+    return new Promise(function(resolve, reject) {
+        var q = {
+            where: {
+                fileType: 0
+            }
+        };
+        Files.findAll(q)
+        .then(function(r) {
+            var dirs = r.map(function(data) {
+                return data.dataValues;
+            });
+            resolve(dirs);
+        });
+    });
+}
+
+/**
+ * existFile
+ * 同一ディレクトリに同名のファイルが存在することを確かめる
+ * @param {string} fileName
+ * @param {string} parentDirectory parentDirectoryの絶対パス
+ * @returns {promise} ファイルが存在すればresolve、存在しなければreject
+ */
+function existFile(fileName, parentDirectory) {
+    return new Promise(function(resolve, reject) {
+        existDirectory(parentDirectory)
+        .catch(function(error) {
+            reject(error);
+        })
+        .then(function(fileId) {
+            var q = {
+                where: {
+                    name: fileName,
+                    parentId: fileId
+                }
+            };
+            return  Files.findOne(q)
+        })
+        .then(function(r) {
+            if(r === null) {
+                reject(new Error("\"" + fileName + "\" does not exist in " + '"' + parentDirectory + "\" directory."));
+            } else {
+                resolve(r.fileId);
+            }
+        });
+    });
+}
+
+/**
+ * existFileId
+ * 同一ディレクトリに同名のファイルが存在することを確かめる
+ * @param {string} fileId
+ * @param {string} parentDirectory parentDirectoryの絶対パス
+ * @returns {promise} ファイルが存在すればresolve、存在しなければreject
+ */
+function existFileId(whichfileID, parentDirectory) {
+    console.log('findFileId start');
+
+    return new Promise(function(resolve, reject) {
+        existDirectory(parentDirectory)
+        .catch(function(error) {
+            reject(error);
+        })
+        .then(function(fileId) {
+            console.log('findFileId: '+whichfileID);
+            var q =  Files.findOne({
+                where: {
+                    fileId: whichfileID,
+                    parentId: fileId
+                }
+            });
+            console.log('findFileId: get q'+q.tostring);
+            if(q) {
+              return true;
+            } else {
+              return false;
+            }
+        })
+        .then(function(r) {
+            if(r === null) {
+                reject(new Error("\"" + fileName + "\" does not exist in " + '"' + parentDirectory + "\" directory."));
+            } else {
+                resolve(r.fileId);
+            }
+        });
+    });
+}
+
+
+/**
+ * notExistFile
+ * 同一ディレクトリに同名のファイルが存在していないことを確かめる
+ * @param {string}fileName
+ * @param {string}parentDirectory
+ * @returns {promise} ファイルが存在しなければresolve、存在すればreject
+ */
+function notExistFile(fileName, parentDirectory) {
+    return new Promise(function(resolve, reject) {
+        existDirectory(parentDirectory)
+        .catch(function(error) {
+            reject(error);
+        })
+        .then(function(fileId) {
+            var q = {
+                where: {
+                    name: fileName,
+                    parentId: fileId
+                }
+            };
+            return Files.findOne(q)
+        })
+        .then(function(r) {
+            if(r === null) {
+                resolve();
+            } else {
+                reject(new Error("\"" + fileName + "\" has already existed in " + '"' + parentDirectory + "\" directory."));
+            }
+        });
+    });
+}
+
+/**
+ * existDirectory
+ * ディレクトリが存在することを確認する
+ * @param {string} directory
+ * @returns {promise} ディレクトリが存在すればresolve{fileId)、存在しなければreject
+ */
+function existDirectory(directory) {
+    return new Promise(function(resolve, reject) {
+        if(!directory) {
+            reject(new Error('parameter "directory" is undefined'));
+        }
+
+        var arrayDirectory;
+        var root = directory.substr(0,1);
+
+        if(root !== '/') {
+            reject(new Error('directory name should start "/" so that it is absolute path including root.'));
+        }
+
+        if(directory === '/') {
+            resolve('1f83f620-c1ed-11e5-9657-7942989daa00'); // rootのuuid
+        } else {
+            arrayDirectory = directory.split('/');
+            arrayDirectory.shift(); // root
+            arrayDirectory.unshift('/');
+        }
+
+        var directoriesPromise = arrayDirectory.map(function(name) {
+            return getDirectory(name);
+        });
+
+        Promise.all(directoriesPromise)
+        .then(function(r) {
+            var parentId = r[0][0].fileId;
+            var index;
+            for(var i=1;i<r.length;i++) {
+                index = r[i].map(function(c) { return c.parentId }).indexOf(parentId);
+                if(index > -1) {
+                    parentId = r[i][index].fileId;
+                } else {
+                    reject(new Error('"' + directory + '" directory doesn\'t exist.'));
+                }
+            }
+            resolve(parentId);
+        })
+        .catch(function(error) {
+            reject(new Error('"' + directory + '" directory doesn\'t exist.'));
+        });
+    });
+}
+
+/**
+ * notExistDirectory
+ * ディレクトリが存在しないことを確認する
+ * @param {string} directory
+ * @returns {promise} ディレクトリが存在しなければresolve、存在すればreject
+ */
+function notExistDirectory(directory) {
+    return new Promise(function(resolve, reject) {
+        if(!directory) {
+            resolve();
+        }
+
+        var arrayDirectory;
+        var root = directory.substr(0,1);
+
+        if(root !== '/') {
+            resolve();
+        }
+
+        if(directory === '/') {
+            reject(new Error('"' + directory + '" directory exists.'));
+        } else {
+            arrayDirectory = directory.split('/');
+            arrayDirectory.shift(); // root
+            arrayDirectory.unshift('/');
+        }
+
+        var directoriesPromise = arrayDirectory.map(function(name) {
+            return getDirectory(name);
+        });
+        Promise.all(directoriesPromise)
+        .then(function(r) {
+            var parentId = r[0][0].fileId;
+            var index;
+            for(var i=1;i<r.length;i++) {
+                index = r[i].map(function(c) { return c.parentId }).indexOf(parentId);
+                if(index > -1) {
+                    parentId = r[i][index].fileId;
+                } else {
+                    resolve();
+                }
+            }
+            reject(new Error('"' + directory + '" directory exists.'));
+        })
+        .catch(function(error) {
+            resolve();
+        });
+    });
+}
+
+/**
+ * createFile
+ *
+ * @param fileName
+ * @param parentDirectory
+ * @returns {promise}<sequelize.createの結果を格納したobject | Error>
+ */
+function createFile(fileName,parentDirectory) {
+    return new Promise(function(resolve, reject) {
+        if(!fileName) {
+            reject(new Error('filename is required.'));
+        }
+        Promise.all([existDirectory(parentDirectory), notExistFile(fileName, parentDirectory) ])
+        .catch(function(error) {
+            reject(error);
+        })
+        .then(function(r) {
+            var parentId = r[0]
+            var q = {
+                fileId: uuid.v1(),
+                name: fileName,
+                parentId: parentId,
+                fileType: 1
+            }
+
+            console.log('createFile:'+process.env['WorkspacePATH']+parentDirectory+fileName);
+            console.log('createFile:'+process.env['WorkspacePATH']+parentDirectory+q.fileId);
+            //console.log('createFile:'+workspacePath+parentDirectory+fileName);
+            //console.log('createFile:'+workspacePath+parentDirectory+r.dataValues.fileId);
+
+            fs.rename(process.env['WorkspacePATH']+parentDirectory+fileName, process.env['WorkspacePATH']+parentDirectory+q.fileId, function (err) {
+              if (err) throw err;
+              console.log('renamed complete');
+            });
+
+            return Files.create(q)
+        })
+        .then(function(r) {
+            resolve(r.dataValues.fileId);
+        });
+    });
+}
+
+
+/**
+ * removeFile
+ * ファイルを削除する
+ * @param {string} fileName
+ * @param {string} parentDirectory
+ * @returns {promise} ファイル削除に成功すればresolve、失敗すればreject
+ */
+function removeFile(fileName, parentDirectory) {
+    return new Promise(function(resolve, reject) {
+        existFile(fileName, parentDirectory)
+        .catch(function(error) {
+            reject(error);
+        })
+        .then(function(fileId) {
+            var q = {
+                where: {
+                    fileId: fileId
+                }
+            };
+            return Files.destroy(q);
+        })
+        .then(function() {
+            resolve();
+        });
+    });
+}
+
+/**
+ * createDirectory
+ * ディレクトリを作成
+ * @param directory
+ * @returns {promise} ディレクトリの作成に成功すればresolve、失敗すればreject
+ */
+function createDirectory(directory) {
+    return new Promise(function(resolve, reject) {
+        if(!directory) {
+            reject(new Error('directory name should start "/" so that it is absolute path including root.'));
+        }
+
+        var leaf = directory.split('/').pop();
+        var parentDirectory = directory.replace('/'+leaf, '');
+        if(!parentDirectory) {
+            parentDirectory = '/';
+        }
+        Promise.all([existDirectory(parentDirectory), notExistDirectory(directory), notExistFile(leaf, parentDirectory)])
+        .catch(function(error) {
+            reject(error);
+        })
+        .then(function(r) {
+            var parentId = r[0];
+            var q = {
+                fileId: uuid.v1(),
+                name: leaf,
+                parentId: parentId,
+                fileType: 0
+            }
+            return Files.create(q)
+        })
+        .then(function(r) {
+            resolve(r.dataValues.fileId);
+        });
+    });
+}
+
+
+/**
+ * removeDirectory
+ * ディレクトリを削除
+ * @param directory
+ * @returns {promise} ディレクトリの削除に成功すればresolve、失敗すればreject
+ */
+function removeDirectory(directory) {
+    return new Promise(function(resolve, reject) {
+        var leaf = directory.split('/').pop();
+        var parentDirectory = directory.replace('/'+leaf, '');
+        if(!parentDirectory) {
+            parentDirectory = '/';
+        }
+        Promise.all([existDirectory(parentDirectory), notExistDirectory(directory), notExistFile(leaf, parentDirectory)])
+        .catch(function(error) {
+            reject(error);
+        })
+        .then(function(r) {
+            var parentId = r[0];
+            var q = {
+                fileId: uuid.v1(),
+                name: leaf,
+                parentId: parentId,
+                fileType: 0
+            }
+            return Files.create(q)
+        })
+        .then(function(r) {
+            resolve(r.dataValues.fileId);
+        });
+    });
+}
+
+/**
+ * test1
+ * test用にデータベースのレコードを追加する関数
+ * @returns {promise}
+ */
+
+function test1() {
+    var q = {
+        fileId: uuid.v1(),
+        name: 'hoge.txt',
+        parentId: '1f83f620-c1ed-11e5-9657-7942989daa00', // rootのuuid
+        fileType: 1
+    };
+    return Files.create(q);
+}
+
+/**
+ * test2
+ * test用にデータベースのレコードを追加する関数
+ * @returns {promise}
+ */
+
+function test2() {
+    var q1 = {
+        fileId: '1f83f620-c1ed-11e5-9657-7942989daa04',
+        name: 'one',
+        parentId: '1f83f620-c1ed-11e5-9657-7942989daa00', // rootのuuid
+        fileType: 0 //directory
+    };
+    return Files.create(q1)
+    .then(function() {
+        var q2 = {
+            fileId: '1f83f620-c1ed-11e5-9657-7942989daa01',
+            name: 'two',
+            parentId: q1.fileId,
+            fileType: 0
+
+        };
+        return Files.create(q2);
+    })
+    .then(function(r) {
+        var q3 = {
+            fileId: '1f83f620-c1ed-11e5-9657-7942989daa02',
+            name: 'two',
+            parentId: '1f83f620-c1ed-11e5-9657-7942989daa00', //rootのuuid
+            fileType: 0
+        };
+        return Files.create(q3);
+    })
+    .then(function() {
+        var q4 = {
+            fileId:'1f83f620-c1ed-11e5-9657-7942989daa03',
+            name: 'hogehoge.txt',
+            parentId: q1.fileId,
+            fileType: 1
+        };
+        return Files.create(q4);
+    });
+}
+
+
+function testRest() {
+    var q = {
+        fileId: '54998540-f62c-11e6-abc9-45e2912c9ebf',
+        name: 'debugRest.mrc',
+        parentId: '1f83f620-c1ed-11e5-9657-7942989daa00', //rootのuuid
+        fileType: 1 // file
+    };
+    return Files.create(q);
+}
+
+module.exports = { instance: instance };
diff --git a/server/class/Eos.js b/server/class/Eos.js
new file mode 100755 (executable)
index 0000000..0ded253
--- /dev/null
@@ -0,0 +1,377 @@
+/**
+ *
+ * Class variables
+ */
+
+// include all Eos command's info.
+// For seaching with O(n), the object key name is command name.
+var db = require('./DB.js').instance;
+var commandList = require(__dirname + '/../../user-specific-files/OptionControlFile/command_list.json');
+var ocfReference = {};
+
+commandList.forEach(function(c) {
+    ocfReference[c.name] = require(__dirname + '/../../user-specific-files/OptionControlFile/commands/' + c.name);
+});
+var spawn = require('child_process').spawn;
+
+
+function hasOneProperty(options) {
+    return new Promise(function(resolve, reject) {
+        if(options.length === 0) {
+            var errorMsg = 'At least one option is required.';
+            throw new Error(errorMsg);
+        } else {
+            resolve();
+        }
+    });
+}
+
+function matchOption(options, ocf) {
+    return new Promise(function(resolve, reject) {
+        var ok = {};
+        var notIncludingRequiredOptions = [];
+        options.forEach(function(o) {
+            ok[o.name] = o.arguments;
+        });
+        ocf.forEach(function(o) {
+            if(o.optionProperties && !ok[o.option]) {
+                notIncludingRequiredOptions.push(o.option);
+            }
+        });
+
+        // check whether all required option exist
+        if(notIncludingRequiredOptions.length > 0) {
+            var errorMsg = 'Option ' + notIncludingRequiredOptions.toString() + ' are required';
+            reject(new Error(errorMsg));
+        } else {
+            resolve();
+        }
+    });
+}
+
+function validArgumentsNumber(options, ocfObj) {
+    return new Promise(function(resolve, reject) {
+        options.forEach(function(o) {
+            // option number
+            var expectNum = ocfObj[o.name].optionNumber;
+            var actualNum = o.arguments.length;
+            if(expectNum !== actualNum) {
+                reject(new Error('Invalid arguments number'));
+            }
+        });
+        resolve();
+    });
+};
+
+function validArgumentsType(options, ocfObj, workspace) {
+    return new Promise(function(resolve, reject) {
+        options.forEach(function(o) {
+            o.arguments.forEach(function(arg,i) {
+                // argType
+                var formType = ocfObj[o.name].arg[i].formType
+                if(formType === 'select') { // This argument is filename
+                    var exist = workspace.indexOf(arg) > -1;
+                    if(!exist) {
+                        reject(new Error(arg + ' doesn\'t exist.'));
+                    }
+                } else {
+                    var expectType = formType === 'text' ? 'string' : 'number';
+                    var actualType = typeof arg;
+                    if(expectType !== actualType) {
+                        reject(new Error('argType is invalid'));
+                    }
+                }
+            });
+        });
+        resolve();
+    });
+}
+
+function validOutfileName(options, ocfObj, workspace) {
+    return new Promise(function(resolve, reject) {
+        // output file Regexp
+        var outRegExp = /out|append/;
+
+        options.forEach(function(o) {
+            o.arguments.forEach(function(arg,i) {
+                // outFile name
+                if(outRegExp.test(ocfObj[o.name].arg[i].argType)) {
+                    if(workspace.indexOf(o.arguments[i]) > -1) {
+                        reject(new Error('Invalid outfile name.'));
+                    }
+                }
+            });
+        });
+        resolve();
+    });
+}
+
+/**
+ * validate
+ * コマンドとオプションのバリデーション
+ * @param command
+ * @param params
+ * @returns {valid: boolean, message: string}
+ */
+function validate(command, options, workspaceId) {
+    return new Promise(function(resolve, reject) {
+
+        var ocf;
+        if(ocfReference[command]) {
+            ocf = ocfReference[command];
+        } else {
+            var errorMsg = 'Command name is invalid';
+            reject(new Error(errorMsg));
+        }
+
+        var ocfObj = {};
+        ocf.forEach(function(o) {
+            ocfObj[o.option] = o;
+        });
+
+        var optionsObj = {};
+        if(Array.isArray(options)) {
+            options.forEach(function(o) {
+                if(o.name && o.arguments) {
+                    if(Array.isArray(o.arguments)) {
+                        optionsObj[o.name] = o.arguments;
+                    } else {
+                        var errorMsg = 'Each "arguments" properties needs to be Array';
+                        reject(new Error(errorMsg));
+                    }
+                } else {
+                    var errorMsg = 'Options need to include Object which have properties "name" and "arguments"';
+                    reject(new Error(errorMsg));
+                }
+            });
+        } else {
+            var errorMsg = 'Options need to be Array';
+            reject(new Error(errorMsg));
+        }
+
+        getFiles(workspaceId)
+        .then(function(workspace) {
+
+            // validate function
+            var promises = [];
+            promises.push(hasOneProperty(options));
+            promises.push(matchOption(options, ocf));
+            promises.push(validArgumentsNumber(options, ocfObj));
+            promises.push(validArgumentsType(options, ocfObj, workspace));
+            promises.push(validOutfileName(options, ocfObj, workspace));
+
+            // do validation
+            return Promise.all(promises)
+        })
+        .catch(function(error) {
+            reject(error);
+        })
+        .then(function(r) {
+            resolve();
+        })
+    });
+}
+
+/**
+ * toExecString
+ *
+ * @param command
+ * @param options
+ * @returns {string}
+ */
+function toExecString(command, options, workspaceId) {
+    var ocf = ocfReference[command]; // Array
+    var finalOptions = {};
+    var execStr = command + ' ';
+    var ocfObj = {};
+    ocf.forEach(function(o) {
+        ocfObj[o.option] = o;
+    });
+
+
+    if(workspaceId === "1f83f620-c1ed-11e5-9657-7942989daa00") { // root
+        var root = __dirname + '/../../user-specific-files/workspace/';
+    }
+
+    // set default parameters
+    ocf.forEach(function(o) {
+        o.arg.forEach(function(arg) {
+            if(!(arg.initialValue === "") && arg.initialValue) {
+                if(!(finalOptions[o.option])) {
+                    finalOptions[o.option] = [];
+                    finalOptions[o.option].push(arg.initialValue);
+                } else {
+                    finalOptions[o.option].push(arg.initialValue);
+                }
+            }
+        });
+    });
+
+    // set user setting parameters
+    options.forEach(function(o) {
+        var s = [];
+        var outRegExp = /out|append/;
+        o.arguments.forEach(function(arg, i) {
+            if(ocfObj[o.name].arg[i].formType === 'select' || outRegExp.test(ocfObj[o.name].arg[i].argType)) {
+                s.push(root+arg);
+            } else {
+                s.push(arg);
+            }
+        });
+        finalOptions[o.name] = s;
+    });
+
+    // set execution string
+    Object.keys(finalOptions).forEach(function(key) {
+        execStr += key + ' ';
+        finalOptions[key].forEach(function(arg) {
+            execStr += arg + ' ';
+        });
+    });
+
+    // remove last blank
+    execStr = execStr.slice(0,execStr.length-1);
+
+    return execStr;
+}
+
+/**
+ * toExecArray
+ *
+ * @param {fileId}
+ * @returns {string}
+ */
+function toExecArray(command, options, workspaceId) {
+    return new Promise(function(resolve, reject) {
+        var ocf = ocfReference[command]; // Array
+        var finalOptions = {};
+        var ocfObj = {};
+        ocf.forEach(function(o) {
+            ocfObj[o.option] = o;
+        });
+
+        // set default parameters
+        ocf.forEach(function(o) {
+            o.arg.forEach(function(arg) {
+                if(!(arg.initialValue === "") && arg.initialValue) {
+                    if(!(finalOptions[o.option])) {
+                        finalOptions[o.option] = [];
+                        finalOptions[o.option].push(arg.initialValue);
+                    } else {
+                        finalOptions[o.option].push(arg.initialValue);
+                    }
+                }
+            });
+        });
+
+        getUUIDs(workspaceId)
+        .then(function(uuids) {
+            // set user setting parameters
+            options.forEach(function(o) {
+                var s = [];
+                var outRegExp = /out|append/;
+                o.arguments.forEach(function(arg, i) {
+                    if(ocfObj[o.name].arg[i].formType === 'select') {
+                        s.push(uuids[arg]);
+                        //s.push(arg);
+                        console.log('input:' + uuids[arg]);
+                    } else {
+                        s.push(arg);
+                    }
+                });
+                finalOptions[o.name] = s;
+            });
+            var array = Object.keys(finalOptions).reduce(function(a,b) {
+                a.push(b);
+                finalOptions[b].forEach(function(v) {
+                    a.push(v);
+                });
+                return a;
+            },[]);
+            resolve(array);
+        });
+    });
+}
+
+/**
+ * execute
+ *
+ * @param command
+ * @param params
+ * @returns {object}
+ */
+function execute(command, optionsArray) {
+    return new Promise(function(resolve, reject) {
+        var workspace;
+        if(process.env.NODE_ENV === 'debug') {
+            workspace = __dirname + '/../../user-specific-files/workspace.debug';
+        } else {
+            workspace = __dirname + '/../../user-specific-files/workspace';
+        }
+
+        var config = {
+            cwd: workspace
+        };
+        var runner = spawn(command,optionsArray,config);
+        //var runner = spawn(command,optionsArray,'/');
+        console.log('spawn');
+
+        runner.on('close', function() {
+            resolve();
+        });
+    });
+}
+
+/**
+ * getFiles
+ * @param fileId
+ * @returns {promise} resolve(Array)
+ */
+function getFiles(fileId) {
+    return new Promise(function(resolve, reject) {
+        if(process.env.NODE_ENV === 'test') {
+            resolve(['file1.txt', 'file2.txt']);
+        } else {
+            db.getFiles(fileId)
+            .then(function(r) {
+                var workspace = r.map(function(f) { return f.name });
+                resolve(workspace);
+            });
+        }
+    });
+}
+
+/**
+ * getUUID
+ * @param fileId
+ * @returns {object} key: filename, value: uuid
+ */
+function getUUIDs(fileId) {
+    return new Promise(function(resolve) {
+        db.getFiles(fileId)
+        .then(function(r) {
+            var uuids = {};
+            r.forEach(function(v) {
+                uuids[v.dataValues.name] = v.dataValues.fileId;
+            });
+            resolve(uuids);
+        });
+    });
+}
+
+/**
+ * Eosコマンドをエミュレートするクラス
+ * @varructor
+ * @returns {object}
+ * function execute(command, params) {
+ */
+var eos = {
+    validate: validate,
+    toExecString: toExecString,
+    execute: execute,
+    getFiles: getFiles,
+    getUUIDs: getUUIDs,
+    toExecArray: toExecArray
+}
+
+module.exports = { instance: eos };
diff --git a/server/class/WebSocket.js b/server/class/WebSocket.js
new file mode 100755 (executable)
index 0000000..0d19ae8
--- /dev/null
@@ -0,0 +1,34 @@
+'use strict'
+
+var fs = require('fs')
+var socket;
+
+var instance = {
+    connect: function(io) {
+        io.on('connection', function(s) {
+            socket = s;
+            console.log('connected');
+            socket.emit('connect', 'connected');
+        });
+    },
+    emit: function(event, data) {
+        socket.emit(event, data);
+    }
+        /*
+            array include obj
+            {
+                data: blob,
+                name: filename,
+                dir : directory,
+            }
+        socket.on('upload', function(array) {
+            array.forEach(function(file) {
+                var path = file.dir+'/'+file.name
+                fs.writeFileSync(path, file.data)
+            })
+            socket.emit('done', 'success')
+        })
+        */
+};
+
+module.exports = { instance: instance };
diff --git a/server/class/hoge.js b/server/class/hoge.js
new file mode 100755 (executable)
index 0000000..b2aa841
--- /dev/null
@@ -0,0 +1,6 @@
+var options = {
+    name: 'hogehoge',
+    options: ['hoge']
+};
+
+console.log(JSON.stringify(options));
diff --git a/server/config.js b/server/config.js
new file mode 100755 (executable)
index 0000000..07e9724
--- /dev/null
@@ -0,0 +1,10 @@
+'use strict';
+
+var path = require('path');
+
+module.exports = {
+    ip  : "127.0.0.1",
+   port: "3000",
+   root: path.normalize(__dirname +'/../front-end/dist/')
+};
+
diff --git a/server/express.js b/server/express.js
new file mode 100755 (executable)
index 0000000..d33260a
--- /dev/null
@@ -0,0 +1,19 @@
+'use strict';
+
+var express      = require('express'),
+    path         = require('path'),
+    config       = require('./config'),
+    bodyParser   = require('body-parser');
+
+module.exports = function(app) {
+    app.use('/workspace', express.static('./workspace/'));
+    app.use(bodyParser.json());
+    app.use(bodyParser.urlencoded());
+
+    app.use(express.static(__dirname + '/../front-end/dist/'))
+
+    if(app.get('env') === 'development') {
+        
+    } else if(app.get('env') === 'production') {
+    }
+};
diff --git a/server/routes.js b/server/routes.js
new file mode 100755 (executable)
index 0000000..2e52a70
--- /dev/null
@@ -0,0 +1,34 @@
+'use strict';
+
+var path = require('path');
+var config = require('./config');
+
+module.exports = function(app) {
+
+    // Routing
+    //app.use('/api/optionControlFile', require('./api/optionControlFile'))
+    /*
+    app.use('/api/commandList', require('./api/commandList'))
+    app.use('/api/tagList', require('./api/tagList'))
+    app.use('/api/optionControlFile', require('./api/optionControlFile'))
+    app.use('/api/dirInfo', require('./api/dirInfo'))
+    app.use('/api/commandExecution', require('./api/commandExecution'))
+    app.use('/api/noteCreation', require('./api/noteCreation'))
+    app.use('/api/noteInfo', require('./api/noteInfo'))
+    app.use('/api/dirCreation', require('./api/dirCreation'))
+    */
+    app.use('/api/v1/fileUpload', require(__dirname + '/api/v1/fileUpload'));
+    app.use('/api/v1/execution', require(__dirname + '/api/v1/execution'));
+    app.use('/api/v1/workspace/', require(__dirname + '/api/v1/workspace'));
+    app.use('/api/v1/all/workspace/directory', require(__dirname + '/api/v1/all/workspace/directory'));
+    app.use('/api/v1/optionControlFile', require(__dirname + '/api/v1/optionControlFile'));
+    app.use('/api/v1/tagList', require(__dirname + '/api/v1/tagList'));
+    app.use('/api/v1/commandList', require(__dirname + '/api/v1/commandList'));
+    app.use('/api/v1/debug', require(__dirname + '/api/v1/debug'));
+    app.use('/api/v1/help', require(__dirname + '/api/v1/help'));
+
+    app.route('/*')
+    .get(function(req, res) {
+        res.sendFile('index.html', { root: path.normalize(__dirname + '/../front-end/dist') });
+    })
+};
diff --git a/test/mocha/DB.test.js b/test/mocha/DB.test.js
new file mode 100755 (executable)
index 0000000..ed54689
--- /dev/null
@@ -0,0 +1,416 @@
+(function() {
+    'use strict';
+    var db = require('../../server/class/DB').instance;
+    var chai = require('chai');
+    var chaiAsPromised = require('chai-as-promised');
+    chai.use(chaiAsPromised);
+    var expect = chai.expect;
+    chai.should();
+
+    describe('DB クラス', function() {
+
+        var constructor = `
+        /**
+        * createFile
+        *
+        * @param name
+        * @param directory
+        * @returns {promise}<保存したファイルのファイル名(uuid)をresolveする>
+        */
+        `;
+        describe(constructor, function() {
+            before(function() {
+                return db.init()
+            });
+            it('should return hello when call sayHello', function() {
+                expect(db.sayHello()).to.equal('hello');
+            });
+        });
+
+
+        var getDirectoryParentId = `
+        /**
+        * getDirectoryParentId
+        * ディレクトリのparentIdを取得する 
+        * @param name
+        * @returns {promise} ディレクトリが存在すればresolve(uuid), しなければreject
+        */
+        `;
+        describe(getDirectoryParentId, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test2();
+                });
+            });
+
+            it('should be rejected when a directory does not exist', function() {
+                return db.getDirectoryParentId('hoge').should.be.rejectedWith(Error, '"hoge" directory doesn\'t exist.');
+            });
+            it('should be resolved when \'one\' exists', function() {
+                return expect(db.getDirectoryParentId('one')).to.eventually.include.members(['1f83f620-c1ed-11e5-9657-7942989daa00']);
+            });
+            it('should be rejected when \'two\' exists', function() {
+                return expect(db.getDirectoryParentId('two')).to.eventually.have.length(2);
+            });
+        });
+
+        var getDirectoryId = `
+        /**
+        * getDirectoryId
+        * ディレクトリのfileIdを取得する 
+        * @param name
+        * @returns {promise} ディレクトリが存在すればresolve(uuid), しなければreject
+        */
+        `;
+        describe(getDirectoryId, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test2();
+                });
+            });
+            it('should be rejected when a directory does not exist', function() {
+                return db.getDirectoryId('hoge').should.be.rejectedWith(Error, '"hoge" directory doesn\'t exist.');
+            });
+            it('should be resolved when \'/\' exists', function() {
+                return expect(db.getDirectoryId('/')).to.eventually.include.members(['1f83f620-c1ed-11e5-9657-7942989daa00']);
+            });
+            it('should be rejected when \'two\' exists', function() {
+                return expect(db.getDirectoryId('two')).to.eventually.have.length(2);
+            });
+        });
+
+
+        var getDirectory = `
+        /**
+        * getDirectory
+        * ディレクトリの情報を取得する 
+        * @param name
+        * @returns {promise} ディレクトリが存在すればresolve(obj), しなければreject
+        */
+        `;
+        describe(getDirectory, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test2();
+                });
+            });
+
+            it('should be rejected when a directory does not exist', function() {
+                return db.getDirectoryId('hoge').should.be.rejectedWith(Error, '"hoge" directory doesn\'t exist.');
+            });
+            it('should be resolved when \'/\' exists', function() {
+                return expect(db.getDirectory('/')).to.eventually.have.length(1);
+            });
+            it('should be rejected when \'two\' exists', function() {
+                return expect(db.getDirectory('two')).to.eventually.have.length(2);
+            });
+        });
+
+
+        var existFile = `
+        /**
+        * existFile
+        * 同一ディレクトリに同名のファイルが存在することを確かめる
+        * @param {string}fileName
+        * @param {string}parentDirectory
+        * @returns {promise}
+        */
+        `;
+        describe(existFile, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test1();
+                })
+                .then(function() {
+                    return db.test2();
+                });
+            });
+
+            it('should be rejected when does not exist same name file in a directory', function() {
+                return db.existFile('hogehoge.txt', '/').should.be.rejectedWith(Error, '"hogehoge.txt" does not exist in "/" directory.');
+            });
+            it('should be rejected when a directory does not exist', function() {
+                return db.existFile('hogehoge.txt', '/hoge').should.be.rejectedWith(Error, '"/hoge" directory doesn\'t exist.');
+            });
+            it('should be resolved when file exists in a directory', function() {
+                return expect(db.existFile('hogehoge.txt', '/one')).to.eventually.be.a('string');
+            });
+        });
+
+
+
+        var notExistFile = `
+        /**
+        * notExistFile
+        * 同一ディレクトリに同名のファイルが存在しないことを確かめる
+        * @param {string}fileName
+        * @param {string}parentDirectory
+        * @returns {promise}
+        */
+        `;
+        describe(notExistFile, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test1();
+                })
+                .then(function() {
+                    return db.test2();
+                });
+            });
+
+            it('should be rejected when the same name file has already existed in directory(1)', function() {
+                return db.notExistFile('hoge.txt', '/').should.be.rejectedWith(Error, '"hoge.txt" has already existed in "/" directory.');
+            });
+            it('should be rejected when the same name file has already existed in directory(2)', function() {
+                return db.notExistFile('hogehoge.txt', '/one').should.be.rejectedWith(Error, '"hogehoge.txt" has already existed in "/one" directory.');
+            });
+            it('should be resolved when the same name file does not exist in directory', function() {
+                return expect(db.notExistFile('hoge.txt', '/one')).to.eventually.equal();
+            });
+        });
+
+        var existDirectory = `
+        /**
+        * existDirectory
+        * ディレクトリが存在することを確認する
+        * @param {string} directory ディレクトリの絶対パス
+        * @returns {promise} ディレクトリが存在しなければresolve、すればreject
+        */
+        `;
+        describe(existDirectory, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test2();
+                })
+            });
+
+            it('should be rejected when does not exist directory(1)', function() {
+                return db.existDirectory('/one/two/four').should.be.rejectedWith(Error, '"/one/two/four" directory doesn\'t exist.');
+            });
+            it('should be rejected when does not exist directory(2)', function() {
+                return db.existDirectory('hoge').should.be.rejectedWith(Error, 'directory name should start "/" so that it is absolute path including root.');
+            });
+            it('should be resolved when exists directory(1)', function() {
+                return expect(db.existDirectory('/')).to.eventually.equal('1f83f620-c1ed-11e5-9657-7942989daa00');
+            });
+            it('should be resolved when exists directory(2)', function() {
+                return expect(db.existDirectory('/one')).to.eventually.be.a('string');
+            });
+            it('should be resolved when exists directory(3)', function() {
+                return expect(db.existDirectory('/one/two')).to.eventually.be.a('string');
+            });
+            it('should be rejected when call with no parameter', function() {
+                return db.existDirectory().should.be.rejectedWith(Error, 'parameter "directory" is undefined');
+            });
+        });
+
+
+        var notExistDirectory = `
+        /**
+        * notExistDirectory
+        * ディレクトリが存在しないことを確認する
+        * @param {string} directory
+        * @returns {promise} ディレクトリが存在すればresolve、存在しなければreject
+        */
+        `;
+        describe(existDirectory, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test1();
+                })
+                .then(function() {
+                    return db.test2();
+                });
+            });
+
+            it('should be rejected when exists directory(1)', function() {
+                return db.notExistDirectory('/').should.be.rejectedWith(Error,'"/" directory exists.');
+            });
+            it('should be rejected when exists directory(2)', function() {
+                return db.notExistDirectory('/one').should.be.rejectedWith(Error,'"/one" directory exists.');
+            });
+            it('should be rejected when exists directory(3)', function() {
+                return db.notExistDirectory('/one/two').should.be.rejectedWith(Error,'"/one/two" directory exists.');
+            });
+            it('should be resolved(1)', function() {
+                return expect(db.notExistDirectory()).to.eventually.equal();
+            });
+            it('should be resolved(2)', function() {
+                return expect(db.notExistDirectory('hoge')).to.eventually.equal();
+            });
+        });
+
+
+        var createFile = `
+        /**
+        * createFile
+        *
+        * @param name
+        * @param directory
+        * @returns {promise}<保存したファイルのファイル名(uuid)をresolveする>
+        */
+        `;
+        describe(createFile, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test1();
+                })
+                .then(function() {
+                    return db.createFile('tarou.txt', '/');
+                });
+            });
+
+            it('should be rejected when "parentDirectory" doesn\'t exist', function() {
+                return db.createFile('hoge.txt', '/hoge').should.be.rejectedWith(Error, '"/hoge" directory doesn\'t exist.');
+            });
+            it('should be rejected when a file has already existed in a directory.', function() {
+                return db.createFile('hoge.txt', '/').should.be.rejectedWith(Error, '"hoge.txt" has already existed in "/" directory.');
+            });
+            it('should be resolved when file creation successed.', function() {
+                return expect(db.existFile('tarou.txt', '/')).to.eventually.be.a('string');
+            });
+            it('should be rejected(1)', function() {
+                return db.createFile().should.be.rejectedWith(Error, 'filename is required.');
+            });
+            it('should be rejected(2)', function() {
+                return db.createFile('hoge.txt', '').should.be.rejectedWith(Error, 'parameter "directory" is undefined');
+            });
+            it('should be rejected(3)', function() {
+                return db.createFile(null, '/').should.be.rejectedWith(Error, 'filename is required.');
+            });
+        });
+
+
+        var removeFile = `
+        /**
+        * removeFile
+        * ファイルを削除する
+        * @param {string} fileName
+        * @param {string} parentDirectory
+        * @returns {promise} ファイル削除に成功すればresolve、失敗すればreject
+        */
+        `;
+
+        describe(removeFile, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test1();
+                });
+            });
+            it('should be resolved when removeFile() successed', function() {
+                return db.removeFile('hoge.txt', '/')
+                .then(function() {
+                    return db.existFile('hoge.txt', '/')
+                })
+                .should.be.rejectedWith(Error, '"hoge.txt" does not exist in "/" directory.');
+            });
+        });
+
+
+        var createDirectory = `
+        /**
+        * createFile
+        *
+        * @param directory
+        * @returns {promise}
+        */
+        `;
+        describe(createDirectory, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test1();
+                })
+                .then(function() {
+                    return db.test2();
+                })
+                .then(function() {
+                    return db.createDirectory('/one/hoge');
+                });
+            });
+
+            it('should be rejected when directory has already existed', function() {
+                return db.createDirectory('/one/two').should.be.rejectedWith(Error, '"/one/two" directory exists.');
+            });
+            it('should be rejected when parent directory does not exist.', function() {
+                return db.createDirectory('/four/hoge').should.be.rejectedWith(Error, '"/four" directory doesn\'t exist.');
+            });
+            it('should be rejected when the same name file has already existed.', function() {
+                return db.createDirectory('/hoge.txt').should.be.rejectedWith(Error, '"hoge.txt" has already existed in "/" directory.');
+            });
+            it('should be rejected when the /one/hoge directory has already existed', function() {
+                return db.notExistDirectory('/one/hoge').should.be.rejectedWith(Error, '"/one/hoge" directory exists.');
+            });
+            it('should be rejected(1)', function() {
+                return db.createDirectory('hoge').should.be.rejectedWith(Error, 'directory name should start "/" so that it is absolute path including root.');
+            });
+            it('should be rejected(2)', function() {
+                return db.createDirectory().should.be.rejectedWith(Error, 'directory name should start "/" so that it is absolute path including root.');
+            });
+        });
+
+        var getFiles = `
+        /**
+        * getFiles
+        * ディレクトリのfileIdを取得する 
+        * @param {string} fileId ディレクトリのfileId 
+        * @returns {promise} resolve([Array]<string>fileId) 引数で与えられたディレクトリを直接の親に持つファイルのレコードの配列を返す。
+        */
+        `;
+        describe(createDirectory, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test1();
+                })
+                .then(function() {
+                    return db.test2();
+                });
+            });
+
+            it('should be rejected when calling with invalid fileId', function() {
+                return db.getFiles('').should.be.rejected;
+            });
+            it('should be resolved(1)', function() {
+                return expect(db.getFiles('1f83f620-c1ed-11e5-9657-7942989daa00')).to.eventually.be.an('array');
+            });
+            it('should be resolved(2)', function() {
+                return expect(db.getFiles('1f83f620-c1ed-11e5-9657-7942989daa04')).to.eventually.be.length(2);
+            });
+        });
+
+        var getDirectories = `
+        /**
+        * getDirectories
+        * ディレクトリのfileIdを取得する 
+        * @param {string} fileId ディレクトリのfileId 
+        * @returns {promise} resolve([Array]<string>fileId) 引数で与えられたディレクトリを直接の親に持つファイルのレコードの配列を返す。
+        */
+        `;
+        describe(createDirectory, function() {
+            before(function() {
+                return db.init()
+                .then(function() {
+                    return db.test1();
+                })
+                .then(function() {
+                    return db.test2();
+                });
+            });
+
+            it('should be resolved', function() {
+                return expect(db.getDirectories()).to.eventually.be.length(4);
+            });
+        });
+
+    });
+})();
diff --git a/test/mocha/Eos.test.js b/test/mocha/Eos.test.js
new file mode 100755 (executable)
index 0000000..e189015
--- /dev/null
@@ -0,0 +1,199 @@
+(function() {
+    'use strict';
+    var eos = require('../../server/class/Eos').instance;
+    var chai = require('chai');
+    var chaiAsPromised = require('chai-as-promised');
+    chai.use(chaiAsPromised);
+    var expect = chai.expect;
+    chai.should();
+
+    var db = require('../../server/class/DB').instance;
+    var testCommand = require('./testCommand.json');
+
+    var test1 = `
+    /**
+    * コマンドとオプションのバリデーション
+    * @param {string} Eosコマンドの名前
+    * @param {Array<Object>} コマンドに渡すオプション
+    * @returns {valid: boolean, message: string}
+    * function validate(command, params) {
+    */
+    `;
+
+    
+    describe('Eos クラス', function() {
+        before(function() {
+        });
+
+        describe(test1, function() {
+
+            it('should return Array', function() {
+                return expect(eos.getFiles()).to.eventually.be.length(2);
+            });
+
+            it('should be rejected(2)', function() {
+                return eos.validate('hoge').should.be.rejectedWith(Error, 'Command name is invalid');
+            });
+
+            it('should be rejected(3)', function() {
+                return eos.validate('mrcImageNoiseAdd').should.be.rejectedWith(Error, 'Options need to be Array');
+            });
+
+            it('should be rejected(4)', function() {
+                return eos.validate('mrcImageNoiseAdd', []).should.be.rejectedWith(Error, 'At least one option is required.');
+            });
+
+            it('should return false when options is not Array', function() {
+                return eos.validate('mrcImageNoiseAdd', {}).should.be.rejectedWith(Error, 'Options need to be Array');
+            });
+
+            it('should return false when options is invalid Object which have not "name" and "argumetns"', function() {
+                return eos.validate('mrcImageInfo', [{hoge: 'hoge'}]).should.be.rejectedWith(Error, 'Options need to include Object which have properties "name" and "arguments"');
+            });
+            it('should return false when "argumetns" properties are not Array', function() {
+                return eos.validate('mrcImageInfo', [{name: 'hoge', arguments: 'hoge'}]).should.be.rejectedWith(Error,'Each "arguments" properties needs to be Array');
+            });
+
+            it('should return false when required options do not exist', function() {
+                return eos.validate('mrcImageInfo', [{name: 'hoge', arguments: []}]).should.be.rejectedWith('Option -i are required');
+            });
+
+            it('should return false when required options do not exist', function() {
+                return eos.validate('dcdFilePrint', [{name: '-r', arguments: [1,2]}, { name: '-i', arguments: []}, { name: '-o', arguments: []} ]).should.be.rejectedWith(Error, 'Invalid arguments number');
+            });
+
+            it('should return false when input file does not exist', function() {
+                return eos.validate('dcdFilePrint', [{name: '-r', arguments: [1,2,3]}, { name: '-i', arguments: ['hoge.txt']}, { name: '-o', arguments: ['hoge.txt']} ]).should.be.rejectedWith(Error, 'hoge.txt doesn\'t exist.');
+            });
+
+            it('should return false when output file is not string', function() {
+                return eos.validate('dcdFilePrint', [{name: '-r', arguments: [1,2,3]}, { name: '-i', arguments: ['file1.txt']}, { name: '-o', arguments: [3]} ]).should.be.rejectedWith(Error, 'argType is invalid');
+            });
+
+            it('should return false when output file has already existed', function() {
+                return eos.validate('dcdFilePrint', [{name: '-r', arguments: [1,2,3]}, { name: '-i', arguments: ['file1.txt']}, { name: '-o', arguments: ['file1.txt']} ]).should.be.rejectedWith(Error, 'Invalid outfile name.');
+            });
+
+        });
+
+        var test2 = `
+        /**
+        * 実行時文字列への変換 
+        *
+        * @param command
+        * @param options
+        * @returns {string}
+        * function toExecString(command, params) {
+        */
+        `;
+
+        describe(test2, function() {
+            it('should return true when all options is proper.', function() {
+                var result = eos.toExecString('dcdFilePrint', [{name: '-r', arguments: [1,2,3]}, { name: '-i', arguments: ['file1.txt']}, { name: '-o', arguments: ['file3.txt']} ], "1f83f620-c1ed-11e5-9657-7942989daa00");
+                expect(result).to.equal('dcdFilePrint -r 1 2 3 -s 10 -e 100 -d 10 -m 0 -i /Users/Takafumi/zephyr/server/class/../../user-specific-files/workspace/file1.txt -o /Users/Takafumi/zephyr/server/class/../../user-specific-files/workspace/file3.txt');
+            });
+        });
+
+        var toExecArray = `
+        /**
+        * 実行時配列への変換 
+        *
+        * @param command
+        * @returns {string}
+        * function toExecString(command, params) {
+        */
+        `;
+
+        describe(toExecArray, function() {
+            before(function() {
+                process.env.NODE_ENV = '';
+                return db.init()
+                .then(function() {
+                    return Promise.all([db.test1(), db.test2(), db.testRest()])
+                });
+            });
+
+            it('should be resolved with length 4', function() {
+                var command = testCommand.command;
+                var options = testCommand.options;
+                var workspace = testCommand.workspace;
+                return eos.toExecArray(command, options, '1f83f620-c1ed-11e5-9657-7942989daa00').should.be.eventually.length(16);
+            });
+
+        });
+        
+        describe('execute', function() {
+            before(function() {
+                process.env.NODE_ENV = '';
+                return db.init()
+                .then(function() {
+                    return Promise.all([db.test1(), db.test2(), db.testRest()])
+                });
+            });
+
+            it('should be resolved with length 4', function() {
+                return expect(eos.getFiles('1f83f620-c1ed-11e5-9657-7942989daa00')).to.eventually.length(4);
+            });
+
+            it('should be resolved about testCommand', function() {
+                var command = testCommand.command;
+                var options = testCommand.options;
+                var workspace = testCommand.workspace;
+                return eos.validate(command, options, workspace).should.be.fulfilled;
+            });
+
+            after(function() {
+                process.env.NODE_ENV = 'test';
+            });
+        });
+
+        describe('getFiles', function() {
+            before(function() {
+                process.env.NODE_ENV = '';
+                return db.init()
+                .then(function() {
+                    return Promise.all([db.test1(), db.test2(), db.testRest()])
+                });
+            });
+
+            it('should be resolved with length 4', function() {
+                return expect(eos.getFiles('1f83f620-c1ed-11e5-9657-7942989daa00')).to.eventually.length(4);
+            });
+
+            it('should be resolved about testCommand', function() {
+                var command = testCommand.command;
+                var options = testCommand.options;
+                var workspace = testCommand.workspace;
+                return eos.validate(command, options, workspace).should.be.fulfilled;
+            });
+
+            after(function() {
+                process.env.NODE_ENV = 'test';
+            });
+        });
+
+        var getUUIDs = `
+        /**
+        * function getUUIDs(fileId)
+        * uuidとファイル名のkey-valueを取得 
+        *
+        * @param fileId
+        * @returns {object} key: filename, value: uuid
+        */
+        `;
+
+        describe(getUUIDs, function() {
+            before(function() {
+                process.env.NODE_ENV = '';
+                return db.init()
+                .then(function() {
+                    return Promise.all([db.test1(), db.test2(), db.testRest()])
+                });
+            });
+
+            it('should be resolved', function() {
+                return eos.getUUIDs('1f83f620-c1ed-11e5-9657-7942989daa00').should.eventually.have.property("hoge.txt");
+            });
+        });
+    });
+})();
diff --git a/test/mocha/testCommand.json b/test/mocha/testCommand.json
new file mode 100755 (executable)
index 0000000..4ac1150
--- /dev/null
@@ -0,0 +1,44 @@
+{
+    "command": "dcdFilePrint",
+    "workspace": "1f83f620-c1ed-11e5-9657-7942989daa00",
+    "options": [
+        {
+            "name": "-i",
+            "arguments": [
+                "debugRest.mrc"
+            ]
+        },
+        {
+            "name": "-o",
+            "arguments": [
+                "fsdafsadfasd"
+            ]
+        },
+        {
+            "name": "-r",
+            "arguments": [
+                10,
+                100,
+                10
+            ]
+        },
+        {
+            "name": "-s",
+            "arguments": [
+                10
+            ]
+        },
+        {
+            "name": "-e",
+            "arguments": [
+                100
+            ]
+        },
+        {
+            "name": "-d",
+            "arguments": [
+                10
+            ]
+        }
+    ]
+}
diff --git a/test/rest/execution.test.js b/test/rest/execution.test.js
new file mode 100755 (executable)
index 0000000..28cf452
--- /dev/null
@@ -0,0 +1,9 @@
+'use strict';
+
+var request = require('request');
+
+var data = JSON.stringify({command: 'dcdFilePrint', options: [{name: '-r', arguments: [1,2,3]}, { name: '-i', arguments: ['debugRest.mrc']}, { name: '-o', arguments: ['file1.txt']} ], workspace: "1f83f620-c1ed-11e5-9657-7942989daa00"});
+
+request.post({url: 'http://localhost:3000/api/v1/execution', formData: { data: data }}, function(err, response) {
+    console.log(response);
+});
diff --git a/user-specific-files/description.txt b/user-specific-files/description.txt
new file mode 100755 (executable)
index 0000000..a7c0b4c
--- /dev/null
@@ -0,0 +1 @@
+このディレクトリは、ワークスペースやOptionControlFileなど、Zephyrをインストールしたユーザ毎に異なるファイルが格納されています。